]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/panfrost: Fix a double-free error
authorBoris Brezillon <boris.brezillon@collabora.com>
Thu, 27 Jun 2019 17:24:14 +0000 (19:24 +0200)
committerRob Herring <robh@kernel.org>
Fri, 28 Jun 2019 22:45:51 +0000 (16:45 -0600)
drm_gem_shmem_create_with_handle() returns a GEM object and attach a
handle to it. When the user closes the DRM FD, the core releases all
GEM handles along with their backing GEM objs, which can lead to a
double-free issue if panfrost_ioctl_create_bo() failed and went
through the err_free path where drm_gem_object_put_unlocked() is
called without deleting the associate handle.

Replace this drm_gem_object_put_unlocked() call by a
drm_gem_handle_delete() one to fix that.

Fixes: f3ba91228e8e ("drm/panfrost: Add initial panfrost driver")
Cc: <stable@vger.kernel.org>
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190627172414.27231-1-boris.brezillon@collabora.com
drivers/gpu/drm/panfrost/panfrost_drv.c

index d11e2281dde625d57fd7f544b6bd55481a6baeee..7e43b25785f77151dbabc3f17e4b6010b12b0f02 100644 (file)
@@ -63,7 +63,7 @@ static int panfrost_ioctl_create_bo(struct drm_device *dev, void *data,
        return 0;
 
 err_free:
-       drm_gem_object_put_unlocked(&shmem->base);
+       drm_gem_handle_delete(file, args->handle);
        return ret;
 }