From: Simon Horman <horms@kernel.org>
To: Yuyang Huang <yuyanghuang@google.com>
Cc: "David S. Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Paolo Abeni" <pabeni@redhat.com>,
"Shuah Khan" <shuah@kernel.org>,
netdev@vger.kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org,
"Maciej Żenczykowski" <maze@google.com>,
"Lorenzo Colitti" <lorenzo@google.com>
Subject: Re: [PATCH net-next] selftest: Add selftest for multicast address notifications
Date: Wed, 28 May 2025 16:49:06 +0100 [thread overview]
Message-ID: <20250528154906.GD1484967@horms.kernel.org> (raw)
In-Reply-To: <20250527091855.340837-1-yuyanghuang@google.com>
On Tue, May 27, 2025 at 06:18:55PM +0900, Yuyang Huang wrote:
> This commit adds a new kernel selftest to verify RTNLGRP_IPV4_MCADDR
> and RTNLGRP_IPV6_MCADDR notifications. The test works by adding and
> removing a dummy interface and then confirming that the system
> correctly receives join and removal notifications for the 224.0.0.1
> and ff02::1 multicast addresses.
>
> The test relies on the iproute2 version to be 6.13+.
>
> Tested by the following command:
> $ vng -v --user root --cpus 16 -- \
> make -C tools/testing/selftests TARGETS=net TEST_PROGS=rtnetlink.sh \
> TEST_GEN_PROGS="" run_tests
>
> Cc: Maciej Żenczykowski <maze@google.com>
> Cc: Lorenzo Colitti <lorenzo@google.com>
> Signed-off-by: Yuyang Huang <yuyanghuang@google.com>
...
> +kci_test_mcast_addr_notification()
> +{
> + local tmpfile
> + local monitor_pid
> + local match_result
> +
> + tmpfile=$(mktemp)
> +
> + ip monitor maddr > $tmpfile &
> + monitor_pid=$!
Hi Yuyang Huang,
Other tests in this file seem to warn if the ip command is too old
to support the test. Perhaps we can achieve that here something like this
(completely untested!):
if [ ! -e "/proc/$monitor_pid" ]; then
end_test "SKIP: mcast addr notification: iproute2 too old"
rm $tmpfile
return $ksft_skip
fi
> + sleep 1
> +
> + run_cmd ip link add name test-dummy1 type dummy
> + run_cmd ip link set test-dummy1 up
> + run_cmd ip link del dev test-dummy1
> + sleep 1
> +
> + match_result=$(grep -cE "test-dummy1.*(224.0.0.1|ff02::1)" $tmpfile)
> +
> + kill $monitor_pid
> + rm $tmpfile
> + # There should be 4 line matches as follows.
> + # 13: test-dummy1 inet6 mcast ff02::1 scope global
> + # 13: test-dummy1 inet mcast 224.0.0.1 scope global
> + # Deleted 13: test-dummy1 inet mcast 224.0.0.1 scope global
> + # Deleted 13: test-dummy1 inet6 mcast ff02::1 scope global
> + if [ $match_result -ne 4 ];then
> + end_test "FAIL: mcast addr notification"
> + return 1
> + fi
> + end_test "PASS: mcast addr notification"
> +}
> +
...
## Form letter - net-next-closed
The merge window for v6.16 has begun and therefore net-next is closed
for new drivers, features, code refactoring and optimizations. We are
currently accepting bug fixes only.
Please repost when net-next reopens after June 8th.
RFC patches sent for review only are obviously welcome at any time.
pw-bot: deffer
next prev parent reply other threads:[~2025-05-28 15:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-27 9:18 [PATCH net-next] selftest: Add selftest for multicast address notifications Yuyang Huang
2025-05-28 15:49 ` Simon Horman [this message]
2025-05-29 1:52 ` Yuyang Huang
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=20250528154906.GD1484967@horms.kernel.org \
--to=horms@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=lorenzo@google.com \
--cc=maze@google.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shuah@kernel.org \
--cc=yuyanghuang@google.com \
/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).