From: Chris Mason <clm@meta.com>
To: Roman Gushchin <roman.gushchin@linux.dev>
Cc: bot+bpf-ci@kernel.org, bpf@vger.kernel.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, inwardvessel@gmail.com,
ast@kernel.org, daniel@iogearbox.net, shakeel.butt@linux.dev,
mhocko@kernel.org, hannes@cmpxchg.org, andrii@kernel.org,
martin.lau@kernel.org, eddyz87@gmail.com,
yonghong.song@linux.dev, ihor.solodrai@linux.dev
Subject: Re: [PATCH bpf-next v2 5/7] mm: introduce BPF kfunc to access memory events
Date: Sat, 20 Dec 2025 14:59:56 -0500 [thread overview]
Message-ID: <93dbca4e-bd58-4b9a-a3c6-595810727121@meta.com> (raw)
In-Reply-To: <87zf7d6ll1.fsf@linux.dev>
On 12/20/25 1:43 PM, Roman Gushchin wrote:
> Chris Mason <clm@meta.com> writes:
>
>> On 12/19/25 11:41 PM, Roman Gushchin wrote:
>>> bot+bpf-ci@kernel.org writes:
>>>
>>>>> diff --git a/mm/bpf_memcontrol.c b/mm/bpf_memcontrol.c
>>>>> index d84fe6f3ed43..858eb43766ce 100644
>>>>> --- a/mm/bpf_memcontrol.c
>>>>> +++ b/mm/bpf_memcontrol.c
>>>>> @@ -103,6 +103,22 @@ __bpf_kfunc unsigned long bpf_mem_cgroup_usage(struct mem_cgroup *memcg)
>>>>> return mem_cgroup_usage(memcg, false) * PAGE_SIZE;
>>>>> }
>>>>>
>>>>> +/**
>>>>> + * bpf_mem_cgroup_memory_events - Read memory cgroup's memory event value
>>>>> + * @memcg: memory cgroup
>>>>> + * @event: memory event id
>>>>> + *
>>>>> + * Returns current memory event count.
>>>>> + */
>>>>> +__bpf_kfunc unsigned long bpf_mem_cgroup_memory_events(struct mem_cgroup *memcg,
>>>>> + enum memcg_memory_event event)
>>>>> +{
>>>>> + if (event >= MEMCG_NR_MEMORY_EVENTS)
>>>>> + return (unsigned long)-1;
>>>>
>>>> Should this also check for negative values? The enum type is typically
>>>> signed, so a BPF program passing a negative event value would pass this
>>>> check but cause an out-of-bounds read from memcg->memory_events[].
>>>>
>>>> The similar bpf_mem_cgroup_page_state() in this same file uses:
>>>>
>>>> if (idx < 0 || idx >= MEMCG_NR_STAT)
>>>>
>>>> which checks both bounds. Could the check here be changed to:
>>>>
>>>> if (event < 0 || event >= MEMCG_NR_MEMORY_EVENTS)
>>>>
>>>> to match that pattern?
>>>
>>> No, the bpf verifier enforces event > 0.
>>> It's a false positive.
>>
>> I'll add some words here to the bpf prompts, thanks Roman.
>
> I'll try to play with it too, hopefully we can fix it.
>
https://github.com/masoncl/review-prompts/commit/fcc3bf704798f6be64cbb2e28b05a5c91eee9c7b
Seems to do the trick here:
[ ... ]
6. Missing negative check:
- The function only checks event >= MEMCG_NR_MEMORY_EVENTS
- Unlike bpf_mem_cgroup_page_state() which checks idx < 0 || idx >= MEMCG_NR_STAT
- However, event is an enum memcg_memory_event, not int
- Enums in C are typically unsigned when all values are non-negative (starting from 0)
- The enum starts at MEMCG_LOW = 0 (implicit) and all values are positive
- A negative value passed to this enum parameter would be extremely unusual and would require explicit casting
Let me verify the enum values are all non-negative:
Looking at memcg_memory_event enum:
enum memcg_memory_event {
MEMCG_LOW, // 0
MEMCG_HIGH, // 1
MEMCG_MAX, // 2
MEMCG_OOM, // 3
MEMCG_OOM_KILL, // 4
MEMCG_OOM_GROUP_KILL, // 5
MEMCG_SWAP_HIGH, // 6
MEMCG_SWAP_MAX, // 7
MEMCG_SWAP_FAIL, // 8
MEMCG_SOCK_THROTTLED, // 9
MEMCG_NR_MEMORY_EVENTS, // 10
}
All values are 0 or positive. Since the parameter is typed as enum memcg_memory_event (not int), and BPF programs use constants from vmlinux.h, the lack of a < 0 check is acceptable:
1. BPF programs using enum constants can only pass valid values (0-9)
2. Even if a computed value were used, the enum type constrains the interpretation
3. If a negative value were somehow cast to this enum, the unsigned comparison event >= MEMCG_NR_MEMORY_EVENTS would catch it (negative becomes large positive in unsigned comparison)
Wait, let me reconsider this. The function parameter is enum memcg_memory_event event. In C, enums are typically represented as int under the hood. If someone passes a negative value, the comparison event >=
MEMCG_NR_MEMORY_EVENTS would be signed comparison if event is treated as signed int.
Let me check if this is a concern:
● plugin:semcode:semcode - grep_functions (MCP)(pattern: "memcg_memory_event", path_pattern: "bpf_memcontrol")
⎿ Searching function bodies for pattern: memcg_memory_event (filtering paths matching: bpf_memcontrol, limit: 100) at git commit 0f92b93b6e42765a13c933e4e9cb268f8d77cf3c
Found 1 matching line(s):
… +3 lines (ctrl+o to expand)
● Let me think more carefully about the signed/unsigned comparison issue. The comparison event >= MEMCG_NR_MEMORY_EVENTS involves:
- event - an enum (which in C is typically int, signed)
- MEMCG_NR_MEMORY_EVENTS - an enum constant (value 10)
If event were negative (e.g., -1), then -1 >= 10 is false, and the function would proceed to access memcg->memory_events[-1] - an out-of-bounds access.
However, I need to consider the BPF context:
1. Per bpf.md: BPF programs use enum constants from vmlinux.h, and the compiler substitutes valid values at compile time
2. The verifier tracks scalar values: Even if computed at runtime, the verifier tracks value ranges
3. KF_TRUSTED_ARGS: The memcg pointer is validated, but this doesn't affect the enum parameter
Let me compare with bpf_mem_cgroup_page_state() which takes int idx and explicitly checks idx < 0:
__bpf_kfunc unsigned long bpf_mem_cgroup_page_state(struct mem_cgroup *memcg, int idx)
{
if (idx < 0 || idx >= MEMCG_NR_STAT)
return (unsigned long)-1;
...
}
The difference is:
- bpf_mem_cgroup_page_state takes int idx - explicitly signed, needs both checks
- bpf_mem_cgroup_memory_events takes enum memcg_memory_event event - enum typed
For the enum case, per the BPF documentation loaded earlier:
DO NOT report as bugs: Kfuncs that take enum-typed parameters and use constants from vmlinux.h without explicit bounds checks.
-chris
next prev parent reply other threads:[~2025-12-20 20:00 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-20 4:12 [PATCH bpf-next v2 0/7] mm: bpf kfuncs to access memcg data Roman Gushchin
2025-12-20 4:12 ` [PATCH bpf-next v2 1/7] mm: declare memcg_page_state_output() in memcontrol.h Roman Gushchin
2025-12-20 4:12 ` [PATCH bpf-next v2 2/7] mm: introduce BPF kfuncs to deal with memcg pointers Roman Gushchin
2025-12-20 5:20 ` Shakeel Butt
2025-12-22 0:39 ` Alexei Starovoitov
2025-12-20 4:12 ` [PATCH bpf-next v2 3/7] mm: introduce bpf_get_root_mem_cgroup() BPF kfunc Roman Gushchin
2025-12-20 5:21 ` Shakeel Butt
2025-12-20 4:12 ` [PATCH bpf-next v2 4/7] mm: introduce BPF kfuncs to access memcg statistics and events Roman Gushchin
2025-12-20 4:29 ` bot+bpf-ci
2025-12-20 4:39 ` Roman Gushchin
2025-12-20 5:22 ` Shakeel Butt
2025-12-20 4:12 ` [PATCH bpf-next v2 5/7] mm: introduce BPF kfunc to access memory events Roman Gushchin
2025-12-20 4:29 ` bot+bpf-ci
2025-12-20 4:41 ` Roman Gushchin
2025-12-20 13:19 ` Chris Mason
2025-12-20 18:43 ` Roman Gushchin
2025-12-20 19:59 ` Chris Mason [this message]
2025-12-22 22:23 ` Roman Gushchin
2025-12-23 14:09 ` Chris Mason
2025-12-22 0:49 ` Alexei Starovoitov
2025-12-22 0:51 ` Alexei Starovoitov
2025-12-20 4:12 ` [PATCH bpf-next v2 6/7] bpf: selftests: selftests for memcg stat kfuncs Roman Gushchin
2025-12-20 5:23 ` Shakeel Butt
2025-12-20 4:12 ` [PATCH bpf-next v2 7/7] MAINTAINERS: add an entry for MM BPF extensions Roman Gushchin
2025-12-20 5:26 ` Shakeel Butt
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=93dbca4e-bd58-4b9a-a3c6-595810727121@meta.com \
--to=clm@meta.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bot+bpf-ci@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=hannes@cmpxchg.org \
--cc=ihor.solodrai@linux.dev \
--cc=inwardvessel@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=martin.lau@kernel.org \
--cc=mhocko@kernel.org \
--cc=roman.gushchin@linux.dev \
--cc=shakeel.butt@linux.dev \
--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