From: sashiko-bot@kernel.org
To: "Yonghong Song" <yonghong.song@linux.dev>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v2 11/13] selftests/bpf: Add inline-asm and subprog tests for R0:R2 returns
Date: Tue, 04 Aug 2026 20:52:42 +0000 [thread overview]
Message-ID: <20260804205243.5F7E71F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260804203618.1878749-1-yonghong.song@linux.dev>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] The inline assembly tests verifying kfunc struct returns and __int128 values incorrectly assume little-endian register packing, which will cause deterministic test failures on big-endian architectures.
--
--- Patch [11]: [PATCH bpf-next v2 11/13] selftests/bpf: Add inline-asm and subprog tests for R0:R2 returns ---
commit 43d5815a2f48399212b5d17d74ef9350c219fc0e
Author: Yonghong Song <yonghong.song@linux.dev>
selftests/bpf: Add inline-asm and subprog tests for R0:R2 returns
Add inline-asm tests, which do not depend on the compiler lowering a
register-pair return and so run regardless of the LLVM version, covering
what the C tests cannot reach.
> diff --git a/tools/testing/selftests/bpf/progs/aggregate_ret_run.c b/tools/testing/selftests/bpf/progs/aggregate_ret_run.c
> new file mode 100644
> index 0000000000000..fac813531b4fe
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/aggregate_ret_run.c
[ ... ]
> +SEC("tc")
> +int aggregate_ret_asm_kfunc_test(struct __sk_buff *skb)
> +{
> + __u64 a = skb->len;
> + __u64 b = skb->len ^ 0xdeadbeefULL;
> + __u64 lo, hi;
> +
> + asm volatile (
> + "r1 = %[a];"
> + "r2 = %[b];"
> + "call %[kfunc];"
> + "%[lo] = r0;"
> + "%[hi] = r2;"
> + : [lo]"=r"(lo), [hi]"=r"(hi)
> + : [a]"r"(a), [b]"r"(b), [kfunc]"i"(bpf_kfunc_call_test_i128)
> + : "r0", "r1", "r2", "r3", "r4", "r5"
> + );
> + if (hi != a + b)
> + return 1;
> + if (lo != a - b)
> + return 2;
[Severity: Medium]
Does this assume little-endian register packing for the __int128 return value?
On big-endian architectures, the high bits typically occupy the first register
(R0) and the low bits occupy R2, which would cause this check to fail when
testing kfunc __int128 returns.
[ ... ]
> +SEC("tc")
> +int aggregate_ret_struct_test(struct __sk_buff *skb)
> +{
> + __u64 a = skb->len;
> + __u64 b = skb->len ^ 0xdeadbeefULL;
> + __u64 lo, hi;
> +
> + /* struct { u64 hi; u64 lo; }: R0 = hi, R2 = lo. */
> + asm volatile (
> + "r1 = %[a];"
> + "r2 = %[b];"
> + "call %[kfunc];"
> + "%[lo] = r0;"
> + "%[hi] = r2;"
> + : [lo]"=r"(lo), [hi]"=r"(hi)
> + : [a]"r"(a), [b]"r"(b), [kfunc]"i"(bpf_kfunc_call_test_ret_pair)
> + : "r0", "r1", "r2", "r3", "r4", "r5"
> + );
> + if (lo != a + b)
> + return 1;
> + if (hi != a - b)
> + return 2;
> +
> + /* struct { u64 a; int b; }: R0 = a, low 32 bits of R2 = b. */
> + asm volatile (
> + "r1 = %[a];"
> + "r2 = %[b];"
> + "call %[kfunc];"
> + "%[lo] = r0;"
> + "%[hi] = r2;"
> + : [lo]"=r"(lo), [hi]"=r"(hi)
> + : [a]"r"(a), [b]"r"(b), [kfunc]"i"(bpf_kfunc_call_test_ret_li)
> + : "r0", "r1", "r2", "r3", "r4", "r5"
> + );
> + if (lo != a)
> + return 3;
> + if ((int)hi != ~(int)b)
> + return 4;
[Severity: Medium]
Will this check fail deterministically on big-endian systems?
The test expects the 32-bit integer b to be in the lower 32 bits of R2. On
big-endian platforms, b would occupy the upper 32 bits of R2, leaving the
lower 32 bits as padding.
> + /* struct { int a; int b; }: 8 bytes, packed into R0; R2 is not used. */
> + asm volatile (
> + "r1 = %[a];"
> + "r2 = %[b];"
> + "call %[kfunc];"
> + "%[lo] = r0;"
> + : [lo]"=r"(lo)
> + : [a]"r"(a), [b]"r"(b), [kfunc]"i"(bpf_kfunc_call_test_ret_ii)
> + : "r0", "r1", "r2", "r3", "r4", "r5"
> + );
> + if ((int)lo != (int)a)
> + return 5;
> + if ((int)(lo >> 32) != (int)b)
> + return 6;
> +
> + return 0;
> +}
[Severity: Medium]
Could the layout of this 8-byte struct in R0 differ depending on endianness?
The hardcoded cast to (int)lo reads the lower 32 bits of R0. On big-endian
architectures, the first member of the struct (a) is located in the upper 32
bits, so reading the lower 32 bits will yield b instead, causing a spurious
test failure.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260804203522.1869244-1-yonghong.song@linux.dev?part=11
next prev parent reply other threads:[~2026-08-04 20:52 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-04 20:35 [PATCH v2 00/13] bpf: Support aggregate return values up to 16 bytes Yonghong Song
2026-08-04 20:35 ` [PATCH bpf-next v2 01/13] bpf: Factor check_global_ret_scalar_reg() out of the global return check Yonghong Song
2026-08-04 20:35 ` [PATCH bpf-next v2 02/13] bpf: Add helpers to describe the R0:R2 return register pair Yonghong Song
2026-08-04 20:35 ` [PATCH bpf-next v2 03/13] bpf: Wire up JIT support for 16-byte kfunc returns Yonghong Song
2026-08-04 20:35 ` [PATCH bpf-next v2 04/13] bpf: Track R2 of register-pair returns in precision backtracking Yonghong Song
2026-08-04 20:35 ` [PATCH bpf-next v2 05/13] bpf: Account R2 of register-pair returns in live register analysis Yonghong Song
2026-08-04 21:14 ` sashiko-bot
2026-08-04 20:35 ` [PATCH bpf-next v2 06/13] bpf: Reject callbacks returning more than 8 bytes Yonghong Song
2026-08-04 21:54 ` bot+bpf-ci
2026-08-04 20:35 ` [PATCH bpf-next v2 07/13] bpf: Add verifier support for 16-byte returns in R0:R2 Yonghong Song
2026-08-04 20:52 ` sashiko-bot
2026-08-04 20:36 ` [PATCH bpf-next v2 08/13] bpf: Reject register-pair returns when the subprog BTF is unreliable Yonghong Song
2026-08-04 20:36 ` [PATCH bpf-next v2 09/13] bpf: Enable aggregate return types up to 16 bytes Yonghong Song
2026-08-04 20:36 ` [PATCH bpf-next v2 10/13] selftests/bpf: Add C tests for 16-byte returns in R0:R2 Yonghong Song
2026-08-04 20:47 ` sashiko-bot
2026-08-04 20:36 ` [PATCH bpf-next v2 11/13] selftests/bpf: Add inline-asm and subprog tests for R0:R2 returns Yonghong Song
2026-08-04 20:52 ` sashiko-bot [this message]
2026-08-04 20:36 ` [PATCH bpf-next v2 12/13] selftests/bpf: Add tests for callbacks returning more than 8 bytes Yonghong Song
2026-08-04 20:36 ` [PATCH bpf-next v2 13/13] Documentation/bpf: Document up to 16-byte kfunc return values in R0:R2 Yonghong Song
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=20260804205243.5F7E71F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=sashiko-reviews@lists.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