sing-box/route/rule_dns.go

412 lines
11 KiB
Go
Raw Normal View History

2022-07-07 13:47:21 +00:00
package route
import (
"strings"
"github.com/sagernet/sing-box/adapter"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing/common"
E "github.com/sagernet/sing/common/exceptions"
F "github.com/sagernet/sing/common/format"
2022-07-29 16:29:22 +00:00
N "github.com/sagernet/sing/common/network"
2022-07-07 13:47:21 +00:00
)
2022-07-24 06:05:06 +00:00
func NewDNSRule(router adapter.Router, logger log.ContextLogger, options option.DNSRule) (adapter.DNSRule, error) {
2022-07-07 13:47:21 +00:00
switch options.Type {
case "", C.RuleTypeDefault:
if !options.DefaultOptions.IsValid() {
return nil, E.New("missing conditions")
}
if options.DefaultOptions.Server == "" {
return nil, E.New("missing server field")
}
return NewDefaultDNSRule(router, logger, options.DefaultOptions)
case C.RuleTypeLogical:
if !options.LogicalOptions.IsValid() {
return nil, E.New("missing conditions")
}
if options.LogicalOptions.Server == "" {
return nil, E.New("missing server field")
}
return NewLogicalDNSRule(router, logger, options.LogicalOptions)
default:
return nil, E.New("unknown rule type: ", options.Type)
}
}
2022-07-24 06:05:06 +00:00
var _ adapter.DNSRule = (*DefaultDNSRule)(nil)
2022-07-07 13:47:21 +00:00
type DefaultDNSRule struct {
2022-09-14 14:03:26 +00:00
items []RuleItem
sourceAddressItems []RuleItem
sourcePortItems []RuleItem
destinationAddressItems []RuleItem
destinationPortItems []RuleItem
allItems []RuleItem
invert bool
outbound string
disableCache bool
2022-07-19 14:16:49 +00:00
}
2022-07-12 07:17:29 +00:00
func NewDefaultDNSRule(router adapter.Router, logger log.ContextLogger, options option.DefaultDNSRule) (*DefaultDNSRule, error) {
2022-07-07 13:47:21 +00:00
rule := &DefaultDNSRule{
2022-07-24 06:05:06 +00:00
invert: options.Invert,
outbound: options.Server,
disableCache: options.DisableCache,
2022-07-07 13:47:21 +00:00
}
if len(options.Inbound) > 0 {
item := NewInboundRule(options.Inbound)
rule.items = append(rule.items, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
2022-08-16 15:46:05 +00:00
if options.IPVersion > 0 {
switch options.IPVersion {
case 4, 6:
item := NewIPVersionItem(options.IPVersion == 6)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
default:
return nil, E.New("invalid ip version: ", options.IPVersion)
}
}
2023-02-08 08:18:40 +00:00
if len(options.QueryType) > 0 {
item := NewQueryTypeItem(options.QueryType)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
2022-07-07 13:47:21 +00:00
if options.Network != "" {
switch options.Network {
2022-07-29 16:29:22 +00:00
case N.NetworkTCP, N.NetworkUDP:
2022-07-07 13:47:21 +00:00
item := NewNetworkItem(options.Network)
rule.items = append(rule.items, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
default:
return nil, E.New("invalid network: ", options.Network)
}
}
if len(options.AuthUser) > 0 {
item := NewAuthUserItem(options.AuthUser)
2022-07-17 07:11:26 +00:00
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
2022-07-07 13:47:21 +00:00
if len(options.Protocol) > 0 {
2022-07-20 01:41:44 +00:00
item := NewProtocolItem(options.Protocol)
2022-07-07 13:47:21 +00:00
rule.items = append(rule.items, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.Domain) > 0 || len(options.DomainSuffix) > 0 {
item := NewDomainItem(options.Domain, options.DomainSuffix)
2022-09-14 14:03:26 +00:00
rule.destinationAddressItems = append(rule.destinationAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.DomainKeyword) > 0 {
item := NewDomainKeywordItem(options.DomainKeyword)
2022-09-14 14:03:26 +00:00
rule.destinationAddressItems = append(rule.destinationAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.DomainRegex) > 0 {
item, err := NewDomainRegexItem(options.DomainRegex)
if err != nil {
return nil, E.Cause(err, "domain_regex")
}
2022-09-14 14:03:26 +00:00
rule.destinationAddressItems = append(rule.destinationAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.Geosite) > 0 {
item := NewGeositeItem(router, logger, options.Geosite)
2022-09-14 14:03:26 +00:00
rule.destinationAddressItems = append(rule.destinationAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.SourceGeoIP) > 0 {
item := NewGeoIPItem(router, logger, true, options.SourceGeoIP)
2022-09-14 14:03:26 +00:00
rule.sourceAddressItems = append(rule.sourceAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.SourceIPCIDR) > 0 {
item, err := NewIPCIDRItem(true, options.SourceIPCIDR)
if err != nil {
return nil, E.Cause(err, "source_ipcidr")
}
2022-09-14 14:03:26 +00:00
rule.sourceAddressItems = append(rule.sourceAddressItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.SourcePort) > 0 {
item := NewPortItem(true, options.SourcePort)
2022-09-14 14:03:26 +00:00
rule.sourcePortItems = append(rule.sourcePortItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.SourcePortRange) > 0 {
item, err := NewPortRangeItem(true, options.SourcePortRange)
if err != nil {
return nil, E.Cause(err, "source_port_range")
}
2022-09-14 14:03:26 +00:00
rule.sourcePortItems = append(rule.sourcePortItems, item)
rule.allItems = append(rule.allItems, item)
}
2022-07-07 13:47:21 +00:00
if len(options.Port) > 0 {
item := NewPortItem(false, options.Port)
2022-09-14 14:03:26 +00:00
rule.destinationPortItems = append(rule.destinationPortItems, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
if len(options.PortRange) > 0 {
item, err := NewPortRangeItem(false, options.PortRange)
if err != nil {
return nil, E.Cause(err, "port_range")
}
2022-09-14 14:03:26 +00:00
rule.destinationPortItems = append(rule.destinationPortItems, item)
rule.allItems = append(rule.allItems, item)
}
if len(options.ProcessName) > 0 {
item := NewProcessItem(options.ProcessName)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
if len(options.ProcessPath) > 0 {
item := NewProcessPathItem(options.ProcessPath)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
if len(options.PackageName) > 0 {
item := NewPackageNameItem(options.PackageName)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
if len(options.User) > 0 {
item := NewUserItem(options.User)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
if len(options.UserID) > 0 {
item := NewUserIDItem(options.UserID)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
2022-07-07 13:47:21 +00:00
if len(options.Outbound) > 0 {
item := NewOutboundRule(options.Outbound)
rule.items = append(rule.items, item)
2022-07-10 06:22:28 +00:00
rule.allItems = append(rule.allItems, item)
2022-07-07 13:47:21 +00:00
}
2022-09-10 06:09:47 +00:00
if options.ClashMode != "" {
item := NewClashModeItem(router, options.ClashMode)
rule.items = append(rule.items, item)
rule.allItems = append(rule.allItems, item)
}
2022-07-07 13:47:21 +00:00
return rule, nil
}
2022-07-24 06:05:06 +00:00
func (r *DefaultDNSRule) Type() string {
return C.RuleTypeDefault
}
2022-07-07 13:47:21 +00:00
func (r *DefaultDNSRule) Start() error {
2022-07-10 06:22:28 +00:00
for _, item := range r.allItems {
2022-07-07 13:47:21 +00:00
err := common.Start(item)
if err != nil {
return err
}
}
return nil
}
func (r *DefaultDNSRule) Close() error {
2022-07-10 06:22:28 +00:00
for _, item := range r.allItems {
2022-07-07 13:47:21 +00:00
err := common.Close(item)
if err != nil {
return err
}
}
return nil
}
func (r *DefaultDNSRule) UpdateGeosite() error {
2022-07-10 06:22:28 +00:00
for _, item := range r.allItems {
2022-07-07 13:47:21 +00:00
if geositeItem, isSite := item.(*GeositeItem); isSite {
err := geositeItem.Update()
if err != nil {
return err
}
}
}
return nil
}
func (r *DefaultDNSRule) Match(metadata *adapter.InboundContext) bool {
for _, item := range r.items {
if !item.Match(metadata) {
2022-07-24 05:44:26 +00:00
return r.invert
2022-07-07 13:47:21 +00:00
}
}
2022-09-14 14:03:26 +00:00
if len(r.sourceAddressItems) > 0 {
var sourceAddressMatch bool
for _, item := range r.sourceAddressItems {
if item.Match(metadata) {
sourceAddressMatch = true
break
}
}
if !sourceAddressMatch {
return r.invert
}
}
if len(r.sourcePortItems) > 0 {
var sourcePortMatch bool
for _, item := range r.sourcePortItems {
2022-07-10 06:22:28 +00:00
if item.Match(metadata) {
2022-09-14 14:03:26 +00:00
sourcePortMatch = true
2022-07-10 06:22:28 +00:00
break
}
}
2022-09-14 14:03:26 +00:00
if !sourcePortMatch {
2022-07-24 05:44:26 +00:00
return r.invert
2022-07-10 06:22:28 +00:00
}
}
2022-09-14 14:03:26 +00:00
if len(r.destinationAddressItems) > 0 {
var destinationAddressMatch bool
for _, item := range r.destinationAddressItems {
if item.Match(metadata) {
destinationAddressMatch = true
break
}
}
if !destinationAddressMatch {
return r.invert
}
}
if len(r.destinationPortItems) > 0 {
var destinationPortMatch bool
for _, item := range r.destinationPortItems {
if item.Match(metadata) {
destinationPortMatch = true
break
}
}
if !destinationPortMatch {
return r.invert
}
}
2022-07-24 05:44:26 +00:00
return !r.invert
2022-07-07 13:47:21 +00:00
}
func (r *DefaultDNSRule) Outbound() string {
return r.outbound
}
2022-07-24 06:05:06 +00:00
func (r *DefaultDNSRule) DisableCache() bool {
return r.disableCache
}
2022-07-07 13:47:21 +00:00
func (r *DefaultDNSRule) String() string {
return strings.Join(F.MapToString(r.allItems), " ")
2022-07-07 13:47:21 +00:00
}
2022-07-24 06:05:06 +00:00
var _ adapter.DNSRule = (*LogicalDNSRule)(nil)
2022-07-07 13:47:21 +00:00
type LogicalDNSRule struct {
2022-07-24 06:05:06 +00:00
mode string
rules []*DefaultDNSRule
invert bool
outbound string
disableCache bool
}
func NewLogicalDNSRule(router adapter.Router, logger log.ContextLogger, options option.LogicalDNSRule) (*LogicalDNSRule, error) {
r := &LogicalDNSRule{
rules: make([]*DefaultDNSRule, len(options.Rules)),
invert: options.Invert,
outbound: options.Server,
disableCache: options.DisableCache,
}
switch options.Mode {
case C.LogicalTypeAnd:
r.mode = C.LogicalTypeAnd
case C.LogicalTypeOr:
r.mode = C.LogicalTypeOr
default:
return nil, E.New("unknown logical mode: ", options.Mode)
}
for i, subRule := range options.Rules {
rule, err := NewDefaultDNSRule(router, logger, subRule)
if err != nil {
return nil, E.Cause(err, "sub rule[", i, "]")
}
r.rules[i] = rule
}
return r, nil
2022-07-07 13:47:21 +00:00
}
2022-07-19 14:16:49 +00:00
func (r *LogicalDNSRule) Type() string {
return C.RuleTypeLogical
}
2022-07-07 13:47:21 +00:00
func (r *LogicalDNSRule) UpdateGeosite() error {
for _, rule := range r.rules {
err := rule.UpdateGeosite()
if err != nil {
return err
}
}
return nil
}
func (r *LogicalDNSRule) Start() error {
for _, rule := range r.rules {
err := rule.Start()
if err != nil {
return err
}
}
return nil
}
func (r *LogicalDNSRule) Close() error {
for _, rule := range r.rules {
err := rule.Close()
if err != nil {
return err
}
}
return nil
}
func (r *LogicalDNSRule) Match(metadata *adapter.InboundContext) bool {
if r.mode == C.LogicalTypeAnd {
return common.All(r.rules, func(it *DefaultDNSRule) bool {
return it.Match(metadata)
2022-07-24 06:05:06 +00:00
}) != r.invert
2022-07-07 13:47:21 +00:00
} else {
return common.Any(r.rules, func(it *DefaultDNSRule) bool {
return it.Match(metadata)
2022-07-24 06:05:06 +00:00
}) != r.invert
2022-07-07 13:47:21 +00:00
}
}
func (r *LogicalDNSRule) Outbound() string {
return r.outbound
}
2022-07-24 06:05:06 +00:00
func (r *LogicalDNSRule) DisableCache() bool {
return r.disableCache
}
2022-07-07 13:47:21 +00:00
func (r *LogicalDNSRule) String() string {
var op string
switch r.mode {
case C.LogicalTypeAnd:
op = "&&"
case C.LogicalTypeOr:
op = "||"
}
2022-07-24 06:05:06 +00:00
if !r.invert {
return strings.Join(F.MapToString(r.rules), " "+op+" ")
} else {
return "!(" + strings.Join(F.MapToString(r.rules), " "+op+" ") + ")"
}
2022-07-07 13:47:21 +00:00
}