qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] virtio-iommu: Fix the partial copy of probe request
@ 2022-06-17  6:20 Zhenzhong Duan
  2022-06-22 10:20 ` Eric Auger
  0 siblings, 1 reply; 8+ messages in thread
From: Zhenzhong Duan @ 2022-06-17  6:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: eric.auger, mst

The structure of probe request doesn't include the tail, this leads
to a few field missed to be copied. Currently this isn't an issue as
those missed field belong to reserved field, just in case reserved
field will be used in the future.

Fixes: 1733eebb9e75b ("virtio-iommu: Implement RESV_MEM probe request")
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
---
 v2: keep bugfix change and drop cleanup change

 hw/virtio/virtio-iommu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
index 7c122ab95780..195f909620ab 100644
--- a/hw/virtio/virtio-iommu.c
+++ b/hw/virtio/virtio-iommu.c
@@ -708,7 +708,8 @@ static int virtio_iommu_handle_probe(VirtIOIOMMU *s,
                                      uint8_t *buf)
 {
     struct virtio_iommu_req_probe req;
-    int ret = virtio_iommu_iov_to_req(iov, iov_cnt, &req, sizeof(req));
+    int ret = virtio_iommu_iov_to_req(iov, iov_cnt, &req,
+                    sizeof(req) + sizeof(struct virtio_iommu_req_tail));
 
     return ret ? ret : virtio_iommu_probe(s, &req, buf);
 }
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-06-23 10:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-17  6:20 [PATCH v2] virtio-iommu: Fix the partial copy of probe request Zhenzhong Duan
2022-06-22 10:20 ` Eric Auger
2022-06-22 11:55   ` Jean-Philippe Brucker
2022-06-22 12:22     ` Eric Auger
2022-06-22 13:58       ` Jean-Philippe Brucker
2022-06-23  1:40         ` Duan, Zhenzhong
2022-06-23  8:41           ` Jean-Philippe Brucker
2022-06-23  9:28             ` Eric Auger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).