mirror of https://github.com/bol-van/zapret/
58 changed files with 2789 additions and 3326 deletions
File diff suppressed because it is too large
@ -35,75 +35,65 @@ IPSET_EXCLUDE6="-m set ! --match-set nozapret6" |
|||||
|
|
||||
apply_unspecified_desync_modes |
apply_unspecified_desync_modes |
||||
|
|
||||
|
# can be multiple IPv6 outgoing interfaces |
||||
# can be multiple ipv6 outgoing interfaces |
# uplink from ISP, tunnelbroker, VPN, ... |
||||
# uplink from isp, tunnelbroker, vpn, ... |
|
||||
# want them all. who knows what's the real one that blocks sites |
# want them all. who knows what's the real one that blocks sites |
||||
# dont want any manual configuration - want to do it automatically |
# dont want any manual configuration - want to do it automatically |
||||
# standard network_find_wan[6] return only the first |
# standard network_find_wan[6] return only the first |
||||
# we use low level function from network.sh to avoid this limitation |
# we use low level function from network.sh to avoid this limitation |
||||
# it can change theoretically and stop working |
# it can change theoretically and stop working |
||||
|
|
||||
network_find_wan4_all() |
network_find_wan4_all() { |
||||
{ |
|
||||
if [ -n "$OPENWRT_WAN4" ]; then |
if [ -n "$OPENWRT_WAN4" ]; then |
||||
eval $1="\$OPENWRT_WAN4" |
eval "$1"="\$OPENWRT_WAN4" |
||||
else |
else |
||||
__network_ifstatus "$1" "" "[@.route[@.target='0.0.0.0' && [email protected]]].interface" "" 10 2>/dev/null && return |
__network_ifstatus "$1" "" "[@.route[@.target='0.0.0.0' && [email protected]]].interface" "" 10 2>/dev/null && return |
||||
network_find_wan $1 |
network_find_wan "$1" |
||||
fi |
fi |
||||
} |
} |
||||
network_find_wan_all() |
network_find_wan_all() { |
||||
{ |
|
||||
network_find_wan4_all "$@" |
network_find_wan4_all "$@" |
||||
} |
} |
||||
network_find_wan6_all() |
network_find_wan6_all() { |
||||
{ |
|
||||
if [ -n "$OPENWRT_WAN6" ]; then |
if [ -n "$OPENWRT_WAN6" ]; then |
||||
eval $1="\$OPENWRT_WAN6" |
eval "$1"="\$OPENWRT_WAN6" |
||||
else |
else |
||||
__network_ifstatus "$1" "" "[@.route[@.target='::' && [email protected]]].interface" "" 10 2>/dev/null && return |
__network_ifstatus "$1" "" "[@.route[@.target='::' && [email protected]]].interface" "" 10 2>/dev/null && return |
||||
network_find_wan6 $1 |
network_find_wan6 "$1" |
||||
fi |
fi |
||||
} |
} |
||||
network_find_wanX_devices() |
network_find_wanX_devices() { |
||||
{ |
|
||||
# $1 - ip version: 4 or 6 |
# $1 - ip version: 4 or 6 |
||||
# $2 - variable to put result to |
# $2 - variable to put result to |
||||
local ifaces |
local ifaces |
||||
network_find_wan${1}_all ifaces |
network_find_wan"${1}"_all ifaces |
||||
call_for_multiple_items network_get_device $2 "$ifaces" |
call_for_multiple_items network_get_device "$2" "$ifaces" |
||||
} |
} |
||||
|
|
||||
|
dnat6_target() { |
||||
dnat6_target() |
# $1 - LAN network name |
||||
{ |
|
||||
# $1 - lan network name |
|
||||
# $2 - var to store target ip6 |
# $2 - var to store target ip6 |
||||
|
|
||||
network_is_up $1 || { |
network_is_up "$1" || { |
||||
[ -n "$2" ] && eval $2='' |
[ -n "$2" ] && eval "$2"='' |
||||
return |
return |
||||
} |
} |
||||
|
|
||||
local DEVICE |
local DEVICE |
||||
network_get_device DEVICE $1 |
network_get_device DEVICE "$1" |
||||
|
|
||||
_dnat6_target $DEVICE $2 |
_dnat6_target "$DEVICE" "$2" |
||||
} |
} |
||||
|
|
||||
set_route_localnet() |
set_route_localnet() { |
||||
{ |
|
||||
# $1 - 1 = enable, 0 = disable |
# $1 - 1 = enable, 0 = disable |
||||
|
|
||||
local DLAN |
local DLAN |
||||
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
||||
_set_route_localnet $1 $DLAN |
_set_route_localnet "$1" "$DLAN" |
||||
} |
} |
||||
|
|
||||
|
fw_nfqws_prepost_x() { |
||||
fw_nfqws_prepost_x() |
|
||||
{ |
|
||||
# $1 - 1 - add, 0 - del |
# $1 - 1 - add, 0 - del |
||||
# $2 - filter |
# $2 - filter |
||||
# $3 - queue number |
# $3 - queue number |
||||
@ -111,29 +101,24 @@ fw_nfqws_prepost_x() |
|||||
# $5 - post/pre |
# $5 - post/pre |
||||
|
|
||||
local ifaces DWAN |
local ifaces DWAN |
||||
network_find_wan${4}_all ifaces |
network_find_wan"${4}"_all ifaces |
||||
call_for_multiple_items network_get_device DWAN "$ifaces" |
call_for_multiple_items network_get_device DWAN "$ifaces" |
||||
|
|
||||
[ -n "$DWAN" ] && _fw_nfqws_${5}${4} $1 "$2" $3 "$(unique $DWAN)" |
[ -n "$DWAN" ] && _fw_nfqws_"${5}"${4} "$1" "$2" "$3" "$(unique "$DWAN")" |
||||
} |
} |
||||
fw_nfqws_post4() |
fw_nfqws_post4() { |
||||
{ |
fw_nfqws_prepost_x "$1" "$2" "$3" 4 post |
||||
fw_nfqws_prepost_x $1 "$2" $3 4 post |
|
||||
} |
} |
||||
fw_nfqws_post6() |
fw_nfqws_post6() { |
||||
{ |
fw_nfqws_prepost_x "$1" "$2" "$3" 6 post |
||||
fw_nfqws_prepost_x $1 "$2" $3 6 post |
|
||||
} |
} |
||||
fw_nfqws_pre4() |
fw_nfqws_pre4() { |
||||
{ |
fw_nfqws_prepost_x "$1" "$2" "$3" 4 pre |
||||
fw_nfqws_prepost_x $1 "$2" $3 4 pre |
|
||||
} |
} |
||||
fw_nfqws_pre6() |
fw_nfqws_pre6() { |
||||
{ |
fw_nfqws_prepost_x "$1" "$2" "$3" 6 pre |
||||
fw_nfqws_prepost_x $1 "$2" $3 6 pre |
|
||||
} |
} |
||||
fw_tpws_x() |
fw_tpws_x() { |
||||
{ |
|
||||
# $1 - 1 - add, 0 - del |
# $1 - 1 - add, 0 - del |
||||
# $2 - filter |
# $2 - filter |
||||
# $3 - tpws port |
# $3 - tpws port |
||||
@ -143,102 +128,88 @@ fw_tpws_x() |
|||||
|
|
||||
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
||||
|
|
||||
network_find_wan${4}_all ifaces |
network_find_wan"${4}"_all ifaces |
||||
call_for_multiple_items network_get_device DWAN "$ifaces" |
call_for_multiple_items network_get_device DWAN "$ifaces" |
||||
|
|
||||
[ -n "$DWAN" ] && _fw_tpws${4} $1 "$2" $3 "$DLAN" "$(unique $DWAN)" |
[ -n "$DWAN" ] && _fw_tpws"${4}" "$1" "$2" "$3" "$DLAN" "$(unique "$DWAN")" |
||||
} |
} |
||||
fw_tpws4() |
fw_tpws4() { |
||||
{ |
fw_tpws_x "$1" "$2" "$3" 4 |
||||
fw_tpws_x $1 "$2" $3 4 |
|
||||
} |
} |
||||
fw_tpws6() |
fw_tpws6() { |
||||
{ |
fw_tpws_x "$1" "$2" "$3" 6 |
||||
fw_tpws_x $1 "$2" $3 6 |
|
||||
} |
} |
||||
|
|
||||
|
create_ipset() { |
||||
create_ipset() |
|
||||
{ |
|
||||
echo "Creating ip list table (firewall type $FWTYPE)" |
echo "Creating ip list table (firewall type $FWTYPE)" |
||||
"$IPSET_CR" "$@" |
"$IPSET_CR" "$@" |
||||
} |
} |
||||
|
|
||||
list_nfqws_rules() |
list_nfqws_rules() { |
||||
{ |
# $1 = '' for IPv4, '6' for IPv6 |
||||
# $1 = '' for ipv4, '6' for ipv6 |
ip"$1"tables -S POSTROUTING -t mangle | |
||||
ip$1tables -S POSTROUTING -t mangle | \ |
grep -E "NFQUEUE --queue-num $QNUM --queue-bypass|NFQUEUE --queue-num $(($QNUM + 1)) --queue-bypass|NFQUEUE --queue-num $(($QNUM + 2)) --queue-bypass|NFQUEUE --queue-num $(($QNUM + 3)) --queue-bypass|NFQUEUE --queue-num $(($QNUM + 10)) --queue-bypass|NFQUEUE --queue-num $(($QNUM + 11)) --queue-bypass" | |
||||
grep -E "NFQUEUE --queue-num $QNUM --queue-bypass|NFQUEUE --queue-num $(($QNUM+1)) --queue-bypass|NFQUEUE --queue-num $(($QNUM+2)) --queue-bypass|NFQUEUE --queue-num $(($QNUM+3)) --queue-bypass|NFQUEUE --queue-num $(($QNUM+10)) --queue-bypass|NFQUEUE --queue-num $(($QNUM+11)) --queue-bypass" | \ |
|
||||
sed -re 's/^-A POSTROUTING (.*) -j NFQUEUE.*$/\1/' -e "s/-m mark ! --mark $DESYNC_MARK\/$DESYNC_MARK//" |
sed -re 's/^-A POSTROUTING (.*) -j NFQUEUE.*$/\1/' -e "s/-m mark ! --mark $DESYNC_MARK\/$DESYNC_MARK//" |
||||
} |
} |
||||
apply_flow_offloading_enable_rule() |
apply_flow_offloading_enable_rule() { |
||||
{ |
# $1 = '' for IPv4, '6' for IPv6 |
||||
# $1 = '' for ipv4, '6' for ipv6 |
|
||||
local i off='-j FLOWOFFLOAD' |
local i off='-j FLOWOFFLOAD' |
||||
[ "$FLOWOFFLOAD" = "hardware" ] && off="$off --hw" |
[ "$FLOWOFFLOAD" = "hardware" ] && off="$off --hw" |
||||
i="forwarding_rule_zapret -m comment --comment zapret_traffic_offloading_enable -m conntrack --ctstate RELATED,ESTABLISHED $off" |
i="forwarding_rule_zapret -m comment --comment zapret_traffic_offloading_enable -m conntrack --ctstate RELATED,ESTABLISHED $off" |
||||
echo enabling ipv${1:-4} flow offloading : $i |
echo enabling ipv"${1:-4}" flow offloading : "$i" |
||||
ip$1tables -A $i |
ip"$1"tables -A "$i" |
||||
} |
} |
||||
apply_flow_offloading_exempt_rule() |
apply_flow_offloading_exempt_rule() { |
||||
{ |
# $1 = '' for IPv4, '6' for IPv6 |
||||
# $1 = '' for ipv4, '6' for ipv6 |
|
||||
local i v |
local i v |
||||
v=$1 |
v=$1 |
||||
shift |
shift |
||||
i="forwarding_rule_zapret $@ -m comment --comment zapret_traffic_offloading_exemption -j RETURN" |
i="forwarding_rule_zapret $@ -m comment --comment zapret_traffic_offloading_exemption -j RETURN" |
||||
echo applying ipv${v:-4} flow offloading exemption : $i |
echo applying ipv"${v:-4}" flow offloading exemption : "$i" |
||||
ip${v}tables -A $i |
ip"${v}"tables -A "$i" |
||||
} |
} |
||||
flow_offloading_unexempt_v() |
flow_offloading_unexempt_v() { |
||||
{ |
# $1 = '' for IPv4, '6' for IPv6 |
||||
# $1 = '' for ipv4, '6' for ipv6 |
|
||||
local DWAN |
local DWAN |
||||
network_find_wanX_devices ${1:-4} DWAN |
network_find_wanX_devices "${1:-4}" DWAN |
||||
for i in $DWAN; do ipt$1_del FORWARD -o $i -j forwarding_rule_zapret ; done |
for i in $DWAN; do ipt"$1"_del FORWARD -o "$i" -j forwarding_rule_zapret; done |
||||
ip$1tables -F forwarding_rule_zapret 2>/dev/null |
ip"$1"tables -F forwarding_rule_zapret 2>/dev/null |
||||
ip$1tables -X forwarding_rule_zapret 2>/dev/null |
ip"$1"tables -X forwarding_rule_zapret 2>/dev/null |
||||
} |
} |
||||
flow_offloading_exempt_v() |
flow_offloading_exempt_v() { |
||||
{ |
# $1 = '' for IPv4, '6' for IPv6 |
||||
# $1 = '' for ipv4, '6' for ipv6 |
is_ipt_flow_offload_avail "$1" || return 0 |
||||
is_ipt_flow_offload_avail $1 || return 0 |
|
||||
|
|
||||
flow_offloading_unexempt_v $1 |
flow_offloading_unexempt_v "$1" |
||||
|
|
||||
[ "$FLOWOFFLOAD" = 'software' -o "$FLOWOFFLOAD" = 'hardware' ] && { |
[ "$FLOWOFFLOAD" = 'software' -o "$FLOWOFFLOAD" = 'hardware' ] && { |
||||
ip$1tables -N forwarding_rule_zapret |
ip"$1"tables -N forwarding_rule_zapret |
||||
|
|
||||
# remove outgoing interface |
# remove outgoing interface |
||||
list_nfqws_rules $1 | sed -re 's/-o +[^ ]+//g' | |
list_nfqws_rules "$1" | sed -re 's/-o +[^ ]+//g' | |
||||
while read rule; do |
while read rule; do |
||||
apply_flow_offloading_exempt_rule "$1" $rule |
apply_flow_offloading_exempt_rule "$1" "$rule" |
||||
done |
done |
||||
|
|
||||
apply_flow_offloading_enable_rule $1 |
apply_flow_offloading_enable_rule "$1" |
||||
|
|
||||
# only outgoing to WAN packets trigger flow offloading |
# only outgoing to WAN packets trigger flow offloading |
||||
local DWAN |
local DWAN |
||||
network_find_wanX_devices ${1:-4} DWAN |
network_find_wanX_devices "${1:-4}" DWAN |
||||
for i in $DWAN; do ipt$1 FORWARD -o $i -j forwarding_rule_zapret; done |
for i in $DWAN; do ipt"$1" FORWARD -o "$i" -j forwarding_rule_zapret; done |
||||
} |
} |
||||
return 0 |
return 0 |
||||
} |
} |
||||
flow_offloading_exempt() |
flow_offloading_exempt() { |
||||
{ |
|
||||
[ "$DISABLE_IPV4" = "1" ] || flow_offloading_exempt_v |
[ "$DISABLE_IPV4" = "1" ] || flow_offloading_exempt_v |
||||
[ "$DISABLE_IPV6" = "1" ] || flow_offloading_exempt_v 6 |
[ "$DISABLE_IPV6" = "1" ] || flow_offloading_exempt_v 6 |
||||
} |
} |
||||
flow_offloading_unexempt() |
flow_offloading_unexempt() { |
||||
{ |
|
||||
[ "$DISABLE_IPV4" = "1" ] || flow_offloading_unexempt_v |
[ "$DISABLE_IPV4" = "1" ] || flow_offloading_unexempt_v |
||||
[ "$DISABLE_IPV6" = "1" ] || flow_offloading_unexempt_v 6 |
[ "$DISABLE_IPV6" = "1" ] || flow_offloading_unexempt_v 6 |
||||
} |
} |
||||
|
|
||||
|
nft_fill_ifsets_overload() { |
||||
|
|
||||
nft_fill_ifsets_overload() |
|
||||
{ |
|
||||
local ifaces DLAN DWAN DWAN6 PDLAN PDWAN PDWAN6 |
local ifaces DLAN DWAN DWAN6 PDLAN PDWAN PDWAN6 |
||||
|
|
||||
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
||||
@ -255,29 +226,23 @@ nft_fill_ifsets_overload() |
|||||
nft_fill_ifsets "$DLAN" "$DWAN" "$DWAN6" "$PDLAN" "$PDWAN" "$PDWAN6" |
nft_fill_ifsets "$DLAN" "$DWAN" "$DWAN6" "$PDLAN" "$PDWAN" "$PDWAN6" |
||||
} |
} |
||||
|
|
||||
nft_fw_tpws4() |
nft_fw_tpws4() { |
||||
{ |
_nft_fw_tpws4 "$1" "$2" always_apply_wan_filter |
||||
_nft_fw_tpws4 "$1" $2 always_apply_wan_filter |
|
||||
} |
} |
||||
nft_fw_tpws6() |
nft_fw_tpws6() { |
||||
{ |
|
||||
local DLAN |
local DLAN |
||||
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
call_for_multiple_items network_get_device DLAN "$OPENWRT_LAN" |
||||
_nft_fw_tpws6 "$1" $2 "$DLAN" always_apply_wan_filter |
_nft_fw_tpws6 "$1" "$2" "$DLAN" always_apply_wan_filter |
||||
} |
} |
||||
nft_fw_nfqws_post4() |
nft_fw_nfqws_post4() { |
||||
{ |
_nft_fw_nfqws_post4 "$1" "$2" always_apply_wan_filter |
||||
_nft_fw_nfqws_post4 "$1" $2 always_apply_wan_filter |
|
||||
} |
} |
||||
nft_fw_nfqws_post6() |
nft_fw_nfqws_post6() { |
||||
{ |
_nft_fw_nfqws_post6 "$1" "$2" always_apply_wan_filter |
||||
_nft_fw_nfqws_post6 "$1" $2 always_apply_wan_filter |
|
||||
} |
} |
||||
nft_fw_nfqws_pre4() |
nft_fw_nfqws_pre4() { |
||||
{ |
_nft_fw_nfqws_pre4 "$1" "$2" always_apply_wan_filter |
||||
_nft_fw_nfqws_pre4 "$1" $2 always_apply_wan_filter |
|
||||
} |
} |
||||
nft_fw_nfqws_pre6() |
nft_fw_nfqws_pre6() { |
||||
{ |
_nft_fw_nfqws_pre6 "$1" "$2" always_apply_wan_filter |
||||
_nft_fw_nfqws_pre6 "$1" $2 always_apply_wan_filter |
|
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue