Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / net / forwarding / mirror_lib.sh
blob07991e1025c70e0e1f5e084fbcef94b7bbaed173
1 # SPDX-License-Identifier: GPL-2.0
3 mirror_install()
5 local from_dev=$1; shift
6 local direction=$1; shift
7 local to_dev=$1; shift
8 local filter=$1; shift
10 tc filter add dev $from_dev $direction \
11 pref 1000 $filter \
12 action mirred egress mirror dev $to_dev
15 mirror_uninstall()
17 local from_dev=$1; shift
18 local direction=$1; shift
20 tc filter del dev $swp1 $direction pref 1000
23 mirror_test()
25 local vrf_name=$1; shift
26 local sip=$1; shift
27 local dip=$1; shift
28 local dev=$1; shift
29 local pref=$1; shift
30 local expect=$1; shift
32 local t0=$(tc_rule_stats_get $dev $pref)
33 ip vrf exec $vrf_name \
34 ${PING} ${sip:+-I $sip} $dip -c 10 -i 0.1 -w 2 &> /dev/null
35 local t1=$(tc_rule_stats_get $dev $pref)
36 local delta=$((t1 - t0))
37 # Tolerate a couple stray extra packets.
38 ((expect <= delta && delta <= expect + 2))
39 check_err $? "Expected to capture $expect packets, got $delta."
42 do_test_span_dir_ips()
44 local expect=$1; shift
45 local dev=$1; shift
46 local direction=$1; shift
47 local ip1=$1; shift
48 local ip2=$1; shift
50 icmp_capture_install $dev
51 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect
52 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect
53 icmp_capture_uninstall $dev
56 quick_test_span_dir_ips()
58 do_test_span_dir_ips 10 "$@"
61 fail_test_span_dir_ips()
63 do_test_span_dir_ips 0 "$@"
66 test_span_dir_ips()
68 local dev=$1; shift
69 local direction=$1; shift
70 local forward_type=$1; shift
71 local backward_type=$1; shift
72 local ip1=$1; shift
73 local ip2=$1; shift
75 quick_test_span_dir_ips "$dev" "$direction" "$ip1" "$ip2"
77 icmp_capture_install $dev "type $forward_type"
78 mirror_test v$h1 $ip1 $ip2 $dev 100 10
79 icmp_capture_uninstall $dev
81 icmp_capture_install $dev "type $backward_type"
82 mirror_test v$h2 $ip2 $ip1 $dev 100 10
83 icmp_capture_uninstall $dev
86 fail_test_span_dir()
88 fail_test_span_dir_ips "$@" 192.0.2.1 192.0.2.2
91 test_span_dir()
93 test_span_dir_ips "$@" 192.0.2.1 192.0.2.2
96 do_test_span_vlan_dir_ips()
98 local expect=$1; shift
99 local dev=$1; shift
100 local vid=$1; shift
101 local direction=$1; shift
102 local ip1=$1; shift
103 local ip2=$1; shift
105 # Install the capture as skip_hw to avoid double-counting of packets.
106 # The traffic is meant for local box anyway, so will be trapped to
107 # kernel.
108 vlan_capture_install $dev "skip_hw vlan_id $vid vlan_ethtype ip"
109 mirror_test v$h1 $ip1 $ip2 $dev 100 $expect
110 mirror_test v$h2 $ip2 $ip1 $dev 100 $expect
111 vlan_capture_uninstall $dev
114 quick_test_span_vlan_dir_ips()
116 do_test_span_vlan_dir_ips 10 "$@"
119 fail_test_span_vlan_dir_ips()
121 do_test_span_vlan_dir_ips 0 "$@"
124 quick_test_span_vlan_dir()
126 quick_test_span_vlan_dir_ips "$@" 192.0.2.1 192.0.2.2
129 fail_test_span_vlan_dir()
131 fail_test_span_vlan_dir_ips "$@" 192.0.2.1 192.0.2.2