From nobody Thu Apr 25 20:09:09 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1575249639; cv=none; d=zohomail.com; s=zohoarc; b=aclJyALOoB0ZqMJAtGlscEe9YtI8aZTKHld27zroORU5uAWV5IZr3vESOb7SUu7oTeQTrPI2asrAvJMFKFljbxrDogBmtnXQhhEUx1BI4yT62NrrvKqyMmcln/Rx1cbli40/BR05Ixj6wwmGDXVJ4YwuN351pw1lj8KD4AlOISQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1575249639; h=Content-Type:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=WCEXSP50PlbRdr8n08dDGecF+N5vMxsCta1e5BT0vBk=; b=Y4HS4mgZGVGeITi3imTRjQ3B6T+3yFx0b2MJ20XyDuqCsqFPtmy08w4hy6S0blX/Z3rJ1/mbYE8riGxWo9B53yxQummDDkEoSxZgk3lihL6Zb8exowzSbTmH64ItHiJdRyLFBgwKbfEIv0ZRQej348hx5IyaSgk7xcwM18SyXHw= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1575249639729224.4556428170191; Sun, 1 Dec 2019 17:20:39 -0800 (PST) Received: from localhost ([::1]:57534 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibaOD-0007eg-W0 for importer@patchew.org; Sun, 01 Dec 2019 20:20:38 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:50560) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibaNW-0007AA-Su for qemu-devel@nongnu.org; Sun, 01 Dec 2019 20:19:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibaNV-0000RV-J2 for qemu-devel@nongnu.org; Sun, 01 Dec 2019 20:19:54 -0500 Received: from szxga04-in.huawei.com ([45.249.212.190]:2204 helo=huawei.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ibaNV-0000LG-7F for qemu-devel@nongnu.org; Sun, 01 Dec 2019 20:19:53 -0500 Received: from DGGEMS413-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 6EC64E21F0F5C89F5AD2; Mon, 2 Dec 2019 09:19:46 +0800 (CST) Received: from HGHY2P002143101.china.huawei.com (10.184.39.213) by DGGEMS413-HUB.china.huawei.com (10.3.19.213) with Microsoft SMTP Server id 14.3.439.0; Mon, 2 Dec 2019 09:19:38 +0800 From: To: , Subject: [PATCH] virtio-input: fix memory leak in virtio_input_device_unrealize() Date: Mon, 2 Dec 2019 09:19:28 +0800 Message-ID: <1575249568-52136-1-git-send-email-pannengyuan@huawei.com> X-Mailer: git-send-email 2.7.2.windows.1 MIME-Version: 1.0 X-Originating-IP: [10.184.39.213] X-CFilter-Loop: Reflected X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 45.249.212.190 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: liyiting@huawei.com, kuhn.chenqun@huawei.com, PanNengyuan , qemu-devel@nongnu.org, zhang.zhanghailiang@huawei.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: PanNengyuan vdev->vq[i] is forgot to cleanup in virtio_input_device_unrealize, the memory leak stack is as bellow: Direct leak of 3584 byte(s) in 1 object(s) allocated from: #0 0x7f84a49f6560 in calloc (/usr/lib64/libasan.so.3+0xc7560) #1 0x7f84a3b3e015 in g_malloc0 (/usr/lib64/libglib-2.0.so.0+0x50015) #2 0x559c0f0b33e7 in virtio_add_queue /mnt/sdb/qemu-4.2.0-rc0/hw/virtio= /virtio.c:2327 #3 0x559c0f205c24 in virtio_input_device_realize /mnt/sdb/qemu-4.2.0-rc= 0/hw/input/virtio-input.c:262 #4 0x559c0f0b06a7 in virtio_device_realize /mnt/sdb/qemu-4.2.0-rc0/hw/v= irtio/virtio.c:3504 #5 0x559c0f1ba031 in device_set_realized /mnt/sdb/qemu-4.2.0-rc0/hw/co= re/qdev.c:876 #6 0x559c0f32cedd in property_set_bool /mnt/sdb/qemu-4.2.0-rc0/qom/obje= ct.c:2080 #7 0x559c0f3314ee in object_property_set_qobject /mnt/sdb/qemu-4.2.0-rc= 0/qom/qom-qobject.c:26 Direct leak of 3584 byte(s) in 1 object(s) allocated from: #0 0x7f84a49f6560 in calloc (/usr/lib64/libasan.so.3+0xc7560) #1 0x7f84a3b3e015 in g_malloc0 (/usr/lib64/libglib-2.0.so.0+0x50015) #2 0x559c0f0b33e7 in virtio_add_queue /mnt/sdb/qemu-4.2.0-rc0/hw/virtio= /virtio.c:2327 #3 0x559c0f205c3f in virtio_input_device_realize /mnt/sdb/qemu-4.2.0-rc= 0/hw/input/virtio-input.c:263 #4 0x559c0f0b06a7 in virtio_device_realize /mnt/sdb/qemu-4.2.0-rc0/hw/v= irtio/virtio.c:3504 #5 0x559c0f1ba031 in device_set_realized /mnt/sdb/qemu-4.2.0-rc0/hw/cor= e/qdev.c:876 #6 0x559c0f32cedd in property_set_bool /mnt/sdb/qemu-4.2.0-rc0/qom/obje= ct.c:2080 #7 0x559c0f3314ee in object_property_set_qobject /mnt/sdb/qemu-4.2.0-rc= 0/qom/qom-qobject.c:26 Reported-by: Euler Robot Signed-off-by: PanNengyuan --- hw/input/virtio-input.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c index 51617a5..da94da4 100644 --- a/hw/input/virtio-input.c +++ b/hw/input/virtio-input.c @@ -288,6 +288,9 @@ static void virtio_input_device_unrealize(DeviceState *= dev, Error **errp) return; } } + =20 + virtio_del_queue(vdev, 0); + virtio_del_queue(vdev, 1); virtio_cleanup(vdev); } =20 --=20 2.7.2.windows.1