]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
accel/rocket: fix UAF via dangling GEM handle in create_bo
authorDhabaleshwar Das <dhabal123@gmail.com>
Wed, 20 May 2026 18:30:00 +0000 (00:00 +0530)
committerTomeu Vizoso <tomeu@tomeuvizoso.net>
Thu, 21 May 2026 17:01:23 +0000 (19:01 +0200)
commitf706e6a4ce75585af979aec3dcbdce68bc76306b
treef0e4d0c987709ad7e753dc1746a5e8007b27f0c4
parent9af1b6e175c82daf4b423da339a722d8e67a735a
accel/rocket: fix UAF via dangling GEM handle in create_bo

rocket_ioctl_create_bo() inserts a GEM handle into the file's IDR via
drm_gem_handle_create() early on, then performs several operations that
can fail (sgt allocation, drm_mm insert, iommu_map). If any fail after
the handle is live, the error path calls drm_gem_shmem_object_free()
which kfree's the object without removing the handle from the IDR.

This leaves a dangling handle pointing to freed slab memory. Any
subsequent ioctl using that handle (PREP_BO, FINI_BO, SUBMIT) calls
drm_gem_object_lookup() and dereferences freed memory (UAF).

Fix by moving drm_gem_handle_create() to after all fallible operations
succeed, matching the pattern used by panfrost, lima, and etnaviv.

Also fix drm_mm_insert_node_generic() whose return value was silently
overwritten by iommu_map_sgtable() on the next line. Add the missing
error check.

[tomeu: Move handle creation to the very end]

Fixes: 658ebeac3351 ("accel/rocket: Add IOCTL for BO creation")
Reported-by: Dhabaleshwar Das <dhabal123@gmail.com>
Signed-off-by: Dhabaleshwar Das <dhabal123@gmail.com>
Reviewed-by: Tomeu Vizoso <tomeu@tomeuvizoso.net>
Link: https://patch.msgid.link/20260521165720.2113571-1-tomeu@tomeuvizoso.net
Signed-off-by: Tomeu Vizoso <tomeu@tomeuvizoso.net>
drivers/accel/rocket/rocket_gem.c