1 # SPDX-License-Identifier: GPL-2.0
5 local from_dev
=$1; shift
6 local direction
=$1; shift
10 tc filter add dev
$from_dev $direction \
12 action mirred egress mirror dev
$to_dev
17 local from_dev
=$1; shift
18 local direction
=$1; shift
20 tc filter del dev
$swp1 $direction pref
1000
25 local vrf_name
=$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
46 local direction
=$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 "$@"
69 local direction
=$1; shift
70 local forward_type
=$1; shift
71 local backward_type
=$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
88 fail_test_span_dir_ips
"$@" 192.0.2.1 192.0.2.2
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
101 local direction
=$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
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