2 # SPDX-License-Identifier: GPL-2.0
4 # This test is for checking the [no]localbypass VXLAN device option. The test
5 # configures two VXLAN devices in the same network namespace and a tc filter on
6 # the loopback device that drops encapsulated packets. The test sends packets
7 # from the first VXLAN device and verifies that by default these packets are
8 # received by the second VXLAN device. The test then enables the nolocalbypass
9 # option and verifies that packets are no longer received by the second VXLAN
22 ################################################################################
31 if [ ${rc} -eq ${expected} ]; then
32 printf "TEST: %-60s [ OK ]\n" "${msg}"
33 nsuccess
=$
((nsuccess
+1))
37 printf "TEST: %-60s [FAIL]\n" "${msg}"
38 if [ "$VERBOSE" = "1" ]; then
39 echo " rc=$rc, expected $expected"
42 if [ "${PAUSE_ON_FAIL}" = "yes" ]; then
44 echo "hit enter to continue, 'q' to quit"
46 [ "$a" = "q" ] && exit 1
50 if [ "${PAUSE}" = "yes" ]; then
52 echo "hit enter to continue, 'q' to quit"
54 [ "$a" = "q" ] && exit 1
57 [ "$VERBOSE" = "1" ] && echo
64 local stderr
="2>/dev/null"
66 if [ "$VERBOSE" = "1" ]; then
67 printf "COMMAND: $cmd\n"
71 out
=$
(eval $cmd $stderr)
73 if [ "$VERBOSE" = "1" -a -n "$out" ]; then
84 local handle
=$1; shift
89 pkts
=$
(tc
-n $ns -j -s filter show
$id \
90 | jq
".[] | select(.options.handle == $handle) | \
91 .options.actions[0].stats.packets")
95 ################################################################################
102 ip
-n $ns1 address add
192.0.2.1/32 dev lo
103 ip
-n $ns1 address add
198.51.100.1/32 dev lo
105 ip
-n $ns1 link add name vx0 up
type vxlan id
100 local 198.51.100.1 \
106 dstport
4789 nolearning
107 ip
-n $ns1 link add name vx1 up
type vxlan id
100 dstport
4790
115 ################################################################################
120 local smac
=00:01:02:03:04:05
121 local dmac
=00:0a
:0b
:0c
:0d
:0e
123 run_cmd
"bridge -n $ns1 fdb add $dmac dev vx0 self static dst 192.0.2.1 port 4790"
125 run_cmd
"tc -n $ns1 qdisc add dev vx1 clsact"
126 run_cmd
"tc -n $ns1 filter add dev vx1 ingress pref 1 handle 101 proto all flower src_mac $smac dst_mac $dmac action pass"
128 run_cmd
"tc -n $ns1 qdisc add dev lo clsact"
129 run_cmd
"tc -n $ns1 filter add dev lo ingress pref 1 handle 101 proto ip flower ip_proto udp dst_port 4790 action drop"
131 run_cmd
"ip -n $ns1 -d -j link show dev vx0 | jq -e '.[][\"linkinfo\"][\"info_data\"][\"localbypass\"] == true'"
132 log_test $?
0 "localbypass enabled"
134 run_cmd
"ip netns exec $ns1 mausezahn vx0 -a $smac -b $dmac -c 1 -p 100 -q"
136 tc_check_packets
"$ns1" "dev vx1 ingress" 101 1
137 log_test $?
0 "Packet received by local VXLAN device - localbypass"
139 run_cmd
"ip -n $ns1 link set dev vx0 type vxlan nolocalbypass"
141 run_cmd
"ip -n $ns1 -d -j link show dev vx0 | jq -e '.[][\"linkinfo\"][\"info_data\"][\"localbypass\"] == false'"
142 log_test $?
0 "localbypass disabled"
144 run_cmd
"ip netns exec $ns1 mausezahn vx0 -a $smac -b $dmac -c 1 -p 100 -q"
146 tc_check_packets
"$ns1" "dev vx1 ingress" 101 1
147 log_test $?
0 "Packet not received by local VXLAN device - nolocalbypass"
149 run_cmd
"ip -n $ns1 link set dev vx0 type vxlan localbypass"
151 run_cmd
"ip -n $ns1 -d -j link show dev vx0 | jq -e '.[][\"linkinfo\"][\"info_data\"][\"localbypass\"] == true'"
152 log_test $?
0 "localbypass enabled"
154 run_cmd
"ip netns exec $ns1 mausezahn vx0 -a $smac -b $dmac -c 1 -p 100 -q"
156 tc_check_packets
"$ns1" "dev vx1 ingress" 101 2
157 log_test $?
0 "Packet received by local VXLAN device - localbypass"
160 ################################################################################
168 -t <test> Test(s) to run (default: all)
171 -P Pause after each test before cleanup
172 -v Verbose mode (show commands and output)
176 ################################################################################
181 while getopts ":t:pPvh" opt
; do
184 p
) PAUSE_ON_FAIL
=yes;;
186 v
) VERBOSE
=$
(($VERBOSE + 1));;
192 # Make sure we don't pause twice.
193 [ "${PAUSE}" = "yes" ] && PAUSE_ON_FAIL
=no
195 if [ "$(id -u)" -ne 0 ];then
196 echo "SKIP: Need root privileges"
200 if [ ! -x "$(command -v ip)" ]; then
201 echo "SKIP: Could not run test without ip tool"
205 if [ ! -x "$(command -v bridge)" ]; then
206 echo "SKIP: Could not run test without bridge tool"
210 if [ ! -x "$(command -v mausezahn)" ]; then
211 echo "SKIP: Could not run test without mausezahn tool"
215 if [ ! -x "$(command -v jq)" ]; then
216 echo "SKIP: Could not run test without jq tool"
220 ip link
help vxlan
2>&1 |
grep -q "localbypass"
221 if [ $?
-ne 0 ]; then
222 echo "SKIP: iproute2 ip too old, missing VXLAN nolocalbypass support"
233 if [ "$TESTS" != "none" ]; then
234 printf "\nTests passed: %3d\n" ${nsuccess}
235 printf "Tests failed: %3d\n" ${nfail}