]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
selftests/bpf: Add uprobe session cookie test
authorJiri Olsa <jolsa@kernel.org>
Fri, 8 Nov 2024 13:45:38 +0000 (14:45 +0100)
committerAndrii Nakryiko <andrii@kernel.org>
Mon, 11 Nov 2024 16:18:10 +0000 (08:18 -0800)
Adding uprobe session test that verifies the cookie value
get properly propagated from entry to return program.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241108134544.480660-8-jolsa@kernel.org
tools/testing/selftests/bpf/prog_tests/uprobe_multi_test.c
tools/testing/selftests/bpf/progs/uprobe_multi_session_cookie.c [new file with mode: 0644]

index d9c20ca7a833331c0f56b04d9f5b7f056c369b78..986852ec26f51f55e138deaddb1e88461bf9a6d9 100644 (file)
@@ -9,6 +9,7 @@
 #include "uprobe_multi_consumers.skel.h"
 #include "uprobe_multi_pid_filter.skel.h"
 #include "uprobe_multi_session.skel.h"
+#include "uprobe_multi_session_cookie.skel.h"
 #include "bpf/libbpf_internal.h"
 #include "testing_helpers.h"
 #include "../sdt.h"
@@ -1062,6 +1063,34 @@ cleanup:
        uprobe_multi_session__destroy(skel);
 }
 
+static void test_session_cookie_skel_api(void)
+{
+       struct uprobe_multi_session_cookie *skel = NULL;
+       int err;
+
+       skel = uprobe_multi_session_cookie__open_and_load();
+       if (!ASSERT_OK_PTR(skel, "uprobe_multi_session_cookie__open_and_load"))
+               goto cleanup;
+
+       skel->bss->pid = getpid();
+
+       err = uprobe_multi_session_cookie__attach(skel);
+       if (!ASSERT_OK(err, "uprobe_multi_session_cookie__attach"))
+               goto cleanup;
+
+       /* trigger all probes */
+       uprobe_multi_func_1();
+       uprobe_multi_func_2();
+       uprobe_multi_func_3();
+
+       ASSERT_EQ(skel->bss->test_uprobe_1_result, 1, "test_uprobe_1_result");
+       ASSERT_EQ(skel->bss->test_uprobe_2_result, 2, "test_uprobe_2_result");
+       ASSERT_EQ(skel->bss->test_uprobe_3_result, 3, "test_uprobe_3_result");
+
+cleanup:
+       uprobe_multi_session_cookie__destroy(skel);
+}
+
 static void test_bench_attach_uprobe(void)
 {
        long attach_start_ns = 0, attach_end_ns = 0;
@@ -1160,4 +1189,6 @@ void test_uprobe_multi_test(void)
                test_pid_filter_process(true);
        if (test__start_subtest("session"))
                test_session_skel_api();
+       if (test__start_subtest("session_cookie"))
+               test_session_cookie_skel_api();
 }
diff --git a/tools/testing/selftests/bpf/progs/uprobe_multi_session_cookie.c b/tools/testing/selftests/bpf/progs/uprobe_multi_session_cookie.c
new file mode 100644 (file)
index 0000000..5befdf9
--- /dev/null
@@ -0,0 +1,48 @@
+// SPDX-License-Identifier: GPL-2.0
+#include <linux/bpf.h>
+#include <bpf/bpf_helpers.h>
+#include <bpf/bpf_tracing.h>
+#include <stdbool.h>
+#include "bpf_kfuncs.h"
+
+char _license[] SEC("license") = "GPL";
+
+int pid = 0;
+
+__u64 test_uprobe_1_result = 0;
+__u64 test_uprobe_2_result = 0;
+__u64 test_uprobe_3_result = 0;
+
+static int check_cookie(__u64 val, __u64 *result)
+{
+       __u64 *cookie;
+
+       if (bpf_get_current_pid_tgid() >> 32 != pid)
+               return 1;
+
+       cookie = bpf_session_cookie();
+
+       if (bpf_session_is_return())
+               *result = *cookie == val ? val : 0;
+       else
+               *cookie = val;
+       return 0;
+}
+
+SEC("uprobe.session//proc/self/exe:uprobe_multi_func_1")
+int uprobe_1(struct pt_regs *ctx)
+{
+       return check_cookie(1, &test_uprobe_1_result);
+}
+
+SEC("uprobe.session//proc/self/exe:uprobe_multi_func_2")
+int uprobe_2(struct pt_regs *ctx)
+{
+       return check_cookie(2, &test_uprobe_2_result);
+}
+
+SEC("uprobe.session//proc/self/exe:uprobe_multi_func_3")
+int uprobe_3(struct pt_regs *ctx)
+{
+       return check_cookie(3, &test_uprobe_3_result);
+}