* [PATCH net] selftests: net: gro: fix OOB access when under-coalescing
@ 2026-09-16 1:00 Narcisa Vasile
0 siblings, 0 replies; only message in thread
From: Narcisa Vasile @ 2026-09-16 1:00 UTC (permalink / raw)
To: netdev, kuba, daniel.zahka, David S . Miller, Eric Dumazet,
Paolo Abeni, Simon Horman, Shuah Khan, Willem de Bruijn,
Petr Machata, Anubhav Singh, Richard Gobert, Coco Li
Cc: linux-kselftest, linux-kernel, narcisav.kernel
When more packets than expected are received, num_pkt
could index beyond the end of the array. Add a check to prevent
OOB access.
Continue receiving until the FIN is received to obtain
the total packet count. This helps diagnose issues by
distinguishing the cases where no coalescing happened from
the partial-coalescing cases that didn't meet the test check.
Fixes: 7d1575014a63 ("selftests/net: GRO coalesce test")
Signed-off-by: Narcisa Vasile <narcisav.kernel@gmail.com>
---
tools/testing/selftests/net/lib/gro.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/testing/selftests/net/lib/gro.c b/tools/testing/selftests/net/lib/gro.c
index 7a333155de1a..85ba69eeb6aa 100644
--- a/tools/testing/selftests/net/lib/gro.c
+++ b/tools/testing/selftests/net/lib/gro.c
@@ -1211,7 +1211,8 @@ static void check_recv_pkts(int fd, int *correct_payload,
- sizeof(struct tcphdr) - sizeof(struct iphdr);
}
vlog("%d ", data_len);
- if (data_len != correct_payload[num_pkt]) {
+ if (num_pkt < correct_num_pkts &&
+ data_len != correct_payload[num_pkt]) {
vlog("[!=%d]", correct_payload[num_pkt]);
bad_packet = true;
}
--
2.53.0-Meta
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-16 1:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-16 1:00 [PATCH net] selftests: net: gro: fix OOB access when under-coalescing Narcisa Vasile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®