linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] staging: wilc1000: Increase the size of wid_list array
@ 2020-05-03  7:51 Oscar Carter
  2020-05-03 14:52 ` Ajay.Kathat
  0 siblings, 1 reply; 4+ messages in thread
From: Oscar Carter @ 2020-05-03  7:51 UTC (permalink / raw)
  To: Adham Abozaeid, Ajay Singh
  Cc: Greg Kroah-Hartman, Rachel Kim, Johnny Kim, Chris Park, Dean Lee,
	linux-wireless, devel, linux-kernel, Oscar Carter

Increase by one the size of wid_list array as index variable can reach a
value of 5. If this happens, an out-of-bounds access is performed.

Addresses-Coverity-ID: 1451981 ("Out-of-bounds access")
Fixes: f5a3cb90b802d ("staging: wilc1000: add passive scan support")
Signed-off-by: Oscar Carter <oscar.carter@gmx.com>
---
Changelog v1 -> v2
- Fix the commit for the "Fixes" tag as Ajay suggested.

 drivers/staging/wilc1000/hif.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wilc1000/hif.c b/drivers/staging/wilc1000/hif.c
index 6c7de2f8d3f2..128943c3be4f 100644
--- a/drivers/staging/wilc1000/hif.c
+++ b/drivers/staging/wilc1000/hif.c
@@ -151,7 +151,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
 	      void *user_arg, struct cfg80211_scan_request *request)
 {
 	int result = 0;
-	struct wid wid_list[5];
+	struct wid wid_list[6];
 	u32 index = 0;
 	u32 i, scan_timeout;
 	u8 *buffer;
--
2.20.1


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

* Re: [PATCH v2] staging: wilc1000: Increase the size of wid_list array
  2020-05-03  7:51 [PATCH v2] staging: wilc1000: Increase the size of wid_list array Oscar Carter
@ 2020-05-03 14:52 ` Ajay.Kathat
  2020-05-03 23:29   ` Joe Perches
  0 siblings, 1 reply; 4+ messages in thread
From: Ajay.Kathat @ 2020-05-03 14:52 UTC (permalink / raw)
  To: oscar.carter, adham.abozaeid
  Cc: gregkh, rachel.kim, johnny.kim, chris.park, dean.lee,
	linux-wireless, devel, linux-kernel



On 03/05/20 1:21 pm, Oscar Carter wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> 
> Increase by one the size of wid_list array as index variable can reach a
> value of 5. If this happens, an out-of-bounds access is performed.
> 
> Addresses-Coverity-ID: 1451981 ("Out-of-bounds access")
> Fixes: f5a3cb90b802d ("staging: wilc1000: add passive scan support")
> Signed-off-by: Oscar Carter <oscar.carter@gmx.com>


Thanks for making the changes.

Acked-by: Ajay Singh <ajay.kathat@microchip.com>


> ---
> Changelog v1 -> v2
> - Fix the commit for the "Fixes" tag as Ajay suggested.
> 
>  drivers/staging/wilc1000/hif.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/wilc1000/hif.c b/drivers/staging/wilc1000/hif.c
> index 6c7de2f8d3f2..128943c3be4f 100644
> --- a/drivers/staging/wilc1000/hif.c
> +++ b/drivers/staging/wilc1000/hif.c
> @@ -151,7 +151,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
>               void *user_arg, struct cfg80211_scan_request *request)
>  {
>         int result = 0;
> -       struct wid wid_list[5];
> +       struct wid wid_list[6];
>         u32 index = 0;
>         u32 i, scan_timeout;
>         u8 *buffer;
> --
> 2.20.1
> 

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

* Re: [PATCH v2] staging: wilc1000: Increase the size of wid_list array
  2020-05-03 14:52 ` Ajay.Kathat
@ 2020-05-03 23:29   ` Joe Perches
  2020-05-04 14:43     ` Oscar Carter
  0 siblings, 1 reply; 4+ messages in thread
From: Joe Perches @ 2020-05-03 23:29 UTC (permalink / raw)
  To: Ajay.Kathat, oscar.carter, adham.abozaeid
  Cc: gregkh, rachel.kim, johnny.kim, chris.park, dean.lee,
	linux-wireless, devel, linux-kernel

On Sun, 2020-05-03 at 14:52 +0000, Ajay.Kathat@microchip.com wrote:
> On 03/05/20 1:21 pm, Oscar Carter wrote:
> > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> > 
> > Increase by one the size of wid_list array as index variable can reach a
> > value of 5. If this happens, an out-of-bounds access is performed.
> > 
> > Addresses-Coverity-ID: 1451981 ("Out-of-bounds access")
> > Fixes: f5a3cb90b802d ("staging: wilc1000: add passive scan support")
> > Signed-off-by: Oscar Carter <oscar.carter@gmx.com>
[]
> > diff --git a/drivers/staging/wilc1000/hif.c b/drivers/staging/wilc1000/hif.c
[]
> > @@ -151,7 +151,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
> >               void *user_arg, struct cfg80211_scan_request *request)
> >  {
> >         int result = 0;
> > -       struct wid wid_list[5];
> > +       struct wid wid_list[6];

This looks like it should be using a #define instead of
a hard-coded number.

> >         u32 index = 0;
> >         u32 i, scan_timeout;
> >         u8 *buffer;
> > --
> > 2.20.1


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

* Re: [PATCH v2] staging: wilc1000: Increase the size of wid_list array
  2020-05-03 23:29   ` Joe Perches
@ 2020-05-04 14:43     ` Oscar Carter
  0 siblings, 0 replies; 4+ messages in thread
From: Oscar Carter @ 2020-05-04 14:43 UTC (permalink / raw)
  To: Joe Perches, Ajay.Kathat, adham.abozaeid
  Cc: Oscar Carter, gregkh, rachel.kim, johnny.kim, chris.park,
	dean.lee, linux-wireless, devel, linux-kernel

On Sun, May 03, 2020 at 04:29:53PM -0700, Joe Perches wrote:
> On Sun, 2020-05-03 at 14:52 +0000, Ajay.Kathat@microchip.com wrote:
> > On 03/05/20 1:21 pm, Oscar Carter wrote:
> > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
> > >
> > > Increase by one the size of wid_list array as index variable can reach a
> > > value of 5. If this happens, an out-of-bounds access is performed.
> > >
> > > Addresses-Coverity-ID: 1451981 ("Out-of-bounds access")
> > > Fixes: f5a3cb90b802d ("staging: wilc1000: add passive scan support")
> > > Signed-off-by: Oscar Carter <oscar.carter@gmx.com>
> []
> > > diff --git a/drivers/staging/wilc1000/hif.c b/drivers/staging/wilc1000/hif.c
> []
> > > @@ -151,7 +151,7 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
> > >               void *user_arg, struct cfg80211_scan_request *request)
> > >  {
> > >         int result = 0;
> > > -       struct wid wid_list[5];
> > > +       struct wid wid_list[6];
>
> This looks like it should be using a #define instead of
> a hard-coded number.

I agree. I will make the changes you suggested and I will resend a new version.

> > >         u32 index = 0;
> > >         u32 i, scan_timeout;
> > >         u8 *buffer;
> > > --
> > > 2.20.1
>
Thanks,
Oscar Carter

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

end of thread, other threads:[~2020-05-04 14:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-03  7:51 [PATCH v2] staging: wilc1000: Increase the size of wid_list array Oscar Carter
2020-05-03 14:52 ` Ajay.Kathat
2020-05-03 23:29   ` Joe Perches
2020-05-04 14:43     ` Oscar Carter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).