123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- 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"
- "github.com/sagernet/sing/common"
- E "github.com/sagernet/sing/common/exceptions"
- F "github.com/sagernet/sing/common/format"
- N "github.com/sagernet/sing/common/network"
- )
- func NewDNSRule(router adapter.Router, logger log.ContextLogger, options option.DNSRule) (adapter.DNSRule, error) {
- 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)
- }
- }
- var _ adapter.DNSRule = (*DefaultDNSRule)(nil)
- type DefaultDNSRule struct {
- items []RuleItem
- sourceAddressItems []RuleItem
- sourcePortItems []RuleItem
- destinationAddressItems []RuleItem
- destinationPortItems []RuleItem
- allItems []RuleItem
- invert bool
- outbound string
- disableCache bool
- }
- func NewDefaultDNSRule(router adapter.Router, logger log.ContextLogger, options option.DefaultDNSRule) (*DefaultDNSRule, error) {
- rule := &DefaultDNSRule{
- invert: options.Invert,
- outbound: options.Server,
- disableCache: options.DisableCache,
- }
- if len(options.Inbound) > 0 {
- item := NewInboundRule(options.Inbound)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- 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)
- }
- }
- if len(options.QueryType) > 0 {
- item := NewQueryTypeItem(options.QueryType)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- if options.Network != "" {
- switch options.Network {
- case N.NetworkTCP, N.NetworkUDP:
- item := NewNetworkItem(options.Network)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- default:
- return nil, E.New("invalid network: ", options.Network)
- }
- }
- if len(options.AuthUser) > 0 {
- item := NewAuthUserItem(options.AuthUser)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.Protocol) > 0 {
- item := NewProtocolItem(options.Protocol)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.Domain) > 0 || len(options.DomainSuffix) > 0 {
- item := NewDomainItem(options.Domain, options.DomainSuffix)
- rule.destinationAddressItems = append(rule.destinationAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.DomainKeyword) > 0 {
- item := NewDomainKeywordItem(options.DomainKeyword)
- rule.destinationAddressItems = append(rule.destinationAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.DomainRegex) > 0 {
- item, err := NewDomainRegexItem(options.DomainRegex)
- if err != nil {
- return nil, E.Cause(err, "domain_regex")
- }
- rule.destinationAddressItems = append(rule.destinationAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.Geosite) > 0 {
- item := NewGeositeItem(router, logger, options.Geosite)
- rule.destinationAddressItems = append(rule.destinationAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.SourceGeoIP) > 0 {
- item := NewGeoIPItem(router, logger, true, options.SourceGeoIP)
- rule.sourceAddressItems = append(rule.sourceAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.SourceIPCIDR) > 0 {
- item, err := NewIPCIDRItem(true, options.SourceIPCIDR)
- if err != nil {
- return nil, E.Cause(err, "source_ipcidr")
- }
- rule.sourceAddressItems = append(rule.sourceAddressItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.SourcePort) > 0 {
- item := NewPortItem(true, options.SourcePort)
- rule.sourcePortItems = append(rule.sourcePortItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.SourcePortRange) > 0 {
- item, err := NewPortRangeItem(true, options.SourcePortRange)
- if err != nil {
- return nil, E.Cause(err, "source_port_range")
- }
- rule.sourcePortItems = append(rule.sourcePortItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.Port) > 0 {
- item := NewPortItem(false, options.Port)
- rule.destinationPortItems = append(rule.destinationPortItems, item)
- rule.allItems = append(rule.allItems, item)
- }
- if len(options.PortRange) > 0 {
- item, err := NewPortRangeItem(false, options.PortRange)
- if err != nil {
- return nil, E.Cause(err, "port_range")
- }
- 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)
- }
- if len(options.Outbound) > 0 {
- item := NewOutboundRule(options.Outbound)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- if options.ClashMode != "" {
- item := NewClashModeItem(router, options.ClashMode)
- rule.items = append(rule.items, item)
- rule.allItems = append(rule.allItems, item)
- }
- return rule, nil
- }
- func (r *DefaultDNSRule) Type() string {
- return C.RuleTypeDefault
- }
- func (r *DefaultDNSRule) Start() error {
- for _, item := range r.allItems {
- err := common.Start(item)
- if err != nil {
- return err
- }
- }
- return nil
- }
- func (r *DefaultDNSRule) Close() error {
- for _, item := range r.allItems {
- err := common.Close(item)
- if err != nil {
- return err
- }
- }
- return nil
- }
- func (r *DefaultDNSRule) UpdateGeosite() error {
- for _, item := range r.allItems {
- 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) {
- return r.invert
- }
- }
- 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 {
- if item.Match(metadata) {
- sourcePortMatch = true
- break
- }
- }
- if !sourcePortMatch {
- return r.invert
- }
- }
- 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
- }
- }
- return !r.invert
- }
- func (r *DefaultDNSRule) Outbound() string {
- return r.outbound
- }
- func (r *DefaultDNSRule) DisableCache() bool {
- return r.disableCache
- }
- func (r *DefaultDNSRule) String() string {
- return strings.Join(F.MapToString(r.allItems), " ")
- }
- var _ adapter.DNSRule = (*LogicalDNSRule)(nil)
- type LogicalDNSRule struct {
- 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
- }
- func (r *LogicalDNSRule) Type() string {
- return C.RuleTypeLogical
- }
- 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)
- }) != r.invert
- } else {
- return common.Any(r.rules, func(it *DefaultDNSRule) bool {
- return it.Match(metadata)
- }) != r.invert
- }
- }
- func (r *LogicalDNSRule) Outbound() string {
- return r.outbound
- }
- func (r *LogicalDNSRule) DisableCache() bool {
- return r.disableCache
- }
- func (r *LogicalDNSRule) String() string {
- var op string
- switch r.mode {
- case C.LogicalTypeAnd:
- op = "&&"
- case C.LogicalTypeOr:
- op = "||"
- }
- if !r.invert {
- return strings.Join(F.MapToString(r.rules), " "+op+" ")
- } else {
- return "!(" + strings.Join(F.MapToString(r.rules), " "+op+" ") + ")"
- }
- }
|