Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / net / forwarding / mirror_gre_vlan.sh
blob88cecdb9a861a7f4a718a774e45e17508045a9a6
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0
4 # This test uses standard topology for testing gretap. See
5 # mirror_gre_topo_lib.sh for more details.
7 # Test for "tc action mirred egress mirror" that mirrors to a gretap netdevice
8 # whose underlay route points at a vlan device.
10 ALL_TESTS="
11 test_gretap
14 NUM_NETIFS=6
15 source lib.sh
16 source mirror_lib.sh
17 source mirror_gre_lib.sh
18 source mirror_gre_topo_lib.sh
20 setup_prepare()
22 h1=${NETIFS[p1]}
23 swp1=${NETIFS[p2]}
25 swp2=${NETIFS[p3]}
26 h2=${NETIFS[p4]}
28 swp3=${NETIFS[p5]}
29 h3=${NETIFS[p6]}
31 vrf_prepare
32 mirror_gre_topo_create
34 ip link add name $swp3.555 link $swp3 type vlan id 555
35 ip address add dev $swp3.555 192.0.2.129/32
36 ip address add dev $swp3.555 2001:db8:2::1/128
37 ip link set dev $swp3.555 up
39 ip route add 192.0.2.130/32 dev $swp3.555
40 ip -6 route add 2001:db8:2::2/128 dev $swp3.555
42 ip link add name $h3.555 link $h3 type vlan id 555
43 ip link set dev $h3.555 master v$h3
44 ip address add dev $h3.555 192.0.2.130/28
45 ip address add dev $h3.555 2001:db8:2::2/64
46 ip link set dev $h3.555 up
49 cleanup()
51 pre_cleanup
53 ip link del dev $h3.555
54 ip link del dev $swp3.555
56 mirror_gre_topo_destroy
57 vrf_cleanup
60 test_gretap()
62 full_test_span_gre_dir gt4 ingress 8 0 "mirror to gretap"
63 full_test_span_gre_dir gt4 egress 0 8 "mirror to gretap"
66 test_all()
68 slow_path_trap_install $swp1 ingress
69 slow_path_trap_install $swp1 egress
71 tests_run
73 slow_path_trap_uninstall $swp1 egress
74 slow_path_trap_uninstall $swp1 ingress
77 trap cleanup EXIT
79 setup_prepare
80 setup_wait
82 tcflags="skip_hw"
83 test_all
85 if ! tc_offload_check; then
86 echo "WARN: Could not test offloaded functionality"
87 else
88 tcflags="skip_sw"
89 test_all
92 exit $EXIT_STATUS