From: sashiko-bot@kernel.org
To: "Amery Hung" <ameryhung@gmail.com>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v2 15/15] selftests/bpf: Add test for bpf_tcp_ops header option hooks
Date: Wed, 24 Jun 2026 00:14:45 +0000 [thread overview]
Message-ID: <20260624001445.AE70D1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260623175006.3136053-16-ameryhung@gmail.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [Medium] Unchecked ASSERT_EQ failures on blocking sockets can cause the test suite to hang indefinitely.
- [Low] Multi-line comments do not follow the mandatory BPF subsystem style.
--
commit a1c417fa7da14f2f4f18705173e644ec97f1f5c8
Author: Amery Hung <ameryhung@gmail.com>
Subject: Add a test exercising the bpf_tcp_ops parse_hdr, hdr_opt_len and write_hdr_opt members together with the header option helpers.
This commit adds a new BPF selftest that verifies the behavior of TCP header
option struct_ops callbacks and their associated helpers. It uses a
cgroup-attached program to reserve, write, and parse custom TCP header
options during socket communication.
> diff --git a/tools/testing/selftests/bpf/prog_tests/bpf_tcp_ops_hdr.c b/tools/testing/selftests/bpf/prog_tests/bpf_tcp_ops_hdr.c
> new file mode 100644
> index 000000000000..73e34d2be9a4
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/prog_tests/bpf_tcp_ops_hdr.c
[ ... ]
> +static void send_recv(void)
> +{
> + char buf[64] = {};
> + int server_fd, client_fd, accept_fd;
> + ssize_t n;
> +
> + server_fd = start_server(AF_INET6, SOCK_STREAM, "::1", 0, 0);
> + if (!ASSERT_GE(server_fd, 0, "start_server"))
> + return;
> +
> + client_fd = connect_to_fd(server_fd, 0);
> + if (!ASSERT_OK_FD(client_fd, "connect_to_fd"))
> + goto close_server;
> +
> + accept_fd = accept(server_fd, NULL, NULL);
> + if (!ASSERT_OK_FD(accept_fd, "accept"))
> + goto close_client;
> +
> + /* Exchange data both directions so option-bearing data packets
> + * are sent and parsed on each side.
> + */
[Severity: Low]
This isn't a bug, but does this multi-line comment violate the BPF subsystem
coding style? The BPF guidelines specify that the opening /* should be on
its own line.
> + n = send(client_fd, buf, sizeof(buf), 0);
> + ASSERT_EQ(n, sizeof(buf), "client_send");
> + n = recv(accept_fd, buf, sizeof(buf), 0);
[Severity: Medium]
If the send() call fails, ASSERT_EQ will log a failure but execution will
fall through to recv(). Will this cause the test suite to hang indefinitely
waiting on the blocking recv() call?
Should the return value of ASSERT_EQ be checked (e.g., using an if statement)
to prevent the test from hanging on local socket errors?
> + ASSERT_EQ(n, sizeof(buf), "server_recv");
> +
> + n = send(accept_fd, buf, sizeof(buf), 0);
> + ASSERT_EQ(n, sizeof(buf), "server_send");
> + n = recv(client_fd, buf, sizeof(buf), 0);
> + ASSERT_EQ(n, sizeof(buf), "client_recv");
> +
> + close(accept_fd);
[ ... ]
> diff --git a/tools/testing/selftests/bpf/progs/bpf_tcp_ops_hdr.c b/tools/testing/selftests/bpf/progs/bpf_tcp_ops_hdr.c
> new file mode 100644
> index 000000000000..46618a604d96
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/bpf_tcp_ops_hdr.c
[ ... ]
> +SEC("struct_ops")
> +void BPF_PROG(test_hdr_opt_len, struct sock *sk, struct sk_buff *skb,
> + struct request_sock *req, struct sk_buff *syn_skb,
> + enum tcp_synack_type synack_type, unsigned int *remaining)
> +{
> + hdr_opt_len_cnt++;
> +
> + /* Reserve TEST_OPT_LEN bytes; the helper decrements *remaining. Stacks
> + * with other progs in the cgroup hierarchy.
> + */
[Severity: Low]
This isn't a bug, but should the opening /* be placed on its own line here
and in the other multi-line comments in this file to match the BPF
subsystem comment style?
> + bpf_reserve_hdr_opt(ctx, TEST_OPT_LEN, 0);
> +}
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260623175006.3136053-1-ameryhung@gmail.com?part=15
next prev parent reply other threads:[~2026-06-24 0:14 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-23 17:49 [PATCH bpf-next v2 00/15] bpf: A common way to attach struct_ops to a cgroup Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 01/15] bpf: Remove __rcu tagging in st_link->map Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 02/15] bpf: Make struct_ops tasks_rcu grace period optional Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 03/15] bpf: Add bpf_struct_ops accessor helpers Amery Hung
2026-06-23 21:40 ` sashiko-bot
2026-06-23 17:49 ` [PATCH bpf-next v2 04/15] bpf: Remove unnecessary prog_list_prog() check Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 05/15] bpf: Replace prog_list_prog() check with direct pl->prog and pl->link check Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 06/15] bpf: Add prog_list_init_item(), prog_list_replace_item(), and prog_list_id() Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 07/15] bpf: Move LSM trampoline unlink into bpf_cgroup_link_auto_detach() Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 08/15] bpf: Add a few bpf_cgroup_array_* helper functions Amery Hung
2026-06-23 22:25 ` sashiko-bot
2026-06-23 17:49 ` [PATCH bpf-next v2 09/15] bpf: Add infrastructure to support attaching struct_ops to cgroups Amery Hung
2026-06-23 22:53 ` sashiko-bot
2026-06-23 17:49 ` [PATCH bpf-next v2 10/15] bpf: Allow all struct_ops to use bpf_dynptr_from_skb() Amery Hung
2026-06-23 17:49 ` [PATCH bpf-next v2 11/15] bpf: tcp: Support selected sock_ops callbacks as struct_ops Amery Hung
2026-06-23 23:22 ` sashiko-bot
2026-06-23 17:50 ` [PATCH bpf-next v2 12/15] bpf: tcp: Support parse/len/write header option hooks in bpf_tcp_ops Amery Hung
2026-06-23 23:40 ` sashiko-bot
2026-06-23 17:50 ` [PATCH bpf-next v2 13/15] libbpf: Support attaching struct_ops to a cgroup Amery Hung
2026-06-23 23:53 ` sashiko-bot
2026-06-23 17:50 ` [PATCH bpf-next v2 14/15] selftests/bpf: Test " Amery Hung
2026-06-24 0:03 ` sashiko-bot
2026-06-23 17:50 ` [PATCH bpf-next v2 15/15] selftests/bpf: Add test for bpf_tcp_ops header option hooks Amery Hung
2026-06-24 0:14 ` sashiko-bot [this message]
[not found] ` <0e6fb8d7eca4b5494e08a2230056e333bdd814d97c16784b3e1f7687b3640990@mail.kernel.org>
2026-06-23 21:11 ` [PATCH bpf-next v2 00/15] bpf: A common way to attach struct_ops to a cgroup Amery Hung
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=20260624001445.AE70D1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=ameryhung@gmail.com \
--cc=bpf@vger.kernel.org \
--cc=sashiko-reviews@lists.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox