From: Bastien Curutchet <bastien.curutchet@bootlin.com>
To: Martin KaFai Lau <martin.lau@linux.dev>
Cc: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Jesper Dangaard Brouer <hawk@kernel.org>,
John Fastabend <john.fastabend@gmail.com>,
Andrii Nakryiko <andrii@kernel.org>,
Eduard Zingerman <eddyz87@gmail.com>, Song Liu <song@kernel.org>,
Yonghong Song <yonghong.song@linux.dev>,
KP Singh <kpsingh@kernel.org>,
Stanislav Fomichev <sdf@fomichev.me>, Hao Luo <haoluo@google.com>,
Jiri Olsa <jolsa@kernel.org>, Mykola Lysenko <mykolal@fb.com>,
Shuah Khan <shuah@kernel.org>,
Alexis Lothore <alexis.lothore@bootlin.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
netdev@vger.kernel.org, bpf@vger.kernel.org,
linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH bpf-next v4 12/14] selftests/bpf: test_xdp_veth: Add XDP broadcast redirection tests
Date: Mon, 3 Feb 2025 13:59:08 +0100 [thread overview]
Message-ID: <1b2965bc-87d6-4b44-bf7d-e491a08d89cd@bootlin.com> (raw)
In-Reply-To: <bba86a91-e945-4ab2-825e-b915216ba3c7@linux.dev>
Hi Martin,
On 2/1/25 2:33 AM, Martin KaFai Lau wrote:
> On 1/30/25 11:21 PM, Bastien Curutchet (eBPF Foundation) wrote:
>> +#define BROADCAST_REDIRECT_SKEL_NB 2
>> +static void xdp_veth_broadcast_redirect(u32 attach_flags, u64
[...]
>> +
>> + group_map = bpf_map__fd(xdp_redirect_multi_kern->maps.map_all);
>> + if (!ASSERT_OK_FD(group_map, "open map_all"))
>> + goto destroy_xdp_redirect_map;
>> +
>> + flags_map = bpf_map__fd(xdp_redirect_multi_kern-
>> >maps.redirect_flags);
>> + if (!ASSERT_OK_FD(group_map, "open map_all"))
>> + goto destroy_xdp_redirect_map;
>> +
>> + err = bpf_map_update_elem(flags_map, &protocol, &redirect_flags,
>> BPF_NOEXIST);
>> + if (!ASSERT_OK(err, "init IP count"))
>> + goto destroy_xdp_redirect_map;
>> +
>> + cnt_map = bpf_map__fd(xdp_redirect_map->maps.rxcnt);
>> + if (!ASSERT_OK_FD(cnt_map, "open rxcnt map"))
>> + goto destroy_xdp_redirect_map;
>> +
>> + bpf_objs[0] = xdp_redirect_multi_kern->obj;
>> + bpf_objs[1] = xdp_redirect_map->obj;
>> + for (i = 0; i < VETH_PAIRS_COUNT; i++) {
>> + int ifindex = if_nametoindex(net_config[i].local_veth);
>> +
>> + if (attach_programs_to_veth_pair(bpf_objs,
>> BROADCAST_REDIRECT_SKEL_NB,
>> + net_config, prog_cfg, i))
>> + goto destroy_xdp_redirect_map;
>> +
>> + SYS(destroy_xdp_redirect_map,
>> + "ip -n %s neigh add %s lladdr 00:00:00:00:00:01 dev %s",
>> + net_config[i].namespace, IP_NEIGH,
>> net_config[i].remote_veth);
>> +
>> + devmap_val.ifindex = ifindex;
>> + err = bpf_map_update_elem(group_map, &ifindex, &devmap_val, 0);
>
> I ran this test in a loop and failed at this line permanently (errno
> E2BIG -7) after enough iterations. I believe the problem is the
> group_map (aka "map_all" in the BPF program) has a max_entries 1024 and
> ifindex can go beyond 1024 after some "./test_progs" iterations.
> Understood that it is likely an existing assumption in the "map_all"
> definition but it needs to be addressed first before moving to test_progs.
>
>> + if (!ASSERT_OK(err, "bpf_map_update_elem"))
>> + goto destroy_xdp_redirect_map;
>> +
>> + }
>> +
[...]
>> diff --git a/tools/testing/selftests/bpf/progs/xdp_redirect_map.c b/
>> tools/testing/selftests/bpf/progs/xdp_redirect_map.c
>> index
>> 682dda8dabbc9abbb5d1b0b22dd5f81124142e79..14385df71d7fc40c3b0ee5c6ea0760d0e7336d71 100644
>> --- a/tools/testing/selftests/bpf/progs/xdp_redirect_map.c
>> +++ b/tools/testing/selftests/bpf/progs/xdp_redirect_map.c
>> @@ -1,7 +1,11 @@
>> // SPDX-License-Identifier: GPL-2.0
>> +#include <linux/if_ether.h>
>> +#include <linux/ip.h>
>
> I have compiler error complaining about __always_inline not defined.
> Likely ordering issue and environment specific. Regardless, I believe
> the ip.h is unnecessary, so better clean it up.
>
> I am going to land the patch 1-10 and change the cover letter a little
> to reflect the fact that patch 11-14 will be a followup. Please post the
> remaining patches after fixing the bpf_map_update_elem issue. Thanks.
>
Ok thank you, I plan to solve this issue by using a dedicated namespace
instead of the root namespace so the index won't be incremented every
time `test_progs` is launched.
I'll send the new iteration once tested on my side.
Best regards,
Bastien
next prev parent reply other threads:[~2025-02-03 13:30 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-31 7:21 [PATCH bpf-next v4 00/14] selftests/bpf: Migrate test_xdp_redirect_multi.sh to test_progs Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 01/14] selftests/bpf: helpers: Add append_tid() Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 02/14] selftests/bpf: test_xdp_veth: Remove unused defines Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 03/14] selftests/bpf: test_xdp_veth: Remove unecessarry check_ping() Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 04/14] selftests/bpf: test_xdp_veth: Use int to describe next veth Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 05/14] selftests/bpf: test_xdp_veth: Split network configuration Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 06/14] selftests/bpf: test_xdp_veth: Rename config[] Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 07/14] selftests/bpf: test_xdp_veth: Add prog_config[] table Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 08/14] selftests/bpf: test_xdp_veth: Add XDP flags to prog_configuration Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 09/14] selftests/bpf: test_xdp_veth: Use unique names Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 10/14] selftests/bpf: test_xdp_veth: Add new test cases for XDP flags Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 11/14] selftests/bpf: Optionally select broadcasting flags Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 12/14] selftests/bpf: test_xdp_veth: Add XDP broadcast redirection tests Bastien Curutchet (eBPF Foundation)
2025-02-01 1:33 ` Martin KaFai Lau
2025-02-03 12:59 ` Bastien Curutchet [this message]
2025-01-31 7:21 ` [PATCH bpf-next v4 13/14] selftests/bpf: test_xdp_veth: Add XDP program on egress test Bastien Curutchet (eBPF Foundation)
2025-01-31 7:21 ` [PATCH bpf-next v4 14/14] selftests/bpf: Remove test_xdp_redirect_multi.sh Bastien Curutchet (eBPF Foundation)
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=1b2965bc-87d6-4b44-bf7d-e491a08d89cd@bootlin.com \
--to=bastien.curutchet@bootlin.com \
--cc=alexis.lothore@bootlin.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=eddyz87@gmail.com \
--cc=haoluo@google.com \
--cc=hawk@kernel.org \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kpsingh@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=martin.lau@linux.dev \
--cc=mykolal@fb.com \
--cc=netdev@vger.kernel.org \
--cc=sdf@fomichev.me \
--cc=shuah@kernel.org \
--cc=song@kernel.org \
--cc=thomas.petazzoni@bootlin.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).