* [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots
@ 2026-09-25 8:28 Hao Sun
2026-09-25 8:28 ` [PATCH bpf-next 2/2] selftests/bpf: Test helper read of a narrow stack spill Hao Sun
2026-09-25 10:00 ` [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Hao Sun @ 2026-09-25 8:28 UTC (permalink / raw)
To: bpf
Cc: ast, daniel, andrii, eddyz87, john.fastabend, memxor, martin.lau,
linux-kernel, sunhao.th
check_stack_range_initialized() takes the spilled register path when
bpf_is_spilled_reg(ss) holds, which, however, only looks at the last
byte of the slot. Hence, a partially spilled scalar (on the lower part)
bypasses the check and the following loads:
0: (b7) r1 = 1 ; R1=1
1: (63) *(u32 *)(r10 -8) = r1 ; R1=1 R10=fp0 fp-8=????1
2: (18) r1 = 0x0 ; R1=map_ptr(map=rb,ks=0,vs=0)
4: (bf) r2 = r10 ; R2=fp0 R10=fp0
5: (07) r2 += -8 ; R2=fp-8
6: (b7) r3 = 8 ; R3=8
7: (b7) r4 = 0 ; R4=0
8: (85) call bpf_ringbuf_output#130
...
When executed, it dumps the uninit four bytes:
RINGBUF: 01 00 00 00 ff ff ff ff
This is the same root cause as the non-fetch atomic case fixed in
commit 5a84b4424db8 ("bpf: Fix uninit read for non-fetch atomics on
partially spilled slots").
Fix by only taking the spilled register path for the bytes marked
STACK_SPILL, so the rest of the slot goes through the usual checks.
Fixes: 354e8f1970f8 ("bpf: Support <8-byte scalar spill and refill")
Suggested-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Hao Sun <sunhao.th@gmail.com>
---
kernel/bpf/verifier.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index c495dc9070de..5c8626215ee6 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -7484,7 +7484,12 @@ static int check_stack_range_initialized(
goto mark;
}
- if (bpf_is_spilled_reg(ss) &&
+ /*
+ * Only the bytes marked STACK_SPILL hold the spilled register.
+ * The rest of a narrowly spilled slot keeps its previous type
+ * and must be initialized on its own.
+ */
+ if (*stype == STACK_SPILL &&
(ss->spilled_ptr.type == SCALAR_VALUE ||
env->allow_ptr_leaks)) {
if (clobber) {
--
2.34.1
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH bpf-next 2/2] selftests/bpf: Test helper read of a narrow stack spill
2026-09-25 8:28 [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots Hao Sun
@ 2026-09-25 8:28 ` Hao Sun
2026-09-25 10:00 ` [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Hao Sun @ 2026-09-25 8:28 UTC (permalink / raw)
To: bpf
Cc: ast, daniel, andrii, eddyz87, john.fastabend, memxor, martin.lau,
linux-kernel, sunhao.th
Spill a 32-bit scalar into an 8-byte stack slot, leaving the other half
of the slot uninitialized. With CAP_BPF but without CAP_PERFMON the
verifier rejects the helper's read.
Signed-off-by: Hao Sun <sunhao.th@gmail.com>
---
.../selftests/bpf/progs/verifier_spill_fill.c | 24 +++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/tools/testing/selftests/bpf/progs/verifier_spill_fill.c b/tools/testing/selftests/bpf/progs/verifier_spill_fill.c
index 04989d08be44..4d1374885f6d 100644
--- a/tools/testing/selftests/bpf/progs/verifier_spill_fill.c
+++ b/tools/testing/selftests/bpf/progs/verifier_spill_fill.c
@@ -1363,6 +1363,30 @@ __naked void stack_noperfmon_reject_atomic_on_narrow_spill(void)
::: __clobber_all);
}
+SEC("socket")
+__description("stack_noperfmon: reject helper read of narrow spill")
+__success
+__caps_unpriv(CAP_BPF)
+__failure_unpriv __msg_unpriv("invalid read from stack R2 off -8+4 size 8")
+__naked void stack_noperfmon_reject_helper_read_of_narrow_spill(void)
+{
+ asm volatile (
+ "r1 = 1;"
+ "*(u32 *)(r10 - 8) = r1;"
+ "r1 = %[map_ringbuf] ll;"
+ "r2 = r10;"
+ "r2 += -8;"
+ "r3 = 8;"
+ "r4 = 0;"
+ "call %[bpf_ringbuf_output];"
+ "r0 = 0;"
+ "exit;"
+ :
+ : __imm(bpf_ringbuf_output),
+ __imm_addr(map_ringbuf)
+ : __clobber_all);
+}
+
SEC("raw_tp")
__success
__naked void var_off_write_over_scalar_spill(void)
--
2.34.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots
2026-09-25 8:28 [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots Hao Sun
2026-09-25 8:28 ` [PATCH bpf-next 2/2] selftests/bpf: Test helper read of a narrow stack spill Hao Sun
@ 2026-09-25 10:00 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-25 10:00 UTC (permalink / raw)
To: Hao Sun
Cc: bpf, ast, daniel, andrii, eddyz87, john.fastabend, memxor,
martin.lau, linux-kernel
Hello:
This series was applied to bpf/bpf-next.git (master)
by Kumar Kartikeya Dwivedi <memxor@gmail.com>:
On Fri, 25 Sep 2026 10:28:13 +0200 you wrote:
> check_stack_range_initialized() takes the spilled register path when
> bpf_is_spilled_reg(ss) holds, which, however, only looks at the last
> byte of the slot. Hence, a partially spilled scalar (on the lower part)
> bypasses the check and the following loads:
>
> 0: (b7) r1 = 1 ; R1=1
> 1: (63) *(u32 *)(r10 -8) = r1 ; R1=1 R10=fp0 fp-8=????1
> 2: (18) r1 = 0x0 ; R1=map_ptr(map=rb,ks=0,vs=0)
> 4: (bf) r2 = r10 ; R2=fp0 R10=fp0
> 5: (07) r2 += -8 ; R2=fp-8
> 6: (b7) r3 = 8 ; R3=8
> 7: (b7) r4 = 0 ; R4=0
> 8: (85) call bpf_ringbuf_output#130
> ...
>
> [...]
Here is the summary with links:
- [bpf-next,1/2] bpf: Fix uninit read for helper mem args on partially spilled slots
https://git.kernel.org/bpf/bpf-next/c/b3861495d2b2
- [bpf-next,2/2] selftests/bpf: Test helper read of a narrow stack spill
https://git.kernel.org/bpf/bpf-next/c/7af653d4ebf8
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] 3+ messages in thread
end of thread, other threads:[~2026-09-25 10:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-25 8:28 [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots Hao Sun
2026-09-25 8:28 ` [PATCH bpf-next 2/2] selftests/bpf: Test helper read of a narrow stack spill Hao Sun
2026-09-25 10:00 ` [PATCH bpf-next 1/2] bpf: Fix uninit read for helper mem args on partially spilled slots 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®