From: Fernando Fernandez Mancera <fmancera@suse.de>
To: Ido Schimmel <idosch@nvidia.com>
Cc: netdev@vger.kernel.org, linux-kselftest@vger.kernel.org,
horms@kernel.org, pabeni@redhat.com, kuba@kernel.org,
edumazet@google.com, davem@davemloft.net, dsahern@kernel.org
Subject: Re: [PATCH 2/2 net] selftests: fib_tests: add temporary IPv6 address renewal test
Date: Mon, 4 May 2026 21:45:19 +0200 [thread overview]
Message-ID: <87ebe3d5-7dd1-4ee9-a870-1f4d1eb6574a@suse.de> (raw)
In-Reply-To: <20260504164149.GB385401@shredder>
On 5/4/26 6:41 PM, Ido Schimmel wrote:
> On Mon, May 04, 2026 at 12:11:41AM +0200, Fernando Fernandez Mancera wrote:
>> Add a test to check that temporary IPv6 address is regenerated properly
>> after the base prefix is deprecated and restored.
>>
>> Fib6 temporary address renewal test
>> TEST: IPv6 temporary address cleanly deprecated and regenerated [ OK ]
>
> Thanks for the test, but I reverted the fix and it still passes :(
>
Ugh sorry for that. I lowered the sleep time so it takes less time to
run and I messed up the test. It seems 2 seconds isn't enough and to
reliable reproduce it, 3 seconds are required.
I am reposting with the test fixed, sorry again for the noise.
>>
>> Signed-off-by: Fernando Fernandez Mancera <fmancera@suse.de>
>> ---
>> tools/testing/selftests/net/fib_tests.sh | 55 +++++++++++++++++++++++-
>> 1 file changed, 54 insertions(+), 1 deletion(-)
>>
>> diff --git a/tools/testing/selftests/net/fib_tests.sh b/tools/testing/selftests/net/fib_tests.sh
>> index af64f93bb2e1..6a6e545cb40d 100755
>> --- a/tools/testing/selftests/net/fib_tests.sh
>> +++ b/tools/testing/selftests/net/fib_tests.sh
>> @@ -12,7 +12,7 @@ TESTS="unregister down carrier nexthop suppress ipv6_notify ipv4_notify \
>> ipv4_route_metrics ipv4_route_v6_gw rp_filter ipv4_del_addr \
>> ipv6_del_addr ipv4_mangle ipv6_mangle ipv4_bcast_neigh fib6_gc_test \
>> ipv4_mpath_list ipv6_mpath_list ipv4_mpath_balance ipv6_mpath_balance \
>> - ipv4_mpath_balance_preferred fib6_ra_to_static"
>> + ipv4_mpath_balance_preferred fib6_ra_to_static fib6_temp_addr_renewal"
>>
>> VERBOSE=0
>> PAUSE_ON_FAIL=no
>> @@ -1611,6 +1611,58 @@ fib6_ra_to_static()
>> cleanup &> /dev/null
>> }
>>
>> +fib6_temp_addr_renewal() {
>> + setup
>> +
>> + echo
>> + echo "Fib6 temporary address renewal test"
>> + set -e
>> +
>> + # ra6 is required for the test. (ipv6toolkit)
>> + if [ ! -x "$(command -v ra6)" ]; then
>> + echo "SKIP: ra6 not found."
>> + set +e
>> + cleanup &> /dev/null
>> + return
>> + fi
>> +
>> + # Create a pair of veth devices to send a RA message from one
>> + # device to another.
>> + $IP link add veth1 type veth peer name veth2
>> + $IP link set dev veth1 up
>> + $IP link set dev veth2 up
>> +
>> + # Make veth1 ready to receive RA messages.
>> + $NS_EXEC sysctl -wq net.ipv6.conf.veth1.accept_ra=2
>> + $NS_EXEC sysctl -wq net.ipv6.conf.veth1.use_tempaddr=2
>> + $NS_EXEC sysctl -wq net.ipv6.conf.veth1.temp_prefered_lft=15
>> + $NS_EXEC sysctl -wq net.ipv6.conf.veth1.max_desync_factor=0
>> +
>> + # Send a RA message with a prefix from veth2.
>> + $NS_EXEC ra6 -i veth2 -s fe80::1 -d ff02::1 -P 2001:12::/64\#LA\#3600\#3600 -e
>> + sleep 2
>> +
>> + # Deprecate it
>> + $NS_EXEC ra6 -i veth2 -s fe80::1 -d ff02::1 -P 2001:12::/64\#LA\#3600\#0 -e
>> + sleep 2
>> +
>> + # Restore it
>> + $NS_EXEC ra6 -i veth2 -s fe80::1 -d ff02::1 -P 2001:12::/64\#LA\#3600\#3600 -e
>> +
>> + ret=1
>> + for i in $(seq 1 25); do
>> + sleep 1
>> + num_dep="$($IP -6 addr | grep -c "temporary deprecated" || true)"
>> + num_tot="$($IP -6 addr | grep -c "temporary" || true)"
>> +
>> + if [ "$num_dep" -eq 1 ] && [ "$num_tot" -ge 2 ]; then
>> + ret=0
>> + break
>> + fi
>> + done
>> + log_test "$ret" 0 "IPv6 temporary address cleanly deprecated and regenerated"
>
> Missing:
>
> set +e
>
> cleanup &> /dev/null
>
> Like in fib6_ra_to_static() and the skip path?
Oops, thanks!
>
>> +}
>> +
>> # add route for a prefix, flushing any existing routes first
>> # expected to be the first step of a test
>> add_route()
>> @@ -3002,6 +3054,7 @@ do
>> ipv6_mpath_balance) ipv6_mpath_balance_test;;
>> ipv4_mpath_balance_preferred) ipv4_mpath_balance_preferred_test;;
>> fib6_ra_to_static) fib6_ra_to_static;;
>> + fib6_temp_addr_renewal) fib6_temp_addr_renewal;;
>>
>> help) echo "Test names: $TESTS"; exit 0;;
>> esac
>> --
>> 2.53.0
>>
>
next prev parent reply other threads:[~2026-05-04 19:45 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-03 22:11 [PATCH 1/2 net] ipv6: addrconf: fix temp address generation after prefix deprecation Fernando Fernandez Mancera
2026-05-03 22:11 ` [PATCH 2/2 net] selftests: fib_tests: add temporary IPv6 address renewal test Fernando Fernandez Mancera
2026-05-04 16:41 ` Ido Schimmel
2026-05-04 19:45 ` Fernando Fernandez Mancera [this message]
2026-05-04 16:35 ` [PATCH 1/2 net] ipv6: addrconf: fix temp address generation after prefix deprecation Ido Schimmel
2026-05-04 19:51 ` Fernando Fernandez Mancera
2026-05-04 22:58 ` Fernando Fernandez Mancera
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=87ebe3d5-7dd1-4ee9-a870-1f4d1eb6574a@suse.de \
--to=fmancera@suse.de \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=idosch@nvidia.com \
--cc=kuba@kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.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