* [PATCH v3] drm/amdgpu: reject IB addresses with reserved byte-swap bits
@ 2026-04-27 20:53 John B. Moore
2026-04-28 6:46 ` Christian König
0 siblings, 1 reply; 2+ messages in thread
From: John B. Moore @ 2026-04-27 20:53 UTC (permalink / raw)
To: alexander.deucher, christian.koenig; +Cc: stable, John B. Moore
Reject IB GPU addresses with bits [1:0] set early in the CS parser,
before they reach ring emission callbacks. On legacy AMD hardware
(pre-amdgpu era), these two bits encoded byte-swap mode for IB memory
fetches. That feature was dropped on all hardware that amdgpu supports,
but the ring emission paths still contain BUG_ON(addr & 0x3) assertions
that crash the kernel if userspace submits a misaligned IB address.
Add an early check in amdgpu_cs_p2_ib() to reject such submissions
with -EINVAL before the IB is allocated.
Fixes: b0635e808290 ("drm/amdgpu: implement GFX 9.0 support (v2)")
Cc: stable@vger.kernel.org
Signed-off-by: John B. Moore <jbmoore61@gmail.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
index f3b5bcdbf..c44692a2a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
@@ -386,6 +386,14 @@ static int amdgpu_cs_p2_ib(struct amdgpu_cs_parser *p,
if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE)
job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
+ /* Reject IB addresses with reserved byte-swap bits set.
+ * On legacy HW (pre-amdgpu), bits [1:0] encoded byte-swap mode
+ * for IB fetches. That feature is deprecated on all HW that
+ * amdgpu supports, so these bits must be zero.
+ */
+ if (chunk_ib->va_start & 0x3)
+ return -EINVAL;
+
r = amdgpu_ib_get(p->adev, vm, ring->funcs->parse_cs ?
chunk_ib->ib_bytes : 0,
AMDGPU_IB_POOL_DELAYED, ib);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v3] drm/amdgpu: reject IB addresses with reserved byte-swap bits
2026-04-27 20:53 [PATCH v3] drm/amdgpu: reject IB addresses with reserved byte-swap bits John B. Moore
@ 2026-04-28 6:46 ` Christian König
0 siblings, 0 replies; 2+ messages in thread
From: Christian König @ 2026-04-28 6:46 UTC (permalink / raw)
To: John B. Moore, alexander.deucher; +Cc: stable
On 4/27/26 22:53, John B. Moore wrote:
> Reject IB GPU addresses with bits [1:0] set early in the CS parser,
> before they reach ring emission callbacks. On legacy AMD hardware
> (pre-amdgpu era), these two bits encoded byte-swap mode for IB memory
> fetches. That feature was dropped on all hardware that amdgpu supports,
> but the ring emission paths still contain BUG_ON(addr & 0x3) assertions
> that crash the kernel if userspace submits a misaligned IB address.
>
> Add an early check in amdgpu_cs_p2_ib() to reject such submissions
> with -EINVAL before the IB is allocated.
>
> Fixes: b0635e808290 ("drm/amdgpu: implement GFX 9.0 support (v2)")
That should probably be dropped. The issue was there much earlier than that.
> Cc: stable@vger.kernel.org
> Signed-off-by: John B. Moore <jbmoore61@gmail.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
@Alex do you want to pick that up or should I do that?
Thanks,
Christian
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index f3b5bcdbf..c44692a2a 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> @@ -386,6 +386,14 @@ static int amdgpu_cs_p2_ib(struct amdgpu_cs_parser *p,
> if (chunk_ib->flags & AMDGPU_IB_FLAG_PREAMBLE)
> job->preamble_status |= AMDGPU_PREAMBLE_IB_PRESENT;
>
> + /* Reject IB addresses with reserved byte-swap bits set.
> + * On legacy HW (pre-amdgpu), bits [1:0] encoded byte-swap mode
> + * for IB fetches. That feature is deprecated on all HW that
> + * amdgpu supports, so these bits must be zero.
> + */
> + if (chunk_ib->va_start & 0x3)
> + return -EINVAL;
> +
> r = amdgpu_ib_get(p->adev, vm, ring->funcs->parse_cs ?
> chunk_ib->ib_bytes : 0,
> AMDGPU_IB_POOL_DELAYED, ib);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-28 6:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-27 20:53 [PATCH v3] drm/amdgpu: reject IB addresses with reserved byte-swap bits John B. Moore
2026-04-28 6:46 ` Christian König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox