aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/drivers/net/bonding/dev_addr_lists.sh
blob: e6fa24eded5b82004c5be39fb658f92582c8e1c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
# Test bond device handling of addr lists (dev->uc, mc)
#

ALL_TESTS="
	bond_cleanup_mode1
	bond_cleanup_mode4
	bond_listen_lacpdu_multicast_case_down
	bond_listen_lacpdu_multicast_case_up
"

REQUIRE_MZ=no
NUM_NETIFS=0
lib_dir=$(dirname "$0")
source "$lib_dir"/../../../net/forwarding/lib.sh

source "$lib_dir"/lag_lib.sh


destroy()
{
	local ifnames=(dummy1 dummy2 bond1 mv0)
	local ifname

	for ifname in "${ifnames[@]}"; do
		ip link del "$ifname" &>/dev/null
	done
}

cleanup()
{
	pre_cleanup

	destroy
}


# bond driver control paths vary between modes that have a primary slave
# (bond_uses_primary()) and others. Test both kinds of modes.

bond_cleanup_mode1()
{
	RET=0

	test_LAG_cleanup "bonding" "active-backup"
}

bond_cleanup_mode4() {
	RET=0

	test_LAG_cleanup "bonding" "802.3ad"
}

bond_listen_lacpdu_multicast()
{
	# Initial state of bond device, up | down
	local init_state=$1
	local lacpdu_mc="01:80:c2:00:00:02"

	ip link add dummy1 type dummy
	ip link add bond1 "$init_state" type bond mode 802.3ad
	ip link set dev dummy1 master bond1
	if [ "$init_state" = "down" ]; then
		ip link set dev bond1 up
	fi

	grep_bridge_fdb "$lacpdu_mc" bridge fdb show brport dummy1 >/dev/null
	check_err $? "LACPDU multicast address not present on slave (1)"

	ip link set dev bond1 down

	not grep_bridge_fdb "$lacpdu_mc" bridge fdb show brport dummy1 >/dev/null
	check_err $? "LACPDU multicast address still present on slave"

	ip link set dev bond1 up

	grep_bridge_fdb "$lacpdu_mc" bridge fdb show brport dummy1 >/dev/null
	check_err $? "LACPDU multicast address not present on slave (2)"

	cleanup

	log_test "bonding LACPDU multicast address to slave (from bond $init_state)"
}

# The LACPDU mc addr is added by different paths depending on the initial state
# of the bond when enslaving a device. Test both cases.

bond_listen_lacpdu_multicast_case_down()
{
	RET=0

	bond_listen_lacpdu_multicast "down"
}

bond_listen_lacpdu_multicast_case_up()
{
	RET=0

	bond_listen_lacpdu_multicast "up"
}


trap cleanup EXIT

tests_run

exit "$EXIT_STATUS"