* [PATCH] liquidio: Fix potential null pointer dereference
@ 2024-03-07 9:29 Aleksandr Mishin
2024-03-08 20:19 ` Simon Horman
0 siblings, 1 reply; 3+ messages in thread
From: Aleksandr Mishin @ 2024-03-07 9:29 UTC (permalink / raw)
To: David S. Miller
Cc: Aleksandr Mishin, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Kees Cook, Justin Stitt, Felix Manlunas, Satanand Burla,
Raghu Vatsavayi, Vijaya Mohan Guvva, netdev, linux-kernel,
lvc-project
In lio_vf_rep_copy_packet() pg_info->page is compared to a NULL value,
but then it is unconditionally passed to skb_add_rx_frag() which could
lead to null pointer dereference.
Fix this bug by moving skb_add_rx_frag() into conditional scope.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: 1f233f327913 (liquidio: switchdev support for LiquidIO NIC)
Signed-off-by: Aleksandr Mishin <amishin@t-argos.ru>
---
drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c b/drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c
index aa6c0dfb6f1c..e26b4ed33dc8 100644
--- a/drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c
+++ b/drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c
@@ -272,13 +272,12 @@ lio_vf_rep_copy_packet(struct octeon_device *oct,
pg_info->page_offset;
memcpy(skb->data, va, MIN_SKB_SIZE);
skb_put(skb, MIN_SKB_SIZE);
+ skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
+ pg_info->page,
+ pg_info->page_offset + MIN_SKB_SIZE,
+ len - MIN_SKB_SIZE,
+ LIO_RXBUFFER_SZ);
}
-
- skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
- pg_info->page,
- pg_info->page_offset + MIN_SKB_SIZE,
- len - MIN_SKB_SIZE,
- LIO_RXBUFFER_SZ);
} else {
struct octeon_skb_page_info *pg_info =
((struct octeon_skb_page_info *)(skb->cb));
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] liquidio: Fix potential null pointer dereference
2024-03-07 9:29 [PATCH] liquidio: Fix potential null pointer dereference Aleksandr Mishin
@ 2024-03-08 20:19 ` Simon Horman
2024-03-09 20:45 ` Kees Cook
0 siblings, 1 reply; 3+ messages in thread
From: Simon Horman @ 2024-03-08 20:19 UTC (permalink / raw)
To: Aleksandr Mishin
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Kees Cook, Justin Stitt, Felix Manlunas, Satanand Burla,
Raghu Vatsavayi, Vijaya Mohan Guvva, netdev, linux-kernel,
lvc-project
On Thu, Mar 07, 2024 at 12:29:32PM +0300, Aleksandr Mishin wrote:
> In lio_vf_rep_copy_packet() pg_info->page is compared to a NULL value,
> but then it is unconditionally passed to skb_add_rx_frag() which could
> lead to null pointer dereference.
> Fix this bug by moving skb_add_rx_frag() into conditional scope.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: 1f233f327913 (liquidio: switchdev support for LiquidIO NIC)
A correct format for the tag above is:
Fixes: 1f233f327913 ("liquidio: switchdev support for LiquidIO NIC")
> Signed-off-by: Aleksandr Mishin <amishin@t-argos.ru>
I guess this code is never hit.
But I agree this should be fixed.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] liquidio: Fix potential null pointer dereference
2024-03-08 20:19 ` Simon Horman
@ 2024-03-09 20:45 ` Kees Cook
0 siblings, 0 replies; 3+ messages in thread
From: Kees Cook @ 2024-03-09 20:45 UTC (permalink / raw)
To: Simon Horman
Cc: Aleksandr Mishin, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Justin Stitt, Felix Manlunas, Satanand Burla,
Raghu Vatsavayi, Vijaya Mohan Guvva, netdev, linux-kernel,
lvc-project
On Fri, Mar 08, 2024 at 08:19:11PM +0000, Simon Horman wrote:
> On Thu, Mar 07, 2024 at 12:29:32PM +0300, Aleksandr Mishin wrote:
> > In lio_vf_rep_copy_packet() pg_info->page is compared to a NULL value,
> > but then it is unconditionally passed to skb_add_rx_frag() which could
> > lead to null pointer dereference.
> > Fix this bug by moving skb_add_rx_frag() into conditional scope.
> >
> > Found by Linux Verification Center (linuxtesting.org) with SVACE.
> >
> > Fixes: 1f233f327913 (liquidio: switchdev support for LiquidIO NIC)
>
> A correct format for the tag above is:
>
> Fixes: 1f233f327913 ("liquidio: switchdev support for LiquidIO NIC")
FWIW, I have this in my ~/.gitconfig[1]:
[alias]
short = "!f() { for i in \"$@\"; do git log -1 --pretty='%h (\"%s\")' \"$i\"; done; }; f"
then I can type:
$ short 1f233f327913f3dee0602cba9c64df1903772b55
1f233f327913 ("liquidio: switchdev support for LiquidIO NIC")
-Kees
[1] https://github.com/kees/kernel-tools/blob/trunk/ENVIRONMENT.md#git-command-aliases-gitconfig
--
Kees Cook
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-09 20:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-07 9:29 [PATCH] liquidio: Fix potential null pointer dereference Aleksandr Mishin
2024-03-08 20:19 ` Simon Horman
2024-03-09 20:45 ` Kees Cook
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).