2018-07-26 00:04:59 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-10-02 15:26:36 +08:00
|
|
|
"io/ioutil"
|
2018-12-05 21:13:29 +08:00
|
|
|
"net"
|
|
|
|
"net/url"
|
2018-07-26 00:04:59 +08:00
|
|
|
"os"
|
2018-12-20 01:29:13 +08:00
|
|
|
"path/filepath"
|
2018-07-26 00:04:59 +08:00
|
|
|
"strings"
|
|
|
|
|
2018-10-06 13:15:02 +08:00
|
|
|
adapters "github.com/Dreamacro/clash/adapters/outbound"
|
2018-10-02 15:26:36 +08:00
|
|
|
"github.com/Dreamacro/clash/common/structure"
|
2019-06-27 17:04:25 +08:00
|
|
|
"github.com/Dreamacro/clash/component/auth"
|
2019-07-14 19:29:58 +08:00
|
|
|
trie "github.com/Dreamacro/clash/component/domain-trie"
|
2019-05-03 00:05:14 +08:00
|
|
|
"github.com/Dreamacro/clash/component/fakeip"
|
2018-07-26 00:04:59 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2018-12-05 21:13:29 +08:00
|
|
|
"github.com/Dreamacro/clash/dns"
|
2018-11-21 13:47:46 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2018-07-26 00:04:59 +08:00
|
|
|
R "github.com/Dreamacro/clash/rules"
|
2018-11-21 13:47:46 +08:00
|
|
|
T "github.com/Dreamacro/clash/tunnel"
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-10-02 15:26:36 +08:00
|
|
|
yaml "gopkg.in/yaml.v2"
|
2018-07-26 00:04:59 +08:00
|
|
|
)
|
|
|
|
|
2018-08-12 02:23:46 +08:00
|
|
|
// General config
|
|
|
|
type General struct {
|
2018-11-21 13:47:46 +08:00
|
|
|
Port int `json:"port"`
|
|
|
|
SocksPort int `json:"socks-port"`
|
|
|
|
RedirPort int `json:"redir-port"`
|
2019-06-27 17:04:25 +08:00
|
|
|
Authentication []string `json:"authentication"`
|
2018-11-21 13:47:46 +08:00
|
|
|
AllowLan bool `json:"allow-lan"`
|
2019-08-08 13:45:07 +08:00
|
|
|
BindAddress string `json:"bind-address"`
|
2018-11-21 13:47:46 +08:00
|
|
|
Mode T.Mode `json:"mode"`
|
|
|
|
LogLevel log.LogLevel `json:"log-level"`
|
2018-12-21 22:51:37 +08:00
|
|
|
ExternalController string `json:"-"`
|
|
|
|
ExternalUI string `json:"-"`
|
|
|
|
Secret string `json:"-"`
|
2018-08-12 02:23:46 +08:00
|
|
|
}
|
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
// DNS config
|
|
|
|
type DNS struct {
|
|
|
|
Enable bool `yaml:"enable"`
|
|
|
|
IPv6 bool `yaml:"ipv6"`
|
|
|
|
NameServer []dns.NameServer `yaml:"nameserver"`
|
|
|
|
Fallback []dns.NameServer `yaml:"fallback"`
|
2019-07-14 19:29:58 +08:00
|
|
|
Hosts *trie.Trie `yaml:"-"`
|
2018-12-05 21:13:29 +08:00
|
|
|
Listen string `yaml:"listen"`
|
|
|
|
EnhancedMode dns.EnhancedMode `yaml:"enhanced-mode"`
|
2019-05-03 00:05:14 +08:00
|
|
|
FakeIPRange *fakeip.Pool
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
|
|
|
|
2019-04-24 12:02:52 +08:00
|
|
|
// Experimental config
|
|
|
|
type Experimental struct {
|
|
|
|
IgnoreResolveFail bool `yaml:"ignore-resolve-fail"`
|
|
|
|
}
|
|
|
|
|
2018-07-26 00:04:59 +08:00
|
|
|
// Config is clash config manager
|
|
|
|
type Config struct {
|
2019-04-24 12:02:52 +08:00
|
|
|
General *General
|
|
|
|
DNS *DNS
|
|
|
|
Experimental *Experimental
|
|
|
|
Rules []C.Rule
|
2019-06-27 17:04:25 +08:00
|
|
|
Users []auth.AuthUser
|
2019-04-24 12:02:52 +08:00
|
|
|
Proxies map[string]C.Proxy
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
type rawDNS struct {
|
2019-07-14 19:29:58 +08:00
|
|
|
Enable bool `yaml:"enable"`
|
|
|
|
IPv6 bool `yaml:"ipv6"`
|
|
|
|
NameServer []string `yaml:"nameserver"`
|
|
|
|
Hosts map[string]string `yaml:"hosts"`
|
|
|
|
Fallback []string `yaml:"fallback"`
|
|
|
|
Listen string `yaml:"listen"`
|
|
|
|
EnhancedMode dns.EnhancedMode `yaml:"enhanced-mode"`
|
|
|
|
FakeIPRange string `yaml:"fake-ip-range"`
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type rawConfig struct {
|
|
|
|
Port int `yaml:"port"`
|
|
|
|
SocksPort int `yaml:"socks-port"`
|
|
|
|
RedirPort int `yaml:"redir-port"`
|
2019-06-27 17:04:25 +08:00
|
|
|
Authentication []string `yaml:"authentication"`
|
2018-12-05 21:13:29 +08:00
|
|
|
AllowLan bool `yaml:"allow-lan"`
|
2019-08-08 13:45:07 +08:00
|
|
|
BindAddress string `yaml:"bind-address"`
|
2018-12-05 21:13:29 +08:00
|
|
|
Mode T.Mode `yaml:"mode"`
|
|
|
|
LogLevel log.LogLevel `yaml:"log-level"`
|
|
|
|
ExternalController string `yaml:"external-controller"`
|
2018-12-20 01:29:13 +08:00
|
|
|
ExternalUI string `yaml:"external-ui"`
|
2018-12-05 21:13:29 +08:00
|
|
|
Secret string `yaml:"secret"`
|
|
|
|
|
2019-04-24 12:02:52 +08:00
|
|
|
DNS rawDNS `yaml:"dns"`
|
|
|
|
Experimental Experimental `yaml:"experimental"`
|
|
|
|
Proxy []map[string]interface{} `yaml:"Proxy"`
|
|
|
|
ProxyGroup []map[string]interface{} `yaml:"Proxy Group"`
|
|
|
|
Rule []string `yaml:"Rule"`
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
2019-06-18 20:55:26 +08: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"
|
2019-08-07 14:21:39 +08:00
|
|
|
if _, err = os.Stat(path); err == nil {
|
|
|
|
return ioutil.ReadFile(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
return data, nil
|
2019-06-18 20:55:26 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func readConfig(path string) (*rawConfig, error) {
|
|
|
|
if _, err := os.Stat(path); os.IsNotExist(err) {
|
2018-07-26 00:04:59 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-06-18 20:55:26 +08:00
|
|
|
data, err := readRawConfig(path)
|
2018-10-02 15:26:36 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-10-14 21:22:58 +08:00
|
|
|
|
|
|
|
if len(data) == 0 {
|
2019-06-27 22:56:24 +08:00
|
|
|
return nil, fmt.Errorf("Configuration file %s is empty", path)
|
2018-10-14 21:22:58 +08:00
|
|
|
}
|
|
|
|
|
2018-10-02 15:26:36 +08:00
|
|
|
// config with some default value
|
2018-11-21 13:47:46 +08:00
|
|
|
rawConfig := &rawConfig{
|
2019-06-27 17:04:25 +08:00
|
|
|
AllowLan: false,
|
2019-08-08 13:45:07 +08:00
|
|
|
BindAddress: "*",
|
2019-06-27 17:04:25 +08:00
|
|
|
Mode: T.Rule,
|
|
|
|
Authentication: []string{},
|
|
|
|
LogLevel: log.INFO,
|
|
|
|
Rule: []string{},
|
|
|
|
Proxy: []map[string]interface{}{},
|
|
|
|
ProxyGroup: []map[string]interface{}{},
|
2019-04-24 12:02:52 +08:00
|
|
|
Experimental: Experimental{
|
|
|
|
IgnoreResolveFail: true,
|
|
|
|
},
|
2018-12-10 11:00:52 +08:00
|
|
|
DNS: rawDNS{
|
2019-05-03 00:05:14 +08:00
|
|
|
Enable: false,
|
|
|
|
FakeIPRange: "198.18.0.1/16",
|
2019-07-14 19:29:58 +08:00
|
|
|
Hosts: map[string]string{},
|
2018-12-05 21:52:31 +08:00
|
|
|
},
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
|
|
|
err = yaml.Unmarshal([]byte(data), &rawConfig)
|
|
|
|
return rawConfig, err
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse config
|
2018-11-21 13:47:46 +08:00
|
|
|
func Parse(path string) (*Config, error) {
|
|
|
|
config := &Config{}
|
|
|
|
|
|
|
|
rawCfg, err := readConfig(path)
|
2018-07-26 00:04:59 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, err
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2019-04-24 12:02:52 +08:00
|
|
|
config.Experimental = &rawCfg.Experimental
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
general, err := parseGeneral(rawCfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-11-21 13:47:46 +08:00
|
|
|
config.General = general
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
proxies, err := parseProxies(rawCfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-11-21 13:47:46 +08:00
|
|
|
config.Proxies = proxies
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2019-06-20 11:03:50 +08:00
|
|
|
rules, err := parseRules(rawCfg, proxies)
|
2018-07-26 00:04:59 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, err
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-11-21 13:47:46 +08:00
|
|
|
config.Rules = rules
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
dnsCfg, err := parseDNS(rawCfg.DNS)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.DNS = dnsCfg
|
|
|
|
|
2019-06-27 17:04:25 +08:00
|
|
|
config.Users = parseAuthentication(rawCfg.Authentication)
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
return config, nil
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func parseGeneral(cfg *rawConfig) (*General, error) {
|
2018-10-02 15:26:36 +08:00
|
|
|
port := cfg.Port
|
|
|
|
socksPort := cfg.SocksPort
|
|
|
|
redirPort := cfg.RedirPort
|
|
|
|
allowLan := cfg.AllowLan
|
2019-08-08 13:45:07 +08:00
|
|
|
bindAddress := cfg.BindAddress
|
2018-11-21 13:47:46 +08:00
|
|
|
externalController := cfg.ExternalController
|
2018-12-20 01:29:13 +08:00
|
|
|
externalUI := cfg.ExternalUI
|
2018-11-21 13:47:46 +08:00
|
|
|
secret := cfg.Secret
|
2018-12-05 21:13:29 +08:00
|
|
|
mode := cfg.Mode
|
|
|
|
logLevel := cfg.LogLevel
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2018-12-21 10:55:21 +08:00
|
|
|
if externalUI != "" {
|
|
|
|
if !filepath.IsAbs(externalUI) {
|
|
|
|
externalUI = filepath.Join(C.Path.HomeDir(), externalUI)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := os.Stat(externalUI); os.IsNotExist(err) {
|
|
|
|
return nil, fmt.Errorf("external-ui: %s not exist", externalUI)
|
|
|
|
}
|
2018-12-20 01:29:13 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
general := &General{
|
|
|
|
Port: port,
|
|
|
|
SocksPort: socksPort,
|
|
|
|
RedirPort: redirPort,
|
|
|
|
AllowLan: allowLan,
|
2019-08-08 13:45:07 +08:00
|
|
|
BindAddress: bindAddress,
|
2018-11-21 13:47:46 +08:00
|
|
|
Mode: mode,
|
|
|
|
LogLevel: logLevel,
|
|
|
|
ExternalController: externalController,
|
2018-12-20 01:29:13 +08:00
|
|
|
ExternalUI: externalUI,
|
2018-11-21 13:47:46 +08:00
|
|
|
Secret: secret,
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-11-21 13:47:46 +08:00
|
|
|
return general, nil
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
func parseProxies(cfg *rawConfig) (map[string]C.Proxy, error) {
|
2018-07-26 00:04:59 +08:00
|
|
|
proxies := make(map[string]C.Proxy)
|
2019-05-15 14:40:14 +08:00
|
|
|
proxyList := []string{}
|
2018-10-02 15:26:36 +08:00
|
|
|
proxiesConfig := cfg.Proxy
|
|
|
|
groupsConfig := cfg.ProxyGroup
|
|
|
|
|
|
|
|
decoder := structure.NewDecoder(structure.Option{TagName: "proxy", WeaklyTypedInput: true})
|
|
|
|
|
2019-03-16 00:43:16 +08:00
|
|
|
proxies["DIRECT"] = adapters.NewProxy(adapters.NewDirect())
|
|
|
|
proxies["REJECT"] = adapters.NewProxy(adapters.NewReject())
|
2019-05-15 14:40:14 +08:00
|
|
|
proxyList = append(proxyList, "DIRECT", "REJECT")
|
2018-07-26 00:04:59 +08:00
|
|
|
|
|
|
|
// parse proxy
|
2018-10-02 15:26:36 +08:00
|
|
|
for idx, mapping := range proxiesConfig {
|
|
|
|
proxyType, existType := mapping["type"].(string)
|
2018-10-27 12:57:56 +08:00
|
|
|
if !existType {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("Proxy %d missing type", idx)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
|
2019-03-16 00:43:16 +08:00
|
|
|
var proxy C.ProxyAdapter
|
2019-06-29 16:48:48 +08:00
|
|
|
err := fmt.Errorf("cannot parse")
|
2018-10-02 15:26:36 +08:00
|
|
|
switch proxyType {
|
2018-07-26 00:04:59 +08:00
|
|
|
case "ss":
|
2018-10-02 15:26:36 +08:00
|
|
|
ssOption := &adapters.ShadowSocksOption{}
|
|
|
|
err = decoder.Decode(mapping, ssOption)
|
2018-07-26 00:04:59 +08:00
|
|
|
if err != nil {
|
2018-10-02 15:26:36 +08:00
|
|
|
break
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
proxy, err = adapters.NewShadowSocks(*ssOption)
|
2018-08-12 13:50:54 +08:00
|
|
|
case "socks5":
|
2018-10-02 15:26:36 +08:00
|
|
|
socksOption := &adapters.Socks5Option{}
|
|
|
|
err = decoder.Decode(mapping, socksOption)
|
2018-09-06 10:53:29 +08:00
|
|
|
if err != nil {
|
2018-10-02 15:26:36 +08:00
|
|
|
break
|
2018-09-06 10:53:29 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
proxy = adapters.NewSocks5(*socksOption)
|
2018-12-03 23:27:00 +08:00
|
|
|
case "http":
|
|
|
|
httpOption := &adapters.HttpOption{}
|
|
|
|
err = decoder.Decode(mapping, httpOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
proxy = adapters.NewHttp(*httpOption)
|
2018-10-02 15:26:36 +08:00
|
|
|
case "vmess":
|
|
|
|
vmessOption := &adapters.VmessOption{}
|
|
|
|
err = decoder.Decode(mapping, vmessOption)
|
2018-09-06 10:53:29 +08:00
|
|
|
if err != nil {
|
2018-10-02 15:26:36 +08:00
|
|
|
break
|
2018-09-06 10:53:29 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
proxy, err = adapters.NewVmess(*vmessOption)
|
|
|
|
default:
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("Unsupport proxy type: %s", proxyType)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-27 12:57:56 +08:00
|
|
|
|
2018-10-02 15:26:36 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("Proxy [%d]: %s", idx, err.Error())
|
2018-10-27 12:57:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, exist := proxies[proxy.Name()]; exist {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("Proxy %s is the duplicate name", proxy.Name())
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
2019-03-16 00:43:16 +08:00
|
|
|
proxies[proxy.Name()] = adapters.NewProxy(proxy)
|
2019-05-15 14:40:14 +08:00
|
|
|
proxyList = append(proxyList, proxy.Name())
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse proxy group
|
2018-10-02 15:26:36 +08:00
|
|
|
for idx, mapping := range groupsConfig {
|
|
|
|
groupType, existType := mapping["type"].(string)
|
|
|
|
groupName, existName := mapping["name"].(string)
|
|
|
|
if !existType && existName {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %d: missing type or name", idx)
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, exist := proxies[groupName]; exist {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: the duplicate name", groupName)
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
2019-03-16 00:43:16 +08:00
|
|
|
var group C.ProxyAdapter
|
2019-02-15 14:25:20 +08:00
|
|
|
ps := []C.Proxy{}
|
|
|
|
|
2019-06-29 16:48:48 +08:00
|
|
|
err := fmt.Errorf("cannot parse")
|
2018-10-02 15:26:36 +08:00
|
|
|
switch groupType {
|
2018-07-26 00:04:59 +08:00
|
|
|
case "url-test":
|
2018-10-02 15:26:36 +08:00
|
|
|
urlTestOption := &adapters.URLTestOption{}
|
|
|
|
err = decoder.Decode(mapping, urlTestOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
|
2019-02-04 09:39:17 +08:00
|
|
|
ps, err = getProxies(proxies, urlTestOption.Proxies)
|
2018-10-18 23:24:04 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
group, err = adapters.NewURLTest(*urlTestOption, ps)
|
2018-07-26 00:04:59 +08:00
|
|
|
case "select":
|
2018-10-02 15:26:36 +08:00
|
|
|
selectorOption := &adapters.SelectorOption{}
|
|
|
|
err = decoder.Decode(mapping, selectorOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-18 23:24:04 +08:00
|
|
|
|
2019-02-04 09:39:17 +08:00
|
|
|
ps, err = getProxies(proxies, selectorOption.Proxies)
|
2018-10-18 23:24:04 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-10-18 23:24:04 +08:00
|
|
|
group, err = adapters.NewSelector(selectorOption.Name, ps)
|
2018-09-26 00:34:15 +08:00
|
|
|
case "fallback":
|
2018-10-02 15:26:36 +08:00
|
|
|
fallbackOption := &adapters.FallbackOption{}
|
|
|
|
err = decoder.Decode(mapping, fallbackOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-09-26 00:34:15 +08:00
|
|
|
}
|
2018-10-18 23:24:04 +08:00
|
|
|
|
2019-02-04 09:39:17 +08:00
|
|
|
ps, err = getProxies(proxies, fallbackOption.Proxies)
|
2018-10-18 23:24:04 +08:00
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-09-26 00:34:15 +08:00
|
|
|
}
|
2018-10-02 15:26:36 +08:00
|
|
|
group, err = adapters.NewFallback(*fallbackOption, ps)
|
2019-02-15 14:25:20 +08:00
|
|
|
case "load-balance":
|
|
|
|
loadBalanceOption := &adapters.LoadBalanceOption{}
|
|
|
|
err = decoder.Decode(mapping, loadBalanceOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
ps, err = getProxies(proxies, loadBalanceOption.Proxies)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
|
|
|
}
|
2019-03-28 19:00:41 +08:00
|
|
|
group, err = adapters.NewLoadBalance(*loadBalanceOption, ps)
|
2018-10-02 15:26:36 +08:00
|
|
|
}
|
|
|
|
if err != nil {
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil, fmt.Errorf("Proxy %s: %s", groupName, err.Error())
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2019-03-16 00:43:16 +08:00
|
|
|
proxies[groupName] = adapters.NewProxy(group)
|
2019-05-15 14:40:14 +08:00
|
|
|
proxyList = append(proxyList, groupName)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 14:25:20 +08:00
|
|
|
ps := []C.Proxy{}
|
2019-05-15 14:40:14 +08:00
|
|
|
for _, v := range proxyList {
|
|
|
|
ps = append(ps, proxies[v])
|
2018-10-18 23:24:04 +08:00
|
|
|
}
|
|
|
|
|
2019-03-16 00:43:16 +08:00
|
|
|
global, _ := adapters.NewSelector("GLOBAL", ps)
|
|
|
|
proxies["GLOBAL"] = adapters.NewProxy(global)
|
2018-11-21 13:47:46 +08:00
|
|
|
return proxies, nil
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2019-06-20 11:03:50 +08:00
|
|
|
func parseRules(cfg *rawConfig, proxies map[string]C.Proxy) ([]C.Rule, error) {
|
2018-07-26 00:04:59 +08:00
|
|
|
rules := []C.Rule{}
|
|
|
|
|
2018-10-02 15:26:36 +08:00
|
|
|
rulesConfig := cfg.Rule
|
2018-07-26 00:04:59 +08:00
|
|
|
// parse rules
|
2018-11-21 18:21:24 +08:00
|
|
|
for idx, line := range rulesConfig {
|
|
|
|
rule := trimArr(strings.Split(line, ","))
|
|
|
|
var (
|
|
|
|
payload string
|
|
|
|
target string
|
|
|
|
)
|
|
|
|
|
|
|
|
switch len(rule) {
|
|
|
|
case 2:
|
|
|
|
target = rule[1]
|
|
|
|
case 3:
|
|
|
|
payload = rule[1]
|
|
|
|
target = rule[2]
|
|
|
|
default:
|
2019-03-30 14:11:59 +08:00
|
|
|
return nil, fmt.Errorf("Rules[%d] [%s] error: format invalid", idx, line)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-11-21 18:21:24 +08:00
|
|
|
|
2019-06-20 11:03:50 +08:00
|
|
|
if _, ok := proxies[target]; !ok {
|
|
|
|
return nil, fmt.Errorf("Rules[%d] [%s] error: proxy [%s] not found", idx, line, target)
|
|
|
|
}
|
|
|
|
|
2018-07-26 00:04:59 +08:00
|
|
|
rule = trimArr(rule)
|
2019-03-30 14:11:59 +08:00
|
|
|
var parsed C.Rule
|
2018-07-26 00:04:59 +08:00
|
|
|
switch rule[0] {
|
2018-09-09 15:01:46 +08:00
|
|
|
case "DOMAIN":
|
2019-03-30 14:11:59 +08:00
|
|
|
parsed = R.NewDomain(payload, target)
|
2018-07-26 00:04:59 +08:00
|
|
|
case "DOMAIN-SUFFIX":
|
2019-03-30 14:11:59 +08:00
|
|
|
parsed = R.NewDomainSuffix(payload, target)
|
2018-07-26 00:04:59 +08:00
|
|
|
case "DOMAIN-KEYWORD":
|
2019-03-30 14:11:59 +08:00
|
|
|
parsed = R.NewDomainKeyword(payload, target)
|
2018-07-26 00:04:59 +08:00
|
|
|
case "GEOIP":
|
2019-03-30 14:11:59 +08:00
|
|
|
parsed = R.NewGEOIP(payload, target)
|
2018-07-26 00:04:59 +08:00
|
|
|
case "IP-CIDR", "IP-CIDR6":
|
2019-03-30 14:11:59 +08:00
|
|
|
if rule := R.NewIPCIDR(payload, target, false); rule != nil {
|
|
|
|
parsed = rule
|
|
|
|
}
|
2019-05-09 21:00:29 +08:00
|
|
|
// deprecated when bump to 1.0
|
2019-02-02 21:03:13 +08:00
|
|
|
case "SOURCE-IP-CIDR":
|
2019-05-09 21:00:29 +08:00
|
|
|
fallthrough
|
|
|
|
case "SRC-IP-CIDR":
|
2019-03-30 14:11:59 +08:00
|
|
|
if rule := R.NewIPCIDR(payload, target, true); rule != nil {
|
|
|
|
parsed = rule
|
|
|
|
}
|
2019-05-09 21:00:29 +08:00
|
|
|
case "SRC-PORT":
|
|
|
|
if rule := R.NewPort(payload, target, true); rule != nil {
|
|
|
|
parsed = rule
|
|
|
|
}
|
|
|
|
case "DST-PORT":
|
|
|
|
if rule := R.NewPort(payload, target, false); rule != nil {
|
|
|
|
parsed = rule
|
|
|
|
}
|
2018-11-21 18:21:24 +08:00
|
|
|
case "MATCH":
|
|
|
|
fallthrough
|
2019-05-09 21:00:29 +08:00
|
|
|
// deprecated when bump to 1.0
|
2018-07-26 00:04:59 +08:00
|
|
|
case "FINAL":
|
2019-03-30 14:11:59 +08:00
|
|
|
parsed = R.NewMatch(target)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2019-03-30 14:11:59 +08:00
|
|
|
|
|
|
|
if parsed == nil {
|
|
|
|
return nil, fmt.Errorf("Rules[%d] [%s] error: payload invalid", idx, line)
|
|
|
|
}
|
|
|
|
|
|
|
|
rules = append(rules, parsed)
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
return rules, nil
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-12-05 21:13:29 +08:00
|
|
|
|
|
|
|
func hostWithDefaultPort(host string, defPort string) (string, error) {
|
|
|
|
if !strings.Contains(host, ":") {
|
|
|
|
host += ":"
|
|
|
|
}
|
|
|
|
|
|
|
|
hostname, port, err := net.SplitHostPort(host)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if port == "" {
|
|
|
|
port = defPort
|
|
|
|
}
|
|
|
|
|
|
|
|
return net.JoinHostPort(hostname, port), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseNameServer(servers []string) ([]dns.NameServer, error) {
|
|
|
|
nameservers := []dns.NameServer{}
|
|
|
|
|
|
|
|
for idx, server := range servers {
|
|
|
|
// parse without scheme .e.g 8.8.8.8:53
|
2019-03-01 00:52:30 +08:00
|
|
|
if !strings.Contains(server, "://") {
|
|
|
|
server = "udp://" + server
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
u, err := url.Parse(server)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("DNS NameServer[%d] format error: %s", idx, err.Error())
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:52:30 +08:00
|
|
|
var host, dnsNetType string
|
|
|
|
switch u.Scheme {
|
|
|
|
case "udp":
|
|
|
|
host, err = hostWithDefaultPort(u.Host, "53")
|
|
|
|
dnsNetType = "" // UDP
|
|
|
|
case "tcp":
|
|
|
|
host, err = hostWithDefaultPort(u.Host, "53")
|
|
|
|
dnsNetType = "tcp" // TCP
|
|
|
|
case "tls":
|
|
|
|
host, err = hostWithDefaultPort(u.Host, "853")
|
|
|
|
dnsNetType = "tcp-tls" // DNS over TLS
|
2019-06-28 12:29:08 +08:00
|
|
|
case "https":
|
|
|
|
clearURL := url.URL{Scheme: "https", Host: u.Host, Path: u.Path}
|
|
|
|
host = clearURL.String()
|
|
|
|
dnsNetType = "https" // DNS over HTTPS
|
2019-03-01 00:52:30 +08:00
|
|
|
default:
|
2018-12-05 21:13:29 +08:00
|
|
|
return nil, fmt.Errorf("DNS NameServer[%d] unsupport scheme: %s", idx, u.Scheme)
|
|
|
|
}
|
2019-06-28 12:29:08 +08:00
|
|
|
|
2019-03-01 00:52:30 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("DNS NameServer[%d] format error: %s", idx, err.Error())
|
|
|
|
}
|
2018-12-05 21:13:29 +08:00
|
|
|
|
|
|
|
nameservers = append(
|
|
|
|
nameservers,
|
|
|
|
dns.NameServer{
|
2019-03-01 00:52:30 +08:00
|
|
|
Net: dnsNetType,
|
2018-12-05 21:13:29 +08:00
|
|
|
Addr: host,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return nameservers, nil
|
|
|
|
}
|
|
|
|
|
2018-12-10 11:00:52 +08:00
|
|
|
func parseDNS(cfg rawDNS) (*DNS, error) {
|
2018-12-05 21:13:29 +08:00
|
|
|
if cfg.Enable && len(cfg.NameServer) == 0 {
|
|
|
|
return nil, fmt.Errorf("If DNS configuration is turned on, NameServer cannot be empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsCfg := &DNS{
|
|
|
|
Enable: cfg.Enable,
|
|
|
|
Listen: cfg.Listen,
|
2019-06-29 00:58:59 +08:00
|
|
|
IPv6: cfg.IPv6,
|
2018-12-05 21:13:29 +08:00
|
|
|
EnhancedMode: cfg.EnhancedMode,
|
|
|
|
}
|
2019-03-01 00:52:30 +08:00
|
|
|
var err error
|
|
|
|
if dnsCfg.NameServer, err = parseNameServer(cfg.NameServer); err != nil {
|
|
|
|
return nil, err
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 00:52:30 +08:00
|
|
|
if dnsCfg.Fallback, err = parseNameServer(cfg.Fallback); err != nil {
|
|
|
|
return nil, err
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
2019-07-14 19:29:58 +08:00
|
|
|
if len(cfg.Hosts) != 0 {
|
|
|
|
tree := trie.New()
|
|
|
|
for domain, ipStr := range cfg.Hosts {
|
|
|
|
ip := net.ParseIP(ipStr)
|
|
|
|
if ip == nil {
|
|
|
|
return nil, fmt.Errorf("%s is not a valid IP", ipStr)
|
|
|
|
}
|
|
|
|
tree.Insert(domain, ip)
|
|
|
|
}
|
|
|
|
dnsCfg.Hosts = tree
|
|
|
|
}
|
|
|
|
|
2019-05-03 00:05:14 +08:00
|
|
|
if cfg.EnhancedMode == dns.FAKEIP {
|
|
|
|
_, ipnet, err := net.ParseCIDR(cfg.FakeIPRange)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-07-26 19:09:13 +08:00
|
|
|
pool, err := fakeip.New(ipnet, 1000)
|
2019-05-03 00:05:14 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsCfg.FakeIPRange = pool
|
|
|
|
}
|
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
return dnsCfg, nil
|
|
|
|
}
|
2019-06-27 17:04:25 +08:00
|
|
|
|
|
|
|
func parseAuthentication(rawRecords []string) []auth.AuthUser {
|
|
|
|
users := make([]auth.AuthUser, 0)
|
|
|
|
for _, line := range rawRecords {
|
|
|
|
userData := strings.SplitN(line, ":", 2)
|
|
|
|
if len(userData) == 2 {
|
|
|
|
users = append(users, auth.AuthUser{User: userData[0], Pass: userData[1]})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return users
|
|
|
|
}
|