mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net v2] pktgen: Avoid out-of-bounds access in get_imix_entries
@ 2025-01-09  8:30 Fedor Pchelkin
  2025-01-13  9:10 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Fedor Pchelkin @ 2025-01-09  8:30 UTC (permalink / raw)
  To: Jakub Kicinski, David S. Miller
  Cc: Fedor Pchelkin, Eric Dumazet, Paolo Abeni, Simon Horman,
	Artem Chernyshev, Nick Richardson, netdev, linux-kernel,
	lvc-project

From: Artem Chernyshev <artem.chernyshev@red-soft.ru>

Passing a sufficient amount of imix entries leads to invalid access to the
pkt_dev->imix_entries array because of the incorrect boundary check.

UBSAN: array-index-out-of-bounds in net/core/pktgen.c:874:24
index 20 is out of range for type 'imix_pkt [20]'
CPU: 2 PID: 1210 Comm: bash Not tainted 6.10.0-rc1 #121
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996)
Call Trace:
<TASK>
dump_stack_lvl lib/dump_stack.c:117
__ubsan_handle_out_of_bounds lib/ubsan.c:429
get_imix_entries net/core/pktgen.c:874
pktgen_if_write net/core/pktgen.c:1063
pde_write fs/proc/inode.c:334
proc_reg_write fs/proc/inode.c:346
vfs_write fs/read_write.c:593
ksys_write fs/read_write.c:644
do_syscall_64 arch/x86/entry/common.c:83
entry_SYSCALL_64_after_hwframe arch/x86/entry/entry_64.S:130

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 52a62f8603f9 ("pktgen: Parse internet mix (imix) input")
Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru>
[ fp: allow to fill the array completely; minor changelog cleanup ]
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
---
v2: prepare v2 based on Jakub Kicinski's review for the previous version;
    original authorship saved;
    https://lore.kernel.org/netdev/20241006221221.3744995-1-artem.chernyshev@red-soft.ru/

 net/core/pktgen.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/core/pktgen.c b/net/core/pktgen.c
index bab3827d5302..1964ff7ed2c3 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -851,6 +851,9 @@ static ssize_t get_imix_entries(const char __user *buffer,
 		unsigned long weight;
 		unsigned long size;
 
+		if (pkt_dev->n_imix_entries >= MAX_IMIX_ENTRIES)
+			return -E2BIG;
+
 		len = num_arg(&buffer[i], max_digits, &size);
 		if (len < 0)
 			return len;
@@ -880,9 +883,6 @@ static ssize_t get_imix_entries(const char __user *buffer,
 
 		i++;
 		pkt_dev->n_imix_entries++;
-
-		if (pkt_dev->n_imix_entries > MAX_IMIX_ENTRIES)
-			return -E2BIG;
 	} while (c == ' ');
 
 	return i;
-- 
2.39.5


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

* Re: [PATCH net v2] pktgen: Avoid out-of-bounds access in get_imix_entries
  2025-01-09  8:30 [PATCH net v2] pktgen: Avoid out-of-bounds access in get_imix_entries Fedor Pchelkin
@ 2025-01-13  9:10 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-01-13  9:10 UTC (permalink / raw)
  To: Fedor Pchelkin
  Cc: kuba, davem, edumazet, pabeni, horms, artem.chernyshev,
	richardsonnick, netdev, linux-kernel, lvc-project

Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Thu,  9 Jan 2025 11:30:39 +0300 you wrote:
> From: Artem Chernyshev <artem.chernyshev@red-soft.ru>
> 
> Passing a sufficient amount of imix entries leads to invalid access to the
> pkt_dev->imix_entries array because of the incorrect boundary check.
> 
> UBSAN: array-index-out-of-bounds in net/core/pktgen.c:874:24
> index 20 is out of range for type 'imix_pkt [20]'
> CPU: 2 PID: 1210 Comm: bash Not tainted 6.10.0-rc1 #121
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996)
> Call Trace:
> <TASK>
> dump_stack_lvl lib/dump_stack.c:117
> __ubsan_handle_out_of_bounds lib/ubsan.c:429
> get_imix_entries net/core/pktgen.c:874
> pktgen_if_write net/core/pktgen.c:1063
> pde_write fs/proc/inode.c:334
> proc_reg_write fs/proc/inode.c:346
> vfs_write fs/read_write.c:593
> ksys_write fs/read_write.c:644
> do_syscall_64 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe arch/x86/entry/entry_64.S:130
> 
> [...]

Here is the summary with links:
  - [net,v2] pktgen: Avoid out-of-bounds access in get_imix_entries
    https://git.kernel.org/netdev/net/c/76201b597976

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2025-01-13  9:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-09  8:30 [PATCH net v2] pktgen: Avoid out-of-bounds access in get_imix_entries Fedor Pchelkin
2025-01-13  9:10 ` patchwork-bot+netdevbpf

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®