clash/hub/executor/executor.go

203 lines
4.8 KiB
Go
Raw Normal View History

2018-11-21 05:47:46 +00:00
package executor
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
2019-12-08 04:17:24 +00:00
"github.com/Dreamacro/clash/adapters/provider"
"github.com/Dreamacro/clash/component/auth"
"github.com/Dreamacro/clash/component/dialer"
2019-09-11 09:00:55 +00:00
trie "github.com/Dreamacro/clash/component/domain-trie"
"github.com/Dreamacro/clash/component/resolver"
2018-11-21 05:47:46 +00:00
"github.com/Dreamacro/clash/config"
C "github.com/Dreamacro/clash/constant"
2018-12-05 13:13:29 +00:00
"github.com/Dreamacro/clash/dns"
2018-11-21 05:47:46 +00:00
"github.com/Dreamacro/clash/log"
P "github.com/Dreamacro/clash/proxy"
authStore "github.com/Dreamacro/clash/proxy/auth"
"github.com/Dreamacro/clash/tunnel"
2018-11-21 05:47:46 +00:00
)
// forward compatibility before 1.0
func readRawConfig(path string) ([]byte, error) {
data, err := ioutil.ReadFile(path)
if err == nil && len(data) != 0 {
return data, nil
}
if filepath.Ext(path) != ".yaml" {
return nil, err
}
path = path[:len(path)-5] + ".yml"
if _, fallbackErr := os.Stat(path); fallbackErr == nil {
return ioutil.ReadFile(path)
}
return data, err
}
func readConfig(path string) ([]byte, error) {
if _, err := os.Stat(path); os.IsNotExist(err) {
return nil, err
}
data, err := readRawConfig(path)
if err != nil {
return nil, err
}
if len(data) == 0 {
return nil, fmt.Errorf("Configuration file %s is empty", path)
}
return data, err
}
2018-11-21 05:47:46 +00: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) {
buf, err := readConfig(path)
if err != nil {
return nil, err
}
return ParseWithBytes(buf)
}
// ParseWithBytes config with buffer
func ParseWithBytes(buf []byte) (*config.Config, error) {
return config.Parse(buf)
2018-11-21 05:47:46 +00:00
}
// ApplyConfig dispatch configure to all parts
2018-11-30 09:42:40 +00:00
func ApplyConfig(cfg *config.Config, force bool) {
updateUsers(cfg.Users)
2018-11-30 09:42:40 +00:00
if force {
updateGeneral(cfg.General)
}
2019-12-08 04:17:24 +00:00
updateProxies(cfg.Proxies, cfg.Providers)
2018-11-21 05:47:46 +00:00
updateRules(cfg.Rules)
2018-12-05 13:13:29 +00:00
updateDNS(cfg.DNS)
2019-09-11 09:00:55 +00:00
updateHosts(cfg.Hosts)
updateExperimental(cfg)
2018-11-21 05:47:46 +00:00
}
func GetGeneral() *config.General {
ports := P.GetPorts()
2019-06-27 12:45:12 +00:00
authenticator := []string{}
if auth := authStore.Authenticator(); auth != nil {
authenticator = auth.Users()
}
general := &config.General{
Port: ports.Port,
SocksPort: ports.SocksPort,
RedirPort: ports.RedirPort,
MixedPort: ports.MixedPort,
2019-06-27 12:45:12 +00:00
Authentication: authenticator,
AllowLan: P.AllowLan(),
BindAddress: P.BindAddress(),
Mode: tunnel.Mode(),
LogLevel: log.Level(),
2018-11-21 05:47:46 +00:00
}
2019-06-27 12:45:12 +00:00
return general
2018-11-21 05:47:46 +00:00
}
func updateExperimental(c *config.Config) {
cfg := c.Experimental
tunnel.UpdateExperimental(cfg.IgnoreResolveFail)
if cfg.Interface != "" && c.DNS.Enable {
dialer.DialHook = dialer.DialerWithInterface(cfg.Interface)
dialer.ListenPacketHook = dialer.ListenPacketWithInterface(cfg.Interface)
} else {
dialer.DialHook = nil
dialer.ListenPacketHook = nil
}
}
2018-12-05 13:13:29 +00:00
func updateDNS(c *config.DNS) {
if c.Enable == false {
resolver.DefaultResolver = nil
tunnel.SetResolver(nil)
2018-12-05 13:13:29 +00:00
dns.ReCreateServer("", nil)
return
}
r := dns.New(dns.Config{
Main: c.NameServer,
Fallback: c.Fallback,
IPv6: c.IPv6,
EnhancedMode: c.EnhancedMode,
2019-05-02 16:05:14 +00:00
Pool: c.FakeIPRange,
2019-09-15 05:36:45 +00:00
FallbackFilter: dns.FallbackFilter{
GeoIP: c.FallbackFilter.GeoIP,
IPCIDR: c.FallbackFilter.IPCIDR,
},
Default: c.DefaultNameserver,
2018-12-05 13:13:29 +00:00
})
resolver.DefaultResolver = r
tunnel.SetResolver(r)
if err := dns.ReCreateServer(c.Listen, r); err != nil {
log.Errorln("Start DNS server error: %s", err.Error())
return
}
if c.Listen != "" {
log.Infoln("DNS server listening at: %s", c.Listen)
}
2018-12-05 13:13:29 +00:00
}
2019-09-11 09:00:55 +00:00
func updateHosts(tree *trie.Trie) {
resolver.DefaultHosts = tree
2019-09-11 09:00:55 +00:00
}
2019-12-08 04:17:24 +00:00
func updateProxies(proxies map[string]C.Proxy, providers map[string]provider.ProxyProvider) {
tunnel.UpdateProxies(proxies, providers)
2018-11-21 05:47:46 +00:00
}
func updateRules(rules []C.Rule) {
tunnel.UpdateRules(rules)
2018-11-21 05:47:46 +00:00
}
func updateGeneral(general *config.General) {
2018-12-03 15:41:40 +00:00
log.SetLevel(general.LogLevel)
tunnel.SetMode(general.Mode)
2018-12-03 15:41:40 +00:00
2018-11-21 05:47:46 +00:00
allowLan := general.AllowLan
P.SetAllowLan(allowLan)
bindAddress := general.BindAddress
P.SetBindAddress(bindAddress)
2018-11-21 05:47:46 +00:00
if err := P.ReCreateHTTP(general.Port); err != nil {
log.Errorln("Start HTTP server error: %s", err.Error())
}
if err := P.ReCreateSocks(general.SocksPort); err != nil {
log.Errorln("Start SOCKS5 server error: %s", err.Error())
}
if err := P.ReCreateRedir(general.RedirPort); err != nil {
log.Errorln("Start Redir server error: %s", err.Error())
}
if err := P.ReCreateMixed(general.MixedPort); err != nil {
log.Errorln("Start Mixed(http and socks5) server error: %s", err.Error())
}
2018-11-21 05:47:46 +00:00
}
func updateUsers(users []auth.AuthUser) {
authenticator := auth.NewAuthenticator(users)
authStore.SetAuthenticator(authenticator)
if authenticator != nil {
log.Infoln("Authentication of local server updated")
}
}