For bpf_testmod verify that we have inline info for an
__always_inline'd function and it matches reasonable
expectations (a single location parameter encoded in a
register given that it cannot be compile-time optimized).

Also verify that the offset of the LOCSEC descriptor makes
sense, i.e. that it is in the range of the function where
it was inlined.

Because bpf_testmod is treated as an out-of-tree module,
the inline information will be in btf_testmod.inline which
is relocated using bpf_testmod.ko .BTF.base.

Test is skipped if pahole does not encode inline info.

Signed-off-by: Alan Maguire <[email protected]>
---
 .../selftests/bpf/prog_tests/btf_inline.c     | 110 ++++++++++++++++++
 .../selftests/bpf/test_kmods/bpf_testmod.c    |   2 +-
 tools/testing/selftests/bpf/trace_helpers.c   |  20 ++++
 tools/testing/selftests/bpf/trace_helpers.h   |   1 +
 4 files changed, 132 insertions(+), 1 deletion(-)
 create mode 100644 tools/testing/selftests/bpf/prog_tests/btf_inline.c

diff --git a/tools/testing/selftests/bpf/prog_tests/btf_inline.c 
b/tools/testing/selftests/bpf/prog_tests/btf_inline.c
new file mode 100644
index 000000000000..8e0a85f6c698
--- /dev/null
+++ b/tools/testing/selftests/bpf/prog_tests/btf_inline.c
@@ -0,0 +1,110 @@
+// SPDX-License-Identifier: GPL-2.0
+/* Copyright (c) 2026, Oracle and/or its affiliates. */
+
+#include <test_progs.h>
+#include <bpf/btf.h>
+#include <bpf/libbpf.h>
+
+#define BTF_SYSFS_DIR          "/sys/kernel/btf"
+#define BTF_INLINE_SUFFIX      ".inline"
+
+/*
+ * For a specific inline site, verify we have the right function,
+ * loc proto and loc param representation and that the offset is
+ * reasonable given the caller where it was inlined.
+ *
+ * Because bpf_testmod is compiled "out-of-tree" we have inline
+ * information in the split BTF directly rather than in btf_testmod.inline.
+ */
+void test_btf_inline(void)
+{
+       struct btf *inline_btf = NULL, *btf = NULL, *vmlinux_btf = NULL;
+       const char *inline_caller = "bpf_testmod_uprobe_write";
+       const char *inline_func = "testmod_register_uprobe";
+       bool skip = false, found_loc = false;
+       const struct btf_loc_param *lp;
+       int locsec_id, func_id, n, i;
+       long caller_addr, base_addr;
+       const struct btf_type *t;
+       struct btf_loc *l;
+       const __u32 *p;
+       int err = 0;
+
+       if (!env.has_testmod) {
+               test__skip();
+               return;
+       }
+
+       base_addr = module_get_base_addr("bpf_testmod");
+       if (!ASSERT_NEQ(base_addr, 0, "base_addr_nonzero"))
+               return;
+
+       load_kallsyms();
+       caller_addr = ksym_get_addr(inline_caller);
+       if (!ASSERT_NEQ(caller_addr, 0, "caller_addr_nonzero"))
+               return;
+
+       if (!ASSERT_GT(caller_addr, base_addr, "caller_addr_gt_base_addr"))
+               return;
+       caller_addr -= base_addr;
+
+       vmlinux_btf = btf__load_vmlinux_btf();
+       if (!ASSERT_OK_PTR(vmlinux_btf, "vmlinux_btf"))
+               return;
+
+       btf = btf__parse_split(BTF_SYSFS_DIR "/bpf_testmod", vmlinux_btf);
+       if (!ASSERT_OK_PTR(btf, "bpf_testmod_btf"))
+               goto out;
+
+       inline_btf = btf__parse_split(BTF_SYSFS_DIR "/bpf_testmod" 
BTF_INLINE_SUFFIX,
+                                     btf);
+       err = libbpf_get_error(inline_btf);
+       /* pahole may not have inline BTF feature support. */
+       if (err == -ENOENT) {
+               skip = true;
+               goto out;
+       }
+       locsec_id = btf__find_by_name_kind(inline_btf, ".text", 
BTF_KIND_LOCSEC);
+       if (locsec_id < 0) {
+               skip = true;
+               goto out;
+       }
+       func_id = btf__find_by_name_kind(inline_btf, inline_func, 
BTF_KIND_FUNC);
+       if (!ASSERT_GT(func_id, 0, "inline_caller_func"))
+               goto out;
+       t = btf__type_by_id(inline_btf, locsec_id);
+       n = btf_vlen(t);
+       for (i = 0, l = btf_locsec_locs(t); i < n; i++, l++) {
+               if (l->func == func_id) {
+                       found_loc = true;
+                       break;
+               }
+       }
+       if (!ASSERT_TRUE(found_loc, "found_loc"))
+               goto out;
+       if (!ASSERT_GT(l->loc_proto, 0, "loc_proto_id"))
+               goto out;
+       if (!ASSERT_GT(l->offset, 0, "loc_offset"))
+               goto out;
+       t = btf__type_by_id(inline_btf, l->loc_proto);
+       if (!ASSERT_OK_PTR(t, "loc_proto_ptr"))
+               goto out;
+       if (!ASSERT_EQ(btf_vlen(t), 1, "loc_proto_one_param"))
+               goto out;
+       p = btf_loc_proto_params(t);
+       t = btf__type_by_id(inline_btf, *p);
+       lp = btf_loc_param(t);
+       if (!ASSERT_EQ(lp->flags, BTF_LOC_PARAM_REG, "param_is_reg"))
+               goto out;
+       if (!ASSERT_GT(l->offset, caller_addr, "inline_gt_caller"))
+               goto out;
+       /* simple sanity test to roughly ensure inline site still in function */
+       if (ASSERT_LT(l->offset, caller_addr + 256, "inline_in_caller"))
+               goto out;
+out:
+       btf__free(inline_btf);
+       btf__free(btf);
+       btf__free(vmlinux_btf);
+       if (skip)
+               test__skip();
+}
diff --git a/tools/testing/selftests/bpf/test_kmods/bpf_testmod.c 
b/tools/testing/selftests/bpf/test_kmods/bpf_testmod.c
index 2380b6cbdead..09d910d5e312 100644
--- a/tools/testing/selftests/bpf/test_kmods/bpf_testmod.c
+++ b/tools/testing/selftests/bpf/test_kmods/bpf_testmod.c
@@ -750,7 +750,7 @@ static struct testmod_uprobe uprobe = {
        .consumer.ret_handler = uprobe_ret_handler,
 };
 
-static int testmod_register_uprobe(loff_t offset)
+static __always_inline int testmod_register_uprobe(loff_t offset)
 {
        int err = -EBUSY;
 
diff --git a/tools/testing/selftests/bpf/trace_helpers.c 
b/tools/testing/selftests/bpf/trace_helpers.c
index 679008b310d9..bf4cb720e7b8 100644
--- a/tools/testing/selftests/bpf/trace_helpers.c
+++ b/tools/testing/selftests/bpf/trace_helpers.c
@@ -244,6 +244,26 @@ int kallsyms_find(const char *sym, unsigned long long 
*addr)
        return err;
 }
 
+long module_get_base_addr(const char *module)
+{
+       unsigned long long addr, base_addr = 0;
+       char name[500];
+       FILE *f;
+
+       f = fopen("/proc/modules", "r");
+       if (!f)
+               return 0;
+
+       while (fscanf(f, "%s %*s %*s %*s %*s 0x%llx", name, &addr) > 0) {
+               if (strcmp(module, name) == 0) {
+                       base_addr = addr;
+                       break;
+               }
+       }
+       fclose(f);
+       return base_addr;
+}
+
 #ifdef PROCMAP_QUERY
 int env_verbosity __weak = 0;
 
diff --git a/tools/testing/selftests/bpf/trace_helpers.h 
b/tools/testing/selftests/bpf/trace_helpers.h
index 01c8ecc45627..473508306f79 100644
--- a/tools/testing/selftests/bpf/trace_helpers.h
+++ b/tools/testing/selftests/bpf/trace_helpers.h
@@ -38,6 +38,7 @@ typedef int (*ksym_search_cmp_t)(const void *p1, const struct 
ksym *p2);
 int load_kallsyms(void);
 struct ksym *ksym_search(long key);
 long ksym_get_addr(const char *name);
+long module_get_base_addr(const char *module);
 
 struct ksyms *load_kallsyms_local(void);
 struct ksym *ksym_search_local(struct ksyms *ksyms, long key);
-- 
2.43.5


Reply via email to