From: Li Qiang Date: Sun, 16 May 2021 03:04:01 +0000 (-0700) Subject: vhost-user-gpu: fix leak in 'virgl_resource_attach_backing' (CVE-2021-3544) X-Git-Tag: upstream/4.2.1~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50d25aa960e8dc289db3f40e9e78252da968d79e;p=tools%2Fqemu-arm-static.git vhost-user-gpu: fix leak in 'virgl_resource_attach_backing' (CVE-2021-3544) Git-commit: 63736af5a6571d9def93769431e0d7e38c6677bf References: CVE-2021-3544 If 'virgl_renderer_resource_attach_iov' failed, the 'res_iovs' will be leaked. Fixes: CVE-2021-3544 Reported-by: Li Qiang virtio-gpu fix: 33243031da ("virtio-gpu-3d: fix memory leak in resource attach backing") Signed-off-by: Li Qiang Reviewed-by: Marc-André Lureau Message-Id: <20210516030403.107723-7-liq3ea@163.com> Signed-off-by: Gerd Hoffmann Signed-off-by: Jose R. Ziviani [jrz: tweak title to not break spec file] --- diff --git a/contrib/vhost-user-gpu/virgl.c b/contrib/vhost-user-gpu/virgl.c index ec8caca72..305caceba 100644 --- a/contrib/vhost-user-gpu/virgl.c +++ b/contrib/vhost-user-gpu/virgl.c @@ -284,8 +284,11 @@ virgl_resource_attach_backing(VuGpu *g, return; } - virgl_renderer_resource_attach_iov(att_rb.resource_id, + ret = virgl_renderer_resource_attach_iov(att_rb.resource_id, res_iovs, att_rb.nr_entries); + if (ret != 0) { + g_free(res_iovs); + } } static void