All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] fix two virtio queues memleak
@ 2020-03-27  4:56 Pan Nengyuan
  2020-03-27  4:56 ` [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize() Pan Nengyuan
  2020-03-27  4:56 ` [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak Pan Nengyuan
  0 siblings, 2 replies; 5+ messages in thread
From: Pan Nengyuan @ 2020-03-27  4:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: euler.robot, Pan Nengyuan, zhang.zhanghailiang, mst

This series fix two vqs leak:
1. Do delete vqs on the error path in virtio_blk_device_realize().
2. Do delete vqs in virtio_iommu_device_unrealize() to fix another leaks.

v2->v1:
- Fix incorrect free in v1, it will cause a uaf.

Pan Nengyuan (2):
  virtio-blk: delete vqs on the error path in realize()
  virtio-iommu: delete vqs in unrealize to fix memleak

 hw/block/virtio-blk.c    | 3 +++
 hw/virtio/virtio-iommu.c | 2 ++
 2 files changed, 5 insertions(+)

-- 
2.18.2



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

* [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize()
  2020-03-27  4:56 [PATCH v2 0/2] fix two virtio queues memleak Pan Nengyuan
@ 2020-03-27  4:56 ` Pan Nengyuan
  2020-03-27  8:58   ` Stefano Garzarella
  2020-03-27  4:56 ` [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak Pan Nengyuan
  1 sibling, 1 reply; 5+ messages in thread
From: Pan Nengyuan @ 2020-03-27  4:56 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, zhang.zhanghailiang, qemu-block, mst, Pan Nengyuan,
	Max Reitz, Stefan Hajnoczi, euler.robot

virtio_vqs forgot to free on the error path in realize(). Fix that.

The asan stack:
Direct leak of 14336 byte(s) in 1 object(s) allocated from:
    #0 0x7f58b93fd970 in __interceptor_calloc (/lib64/libasan.so.5+0xef970)
    #1 0x7f58b858249d in g_malloc0 (/lib64/libglib-2.0.so.0+0x5249d)
    #2 0x5562cc627f49 in virtio_add_queue /mnt/sdb/qemu/hw/virtio/virtio.c:2413
    #3 0x5562cc4b524a in virtio_blk_device_realize /mnt/sdb/qemu/hw/block/virtio-blk.c:1202
    #4 0x5562cc613050 in virtio_device_realize /mnt/sdb/qemu/hw/virtio/virtio.c:3615
    #5 0x5562ccb7a568 in device_set_realized /mnt/sdb/qemu/hw/core/qdev.c:891
    #6 0x5562cd39cd45 in property_set_bool /mnt/sdb/qemu/qom/object.c:2238

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
---
v2->v1:
- Fix incorrect free in v1, it will cause a uaf.
---
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Max Reitz <mreitz@redhat.com>
Cc: qemu-block@nongnu.org
---
 hw/block/virtio-blk.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
index 142863a3b2..97ba8a2187 100644
--- a/hw/block/virtio-blk.c
+++ b/hw/block/virtio-blk.c
@@ -1204,6 +1204,9 @@ static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
     virtio_blk_data_plane_create(vdev, conf, &s->dataplane, &err);
     if (err != NULL) {
         error_propagate(errp, err);
+        for (i = 0; i < conf->num_queues; i++) {
+            virtio_del_queue(vdev, i);
+        }
         virtio_cleanup(vdev);
         return;
     }
-- 
2.18.2



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

* [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak
  2020-03-27  4:56 [PATCH v2 0/2] fix two virtio queues memleak Pan Nengyuan
  2020-03-27  4:56 ` [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize() Pan Nengyuan
@ 2020-03-27  4:56 ` Pan Nengyuan
  2020-03-27  9:03   ` Stefano Garzarella
  1 sibling, 1 reply; 5+ messages in thread
From: Pan Nengyuan @ 2020-03-27  4:56 UTC (permalink / raw)
  To: qemu-devel
  Cc: Eric Auger, euler.robot, Pan Nengyuan, zhang.zhanghailiang, mst

req_vq/event_vq forgot to free in unrealize. Fix that.

Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
---
Cc: Eric Auger <eric.auger@redhat.com>
---
 hw/virtio/virtio-iommu.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
index 4cee8083bc..9d2ff0693c 100644
--- a/hw/virtio/virtio-iommu.c
+++ b/hw/virtio/virtio-iommu.c
@@ -696,6 +696,8 @@ static void virtio_iommu_device_unrealize(DeviceState *dev, Error **errp)
     g_tree_destroy(s->domains);
     g_tree_destroy(s->endpoints);
 
+    virtio_delete_queue(s->req_vq);
+    virtio_delete_queue(s->event_vq);
     virtio_cleanup(vdev);
 }
 
-- 
2.18.2



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

* Re: [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize()
  2020-03-27  4:56 ` [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize() Pan Nengyuan
@ 2020-03-27  8:58   ` Stefano Garzarella
  0 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2020-03-27  8:58 UTC (permalink / raw)
  To: Pan Nengyuan
  Cc: Kevin Wolf, zhang.zhanghailiang, qemu-block, mst, qemu-devel,
	Max Reitz, Stefan Hajnoczi, euler.robot

On Fri, Mar 27, 2020 at 12:56:19PM +0800, Pan Nengyuan wrote:
> virtio_vqs forgot to free on the error path in realize(). Fix that.
> 
> The asan stack:
> Direct leak of 14336 byte(s) in 1 object(s) allocated from:
>     #0 0x7f58b93fd970 in __interceptor_calloc (/lib64/libasan.so.5+0xef970)
>     #1 0x7f58b858249d in g_malloc0 (/lib64/libglib-2.0.so.0+0x5249d)
>     #2 0x5562cc627f49 in virtio_add_queue /mnt/sdb/qemu/hw/virtio/virtio.c:2413
>     #3 0x5562cc4b524a in virtio_blk_device_realize /mnt/sdb/qemu/hw/block/virtio-blk.c:1202
>     #4 0x5562cc613050 in virtio_device_realize /mnt/sdb/qemu/hw/virtio/virtio.c:3615
>     #5 0x5562ccb7a568 in device_set_realized /mnt/sdb/qemu/hw/core/qdev.c:891
>     #6 0x5562cd39cd45 in property_set_bool /mnt/sdb/qemu/qom/object.c:2238
> 
> Reported-by: Euler Robot <euler.robot@huawei.com>
> Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
> ---
> v2->v1:
> - Fix incorrect free in v1, it will cause a uaf.
> ---
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> Cc: Kevin Wolf <kwolf@redhat.com>
> Cc: Max Reitz <mreitz@redhat.com>
> Cc: qemu-block@nongnu.org
> ---
>  hw/block/virtio-blk.c | 3 +++
>  1 file changed, 3 insertions(+)

Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>

> 
> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
> index 142863a3b2..97ba8a2187 100644
> --- a/hw/block/virtio-blk.c
> +++ b/hw/block/virtio-blk.c
> @@ -1204,6 +1204,9 @@ static void virtio_blk_device_realize(DeviceState *dev, Error **errp)
>      virtio_blk_data_plane_create(vdev, conf, &s->dataplane, &err);
>      if (err != NULL) {
>          error_propagate(errp, err);
> +        for (i = 0; i < conf->num_queues; i++) {
> +            virtio_del_queue(vdev, i);
> +        }
>          virtio_cleanup(vdev);
>          return;
>      }
> -- 
> 2.18.2
> 
> 



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

* Re: [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak
  2020-03-27  4:56 ` [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak Pan Nengyuan
@ 2020-03-27  9:03   ` Stefano Garzarella
  0 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2020-03-27  9:03 UTC (permalink / raw)
  To: Pan Nengyuan
  Cc: Eric Auger, zhang.zhanghailiang, mst, qemu-devel, euler.robot

On Fri, Mar 27, 2020 at 12:56:20PM +0800, Pan Nengyuan wrote:
> req_vq/event_vq forgot to free in unrealize. Fix that.
> 
> Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
> ---
> Cc: Eric Auger <eric.auger@redhat.com>
> ---
>  hw/virtio/virtio-iommu.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/hw/virtio/virtio-iommu.c b/hw/virtio/virtio-iommu.c
> index 4cee8083bc..9d2ff0693c 100644
> --- a/hw/virtio/virtio-iommu.c
> +++ b/hw/virtio/virtio-iommu.c
> @@ -696,6 +696,8 @@ static void virtio_iommu_device_unrealize(DeviceState *dev, Error **errp)
>      g_tree_destroy(s->domains);
>      g_tree_destroy(s->endpoints);
>  
> +    virtio_delete_queue(s->req_vq);
> +    virtio_delete_queue(s->event_vq);
>      virtio_cleanup(vdev);
>  }

Hi Pan,
this patch LGTM, I left a comment on v1 about cleaning 's->as_by_busptr'
hash table as well.

Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>

Thanks,
Stefano



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

end of thread, other threads:[~2020-03-27  9:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-27  4:56 [PATCH v2 0/2] fix two virtio queues memleak Pan Nengyuan
2020-03-27  4:56 ` [PATCH v2 1/2] virtio-blk: delete vqs on the error path in realize() Pan Nengyuan
2020-03-27  8:58   ` Stefano Garzarella
2020-03-27  4:56 ` [PATCH v2 2/2] virtio-iommu: delete vqs in unrealize to fix memleak Pan Nengyuan
2020-03-27  9:03   ` Stefano Garzarella

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.