public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3 1/2] drm/radeon: Fix integer overflow in radeon_cs_parser_init
@ 2023-04-19 12:20 hackyzh002
  2023-04-19 12:23 ` Christian König
  0 siblings, 1 reply; 3+ messages in thread
From: hackyzh002 @ 2023-04-19 12:20 UTC (permalink / raw)
  To: alexander.deucher
  Cc: christian.koenig, Xinhui.Pan, airlied, daniel, sumit.semwal,
	amd-gfx, dri-devel, linux-kernel, linux-media, linaro-mm-sig,
	hackyzh002

The type of size is unsigned, if size is 0x40000000, there will be an
integer overflow, size will be zero after size *= sizeof(uint32_t),
will cause uninitialized memory to be referenced later

Signed-off-by: hackyzh002 <hackyzh002@gmail.com>
---
 drivers/gpu/drm/radeon/radeon_cs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c
index 46a27ebf4..a6700d727 100644
--- a/drivers/gpu/drm/radeon/radeon_cs.c
+++ b/drivers/gpu/drm/radeon/radeon_cs.c
@@ -270,7 +270,8 @@ int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
 {
 	struct drm_radeon_cs *cs = data;
 	uint64_t *chunk_array_ptr;
-	unsigned size, i;
+	u64 size;
+	unsigned i;
 	u32 ring = RADEON_CS_RING_GFX;
 	s32 priority = 0;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH V3 1/2] drm/radeon: Fix integer overflow in radeon_cs_parser_init
  2023-04-19 12:20 [PATCH V3 1/2] drm/radeon: Fix integer overflow in radeon_cs_parser_init hackyzh002
@ 2023-04-19 12:23 ` Christian König
  2023-04-19 13:49   ` Alex Deucher
  0 siblings, 1 reply; 3+ messages in thread
From: Christian König @ 2023-04-19 12:23 UTC (permalink / raw)
  To: hackyzh002, alexander.deucher
  Cc: Xinhui.Pan, airlied, daniel, sumit.semwal, amd-gfx, dri-devel,
	linux-kernel, linux-media, linaro-mm-sig

Am 19.04.23 um 14:20 schrieb hackyzh002:
> The type of size is unsigned, if size is 0x40000000, there will be an
> integer overflow, size will be zero after size *= sizeof(uint32_t),
> will cause uninitialized memory to be referenced later
>
> Signed-off-by: hackyzh002 <hackyzh002@gmail.com>

Reviewed-by: Christian König <christian.koenig@amd.com> for the series.

> ---
>   drivers/gpu/drm/radeon/radeon_cs.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c
> index 46a27ebf4..a6700d727 100644
> --- a/drivers/gpu/drm/radeon/radeon_cs.c
> +++ b/drivers/gpu/drm/radeon/radeon_cs.c
> @@ -270,7 +270,8 @@ int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
>   {
>   	struct drm_radeon_cs *cs = data;
>   	uint64_t *chunk_array_ptr;
> -	unsigned size, i;
> +	u64 size;
> +	unsigned i;
>   	u32 ring = RADEON_CS_RING_GFX;
>   	s32 priority = 0;
>   


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH V3 1/2] drm/radeon: Fix integer overflow in radeon_cs_parser_init
  2023-04-19 12:23 ` Christian König
@ 2023-04-19 13:49   ` Alex Deucher
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2023-04-19 13:49 UTC (permalink / raw)
  To: Christian König
  Cc: hackyzh002, alexander.deucher, Xinhui.Pan, linux-kernel, amd-gfx,
	linaro-mm-sig, dri-devel, sumit.semwal, linux-media

Applied.  Thanks!

Alex

On Wed, Apr 19, 2023 at 8:24 AM Christian König
<christian.koenig@amd.com> wrote:
>
> Am 19.04.23 um 14:20 schrieb hackyzh002:
> > The type of size is unsigned, if size is 0x40000000, there will be an
> > integer overflow, size will be zero after size *= sizeof(uint32_t),
> > will cause uninitialized memory to be referenced later
> >
> > Signed-off-by: hackyzh002 <hackyzh002@gmail.com>
>
> Reviewed-by: Christian König <christian.koenig@amd.com> for the series.
>
> > ---
> >   drivers/gpu/drm/radeon/radeon_cs.c | 3 ++-
> >   1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c
> > index 46a27ebf4..a6700d727 100644
> > --- a/drivers/gpu/drm/radeon/radeon_cs.c
> > +++ b/drivers/gpu/drm/radeon/radeon_cs.c
> > @@ -270,7 +270,8 @@ int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
> >   {
> >       struct drm_radeon_cs *cs = data;
> >       uint64_t *chunk_array_ptr;
> > -     unsigned size, i;
> > +     u64 size;
> > +     unsigned i;
> >       u32 ring = RADEON_CS_RING_GFX;
> >       s32 priority = 0;
> >
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-04-19 13:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-19 12:20 [PATCH V3 1/2] drm/radeon: Fix integer overflow in radeon_cs_parser_init hackyzh002
2023-04-19 12:23 ` Christian König
2023-04-19 13:49   ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox