From: Leon Hwang <leon.hwang@linux.dev>
To: bpf@vger.kernel.org
Cc: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
John Fastabend <john.fastabend@gmail.com>,
Andrii Nakryiko <andrii@kernel.org>,
Eduard Zingerman <eddyz87@gmail.com>,
Kumar Kartikeya Dwivedi <memxor@gmail.com>,
Martin KaFai Lau <martin.lau@linux.dev>,
Song Liu <song@kernel.org>,
Yonghong Song <yonghong.song@linux.dev>,
Jiri Olsa <jolsa@kernel.org>,
Emil Tsalapatis <emil@etsalapatis.com>,
Ihor Solodrai <ihor.solodrai@linux.dev>,
Quentin Monnet <qmo@kernel.org>, Shuah Khan <shuah@kernel.org>,
Leon Hwang <leon.hwang@linux.dev>,
Mykyta Yatsenko <yatsenko@meta.com>,
Avinash Duduskar <avinash.duduskar@gmail.com>,
Anton Protopopov <a.s.protopopov@gmail.com>,
Amery Hung <ameryhung@gmail.com>, Jordan Rife <jordan@jrife.io>,
Rong Tao <rongtao@cestc.cn>, Eyal Birger <eyal.birger@gmail.com>,
Pu Lehui <pulehui@huawei.com>,
Jingguo Tan <tanjingguo@huawei.com>, Lin Ma <malin89@huawei.com>,
linux-kernel@vger.kernel.org, linux-trace-kernel@vger.kernel.org,
linux-kselftest@vger.kernel.org
Subject: [PATCH bpf-next 10/13] selftests/bpf: Add tracing_multi bpf prog cookie test
Date: Sun, 9 Aug 2026 23:01:08 +0800 [thread overview]
Message-ID: <20260809150111.45000-11-leon.hwang@linux.dev> (raw)
In-Reply-To: <20260809150111.45000-1-leon.hwang@linux.dev>
Verify that the cookie also works for bpf prog targets of tracing_multi
link.
Assisted-by: Codex:gpt-5.5
Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
---
.../selftests/bpf/prog_tests/tracing_multi.c | 25 ++++++++++++++++++-
.../selftests/bpf/progs/tracing_multi_bpf.c | 13 ++++++++--
2 files changed, 35 insertions(+), 3 deletions(-)
diff --git a/tools/testing/selftests/bpf/prog_tests/tracing_multi.c b/tools/testing/selftests/bpf/prog_tests/tracing_multi.c
index 5cf11707eaf8..070266a864d4 100644
--- a/tools/testing/selftests/bpf/prog_tests/tracing_multi.c
+++ b/tools/testing/selftests/bpf/prog_tests/tracing_multi.c
@@ -304,9 +304,12 @@ static int run_bpf_target(struct bpf_program *prog, __u32 retval, const char *na
return 0;
}
-static void test_link_api_bpf_prog(void)
+static void __test_link_api_bpf_prog(bool test_cookies)
{
const char *funcs[] = { "target_1", "target_2" };
+ __u64 fentry_cookies[] = { 0xfeed01, 0xfeed01 };
+ __u64 fexit_cookies[] = { 0xfeed02, 0xfeed02 };
+ __u64 fsession_cookies[] = { 0xfeed03, 0xfeed03 };
LIBBPF_OPTS(bpf_tracing_multi_opts, opts);
struct tracing_multi_bpf *skel = NULL;
int fds[ARRAY_SIZE(funcs)];
@@ -319,20 +322,28 @@ static void test_link_api_bpf_prog(void)
fds[0] = bpf_program__fd(skel->progs.target_1);
fds[1] = bpf_program__fd(skel->progs.target_2);
+ skel->bss->test_cookies = test_cookies;
+ skel->bss->fentry_cookie = fentry_cookies[0];
+ skel->bss->fexit_cookie = fexit_cookies[0];
+ skel->bss->fsession_cookie = fsession_cookies[0];
+
opts.fds = fds;
opts.funcs = funcs;
opts.cnt = ARRAY_SIZE(fds);
+ opts.cookies = test_cookies ? fentry_cookies : NULL;
link = bpf_program__attach_tracing_multi(skel->progs.test_fentry, NULL, &opts);
if (!ASSERT_OK_PTR(link, "attach_fentry"))
goto cleanup;
skel->links.test_fentry = link;
+ opts.cookies = test_cookies ? fexit_cookies : NULL;
link = bpf_program__attach_tracing_multi(skel->progs.test_fexit, NULL, &opts);
if (!ASSERT_OK_PTR(link, "attach_fexit"))
goto cleanup;
skel->links.test_fexit = link;
+ opts.cookies = test_cookies ? fsession_cookies : NULL;
link = bpf_program__attach_tracing_multi(skel->progs.test_fsession, NULL, &opts);
if (!ASSERT_OK_PTR(link, "attach_fsession"))
goto cleanup;
@@ -356,6 +367,16 @@ static void test_link_api_bpf_prog(void)
tracing_multi_bpf__destroy(skel);
}
+static void test_link_api_bpf_prog(void)
+{
+ __test_link_api_bpf_prog(false);
+}
+
+static void test_cookies_bpf_prog(void)
+{
+ __test_link_api_bpf_prog(true);
+}
+
static void test_module_skel_api(void)
{
struct tracing_multi_module *skel = NULL;
@@ -1196,4 +1217,6 @@ void test_tracing_multi_test(void)
test_link_api_bpf_prog();
if (test__start_subtest("attach_api_bpf_prog_fails"))
test_attach_api_bpf_prog_fails();
+ if (test__start_subtest("cookies_bpf_prog"))
+ test_cookies_bpf_prog();
}
diff --git a/tools/testing/selftests/bpf/progs/tracing_multi_bpf.c b/tools/testing/selftests/bpf/progs/tracing_multi_bpf.c
index 3e02602558ad..651b5d86203f 100644
--- a/tools/testing/selftests/bpf/progs/tracing_multi_bpf.c
+++ b/tools/testing/selftests/bpf/progs/tracing_multi_bpf.c
@@ -5,6 +5,10 @@
char _license[] SEC("license") = "GPL";
+bool test_cookies;
+__u64 fentry_cookie;
+__u64 fexit_cookie;
+__u64 fsession_cookie;
__u64 test_result_fentry;
__u64 test_result_fexit;
__u64 test_result_fsession_entry;
@@ -29,20 +33,25 @@ int target_2(void *ctx)
SEC("fentry.multi")
int BPF_PROG(test_fentry)
{
- test_result_fentry++;
+ if (!test_cookies || bpf_get_attach_cookie(ctx) == fentry_cookie)
+ test_result_fentry++;
return 0;
}
SEC("fexit.multi")
int BPF_PROG(test_fexit)
{
- test_result_fexit++;
+ if (!test_cookies || bpf_get_attach_cookie(ctx) == fexit_cookie)
+ test_result_fexit++;
return 0;
}
SEC("fsession.multi")
int BPF_PROG(test_fsession)
{
+ if (test_cookies && bpf_get_attach_cookie(ctx) != fsession_cookie)
+ return 0;
+
if (bpf_session_is_return(ctx))
test_result_fsession_exit++;
else
--
2.55.0
next prev parent reply other threads:[~2026-08-09 15:03 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-09 15:00 [PATCH bpf-next 00/13] bpf: Add tracing_multi link support for bpf progs Leon Hwang
2026-08-09 15:00 ` [PATCH bpf-next 01/13] bpf: Initialize ftrace_managed in bpf_trampoline_get Leon Hwang
2026-08-09 15:01 ` [PATCH bpf-next 02/13] bpf: Factor out update_fentry_multi helper Leon Hwang
2026-08-09 15:14 ` sashiko-bot
2026-08-09 15:01 ` [PATCH bpf-next 03/13] bpf: Drop unnecessary ftrace_location() in update_fentry_multi() Leon Hwang
2026-08-09 15:01 ` [PATCH bpf-next 04/13] bpf: Add tracing_multi link support for bpf progs Leon Hwang
2026-08-09 15:33 ` sashiko-bot
2026-08-10 13:13 ` Jiri Olsa
2026-08-11 6:12 ` Leon Hwang
2026-08-09 15:01 ` [PATCH bpf-next 05/13] libbpf: " Leon Hwang
2026-08-09 15:21 ` sashiko-bot
2026-08-09 15:01 ` [PATCH bpf-next 06/13] bpf: Add tracing_multi link fdinfo " Leon Hwang
2026-08-09 16:20 ` bot+bpf-ci
2026-08-09 15:01 ` [PATCH bpf-next 07/13] bpf: Add tracing_multi link info " Leon Hwang
2026-08-09 15:17 ` sashiko-bot
2026-08-09 15:01 ` [PATCH bpf-next 08/13] selftests/bpf: Add tracing_multi bpf prog attach test Leon Hwang
2026-08-09 15:01 ` [PATCH bpf-next 09/13] selftests/bpf: Add tracing_multi bpf prog attach failure tests Leon Hwang
2026-08-09 15:17 ` sashiko-bot
2026-08-09 15:01 ` Leon Hwang [this message]
2026-08-09 16:20 ` [PATCH bpf-next 10/13] selftests/bpf: Add tracing_multi bpf prog cookie test bot+bpf-ci
2026-08-09 15:01 ` [PATCH bpf-next 11/13] selftests/bpf: Add tracing_multi bpf prog rollback test Leon Hwang
2026-08-09 15:21 ` sashiko-bot
2026-08-09 15:01 ` [PATCH bpf-next 12/13] selftests/bpf: Add tracing_multi bpf prog link info test Leon Hwang
2026-08-09 15:29 ` sashiko-bot
2026-08-09 15:01 ` [PATCH bpf-next 13/13] selftests/bpf: Test tailcall with fentry.multi Leon Hwang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260809150111.45000-11-leon.hwang@linux.dev \
--to=leon.hwang@linux.dev \
--cc=a.s.protopopov@gmail.com \
--cc=ameryhung@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=avinash.duduskar@gmail.com \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=emil@etsalapatis.com \
--cc=eyal.birger@gmail.com \
--cc=ihor.solodrai@linux.dev \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=jordan@jrife.io \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=malin89@huawei.com \
--cc=martin.lau@linux.dev \
--cc=memxor@gmail.com \
--cc=pulehui@huawei.com \
--cc=qmo@kernel.org \
--cc=rongtao@cestc.cn \
--cc=shuah@kernel.org \
--cc=song@kernel.org \
--cc=tanjingguo@huawei.com \
--cc=yatsenko@meta.com \
--cc=yonghong.song@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.