Files
linux/tools/testing/selftests/bpf/progs/verifier_ctx_ptr_param.c
Slava Imameev e8571de534 selftests/bpf: Add trampolines single and multi-level pointer params test coverage
Add single and multi-level pointer parameters and return value test
coverage for BPF trampolines. Includes verifier tests for single and
multi-level pointers. The tests check verifier logs for pointers
inferred as scalar() type.

Signed-off-by: Slava Imameev <slava.imameev@crowdstrike.com>
Acked-by: Eduard Zingerman <eddyz87@gmail.com>
Link: https://lore.kernel.org/r/20260314082127.7939-3-slava.imameev@crowdstrike.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2026-03-24 13:36:32 -07:00

69 lines
1.5 KiB
C

// SPDX-License-Identifier: GPL-2.0
/*
* Verifier tests for single- and multi-level pointer parameter handling
* Copyright (c) 2026 CrowdStrike, Inc.
*/
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include "bpf_misc.h"
SEC("fentry/bpf_fentry_test_ppvoid")
__description("fentry/void**: void ** inferred as scalar")
__success __retval(0)
__log_level(2)
__msg("R1=ctx() R2=scalar()")
__naked void fentry_ppvoid_as_scalar(void)
{
asm volatile (" \
r2 = *(u64 *)(r1 + 0); \
r0 = 0; \
exit; \
" ::: __clobber_all);
}
SEC("fentry/bpf_fentry_test_pppvoid")
__description("fentry/void***: void *** inferred as scalar")
__success __retval(0)
__log_level(2)
__msg("R1=ctx() R2=scalar()")
__naked void fentry_pppvoid_as_scalar(void)
{
asm volatile (" \
r2 = *(u64 *)(r1 + 0); \
r0 = 0; \
exit; \
" ::: __clobber_all);
}
SEC("fentry/bpf_fentry_test_ppfile")
__description("fentry/struct file**: struct file ** inferred as scalar")
__success __retval(0)
__log_level(2)
__msg("R1=ctx() R2=scalar()")
__naked void fentry_ppfile_as_scalar(void)
{
asm volatile (" \
r2 = *(u64 *)(r1 + 0); \
r0 = 0; \
exit; \
" ::: __clobber_all);
}
SEC("fexit/bpf_fexit_test_ret_ppfile")
__description("fexit/return struct file**: returned struct file ** inferred as scalar")
__success __retval(0)
__log_level(2)
__msg("R1=ctx() R2=scalar()")
__naked void fexit_ppfile_as_scalar(void)
{
asm volatile (" \
r2 = *(u64 *)(r1 + 0); \
r0 = 0; \
exit; \
" ::: __clobber_all);
}
char _license[] SEC("license") = "GPL";