summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/ebtables/0001-ebtables-basic_0
blob: b0db216ae385468b0b39481ed08d7e1cf31f4bc2 (plain)
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
#!/bin/sh

set -x
case "$XT_MULTI" in
*/xtables-nft-multi)
	for t in filter nat;do
		$XT_MULTI ebtables -t $t -L || exit 1
		$XT_MULTI ebtables -t $t -X || exit 1
		$XT_MULTI ebtables -t $t -F || exit 1
	done

	for t in broute foobar ;do
		$XT_MULTI ebtables -t $t -L &&
		$XT_MULTI ebtables -t $t -X &&
		$XT_MULTI ebtables -t $t -F
		if [ $? -eq 0 ]; then
			echo "Expect nonzero return for unsupported table"
			exit 1
		fi
	done


	$XT_MULTI ebtables -t filter -N FOO || exit 1
	$XT_MULTI ebtables -t filter -N FOO
	if [ $? -eq 0 ]; then
		echo "Duplicate chain FOO"
		$XT_MULTI ebtables -t filter -L
		exit 1
	fi

	$XT_MULTI ebtables -L FOO | grep -q 'entries: 0'
	if [ $? -ne 0 ]; then
		echo "Unexpected entries count in empty unreferenced chain"
		$XT_MULTI ebtables -L
		exit 1
	fi

	$XT_MULTI ebtables -A FORWARD -j FOO
	$XT_MULTI ebtables -L FORWARD | grep -q 'entries: 1'
	if [ $? -ne 0 ]; then
		echo "Unexpected entries count in FORWARD chain"
		$XT_MULTI ebtables -L
		exit 1
	fi

	$XT_MULTI ebtables -L FOO | grep -q 'entries: 0'
	if [ $? -ne 0 ]; then
		echo "Unexpected entries count in empty referenced chain"
		$XT_MULTI ebtables -L
		exit 1
	fi

	$XT_MULTI ebtables -A FOO -j ACCEPT
	$XT_MULTI ebtables -L FOO | grep -q 'entries: 1'
	if [ $? -ne 0 ]; then
		echo "Unexpected entries count in non-empty referenced chain"
		$XT_MULTI ebtables -L
		exit 1
	fi

	$XT_MULTI ebtables -t filter -N BAR || exit 1
	$XT_MULTI ebtables -t filter -N BAZ || exit 1

	$XT_MULTI ebtables -t filter -L | grep -q FOO || exit 1
	$XT_MULTI ebtables -t filter -L | grep -q BAR || exit 1
	$XT_MULTI ebtables -t filter -L | grep -q BAZ || exit 1

	$XT_MULTI ebtables -t filter -L BAZ || exit 1
	$XT_MULTI ebtables -t filter -X BAZ || exit 1
	$XT_MULTI ebtables -t filter -L BAZ | grep -q BAZ
	if [ $? -eq 0 ]; then
		echo "Deleted chain -L BAZ ok, expected failure"
		$XT_MULTI ebtables -t filter -L
		exit 1
	fi

	$XT_MULTI ebtables -t $t -F || exit 0
	;;
*)
	echo "skip $XT_MULTI"
	;;
esac