* [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
@ 2026-07-14 7:36 Icenowy Zheng
2026-07-17 11:14 ` Alessio Belle
0 siblings, 1 reply; 6+ messages in thread
From: Icenowy Zheng @ 2026-07-14 7:36 UTC (permalink / raw)
To: Frank Binns, Matt Coster, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Alessio Belle, Brajesh Gupta, Brendan King, Danilo Krummrich,
dri-devel, linux-kernel, Icenowy Zheng, Icenowy Zheng, stable
The drm gpuvm code doesn't protect find operation against map operation,
and the driver needs to ensure a map operation shouldn't happen when a
find operation is in progress.
In some cases a find operation will be in progress when doing map/unmap
operations, and the find operation will do a NULL pointer deference.
An example of the stack trace of such NULL deference is shown below:
```
Unable to handle kernel access to user memory without uaccess routines at
virtual address 0000000000000010
[<ffffffff01e989d4>] drm_gpuva_find+0x28/0x6c [drm_gpuvm]
[<ffffffff01ed3a40>] pvr_vm_unmap+0x34/0x68 [powervr]
[<ffffffff01ec69da>] pvr_ioctl_vm_unmap+0x2e/0x50 [powervr]
[<ffffffff8080ce0a>] drm_ioctl_kernel+0x8e/0xdc
[<ffffffff8080d016>] drm_ioctl+0x1be/0x3e0
[<ffffffff802bec3e>] __riscv_sys_ioctl+0xba/0xc4
[<ffffffff80d858b2>] do_trap_ecall_u+0x23e/0x3f4
[<ffffffff80d92288>] handle_exception+0x168/0x174
```
As all occurences of drm_gpuva_find*() are already guarded by
vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
disturbing any find operation. This fixes the NULL deference problem in
drm_gpuva_find*().
Cc: stable@vger.kernel.org
Fixes: ff5f643de0bf ("drm/imagination: Add GEM and VM related code")
Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
---
Changes in v2:
- Dropped wrongly duplicated mutex_unlock() call and reordered it to
before pvr_vm_bind_op_fini() (the lock is acquired after
pvr_vm_bind_op_map_init() call). (Thanks to Brajesh)
- Added a extra Fixes pointing to the original broken code that was
refactored by the original Fixes (but still broken). (Thanks to
Alessio)
- Fixed some typos in commit message. (Thanks to Alessio)
- Added a stacktrace of the oops that occured on my board. (As suggested
by Alessio)
drivers/gpu/drm/imagination/pvr_vm.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
index 396d349fb6ce4..ceb78694cd987 100644
--- a/drivers/gpu/drm/imagination/pvr_vm.c
+++ b/drivers/gpu/drm/imagination/pvr_vm.c
@@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
pvr_gem_object_get(pvr_obj);
+ mutex_lock(&vm_ctx->lock);
err = drm_gpuvm_exec_lock(&vm_exec);
if (err)
goto err_cleanup;
@@ -756,6 +757,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
drm_gpuvm_exec_unlock(&vm_exec);
err_cleanup:
+ mutex_unlock(&vm_ctx->lock);
pvr_vm_bind_op_fini(&bind_op);
return err;
--
2.52.0
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
2026-07-14 7:36 [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM Icenowy Zheng
@ 2026-07-17 11:14 ` Alessio Belle
2026-07-17 17:06 ` Icenowy Zheng
0 siblings, 1 reply; 6+ messages in thread
From: Alessio Belle @ 2026-07-17 11:14 UTC (permalink / raw)
To: zhengxingda
Cc: airlied, tzimmermann, matt.coster, simona, dri-devel, uwu,
Brendan King, linux-kernel, Frank Binns, Brajesh Gupta, stable,
dakr, maarten.lankhorst, mripard
On Tue, 2026-07-14 at 15:36 +0800, Icenowy Zheng wrote:
> The drm gpuvm code doesn't protect find operation against map operation,
> and the driver needs to ensure a map operation shouldn't happen when a
> find operation is in progress.
>
> In some cases a find operation will be in progress when doing map/unmap
> operations, and the find operation will do a NULL pointer deference.
>
> An example of the stack trace of such NULL deference is shown below:
>
> ```
> Unable to handle kernel access to user memory without uaccess routines at
> virtual address 0000000000000010
>
> [<ffffffff01e989d4>] drm_gpuva_find+0x28/0x6c [drm_gpuvm]
> [<ffffffff01ed3a40>] pvr_vm_unmap+0x34/0x68 [powervr]
> [<ffffffff01ec69da>] pvr_ioctl_vm_unmap+0x2e/0x50 [powervr]
> [<ffffffff8080ce0a>] drm_ioctl_kernel+0x8e/0xdc
> [<ffffffff8080d016>] drm_ioctl+0x1be/0x3e0
> [<ffffffff802bec3e>] __riscv_sys_ioctl+0xba/0xc4
> [<ffffffff80d858b2>] do_trap_ecall_u+0x23e/0x3f4
> [<ffffffff80d92288>] handle_exception+0x168/0x174
> ```
>
> As all occurences of drm_gpuva_find*() are already guarded by
> vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
> disturbing any find operation. This fixes the NULL deference problem in
> drm_gpuva_find*().
>
> Cc: stable@vger.kernel.org
> Fixes: ff5f643de0bf ("drm/imagination: Add GEM and VM related code")
> Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
Reviewed-by: Alessio Belle <alessio.belle@imgtec.com>
p.s. there's a double typo deference -> dereference that I can fix before
applying this early next week.
Thanks,
Alessio
> ---
> Changes in v2:
> - Dropped wrongly duplicated mutex_unlock() call and reordered it to
> before pvr_vm_bind_op_fini() (the lock is acquired after
> pvr_vm_bind_op_map_init() call). (Thanks to Brajesh)
> - Added a extra Fixes pointing to the original broken code that was
> refactored by the original Fixes (but still broken). (Thanks to
> Alessio)
> - Fixed some typos in commit message. (Thanks to Alessio)
> - Added a stacktrace of the oops that occured on my board. (As suggested
> by Alessio)
>
> drivers/gpu/drm/imagination/pvr_vm.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
> index 396d349fb6ce4..ceb78694cd987 100644
> --- a/drivers/gpu/drm/imagination/pvr_vm.c
> +++ b/drivers/gpu/drm/imagination/pvr_vm.c
> @@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
>
> pvr_gem_object_get(pvr_obj);
>
> + mutex_lock(&vm_ctx->lock);
> err = drm_gpuvm_exec_lock(&vm_exec);
> if (err)
> goto err_cleanup;
> @@ -756,6 +757,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
> drm_gpuvm_exec_unlock(&vm_exec);
>
> err_cleanup:
> + mutex_unlock(&vm_ctx->lock);
> pvr_vm_bind_op_fini(&bind_op);
>
> return err;
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
2026-07-17 11:14 ` Alessio Belle
@ 2026-07-17 17:06 ` Icenowy Zheng
0 siblings, 0 replies; 6+ messages in thread
From: Icenowy Zheng @ 2026-07-17 17:06 UTC (permalink / raw)
To: Alessio Belle
Cc: airlied, tzimmermann, matt.coster, simona, dri-devel,
Brendan King, linux-kernel, Frank Binns, Brajesh Gupta, stable,
dakr, maarten.lankhorst, mripard
在 2026-07-17五的 11:14 +0000,Alessio Belle写道:
> On Tue, 2026-07-14 at 15:36 +0800, Icenowy Zheng wrote:
> > The drm gpuvm code doesn't protect find operation against map
> > operation,
> > and the driver needs to ensure a map operation shouldn't happen
> > when a
> > find operation is in progress.
> >
> > In some cases a find operation will be in progress when doing
> > map/unmap
> > operations, and the find operation will do a NULL pointer
> > deference.
> >
> > An example of the stack trace of such NULL deference is shown
> > below:
> >
> > ```
> > Unable to handle kernel access to user memory without uaccess
> > routines at
> > virtual address 0000000000000010
> >
> > [<ffffffff01e989d4>] drm_gpuva_find+0x28/0x6c [drm_gpuvm]
> > [<ffffffff01ed3a40>] pvr_vm_unmap+0x34/0x68 [powervr]
> > [<ffffffff01ec69da>] pvr_ioctl_vm_unmap+0x2e/0x50 [powervr]
> > [<ffffffff8080ce0a>] drm_ioctl_kernel+0x8e/0xdc
> > [<ffffffff8080d016>] drm_ioctl+0x1be/0x3e0
> > [<ffffffff802bec3e>] __riscv_sys_ioctl+0xba/0xc4
> > [<ffffffff80d858b2>] do_trap_ecall_u+0x23e/0x3f4
> > [<ffffffff80d92288>] handle_exception+0x168/0x174
> > ```
> >
> > As all occurences of drm_gpuva_find*() are already guarded by
> > vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
> > disturbing any find operation. This fixes the NULL deference
> > problem in
> > drm_gpuva_find*().
> >
> > Cc: stable@vger.kernel.org
> > Fixes: ff5f643de0bf ("drm/imagination: Add GEM and VM related
> > code")
> > Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's
> > drm_exec helper")
> > Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
>
> Reviewed-by: Alessio Belle <alessio.belle@imgtec.com>
>
> p.s. there's a double typo deference -> dereference that I can fix
> before
> applying this early next week.
Oops I made the same mistake again when rephrasing the message...
Maybe I need some reinforced learning.
Thanks,
Icenowy
>
> Thanks,
> Alessio
>
> > ---
> > Changes in v2:
> > - Dropped wrongly duplicated mutex_unlock() call and reordered it
> > to
> > before pvr_vm_bind_op_fini() (the lock is acquired after
> > pvr_vm_bind_op_map_init() call). (Thanks to Brajesh)
> > - Added a extra Fixes pointing to the original broken code that was
> > refactored by the original Fixes (but still broken). (Thanks to
> > Alessio)
> > - Fixed some typos in commit message. (Thanks to Alessio)
> > - Added a stacktrace of the oops that occured on my board. (As
> > suggested
> > by Alessio)
> >
> > drivers/gpu/drm/imagination/pvr_vm.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/imagination/pvr_vm.c
> > b/drivers/gpu/drm/imagination/pvr_vm.c
> > index 396d349fb6ce4..ceb78694cd987 100644
> > --- a/drivers/gpu/drm/imagination/pvr_vm.c
> > +++ b/drivers/gpu/drm/imagination/pvr_vm.c
> > @@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx,
> > struct pvr_gem_object *pvr_obj,
> >
> > pvr_gem_object_get(pvr_obj);
> >
> > + mutex_lock(&vm_ctx->lock);
> > err = drm_gpuvm_exec_lock(&vm_exec);
> > if (err)
> > goto err_cleanup;
> > @@ -756,6 +757,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx,
> > struct pvr_gem_object *pvr_obj,
> > drm_gpuvm_exec_unlock(&vm_exec);
> >
> > err_cleanup:
> > + mutex_unlock(&vm_ctx->lock);
> > pvr_vm_bind_op_fini(&bind_op);
> >
> > return err;
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
@ 2026-04-21 17:57 Icenowy Zheng
2026-07-06 14:22 ` Brajesh Gupta
2026-07-13 17:07 ` Alessio Belle
0 siblings, 2 replies; 6+ messages in thread
From: Icenowy Zheng @ 2026-04-21 17:57 UTC (permalink / raw)
To: Frank Binns, Matt Coster, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Brendan King, Danilo Krummrich, dri-devel, linux-kernel,
Icenowy Zheng, Icenowy Zheng, stable
The drm gpuvm code doesn't protect find operation against map operation,
and the driver needs to ensure a map operation shouldn't happen when a
find operation is in progress.
As all occurences of drm_gpuva_find*() is already guarded by
vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
disturbing any find operation.
This fixes occasional NULL deference in drm_gpuva_find*().
Cc: stable@vger.kernel.org
Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
---
Changes in v2:
- Fixed wrong commit prefix.
drivers/gpu/drm/imagination/pvr_vm.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
index e1ec60f34b6e6..eea88e7ad03c1 100644
--- a/drivers/gpu/drm/imagination/pvr_vm.c
+++ b/drivers/gpu/drm/imagination/pvr_vm.c
@@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
pvr_gem_object_get(pvr_obj);
+ mutex_lock(&vm_ctx->lock);
err = drm_gpuvm_exec_lock(&vm_exec);
if (err)
goto err_cleanup;
@@ -754,9 +755,11 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
err = pvr_vm_bind_op_exec(&bind_op);
drm_gpuvm_exec_unlock(&vm_exec);
+ mutex_unlock(&vm_ctx->lock);
err_cleanup:
pvr_vm_bind_op_fini(&bind_op);
+ mutex_unlock(&vm_ctx->lock);
return err;
}
--
2.52.0
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
2026-04-21 17:57 Icenowy Zheng
@ 2026-07-06 14:22 ` Brajesh Gupta
2026-07-13 17:07 ` Alessio Belle
1 sibling, 0 replies; 6+ messages in thread
From: Brajesh Gupta @ 2026-07-06 14:22 UTC (permalink / raw)
To: tzimmermann, simona, zhengxingda, Frank Binns, Alessio Belle,
maarten.lankhorst, mripard, airlied
Cc: Brendan King, dri-devel, uwu, dakr, linux-kernel, stable
On Wed, 2026-04-22 at 01:57 +0800, Icenowy Zheng wrote:
Hi Icenowy,
> The drm gpuvm code doesn't protect find operation against map operation,
> and the driver needs to ensure a map operation shouldn't happen when a
> find operation is in progress.
>
> As all occurences of drm_gpuva_find*() is already guarded by
> vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
> disturbing any find operation.
>
> This fixes occasional NULL deference in drm_gpuva_find*().
>
> Cc: stable@vger.kernel.org
> Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> ---
> Changes in v2:
> - Fixed wrong commit prefix.
>
> drivers/gpu/drm/imagination/pvr_vm.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
> index e1ec60f34b6e6..eea88e7ad03c1 100644
> --- a/drivers/gpu/drm/imagination/pvr_vm.c
> +++ b/drivers/gpu/drm/imagination/pvr_vm.c
> @@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
>
> pvr_gem_object_get(pvr_obj);
>
> + mutex_lock(&vm_ctx->lock);
> err = drm_gpuvm_exec_lock(&vm_exec);
> if (err)
> goto err_cleanup;
> @@ -754,9 +755,11 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
> err = pvr_vm_bind_op_exec(&bind_op);
>
> drm_gpuvm_exec_unlock(&vm_exec);
> + mutex_unlock(&vm_ctx->lock);
Can you drop extra mutex_unlock() from here?
>
> err_cleanup:
> pvr_vm_bind_op_fini(&bind_op);
> + mutex_unlock(&vm_ctx->lock);
And move this unlock call before pvr_vm_bind_op_fini() call.
Thanks,
Brajesh
>
> return err;
> }
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
2026-04-21 17:57 Icenowy Zheng
2026-07-06 14:22 ` Brajesh Gupta
@ 2026-07-13 17:07 ` Alessio Belle
1 sibling, 0 replies; 6+ messages in thread
From: Alessio Belle @ 2026-07-13 17:07 UTC (permalink / raw)
To: zhengxingda
Cc: Brajesh Gupta, airlied, tzimmermann, matt.coster, simona,
dri-devel, uwu, Brendan King, Frank Binns, dakr, linux-kernel,
stable, mripard, maarten.lankhorst, Luigi Santivetti
Hi Icenowy,
On Wed, 2026-04-22 at 01:57 +0800, Icenowy Zheng wrote:
> The drm gpuvm code doesn't protect find operation against map operation,
> and the driver needs to ensure a map operation shouldn't happen when a
> find operation is in progress.
>
> As all occurences of drm_gpuva_find*() is already guarded by
nit: is -> are
> vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
> disturbing any find operation.
>
> This fixes occasional NULL deference in drm_gpuva_find*().
nit: NULL deference -> NULL [pointer] dereference
Do you still have kernel logs following this bug?
>
> Cc: stable@vger.kernel.org
> Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
As far as I can see, that commit swapped one way of locking resources with
another, but the problem of VA find/map/unmap operations not being protected by
the same lock already existed in commit ff5f643de0bf ("drm/imagination: Add GEM
and VM related code").
Thanks,
Alessio
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> ---
> Changes in v2:
> - Fixed wrong commit prefix.
>
> drivers/gpu/drm/imagination/pvr_vm.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
> index e1ec60f34b6e6..eea88e7ad03c1 100644
> --- a/drivers/gpu/drm/imagination/pvr_vm.c
> +++ b/drivers/gpu/drm/imagination/pvr_vm.c
> @@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
>
> pvr_gem_object_get(pvr_obj);
>
> + mutex_lock(&vm_ctx->lock);
> err = drm_gpuvm_exec_lock(&vm_exec);
> if (err)
> goto err_cleanup;
> @@ -754,9 +755,11 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
> err = pvr_vm_bind_op_exec(&bind_op);
>
> drm_gpuvm_exec_unlock(&vm_exec);
> + mutex_unlock(&vm_ctx->lock);
>
> err_cleanup:
> pvr_vm_bind_op_fini(&bind_op);
> + mutex_unlock(&vm_ctx->lock);
>
> return err;
> }
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-17 17:06 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-14 7:36 [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM Icenowy Zheng
2026-07-17 11:14 ` Alessio Belle
2026-07-17 17:06 ` Icenowy Zheng
-- strict thread matches above, loose matches on Subject: below --
2026-04-21 17:57 Icenowy Zheng
2026-07-06 14:22 ` Brajesh Gupta
2026-07-13 17:07 ` Alessio Belle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox