087cba799c
Also, avoid using CO-RE features, as lskel doesn't support CO-RE, yet.
Include both light and libbpf skeleton in same file to test both of them
together.
In c48e51c8b0
("bpf: selftests: Add selftests for module kfunc support"),
I added support for generating both lskel and libbpf skel for a BPF
object, however the name parameter for bpftool caused collisions when
included in same file together. This meant that every test needed a
separate file for a libbpf/light skeleton separation instead of
subtests.
Change that by appending a "_lskel" suffix to the name for files using
light skeleton, and convert all existing users.
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211028063501.2239335-7-memxor@gmail.com
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright (c) 2021 Facebook */
|
|
#include <test_progs.h>
|
|
#include <network_helpers.h>
|
|
#include "kfunc_call_test.lskel.h"
|
|
#include "kfunc_call_test_subprog.skel.h"
|
|
|
|
static void test_main(void)
|
|
{
|
|
struct kfunc_call_test_lskel *skel;
|
|
int prog_fd, retval, err;
|
|
|
|
skel = kfunc_call_test_lskel__open_and_load();
|
|
if (!ASSERT_OK_PTR(skel, "skel"))
|
|
return;
|
|
|
|
prog_fd = skel->progs.kfunc_call_test1.prog_fd;
|
|
err = bpf_prog_test_run(prog_fd, 1, &pkt_v4, sizeof(pkt_v4),
|
|
NULL, NULL, (__u32 *)&retval, NULL);
|
|
ASSERT_OK(err, "bpf_prog_test_run(test1)");
|
|
ASSERT_EQ(retval, 12, "test1-retval");
|
|
|
|
prog_fd = skel->progs.kfunc_call_test2.prog_fd;
|
|
err = bpf_prog_test_run(prog_fd, 1, &pkt_v4, sizeof(pkt_v4),
|
|
NULL, NULL, (__u32 *)&retval, NULL);
|
|
ASSERT_OK(err, "bpf_prog_test_run(test2)");
|
|
ASSERT_EQ(retval, 3, "test2-retval");
|
|
|
|
kfunc_call_test_lskel__destroy(skel);
|
|
}
|
|
|
|
static void test_subprog(void)
|
|
{
|
|
struct kfunc_call_test_subprog *skel;
|
|
int prog_fd, retval, err;
|
|
|
|
skel = kfunc_call_test_subprog__open_and_load();
|
|
if (!ASSERT_OK_PTR(skel, "skel"))
|
|
return;
|
|
|
|
prog_fd = bpf_program__fd(skel->progs.kfunc_call_test1);
|
|
err = bpf_prog_test_run(prog_fd, 1, &pkt_v4, sizeof(pkt_v4),
|
|
NULL, NULL, (__u32 *)&retval, NULL);
|
|
ASSERT_OK(err, "bpf_prog_test_run(test1)");
|
|
ASSERT_EQ(retval, 10, "test1-retval");
|
|
ASSERT_NEQ(skel->data->active_res, -1, "active_res");
|
|
ASSERT_EQ(skel->data->sk_state_res, BPF_TCP_CLOSE, "sk_state_res");
|
|
|
|
kfunc_call_test_subprog__destroy(skel);
|
|
}
|
|
|
|
void test_kfunc_call(void)
|
|
{
|
|
if (test__start_subtest("main"))
|
|
test_main();
|
|
|
|
if (test__start_subtest("subprog"))
|
|
test_subprog();
|
|
}
|