mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 05:52:38 -04:00
Run the packet loss and reordering tests also for both HSR versions. Now they can be removed from the hsr_ping tests completely. The timeout needs to be increased because there are 15 link fault test cases now, with each of them taking 5-6sec for the test and at most 5sec for the HSR node tables to get merged and we also want some room to make the test runs stable. Signed-off-by: Felix Maurer <fmaurer@redhat.com> Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Link: https://patch.msgid.link/eb6f667d3804ce63d86f0ee3fbc0e0ac9e1a209a.1770299429.git.fmaurer@redhat.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
207 lines
5.7 KiB
Bash
Executable File
207 lines
5.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ipv6=true
|
|
|
|
source ./hsr_common.sh
|
|
|
|
optstring="h4"
|
|
usage() {
|
|
echo "Usage: $0 [OPTION]"
|
|
echo -e "\t-4: IPv4 only: disable IPv6 tests (default: test both IPv4 and IPv6)"
|
|
}
|
|
|
|
while getopts "$optstring" option;do
|
|
case "$option" in
|
|
"h")
|
|
usage $0
|
|
exit 0
|
|
;;
|
|
"4")
|
|
ipv6=false
|
|
;;
|
|
"?")
|
|
usage $0
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
do_ping_tests()
|
|
{
|
|
local netid="$1"
|
|
|
|
echo "INFO: Running ping tests."
|
|
|
|
echo "INFO: Initial validation ping."
|
|
# Each node has to be able to reach each one.
|
|
do_ping "$ns1" "100.64.$netid.2"
|
|
do_ping "$ns1" "100.64.$netid.3"
|
|
do_ping "$ns2" "100.64.$netid.1"
|
|
do_ping "$ns2" "100.64.$netid.3"
|
|
do_ping "$ns3" "100.64.$netid.1"
|
|
do_ping "$ns3" "100.64.$netid.2"
|
|
stop_if_error "Initial validation failed on IPv4."
|
|
|
|
do_ping "$ns1" "dead:beef:$netid::2"
|
|
do_ping "$ns1" "dead:beef:$netid::3"
|
|
do_ping "$ns2" "dead:beef:$netid::1"
|
|
do_ping "$ns2" "dead:beef:$netid::2"
|
|
do_ping "$ns3" "dead:beef:$netid::1"
|
|
do_ping "$ns3" "dead:beef:$netid::2"
|
|
stop_if_error "Initial validation failed on IPv6."
|
|
|
|
# Wait until supervisor all supervision frames have been processed and the node
|
|
# entries have been merged. Otherwise duplicate frames will be observed which is
|
|
# valid at this stage.
|
|
echo "INFO: Wait for node table entries to be merged."
|
|
WAIT=5
|
|
while [ ${WAIT} -gt 0 ]
|
|
do
|
|
grep 00:00:00:00:00:00 /sys/kernel/debug/hsr/hsr*/node_table
|
|
if [ $? -ne 0 ]
|
|
then
|
|
break
|
|
fi
|
|
sleep 1
|
|
let "WAIT = WAIT - 1"
|
|
done
|
|
|
|
# Just a safety delay in case the above check didn't handle it.
|
|
sleep 1
|
|
|
|
echo "INFO: Longer ping test."
|
|
do_ping_long "$ns1" "100.64.$netid.2"
|
|
do_ping_long "$ns1" "dead:beef:$netid::2"
|
|
do_ping_long "$ns1" "100.64.$netid.3"
|
|
do_ping_long "$ns1" "dead:beef:$netid::3"
|
|
stop_if_error "Longer ping test failed (ns1)."
|
|
|
|
do_ping_long "$ns2" "100.64.$netid.1"
|
|
do_ping_long "$ns2" "dead:beef:$netid::1"
|
|
do_ping_long "$ns2" "100.64.$netid.3"
|
|
do_ping_long "$ns2" "dead:beef:$netid::3"
|
|
stop_if_error "Longer ping test failed (ns2)."
|
|
|
|
do_ping_long "$ns3" "100.64.$netid.1"
|
|
do_ping_long "$ns3" "dead:beef:$netid::1"
|
|
do_ping_long "$ns3" "100.64.$netid.2"
|
|
do_ping_long "$ns3" "dead:beef:$netid::2"
|
|
stop_if_error "Longer ping test failed (ns3)."
|
|
}
|
|
|
|
setup_hsr_interfaces()
|
|
{
|
|
local HSRv="$1"
|
|
|
|
echo "INFO: Preparing interfaces for HSRv${HSRv}."
|
|
# Three HSR nodes. Each node has one link to each of its neighbour, two links in total.
|
|
#
|
|
# ns1eth1 ----- ns2eth1
|
|
# hsr1 hsr2
|
|
# ns1eth2 ns2eth2
|
|
# | |
|
|
# ns3eth1 ns3eth2
|
|
# \ /
|
|
# hsr3
|
|
#
|
|
# Interfaces
|
|
ip link add ns1eth1 netns "$ns1" type veth peer name ns2eth1 netns "$ns2"
|
|
ip link add ns1eth2 netns "$ns1" type veth peer name ns3eth1 netns "$ns3"
|
|
ip link add ns3eth2 netns "$ns3" type veth peer name ns2eth2 netns "$ns2"
|
|
|
|
# HSRv0/1
|
|
ip -net "$ns1" link add name hsr1 type hsr slave1 ns1eth1 \
|
|
slave2 ns1eth2 supervision 45 version "$HSRv" proto 0
|
|
ip -net "$ns2" link add name hsr2 type hsr slave1 ns2eth1 \
|
|
slave2 ns2eth2 supervision 45 version "$HSRv" proto 0
|
|
ip -net "$ns3" link add name hsr3 type hsr slave1 ns3eth1 \
|
|
slave2 ns3eth2 supervision 45 version "$HSRv" proto 0
|
|
|
|
# IP for HSR
|
|
ip -net "$ns1" addr add 100.64.0.1/24 dev hsr1
|
|
ip -net "$ns1" addr add dead:beef:0::1/64 dev hsr1 nodad
|
|
ip -net "$ns2" addr add 100.64.0.2/24 dev hsr2
|
|
ip -net "$ns2" addr add dead:beef:0::2/64 dev hsr2 nodad
|
|
ip -net "$ns3" addr add 100.64.0.3/24 dev hsr3
|
|
ip -net "$ns3" addr add dead:beef:0::3/64 dev hsr3 nodad
|
|
|
|
ip -net "$ns1" link set address 00:11:22:00:01:01 dev ns1eth1
|
|
ip -net "$ns1" link set address 00:11:22:00:01:02 dev ns1eth2
|
|
|
|
ip -net "$ns2" link set address 00:11:22:00:02:01 dev ns2eth1
|
|
ip -net "$ns2" link set address 00:11:22:00:02:02 dev ns2eth2
|
|
|
|
ip -net "$ns3" link set address 00:11:22:00:03:01 dev ns3eth1
|
|
ip -net "$ns3" link set address 00:11:22:00:03:02 dev ns3eth2
|
|
|
|
# All Links up
|
|
ip -net "$ns1" link set ns1eth1 up
|
|
ip -net "$ns1" link set ns1eth2 up
|
|
ip -net "$ns1" link set hsr1 up
|
|
|
|
ip -net "$ns2" link set ns2eth1 up
|
|
ip -net "$ns2" link set ns2eth2 up
|
|
ip -net "$ns2" link set hsr2 up
|
|
|
|
ip -net "$ns3" link set ns3eth1 up
|
|
ip -net "$ns3" link set ns3eth2 up
|
|
ip -net "$ns3" link set hsr3 up
|
|
}
|
|
|
|
setup_vlan_interfaces() {
|
|
ip -net "$ns1" link add link hsr1 name hsr1.2 type vlan id 2
|
|
ip -net "$ns2" link add link hsr2 name hsr2.2 type vlan id 2
|
|
ip -net "$ns3" link add link hsr3 name hsr3.2 type vlan id 2
|
|
|
|
ip -net "$ns1" addr add 100.64.2.1/24 dev hsr1.2
|
|
ip -net "$ns1" addr add dead:beef:2::1/64 dev hsr1.2 nodad
|
|
|
|
ip -net "$ns2" addr add 100.64.2.2/24 dev hsr2.2
|
|
ip -net "$ns2" addr add dead:beef:2::2/64 dev hsr2.2 nodad
|
|
|
|
ip -net "$ns3" addr add 100.64.2.3/24 dev hsr3.2
|
|
ip -net "$ns3" addr add dead:beef:2::3/64 dev hsr3.2 nodad
|
|
|
|
ip -net "$ns1" link set dev hsr1.2 up
|
|
ip -net "$ns2" link set dev hsr2.2 up
|
|
ip -net "$ns3" link set dev hsr3.2 up
|
|
|
|
}
|
|
|
|
run_ping_tests()
|
|
{
|
|
echo "INFO: Running ping tests."
|
|
do_ping_tests 0
|
|
}
|
|
|
|
run_vlan_tests()
|
|
{
|
|
vlan_challenged_hsr1=$(ip net exec "$ns1" ethtool -k hsr1 | grep "vlan-challenged" | awk '{print $2}')
|
|
vlan_challenged_hsr2=$(ip net exec "$ns2" ethtool -k hsr2 | grep "vlan-challenged" | awk '{print $2}')
|
|
vlan_challenged_hsr3=$(ip net exec "$ns3" ethtool -k hsr3 | grep "vlan-challenged" | awk '{print $2}')
|
|
|
|
if [[ "$vlan_challenged_hsr1" = "off" || "$vlan_challenged_hsr2" = "off" || "$vlan_challenged_hsr3" = "off" ]]; then
|
|
echo "INFO: Running VLAN ping tests"
|
|
setup_vlan_interfaces
|
|
do_ping_tests 2
|
|
else
|
|
echo "INFO: Not Running VLAN tests as the device does not support VLAN"
|
|
fi
|
|
}
|
|
|
|
check_prerequisites
|
|
trap cleanup_all_ns EXIT
|
|
|
|
setup_ns ns1 ns2 ns3
|
|
setup_hsr_interfaces 0
|
|
run_ping_tests
|
|
run_vlan_tests
|
|
|
|
setup_ns ns1 ns2 ns3
|
|
setup_hsr_interfaces 1
|
|
run_ping_tests
|
|
run_vlan_tests
|
|
|
|
exit $ret
|