From: Masoud Aghasi <maghasi@disroot.org>
To: bpf@vger.kernel.org
Cc: andrii@kernel.org, eddyz87@gmail.com, ast@kernel.org,
daniel@iogearbox.net, memxor@gmail.com, martin.lau@linux.dev,
song@kernel.org, yonghong.song@linux.dev, jolsa@kernel.org,
emil@etsalapatis.com, ihor.solodrai@linux.dev,
john.fastabend@gmail.com, brianvv@google.com,
sashiko-reviews@lists.linux.dev, maghasi@disroot.org
Subject: Re: [PATCH v3] bpf: Fix u32 overflow issue in map batch operations
Date: Thu, 3 Sep 2026 13:31:07 +0100 [thread overview]
Message-ID: <092ced27-06b8-4dad-b746-5c4585b61d13@disroot.org> (raw)
In-Reply-To: <20260903084533.E78781F000E9@smtp.kernel.org>
On 03/09/2026 09:45, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
>
> Pre-existing issues:
> - [Critical] Missing size_t casts in queue_stack_maps.c cause pointer arithmetic to overflow u32, corrupting map data.
> - [High] qs->size is typed as u32, which can silently overflow to 0 when max_entries is U32_MAX.
> --
>
> commit aa1d0d53f1c01402c01cb62c0b2ef581ca4869bd
> Author: Masoud Aghasi <maghasi@disroot.org>
>
> bpf: Fix u32 overflow issue in map batch operations
>
> This patch fixes a u32 overflow in several map batch operations that can occur
> when the map size exceeds 4GB. It adds size_t casts to prevent the offset and
> size calculations from overflowing during memory operations.
>
>> diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
>> index 6874ba1424af0..731388ae00ad1 100644
>> --- a/kernel/bpf/syscall.c
>> +++ b/kernel/bpf/syscall.c
> [ ... ]
>> @@ -2179,12 +2179,12 @@ int generic_map_lookup_batch(struct bpf_map *map,
>> if (err)
>> goto free_buf;
>>
>> - if (copy_to_user(keys + cp * map->key_size, key,
>> + if (copy_to_user(keys + (size_t)cp * map->key_size, key,
>> map->key_size)) {
>> err = -EFAULT;
>> goto free_buf;
>> }
>> - if (copy_to_user(values + cp * value_size, value, value_size)) {
>> + if (copy_to_user(values + (size_t)cp * value_size, value, value_size)) {
>> err = -EFAULT;
>> goto free_buf;
>> }
>
> [Severity: Critical]
> This is a pre-existing issue, but since this patch fixes u32 overflows for
> map element offsets, could we also address similar overflows in
> queue_stack_maps.c?
>
> If a queue or stack map is created where the capacity (max_entries *
> value_size) exceeds 4GB, do these calculations wrap the element offset when
> head, tail, or index counters multiply with map.value_size?
>
> kernel/bpf/queue_stack_maps.c:__queue_map_get() {
> ...
> ptr = &qs->elements[qs->tail * qs->map.value_size];
> ...
> }
>
> kernel/bpf/queue_stack_maps.c:__stack_map_get() {
> ...
> ptr = &qs->elements[index * qs->map.value_size];
> ...
> }
>
> kernel/bpf/queue_stack_maps.c:queue_stack_map_push_elem() {
> ...
> dst = &qs->elements[qs->head * qs->map.value_size];
> ...
> }
>
> [Severity: High]
> This is also a pre-existing issue, but I noticed a potential truncation
> when allocating these maps:
>
> kernel/bpf/queue_stack_maps.c:queue_stack_map_alloc() {
> ...
> qs->size = size;
> ...
> }
>
> If a user allocates a queue or stack map with max_entries set exactly to
> U32_MAX, the required size calculation (u64)attr->max_entries + 1 evaluates
> to 0x100000000. Because qs->size is typed as u32, does this assignment
> silently truncate the size to 0, resulting in a map that behaves like it has
> 0 capacity?
>
These issues are already fixed by commit:
802a30c5db72 ("bpf: Fix queue/stack map u32 index overflow")
next prev parent reply other threads:[~2026-09-03 12:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 11:31 [PATCH] bpf: Fix u32 overflow issue in map batch operations Masoud Aghasi
2026-08-24 11:42 ` sashiko-bot
2026-08-25 10:21 ` Masoud Aghasi
2026-09-02 20:44 ` [PATCH v2] " Masoud Aghasi
2026-09-02 21:50 ` bot+bpf-ci
2026-09-03 8:27 ` [PATCH v3] " Masoud Aghasi
2026-09-03 8:45 ` sashiko-bot
2026-09-03 12:31 ` Masoud Aghasi [this message]
2026-09-04 4:45 ` Alexei Starovoitov
2026-08-24 12:17 ` [PATCH] " bot+bpf-ci
2026-08-24 19:15 ` Masoud Aghasi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=092ced27-06b8-4dad-b746-5c4585b61d13@disroot.org \
--to=maghasi@disroot.org \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=brianvv@google.com \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=emil@etsalapatis.com \
--cc=ihor.solodrai@linux.dev \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=martin.lau@linux.dev \
--cc=memxor@gmail.com \
--cc=sashiko-reviews@lists.linux.dev \
--cc=song@kernel.org \
--cc=yonghong.song@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox