forked from kernel-patches/bpf
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests/bpf: test case for register_bpf_struct_ops().
Create a new struct_ops type called bpf_testmod_ops within the bpf_testmod module. When a struct_ops object is registered, the bpf_testmod module will invoke test_2 from the module. Signed-off-by: Kui-Feng Lee <[email protected]>
- Loading branch information
1 parent
cb371cb
commit e2cf1a5
Showing
5 changed files
with
167 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
tools/testing/selftests/bpf/prog_tests/test_struct_ops_module.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */ | ||
#include <test_progs.h> | ||
#include <time.h> | ||
|
||
#include "rcu_tasks_trace_gp.skel.h" | ||
#include "struct_ops_module.skel.h" | ||
|
||
static void test_regular_load(void) | ||
{ | ||
struct struct_ops_module *skel; | ||
struct bpf_link *link; | ||
DECLARE_LIBBPF_OPTS(bpf_object_open_opts, opts); | ||
int err; | ||
|
||
skel = struct_ops_module__open_opts(&opts); | ||
if (!ASSERT_OK_PTR(skel, "struct_ops_module_open")) | ||
return; | ||
err = struct_ops_module__load(skel); | ||
if (!ASSERT_OK(err, "struct_ops_module_load")) | ||
return; | ||
|
||
link = bpf_map__attach_struct_ops(skel->maps.testmod_1); | ||
ASSERT_OK_PTR(link, "attach_test_mod_1"); | ||
|
||
ASSERT_EQ(skel->bss->test_2_result, 7, "test_2_result"); | ||
|
||
bpf_link__destroy(link); | ||
|
||
struct_ops_module__destroy(skel); | ||
} | ||
|
||
void serial_test_struct_ops_module(void) | ||
{ | ||
if (test__start_subtest("regular_load")) | ||
test_regular_load(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */ | ||
#include <vmlinux.h> | ||
#include <bpf/bpf_helpers.h> | ||
#include <bpf/bpf_tracing.h> | ||
#include "../bpf_testmod/bpf_testmod.h" | ||
|
||
char _license[] SEC("license") = "GPL"; | ||
|
||
int test_2_result = 0; | ||
|
||
SEC("struct_ops/test_1") | ||
int BPF_PROG(test_1) | ||
{ | ||
return 0xdeadbeef; | ||
} | ||
|
||
SEC("struct_ops/test_2") | ||
int BPF_PROG(test_2, int a, int b) | ||
{ | ||
test_2_result = a + b; | ||
return a + b; | ||
} | ||
|
||
SEC(".struct_ops.link") | ||
struct bpf_testmod_ops testmod_1 = { | ||
.test_1 = (void *)test_1, | ||
.test_2 = (void *)test_2, | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters