aboutsummaryrefslogtreecommitdiffstats
path: root/package/firewall/files/bin/fw
blob: 5d20cc83ef89eab832c8bd6ff00cefee78363943 (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
#!/bin/sh
FW_LIBDIR=/lib/firewall

. /lib/functions.sh
. ${FW_LIBDIR}/fw.sh

case "$(type fw)" in
	*function) ;;
	*) exit 255;;
esac

usage() {
	echo $0 "<command>" "<family>" "<table>" "<chain>" "<target>" "{" "<rules>" "}"
	exit 0
}

cmd=$1
shift
case "$cmd" in
	--help|help) usage ;;
	start|stop|reload|restart)
		. ${FW_LIBDIR}/core.sh
		fw_$cmd
		exit $?
	;;
esac

fam=$1
shift
case "$fam" in
	ip)
		fam=i
		if [ $# -gt 2 ]; then
			for p in $(seq 2 $(($# - 1))); do
				if eval "[ \$$p == '}' ]"; then
					fam=I
					break
				fi
			done
		fi ;;
	ip4) fam=4 ;;
	ip6) fam=6 ;;
	arp) fam=a ;;
	eth) fam=e ;;
	-*) exec $0 $cmd ${fam##*-} "$@" ;;
esac

fw "$cmd" "$fam" "$@"
exit $?