a41c76
From 388611da8330fb19693caf927680e9af08d5738e Mon Sep 17 00:00:00 2001
a41c76
Message-Id: <388611da8330fb19693caf927680e9af08d5738e@dist-git>
a41c76
From: Peter Krempa <pkrempa@redhat.com>
a41c76
Date: Wed, 19 Feb 2020 15:10:27 +0100
a41c76
Subject: [PATCH] qemuDomainGetStatsIOThread: Don't leak array with 0 iothreads
a41c76
MIME-Version: 1.0
a41c76
Content-Type: text/plain; charset=UTF-8
a41c76
Content-Transfer-Encoding: 8bit
a41c76
a41c76
qemuMonitorGetIOThreads returns a NULL-terminated list even when 0
a41c76
iothreads are present. The caller didn't perform cleanup if there were 0
a41c76
iothreads leaking the array.
a41c76
a41c76
https://bugzilla.redhat.com/show_bug.cgi?id=1804548
a41c76
a41c76
Fixes: d1eac92784573559b6fd56836e33b215c89308e3
a41c76
Reported-by: Jing Yan <jiyan@redhat.com>
a41c76
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
a41c76
Reviewed-by: Ján Tomko <jtomko@redhat.com>
a41c76
(cherry picked from commit 9bf9e0ae6af38c806f4672ca7b12a6b38d5a9581)
a41c76
Message-Id: <eef614566ad383a1393a295caa6e2550381eb3e7.1582120424.git.pkrempa@redhat.com>
a41c76
Reviewed-by: Ján Tomko <jtomko@redhat.com>
a41c76
---
a41c76
 src/qemu/qemu_driver.c | 8 ++++++--
a41c76
 1 file changed, 6 insertions(+), 2 deletions(-)
a41c76
a41c76
diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
a41c76
index af81c4a6e4..69e4f7264b 100644
a41c76
--- a/src/qemu/qemu_driver.c
a41c76
+++ b/src/qemu/qemu_driver.c
a41c76
@@ -21532,8 +21532,12 @@ qemuDomainGetStatsIOThread(virQEMUDriverPtr driver,
a41c76
     if ((niothreads = qemuDomainGetIOThreadsMon(driver, dom, &iothreads)) < 0)
a41c76
         return -1;
a41c76
 
a41c76
-    if (niothreads == 0)
a41c76
-        return 0;
a41c76
+    /* qemuDomainGetIOThreadsMon returns a NULL-terminated list, so we must free
a41c76
+     * it even if it returns 0 */
a41c76
+    if (niothreads == 0) {
a41c76
+        ret = 0;
a41c76
+        goto cleanup;
a41c76
+    }
a41c76
 
a41c76
     if (virTypedParamListAddUInt(params, niothreads, "iothread.count") < 0)
a41c76
         goto cleanup;
a41c76
-- 
a41c76
2.25.0
a41c76