qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [2.2 PATCH V2] virtio-net: fix unmap leak
@ 2014-11-27 10:04 Jason Wang
  2014-11-27 10:28 ` Stefano Stabellini
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Jason Wang @ 2014-11-27 10:04 UTC (permalink / raw)
  To: aliguori, mst
  Cc: famz, Stefano Stabellini, Jason Wang, qemu-stable, qemu-devel

virtio_net_handle_ctrl() and other functions that process control vq
request call iov_discard_front() which will shorten the iov. This will
lead unmapping in virtqueue_push() leaks mapping.

Fixes this by keeping the original iov untouched and using a temp variable
in those functions.

Cc: Wen Congyang <wency@cn.fujitsu.com>
Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
Changes from V1:
- Use g_memdup() to simplify codes
---
 hw/net/virtio-net.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 9b88775..e574bd4 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -798,7 +798,7 @@ static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
     virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
     VirtQueueElement elem;
     size_t s;
-    struct iovec *iov;
+    struct iovec *iov, *iov2;
     unsigned int iov_cnt;
 
     while (virtqueue_pop(vq, &elem)) {
@@ -808,8 +808,8 @@ static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
             exit(1);
         }
 
-        iov = elem.out_sg;
         iov_cnt = elem.out_num;
+        iov2 = iov = g_memdup(elem.out_sg, sizeof(struct iovec) * elem.out_num);
         s = iov_to_buf(iov, iov_cnt, 0, &ctrl, sizeof(ctrl));
         iov_discard_front(&iov, &iov_cnt, sizeof(ctrl));
         if (s != sizeof(ctrl)) {
@@ -833,6 +833,7 @@ static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
 
         virtqueue_push(vq, &elem, sizeof(status));
         virtio_notify(vdev, vq);
+        g_free(iov2);
     }
 }
 
-- 
1.9.1

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

end of thread, other threads:[~2014-11-28 13:06 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-27 10:04 [Qemu-devel] [2.2 PATCH V2] virtio-net: fix unmap leak Jason Wang
2014-11-27 10:28 ` Stefano Stabellini
2014-11-27 10:31 ` Fam Zheng
2014-11-27 12:33 ` Michael S. Tsirkin
2014-11-27 12:42   ` Peter Maydell
2014-11-27 12:46     ` [Qemu-devel] [2.2 PATCH V2 for-4.5] " Stefano Stabellini
2014-11-27 14:09     ` [Qemu-devel] [2.2 PATCH V2] " Peter Maydell
2014-11-27 14:45       ` Michael S. Tsirkin
2014-11-27 14:54       ` Stefano Stabellini
2014-11-27 15:03         ` Michael S. Tsirkin
2014-11-27 16:40       ` Michael S. Tsirkin
2014-11-28 13:05 ` Peter Maydell

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).