]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
pktgen: Avoid out-of-bounds access in get_imix_entries
authorArtem Chernyshev <artem.chernyshev@red-soft.ru>
Thu, 9 Jan 2025 08:30:39 +0000 (11:30 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jan 2025 16:15:58 +0000 (17:15 +0100)
[ Upstream commit 76201b5979768500bca362871db66d77cb4c225e ]

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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/core/pktgen.c

index a539f26fe4beaaaeb5f5813dc3a64404b8101de8..5d5f03471eb0c330dea1ad8b5249f52f1e101d0f 100644 (file)
@@ -849,6 +849,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;
@@ -878,9 +881,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;