summaryrefslogtreecommitdiffstats
path: root/iptables/tests/shell/testcases/ipt-save/0002load-fedora27-firewalld_0
blob: 2ab08b7c7a58b45666bb480bb81530984891a89a (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
#!/bin/bash

RET=0
tmpfile=""

clean_tmpfile()
{
        if [ ! -z "$tmpfile" ];then
                rm -f "$tmpfile"
        fi
}

trap clean_tmpfile EXIT

do_diff()
{
	A="$1"
	B="$2"

	AT=$(mktemp)
	grep -v "^#" "$A" > "$AT"

	diff -u "$AT" "$B"
	x=$?
	rm -f "$AT"

	return $x
}

tmpfile=$(mktemp) || exit 1
do_simple()
{
	iptables="$1"
	dumpfile="$2"
	opt="$3"

	$XT_MULTI ${iptables}-restore $opt < "$dumpfile"
	if [ $? -ne 0 ]; then
		echo "$XT_MULTI ${iptables}-restore $opt $dumpfile failed" 1>&2
		exit 1
	fi

	:> "$tmpfile"

	for table in mangle raw filter; do
		$XT_MULTI ${iptables}-save -t $table $opt | grep -v "^#" >> "$tmpfile"
	done

	do_diff $dumpfile "$tmpfile"

	if [ $? -ne 0 ]; then
		RET=1
	fi
}
# fedora27-iptables dump contains chain counters to test counter restore/save
do_simple "iptables" $(dirname "$0")/dumps/fedora27-iptables "-c"
do_simple "ip6tables" $(dirname "$0")/dumps/fedora27-ip6tables

exit $RET