2018-07-15 22:23:20 +08:00
|
|
|
package proxy
|
|
|
|
|
|
|
|
import (
|
2018-11-21 13:47:46 +08:00
|
|
|
"fmt"
|
2022-10-06 19:23:38 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/sing_tun"
|
2022-07-29 09:08:35 +08:00
|
|
|
"golang.org/x/exp/slices"
|
2018-11-21 13:47:46 +08:00
|
|
|
"net"
|
2022-05-03 19:13:37 +08:00
|
|
|
"sort"
|
2018-11-21 13:47:46 +08:00
|
|
|
"strconv"
|
2020-06-07 17:56:21 +08:00
|
|
|
"sync"
|
2018-07-15 22:23:20 +08:00
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
"github.com/Dreamacro/clash/adapter/inbound"
|
2022-10-06 19:23:38 +08:00
|
|
|
"github.com/Dreamacro/clash/component/ebpf"
|
2021-11-17 16:03:47 +08:00
|
|
|
"github.com/Dreamacro/clash/config"
|
2021-06-13 17:23:10 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2022-10-06 19:23:38 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/autoredir"
|
2021-06-13 17:23:10 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/http"
|
2022-10-06 19:23:38 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/inner"
|
2021-06-13 17:23:10 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/mixed"
|
|
|
|
"github.com/Dreamacro/clash/listener/redir"
|
|
|
|
"github.com/Dreamacro/clash/listener/socks"
|
|
|
|
"github.com/Dreamacro/clash/listener/tproxy"
|
2020-03-08 21:58:49 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2018-07-15 22:23:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-05-24 12:43:26 +08:00
|
|
|
allowLan = false
|
|
|
|
bindAddress = "*"
|
2022-07-22 15:16:09 +08:00
|
|
|
inboundTfo = false
|
2018-11-21 13:47:46 +08:00
|
|
|
|
2021-08-04 23:52:50 +08:00
|
|
|
socksListener *socks.Listener
|
|
|
|
socksUDPListener *socks.UDPListener
|
|
|
|
httpListener *http.Listener
|
|
|
|
redirListener *redir.Listener
|
|
|
|
redirUDPListener *tproxy.UDPListener
|
|
|
|
tproxyListener *tproxy.Listener
|
|
|
|
tproxyUDPListener *tproxy.UDPListener
|
|
|
|
mixedListener *mixed.Listener
|
|
|
|
mixedUDPLister *socks.UDPListener
|
2022-10-06 19:23:38 +08:00
|
|
|
tunLister *sing_tun.Listener
|
2022-07-29 09:08:35 +08:00
|
|
|
autoRedirListener *autoredir.Listener
|
|
|
|
autoRedirProgram *ebpf.TcEBpfProgram
|
2022-08-22 23:17:41 +08:00
|
|
|
tcProgram *ebpf.TcEBpfProgram
|
2020-06-07 17:56:21 +08:00
|
|
|
|
|
|
|
// lock for recreate function
|
2022-07-29 09:08:35 +08:00
|
|
|
socksMux sync.Mutex
|
|
|
|
httpMux sync.Mutex
|
|
|
|
redirMux sync.Mutex
|
|
|
|
tproxyMux sync.Mutex
|
|
|
|
mixedMux sync.Mutex
|
|
|
|
tunMux sync.Mutex
|
|
|
|
autoRedirMux sync.Mutex
|
|
|
|
tcMux sync.Mutex
|
2022-11-03 18:56:03 +08:00
|
|
|
|
|
|
|
lastTunConf config.Tun
|
2018-07-15 22:23:20 +08:00
|
|
|
)
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
type Ports struct {
|
2020-11-09 10:46:10 +08:00
|
|
|
Port int `json:"port"`
|
|
|
|
SocksPort int `json:"socks-port"`
|
|
|
|
RedirPort int `json:"redir-port"`
|
|
|
|
TProxyPort int `json:"tproxy-port"`
|
|
|
|
MixedPort int `json:"mixed-port"`
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2022-05-03 19:13:37 +08:00
|
|
|
func GetTunConf() config.Tun {
|
2022-11-03 18:56:03 +08:00
|
|
|
if tunLister == nil {
|
2022-05-03 19:13:37 +08:00
|
|
|
return config.Tun{
|
|
|
|
Enable: false,
|
|
|
|
}
|
|
|
|
}
|
2022-11-03 18:56:03 +08:00
|
|
|
return tunLister.Config()
|
2022-05-03 19:13:37 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func AllowLan() bool {
|
|
|
|
return allowLan
|
|
|
|
}
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
func BindAddress() string {
|
|
|
|
return bindAddress
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func SetAllowLan(al bool) {
|
|
|
|
allowLan = al
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
func SetBindAddress(host string) {
|
|
|
|
bindAddress = host
|
|
|
|
}
|
|
|
|
|
2022-07-22 15:16:09 +08:00
|
|
|
func SetInboundTfo(itfo bool) {
|
|
|
|
inboundTfo = itfo
|
|
|
|
}
|
|
|
|
|
2022-05-08 00:04:16 +08:00
|
|
|
func NewInner(tcpIn chan<- C.ConnContext) {
|
|
|
|
inner.New(tcpIn)
|
|
|
|
}
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
func ReCreateHTTP(port int, tcpIn chan<- C.ConnContext) {
|
2020-06-07 17:56:21 +08:00
|
|
|
httpMux.Lock()
|
|
|
|
defer httpMux.Unlock()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Start HTTP server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
addr := genAddr(bindAddress, port, allowLan)
|
2018-11-21 13:47:46 +08:00
|
|
|
|
|
|
|
if httpListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if httpListener.RawAddress() == addr {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2018-11-22 11:54:01 +08:00
|
|
|
httpListener.Close()
|
2018-11-21 13:47:46 +08:00
|
|
|
httpListener = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if portIsZero(addr) {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2022-07-22 15:16:09 +08:00
|
|
|
httpListener, err = http.New(addr, inboundTfo, tcpIn)
|
2018-07-15 22:23:20 +08:00
|
|
|
if err != nil {
|
2022-01-04 17:58:50 +08:00
|
|
|
log.Errorln("Start HTTP server error: %s", err.Error())
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
log.Infoln("HTTP proxy listening at: %s", httpListener.Address())
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
func ReCreateSocks(port int, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) {
|
2020-06-07 17:56:21 +08:00
|
|
|
socksMux.Lock()
|
|
|
|
defer socksMux.Unlock()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Start SOCKS server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
addr := genAddr(bindAddress, port, allowLan)
|
2018-11-21 13:47:46 +08:00
|
|
|
|
2019-10-13 23:51:26 +08:00
|
|
|
shouldTCPIgnore := false
|
|
|
|
shouldUDPIgnore := false
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
if socksListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if socksListener.RawAddress() != addr {
|
2019-10-13 11:19:46 +08:00
|
|
|
socksListener.Close()
|
|
|
|
socksListener = nil
|
2019-10-13 23:51:26 +08:00
|
|
|
} else {
|
|
|
|
shouldTCPIgnore = true
|
2019-10-13 11:19:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if socksUDPListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if socksUDPListener.RawAddress() != addr {
|
2019-10-13 11:19:46 +08:00
|
|
|
socksUDPListener.Close()
|
|
|
|
socksUDPListener = nil
|
2019-10-13 23:51:26 +08:00
|
|
|
} else {
|
|
|
|
shouldUDPIgnore = true
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-13 23:51:26 +08:00
|
|
|
if shouldTCPIgnore && shouldUDPIgnore {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2019-10-13 23:51:26 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
if portIsZero(addr) {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2022-07-22 15:16:09 +08:00
|
|
|
tcpListener, err := socks.New(addr, inboundTfo, tcpIn)
|
2018-07-15 22:23:20 +08:00
|
|
|
if err != nil {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
udpListener, err := socks.NewUDP(addr, udpIn)
|
2019-07-25 17:47:39 +08:00
|
|
|
if err != nil {
|
2019-10-13 11:19:46 +08:00
|
|
|
tcpListener.Close()
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
|
|
|
|
2019-10-13 11:19:46 +08:00
|
|
|
socksListener = tcpListener
|
|
|
|
socksUDPListener = udpListener
|
|
|
|
|
2021-07-18 16:09:09 +08:00
|
|
|
log.Infoln("SOCKS proxy listening at: %s", socksListener.Address())
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
func ReCreateRedir(port int, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) {
|
2020-06-07 17:56:21 +08:00
|
|
|
redirMux.Lock()
|
|
|
|
defer redirMux.Unlock()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Start Redir server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
addr := genAddr(bindAddress, port, allowLan)
|
2018-11-21 13:47:46 +08:00
|
|
|
|
|
|
|
if redirListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if redirListener.RawAddress() == addr {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2018-11-22 11:54:01 +08:00
|
|
|
redirListener.Close()
|
2018-11-21 13:47:46 +08:00
|
|
|
redirListener = nil
|
|
|
|
}
|
|
|
|
|
2020-03-08 21:58:49 +08:00
|
|
|
if redirUDPListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if redirUDPListener.RawAddress() == addr {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-03-08 21:58:49 +08:00
|
|
|
}
|
|
|
|
redirUDPListener.Close()
|
|
|
|
redirUDPListener = nil
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
if portIsZero(addr) {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
redirListener, err = redir.New(addr, tcpIn)
|
2018-08-12 04:00:34 +08:00
|
|
|
if err != nil {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
redirUDPListener, err = tproxy.NewUDP(addr, udpIn)
|
2020-03-08 21:58:49 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warnln("Failed to start Redir UDP Listener: %s", err)
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
log.Infoln("Redirect proxy listening at: %s", redirListener.Address())
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
func ReCreateTProxy(port int, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) {
|
2020-11-09 10:46:10 +08:00
|
|
|
tproxyMux.Lock()
|
|
|
|
defer tproxyMux.Unlock()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Start TProxy server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-11-09 10:46:10 +08:00
|
|
|
addr := genAddr(bindAddress, port, allowLan)
|
|
|
|
|
|
|
|
if tproxyListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if tproxyListener.RawAddress() == addr {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|
|
|
|
tproxyListener.Close()
|
|
|
|
tproxyListener = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if tproxyUDPListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if tproxyUDPListener.RawAddress() == addr {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|
|
|
|
tproxyUDPListener.Close()
|
|
|
|
tproxyUDPListener = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if portIsZero(addr) {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
tproxyListener, err = tproxy.New(addr, tcpIn)
|
2020-11-09 10:46:10 +08:00
|
|
|
if err != nil {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
tproxyUDPListener, err = tproxy.NewUDP(addr, udpIn)
|
2020-11-09 10:46:10 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warnln("Failed to start TProxy UDP Listener: %s", err)
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
log.Infoln("TProxy server listening at: %s", tproxyListener.Address())
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
func ReCreateMixed(port int, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) {
|
2020-06-07 17:56:21 +08:00
|
|
|
mixedMux.Lock()
|
|
|
|
defer mixedMux.Unlock()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Start Mixed(http+socks) server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-05-12 11:29:53 +08:00
|
|
|
addr := genAddr(bindAddress, port, allowLan)
|
|
|
|
|
|
|
|
shouldTCPIgnore := false
|
|
|
|
shouldUDPIgnore := false
|
|
|
|
|
|
|
|
if mixedListener != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if mixedListener.RawAddress() != addr {
|
2020-05-12 11:29:53 +08:00
|
|
|
mixedListener.Close()
|
|
|
|
mixedListener = nil
|
|
|
|
} else {
|
|
|
|
shouldTCPIgnore = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if mixedUDPLister != nil {
|
2021-08-01 00:35:37 +08:00
|
|
|
if mixedUDPLister.RawAddress() != addr {
|
2020-05-12 11:29:53 +08:00
|
|
|
mixedUDPLister.Close()
|
|
|
|
mixedUDPLister = nil
|
|
|
|
} else {
|
|
|
|
shouldUDPIgnore = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if shouldTCPIgnore && shouldUDPIgnore {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-05-12 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if portIsZero(addr) {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-05-12 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
2022-07-22 15:16:09 +08:00
|
|
|
mixedListener, err = mixed.New(addr, inboundTfo, tcpIn)
|
2020-05-12 11:29:53 +08:00
|
|
|
if err != nil {
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-05-12 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
mixedUDPLister, err = socks.NewUDP(addr, udpIn)
|
2020-05-12 11:29:53 +08:00
|
|
|
if err != nil {
|
|
|
|
mixedListener.Close()
|
2021-12-26 22:08:53 +08:00
|
|
|
return
|
2020-05-12 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
2021-07-18 16:09:09 +08:00
|
|
|
log.Infoln("Mixed(http+socks) proxy listening at: %s", mixedListener.Address())
|
2020-05-12 11:29:53 +08:00
|
|
|
}
|
|
|
|
|
2022-11-03 18:56:03 +08:00
|
|
|
func ReCreateTun(tunConf config.Tun, tcpIn chan<- C.ConnContext, udpIn chan<- *inbound.PacketAdapter) {
|
2021-11-17 16:03:47 +08:00
|
|
|
tunMux.Lock()
|
2022-11-02 23:58:51 +08:00
|
|
|
defer func() {
|
|
|
|
lastTunConf = tunConf
|
|
|
|
tunMux.Unlock()
|
|
|
|
}()
|
2021-11-17 16:03:47 +08:00
|
|
|
|
2022-02-04 06:11:24 +08:00
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
2022-03-09 05:08:35 +08:00
|
|
|
log.Errorln("Start TUN listening error: %s", err.Error())
|
2022-05-19 19:19:19 +08:00
|
|
|
Cleanup(false)
|
2022-02-04 06:11:24 +08:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2022-05-19 19:19:19 +08:00
|
|
|
if !hasTunConfigChange(tunConf) {
|
2022-10-10 09:32:42 +08:00
|
|
|
if tunLister != nil {
|
|
|
|
tunLister.FlushDefaultInterface()
|
|
|
|
}
|
2022-05-03 19:13:37 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-19 19:19:19 +08:00
|
|
|
Cleanup(true)
|
2021-11-17 16:03:47 +08:00
|
|
|
|
2022-03-09 05:08:35 +08:00
|
|
|
if !tunConf.Enable {
|
2022-02-04 06:11:24 +08:00
|
|
|
return
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|
2022-05-03 19:13:37 +08:00
|
|
|
|
2022-11-03 18:04:22 +08:00
|
|
|
tunLister, err = sing_tun.New(tunConf, tcpIn, udpIn)
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|
|
|
|
|
2022-08-22 23:17:41 +08:00
|
|
|
func ReCreateRedirToTun(ifaceNames []string) {
|
|
|
|
tcMux.Lock()
|
|
|
|
defer tcMux.Unlock()
|
|
|
|
|
|
|
|
nicArr := ifaceNames
|
|
|
|
slices.Sort(nicArr)
|
|
|
|
nicArr = slices.Compact(nicArr)
|
|
|
|
|
|
|
|
if tcProgram != nil {
|
|
|
|
tcProgram.Close()
|
|
|
|
tcProgram = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(nicArr) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-03 18:56:03 +08:00
|
|
|
tunConf := GetTunConf()
|
|
|
|
|
|
|
|
if !tunConf.Enable {
|
2022-08-22 23:17:41 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-03 18:56:03 +08:00
|
|
|
program, err := ebpf.NewTcEBpfProgram(nicArr, tunConf.Device)
|
2022-08-22 23:17:41 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Attached tc ebpf program error: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
tcProgram = program
|
|
|
|
|
|
|
|
log.Infoln("Attached tc ebpf program to interfaces %v", tcProgram.RawNICs())
|
|
|
|
}
|
|
|
|
|
2022-07-29 09:08:35 +08:00
|
|
|
func ReCreateAutoRedir(ifaceNames []string, tcpIn chan<- C.ConnContext, _ chan<- *inbound.PacketAdapter) {
|
|
|
|
autoRedirMux.Lock()
|
|
|
|
defer autoRedirMux.Unlock()
|
|
|
|
|
|
|
|
var err error
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
2022-08-08 10:21:16 +08:00
|
|
|
if autoRedirListener != nil {
|
|
|
|
_ = autoRedirListener.Close()
|
|
|
|
autoRedirListener = nil
|
2022-07-29 09:08:35 +08:00
|
|
|
}
|
|
|
|
if autoRedirProgram != nil {
|
|
|
|
autoRedirProgram.Close()
|
|
|
|
autoRedirProgram = nil
|
|
|
|
}
|
|
|
|
log.Errorln("Start auto redirect server error: %s", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
nicArr := ifaceNames
|
|
|
|
slices.Sort(nicArr)
|
|
|
|
nicArr = slices.Compact(nicArr)
|
|
|
|
|
2022-08-08 10:21:16 +08:00
|
|
|
if autoRedirListener != nil && autoRedirProgram != nil {
|
|
|
|
_ = autoRedirListener.Close()
|
2022-07-29 09:08:35 +08:00
|
|
|
autoRedirProgram.Close()
|
2022-08-08 10:21:16 +08:00
|
|
|
autoRedirListener = nil
|
2022-07-29 09:08:35 +08:00
|
|
|
autoRedirProgram = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(nicArr) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-06 19:23:38 +08:00
|
|
|
defaultRouteInterfaceName, err := ebpf.GetAutoDetectInterface()
|
2022-07-29 09:08:35 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
addr := genAddr("*", C.TcpAutoRedirPort, true)
|
|
|
|
|
|
|
|
autoRedirListener, err = autoredir.New(addr, tcpIn)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
autoRedirProgram, err = ebpf.NewRedirEBpfProgram(nicArr, autoRedirListener.TCPAddr().Port(), defaultRouteInterfaceName)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
autoRedirListener.SetLookupFunc(autoRedirProgram.Lookup)
|
|
|
|
|
|
|
|
log.Infoln("Auto redirect proxy listening at: %s, attached tc ebpf program to interfaces %v", autoRedirListener.Address(), autoRedirProgram.RawNICs())
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
// GetPorts return the ports of proxy servers
|
|
|
|
func GetPorts() *Ports {
|
|
|
|
ports := &Ports{}
|
|
|
|
|
|
|
|
if httpListener != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
_, portStr, _ := net.SplitHostPort(httpListener.Address())
|
2018-11-21 13:47:46 +08:00
|
|
|
port, _ := strconv.Atoi(portStr)
|
|
|
|
ports.Port = port
|
|
|
|
}
|
|
|
|
|
|
|
|
if socksListener != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
_, portStr, _ := net.SplitHostPort(socksListener.Address())
|
2018-11-21 13:47:46 +08:00
|
|
|
port, _ := strconv.Atoi(portStr)
|
|
|
|
ports.SocksPort = port
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
if redirListener != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
_, portStr, _ := net.SplitHostPort(redirListener.Address())
|
2018-11-21 13:47:46 +08:00
|
|
|
port, _ := strconv.Atoi(portStr)
|
|
|
|
ports.RedirPort = port
|
|
|
|
}
|
|
|
|
|
2020-11-09 10:46:10 +08:00
|
|
|
if tproxyListener != nil {
|
|
|
|
_, portStr, _ := net.SplitHostPort(tproxyListener.Address())
|
|
|
|
port, _ := strconv.Atoi(portStr)
|
|
|
|
ports.TProxyPort = port
|
|
|
|
}
|
|
|
|
|
2020-05-12 11:29:53 +08:00
|
|
|
if mixedListener != nil {
|
|
|
|
_, portStr, _ := net.SplitHostPort(mixedListener.Address())
|
|
|
|
port, _ := strconv.Atoi(portStr)
|
|
|
|
ports.MixedPort = port
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
return ports
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-07-15 22:23:20 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func portIsZero(addr string) bool {
|
|
|
|
_, port, err := net.SplitHostPort(addr)
|
|
|
|
if port == "0" || port == "" || err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
func genAddr(host string, port int, allowLan bool) string {
|
2018-11-21 13:47:46 +08:00
|
|
|
if allowLan {
|
2019-08-08 13:45:07 +08:00
|
|
|
if host == "*" {
|
|
|
|
return fmt.Sprintf(":%d", port)
|
|
|
|
}
|
2021-03-24 01:00:21 +08:00
|
|
|
return fmt.Sprintf("%s:%d", host, port)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2019-08-08 13:45:07 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
return fmt.Sprintf("127.0.0.1:%d", port)
|
2018-07-15 22:23:20 +08:00
|
|
|
}
|
2021-11-17 16:03:47 +08:00
|
|
|
|
2022-11-03 18:56:03 +08:00
|
|
|
func hasTunConfigChange(tunConf config.Tun) bool {
|
|
|
|
if lastTunConf.Enable != tunConf.Enable ||
|
|
|
|
lastTunConf.Device != tunConf.Device ||
|
|
|
|
lastTunConf.Stack != tunConf.Stack ||
|
|
|
|
lastTunConf.AutoRoute != tunConf.AutoRoute ||
|
|
|
|
lastTunConf.AutoDetectInterface != tunConf.AutoDetectInterface {
|
2022-05-03 19:13:37 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(lastTunConf.DNSHijack) != len(tunConf.DNSHijack) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(lastTunConf.DNSHijack, func(i, j int) bool {
|
|
|
|
return lastTunConf.DNSHijack[i].Addr().Less(lastTunConf.DNSHijack[j].Addr())
|
|
|
|
})
|
|
|
|
|
|
|
|
sort.Slice(tunConf.DNSHijack, func(i, j int) bool {
|
|
|
|
return tunConf.DNSHijack[i].Addr().Less(tunConf.DNSHijack[j].Addr())
|
|
|
|
})
|
|
|
|
|
|
|
|
for i, dns := range tunConf.DNSHijack {
|
|
|
|
if dns != lastTunConf.DNSHijack[i] {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 19:23:38 +08:00
|
|
|
if slices.Equal(tunConf.Inet4Address, lastTunConf.Inet4Address) && slices.Equal(tunConf.Inet6Address, lastTunConf.Inet6Address) {
|
2022-05-03 19:13:37 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-05-19 19:19:19 +08:00
|
|
|
func Cleanup(wait bool) {
|
2022-10-06 19:23:38 +08:00
|
|
|
if tunLister != nil {
|
|
|
|
tunLister.Close()
|
|
|
|
tunLister = nil
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|
2022-11-03 18:56:03 +08:00
|
|
|
lastTunConf = config.Tun{}
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|