2019-02-10 13:04:11 -05:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
"github.com/golang/protobuf/proto"
|
2021-02-16 15:31:50 -05:00
|
|
|
|
|
|
|
"github.com/v2fly/v2ray-core/v4/app/router"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type RouterRulesConfig struct {
|
|
|
|
RuleList []json.RawMessage `json:"rules"`
|
|
|
|
DomainStrategy string `json:"domainStrategy"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type BalancingRule struct {
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
Selectors StringList `json:"selector"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *BalancingRule) Build() (*router.BalancingRule, error) {
|
2019-06-14 09:47:28 -04:00
|
|
|
if r.Tag == "" {
|
2019-02-10 13:04:11 -05:00
|
|
|
return nil, newError("empty balancer tag")
|
|
|
|
}
|
|
|
|
if len(r.Selectors) == 0 {
|
|
|
|
return nil, newError("empty selector list")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &router.BalancingRule{
|
|
|
|
Tag: r.Tag,
|
|
|
|
OutboundSelector: []string(r.Selectors),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type RouterConfig struct {
|
|
|
|
Settings *RouterRulesConfig `json:"settings"` // Deprecated
|
|
|
|
RuleList []json.RawMessage `json:"rules"`
|
|
|
|
DomainStrategy *string `json:"domainStrategy"`
|
|
|
|
Balancers []*BalancingRule `json:"balancers"`
|
2021-03-05 13:37:32 -05:00
|
|
|
|
|
|
|
DomainMatcher string `json:"domainMatcher"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RouterConfig) getDomainStrategy() router.Config_DomainStrategy {
|
|
|
|
ds := ""
|
|
|
|
if c.DomainStrategy != nil {
|
|
|
|
ds = *c.DomainStrategy
|
|
|
|
} else if c.Settings != nil {
|
|
|
|
ds = c.Settings.DomainStrategy
|
|
|
|
}
|
|
|
|
|
|
|
|
switch strings.ToLower(ds) {
|
2020-12-17 19:36:34 -05:00
|
|
|
case "alwaysip", "always_ip", "always-ip":
|
2019-02-10 13:04:11 -05:00
|
|
|
return router.Config_UseIp
|
2020-12-17 19:36:34 -05:00
|
|
|
case "ipifnonmatch", "ip_if_non_match", "ip-if-non-match":
|
2019-02-10 13:04:11 -05:00
|
|
|
return router.Config_IpIfNonMatch
|
2020-12-17 19:36:34 -05:00
|
|
|
case "ipondemand", "ip_on_demand", "ip-on-demand":
|
2019-02-10 13:04:11 -05:00
|
|
|
return router.Config_IpOnDemand
|
|
|
|
default:
|
|
|
|
return router.Config_AsIs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RouterConfig) Build() (*router.Config, error) {
|
|
|
|
config := new(router.Config)
|
|
|
|
config.DomainStrategy = c.getDomainStrategy()
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
var rawRuleList []json.RawMessage
|
|
|
|
if c != nil {
|
|
|
|
rawRuleList = c.RuleList
|
|
|
|
if c.Settings != nil {
|
|
|
|
c.RuleList = append(c.RuleList, c.Settings.RuleList...)
|
|
|
|
rawRuleList = c.RuleList
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
for _, rawRule := range rawRuleList {
|
|
|
|
rule, err := ParseRule(rawRule)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-03-05 13:37:32 -05:00
|
|
|
|
|
|
|
if rule.DomainMatcher == "" {
|
|
|
|
rule.DomainMatcher = c.DomainMatcher
|
|
|
|
}
|
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
config.Rule = append(config.Rule, rule)
|
|
|
|
}
|
|
|
|
for _, rawBalancer := range c.Balancers {
|
|
|
|
balancer, err := rawBalancer.Build()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.BalancingRule = append(config.BalancingRule, balancer)
|
|
|
|
}
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type RouterRule struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
OutboundTag string `json:"outboundTag"`
|
|
|
|
BalancerTag string `json:"balancerTag"`
|
2021-03-03 17:35:55 -05:00
|
|
|
|
|
|
|
DomainMatcher string `json:"domainMatcher"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func ParseIP(s string) (*router.CIDR, error) {
|
|
|
|
var addr, mask string
|
|
|
|
i := strings.Index(s, "/")
|
|
|
|
if i < 0 {
|
|
|
|
addr = s
|
|
|
|
} else {
|
|
|
|
addr = s[:i]
|
|
|
|
mask = s[i+1:]
|
|
|
|
}
|
|
|
|
ip := net.ParseAddress(addr)
|
|
|
|
switch ip.Family() {
|
|
|
|
case net.AddressFamilyIPv4:
|
|
|
|
bits := uint32(32)
|
|
|
|
if len(mask) > 0 {
|
|
|
|
bits64, err := strconv.ParseUint(mask, 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("invalid network mask for router: ", mask).Base(err)
|
|
|
|
}
|
|
|
|
bits = uint32(bits64)
|
|
|
|
}
|
|
|
|
if bits > 32 {
|
|
|
|
return nil, newError("invalid network mask for router: ", bits)
|
|
|
|
}
|
|
|
|
return &router.CIDR{
|
|
|
|
Ip: []byte(ip.IP()),
|
|
|
|
Prefix: bits,
|
|
|
|
}, nil
|
|
|
|
case net.AddressFamilyIPv6:
|
|
|
|
bits := uint32(128)
|
|
|
|
if len(mask) > 0 {
|
|
|
|
bits64, err := strconv.ParseUint(mask, 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("invalid network mask for router: ", mask).Base(err)
|
|
|
|
}
|
|
|
|
bits = uint32(bits64)
|
|
|
|
}
|
|
|
|
if bits > 128 {
|
|
|
|
return nil, newError("invalid network mask for router: ", bits)
|
|
|
|
}
|
|
|
|
return &router.CIDR{
|
|
|
|
Ip: []byte(ip.IP()),
|
|
|
|
Prefix: bits,
|
|
|
|
}, nil
|
|
|
|
default:
|
|
|
|
return nil, newError("unsupported address for router: ", s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadGeoIP(country string) ([]*router.CIDR, error) {
|
|
|
|
return loadIP("geoip.dat", country)
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadIP(filename, country string) ([]*router.CIDR, error) {
|
|
|
|
geoipBytes, err := filesystem.ReadAsset(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to open file: ", filename).Base(err)
|
|
|
|
}
|
|
|
|
var geoipList router.GeoIPList
|
|
|
|
if err := proto.Unmarshal(geoipBytes, &geoipList); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, geoip := range geoipList.Entry {
|
2020-12-17 19:36:34 -05:00
|
|
|
if strings.EqualFold(geoip.CountryCode, country) {
|
2019-02-10 13:04:11 -05:00
|
|
|
return geoip.Cidr, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 02:01:12 -04:00
|
|
|
return nil, newError("country not found in ", filename, ": ", country)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
2020-12-17 19:36:34 -05:00
|
|
|
func loadSite(filename, list string) ([]*router.Domain, error) {
|
2019-02-10 13:04:11 -05:00
|
|
|
geositeBytes, err := filesystem.ReadAsset(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to open file: ", filename).Base(err)
|
|
|
|
}
|
|
|
|
var geositeList router.GeoSiteList
|
|
|
|
if err := proto.Unmarshal(geositeBytes, &geositeList); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, site := range geositeList.Entry {
|
2020-12-17 19:36:34 -05:00
|
|
|
if strings.EqualFold(site.CountryCode, list) {
|
2019-02-10 13:04:11 -05:00
|
|
|
return site.Domain, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("list not found in ", filename, ": ", list)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type AttributeMatcher interface {
|
|
|
|
Match(*router.Domain) bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type BooleanMatcher string
|
|
|
|
|
|
|
|
func (m BooleanMatcher) Match(domain *router.Domain) bool {
|
|
|
|
for _, attr := range domain.Attribute {
|
2020-12-17 19:36:34 -05:00
|
|
|
if strings.EqualFold(attr.GetKey(), string(m)) {
|
2019-02-10 13:04:11 -05:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type AttributeList struct {
|
|
|
|
matcher []AttributeMatcher
|
|
|
|
}
|
|
|
|
|
|
|
|
func (al *AttributeList) Match(domain *router.Domain) bool {
|
|
|
|
for _, matcher := range al.matcher {
|
|
|
|
if !matcher.Match(domain) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (al *AttributeList) IsEmpty() bool {
|
|
|
|
return len(al.matcher) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseAttrs(attrs []string) *AttributeList {
|
|
|
|
al := new(AttributeList)
|
|
|
|
for _, attr := range attrs {
|
2020-12-17 19:36:34 -05:00
|
|
|
trimmedAttr := strings.ToLower(strings.TrimSpace(attr))
|
|
|
|
if len(trimmedAttr) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
al.matcher = append(al.matcher, BooleanMatcher(trimmedAttr))
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
return al
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadGeositeWithAttr(file string, siteWithAttr string) ([]*router.Domain, error) {
|
|
|
|
parts := strings.Split(siteWithAttr, "@")
|
|
|
|
if len(parts) == 0 {
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("empty rule")
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
list := strings.TrimSpace(parts[0])
|
|
|
|
attrVal := parts[1:]
|
|
|
|
|
|
|
|
if len(list) == 0 {
|
|
|
|
return nil, newError("empty listname in rule: ", siteWithAttr)
|
|
|
|
}
|
|
|
|
|
|
|
|
domains, err := loadSite(file, list)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-12-17 19:36:34 -05:00
|
|
|
attrs := parseAttrs(attrVal)
|
2019-02-10 13:04:11 -05:00
|
|
|
if attrs.IsEmpty() {
|
2020-12-17 19:36:34 -05:00
|
|
|
if strings.Contains(siteWithAttr, "@") {
|
|
|
|
newError("empty attribute list: ", siteWithAttr)
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
return domains, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
filteredDomains := make([]*router.Domain, 0, len(domains))
|
2020-12-17 19:36:34 -05:00
|
|
|
hasAttrMatched := false
|
2019-02-10 13:04:11 -05:00
|
|
|
for _, domain := range domains {
|
|
|
|
if attrs.Match(domain) {
|
2020-12-17 19:36:34 -05:00
|
|
|
hasAttrMatched = true
|
2019-02-10 13:04:11 -05:00
|
|
|
filteredDomains = append(filteredDomains, domain)
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
if !hasAttrMatched {
|
|
|
|
newError("attribute match no rule: geosite:", siteWithAttr)
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
|
|
|
|
return filteredDomains, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseDomainRule(domain string) ([]*router.Domain, error) {
|
|
|
|
if strings.HasPrefix(domain, "geosite:") {
|
2020-12-17 19:36:34 -05:00
|
|
|
list := domain[8:]
|
|
|
|
if len(list) == 0 {
|
|
|
|
return nil, newError("empty listname in rule: ", domain)
|
|
|
|
}
|
|
|
|
domains, err := loadGeositeWithAttr("geosite.dat", list)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err != nil {
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("failed to load geosite: ", list).Base(err)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
return domains, nil
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2020-07-10 21:24:03 -04:00
|
|
|
var isExtDatFile = 0
|
|
|
|
{
|
|
|
|
const prefix = "ext:"
|
|
|
|
if strings.HasPrefix(domain, prefix) {
|
|
|
|
isExtDatFile = len(prefix)
|
|
|
|
}
|
|
|
|
const prefixQualified = "ext-domain:"
|
|
|
|
if strings.HasPrefix(domain, prefixQualified) {
|
|
|
|
isExtDatFile = len(prefixQualified)
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2020-07-10 21:24:03 -04:00
|
|
|
if isExtDatFile != 0 {
|
|
|
|
kv := strings.Split(domain[isExtDatFile:], ":")
|
2019-02-10 13:04:11 -05:00
|
|
|
if len(kv) != 2 {
|
|
|
|
return nil, newError("invalid external resource: ", domain)
|
|
|
|
}
|
|
|
|
filename := kv[0]
|
2020-12-17 19:36:34 -05:00
|
|
|
list := kv[1]
|
|
|
|
domains, err := loadGeositeWithAttr(filename, list)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err != nil {
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("failed to load external geosite: ", list, " from ", filename).Base(err)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
return domains, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
domainRule := new(router.Domain)
|
|
|
|
switch {
|
|
|
|
case strings.HasPrefix(domain, "regexp:"):
|
2020-12-17 19:36:34 -05:00
|
|
|
regexpVal := domain[7:]
|
|
|
|
if len(regexpVal) == 0 {
|
|
|
|
return nil, newError("empty regexp type of rule: ", domain)
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
domainRule.Type = router.Domain_Regex
|
2020-12-17 19:36:34 -05:00
|
|
|
domainRule.Value = regexpVal
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
case strings.HasPrefix(domain, "domain:"):
|
2020-12-17 19:36:34 -05:00
|
|
|
domainName := domain[7:]
|
|
|
|
if len(domainName) == 0 {
|
|
|
|
return nil, newError("empty domain type of rule: ", domain)
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
domainRule.Type = router.Domain_Domain
|
2020-12-17 19:36:34 -05:00
|
|
|
domainRule.Value = domainName
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
case strings.HasPrefix(domain, "full:"):
|
2020-12-17 19:36:34 -05:00
|
|
|
fullVal := domain[5:]
|
|
|
|
if len(fullVal) == 0 {
|
|
|
|
return nil, newError("empty full domain type of rule: ", domain)
|
|
|
|
}
|
2019-02-10 13:04:11 -05:00
|
|
|
domainRule.Type = router.Domain_Full
|
2020-12-17 19:36:34 -05:00
|
|
|
domainRule.Value = fullVal
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2019-02-26 15:32:07 -05:00
|
|
|
case strings.HasPrefix(domain, "keyword:"):
|
2020-12-17 19:36:34 -05:00
|
|
|
keywordVal := domain[8:]
|
|
|
|
if len(keywordVal) == 0 {
|
|
|
|
return nil, newError("empty keyword type of rule: ", domain)
|
|
|
|
}
|
2019-02-26 15:32:07 -05:00
|
|
|
domainRule.Type = router.Domain_Plain
|
2020-12-17 19:36:34 -05:00
|
|
|
domainRule.Value = keywordVal
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2020-08-09 04:51:06 -04:00
|
|
|
case strings.HasPrefix(domain, "dotless:"):
|
|
|
|
domainRule.Type = router.Domain_Regex
|
|
|
|
switch substr := domain[8:]; {
|
|
|
|
case substr == "":
|
|
|
|
domainRule.Value = "^[^.]*$"
|
|
|
|
case !strings.Contains(substr, "."):
|
|
|
|
domainRule.Value = "^[^.]*" + substr + "[^.]*$"
|
|
|
|
default:
|
2020-08-15 11:42:04 -04:00
|
|
|
return nil, newError("substr in dotless rule should not contain a dot: ", substr)
|
2020-08-09 04:51:06 -04:00
|
|
|
}
|
2020-10-11 07:22:46 -04:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
default:
|
|
|
|
domainRule.Type = router.Domain_Plain
|
|
|
|
domainRule.Value = domain
|
|
|
|
}
|
|
|
|
return []*router.Domain{domainRule}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func toCidrList(ips StringList) ([]*router.GeoIP, error) {
|
|
|
|
var geoipList []*router.GeoIP
|
|
|
|
var customCidrs []*router.CIDR
|
|
|
|
|
|
|
|
for _, ip := range ips {
|
|
|
|
if strings.HasPrefix(ip, "geoip:") {
|
|
|
|
country := ip[6:]
|
2020-12-17 19:36:34 -05:00
|
|
|
if len(country) == 0 {
|
|
|
|
return nil, newError("empty country name in rule")
|
|
|
|
}
|
|
|
|
geoip, err := loadGeoIP(country)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err != nil {
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("failed to load geoip: ", country).Base(err)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
geoipList = append(geoipList, &router.GeoIP{
|
|
|
|
CountryCode: strings.ToUpper(country),
|
|
|
|
Cidr: geoip,
|
|
|
|
})
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
continue
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2020-07-10 21:24:03 -04:00
|
|
|
var isExtDatFile = 0
|
|
|
|
{
|
|
|
|
const prefix = "ext:"
|
|
|
|
if strings.HasPrefix(ip, prefix) {
|
|
|
|
isExtDatFile = len(prefix)
|
|
|
|
}
|
|
|
|
const prefixQualified = "ext-ip:"
|
|
|
|
if strings.HasPrefix(ip, prefixQualified) {
|
|
|
|
isExtDatFile = len(prefixQualified)
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
|
2020-07-10 21:24:03 -04:00
|
|
|
if isExtDatFile != 0 {
|
|
|
|
kv := strings.Split(ip[isExtDatFile:], ":")
|
2019-02-10 13:04:11 -05:00
|
|
|
if len(kv) != 2 {
|
|
|
|
return nil, newError("invalid external resource: ", ip)
|
|
|
|
}
|
|
|
|
|
|
|
|
filename := kv[0]
|
|
|
|
country := kv[1]
|
2020-12-17 19:36:34 -05:00
|
|
|
if len(filename) == 0 || len(country) == 0 {
|
|
|
|
return nil, newError("empty filename or empty country in rule")
|
|
|
|
}
|
|
|
|
geoip, err := loadIP(filename, country)
|
2019-02-10 13:04:11 -05:00
|
|
|
if err != nil {
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("failed to load geoip: ", country, " from ", filename).Base(err)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
geoipList = append(geoipList, &router.GeoIP{
|
|
|
|
CountryCode: strings.ToUpper(filename + "_" + country),
|
|
|
|
Cidr: geoip,
|
|
|
|
})
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ipRule, err := ParseIP(ip)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("invalid IP: ", ip).Base(err)
|
|
|
|
}
|
|
|
|
customCidrs = append(customCidrs, ipRule)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(customCidrs) > 0 {
|
|
|
|
geoipList = append(geoipList, &router.GeoIP{
|
|
|
|
Cidr: customCidrs,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return geoipList, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseFieldRule(msg json.RawMessage) (*router.RoutingRule, error) {
|
|
|
|
type RawFieldRule struct {
|
|
|
|
RouterRule
|
|
|
|
Domain *StringList `json:"domain"`
|
2020-12-11 08:16:52 -05:00
|
|
|
Domains *StringList `json:"domains"`
|
2019-02-10 13:04:11 -05:00
|
|
|
IP *StringList `json:"ip"`
|
2019-02-24 17:43:00 -05:00
|
|
|
Port *PortList `json:"port"`
|
2019-02-10 13:04:11 -05:00
|
|
|
Network *NetworkList `json:"network"`
|
|
|
|
SourceIP *StringList `json:"source"`
|
2020-08-09 04:53:45 -04:00
|
|
|
SourcePort *PortList `json:"sourcePort"`
|
2019-02-10 13:04:11 -05:00
|
|
|
User *StringList `json:"user"`
|
|
|
|
InboundTag *StringList `json:"inboundTag"`
|
|
|
|
Protocols *StringList `json:"protocol"`
|
2019-02-28 08:04:43 -05:00
|
|
|
Attributes string `json:"attrs"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
rawFieldRule := new(RawFieldRule)
|
|
|
|
err := json.Unmarshal(msg, rawFieldRule)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rule := new(router.RoutingRule)
|
2020-10-11 07:22:46 -04:00
|
|
|
switch {
|
|
|
|
case len(rawFieldRule.OutboundTag) > 0:
|
2019-02-10 13:04:11 -05:00
|
|
|
rule.TargetTag = &router.RoutingRule_Tag{
|
|
|
|
Tag: rawFieldRule.OutboundTag,
|
|
|
|
}
|
2020-10-11 07:22:46 -04:00
|
|
|
case len(rawFieldRule.BalancerTag) > 0:
|
2019-02-10 13:04:11 -05:00
|
|
|
rule.TargetTag = &router.RoutingRule_BalancingTag{
|
|
|
|
BalancingTag: rawFieldRule.BalancerTag,
|
|
|
|
}
|
2020-10-11 07:22:46 -04:00
|
|
|
default:
|
2019-02-10 13:04:11 -05:00
|
|
|
return nil, newError("neither outboundTag nor balancerTag is specified in routing rule")
|
|
|
|
}
|
|
|
|
|
2021-03-03 17:35:55 -05:00
|
|
|
if rawFieldRule.DomainMatcher != "" {
|
|
|
|
rule.DomainMatcher = rawFieldRule.DomainMatcher
|
|
|
|
}
|
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
if rawFieldRule.Domain != nil {
|
|
|
|
for _, domain := range *rawFieldRule.Domain {
|
|
|
|
rules, err := parseDomainRule(domain)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to parse domain rule: ", domain).Base(err)
|
|
|
|
}
|
|
|
|
rule.Domain = append(rule.Domain, rules...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 08:16:52 -05:00
|
|
|
if rawFieldRule.Domains != nil {
|
|
|
|
for _, domain := range *rawFieldRule.Domains {
|
|
|
|
rules, err := parseDomainRule(domain)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to parse domain rule: ", domain).Base(err)
|
|
|
|
}
|
|
|
|
rule.Domain = append(rule.Domain, rules...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
if rawFieldRule.IP != nil {
|
|
|
|
geoipList, err := toCidrList(*rawFieldRule.IP)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rule.Geoip = geoipList
|
|
|
|
}
|
|
|
|
|
|
|
|
if rawFieldRule.Port != nil {
|
2019-02-24 17:43:00 -05:00
|
|
|
rule.PortList = rawFieldRule.Port.Build()
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if rawFieldRule.Network != nil {
|
|
|
|
rule.Networks = rawFieldRule.Network.Build()
|
|
|
|
}
|
|
|
|
|
|
|
|
if rawFieldRule.SourceIP != nil {
|
|
|
|
geoipList, err := toCidrList(*rawFieldRule.SourceIP)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rule.SourceGeoip = geoipList
|
|
|
|
}
|
|
|
|
|
2020-08-09 04:53:45 -04:00
|
|
|
if rawFieldRule.SourcePort != nil {
|
|
|
|
rule.SourcePortList = rawFieldRule.SourcePort.Build()
|
|
|
|
}
|
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
if rawFieldRule.User != nil {
|
|
|
|
for _, s := range *rawFieldRule.User {
|
|
|
|
rule.UserEmail = append(rule.UserEmail, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rawFieldRule.InboundTag != nil {
|
|
|
|
for _, s := range *rawFieldRule.InboundTag {
|
|
|
|
rule.InboundTag = append(rule.InboundTag, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rawFieldRule.Protocols != nil {
|
|
|
|
for _, s := range *rawFieldRule.Protocols {
|
|
|
|
rule.Protocol = append(rule.Protocol, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 08:04:43 -05:00
|
|
|
if len(rawFieldRule.Attributes) > 0 {
|
|
|
|
rule.Attributes = rawFieldRule.Attributes
|
|
|
|
}
|
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
return rule, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ParseRule(msg json.RawMessage) (*router.RoutingRule, error) {
|
|
|
|
rawRule := new(RouterRule)
|
|
|
|
err := json.Unmarshal(msg, rawRule)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("invalid router rule").Base(err)
|
|
|
|
}
|
2020-12-17 19:36:34 -05:00
|
|
|
if strings.EqualFold(rawRule.Type, "field") {
|
2019-02-10 13:04:11 -05:00
|
|
|
fieldrule, err := parseFieldRule(msg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("invalid field rule").Base(err)
|
|
|
|
}
|
|
|
|
return fieldrule, nil
|
|
|
|
}
|
|
|
|
|
2020-12-17 19:36:34 -05:00
|
|
|
return nil, newError("unknown router rule type: ", rawRule.Type)
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|