mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-14 19:04:39 +00:00
firewall: fix possible expansion of "*" when rules with "option src *" are processed
SVN-Revision: 28527
This commit is contained in:
parent
e0e73928da
commit
9a61d9e513
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
PKG_NAME:=firewall
|
PKG_NAME:=firewall
|
||||||
|
|
||||||
PKG_VERSION:=2
|
PKG_VERSION:=2
|
||||||
PKG_RELEASE:=36
|
PKG_RELEASE:=37
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -211,12 +211,17 @@ fw_get_family_mode() {
|
|||||||
local _mode="$4"
|
local _mode="$4"
|
||||||
|
|
||||||
local _ipv4 _ipv6
|
local _ipv4 _ipv6
|
||||||
[ -n "$FW_ZONES4$FW_ZONES6" ] && {
|
[ "$_zone" != "*" ] && {
|
||||||
list_contains FW_ZONES4 $_zone && _ipv4=1 || _ipv4=0
|
[ -n "$FW_ZONES4$FW_ZONES6" ] && {
|
||||||
list_contains FW_ZONES6 $_zone && _ipv6=1 || _ipv6=0
|
list_contains FW_ZONES4 "$_zone" && _ipv4=1 || _ipv4=0
|
||||||
|
list_contains FW_ZONES6 "$_zone" && _ipv6=1 || _ipv6=0
|
||||||
|
} || {
|
||||||
|
_ipv4=$(uci_get_state firewall core "${_zone}_ipv4" 0)
|
||||||
|
_ipv6=$(uci_get_state firewall core "${_zone}_ipv6" 0)
|
||||||
|
}
|
||||||
} || {
|
} || {
|
||||||
_ipv4=$(uci_get_state firewall core ${_zone}_ipv4 0)
|
_ipv4=1
|
||||||
_ipv6=$(uci_get_state firewall core ${_zone}_ipv6 0)
|
_ipv6=1
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$_hint:$_ipv4:$_ipv6" in
|
case "$_hint:$_ipv4:$_ipv6" in
|
||||||
|
Loading…
Reference in New Issue
Block a user