From: Kohei Enju <enjuk@amazon.com>
To: <eddyz87@gmail.com>
Cc: <andrii@kernel.org>, <ast@kernel.org>, <bpf@vger.kernel.org>,
<daniel@iogearbox.net>, <enjuk@amazon.com>, <haoluo@google.com>,
<iii@linux.ibm.com>, <john.fastabend@gmail.com>,
<jolsa@kernel.org>, <kohei.enju@gmail.com>, <kpsingh@kernel.org>,
<kuniyu@amazon.com>, <linux-kernel@vger.kernel.org>,
<martin.lau@linux.dev>, <sdf@fomichev.me>, <song@kernel.org>,
<yepeilin@google.com>, <yonghong.song@linux.dev>
Subject: Re: [PATCH v2 bpf-next 2/2] selftests/bpf: Add selftests for load-acquire/store-release when register number is invalid
Date: Sat, 22 Mar 2025 11:48:56 +0900 [thread overview]
Message-ID: <20250322025013.76028-1-enjuk@amazon.com> (raw)
In-Reply-To: <65ff9c62d0d2c355121468b04c0701081d3275fd.camel@gmail.com>
> [...]
>
> > +SEC("socket")
> > +__description("load-acquire with invalid register R11")
> > +__failure __failure_unpriv __msg("R11 is invalid")
> > +__naked void load_acquire_with_invalid_reg(void)
> > +{
> > + asm volatile (
> > + ".8byte %[load_acquire_insn];" // r0 = load_acquire((u64 *)(r11 + 0));
> > + "exit;"
> > + :
> > + : __imm_insn(load_acquire_insn,
> > + BPF_ATOMIC_OP(BPF_DW, BPF_LOAD_ACQ, BPF_REG_0, 11 /* invalid reg */, 0))
> > + : __clobber_all);
> > +}
> > +
> > #else /* CAN_USE_LOAD_ACQ_STORE_REL */
> >
> > SEC("socket")
> > diff --git a/tools/testing/selftests/bpf/progs/verifier_store_release.c b/tools/testing/selftests/bpf/progs/verifier_store_release.c
> > index cd6f1e5f378b..2dc1d713b4a6 100644
> > --- a/tools/testing/selftests/bpf/progs/verifier_store_release.c
> > +++ b/tools/testing/selftests/bpf/progs/verifier_store_release.c
> > @@ -257,6 +257,20 @@ __naked void store_release_leak_pointer_to_map(void)
> > : __clobber_all);
> > }
> >
> > +SEC("socket")
> > +__description("store-release with invalid register R11")
> > +__failure __failure_unpriv __msg("R11 is invalid")
> > +__naked void store_release_with_invalid_reg(void)
> > +{
> > + asm volatile (
> > + ".8byte %[store_release_insn];" // store_release((u64 *)(r11 + 0), r1);
> > + "exit;"
> > + :
> > + : __imm_insn(store_release_insn,
> > + BPF_ATOMIC_OP(BPF_DW, BPF_STORE_REL, 11 /* invalid reg */, BPF_REG_1, 0))
>
> On my machine / config, the value of 11 was too small to trigger the
> KASAN warning. Value of 12 was sufficient.
> Curious if it is my config, did you see KASAN warning locally when running this test
> before applying the fix?
Yes, as you pointed out, R11 doesn't trigger the KASAN splat in practice.
For the splat, we need a value of 12 or larger.
The sizes of struct bpf_reg_state and bpf_func_state are 120 and 1368
respectively.[1]
In the bpf_func_state, the member `regs` ranges from 0 to 1320 bytes (each
120 bytes for each R0 to R10).
Also, the member `type`, which is accessed in is_ctx_reg(), is the first
member of struct bpf_reg_state.
Therefore, when the register is R11, `regs->type` reads 4 bytes from 1320.
Since the size of bpf_func_state is 1368 and it doesn't exceed the end of
the allocated memory, it doesn't trigger the KASAN splat.
OTOH, when the register is R12, `regs->type` reads 4 bytes from 1440 (120
* 12 + 0).
This triggers the KASAN splat since it's larger than bpf_func_state's size.
Here is a part of the splat I saw in my environment when specifying R12.
This says that the buggy address is 1440 (1368 + 72) and also matches
previous analysis.
The buggy address belongs to the object at ffff888112603800
which belongs to the cache kmalloc-2k of size 2048
The buggy address is located 72 bytes to the right of
allocated 1368-byte region [ffff888112603800, ffff888112603d58)
...
Memory state around the buggy address:
ffff888112603c80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
ffff888112603d00: 00 00 00 00 00 00 00 00 00 00 00 fc fc fc fc fc
>ffff888112603d80: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
^
ffff888112603e00: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
ffff888112603e80: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
> Maybe set the value to 15 here and above to maximize probability of KASAN warning?
Understood. Thank you for the feedback.
I chose the minimum invalid register regardless of the actual occurrence
of the splat, since the validity check of this type might be `regno >=
MAX_BPF_REG` or not.
Sorry for my confusing choice.
Since I'm not attached to that particular choice, I'll change it to R15.
Thank you for reviewing and providing feedback!
>
> > + : __clobber_all);
> > +}
> > +
> > #else
> >
> > SEC("socket")
Regards,
Kohei
---
[1]
struct bpf_reg_state {
enum bpf_reg_type type; /* 0 4 */
...
/* size: 120, cachelines: 2, members: 19 */
/* padding: 3 */
/* last cacheline: 56 bytes */
};
struct bpf_func_state {
struct bpf_reg_state regs[11]; /* 0 1320 */
...
int allocated_stack; /* 1360 4 */
/* size: 1368, cachelines: 22, members: 12 */
/* sum members: 1363, holes: 1, sum holes: 1 */
/* padding: 4 */
/* last cacheline: 24 bytes */
};
next prev parent reply other threads:[~2025-03-22 2:50 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-21 10:59 [PATCH v2 bpf-next 0/2] bpf: Fix OOB read and add tests for load-acquire/store-release Kohei Enju
2025-03-21 10:59 ` [PATCH v2 bpf-next 1/2] bpf: Fix out-of-bounds read in check_atomic_load/store() Kohei Enju
2025-03-21 22:16 ` Eduard Zingerman
2025-03-21 10:59 ` [PATCH v2 bpf-next 2/2] selftests/bpf: Add selftests for load-acquire/store-release when register number is invalid Kohei Enju
2025-03-21 22:24 ` Eduard Zingerman
2025-03-22 2:48 ` Kohei Enju [this message]
2025-03-22 3:17 ` Eduard Zingerman
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=20250322025013.76028-1-enjuk@amazon.com \
--to=enjuk@amazon.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=haoluo@google.com \
--cc=iii@linux.ibm.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kohei.enju@gmail.com \
--cc=kpsingh@kernel.org \
--cc=kuniyu@amazon.com \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.lau@linux.dev \
--cc=sdf@fomichev.me \
--cc=song@kernel.org \
--cc=yepeilin@google.com \
--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