From: sashiko-bot@kernel.org
To: "Amery Hung" <ameryhung@gmail.com>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v2 06/23] bpf: Unify kfunc argument kinds with enum bpf_arg_type
Date: Fri, 11 Sep 2026 22:26:42 +0000 [thread overview]
Message-ID: <20260911222642.72A931F00893@smtp.kernel.org> (raw)
In-Reply-To: <20260911220415.1396439-7-ameryhung@gmail.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Missing negative bounds check for enum parameter used as array index in kfuncs allows out-of-bounds kernel memory read.
--
commit 187c3e4699e70b4609c73e9f7618935e9265b164
Author: Amery Hung <ameryhung@gmail.com>
Date: Fri Sep 11 22:03:58 2026 +0000
bpf: Unify kfunc argument kinds with enum bpf_arg_type
This commit folds the kfunc argument kinds into enum bpf_arg_type. It
reuses ARG_SCALAR and maps kfunc callbacks to ARG_PTR_TO_FUNC, adding
enumerators for kfunc-only kinds to allow check_kfunc_args() to carry one
classification throughout verification.
> diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
> index 5d21bee458055..dc849e6708762 100644
> --- a/kernel/bpf/verifier.c
> +++ b/kernel/bpf/verifier.c
[ ... ]
> @@ -12178,15 +12145,15 @@ get_kfunc_arg_type(struct bpf_verifier_env *env, struct bpf_call_arg_meta *meta,
> /* Scalar arguments are classified from their BTF suffix/name alone. */
> if (btf_type_is_scalar(t)) {
> if (is_kfunc_arg_constant(meta->btf, &args[arg]))
> - return KF_ARG_CONST;
> + return ARG_CONST_SCALAR;
> if (is_kfunc_arg_const_mem_size(meta->btf, &args[arg]))
> - return KF_ARG_CONST_MEM_SIZE;
> + return ARG_CONST_MEM_SIZE;
> if (is_kfunc_arg_mem_size(meta->btf, &args[arg]))
> - return KF_ARG_MEM_SIZE;
> + return ARG_MEM_SIZE;
> if (is_kfunc_arg_scalar_with_name(meta->btf, &args[arg], "rdonly_buf_size") ||
> is_kfunc_arg_scalar_with_name(meta->btf, &args[arg], "rdwr_buf_size"))
> - return KF_ARG_CONST_ALLOC_SIZE_OR_ZERO;
> - return KF_ARG_ANYTHING;
> + return ARG_CONST_ALLOC_SIZE_OR_ZERO;
> + return ARG_SCALAR;
> }
[Severity: High]
This isn't a bug introduced by this patch, but while reviewing how the
verifier classifies kfunc scalar/enum arguments, I noticed a pre-existing
issue where several memcg kfuncs take enums as array indices but lack
negative bounds checks.
Because the verifier treats enums as signed integers and does not enforce
valid enum ranges, a BPF program can pass negative values to these kfuncs
to bypass the upper-bound checks and read out-of-bounds kernel memory.
For example, in mm/bpf_memcontrol.c:bpf_mem_cgroup_memory_events():
__bpf_kfunc unsigned long bpf_mem_cgroup_memory_events(struct mem_cgroup *memcg,
enum memcg_memory_event event)
{
if (unlikely(event >= MEMCG_NR_MEMORY_EVENTS))
return (unsigned long)-1;
return atomic_long_read(&memcg->memory_events[event]);
}
A negative event value bypasses the signed upper bounds check and directly
indexes memory_events[-1].
A similar missing negative bounds check exists in
mm/bpf_memcontrol.c:bpf_mem_cgroup_vm_events():
__bpf_kfunc unsigned long bpf_mem_cgroup_vm_events(struct mem_cgroup *memcg,
enum vm_event_item event)
{
if (unlikely(!memcg_vm_event_item_valid(event)))
return (unsigned long)-1;
The negative integer is forwarded to mm/memcontrol.c:memcg_vm_event_item_valid()
which also lacks a lower bound check:
bool memcg_vm_event_item_valid(enum vm_event_item idx)
{
if (idx >= NR_VM_EVENT_ITEMS)
return false;
return !BAD_STAT_IDX(memcg_events_index(idx));
}
Could this allow users capable of loading BPF programs to bypass KASLR or
leak adjacent kernel heap memory?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260911220415.1396439-1-ameryhung@gmail.com?part=6
next prev parent reply other threads:[~2026-09-11 22:26 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-11 22:03 [PATCH bpf-next v2 00/23] Unify helper and kfunc argument checks Amery Hung
2026-09-11 22:03 ` [PATCH bpf-next v2 01/23] bpf: Pass call metadata through shared " Amery Hung
2026-09-11 22:03 ` [PATCH bpf-next v2 02/23] bpf: Address check_func_arg() arguments by argno Amery Hung
2026-09-11 22:03 ` [PATCH bpf-next v2 03/23] bpf: Only compare func_id against BPF_FUNC_* for helper calls Amery Hung
2026-09-11 22:03 ` [PATCH bpf-next v2 04/23] bpf: Only compare func_id against kfunc BTF IDs for kfunc calls Amery Hung
2026-09-11 22:03 ` [PATCH bpf-next v2 05/23] bpf: Clarify unused and scalar function argument types Amery Hung
2026-09-11 22:19 ` sashiko-bot
2026-09-11 22:03 ` [PATCH bpf-next v2 06/23] bpf: Unify kfunc argument kinds with enum bpf_arg_type Amery Hung
2026-09-11 22:26 ` sashiko-bot [this message]
2026-09-11 22:03 ` [PATCH bpf-next v2 07/23] bpf: Classify kfunc arguments the verifier ignores Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 08/23] bpf: Align helper and kfunc ARG_PTR_TO_PROG_AUX handling Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 09/23] bpf: Set OBJ_RELEASE when generating kfunc argument types Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 10/23] bpf: Set MEM_UNINIT and dynptr subtypes when generating kfunc arg types Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 11/23] bpf: Set MEM_RCU when generating kfunc argument types Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 12/23] bpf: Resolve BTF ID of ARG_PTR_TO_BTF_ID in kfunc bpf_func_proto Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 13/23] bpf: Resolve ARG_PTR_TO_MEM | MEM_FIXED_SIZE size " Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 14/23] bpf: Consolidate runtime argument type resolution Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 15/23] bpf: Consolidate nullable argument validation Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 16/23] bpf: Drop redundant BTF pointer helper write rejection Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 17/23] bpf: Consolidate helper and kfunc PTR_TO_BTF_ID argument matching Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 18/23] bpf: Admit kfunc argument registers through check_reg_type() Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 19/23] bpf: Consolidate function call pkt_access validation Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 20/23] selftests/bpf: Test kfunc packet memory direct writes Amery Hung
2026-09-11 22:36 ` sashiko-bot
2026-09-11 22:04 ` [PATCH bpf-next v2 21/23] bpf: Consolidate release argument validation Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 22/23] selftests/bpf: Test nullable per-CPU kptr identity after exchange Amery Hung
2026-09-11 22:04 ` [PATCH bpf-next v2 23/23] bpf: Check helper and kfunc arguments in one path Amery Hung
2026-09-12 3:20 ` [PATCH bpf-next v2 00/23] Unify helper and kfunc argument checks patchwork-bot+netdevbpf
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=20260911222642.72A931F00893@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=ameryhung@gmail.com \
--cc=bpf@vger.kernel.org \
--cc=sashiko-reviews@lists.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