search for: force_used_validation

Displaying 5 results from an estimated 5 matches for "force_used_validation".

2023 May 26
1
[PATCH] virtio_ring: validate used buffer length
...d, 75 insertions(+) diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c index 143f380baa1c..5b151605aaf8 100644 --- a/drivers/virtio/virtio_ring.c +++ b/drivers/virtio/virtio_ring.c @@ -15,6 +15,9 @@ #include <linux/spinlock.h> #include <xen/xen.h> +static bool force_used_validation = false; +module_param(force_used_validation, bool, 0444); + #ifdef DEBUG /* For development, we want to crash whenever the ring is screwed. */ #define BAD_RING(_vq, fmt, args...) \ @@ -105,6 +108,9 @@ struct vring_virtqueue_split { struct vring_desc_state_split *desc_state; struct vring_...
2023 May 31
1
[PATCH] virtio_ring: validate used buffer length
...* length. In order to let driver work, we won't validate used > > > * buffer length in this case. > > > */ > > > if (!virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) > > > return false; > > > if (force_used_validation) > > > return true; > > > return false; > > > } > > > > > > This seems to be what we've agreed in last version: > > > > > > https://lore.kernel.org/all/CANLsYkxfhamUU0bb4j7y6N4_G9odKxLCjXxgXEx4SJ6_Kf+M2Q at m...
2023 May 31
1
[PATCH] virtio_ring: validate used buffer length
...to let driver work, we won't validate used > > > > * buffer length in this case. > > > > */ > > > > if (!virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) > > > > return false; > > > > if (force_used_validation) > > > > return true; > > > > return false; > > > > } > > > > > > > > This seems to be what we've agreed in last version: > > > > > > > > https://lore.kernel.org/all/CANLsYkxfhamUU0bb4j7y...
2023 Jun 01
1
[PATCH] virtio_ring: validate used buffer length
...to let driver work, we won't validate used > > > > * buffer length in this case. > > > > */ > > > > if (!virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) > > > > return false; > > > > if (force_used_validation) > > > > return true; > > > > return false; > > > > } > > > > > > > > This seems to be what we've agreed in last version: > > > > > > > > https://lore.kernel.org/all/CANLsYkxfhamUU0bb4j7y...
2023 Jun 01
1
[PATCH] virtio_ring: validate used buffer length
...on't validate used > > > > > * buffer length in this case. > > > > > */ > > > > > if (!virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) > > > > > return false; > > > > > if (force_used_validation) > > > > > return true; > > > > > return false; > > > > > } > > > > > > > > > > This seems to be what we've agreed in last version: > > > > > > > > > > https://lore.k...