linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] rtw88: Fix out-of-bounds write
@ 2021-07-16 15:53 Len Baker
  2021-07-16 16:58 ` Brian Norris
  2021-07-16 17:20 ` Greg KH
  0 siblings, 2 replies; 6+ messages in thread
From: Len Baker @ 2021-07-16 15:53 UTC (permalink / raw)
  To: Yan-Hsuan Chuang, Kalle Valo, David S. Miller, Jakub Kicinski
  Cc: Len Baker, Stanislaw Gruszka, Brian Norris, Pkshih,
	linux-wireless, netdev, linux-kernel, stable

In the rtw_pci_init_rx_ring function the "if (len > TRX_BD_IDX_MASK)"
statement guarantees that len is less than or equal to GENMASK(11, 0) or
in other words that len is less than or equal to 4095. However the
rx_ring->buf has a size of RTK_MAX_RX_DESC_NUM (defined as 512). This
way it is possible an out-of-bounds write in the for statement due to
the i variable can exceed the rx_ring->buff size.

However, this overflow never happens due to the rtw_pci_init_rx_ring is
only ever called with a fixed constant of RTK_MAX_RX_DESC_NUM. But it is
better to be defensive in this case and add a new check to avoid
overflows if this function is called in a future with a value greater
than 512.

Cc: stable@vger.kernel.org
Addresses-Coverity-ID: 1461515 ("Out-of-bounds write")
Fixes: e3037485c68ec ("rtw88: new Realtek 802.11ac driver")
Signed-off-by: Len Baker <len.baker@gmx.com>
---
Changelog v1 -> v2
- Remove the macro ARRAY_SIZE from the for loop (Pkshih, Brian Norris).
- Add a new check for the len variable (Pkshih, Brian Norris).

 drivers/net/wireless/realtek/rtw88/pci.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtw88/pci.c b/drivers/net/wireless/realtek/rtw88/pci.c
index e7d17ab8f113..53dc90276693 100644
--- a/drivers/net/wireless/realtek/rtw88/pci.c
+++ b/drivers/net/wireless/realtek/rtw88/pci.c
@@ -273,6 +273,11 @@ static int rtw_pci_init_rx_ring(struct rtw_dev *rtwdev,
 		return -EINVAL;
 	}

+	if (len > ARRAY_SIZE(rx_ring->buf)) {
+		rtw_err(rtwdev, "len %d exceeds maximum RX ring buffer\n", len);
+		return -EINVAL;
+	}
+
 	head = dma_alloc_coherent(&pdev->dev, ring_sz, &dma, GFP_KERNEL);
 	if (!head) {
 		rtw_err(rtwdev, "failed to allocate rx ring\n");
--
2.25.1


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

* Re: [PATCH v2] rtw88: Fix out-of-bounds write
  2021-07-16 15:53 [PATCH v2] rtw88: Fix out-of-bounds write Len Baker
@ 2021-07-16 16:58 ` Brian Norris
  2021-07-16 17:20 ` Greg KH
  1 sibling, 0 replies; 6+ messages in thread
From: Brian Norris @ 2021-07-16 16:58 UTC (permalink / raw)
  To: Len Baker
  Cc: Yan-Hsuan Chuang, Kalle Valo, David S. Miller, Jakub Kicinski,
	Stanislaw Gruszka, Pkshih, linux-wireless,
	<netdev@vger.kernel.org>,
	Linux Kernel, stable

On Fri, Jul 16, 2021 at 8:54 AM Len Baker <len.baker@gmx.com> wrote:
>
> In the rtw_pci_init_rx_ring function the "if (len > TRX_BD_IDX_MASK)"
> statement guarantees that len is less than or equal to GENMASK(11, 0) or
> in other words that len is less than or equal to 4095. However the
> rx_ring->buf has a size of RTK_MAX_RX_DESC_NUM (defined as 512). This
> way it is possible an out-of-bounds write in the for statement due to
> the i variable can exceed the rx_ring->buff size.
>
> However, this overflow never happens due to the rtw_pci_init_rx_ring is
> only ever called with a fixed constant of RTK_MAX_RX_DESC_NUM. But it is
> better to be defensive in this case and add a new check to avoid
> overflows if this function is called in a future with a value greater
> than 512.
>
> Cc: stable@vger.kernel.org

This kinda seems excessive, considering we absolutely know this is not
currently a bug. But then, LWN nicely highlighted this thread, which
reminds me that even without the Cc stable, this is likely to
unnecessarily get picked up:

https://lwn.net/ml/linux-kernel/YO0zXVX9Bx9QZCTs@kroah.com/

And I guess silencing Coverity is a desirable goal in many cases, even
if Coverity is being a bit trigger-happy.

So, *shrug*.

> Addresses-Coverity-ID: 1461515 ("Out-of-bounds write")
> Fixes: e3037485c68ec ("rtw88: new Realtek 802.11ac driver")
> Signed-off-by: Len Baker <len.baker@gmx.com>
> ---
> Changelog v1 -> v2
> - Remove the macro ARRAY_SIZE from the for loop (Pkshih, Brian Norris).
> - Add a new check for the len variable (Pkshih, Brian Norris).

Reviewed-by: Brian Norris <briannorris@chromium.org>

Thanks.

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

* Re: [PATCH v2] rtw88: Fix out-of-bounds write
  2021-07-16 15:53 [PATCH v2] rtw88: Fix out-of-bounds write Len Baker
  2021-07-16 16:58 ` Brian Norris
@ 2021-07-16 17:20 ` Greg KH
  2021-07-17 13:33   ` Len Baker
  1 sibling, 1 reply; 6+ messages in thread
From: Greg KH @ 2021-07-16 17:20 UTC (permalink / raw)
  To: Len Baker
  Cc: Yan-Hsuan Chuang, Kalle Valo, David S. Miller, Jakub Kicinski,
	Stanislaw Gruszka, Brian Norris, Pkshih, linux-wireless, netdev,
	linux-kernel, stable

On Fri, Jul 16, 2021 at 05:53:11PM +0200, Len Baker wrote:
> In the rtw_pci_init_rx_ring function the "if (len > TRX_BD_IDX_MASK)"
> statement guarantees that len is less than or equal to GENMASK(11, 0) or
> in other words that len is less than or equal to 4095. However the
> rx_ring->buf has a size of RTK_MAX_RX_DESC_NUM (defined as 512). This
> way it is possible an out-of-bounds write in the for statement due to
> the i variable can exceed the rx_ring->buff size.
> 
> However, this overflow never happens due to the rtw_pci_init_rx_ring is
> only ever called with a fixed constant of RTK_MAX_RX_DESC_NUM. But it is
> better to be defensive in this case and add a new check to avoid
> overflows if this function is called in a future with a value greater
> than 512.

If this can never happen, then no, this is not needed.  Why would you
check twice for the same thing?

thanks,

greg k-h

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

* Re: [PATCH v2] rtw88: Fix out-of-bounds write
  2021-07-16 17:20 ` Greg KH
@ 2021-07-17 13:33   ` Len Baker
  2021-07-17 17:33     ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Len Baker @ 2021-07-17 13:33 UTC (permalink / raw)
  To: Greg KH, Brian Norris
  Cc: Len Baker, Yan-Hsuan Chuang, Kalle Valo, David S. Miller,
	Jakub Kicinski, Stanislaw Gruszka, Pkshih, linux-wireless,
	netdev, linux-kernel, stable

On Fri, Jul 16, 2021 at 07:20:48PM +0200, Greg KH wrote:
> On Fri, Jul 16, 2021 at 05:53:11PM +0200, Len Baker wrote:
> > In the rtw_pci_init_rx_ring function the "if (len > TRX_BD_IDX_MASK)"
> > statement guarantees that len is less than or equal to GENMASK(11, 0) or
> > in other words that len is less than or equal to 4095. However the
> > rx_ring->buf has a size of RTK_MAX_RX_DESC_NUM (defined as 512). This
> > way it is possible an out-of-bounds write in the for statement due to
> > the i variable can exceed the rx_ring->buff size.
> >
> > However, this overflow never happens due to the rtw_pci_init_rx_ring is
> > only ever called with a fixed constant of RTK_MAX_RX_DESC_NUM. But it is
> > better to be defensive in this case and add a new check to avoid
> > overflows if this function is called in a future with a value greater
> > than 512.
>
> If this can never happen, then no, this is not needed.

Then, if this can never happen, the current check would not be necessary
either.

> Why would you check twice for the same thing?

Ok, it makes no sense to double check the "len" variable twice. So, I
propose to modify the current check as follows:

diff --git a/drivers/net/wireless/realtek/rtw88/pci.c b/drivers/net/wireless/realtek/rtw88/pci.c
index e7d17ab8f113..0fd140523868 100644
--- a/drivers/net/wireless/realtek/rtw88/pci.c
+++ b/drivers/net/wireless/realtek/rtw88/pci.c
@@ -268,8 +268,8 @@ static int rtw_pci_init_rx_ring(struct rtw_dev *rtwdev,
        int i, allocated;
        int ret = 0;

-       if (len > TRX_BD_IDX_MASK) {
-               rtw_err(rtwdev, "len %d exceeds maximum RX entries\n", len);
+       if (len > ARRAY_SIZE(rx_ring->buf)) {
+               rtw_err(rtwdev, "len %d exceeds maximum RX ring buffer\n", len);
                return -EINVAL;
        }

This way the overflow can never happen with the current call to
rtw_pci_init_rx_ring function or with a future call with a "len" parameter
greater than 512. What do you think?

If there are no objections I will send a v3 for review.

Another question: If this can never happen should I include the "Fixes" tag,
"Addresses-Coverity-ID" tag and Cc to stable?

Thanks,
Len

>
> thanks,
>
> greg k-h

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

* Re: [PATCH v2] rtw88: Fix out-of-bounds write
  2021-07-17 13:33   ` Len Baker
@ 2021-07-17 17:33     ` Greg KH
  2021-07-18  7:53       ` Len Baker
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2021-07-17 17:33 UTC (permalink / raw)
  To: Len Baker
  Cc: Brian Norris, Yan-Hsuan Chuang, Kalle Valo, David S. Miller,
	Jakub Kicinski, Stanislaw Gruszka, Pkshih, linux-wireless,
	netdev, linux-kernel, stable

On Sat, Jul 17, 2021 at 03:33:43PM +0200, Len Baker wrote:
> On Fri, Jul 16, 2021 at 07:20:48PM +0200, Greg KH wrote:
> > On Fri, Jul 16, 2021 at 05:53:11PM +0200, Len Baker wrote:
> > > In the rtw_pci_init_rx_ring function the "if (len > TRX_BD_IDX_MASK)"
> > > statement guarantees that len is less than or equal to GENMASK(11, 0) or
> > > in other words that len is less than or equal to 4095. However the
> > > rx_ring->buf has a size of RTK_MAX_RX_DESC_NUM (defined as 512). This
> > > way it is possible an out-of-bounds write in the for statement due to
> > > the i variable can exceed the rx_ring->buff size.
> > >
> > > However, this overflow never happens due to the rtw_pci_init_rx_ring is
> > > only ever called with a fixed constant of RTK_MAX_RX_DESC_NUM. But it is
> > > better to be defensive in this case and add a new check to avoid
> > > overflows if this function is called in a future with a value greater
> > > than 512.
> >
> > If this can never happen, then no, this is not needed.
> 
> Then, if this can never happen, the current check would not be necessary
> either.
> 
> > Why would you check twice for the same thing?
> 
> Ok, it makes no sense to double check the "len" variable twice. So, I
> propose to modify the current check as follows:
> 
> diff --git a/drivers/net/wireless/realtek/rtw88/pci.c b/drivers/net/wireless/realtek/rtw88/pci.c
> index e7d17ab8f113..0fd140523868 100644
> --- a/drivers/net/wireless/realtek/rtw88/pci.c
> +++ b/drivers/net/wireless/realtek/rtw88/pci.c
> @@ -268,8 +268,8 @@ static int rtw_pci_init_rx_ring(struct rtw_dev *rtwdev,
>         int i, allocated;
>         int ret = 0;
> 
> -       if (len > TRX_BD_IDX_MASK) {
> -               rtw_err(rtwdev, "len %d exceeds maximum RX entries\n", len);
> +       if (len > ARRAY_SIZE(rx_ring->buf)) {
> +               rtw_err(rtwdev, "len %d exceeds maximum RX ring buffer\n", len);
>                 return -EINVAL;
>         }
> 
> This way the overflow can never happen with the current call to
> rtw_pci_init_rx_ring function or with a future call with a "len" parameter
> greater than 512. What do you think?
> 
> If there are no objections I will send a v3 for review.
> 
> Another question: If this can never happen should I include the "Fixes" tag,
> "Addresses-Coverity-ID" tag and Cc to stable?

If it can never happen, why have this check at all?

Looks like a Coverity false positive?

thanks,

greg k-h

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

* Re: [PATCH v2] rtw88: Fix out-of-bounds write
  2021-07-17 17:33     ` Greg KH
@ 2021-07-18  7:53       ` Len Baker
  0 siblings, 0 replies; 6+ messages in thread
From: Len Baker @ 2021-07-18  7:53 UTC (permalink / raw)
  To: Greg KH
  Cc: Len Baker, Brian Norris, Yan-Hsuan Chuang, Kalle Valo,
	David S. Miller, Jakub Kicinski, Stanislaw Gruszka, Pkshih,
	linux-wireless, netdev, linux-kernel, stable

On Sat, Jul 17, 2021 at 07:33:49PM +0200, Greg KH wrote:
> On Sat, Jul 17, 2021 at 03:33:43PM +0200, Len Baker wrote:
> > Another question: If this can never happen should I include the "Fixes" tag,
> > "Addresses-Coverity-ID" tag and Cc to stable?
>
> If it can never happen, why have this check at all?
>
> Looks like a Coverity false positive?

Ok, then I will remove the check and I will send a patch for review.

>
> thanks,
>
> greg k-h

Regards,
Len

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

end of thread, other threads:[~2021-07-18  7:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-16 15:53 [PATCH v2] rtw88: Fix out-of-bounds write Len Baker
2021-07-16 16:58 ` Brian Norris
2021-07-16 17:20 ` Greg KH
2021-07-17 13:33   ` Len Baker
2021-07-17 17:33     ` Greg KH
2021-07-18  7:53       ` Len Baker

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).