Skip to content

Commit fe85fc7

Browse files
olsajiriKernel Patches Daemon
authored and
Kernel Patches Daemon
committed
selftests/bpf: Add uprobe_multi usdt bench test
Adding test that attaches 50k usdt probes in usdt_multi binary. After the attach is done we run the binary and make sure we get proper amount of hits. With current uprobes: # perf stat --null ./test_progs -n 254/6 #254/6 uprobe_multi_test/bench_usdt:OK #254 uprobe_multi_test:OK Summary: 1/1 PASSED, 0 SKIPPED, 0 FAILED Performance counter stats for './test_progs -n 254/6': 1353.659680562 seconds time elapsed With uprobe_multi link: # perf stat --null ./test_progs -n 254/6 #254/6 uprobe_multi_test/bench_usdt:OK #254 uprobe_multi_test:OK Summary: 1/1 PASSED, 0 SKIPPED, 0 FAILED Performance counter stats for './test_progs -n 254/6': 0.322046364 seconds time elapsed Signed-off-by: Jiri Olsa <[email protected]>
1 parent 0ac6b40 commit fe85fc7

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

tools/testing/selftests/bpf/prog_tests/uprobe_multi_test.c

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <test_progs.h>
55
#include "uprobe_multi.skel.h"
66
#include "uprobe_multi_bench.skel.h"
7+
#include "uprobe_multi_usdt.skel.h"
78
#include "bpf/libbpf_internal.h"
89
#include "testing_helpers.h"
910

@@ -234,6 +235,42 @@ static void test_bench_attach_uprobe(void)
234235
printf("%s: detached in %7.3lfs\n", __func__, detach_delta);
235236
}
236237

238+
static void test_bench_attach_usdt(void)
239+
{
240+
struct uprobe_multi_usdt *skel = NULL;
241+
long attach_start_ns, attach_end_ns;
242+
long detach_start_ns, detach_end_ns;
243+
double attach_delta, detach_delta;
244+
245+
skel = uprobe_multi_usdt__open_and_load();
246+
if (!ASSERT_OK_PTR(skel, "uprobe_multi__open"))
247+
goto cleanup;
248+
249+
attach_start_ns = get_time_ns();
250+
251+
skel->links.usdt0 = bpf_program__attach_usdt(skel->progs.usdt0, -1, "./uprobe_multi",
252+
"test", "usdt", NULL);
253+
if (!ASSERT_OK_PTR(skel->links.usdt0, "bpf_program__attach_usdt"))
254+
goto cleanup;
255+
256+
attach_end_ns = get_time_ns();
257+
258+
system("./uprobe_multi usdt");
259+
260+
ASSERT_EQ(skel->bss->count, 50000, "usdt_count");
261+
262+
cleanup:
263+
detach_start_ns = get_time_ns();
264+
uprobe_multi_usdt__destroy(skel);
265+
detach_end_ns = get_time_ns();
266+
267+
attach_delta = (attach_end_ns - attach_start_ns) / 1000000000.0;
268+
detach_delta = (detach_end_ns - detach_start_ns) / 1000000000.0;
269+
270+
printf("%s: attached in %7.3lfs\n", __func__, attach_delta);
271+
printf("%s: detached in %7.3lfs\n", __func__, detach_delta);
272+
}
273+
237274
void test_uprobe_multi_test(void)
238275
{
239276
if (test__start_subtest("skel_api"))
@@ -246,4 +283,6 @@ void test_uprobe_multi_test(void)
246283
test_link_api();
247284
if (test__start_subtest("bench_uprobe"))
248285
test_bench_attach_uprobe();
286+
if (test__start_subtest("bench_usdt"))
287+
test_bench_attach_usdt();
249288
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
3+
#include "vmlinux.h"
4+
#include <bpf/bpf_helpers.h>
5+
#include <bpf/usdt.bpf.h>
6+
7+
char _license[] SEC("license") = "GPL";
8+
9+
int count;
10+
11+
SEC("usdt")
12+
int usdt0(struct pt_regs *ctx)
13+
{
14+
count++;
15+
return 0;
16+
}

0 commit comments

Comments
 (0)