merge changes of my version

This commit is contained in:
pexcn 2022-12-14 00:28:15 +08:00
parent d19292e6ab
commit e14bb72989
3 changed files with 71 additions and 35 deletions

View File

@ -34,5 +34,8 @@ COPY --from=builder /usr/local/bin/phantun-server /usr/local/bin/
COPY --from=builder /usr/local/bin/phantun-client /usr/local/bin/ COPY --from=builder /usr/local/bin/phantun-client /usr/local/bin/
COPY docker/phantun.sh /usr/local/bin/ COPY docker/phantun.sh /usr/local/bin/
ENV USE_IPTABLES_NFT_BACKEND=0
ENV RUST_LOG=INFO
ENTRYPOINT ["phantun.sh"] ENTRYPOINT ["phantun.sh"]
CMD ["phantun-server", "--help"] CMD ["phantun-server", "--help"]

View File

@ -9,6 +9,7 @@ services:
privileged: true privileged: true
environment: environment:
TZ: Asia/Taipei TZ: Asia/Taipei
USE_IPTABLES_NFT_BACKEND: 1
RUST_LOG: INFO RUST_LOG: INFO
command: > command: >
phantun-server --local 1985 --remote 127.0.0.1:1984 --ipv4-only phantun-server --local 1985 --remote 127.0.0.1:1984 --ipv4-only
@ -21,6 +22,7 @@ services:
privileged: true privileged: true
environment: environment:
TZ: Asia/Taipei TZ: Asia/Taipei
USE_IPTABLES_NFT_BACKEND: 1
RUST_LOG: INFO RUST_LOG: INFO
command: > command: >
phantun-client --local 127.0.0.1:1984 --remote 11.22.33.44:1985 --ipv4-only phantun-client --local 127.0.0.1:1984 --remote 11.22.33.44:1985 --ipv4-only

View File

@ -1,5 +1,15 @@
#!/bin/sh #!/bin/sh
# alias settings must be global, and must be defined before the function being called with the alias
if [ "$USE_IPTABLES_NFT_BACKEND" = 1 ]; then
alias iptables=iptables-nft
alias iptables-save=iptables-nft-save
alias iptables-restore=iptables-nft-restore
alias ip6tables=ip6tables-nft
alias ip6tables-save=ip6tables-nft-save
alias ip6tables-restore=ip6tables-nft-restore
fi
info() { info() {
local green='\e[0;32m' local green='\e[0;32m'
local clear='\e[0m' local clear='\e[0m'
@ -81,26 +91,12 @@ _get_port_from_args() {
_is_server_mode "$1" && echo $value || echo $value | awk -F ':' '{print $2}' _is_server_mode "$1" && echo $value || echo $value | awk -F ':' '{print $2}'
} }
_stop_process() { _iptables() {
kill $(pidof phantun-server phantun-client) iptables -w 10 "$@"
info "terminate phantun process."
} }
_revoke_iptables() { _ip6tables() {
local tun=$(_get_tun_from_args "$@") ip6tables -w 10 "$@"
local port=$(_get_port_from_args "$@")
local comment="phantun_${tun}_${port}"
iptables-save | grep -v "${comment}" | iptables-restore -w 10
info "remove iptables rule: [${comment}]"
}
_revoke_ip6tables() {
! _is_ipv4_only "$@" || return
local tun=$(_get_tun_from_args "$@")
local port=$(_get_port_from_args "$@")
local comment="phantun_${tun}_${port}"
ip6tables-save | grep -v "${comment}" | ip6tables-restore -w 10
info "remove ip6tables rule: [${comment}]"
} }
apply_sysctl() { apply_sysctl() {
@ -118,17 +114,17 @@ apply_iptables() {
local comment="phantun_${tun}_${port}" local comment="phantun_${tun}_${port}"
if _check_rule_by_comment "${comment}"; then if _check_rule_by_comment "${comment}"; then
warn "iptables rule already exist, maybe needs to check." warn "iptables rules already exist, maybe needs to check."
else else
iptables -w 10 -A FORWARD -i $tun -j ACCEPT -m comment --comment "${comment}" _iptables -A FORWARD -i $tun -j ACCEPT -m comment --comment "${comment}" || error "iptables filter rule add failed."
iptables -w 10 -A FORWARD -o $tun -j ACCEPT -m comment --comment "${comment}" _iptables -A FORWARD -o $tun -j ACCEPT -m comment --comment "${comment}" || error "iptables filter rule add failed."
if _is_server_mode "$1"; then if _is_server_mode "$1"; then
info "add iptables DNAT rule: [${comment}]: ${interface} -> ${tun}, ${address} -> ${peer}" info "iptables DNAT rule added: [${comment}]: ${interface} -> ${tun}, ${address} -> ${peer}"
iptables -w 10 -t nat -A PREROUTING -p tcp -i $interface --dport $port -j DNAT --to-destination $peer \ _iptables -t nat -A PREROUTING -p tcp -i $interface --dport $port -j DNAT --to-destination $peer \
-m comment --comment "${comment}" || error "iptables DNAT rule add failed." -m comment --comment "${comment}" || error "iptables DNAT rule add failed."
else else
info "add iptables SNAT rule: [${comment}]: ${tun} -> ${interface}, ${peer} -> ${address}" info "iptables SNAT rule added: [${comment}]: ${tun} -> ${interface}, ${peer} -> ${address}"
iptables -w 10 -t nat -A POSTROUTING -s $peer -o $interface -j SNAT --to-source $address \ _iptables -t nat -A POSTROUTING -s $peer -o $interface -j SNAT --to-source $address \
-m comment --comment "${comment}" || error "iptables SNAT rule add failed." -m comment --comment "${comment}" || error "iptables SNAT rule add failed."
fi fi
fi fi
@ -145,27 +141,62 @@ apply_ip6tables() {
local comment="phantun_${tun}_${port}" local comment="phantun_${tun}_${port}"
if _check_rule6_by_comment "${comment}"; then if _check_rule6_by_comment "${comment}"; then
warn "ip6tables rule already exist, maybe needs to check." warn "ip6tables rules already exist, maybe needs to check."
else else
ip6tables -w 10 -A FORWARD -i $tun -j ACCEPT -m comment --comment "${comment}" _ip6tables -A FORWARD -i $tun -j ACCEPT -m comment --comment "${comment}" || error "ip6tables filter rule add failed."
ip6tables -w 10 -A FORWARD -o $tun -j ACCEPT -m comment --comment "${comment}" _ip6tables -A FORWARD -o $tun -j ACCEPT -m comment --comment "${comment}" || error "ip6tables filter rule add failed."
if _is_server_mode "$1"; then if _is_server_mode "$1"; then
info "add ip6tables DNAT rule: [${comment}]: ${interface} -> ${tun}, ${address} -> ${peer}" info "ip6tables DNAT rule added: [${comment}]: ${interface} -> ${tun}, ${address} -> ${peer}"
ip6tables -w 10 -t nat -A PREROUTING -p tcp -i $interface --dport $port -j DNAT --to-destination $peer \ _ip6tables -t nat -A PREROUTING -p tcp -i $interface --dport $port -j DNAT --to-destination $peer \
-m comment --comment "${comment}" || error "ip6tables DNAT rule add failed." -m comment --comment "${comment}" || error "ip6tables DNAT rule add failed."
else else
info "add ip6tables SNAT rule: [${comment}]: ${tun} -> ${interface}, ${peer} -> ${address}" info "ip6tables SNAT rule added: [${comment}]: ${tun} -> ${interface}, ${peer} -> ${address}"
ip6tables -w 10 -t nat -A POSTROUTING -s $peer -o $interface -j SNAT --to-source $address \ _ip6tables -t nat -A POSTROUTING -s $peer -o $interface -j SNAT --to-source $address \
-m comment --comment "${comment}" || error "ip6tables SNAT rule add failed." -m comment --comment "${comment}" || error "ip6tables SNAT rule add failed."
fi fi
fi fi
} }
stop_process() {
kill $(pidof phantun-server phantun-client)
info "terminate phantun process."
}
revoke_iptables() {
local tun=$(_get_tun_from_args "$@")
local port=$(_get_port_from_args "$@")
local comment="phantun_${tun}_${port}"
iptables-save -t filter | grep "${comment}" | while read rule; do
_iptables -t filter ${rule/-A/-D} || error "iptables filter rule remove failed."
done
iptables-save -t nat | grep "${comment}" | while read rule; do
_iptables -t nat ${rule/-A/-D} || error "iptables nat rule remove failed."
done
info "iptables rule: [${comment}] removed."
}
revoke_ip6tables() {
! _is_ipv4_only "$@" || return
local tun=$(_get_tun_from_args "$@")
local port=$(_get_port_from_args "$@")
local comment="phantun_${tun}_${port}"
ip6tables-save -t filter | grep "${comment}" | while read rule; do
_ip6tables -t filter ${rule/-A/-D} || error "ip6tables filter rule remove failed."
done
ip6tables-save -t nat | grep "${comment}" | while read rule; do
_ip6tables -t nat ${rule/-A/-D} || error "ip6tables nat rule remove failed."
done
info "ip6tables rule: [${comment}] removed."
}
graceful_stop() { graceful_stop() {
warn "caught SIGTERM or SIGINT signal, graceful stopping..." warn "caught SIGTERM or SIGINT signal, graceful stopping..."
_stop_process stop_process
_revoke_iptables "$@" revoke_iptables "$@"
_revoke_ip6tables "$@" revoke_ip6tables "$@"
} }
start_phantun() { start_phantun() {