Skip to content

Commit 7b07da1

Browse files
mairacanalSasha Levin
authored and
Sasha Levin
committed
drm/v3d: Fix out-of-bounds read in v3d_csd_job_run()
[ Upstream commit 497d370 ] When enabling UBSAN on Raspberry Pi 5, we get the following warning: [ 387.894977] UBSAN: array-index-out-of-bounds in drivers/gpu/drm/v3d/v3d_sched.c:320:3 [ 387.903868] index 7 is out of range for type '__u32 [7]' [ 387.909692] CPU: 0 PID: 1207 Comm: kworker/u16:2 Tainted: G WC 6.10.3-v8-16k-numa #151 [ 387.919166] Hardware name: Raspberry Pi 5 Model B Rev 1.0 (DT) [ 387.925961] Workqueue: v3d_csd drm_sched_run_job_work [gpu_sched] [ 387.932525] Call trace: [ 387.935296] dump_backtrace+0x170/0x1b8 [ 387.939403] show_stack+0x20/0x38 [ 387.942907] dump_stack_lvl+0x90/0xd0 [ 387.946785] dump_stack+0x18/0x28 [ 387.950301] __ubsan_handle_out_of_bounds+0x98/0xd0 [ 387.955383] v3d_csd_job_run+0x3a8/0x438 [v3d] [ 387.960707] drm_sched_run_job_work+0x520/0x6d0 [gpu_sched] [ 387.966862] process_one_work+0x62c/0xb48 [ 387.971296] worker_thread+0x468/0x5b0 [ 387.975317] kthread+0x1c4/0x1e0 [ 387.978818] ret_from_fork+0x10/0x20 [ 387.983014] ---[ end trace ]--- This happens because the UAPI provides only seven configuration registers and we are reading the eighth position of this u32 array. Therefore, fix the out-of-bounds read in `v3d_csd_job_run()` by accessing only seven positions on the '__u32 [7]' array. The eighth register exists indeed on V3D 7.1, but it isn't currently used. That being so, let's guarantee that it remains unused and add a note that it could be set in a future patch. Fixes: 0ad5bc1 ("drm/v3d: fix up register addresses for V3D 7.x") Reported-by: Tvrtko Ursulin <[email protected]> Signed-off-by: Maíra Canal <[email protected]> Reviewed-by: Iago Toral Quiroga <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Sasha Levin <[email protected]>
1 parent 20a127f commit 7b07da1

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

drivers/gpu/drm/v3d/v3d_sched.c

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ v3d_csd_job_run(struct drm_sched_job *sched_job)
315315
struct v3d_dev *v3d = job->base.v3d;
316316
struct drm_device *dev = &v3d->drm;
317317
struct dma_fence *fence;
318-
int i, csd_cfg0_reg, csd_cfg_reg_count;
318+
int i, csd_cfg0_reg;
319319

320320
v3d->csd_job = job;
321321

@@ -335,9 +335,17 @@ v3d_csd_job_run(struct drm_sched_job *sched_job)
335335
v3d_switch_perfmon(v3d, &job->base);
336336

337337
csd_cfg0_reg = V3D_CSD_QUEUED_CFG0(v3d->ver);
338-
csd_cfg_reg_count = v3d->ver < 71 ? 6 : 7;
339-
for (i = 1; i <= csd_cfg_reg_count; i++)
338+
for (i = 1; i <= 6; i++)
340339
V3D_CORE_WRITE(0, csd_cfg0_reg + 4 * i, job->args.cfg[i]);
340+
341+
/* Although V3D 7.1 has an eighth configuration register, we are not
342+
* using it. Therefore, make sure it remains unused.
343+
*
344+
* XXX: Set the CFG7 register
345+
*/
346+
if (v3d->ver >= 71)
347+
V3D_CORE_WRITE(0, V3D_V7_CSD_QUEUED_CFG7, 0);
348+
341349
/* CFG0 write kicks off the job. */
342350
V3D_CORE_WRITE(0, csd_cfg0_reg, job->args.cfg[0]);
343351

0 commit comments

Comments
 (0)