mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
763a127287
should only be used with `ipcidr` behavior
94 lines
1.9 KiB
Go
94 lines
1.9 KiB
Go
package provider
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
C "github.com/metacubex/mihomo/constant"
|
|
P "github.com/metacubex/mihomo/constant/provider"
|
|
"github.com/metacubex/mihomo/rules/common"
|
|
)
|
|
|
|
type RuleSet struct {
|
|
*common.Base
|
|
ruleProviderName string
|
|
adapter string
|
|
isSrc bool
|
|
noResolveIP bool
|
|
shouldFindProcess bool
|
|
}
|
|
|
|
func (rs *RuleSet) ShouldFindProcess() bool {
|
|
if rs.shouldFindProcess {
|
|
return true
|
|
}
|
|
if provider, ok := rs.getProvider(); ok {
|
|
return provider.ShouldFindProcess()
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (rs *RuleSet) RuleType() C.RuleType {
|
|
return C.RuleSet
|
|
}
|
|
|
|
func (rs *RuleSet) Match(metadata *C.Metadata) (bool, string) {
|
|
if provider, ok := rs.getProvider(); ok {
|
|
if rs.isSrc {
|
|
metadata.SwapSrcDst()
|
|
defer metadata.SwapSrcDst()
|
|
}
|
|
return provider.Match(metadata), rs.adapter
|
|
}
|
|
return false, ""
|
|
}
|
|
|
|
// MatchDomain implements C.DomainMatcher
|
|
func (rs *RuleSet) MatchDomain(domain string) bool {
|
|
ok, _ := rs.Match(&C.Metadata{Host: domain})
|
|
return ok
|
|
}
|
|
|
|
// MatchIp implements C.IpMatcher
|
|
func (rs *RuleSet) MatchIp(ip netip.Addr) bool {
|
|
ok, _ := rs.Match(&C.Metadata{DstIP: ip})
|
|
return ok
|
|
}
|
|
|
|
func (rs *RuleSet) Adapter() string {
|
|
return rs.adapter
|
|
}
|
|
|
|
func (rs *RuleSet) Payload() string {
|
|
return rs.ruleProviderName
|
|
}
|
|
|
|
func (rs *RuleSet) ShouldResolveIP() bool {
|
|
if rs.noResolveIP {
|
|
return false
|
|
}
|
|
if provider, ok := rs.getProvider(); ok {
|
|
return provider.ShouldResolveIP()
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (rs *RuleSet) ProviderNames() []string {
|
|
return []string{rs.ruleProviderName}
|
|
}
|
|
|
|
func (rs *RuleSet) getProvider() (P.RuleProvider, bool) {
|
|
pp, ok := tunnel.RuleProviders()[rs.ruleProviderName]
|
|
return pp, ok
|
|
}
|
|
|
|
func NewRuleSet(ruleProviderName string, adapter string, isSrc bool, noResolveIP bool) (*RuleSet, error) {
|
|
rs := &RuleSet{
|
|
Base: &common.Base{},
|
|
ruleProviderName: ruleProviderName,
|
|
adapter: adapter,
|
|
isSrc: isSrc,
|
|
noResolveIP: noResolveIP,
|
|
}
|
|
return rs, nil
|
|
}
|