]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/sys/net/if_bridge_test.sh
zfs: merge openzfs/zfs@71c609852 (zfs-2.1-release) into stable/13
[FreeBSD/FreeBSD.git] / tests / sys / net / if_bridge_test.sh
1 # $FreeBSD$
2 #
3 # SPDX-License-Identifier: BSD-2-Clause-FreeBSD
4 #
5 # Copyright (c) 2020 The FreeBSD Foundation
6 #
7 # This software was developed by Kristof Provost under sponsorship
8 # from the FreeBSD Foundation.
9 #
10 # Redistribution and use in source and binary forms, with or without
11 # modification, are permitted provided that the following conditions
12 # are met:
13 # 1. Redistributions of source code must retain the above copyright
14 #    notice, this list of conditions and the following disclaimer.
15 # 2. Redistributions in binary form must reproduce the above copyright
16 #    notice, this list of conditions and the following disclaimer in the
17 #    documentation and/or other materials provided with the distribution.
18 #
19 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 # SUCH DAMAGE.
30
31 . $(atf_get_srcdir)/../common/vnet.subr
32
33 atf_test_case "bridge_transmit_ipv4_unicast" "cleanup"
34 bridge_transmit_ipv4_unicast_head()
35 {
36         atf_set descr 'bridge_transmit_ipv4_unicast bridging test'
37         atf_set require.user root
38 }
39
40 bridge_transmit_ipv4_unicast_body()
41 {
42         vnet_init
43
44         epair_alcatraz=$(vnet_mkepair)
45         epair_singsing=$(vnet_mkepair)
46
47         vnet_mkjail alcatraz ${epair_alcatraz}b
48         vnet_mkjail singsing ${epair_singsing}b
49
50         jexec alcatraz ifconfig ${epair_alcatraz}b 192.0.2.1/24 up
51         jexec singsing ifconfig ${epair_singsing}b 192.0.2.2/24 up
52
53         bridge=$(vnet_mkbridge)
54
55         ifconfig ${bridge} up
56         ifconfig ${epair_alcatraz}a up
57         ifconfig ${epair_singsing}a up
58         ifconfig ${bridge} addm ${epair_alcatraz}a
59         ifconfig ${bridge} addm ${epair_singsing}a
60
61         atf_check -s exit:0 -o ignore jexec alcatraz ping -c 3 -t 1 192.0.2.2
62         atf_check -s exit:0 -o ignore jexec singsing ping -c 3 -t 1 192.0.2.1
63 }
64
65 bridge_transmit_ipv4_unicast_cleanup()
66 {
67         vnet_cleanup
68 }
69
70 atf_test_case "stp" "cleanup"
71 stp_head()
72 {
73         atf_set descr 'Spanning tree test'
74         atf_set require.user root
75 }
76
77 stp_body()
78 {
79         vnet_init
80
81         epair_one=$(vnet_mkepair)
82         epair_two=$(vnet_mkepair)
83         bridge_a=$(vnet_mkbridge)
84         bridge_b=$(vnet_mkbridge)
85
86         vnet_mkjail a ${bridge_a} ${epair_one}a ${epair_two}a
87         vnet_mkjail b ${bridge_b} ${epair_one}b ${epair_two}b
88
89         jexec a ifconfig ${epair_one}a up
90         jexec a ifconfig ${epair_two}a up
91         jexec a ifconfig ${bridge_a} addm ${epair_one}a
92         jexec a ifconfig ${bridge_a} addm ${epair_two}a
93
94         jexec b ifconfig ${epair_one}b up
95         jexec b ifconfig ${epair_two}b up
96         jexec b ifconfig ${bridge_b} addm ${epair_one}b
97         jexec b ifconfig ${bridge_b} addm ${epair_two}b
98
99         jexec a ifconfig ${bridge_a} 192.0.2.1/24
100
101         # Enable spanning tree
102         jexec a ifconfig ${bridge_a} stp ${epair_one}a
103         jexec a ifconfig ${bridge_a} stp ${epair_two}a
104         jexec b ifconfig ${bridge_b} stp ${epair_one}b
105         jexec b ifconfig ${bridge_b} stp ${epair_two}b
106
107         jexec b ifconfig ${bridge_b} up
108         jexec a ifconfig ${bridge_a} up
109
110         # Give STP time to do its thing
111         sleep 5
112
113         a_discard=$(jexec a ifconfig ${bridge_a} | grep discarding)
114         b_discard=$(jexec b ifconfig ${bridge_b} | grep discarding)
115
116         if [ -z "${a_discard}" ] && [ -z "${b_discard}" ]
117         then
118                 atf_fail "STP failed to detect bridging loop"
119         fi
120
121         # We must also have at least some forwarding interfaces
122         a_forwarding=$(jexec a ifconfig ${bridge_a} | grep forwarding)
123         b_forwarding=$(jexec b ifconfig ${bridge_b} | grep forwarding)
124
125         if [ -z "${a_forwarding}" ] && [ -z "${b_forwarding}" ]
126         then
127                 atf_fail "STP failed to detect bridging loop"
128         fi
129 }
130
131 stp_cleanup()
132 {
133         vnet_cleanup
134 }
135
136 atf_test_case "stp_vlan" "cleanup"
137 stp_vlan_head()
138 {
139         atf_set descr 'Spanning tree on VLAN test'
140         atf_set require.user root
141 }
142
143 stp_vlan_body()
144 {
145         vnet_init
146
147         epair_one=$(vnet_mkepair)
148         epair_two=$(vnet_mkepair)
149         bridge_a=$(vnet_mkbridge)
150         bridge_b=$(vnet_mkbridge)
151
152         vnet_mkjail a ${bridge_a} ${epair_one}a ${epair_two}a
153         vnet_mkjail b ${bridge_b} ${epair_one}b ${epair_two}b
154
155         jexec a ifconfig ${epair_one}a up
156         jexec a ifconfig ${epair_two}a up
157         vlan_a_one=$(jexec a ifconfig vlan create vlandev ${epair_one}a vlan 42)
158         vlan_a_two=$(jexec a ifconfig vlan create vlandev ${epair_two}a vlan 42)
159         jexec a ifconfig ${vlan_a_one} up
160         jexec a ifconfig ${vlan_a_two} up
161         jexec a ifconfig ${bridge_a} addm ${vlan_a_one}
162         jexec a ifconfig ${bridge_a} addm ${vlan_a_two}
163
164         jexec b ifconfig ${epair_one}b up
165         jexec b ifconfig ${epair_two}b up
166         vlan_b_one=$(jexec b ifconfig vlan create vlandev ${epair_one}b vlan 42)
167         vlan_b_two=$(jexec b ifconfig vlan create vlandev ${epair_two}b vlan 42)
168         jexec b ifconfig ${vlan_b_one} up
169         jexec b ifconfig ${vlan_b_two} up
170         jexec b ifconfig ${bridge_b} addm ${vlan_b_one}
171         jexec b ifconfig ${bridge_b} addm ${vlan_b_two}
172
173         jexec a ifconfig ${bridge_a} 192.0.2.1/24
174
175         # Enable spanning tree
176         jexec a ifconfig ${bridge_a} stp ${vlan_a_one}
177         jexec a ifconfig ${bridge_a} stp ${vlan_a_two}
178         jexec b ifconfig ${bridge_b} stp ${vlan_b_one}
179         jexec b ifconfig ${bridge_b} stp ${vlan_b_two}
180
181         jexec b ifconfig ${bridge_b} up
182         jexec a ifconfig ${bridge_a} up
183
184         # Give STP time to do its thing
185         sleep 5
186
187         a_discard=$(jexec a ifconfig ${bridge_a} | grep discarding)
188         b_discard=$(jexec b ifconfig ${bridge_b} | grep discarding)
189
190         if [ -z "${a_discard}" ] && [ -z "${b_discard}" ]
191         then
192                 atf_fail "STP failed to detect bridging loop"
193         fi
194
195         # We must also have at least some forwarding interfaces
196         a_forwarding=$(jexec a ifconfig ${bridge_a} | grep forwarding)
197         b_forwarding=$(jexec b ifconfig ${bridge_b} | grep forwarding)
198
199         if [ -z "${a_forwarding}" ] && [ -z "${b_forwarding}" ]
200         then
201                 atf_fail "STP failed to detect bridging loop"
202         fi
203 }
204
205 stp_vlan_cleanup()
206 {
207         vnet_cleanup
208 }
209
210 atf_test_case "static" "cleanup"
211 static_head()
212 {
213         atf_set descr 'Bridge static address test'
214         atf_set require.user root
215 }
216
217 static_body()
218 {
219         vnet_init
220
221         epair=$(vnet_mkepair)
222         bridge=$(vnet_mkbridge)
223
224         vnet_mkjail one ${bridge} ${epair}a
225
226         ifconfig ${epair}b up
227
228         jexec one ifconfig ${bridge} up
229         jexec one ifconfig ${epair}a up
230         jexec one ifconfig ${bridge} addm ${epair}a
231
232         # Wrong interface
233         atf_check -s exit:1 -o ignore -e ignore \
234             jexec one ifconfig ${bridge} static ${epair}b 00:01:02:03:04:05
235
236         # Bad address format
237         atf_check -s exit:1 -o ignore -e ignore \
238             jexec one ifconfig ${bridge} static ${epair}a 00:01:02:03:04
239
240         # Correct add
241         atf_check -s exit:0 -o ignore \
242             jexec one ifconfig ${bridge} static ${epair}a 00:01:02:03:04:05
243
244         # List addresses
245         atf_check -s exit:0 -o ignore \
246             jexec one ifconfig ${bridge} addr
247
248         # Delete with bad address format
249         atf_check -s exit:1 -o ignore -e ignore \
250             jexec one ifconfig ${bridge} deladdr 00:01:02:03:04
251
252         # Delete with unlisted address
253         atf_check -s exit:1 -o ignore -e ignore \
254             jexec one ifconfig ${bridge} deladdr 00:01:02:03:04:06
255
256         # Correct delete
257         atf_check -s exit:0 -o ignore \
258             jexec one ifconfig ${bridge} deladdr 00:01:02:03:04:05
259 }
260
261 static_cleanup()
262 {
263         vnet_cleanup
264 }
265
266 atf_test_case "span" "cleanup"
267 span_head()
268 {
269         atf_set descr 'Bridge span test'
270         atf_set require.user root
271 }
272
273 span_body()
274 {
275         set -x
276         vnet_init
277
278         epair=$(vnet_mkepair)
279         epair_span=$(vnet_mkepair)
280         bridge=$(vnet_mkbridge)
281
282         vnet_mkjail one ${bridge} ${epair}a ${epair_span}a
283
284         ifconfig ${epair}b up
285         ifconfig ${epair_span}b up
286
287         jexec one ifconfig ${bridge} up
288         jexec one ifconfig ${epair}a up
289         jexec one ifconfig ${epair_span}a up
290         jexec one ifconfig ${bridge} addm ${epair}a
291
292         jexec one ifconfig ${bridge} span ${epair_span}a
293         jexec one ifconfig ${bridge} 192.0.2.1/24
294
295         # Send some traffic through the span
296         jexec one ping -c 1 -t 1 192.0.2.2
297
298         # Check that we see the traffic on the span interface
299         atf_check -s exit:0 \
300                 $(atf_get_srcdir)/../netpfil/common/pft_ping.py \
301                 --sendif ${epair}b \
302                 --to 192.0.2.2 \
303                 --recvif ${epair_span}b
304
305         jexec one ifconfig ${bridge} -span ${epair_span}a
306
307         # And no more traffic after we remove the span
308         atf_check -s exit:1 \
309                 $(atf_get_srcdir)/../netpfil/common/pft_ping.py \
310                 --sendif ${epair}b \
311                 --to 192.0.2.2 \
312                 --recvif ${epair_span}b
313 }
314
315 span_cleanup()
316 {
317         vnet_cleanup
318 }
319
320 atf_test_case "delete_with_members" "cleanup"
321 delete_with_members_head()
322 {
323         atf_set descr 'Delete a bridge which still has member interfaces'
324         atf_set require.user root
325 }
326
327 delete_with_members_body()
328 {
329         vnet_init
330
331         bridge=$(vnet_mkbridge)
332         epair=$(vnet_mkepair)
333
334         ifconfig ${bridge} 192.0.2.1/24 up
335         ifconfig ${epair}a up
336         ifconfig ${bridge} addm ${epair}a
337
338         ifconfig ${bridge} destroy
339 }
340
341 delete_with_members_cleanup()
342 {
343         vnet_cleanup
344 }
345
346 atf_test_case "mac_conflict" "cleanup"
347 mac_conflict_head()
348 {
349         atf_set descr 'Ensure that bridges in different jails get different mac addresses'
350         atf_set require.user root
351 }
352
353 mac_conflict_body()
354 {
355         vnet_init
356
357         epair=$(vnet_mkepair)
358
359         # Ensure the bridge module is loaded so jails can use it.
360         tmpbridge=$(vnet_mkbridge)
361
362         vnet_mkjail bridge_mac_conflict_one ${epair}a
363         vnet_mkjail bridge_mac_conflict_two ${epair}b
364
365         jexec bridge_mac_conflict_one ifconfig bridge create
366         jexec bridge_mac_conflict_one ifconfig bridge0 192.0.2.1/24 up \
367             addm ${epair}a
368         jexec bridge_mac_conflict_one ifconfig ${epair}a up
369
370         jexec bridge_mac_conflict_two ifconfig bridge create
371         jexec bridge_mac_conflict_two ifconfig bridge0 192.0.2.2/24 up \
372             addm ${epair}b
373         jexec bridge_mac_conflict_two ifconfig ${epair}b up
374
375         atf_check -s exit:0 -o ignore \
376             jexec bridge_mac_conflict_one ping -c 3 192.0.2.2
377 }
378
379 mac_conflict_cleanup()
380 {
381         vnet_cleanup
382 }
383
384 atf_test_case "inherit_mac" "cleanup"
385 inherit_mac_head()
386 {
387         atf_set descr 'Bridge inherit_mac test, #216510'
388         atf_set require.user root
389 }
390
391 inherit_mac_body()
392 {
393         vnet_init
394
395         bridge=$(vnet_mkbridge)
396         epair=$(vnet_mkepair)
397         vnet_mkjail one ${bridge} ${epair}a
398
399         jexec one sysctl net.link.bridge.inherit_mac=1
400
401         # Attempt to provoke the panic described in #216510
402         jexec one ifconfig ${bridge} 192.0.0.1/24 up
403         jexec one ifconfig ${bridge} addm ${epair}a
404 }
405
406 inherit_mac_cleanup()
407 {
408         vnet_cleanup
409 }
410
411 atf_test_case "stp_validation" "cleanup"
412 stp_validation_head()
413 {
414         atf_set descr 'Check STP validation'
415         atf_set require.user root
416         atf_set require.progs scapy
417 }
418
419 stp_validation_body()
420 {
421         vnet_init
422
423         epair_one=$(vnet_mkepair)
424         epair_two=$(vnet_mkepair)
425         bridge=$(vnet_mkbridge)
426
427         ifconfig ${bridge} up
428         ifconfig ${bridge} addm ${epair_one}a addm ${epair_two}a
429         ifconfig ${bridge} stp ${epair_one}a stp ${epair_two}a
430
431         ifconfig ${epair_one}a up
432         ifconfig ${epair_one}b up
433         ifconfig ${epair_two}a up
434         ifconfig ${epair_two}b up
435
436         # Wait until the interfaces are no longer discarding
437         while ifconfig ${bridge} | grep 'state discarding' >/dev/null
438         do
439                 sleep 1
440         done
441
442         # Now inject invalid STP BPDUs on epair_one and see if they're repeated
443         # on epair_two
444         atf_check -s exit:0 \
445             $(atf_get_srcdir)/stp.py \
446             --sendif ${epair_one}b \
447             --recvif ${epair_two}b
448 }
449
450 stp_validation_cleanup()
451 {
452         vnet_cleanup
453 }
454
455 atf_test_case "gif" "cleanup"
456 gif_head()
457 {
458         atf_set descr 'gif as a bridge member'
459         atf_set require.user root
460 }
461
462 gif_body()
463 {
464         vnet_init
465
466         epair=$(vnet_mkepair)
467
468         vnet_mkjail one ${epair}a
469         vnet_mkjail two ${epair}b
470
471         jexec one sysctl net.link.gif.max_nesting=2
472         jexec two sysctl net.link.gif.max_nesting=2
473
474         jexec one ifconfig ${epair}a 192.0.2.1/24 up
475         jexec two ifconfig ${epair}b 192.0.2.2/24 up
476
477         # Tunnel
478         gif_one=$(jexec one ifconfig gif create)
479         gif_two=$(jexec two ifconfig gif create)
480
481         jexec one ifconfig ${gif_one} tunnel 192.0.2.1 192.0.2.2
482         jexec one ifconfig ${gif_one} up
483         jexec two ifconfig ${gif_two} tunnel 192.0.2.2 192.0.2.1
484         jexec two ifconfig ${gif_two} up
485
486         bridge_one=$(jexec one ifconfig bridge create)
487         bridge_two=$(jexec two ifconfig bridge create)
488         jexec one ifconfig ${bridge_one} 198.51.100.1/24 up
489         jexec one ifconfig ${bridge_one} addm ${gif_one}
490         jexec two ifconfig ${bridge_two} 198.51.100.2/24 up
491         jexec two ifconfig ${bridge_two} addm ${gif_two}
492
493         # Sanity check
494         atf_check -s exit:0 -o ignore \
495                 jexec one ping -c 1 192.0.2.2
496
497         # Test tunnel
498         atf_check -s exit:0 -o ignore \
499                 jexec one ping -c 1 198.51.100.2
500         atf_check -s exit:0 -o ignore \
501                 jexec one ping -c 1 -s 1200 198.51.100.2
502         atf_check -s exit:0 -o ignore \
503                 jexec one ping -c 1 -s 2000 198.51.100.2
504
505         # Higher MTU on the tunnel than on the underlying interface
506         jexec one ifconfig ${epair}a mtu 1000
507         jexec two ifconfig ${epair}b mtu 1000
508
509         atf_check -s exit:0 -o ignore \
510                 jexec one ping -c 1 -s 1200 198.51.100.2
511         atf_check -s exit:0 -o ignore \
512                 jexec one ping -c 1 -s 2000 198.51.100.2
513 }
514
515 gif_cleanup()
516 {
517         vnet_cleanup
518 }
519
520 atf_init_test_cases()
521 {
522         atf_add_test_case "bridge_transmit_ipv4_unicast"
523         atf_add_test_case "stp"
524         atf_add_test_case "stp_vlan"
525         atf_add_test_case "static"
526         atf_add_test_case "span"
527         atf_add_test_case "inherit_mac"
528         atf_add_test_case "delete_with_members"
529         atf_add_test_case "mac_conflict"
530         atf_add_test_case "stp_validation"
531         atf_add_test_case "gif"
532 }