mirror of
https://github.com/torvalds/linux.git
synced 2026-09-12 04:23:03 +02:00
vhost: invalidate vring access on IOTLB transitions
When VIRTIO_F_ACCESS_PLATFORM changes, cached vring pointers and IOTLB metadata are interpreted in a different address space. Keeping them across the transition can leave stale ring mappings in use. Clearing d->iotlb before taking the VQ locks also lets a worker observe a transient NULL d->iotlb and fall back to d->umem while translating a descriptor. Add a common vhost_clear_device_iotlb() helper for vhost-net and vhost-vsock. Take all VQ mutexes in index order before dropping the device-wide IOTLB, invalidate each VQ's cached ring access and metadata, clear pending IOTLB messages, and free the old table after the handoff. This serializes the transition with workers and prevents mixed address space mappings. On the first direct-to-IOTLB transition, invalidate the cached vring addresses. When an existing device IOTLB is replaced, preserve the GIOVA ring addresses and reset only the metadata cache. After clearing ACCESS_PLATFORM, userspace must configure the vring addresses for the new address mode. vhost_vq_invalidate_access() clears desc, avail, and used together. Treat the VQ as invalidated only when all three are NULL, since a single GIOVA address may legitimately be zero. Fixes:6b1e6cc785("vhost: new device IOTLB API") Fixes:e13a6915a0("vhost/vsock: add IOTLB API support") Suggested-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jia Jia <physicalmtea@gmail.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Message-ID: <20260828085721.57816-1-physicalmtea@gmail.com>
This commit is contained in:
parent
fa2c25b4ad
commit
e4f4761879
|
|
@ -1705,6 +1705,8 @@ static int vhost_net_set_features(struct vhost_net *n, const u64 *features)
|
|||
if (virtio_features_test_bit(features, VIRTIO_F_ACCESS_PLATFORM)) {
|
||||
if (vhost_init_device_iotlb(&n->dev))
|
||||
goto out_unlock;
|
||||
} else {
|
||||
vhost_clear_device_iotlb(&n->dev);
|
||||
}
|
||||
|
||||
for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
|
||||
|
|
|
|||
|
|
@ -344,6 +344,17 @@ static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
|
|||
vq->meta_iotlb[j] = NULL;
|
||||
}
|
||||
|
||||
/* Caller must hold the virtqueue mutex. */
|
||||
static void vhost_vq_invalidate_access(struct vhost_virtqueue *vq)
|
||||
{
|
||||
vq->desc = NULL;
|
||||
vq->avail = NULL;
|
||||
vq->used = NULL;
|
||||
vq->log_used = false;
|
||||
vq->log_addr = -1ull;
|
||||
__vhost_vq_meta_reset(vq);
|
||||
}
|
||||
|
||||
static void vhost_vq_meta_reset(struct vhost_dev *d)
|
||||
{
|
||||
int i;
|
||||
|
|
@ -1946,6 +1957,13 @@ int vq_meta_prefetch(struct vhost_virtqueue *vq)
|
|||
{
|
||||
unsigned int num = vq->num;
|
||||
|
||||
/*
|
||||
* vhost_vq_invalidate_access() clears all three addresses together.
|
||||
* A single zero address may be a valid GIOVA in IOTLB mode.
|
||||
*/
|
||||
if (!vq->desc && !vq->avail && !vq->used)
|
||||
return 0;
|
||||
|
||||
if (!vq->iotlb)
|
||||
return 1;
|
||||
|
||||
|
|
@ -2315,6 +2333,40 @@ long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *arg
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
|
||||
|
||||
/* Caller must hold the device mutex. */
|
||||
void vhost_clear_device_iotlb(struct vhost_dev *d)
|
||||
{
|
||||
struct vhost_iotlb *iotlb;
|
||||
int i;
|
||||
|
||||
iotlb = d->iotlb;
|
||||
if (!iotlb)
|
||||
return;
|
||||
|
||||
vhost_dev_lock_vqs(d);
|
||||
|
||||
/*
|
||||
* vhost_dev_lock_vqs() takes all VQ mutexes in index order. Drop the
|
||||
* device-wide view while they are held, then clear each per-VQ view
|
||||
* and its cached ring access before releasing the locks. Workers
|
||||
* cannot observe a mixed address-space state during this handoff.
|
||||
*/
|
||||
d->iotlb = NULL;
|
||||
|
||||
for (i = 0; i < d->nvqs; ++i) {
|
||||
struct vhost_virtqueue *vq = d->vqs[i];
|
||||
|
||||
vq->iotlb = NULL;
|
||||
vhost_vq_invalidate_access(vq);
|
||||
}
|
||||
|
||||
vhost_dev_unlock_vqs(d);
|
||||
vhost_clear_msg(d);
|
||||
vhost_iotlb_free(iotlb);
|
||||
wake_up_interruptible_poll(&d->wait, EPOLLIN | EPOLLRDNORM);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(vhost_clear_device_iotlb);
|
||||
|
||||
int vhost_init_device_iotlb(struct vhost_dev *d)
|
||||
{
|
||||
struct vhost_iotlb *niotlb, *oiotlb;
|
||||
|
|
@ -2335,7 +2387,10 @@ int vhost_init_device_iotlb(struct vhost_dev *d)
|
|||
|
||||
mutex_lock(&vq->mutex);
|
||||
vq->iotlb = niotlb;
|
||||
__vhost_vq_meta_reset(vq);
|
||||
if (oiotlb)
|
||||
__vhost_vq_meta_reset(vq);
|
||||
else
|
||||
vhost_vq_invalidate_access(vq);
|
||||
mutex_unlock(&vq->mutex);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -280,6 +280,7 @@ ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
|
|||
int noblock);
|
||||
ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
|
||||
struct iov_iter *from);
|
||||
void vhost_clear_device_iotlb(struct vhost_dev *d);
|
||||
int vhost_init_device_iotlb(struct vhost_dev *d);
|
||||
|
||||
void vhost_iotlb_map_free(struct vhost_iotlb *iotlb,
|
||||
|
|
|
|||
|
|
@ -868,6 +868,8 @@ static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
|
|||
if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM))) {
|
||||
if (vhost_init_device_iotlb(&vsock->dev))
|
||||
goto err;
|
||||
} else {
|
||||
vhost_clear_device_iotlb(&vsock->dev);
|
||||
}
|
||||
|
||||
vsock->seqpacket_allow = features & (1ULL << VIRTIO_VSOCK_F_SEQPACKET);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user