clash/dns/filters.go

51 lines
920 B
Go
Raw Normal View History

2019-09-15 05:36:45 +00:00
package dns
2020-01-11 13:07:01 +00:00
import (
"net"
"strings"
2020-01-11 13:07:01 +00:00
"github.com/Dreamacro/clash/component/mmdb"
"github.com/Dreamacro/clash/component/trie"
2020-01-11 13:07:01 +00:00
)
2019-09-15 05:36:45 +00:00
type fallbackIPFilter interface {
2019-09-15 05:36:45 +00:00
Match(net.IP) bool
}
2021-08-25 07:15:13 +00:00
type geoipFilter struct {
code string
}
2019-09-15 05:36:45 +00:00
func (gf *geoipFilter) Match(ip net.IP) bool {
2020-01-11 13:07:01 +00:00
record, _ := mmdb.Instance().Country(ip)
return !strings.EqualFold(record.Country.IsoCode, gf.code) && !ip.IsPrivate()
2019-09-15 05:36:45 +00:00
}
type ipnetFilter struct {
ipnet *net.IPNet
}
func (inf *ipnetFilter) Match(ip net.IP) bool {
return inf.ipnet.Contains(ip)
}
type fallbackDomainFilter interface {
Match(domain string) bool
}
2021-10-10 15:44:09 +00:00
type domainFilter struct {
tree *trie.DomainTrie
}
func NewDomainFilter(domains []string) *domainFilter {
df := domainFilter{tree: trie.New()}
for _, domain := range domains {
df.tree.Insert(domain, "")
}
return &df
}
func (df *domainFilter) Match(domain string) bool {
return df.tree.Search(domain) != nil
}