mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
firewall: fix a possible deadlock when the firewall config has syntax errors during restart
SVN-Revision: 21501
This commit is contained in:
parent
6b3bfbf943
commit
91519d51e9
@ -8,14 +8,15 @@ include /lib/network
|
||||
fw_start() {
|
||||
fw_init
|
||||
|
||||
lock /var/lock/firewall.start
|
||||
|
||||
FW_DEFAULTS_APPLIED=
|
||||
|
||||
fw_is_loaded && {
|
||||
echo "firewall already loaded" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
lock /var/lock/firewall.start
|
||||
|
||||
uci_set_state firewall core "" firewall_state
|
||||
|
||||
fw_clear DROP
|
||||
@ -93,6 +94,7 @@ fw_die() {
|
||||
echo "Error:" "$@" >&2
|
||||
fw_log error "$@"
|
||||
fw_stop
|
||||
lock -u /var/lock/firewall.start
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user