Re: [PATCH bpf-next v2] selftests/bpf: Test btf__load_vmlinux_btf/btf__load_module_btf APIs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Aug 2, 2021 at 9:06 AM Hengqi Chen <hengqi.chen@xxxxxxxxx> wrote:
>
> Add test for btf__load_vmlinux_btf/btf__load_module_btf APIs. It first
> checks that if btrfs module BTF exists, if yes, load module BTF and
> check symbol existence.
>
> Signed-off-by: Hengqi Chen <hengqi.chen@xxxxxxxxx>
> ---
>  .../selftests/bpf/prog_tests/btf_module.c     | 32 +++++++++++++++++++
>  1 file changed, 32 insertions(+)
>  create mode 100644 tools/testing/selftests/bpf/prog_tests/btf_module.c
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/btf_module.c b/tools/testing/selftests/bpf/prog_tests/btf_module.c
> new file mode 100644
> index 000000000000..9314a46e001c
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/prog_tests/btf_module.c
> @@ -0,0 +1,32 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/* Copyright (c) 2021 Hengqi Chen */
> +
> +#include <test_progs.h>
> +#include <bpf/btf.h>
> +
> +static const char *module_path = "/sys/kernel/btf/btrfs";
> +static const char *module_name = "btrfs";
> +
> +void test_btf_module()
> +{
> +       struct btf *vmlinux_btf, *module_btf;
> +       __s32 type_id;
> +
> +       if (access(module_path, F_OK))
> +               return;

we shouldn't use btrfs module, as it might not be mounted in our CI
environment. Good news is that selftests uses its own custom module to
do various module-related logic. It's already preloaded for all tests,
so you can just assume its existence (unless pre-loading fails, then
error out). See how "bpf_testmod" is used in selftests.

> +
> +       vmlinux_btf = btf__load_vmlinux_btf();
> +       if (!ASSERT_OK_PTR(vmlinux_btf, "could not load vmlinux BTF"))
> +               return;
> +
> +       module_btf = btf__load_module_btf(module_name, vmlinux_btf);
> +       if (!ASSERT_OK_PTR(module_btf, "could not load module BTF"))
> +               goto cleanup;
> +
> +       type_id = btf__find_by_name(module_btf, "btrfs_file_open");
> +       ASSERT_GT(type_id, 0, "func btrfs_file_open not found");
> +
> +cleanup:
> +       btf__free(module_btf);
> +       btf__free(vmlinux_btf);
> +}
> --
> 2.25.1



[Index of Archives]     [Linux Samsung SoC]     [Linux Rockchip SoC]     [Linux Actions SoC]     [Linux for Synopsys ARC Processors]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]


  Powered by Linux