* [PATCH bpf-next v3 1/2] bpf, riscv: Add support for signed arena loads
2026-08-19 12:09 [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Chen Pei
@ 2026-08-19 12:09 ` Chen Pei
2026-08-20 4:12 ` Pu Lehui
2026-08-19 12:09 ` [PATCH bpf-next v3 2/2] selftests/bpf: Enable arena LDSX tests for riscv64 Chen Pei
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Chen Pei @ 2026-08-19 12:09 UTC (permalink / raw)
To: ast, daniel, andrii, memxor, bjorn, puranjay
Cc: ihor.solodrai, eddyz87, martin.lau, song, yonghong.song, jolsa,
emil, pulehui, pjw, palmer, shuah, guoren, bpf, linux-riscv,
linux-kselftest, linux-kernel
Signed loads from arena memory are currently rejected on riscv64, as
bpf_jit_supports_insn() refuses BPF_MEMSX loads when in_arena is set,
while x86 and arm64 gained support for them in v6.18. Compilers such
as GCC-14 are free to generate signed loads into arena memory, which
breaks loading of otherwise valid BPF programs on riscv64.
Implement BPF_PROBE_MEM32SX support in the RV64 JIT by reusing the
existing arena handling: the arena base (RV_REG_ARENA) is added to
the source register and the load is emitted with sign extension
(lb/lh/lw). Add BPF_PROBE_MEM32SX to the add_exception_handler()
mode gate so that faulting loads get an exception table entry which
clears the destination register and resumes execution. Since
BPF_PROBE_MEM32SX shares its mode value (0xc0) with BPF_ATOMIC, the
gate accepts it only for LDX class instructions so that plain atomic
instructions do not register exception table entries.
Verified by running the arena LDSX selftests (arena_ldsx_disasm,
arena_ldsx_exception, arena_ldsx_s8/s16/s32) and the full
arena_atomics test suite on riscv64 QEMU, all passing.
Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
---
Changes in v3:
- Restore the pseudo-code form of the PROBE_MEM32SX case comment.
Changes in v2:
- Fix extable entry overflow breaking arena_atomics load
arch/riscv/net/bpf_jit_comp64.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/arch/riscv/net/bpf_jit_comp64.c b/arch/riscv/net/bpf_jit_comp64.c
index f9d5347ba966..64ebd262c498 100644
--- a/arch/riscv/net/bpf_jit_comp64.c
+++ b/arch/riscv/net/bpf_jit_comp64.c
@@ -777,6 +777,8 @@ static int add_exception_handler(const struct bpf_insn *insn, int dst_reg,
if (BPF_MODE(insn->code) != BPF_PROBE_MEM &&
BPF_MODE(insn->code) != BPF_PROBE_MEMSX &&
BPF_MODE(insn->code) != BPF_PROBE_MEM32 &&
+ !(BPF_MODE(insn->code) == BPF_PROBE_MEM32SX &&
+ BPF_CLASS(insn->code) == BPF_LDX) &&
BPF_MODE(insn->code) != BPF_PROBE_ATOMIC)
return 0;
@@ -1902,13 +1904,19 @@ int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx,
case BPF_LDX | BPF_PROBE_MEM32 | BPF_H:
case BPF_LDX | BPF_PROBE_MEM32 | BPF_W:
case BPF_LDX | BPF_PROBE_MEM32 | BPF_DW:
+ /* LDX | PROBE_MEM32SX: dst = *(signed size *)(src + RV_REG_ARENA + off) */
+ case BPF_LDX | BPF_PROBE_MEM32SX | BPF_B:
+ case BPF_LDX | BPF_PROBE_MEM32SX | BPF_H:
+ case BPF_LDX | BPF_PROBE_MEM32SX | BPF_W:
{
bool sign_ext;
sign_ext = BPF_MODE(insn->code) == BPF_MEMSX ||
- BPF_MODE(insn->code) == BPF_PROBE_MEMSX;
+ BPF_MODE(insn->code) == BPF_PROBE_MEMSX ||
+ BPF_MODE(insn->code) == BPF_PROBE_MEM32SX;
- if (BPF_MODE(insn->code) == BPF_PROBE_MEM32) {
+ if (BPF_MODE(insn->code) == BPF_PROBE_MEM32 ||
+ BPF_MODE(insn->code) == BPF_PROBE_MEM32SX) {
emit_add(RV_REG_T2, rs, RV_REG_ARENA, ctx);
rs = RV_REG_T2;
}
@@ -2126,10 +2134,6 @@ bool bpf_jit_supports_insn(struct bpf_insn *insn, bool in_arena)
if (insn->imm == BPF_CMPXCHG)
return rv_ext_enabled(ZACAS);
break;
- case BPF_LDX | BPF_MEMSX | BPF_B:
- case BPF_LDX | BPF_MEMSX | BPF_H:
- case BPF_LDX | BPF_MEMSX | BPF_W:
- return false;
}
}
--
2.50.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH bpf-next v3 1/2] bpf, riscv: Add support for signed arena loads
2026-08-19 12:09 ` [PATCH bpf-next v3 1/2] " Chen Pei
@ 2026-08-20 4:12 ` Pu Lehui
0 siblings, 0 replies; 7+ messages in thread
From: Pu Lehui @ 2026-08-20 4:12 UTC (permalink / raw)
To: Chen Pei, ast, daniel, andrii, memxor, bjorn, puranjay
Cc: ihor.solodrai, eddyz87, martin.lau, song, yonghong.song, jolsa,
emil, pjw, palmer, shuah, guoren, bpf, linux-riscv,
linux-kselftest, linux-kernel
On 2026/8/19 20:09, Chen Pei wrote:
> Signed loads from arena memory are currently rejected on riscv64, as
> bpf_jit_supports_insn() refuses BPF_MEMSX loads when in_arena is set,
> while x86 and arm64 gained support for them in v6.18. Compilers such
> as GCC-14 are free to generate signed loads into arena memory, which
> breaks loading of otherwise valid BPF programs on riscv64.
>
> Implement BPF_PROBE_MEM32SX support in the RV64 JIT by reusing the
> existing arena handling: the arena base (RV_REG_ARENA) is added to
> the source register and the load is emitted with sign extension
> (lb/lh/lw). Add BPF_PROBE_MEM32SX to the add_exception_handler()
> mode gate so that faulting loads get an exception table entry which
> clears the destination register and resumes execution. Since
> BPF_PROBE_MEM32SX shares its mode value (0xc0) with BPF_ATOMIC, the
> gate accepts it only for LDX class instructions so that plain atomic
> instructions do not register exception table entries.
>
> Verified by running the arena LDSX selftests (arena_ldsx_disasm,
> arena_ldsx_exception, arena_ldsx_s8/s16/s32) and the full
> arena_atomics test suite on riscv64 QEMU, all passing.
>
> Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
> ---
>
> Changes in v3:
> - Restore the pseudo-code form of the PROBE_MEM32SX case comment.
>
> Changes in v2:
> - Fix extable entry overflow breaking arena_atomics load
>
> arch/riscv/net/bpf_jit_comp64.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/arch/riscv/net/bpf_jit_comp64.c b/arch/riscv/net/bpf_jit_comp64.c
> index f9d5347ba966..64ebd262c498 100644
> --- a/arch/riscv/net/bpf_jit_comp64.c
> +++ b/arch/riscv/net/bpf_jit_comp64.c
> @@ -777,6 +777,8 @@ static int add_exception_handler(const struct bpf_insn *insn, int dst_reg,
> if (BPF_MODE(insn->code) != BPF_PROBE_MEM &&
> BPF_MODE(insn->code) != BPF_PROBE_MEMSX &&
> BPF_MODE(insn->code) != BPF_PROBE_MEM32 &&
> + !(BPF_MODE(insn->code) == BPF_PROBE_MEM32SX &&
> + BPF_CLASS(insn->code) == BPF_LDX) &&
> BPF_MODE(insn->code) != BPF_PROBE_ATOMIC)
> return 0;
>
> @@ -1902,13 +1904,19 @@ int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx,
> case BPF_LDX | BPF_PROBE_MEM32 | BPF_H:
> case BPF_LDX | BPF_PROBE_MEM32 | BPF_W:
> case BPF_LDX | BPF_PROBE_MEM32 | BPF_DW:
> + /* LDX | PROBE_MEM32SX: dst = *(signed size *)(src + RV_REG_ARENA + off) */
> + case BPF_LDX | BPF_PROBE_MEM32SX | BPF_B:
> + case BPF_LDX | BPF_PROBE_MEM32SX | BPF_H:
> + case BPF_LDX | BPF_PROBE_MEM32SX | BPF_W:
> {
> bool sign_ext;
>
> sign_ext = BPF_MODE(insn->code) == BPF_MEMSX ||
> - BPF_MODE(insn->code) == BPF_PROBE_MEMSX;
> + BPF_MODE(insn->code) == BPF_PROBE_MEMSX ||
> + BPF_MODE(insn->code) == BPF_PROBE_MEM32SX;
>
> - if (BPF_MODE(insn->code) == BPF_PROBE_MEM32) {
> + if (BPF_MODE(insn->code) == BPF_PROBE_MEM32 ||
> + BPF_MODE(insn->code) == BPF_PROBE_MEM32SX) {
> emit_add(RV_REG_T2, rs, RV_REG_ARENA, ctx);
> rs = RV_REG_T2;
> }
> @@ -2126,10 +2134,6 @@ bool bpf_jit_supports_insn(struct bpf_insn *insn, bool in_arena)
> if (insn->imm == BPF_CMPXCHG)
> return rv_ext_enabled(ZACAS);
> break;
> - case BPF_LDX | BPF_MEMSX | BPF_B:
> - case BPF_LDX | BPF_MEMSX | BPF_H:
> - case BPF_LDX | BPF_MEMSX | BPF_W:
> - return false;
> }
> }
>
Reviewed-by: Pu Lehui <pulehui@huawei.com>
Tested-by: Pu Lehui <pulehui@huawei.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH bpf-next v3 2/2] selftests/bpf: Enable arena LDSX tests for riscv64
2026-08-19 12:09 [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Chen Pei
2026-08-19 12:09 ` [PATCH bpf-next v3 1/2] " Chen Pei
@ 2026-08-19 12:09 ` Chen Pei
2026-08-20 4:12 ` Pu Lehui
2026-08-25 13:16 ` [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Björn Töpel
2026-08-25 13:30 ` patchwork-bot+netdevbpf
3 siblings, 1 reply; 7+ messages in thread
From: Chen Pei @ 2026-08-19 12:09 UTC (permalink / raw)
To: ast, daniel, andrii, memxor, bjorn, puranjay
Cc: ihor.solodrai, eddyz87, martin.lau, song, yonghong.song, jolsa,
emil, pulehui, pjw, palmer, shuah, guoren, bpf, linux-riscv,
linux-kselftest, linux-kernel
Now that the riscv64 JIT supports signed arena loads
(BPF_PROBE_MEM32SX), enable the arena LDSX tests on riscv64:
add JIT disassembly assertions for arena_ldsx_disasm (arena base in
s7, add into t2, sign-extending lw/lh/lb loads) and run
arena_ldsx_exception and arena_ldsx_s8/s16/s32 on riscv64.
Reviewed-by: Pu Lehui <pulehui@huawei.com>
Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
---
.../testing/selftests/bpf/progs/verifier_ldsx.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/tools/testing/selftests/bpf/progs/verifier_ldsx.c b/tools/testing/selftests/bpf/progs/verifier_ldsx.c
index 41340877dc9d..ed0a0f159bc1 100644
--- a/tools/testing/selftests/bpf/progs/verifier_ldsx.c
+++ b/tools/testing/selftests/bpf/progs/verifier_ldsx.c
@@ -286,6 +286,19 @@ __jited("add x11, x0, x28")
__jited("ldrsh x22, [x11, #0x18]")
__jited("add x11, x0, x28")
__jited("ldrsb x22, [x11, #0x20]")
+__arch_riscv64
+__jited("add t2, a5, s7")
+__jited("lw s3, 0x10(t2)")
+__jited("add t2, a5, s7")
+__jited("lh s3, 0x18(t2)")
+__jited("add t2, a5, s7")
+__jited("lb s3, 0x20(t2)")
+__jited("add t2, a0, s7")
+__jited("lw s4, 0x10(t2)")
+__jited("add t2, a0, s7")
+__jited("lh s4, 0x18(t2)")
+__jited("add t2, a0, s7")
+__jited("lb s4, 0x20(t2)")
__naked void arena_ldsx_disasm(void *ctx)
{
asm volatile (
@@ -317,6 +330,7 @@ __description("Arena LDSX Exception")
__success __retval(0)
__arch_x86_64
__arch_arm64
+__arch_riscv64
__naked void arena_ldsx_exception(void *ctx)
{
asm volatile (
@@ -338,6 +352,7 @@ __description("Arena LDSX, S8")
__success __retval(-1)
__arch_x86_64
__arch_arm64
+__arch_riscv64
__naked void arena_ldsx_s8(void *ctx)
{
asm volatile (
@@ -369,6 +384,7 @@ __description("Arena LDSX, S16")
__success __retval(-1)
__arch_x86_64
__arch_arm64
+__arch_riscv64
__naked void arena_ldsx_s16(void *ctx)
{
asm volatile (
@@ -400,6 +416,7 @@ __description("Arena LDSX, S32")
__success __retval(-1)
__arch_x86_64
__arch_arm64
+__arch_riscv64
__naked void arena_ldsx_s32(void *ctx)
{
asm volatile (
--
2.50.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH bpf-next v3 2/2] selftests/bpf: Enable arena LDSX tests for riscv64
2026-08-19 12:09 ` [PATCH bpf-next v3 2/2] selftests/bpf: Enable arena LDSX tests for riscv64 Chen Pei
@ 2026-08-20 4:12 ` Pu Lehui
0 siblings, 0 replies; 7+ messages in thread
From: Pu Lehui @ 2026-08-20 4:12 UTC (permalink / raw)
To: Chen Pei, ast, daniel, andrii, memxor, bjorn, puranjay
Cc: ihor.solodrai, eddyz87, martin.lau, song, yonghong.song, jolsa,
emil, pjw, palmer, shuah, guoren, bpf, linux-riscv,
linux-kselftest, linux-kernel
On 2026/8/19 20:09, Chen Pei wrote:
> Now that the riscv64 JIT supports signed arena loads
> (BPF_PROBE_MEM32SX), enable the arena LDSX tests on riscv64:
> add JIT disassembly assertions for arena_ldsx_disasm (arena base in
> s7, add into t2, sign-extending lw/lh/lb loads) and run
> arena_ldsx_exception and arena_ldsx_s8/s16/s32 on riscv64.
>
> Reviewed-by: Pu Lehui <pulehui@huawei.com>
> Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
> ---
> .../testing/selftests/bpf/progs/verifier_ldsx.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/tools/testing/selftests/bpf/progs/verifier_ldsx.c b/tools/testing/selftests/bpf/progs/verifier_ldsx.c
> index 41340877dc9d..ed0a0f159bc1 100644
> --- a/tools/testing/selftests/bpf/progs/verifier_ldsx.c
> +++ b/tools/testing/selftests/bpf/progs/verifier_ldsx.c
> @@ -286,6 +286,19 @@ __jited("add x11, x0, x28")
> __jited("ldrsh x22, [x11, #0x18]")
> __jited("add x11, x0, x28")
> __jited("ldrsb x22, [x11, #0x20]")
> +__arch_riscv64
> +__jited("add t2, a5, s7")
> +__jited("lw s3, 0x10(t2)")
> +__jited("add t2, a5, s7")
> +__jited("lh s3, 0x18(t2)")
> +__jited("add t2, a5, s7")
> +__jited("lb s3, 0x20(t2)")
> +__jited("add t2, a0, s7")
> +__jited("lw s4, 0x10(t2)")
> +__jited("add t2, a0, s7")
> +__jited("lh s4, 0x18(t2)")
> +__jited("add t2, a0, s7")
> +__jited("lb s4, 0x20(t2)")
> __naked void arena_ldsx_disasm(void *ctx)
> {
> asm volatile (
> @@ -317,6 +330,7 @@ __description("Arena LDSX Exception")
> __success __retval(0)
> __arch_x86_64
> __arch_arm64
> +__arch_riscv64
> __naked void arena_ldsx_exception(void *ctx)
> {
> asm volatile (
> @@ -338,6 +352,7 @@ __description("Arena LDSX, S8")
> __success __retval(-1)
> __arch_x86_64
> __arch_arm64
> +__arch_riscv64
> __naked void arena_ldsx_s8(void *ctx)
> {
> asm volatile (
> @@ -369,6 +384,7 @@ __description("Arena LDSX, S16")
> __success __retval(-1)
> __arch_x86_64
> __arch_arm64
> +__arch_riscv64
> __naked void arena_ldsx_s16(void *ctx)
> {
> asm volatile (
> @@ -400,6 +416,7 @@ __description("Arena LDSX, S32")
> __success __retval(-1)
> __arch_x86_64
> __arch_arm64
> +__arch_riscv64
> __naked void arena_ldsx_s32(void *ctx)
> {
> asm volatile (
Tested-by: Pu Lehui <pulehui@huawei.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads
2026-08-19 12:09 [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Chen Pei
2026-08-19 12:09 ` [PATCH bpf-next v3 1/2] " Chen Pei
2026-08-19 12:09 ` [PATCH bpf-next v3 2/2] selftests/bpf: Enable arena LDSX tests for riscv64 Chen Pei
@ 2026-08-25 13:16 ` Björn Töpel
2026-08-25 13:30 ` patchwork-bot+netdevbpf
3 siblings, 0 replies; 7+ messages in thread
From: Björn Töpel @ 2026-08-25 13:16 UTC (permalink / raw)
To: Chen Pei, ast, daniel, andrii, memxor, puranjay
Cc: ihor.solodrai, eddyz87, martin.lau, song, yonghong.song, jolsa,
emil, pulehui, pjw, palmer, shuah, guoren, bpf, linux-riscv,
linux-kselftest, linux-kernel
Chen Pei <cp0613@linux.alibaba.com> writes:
> Chen Pei (2):
> bpf, riscv: Add support for signed arena loads
> selftests/bpf: Enable arena LDSX tests for riscv64
>
> arch/riscv/net/bpf_jit_comp64.c | 16 ++++++++++------
> .../testing/selftests/bpf/progs/verifier_ldsx.c | 17 +++++++++++++++++
> 2 files changed, 27 insertions(+), 6 deletions(-)
Back from summer vacation! Apologies for the delay!
For the series:
Acked-by: Björn Töpel <bjorn@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads
2026-08-19 12:09 [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Chen Pei
` (2 preceding siblings ...)
2026-08-25 13:16 ` [PATCH bpf-next v3 0/2] bpf, riscv: Add support for signed arena loads Björn Töpel
@ 2026-08-25 13:30 ` patchwork-bot+netdevbpf
3 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-08-25 13:30 UTC (permalink / raw)
To: Chen Pei
Cc: ast, daniel, andrii, memxor, bjorn, puranjay, ihor.solodrai,
eddyz87, martin.lau, song, yonghong.song, jolsa, emil, pulehui,
pjw, palmer, shuah, guoren, bpf, linux-riscv, linux-kselftest,
linux-kernel
Hello:
This series was applied to bpf/bpf-next.git (master)
by Kumar Kartikeya Dwivedi <memxor@gmail.com>:
On Wed, 19 Aug 2026 20:09:22 +0800 you wrote:
> Hi,
>
> Signed loads from arena memory are currently unsupported on riscv64:
> bpf_jit_supports_insn() rejects BPF_MEMSX loads when in_arena is set,
> so the verifier fails such programs with "sign extending loads from
> arena are not supported yet". The x86 and arm64 JITs gained support
> for them in v6.18 (a91ae3c89311, eab2a71f3a6a). Since compilers are
> free to generate signed loads into arena memory (e.g. GCC-14 was
> reported to do so), otherwise valid BPF programs fail to load on
> riscv64.
>
> [...]
Here is the summary with links:
- [bpf-next,v3,1/2] bpf, riscv: Add support for signed arena loads
https://git.kernel.org/bpf/bpf-next/c/b4757714cc63
- [bpf-next,v3,2/2] selftests/bpf: Enable arena LDSX tests for riscv64
https://git.kernel.org/bpf/bpf-next/c/8f2087a1b43b
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] 7+ messages in thread