2018-07-25 16:04:59 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-10-02 07:26:36 +00:00
|
|
|
"io/ioutil"
|
2018-12-05 13:13:29 +00:00
|
|
|
"net"
|
|
|
|
"net/url"
|
2018-07-25 16:04:59 +00:00
|
|
|
"os"
|
2018-12-19 17:29:13 +00:00
|
|
|
"path/filepath"
|
2018-07-25 16:04:59 +00:00
|
|
|
"strings"
|
|
|
|
|
2018-10-06 05:15:02 +00:00
|
|
|
adapters "github.com/Dreamacro/clash/adapters/outbound"
|
2018-10-02 07:26:36 +00:00
|
|
|
"github.com/Dreamacro/clash/common/structure"
|
2018-07-25 16:04:59 +00:00
|
|
|
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"
|
2018-07-25 16:04:59 +00:00
|
|
|
R "github.com/Dreamacro/clash/rules"
|
2018-11-21 05:47:46 +00:00
|
|
|
T "github.com/Dreamacro/clash/tunnel"
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
yaml "gopkg.in/yaml.v2"
|
2018-07-25 16:04:59 +00:00
|
|
|
)
|
|
|
|
|
2018-08-11 18:23:46 +00:00
|
|
|
// General config
|
|
|
|
type General struct {
|
2018-11-21 05:47:46 +00:00
|
|
|
Port int `json:"port"`
|
|
|
|
SocksPort int `json:"socks-port"`
|
|
|
|
RedirPort int `json:"redir-port"`
|
|
|
|
AllowLan bool `json:"allow-lan"`
|
|
|
|
Mode T.Mode `json:"mode"`
|
|
|
|
LogLevel log.LogLevel `json:"log-level"`
|
2018-12-21 14:51:37 +00:00
|
|
|
ExternalController string `json:"-"`
|
|
|
|
ExternalUI string `json:"-"`
|
|
|
|
Secret string `json:"-"`
|
2018-08-11 18:23:46 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 13:13:29 +00:00
|
|
|
// DNS config
|
|
|
|
type DNS struct {
|
|
|
|
Enable bool `yaml:"enable"`
|
|
|
|
IPv6 bool `yaml:"ipv6"`
|
|
|
|
NameServer []dns.NameServer `yaml:"nameserver"`
|
|
|
|
Fallback []dns.NameServer `yaml:"fallback"`
|
|
|
|
Listen string `yaml:"listen"`
|
|
|
|
EnhancedMode dns.EnhancedMode `yaml:"enhanced-mode"`
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
|
|
|
|
2018-07-25 16:04:59 +00:00
|
|
|
// Config is clash config manager
|
|
|
|
type Config struct {
|
2018-11-21 05:47:46 +00:00
|
|
|
General *General
|
2018-12-05 13:13:29 +00:00
|
|
|
DNS *DNS
|
2018-11-21 05:47:46 +00:00
|
|
|
Rules []C.Rule
|
|
|
|
Proxies map[string]C.Proxy
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 13:13:29 +00:00
|
|
|
type rawDNS struct {
|
|
|
|
Enable bool `yaml:"enable"`
|
|
|
|
IPv6 bool `yaml:"ipv6"`
|
|
|
|
NameServer []string `yaml:"nameserver"`
|
|
|
|
Fallback []string `yaml:"fallback"`
|
|
|
|
Listen string `yaml:"listen"`
|
|
|
|
EnhancedMode dns.EnhancedMode `yaml:"enhanced-mode"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type rawConfig struct {
|
|
|
|
Port int `yaml:"port"`
|
|
|
|
SocksPort int `yaml:"socks-port"`
|
|
|
|
RedirPort int `yaml:"redir-port"`
|
|
|
|
AllowLan bool `yaml:"allow-lan"`
|
|
|
|
Mode T.Mode `yaml:"mode"`
|
|
|
|
LogLevel log.LogLevel `yaml:"log-level"`
|
|
|
|
ExternalController string `yaml:"external-controller"`
|
2018-12-19 17:29:13 +00:00
|
|
|
ExternalUI string `yaml:"external-ui"`
|
2018-12-05 13:13:29 +00:00
|
|
|
Secret string `yaml:"secret"`
|
|
|
|
|
2018-12-10 03:00:52 +00:00
|
|
|
DNS rawDNS `yaml:"dns"`
|
2018-12-05 13:13:29 +00:00
|
|
|
Proxy []map[string]interface{} `yaml:"Proxy"`
|
|
|
|
ProxyGroup []map[string]interface{} `yaml:"Proxy Group"`
|
|
|
|
Rule []string `yaml:"Rule"`
|
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
func readConfig(path string) (*rawConfig, error) {
|
|
|
|
if _, err := os.Stat(path); os.IsNotExist(err) {
|
2018-07-25 16:04:59 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-11-21 05:47:46 +00:00
|
|
|
data, err := ioutil.ReadFile(path)
|
2018-10-02 07:26:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-10-14 13:22:58 +00:00
|
|
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
return nil, fmt.Errorf("Configuration file %s is empty", C.Path.Config())
|
|
|
|
}
|
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
// config with some default value
|
2018-11-21 05:47:46 +00:00
|
|
|
rawConfig := &rawConfig{
|
2018-10-02 07:26:36 +00:00
|
|
|
AllowLan: false,
|
2018-12-05 13:13:29 +00:00
|
|
|
Mode: T.Rule,
|
|
|
|
LogLevel: log.INFO,
|
2018-10-02 07:26:36 +00:00
|
|
|
Rule: []string{},
|
|
|
|
Proxy: []map[string]interface{}{},
|
|
|
|
ProxyGroup: []map[string]interface{}{},
|
2018-12-10 03:00:52 +00:00
|
|
|
DNS: rawDNS{
|
2018-12-05 13:52:31 +00:00
|
|
|
Enable: false,
|
|
|
|
},
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
|
|
|
err = yaml.Unmarshal([]byte(data), &rawConfig)
|
|
|
|
return rawConfig, err
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse config
|
2018-11-21 05:47:46 +00:00
|
|
|
func Parse(path string) (*Config, error) {
|
|
|
|
config := &Config{}
|
|
|
|
|
|
|
|
rawCfg, err := readConfig(path)
|
2018-07-25 16:04:59 +00:00
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, err
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
general, err := parseGeneral(rawCfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-11-21 05:47:46 +00:00
|
|
|
config.General = general
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
proxies, err := parseProxies(rawCfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-11-21 05:47:46 +00:00
|
|
|
config.Proxies = proxies
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
rules, err := parseRules(rawCfg)
|
2018-07-25 16:04:59 +00:00
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, err
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-11-21 05:47:46 +00:00
|
|
|
config.Rules = rules
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2018-12-05 13:13:29 +00:00
|
|
|
dnsCfg, err := parseDNS(rawCfg.DNS)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.DNS = dnsCfg
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
return config, nil
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
func parseGeneral(cfg *rawConfig) (*General, error) {
|
2018-10-02 07:26:36 +00:00
|
|
|
port := cfg.Port
|
|
|
|
socksPort := cfg.SocksPort
|
|
|
|
redirPort := cfg.RedirPort
|
|
|
|
allowLan := cfg.AllowLan
|
2018-11-21 05:47:46 +00:00
|
|
|
externalController := cfg.ExternalController
|
2018-12-19 17:29:13 +00:00
|
|
|
externalUI := cfg.ExternalUI
|
2018-11-21 05:47:46 +00:00
|
|
|
secret := cfg.Secret
|
2018-12-05 13:13:29 +00:00
|
|
|
mode := cfg.Mode
|
|
|
|
logLevel := cfg.LogLevel
|
2018-07-25 16:04:59 +00:00
|
|
|
|
2018-12-21 02:55:21 +00: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-19 17:29:13 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
general := &General{
|
|
|
|
Port: port,
|
|
|
|
SocksPort: socksPort,
|
|
|
|
RedirPort: redirPort,
|
|
|
|
AllowLan: allowLan,
|
|
|
|
Mode: mode,
|
|
|
|
LogLevel: logLevel,
|
|
|
|
ExternalController: externalController,
|
2018-12-19 17:29:13 +00:00
|
|
|
ExternalUI: externalUI,
|
2018-11-21 05:47:46 +00:00
|
|
|
Secret: secret,
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-11-21 05:47:46 +00:00
|
|
|
return general, nil
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
func parseProxies(cfg *rawConfig) (map[string]C.Proxy, error) {
|
2018-07-25 16:04:59 +00:00
|
|
|
proxies := make(map[string]C.Proxy)
|
2018-10-02 07:26:36 +00:00
|
|
|
proxiesConfig := cfg.Proxy
|
|
|
|
groupsConfig := cfg.ProxyGroup
|
|
|
|
|
|
|
|
decoder := structure.NewDecoder(structure.Option{TagName: "proxy", WeaklyTypedInput: true})
|
|
|
|
|
|
|
|
proxies["DIRECT"] = adapters.NewDirect()
|
|
|
|
proxies["REJECT"] = adapters.NewReject()
|
2018-07-25 16:04:59 +00:00
|
|
|
|
|
|
|
// parse proxy
|
2018-10-02 07:26:36 +00:00
|
|
|
for idx, mapping := range proxiesConfig {
|
|
|
|
proxyType, existType := mapping["type"].(string)
|
2018-10-27 04:57:56 +00:00
|
|
|
if !existType {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("Proxy %d missing type", idx)
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
|
|
|
|
var proxy C.Proxy
|
|
|
|
var err error
|
|
|
|
switch proxyType {
|
2018-07-25 16:04:59 +00:00
|
|
|
case "ss":
|
2018-10-02 07:26:36 +00:00
|
|
|
ssOption := &adapters.ShadowSocksOption{}
|
|
|
|
err = decoder.Decode(mapping, ssOption)
|
2018-07-25 16:04:59 +00:00
|
|
|
if err != nil {
|
2018-10-02 07:26:36 +00:00
|
|
|
break
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
proxy, err = adapters.NewShadowSocks(*ssOption)
|
2018-08-12 05:50:54 +00:00
|
|
|
case "socks5":
|
2018-10-02 07:26:36 +00:00
|
|
|
socksOption := &adapters.Socks5Option{}
|
|
|
|
err = decoder.Decode(mapping, socksOption)
|
2018-09-06 02:53:29 +00:00
|
|
|
if err != nil {
|
2018-10-02 07:26:36 +00:00
|
|
|
break
|
2018-09-06 02:53:29 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
proxy = adapters.NewSocks5(*socksOption)
|
2018-12-03 15:27:00 +00:00
|
|
|
case "http":
|
|
|
|
httpOption := &adapters.HttpOption{}
|
|
|
|
err = decoder.Decode(mapping, httpOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
proxy = adapters.NewHttp(*httpOption)
|
2018-10-02 07:26:36 +00:00
|
|
|
case "vmess":
|
|
|
|
vmessOption := &adapters.VmessOption{}
|
|
|
|
err = decoder.Decode(mapping, vmessOption)
|
2018-09-06 02:53:29 +00:00
|
|
|
if err != nil {
|
2018-10-02 07:26:36 +00:00
|
|
|
break
|
2018-09-06 02:53:29 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
proxy, err = adapters.NewVmess(*vmessOption)
|
|
|
|
default:
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("Unsupport proxy type: %s", proxyType)
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-27 04:57:56 +00:00
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("Proxy [%d]: %s", idx, err.Error())
|
2018-10-27 04:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, exist := proxies[proxy.Name()]; exist {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("Proxy %s is the duplicate name", proxy.Name())
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
2018-10-27 04:57:56 +00:00
|
|
|
proxies[proxy.Name()] = proxy
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse proxy group
|
2018-10-02 07:26:36 +00:00
|
|
|
for idx, mapping := range groupsConfig {
|
|
|
|
groupType, existType := mapping["type"].(string)
|
|
|
|
groupName, existName := mapping["name"].(string)
|
|
|
|
if !existType && existName {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %d: missing type or name", idx)
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, exist := proxies[groupName]; exist {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: the duplicate name", groupName)
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
|
|
|
var group C.Proxy
|
|
|
|
var err error
|
|
|
|
switch groupType {
|
2018-07-25 16:04:59 +00:00
|
|
|
case "url-test":
|
2018-10-02 07:26:36 +00:00
|
|
|
urlTestOption := &adapters.URLTestOption{}
|
|
|
|
err = decoder.Decode(mapping, urlTestOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
|
2018-10-18 15:24:04 +00:00
|
|
|
ps, err := getProxies(proxies, urlTestOption.Proxies)
|
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
group, err = adapters.NewURLTest(*urlTestOption, ps)
|
2018-07-25 16:04:59 +00:00
|
|
|
case "select":
|
2018-10-02 07:26:36 +00:00
|
|
|
selectorOption := &adapters.SelectorOption{}
|
|
|
|
err = decoder.Decode(mapping, selectorOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-18 15:24:04 +00:00
|
|
|
|
|
|
|
ps, err := getProxies(proxies, selectorOption.Proxies)
|
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-18 15:24:04 +00:00
|
|
|
group, err = adapters.NewSelector(selectorOption.Name, ps)
|
2018-09-25 16:34:15 +00:00
|
|
|
case "fallback":
|
2018-10-02 07:26:36 +00:00
|
|
|
fallbackOption := &adapters.FallbackOption{}
|
|
|
|
err = decoder.Decode(mapping, fallbackOption)
|
|
|
|
if err != nil {
|
|
|
|
break
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
2018-10-18 15:24:04 +00:00
|
|
|
|
|
|
|
ps, err := getProxies(proxies, fallbackOption.Proxies)
|
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("ProxyGroup %s: %s", groupName, err.Error())
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
group, err = adapters.NewFallback(*fallbackOption, ps)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2018-11-21 05:47:46 +00:00
|
|
|
return nil, fmt.Errorf("Proxy %s: %s", groupName, err.Error())
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-10-02 07:26:36 +00:00
|
|
|
proxies[groupName] = group
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 15:24:04 +00:00
|
|
|
var ps []C.Proxy
|
|
|
|
for _, v := range proxies {
|
|
|
|
ps = append(ps, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
proxies["GLOBAL"], _ = adapters.NewSelector("GLOBAL", ps)
|
2018-11-21 05:47:46 +00:00
|
|
|
return proxies, nil
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
func parseRules(cfg *rawConfig) ([]C.Rule, error) {
|
2018-07-25 16:04:59 +00:00
|
|
|
rules := []C.Rule{}
|
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
rulesConfig := cfg.Rule
|
2018-07-25 16:04:59 +00:00
|
|
|
// parse rules
|
2018-11-21 10:21:24 +00: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:
|
|
|
|
return nil, fmt.Errorf("Rules[%d] error: format invalid", idx)
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-11-21 10:21:24 +00:00
|
|
|
|
2018-07-25 16:04:59 +00:00
|
|
|
rule = trimArr(rule)
|
|
|
|
switch rule[0] {
|
2018-09-09 07:01:46 +00:00
|
|
|
case "DOMAIN":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewDomain(payload, target))
|
2018-07-25 16:04:59 +00:00
|
|
|
case "DOMAIN-SUFFIX":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewDomainSuffix(payload, target))
|
2018-07-25 16:04:59 +00:00
|
|
|
case "DOMAIN-KEYWORD":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewDomainKeyword(payload, target))
|
2018-07-25 16:04:59 +00:00
|
|
|
case "GEOIP":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewGEOIP(payload, target))
|
2018-07-25 16:04:59 +00:00
|
|
|
case "IP-CIDR", "IP-CIDR6":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewIPCIDR(payload, target))
|
|
|
|
case "MATCH":
|
|
|
|
fallthrough
|
2018-07-25 16:04:59 +00:00
|
|
|
case "FINAL":
|
2018-11-21 10:21:24 +00:00
|
|
|
rules = append(rules, R.NewFinal(target))
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
return rules, nil
|
2018-07-25 16:04:59 +00:00
|
|
|
}
|
2018-12-05 13:13:29 +00: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
|
|
|
|
if host, err := hostWithDefaultPort(server, "53"); err == nil {
|
|
|
|
nameservers = append(
|
|
|
|
nameservers,
|
|
|
|
dns.NameServer{Addr: host},
|
|
|
|
)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := url.Parse(server)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("DNS NameServer[%d] format error: %s", idx, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Scheme != "tls" {
|
|
|
|
return nil, fmt.Errorf("DNS NameServer[%d] unsupport scheme: %s", idx, u.Scheme)
|
|
|
|
}
|
|
|
|
|
|
|
|
host, err := hostWithDefaultPort(u.Host, "853")
|
|
|
|
nameservers = append(
|
|
|
|
nameservers,
|
|
|
|
dns.NameServer{
|
|
|
|
Net: "tcp-tls",
|
|
|
|
Addr: host,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nameservers, nil
|
|
|
|
}
|
|
|
|
|
2018-12-10 03:00:52 +00:00
|
|
|
func parseDNS(cfg rawDNS) (*DNS, error) {
|
2018-12-05 13:13:29 +00: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,
|
|
|
|
EnhancedMode: cfg.EnhancedMode,
|
|
|
|
}
|
|
|
|
|
|
|
|
if nameserver, err := parseNameServer(cfg.NameServer); err == nil {
|
|
|
|
dnsCfg.NameServer = nameserver
|
|
|
|
}
|
|
|
|
|
|
|
|
if fallback, err := parseNameServer(cfg.Fallback); err == nil {
|
|
|
|
dnsCfg.Fallback = fallback
|
|
|
|
}
|
|
|
|
|
|
|
|
return dnsCfg, nil
|
|
|
|
}
|