Skip to content

Commit ba1a20e

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 d63e121 commit ba1a20e

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

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

239+
static void test_bench_attach_usdt(void)
240+
{
241+
long attach_start_ns = 0, attach_end_ns = 0;
242+
struct uprobe_multi_usdt *skel = NULL;
243+
long detach_start_ns, detach_end_ns;
244+
double attach_delta, detach_delta;
245+
246+
skel = uprobe_multi_usdt__open_and_load();
247+
if (!ASSERT_OK_PTR(skel, "uprobe_multi__open"))
248+
goto cleanup;
249+
250+
attach_start_ns = get_time_ns();
251+
252+
skel->links.usdt0 = bpf_program__attach_usdt(skel->progs.usdt0, -1, "./uprobe_multi",
253+
"test", "usdt", NULL);
254+
if (!ASSERT_OK_PTR(skel->links.usdt0, "bpf_program__attach_usdt"))
255+
goto cleanup;
256+
257+
attach_end_ns = get_time_ns();
258+
259+
system("./uprobe_multi usdt");
260+
261+
ASSERT_EQ(skel->bss->count, 50000, "usdt_count");
262+
263+
cleanup:
264+
detach_start_ns = get_time_ns();
265+
uprobe_multi_usdt__destroy(skel);
266+
detach_end_ns = get_time_ns();
267+
268+
attach_delta = (attach_end_ns - attach_start_ns) / 1000000000.0;
269+
detach_delta = (detach_end_ns - detach_start_ns) / 1000000000.0;
270+
271+
printf("%s: attached in %7.3lfs\n", __func__, attach_delta);
272+
printf("%s: detached in %7.3lfs\n", __func__, detach_delta);
273+
}
274+
238275
void test_uprobe_multi_test(void)
239276
{
240277
if (test__start_subtest("skel_api"))
@@ -247,4 +284,6 @@ void test_uprobe_multi_test(void)
247284
test_link_api();
248285
if (test__start_subtest("bench_uprobe"))
249286
test_bench_attach_uprobe();
287+
if (test__start_subtest("bench_usdt"))
288+
test_bench_attach_usdt();
250289
}
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)