2018-11-21 13:47:46 +08:00
|
|
|
package executor
|
|
|
|
|
|
|
|
import (
|
2019-12-01 13:22:47 +08:00
|
|
|
"fmt"
|
2021-12-04 17:41:13 +08:00
|
|
|
"net"
|
2019-12-01 13:22:47 +08:00
|
|
|
"os"
|
2021-12-04 17:41:13 +08:00
|
|
|
"runtime"
|
|
|
|
"strconv"
|
2021-11-17 16:03:47 +08:00
|
|
|
"strings"
|
2020-06-18 18:11:02 +08:00
|
|
|
"sync"
|
2019-12-01 13:22:47 +08:00
|
|
|
|
2022-01-21 22:38:02 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/tproxy"
|
|
|
|
|
2021-06-10 14:05:56 +08:00
|
|
|
"github.com/Dreamacro/clash/adapter"
|
|
|
|
"github.com/Dreamacro/clash/adapter/outboundgroup"
|
2019-06-27 17:04:25 +08:00
|
|
|
"github.com/Dreamacro/clash/component/auth"
|
2020-02-15 21:42:46 +08:00
|
|
|
"github.com/Dreamacro/clash/component/dialer"
|
2021-09-06 23:07:34 +08:00
|
|
|
"github.com/Dreamacro/clash/component/iface"
|
2021-02-18 23:41:50 +08:00
|
|
|
"github.com/Dreamacro/clash/component/profile"
|
|
|
|
"github.com/Dreamacro/clash/component/profile/cachefile"
|
2020-02-15 21:42:46 +08:00
|
|
|
"github.com/Dreamacro/clash/component/resolver"
|
2020-05-28 12:13:05 +08:00
|
|
|
"github.com/Dreamacro/clash/component/trie"
|
2018-11-21 13:47:46 +08:00
|
|
|
"github.com/Dreamacro/clash/config"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-07-04 20:32:59 +08:00
|
|
|
"github.com/Dreamacro/clash/constant/provider"
|
2018-12-05 21:13:29 +08:00
|
|
|
"github.com/Dreamacro/clash/dns"
|
2021-06-13 17:23:10 +08:00
|
|
|
P "github.com/Dreamacro/clash/listener"
|
|
|
|
authStore "github.com/Dreamacro/clash/listener/auth"
|
2021-11-17 16:03:47 +08:00
|
|
|
"github.com/Dreamacro/clash/listener/tun/dev"
|
2018-11-21 13:47:46 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2020-02-15 21:42:46 +08:00
|
|
|
"github.com/Dreamacro/clash/tunnel"
|
2018-11-21 13:47:46 +08:00
|
|
|
)
|
|
|
|
|
2021-10-10 23:44:09 +08:00
|
|
|
var mux sync.Mutex
|
2020-06-18 18:11:02 +08:00
|
|
|
|
2019-12-01 13:22:47 +08:00
|
|
|
func readConfig(path string) ([]byte, error) {
|
|
|
|
if _, err := os.Stat(path); os.IsNotExist(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-09 20:35:06 +08:00
|
|
|
data, err := os.ReadFile(path)
|
2019-12-01 13:22:47 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(data) == 0 {
|
2020-08-25 22:19:59 +08:00
|
|
|
return nil, fmt.Errorf("configuration file %s is empty", path)
|
2019-12-01 13:22:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return data, err
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
// Parse config with default config path
|
|
|
|
func Parse() (*config.Config, error) {
|
|
|
|
return ParseWithPath(C.Path.Config())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseWithPath parse config with custom config path
|
|
|
|
func ParseWithPath(path string) (*config.Config, error) {
|
2019-12-01 13:22:47 +08:00
|
|
|
buf, err := readConfig(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-12-25 15:12:11 +08:00
|
|
|
return ParseWithBytes(buf)
|
2019-12-01 13:22:47 +08:00
|
|
|
}
|
|
|
|
|
2019-12-25 15:12:11 +08:00
|
|
|
// ParseWithBytes config with buffer
|
2019-12-01 13:22:47 +08:00
|
|
|
func ParseWithBytes(buf []byte) (*config.Config, error) {
|
2019-12-25 15:12:11 +08:00
|
|
|
return config.Parse(buf)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyConfig dispatch configure to all parts
|
2018-11-30 17:42:40 +08:00
|
|
|
func ApplyConfig(cfg *config.Config, force bool) {
|
2020-06-18 18:11:02 +08:00
|
|
|
mux.Lock()
|
|
|
|
defer mux.Unlock()
|
|
|
|
|
2019-06-27 17:04:25 +08:00
|
|
|
updateUsers(cfg.Users)
|
2019-09-11 17:00:55 +08:00
|
|
|
updateHosts(cfg.Hosts)
|
2022-01-18 21:09:36 +08:00
|
|
|
updateProxies(cfg.Proxies, cfg.Providers)
|
|
|
|
updateRules(cfg.Rules, cfg.RuleProviders)
|
2022-01-05 00:33:42 +08:00
|
|
|
updateIPTables(cfg.DNS, cfg.General, cfg.Tun)
|
|
|
|
updateDNS(cfg.DNS, cfg.Tun)
|
2022-01-05 11:24:00 +08:00
|
|
|
updateGeneral(cfg.General, cfg.Tun, force)
|
|
|
|
updateTun(cfg.Tun)
|
2021-07-10 17:01:40 +08:00
|
|
|
updateExperimental(cfg)
|
2022-01-18 21:09:36 +08:00
|
|
|
loadProvider(cfg.RuleProviders, cfg.Providers)
|
2022-01-21 22:38:02 +08:00
|
|
|
updateProfile(cfg)
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetGeneral() *config.General {
|
|
|
|
ports := P.GetPorts()
|
2019-06-27 20:45:12 +08:00
|
|
|
authenticator := []string{}
|
|
|
|
if auth := authStore.Authenticator(); auth != nil {
|
|
|
|
authenticator = auth.Users()
|
|
|
|
}
|
|
|
|
|
|
|
|
general := &config.General{
|
2020-06-18 18:11:02 +08:00
|
|
|
Inbound: config.Inbound{
|
|
|
|
Port: ports.Port,
|
|
|
|
SocksPort: ports.SocksPort,
|
|
|
|
RedirPort: ports.RedirPort,
|
2020-11-09 10:46:10 +08:00
|
|
|
TProxyPort: ports.TProxyPort,
|
2020-06-18 18:11:02 +08:00
|
|
|
MixedPort: ports.MixedPort,
|
|
|
|
Authentication: authenticator,
|
|
|
|
AllowLan: P.AllowLan(),
|
|
|
|
BindAddress: P.BindAddress(),
|
|
|
|
},
|
|
|
|
Mode: tunnel.Mode(),
|
|
|
|
LogLevel: log.Level(),
|
2021-01-07 13:59:39 +08:00
|
|
|
IPv6: !resolver.DisableIPv6,
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2019-06-27 20:45:12 +08:00
|
|
|
|
|
|
|
return general
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2020-06-27 14:19:31 +08:00
|
|
|
func updateExperimental(c *config.Config) {}
|
2019-04-24 12:02:52 +08:00
|
|
|
|
2022-01-05 00:33:42 +08:00
|
|
|
func updateDNS(c *config.DNS, Tun *config.Tun) {
|
|
|
|
if !c.Enable && !Tun.Enable {
|
2020-02-15 21:42:46 +08:00
|
|
|
resolver.DefaultResolver = nil
|
2021-11-17 16:03:47 +08:00
|
|
|
resolver.MainResolver = nil
|
2020-09-17 10:48:42 +08:00
|
|
|
resolver.DefaultHostMapper = nil
|
|
|
|
dns.ReCreateServer("", nil, nil)
|
2018-12-05 21:13:29 +08:00
|
|
|
return
|
|
|
|
}
|
2020-09-17 10:48:42 +08:00
|
|
|
|
|
|
|
cfg := dns.Config{
|
2018-12-05 21:13:29 +08:00
|
|
|
Main: c.NameServer,
|
|
|
|
Fallback: c.Fallback,
|
|
|
|
IPv6: c.IPv6,
|
|
|
|
EnhancedMode: c.EnhancedMode,
|
2019-05-03 00:05:14 +08:00
|
|
|
Pool: c.FakeIPRange,
|
2020-08-11 10:28:17 +08:00
|
|
|
Hosts: c.Hosts,
|
2019-09-15 13:36:45 +08:00
|
|
|
FallbackFilter: dns.FallbackFilter{
|
2021-08-25 15:15:13 +08:00
|
|
|
GeoIP: c.FallbackFilter.GeoIP,
|
|
|
|
GeoIPCode: c.FallbackFilter.GeoIPCode,
|
|
|
|
IPCIDR: c.FallbackFilter.IPCIDR,
|
|
|
|
Domain: c.FallbackFilter.Domain,
|
2021-11-17 16:03:47 +08:00
|
|
|
GeoSite: c.FallbackFilter.GeoSite,
|
2019-09-15 13:36:45 +08:00
|
|
|
},
|
2020-02-15 21:42:46 +08:00
|
|
|
Default: c.DefaultNameserver,
|
2021-05-19 11:17:35 +08:00
|
|
|
Policy: c.NameServerPolicy,
|
2020-09-17 10:48:42 +08:00
|
|
|
}
|
2020-08-31 00:32:18 +08:00
|
|
|
|
2020-09-17 10:48:42 +08:00
|
|
|
r := dns.NewResolver(cfg)
|
2021-11-17 16:03:47 +08:00
|
|
|
mr := dns.NewMainResolver(r)
|
2020-09-17 10:48:42 +08:00
|
|
|
m := dns.NewEnhancer(cfg)
|
|
|
|
|
|
|
|
// reuse cache of old host mapper
|
|
|
|
if old := resolver.DefaultHostMapper; old != nil {
|
|
|
|
m.PatchFrom(old.(*dns.ResolverEnhancer))
|
2020-08-31 00:32:18 +08:00
|
|
|
}
|
|
|
|
|
2020-02-15 21:42:46 +08:00
|
|
|
resolver.DefaultResolver = r
|
2021-11-17 16:03:47 +08:00
|
|
|
resolver.MainResolver = mr
|
2020-09-17 10:48:42 +08:00
|
|
|
resolver.DefaultHostMapper = m
|
2022-01-05 00:33:42 +08:00
|
|
|
if Tun.Enable && !strings.EqualFold(Tun.Stack, "gVisor") {
|
2021-11-17 16:03:47 +08:00
|
|
|
resolver.DefaultLocalServer = dns.NewLocalServer(r, m)
|
|
|
|
} else {
|
|
|
|
resolver.DefaultLocalServer = nil
|
|
|
|
}
|
2020-09-17 10:48:42 +08:00
|
|
|
|
2021-12-09 23:00:54 +08:00
|
|
|
if c.Enable {
|
2022-01-04 17:31:07 +08:00
|
|
|
dns.ReCreateServer(c.Listen, r, m)
|
2022-01-04 17:58:50 +08:00
|
|
|
}
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
2020-05-28 12:13:05 +08:00
|
|
|
func updateHosts(tree *trie.DomainTrie) {
|
2020-02-15 21:42:46 +08:00
|
|
|
resolver.DefaultHosts = tree
|
2019-09-11 17:00:55 +08:00
|
|
|
}
|
|
|
|
|
2019-12-08 12:17:24 +08:00
|
|
|
func updateProxies(proxies map[string]C.Proxy, providers map[string]provider.ProxyProvider) {
|
|
|
|
tunnel.UpdateProxies(proxies, providers)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2021-12-02 22:56:17 +08:00
|
|
|
func updateRules(rules []C.Rule, ruleProviders map[string]*provider.RuleProvider) {
|
|
|
|
tunnel.UpdateRules(rules, ruleProviders)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2022-01-18 21:09:36 +08:00
|
|
|
func loadProvider(ruleProviders map[string]*provider.RuleProvider, proxyProviders map[string]provider.ProxyProvider) {
|
|
|
|
load := func(pv provider.Provider) {
|
|
|
|
if pv.VehicleType() == provider.Compatible {
|
|
|
|
log.Infoln("Start initial compatible provider %s", pv.Name())
|
|
|
|
} else {
|
|
|
|
log.Infoln("Start initial provider %s", (pv).Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := (pv).Initial(); err != nil {
|
|
|
|
switch pv.Type() {
|
|
|
|
case provider.Proxy:
|
|
|
|
{
|
|
|
|
log.Warnln("initial proxy provider %s error: %v", (pv).Name(), err)
|
|
|
|
}
|
|
|
|
case provider.Rule:
|
|
|
|
{
|
|
|
|
log.Warnln("initial rule provider %s error: %v", (pv).Name(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, proxyProvider := range proxyProviders {
|
|
|
|
load(proxyProvider)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ruleProvider := range ruleProviders {
|
|
|
|
load(*ruleProvider)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 11:24:00 +08:00
|
|
|
func updateGeneral(general *config.General, Tun *config.Tun, force bool) {
|
2020-02-15 21:42:46 +08:00
|
|
|
tunnel.SetMode(general.Mode)
|
2020-06-18 18:11:02 +08:00
|
|
|
resolver.DisableIPv6 = !general.IPv6
|
2021-12-26 21:20:41 +08:00
|
|
|
adapter.UnifiedDelay.Store(general.UnifiedDelay)
|
2022-01-05 11:24:00 +08:00
|
|
|
|
|
|
|
if (Tun.Enable || general.TProxyPort != 0) && general.Interface == "" {
|
|
|
|
autoDetectInterfaceName, err := dev.GetAutoDetectInterface()
|
|
|
|
if err == nil {
|
|
|
|
if autoDetectInterfaceName != "" && autoDetectInterfaceName != "<nil>" {
|
|
|
|
general.Interface = autoDetectInterfaceName
|
|
|
|
} else {
|
|
|
|
log.Debugln("Auto detect interface name is empty.")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Debugln("Can not find auto detect interface. %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-07 16:48:51 +08:00
|
|
|
dialer.DefaultInterface.Store(general.Interface)
|
2020-06-27 14:19:31 +08:00
|
|
|
|
2021-11-17 16:03:47 +08:00
|
|
|
log.Infoln("Use interface name: %s", general.Interface)
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
iface.FlushCache()
|
|
|
|
|
2020-06-18 18:11:02 +08:00
|
|
|
if !force {
|
2021-11-17 16:03:47 +08:00
|
|
|
log.SetLevel(general.LogLevel)
|
2020-06-18 18:11:02 +08:00
|
|
|
return
|
|
|
|
}
|
2018-12-03 23:41:40 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
allowLan := general.AllowLan
|
|
|
|
P.SetAllowLan(allowLan)
|
2019-06-27 17:04:25 +08:00
|
|
|
|
2019-08-08 13:45:07 +08:00
|
|
|
bindAddress := general.BindAddress
|
|
|
|
P.SetBindAddress(bindAddress)
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
tcpIn := tunnel.TCPIn()
|
|
|
|
udpIn := tunnel.UDPIn()
|
|
|
|
|
2021-12-26 22:08:53 +08:00
|
|
|
P.ReCreateHTTP(general.Port, tcpIn)
|
|
|
|
P.ReCreateSocks(general.SocksPort, tcpIn, udpIn)
|
|
|
|
P.ReCreateRedir(general.RedirPort, tcpIn, udpIn)
|
|
|
|
P.ReCreateTProxy(general.TProxyPort, tcpIn, udpIn)
|
|
|
|
P.ReCreateMixed(general.MixedPort, tcpIn, udpIn)
|
2022-01-04 17:58:50 +08:00
|
|
|
|
2022-01-05 00:33:42 +08:00
|
|
|
log.SetLevel(general.LogLevel)
|
|
|
|
}
|
|
|
|
|
2022-01-05 11:24:00 +08:00
|
|
|
func updateTun(Tun *config.Tun) {
|
2022-01-05 00:33:42 +08:00
|
|
|
if Tun == nil {
|
|
|
|
return
|
2022-01-04 17:58:50 +08:00
|
|
|
}
|
|
|
|
|
2022-01-05 00:33:42 +08:00
|
|
|
tcpIn := tunnel.TCPIn()
|
|
|
|
udpIn := tunnel.UDPIn()
|
|
|
|
|
|
|
|
if err := P.ReCreateTun(*Tun, tcpIn, udpIn); err != nil {
|
|
|
|
log.Errorln("Start Tun interface error: %s", err.Error())
|
2022-01-05 11:24:00 +08:00
|
|
|
os.Exit(2)
|
2022-01-05 00:33:42 +08:00
|
|
|
}
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2019-06-27 17:04:25 +08:00
|
|
|
|
|
|
|
func updateUsers(users []auth.AuthUser) {
|
|
|
|
authenticator := auth.NewAuthenticator(users)
|
|
|
|
authStore.SetAuthenticator(authenticator)
|
|
|
|
if authenticator != nil {
|
|
|
|
log.Infoln("Authentication of local server updated")
|
|
|
|
}
|
|
|
|
}
|
2021-02-18 23:41:50 +08:00
|
|
|
|
|
|
|
func updateProfile(cfg *config.Config) {
|
|
|
|
profileCfg := cfg.Profile
|
|
|
|
|
|
|
|
profile.StoreSelected.Store(profileCfg.StoreSelected)
|
|
|
|
if profileCfg.StoreSelected {
|
|
|
|
patchSelectGroup(cfg.Proxies)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func patchSelectGroup(proxies map[string]C.Proxy) {
|
|
|
|
mapping := cachefile.Cache().SelectedMap()
|
|
|
|
if mapping == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, proxy := range proxies {
|
2021-06-10 14:05:56 +08:00
|
|
|
outbound, ok := proxy.(*adapter.Proxy)
|
2021-02-18 23:41:50 +08:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
selector, ok := outbound.ProxyAdapter.(*outboundgroup.Selector)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
selected, exist := mapping[name]
|
|
|
|
if !exist {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
selector.Set(selected)
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 16:03:47 +08:00
|
|
|
|
2022-01-05 00:33:42 +08:00
|
|
|
func updateIPTables(dns *config.DNS, general *config.General, tun *config.Tun) {
|
2021-12-04 19:59:41 +08:00
|
|
|
AutoIptables := C.AutoIptables
|
2022-01-05 00:33:42 +08:00
|
|
|
if runtime.GOOS != "linux" || dns.Listen == "" || general.TProxyPort == 0 || tun.Enable || AutoIptables != "Enable" {
|
2021-12-04 17:41:13 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, dnsPortStr, err := net.SplitHostPort(dns.Listen)
|
|
|
|
if dnsPortStr == "0" || dnsPortStr == "" || err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsPort, err := strconv.Atoi(dnsPortStr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tproxy.CleanUpTProxyLinuxIPTables()
|
|
|
|
|
|
|
|
err = tproxy.SetTProxyLinuxIPTables(general.Interface, general.TProxyPort, dnsPort)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Errorln("Can not setting iptables for TProxy on linux, %s", err.Error())
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 16:03:47 +08:00
|
|
|
|
|
|
|
func CleanUp() {
|
|
|
|
P.CleanUp()
|
2021-12-04 19:59:41 +08:00
|
|
|
AutoIptables := C.AutoIptables
|
|
|
|
if runtime.GOOS == "linux" && AutoIptables == "Enable" {
|
2021-12-04 17:41:13 +08:00
|
|
|
tproxy.CleanUpTProxyLinuxIPTables()
|
|
|
|
}
|
2021-11-17 16:03:47 +08:00
|
|
|
}
|