drm/panthor: Reset the FW VM to NULL on unplug
authorBoris Brezillon <boris.brezillon@collabora.com>
Thu, 2 May 2024 18:38:11 +0000 (20:38 +0200)
committerBoris Brezillon <boris.brezillon@collabora.com>
Mon, 13 May 2024 07:52:19 +0000 (09:52 +0200)
This way get NULL derefs instead of use-after-free if the FW VM is
referenced after the device has been unplugged.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240502183813.1612017-4-boris.brezillon@collabora.com
drivers/gpu/drm/panthor/panthor_fw.c

index 394e00bd75bb7a5339ae320b6af28a71209e38ec..857f3f11258aad3ec659a6111d834ef3c177ff12 100644 (file)
@@ -1142,6 +1142,7 @@ void panthor_fw_unplug(struct panthor_device *ptdev)
         * state to keep the active_refcnt balanced.
         */
        panthor_vm_put(ptdev->fw->vm);
+       ptdev->fw->vm = NULL;
 
        panthor_gpu_power_off(ptdev, L2, ptdev->gpu_info.l2_present, 20000);
 }