mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-16 12:35:54 +00:00
343 lines
12 KiB
Go
343 lines
12 KiB
Go
|
|
package dns
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"context"
|
|||
|
|
"net/url"
|
|||
|
|
"runtime"
|
|||
|
|
"strings"
|
|||
|
|
"time"
|
|||
|
|
|
|||
|
|
"github.com/xtls/xray-core/app/router"
|
|||
|
|
"github.com/xtls/xray-core/common/errors"
|
|||
|
|
"github.com/xtls/xray-core/common/net"
|
|||
|
|
"github.com/xtls/xray-core/common/platform"
|
|||
|
|
"github.com/xtls/xray-core/common/platform/filesystem"
|
|||
|
|
"github.com/xtls/xray-core/common/session"
|
|||
|
|
"github.com/xtls/xray-core/common/strmatcher"
|
|||
|
|
"github.com/xtls/xray-core/core"
|
|||
|
|
"github.com/xtls/xray-core/features/dns"
|
|||
|
|
"github.com/xtls/xray-core/features/routing"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
type mphMatcherWrapper struct {
|
|||
|
|
m strmatcher.IndexMatcher
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (w *mphMatcherWrapper) Match(s string) bool {
|
|||
|
|
return w.m.Match(s) != nil
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (w *mphMatcherWrapper) String() string {
|
|||
|
|
return "mph-matcher"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Server is the interface for Name Server.
|
|||
|
|
type Server interface {
|
|||
|
|
// Name of the Client.
|
|||
|
|
Name() string
|
|||
|
|
|
|||
|
|
IsDisableCache() bool
|
|||
|
|
|
|||
|
|
// QueryIP sends IP queries to its configured server.
|
|||
|
|
QueryIP(ctx context.Context, domain string, option dns.IPOption) ([]net.IP, uint32, error)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Client is the interface for DNS client.
|
|||
|
|
type Client struct {
|
|||
|
|
server Server
|
|||
|
|
skipFallback bool
|
|||
|
|
domains []string
|
|||
|
|
expectedIPs router.GeoIPMatcher
|
|||
|
|
unexpectedIPs router.GeoIPMatcher
|
|||
|
|
actPrior bool
|
|||
|
|
actUnprior bool
|
|||
|
|
tag string
|
|||
|
|
timeoutMs time.Duration
|
|||
|
|
finalQuery bool
|
|||
|
|
ipOption *dns.IPOption
|
|||
|
|
checkSystem bool
|
|||
|
|
policyID uint32
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// NewServer creates a name server object according to the network destination url.
|
|||
|
|
func NewServer(ctx context.Context, dest net.Destination, dispatcher routing.Dispatcher, disableCache bool, serveStale bool, serveExpiredTTL uint32, clientIP net.IP) (Server, error) {
|
|||
|
|
if address := dest.Address; address.Family().IsDomain() {
|
|||
|
|
u, err := url.Parse(address.Domain())
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
switch {
|
|||
|
|
case strings.EqualFold(u.String(), "localhost"):
|
|||
|
|
return NewLocalNameServer(), nil
|
|||
|
|
case strings.EqualFold(u.Scheme, "https"): // DNS-over-HTTPS Remote mode
|
|||
|
|
return NewDoHNameServer(u, dispatcher, false, disableCache, serveStale, serveExpiredTTL, clientIP), nil
|
|||
|
|
case strings.EqualFold(u.Scheme, "h2c"): // DNS-over-HTTPS h2c Remote mode
|
|||
|
|
return NewDoHNameServer(u, dispatcher, true, disableCache, serveStale, serveExpiredTTL, clientIP), nil
|
|||
|
|
case strings.EqualFold(u.Scheme, "https+local"): // DNS-over-HTTPS Local mode
|
|||
|
|
return NewDoHNameServer(u, nil, false, disableCache, serveStale, serveExpiredTTL, clientIP), nil
|
|||
|
|
case strings.EqualFold(u.Scheme, "h2c+local"): // DNS-over-HTTPS h2c Local mode
|
|||
|
|
return NewDoHNameServer(u, nil, true, disableCache, serveStale, serveExpiredTTL, clientIP), nil
|
|||
|
|
case strings.EqualFold(u.Scheme, "quic+local"): // DNS-over-QUIC Local mode
|
|||
|
|
return NewQUICNameServer(u, disableCache, serveStale, serveExpiredTTL, clientIP)
|
|||
|
|
case strings.EqualFold(u.Scheme, "tcp"): // DNS-over-TCP Remote mode
|
|||
|
|
return NewTCPNameServer(u, dispatcher, disableCache, serveStale, serveExpiredTTL, clientIP)
|
|||
|
|
case strings.EqualFold(u.Scheme, "tcp+local"): // DNS-over-TCP Local mode
|
|||
|
|
return NewTCPLocalNameServer(u, disableCache, serveStale, serveExpiredTTL, clientIP)
|
|||
|
|
case strings.EqualFold(u.String(), "fakedns"):
|
|||
|
|
var fd dns.FakeDNSEngine
|
|||
|
|
err = core.RequireFeatures(ctx, func(fdns dns.FakeDNSEngine) {
|
|||
|
|
fd = fdns
|
|||
|
|
})
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, err
|
|||
|
|
}
|
|||
|
|
return NewFakeDNSServer(fd), nil
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
if dest.Network == net.Network_Unknown {
|
|||
|
|
dest.Network = net.Network_UDP
|
|||
|
|
}
|
|||
|
|
if dest.Network == net.Network_UDP { // UDP classic DNS mode
|
|||
|
|
return NewClassicNameServer(dest, dispatcher, disableCache, serveStale, serveExpiredTTL, clientIP), nil
|
|||
|
|
}
|
|||
|
|
return nil, errors.New("No available name server could be created from ", dest).AtWarning()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// NewClient creates a DNS client managing a name server with client IP, domain rules and expected IPs.
|
|||
|
|
func NewClient(
|
|||
|
|
ctx context.Context,
|
|||
|
|
ns *NameServer,
|
|||
|
|
clientIP net.IP,
|
|||
|
|
disableCache bool, serveStale bool, serveExpiredTTL uint32,
|
|||
|
|
tag string,
|
|||
|
|
ipOption dns.IPOption,
|
|||
|
|
matcherInfos *[]*DomainMatcherInfo,
|
|||
|
|
updateDomainRule func(strmatcher.Matcher, int, []*DomainMatcherInfo),
|
|||
|
|
) (*Client, error) {
|
|||
|
|
client := &Client{}
|
|||
|
|
|
|||
|
|
err := core.RequireFeatures(ctx, func(dispatcher routing.Dispatcher) error {
|
|||
|
|
// Create a new server for each client for now
|
|||
|
|
server, err := NewServer(ctx, ns.Address.AsDestination(), dispatcher, disableCache, serveStale, serveExpiredTTL, clientIP)
|
|||
|
|
if err != nil {
|
|||
|
|
return errors.New("failed to create nameserver").Base(err).AtWarning()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Prioritize local domains with specific TLDs or those without any dot for the local DNS
|
|||
|
|
if _, isLocalDNS := server.(*LocalNameServer); isLocalDNS {
|
|||
|
|
ns.PrioritizedDomain = append(ns.PrioritizedDomain, localTLDsAndDotlessDomains...)
|
|||
|
|
ns.OriginalRules = append(ns.OriginalRules, localTLDsAndDotlessDomainsRule)
|
|||
|
|
// The following lines is a solution to avoid core panics(rule index out of range) when setting `localhost` DNS client in config.
|
|||
|
|
// Because the `localhost` DNS client will append len(localTLDsAndDotlessDomains) rules into matcherInfos to match `geosite:private` default rule.
|
|||
|
|
// But `matcherInfos` has no enough length to add rules, which leads to core panics (rule index out of range).
|
|||
|
|
// To avoid this, the length of `matcherInfos` must be equal to the expected, so manually append it with Golang default zero value first for later modification.
|
|||
|
|
// Related issues:
|
|||
|
|
// https://github.com/v2fly/v2ray-core/issues/529
|
|||
|
|
// https://github.com/v2fly/v2ray-core/issues/719
|
|||
|
|
for i := 0; i < len(localTLDsAndDotlessDomains); i++ {
|
|||
|
|
*matcherInfos = append(*matcherInfos, &DomainMatcherInfo{
|
|||
|
|
clientIdx: uint16(0),
|
|||
|
|
domainRuleIdx: uint16(0),
|
|||
|
|
})
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Establish domain rules
|
|||
|
|
var rules []string
|
|||
|
|
ruleCurr := 0
|
|||
|
|
ruleIter := 0
|
|||
|
|
|
|||
|
|
// Check if domain matcher cache is provided via environment
|
|||
|
|
domainMatcherPath := platform.NewEnvFlag(platform.MphCachePath).GetValue(func() string { return "" })
|
|||
|
|
var mphLoaded bool
|
|||
|
|
|
|||
|
|
if domainMatcherPath != "" && ns.Tag != "" {
|
|||
|
|
f, err := filesystem.NewFileReader(domainMatcherPath)
|
|||
|
|
if err == nil {
|
|||
|
|
defer f.Close()
|
|||
|
|
g, err := router.LoadGeoSiteMatcher(f, ns.Tag)
|
|||
|
|
if err == nil {
|
|||
|
|
errors.LogDebug(ctx, "MphDomainMatcher loaded from cache for ", ns.Tag, " dns tag)")
|
|||
|
|
updateDomainRule(&mphMatcherWrapper{m: g}, 0, *matcherInfos)
|
|||
|
|
rules = append(rules, "[MPH Cache]")
|
|||
|
|
mphLoaded = true
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if !mphLoaded {
|
|||
|
|
for i, domain := range ns.PrioritizedDomain {
|
|||
|
|
ns.PrioritizedDomain[i] = nil
|
|||
|
|
domainRule, err := toStrMatcher(domain.Type, domain.Domain)
|
|||
|
|
if err != nil {
|
|||
|
|
errors.LogErrorInner(ctx, err, "failed to create domain matcher, ignore domain rule [type: ", domain.Type, ", domain: ", domain.Domain, "]")
|
|||
|
|
domainRule, _ = toStrMatcher(DomainMatchingType_Full, "hack.fix.index.for.illegal.domain.rule")
|
|||
|
|
}
|
|||
|
|
originalRuleIdx := ruleCurr
|
|||
|
|
if ruleCurr < len(ns.OriginalRules) {
|
|||
|
|
rule := ns.OriginalRules[ruleCurr]
|
|||
|
|
if ruleCurr >= len(rules) {
|
|||
|
|
rules = append(rules, rule.Rule)
|
|||
|
|
}
|
|||
|
|
ruleIter++
|
|||
|
|
if ruleIter >= int(rule.Size) {
|
|||
|
|
ruleIter = 0
|
|||
|
|
ruleCurr++
|
|||
|
|
}
|
|||
|
|
} else { // No original rule, generate one according to current domain matcher (majorly for compatibility with tests)
|
|||
|
|
rules = append(rules, domainRule.String())
|
|||
|
|
ruleCurr++
|
|||
|
|
}
|
|||
|
|
updateDomainRule(domainRule, originalRuleIdx, *matcherInfos)
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
ns.PrioritizedDomain = nil
|
|||
|
|
runtime.GC()
|
|||
|
|
|
|||
|
|
// Establish expected IPs
|
|||
|
|
var expectedMatcher router.GeoIPMatcher
|
|||
|
|
if len(ns.ExpectedGeoip) > 0 {
|
|||
|
|
expectedMatcher, err = router.BuildOptimizedGeoIPMatcher(ns.ExpectedGeoip...)
|
|||
|
|
if err != nil {
|
|||
|
|
return errors.New("failed to create expected ip matcher").Base(err).AtWarning()
|
|||
|
|
}
|
|||
|
|
ns.ExpectedGeoip = nil
|
|||
|
|
runtime.GC()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Establish unexpected IPs
|
|||
|
|
var unexpectedMatcher router.GeoIPMatcher
|
|||
|
|
if len(ns.UnexpectedGeoip) > 0 {
|
|||
|
|
unexpectedMatcher, err = router.BuildOptimizedGeoIPMatcher(ns.UnexpectedGeoip...)
|
|||
|
|
if err != nil {
|
|||
|
|
return errors.New("failed to create unexpected ip matcher").Base(err).AtWarning()
|
|||
|
|
}
|
|||
|
|
ns.UnexpectedGeoip = nil
|
|||
|
|
runtime.GC()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if len(clientIP) > 0 {
|
|||
|
|
switch ns.Address.Address.GetAddress().(type) {
|
|||
|
|
case *net.IPOrDomain_Domain:
|
|||
|
|
errors.LogInfo(ctx, "DNS: client ", ns.Address.Address.GetDomain(), " uses clientIP ", clientIP.String())
|
|||
|
|
case *net.IPOrDomain_Ip:
|
|||
|
|
errors.LogInfo(ctx, "DNS: client ", net.IP(ns.Address.Address.GetIp()), " uses clientIP ", clientIP.String())
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var timeoutMs = 4000 * time.Millisecond
|
|||
|
|
if ns.TimeoutMs > 0 {
|
|||
|
|
timeoutMs = time.Duration(ns.TimeoutMs) * time.Millisecond
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
checkSystem := ns.QueryStrategy == QueryStrategy_USE_SYS
|
|||
|
|
|
|||
|
|
client.server = server
|
|||
|
|
client.skipFallback = ns.SkipFallback
|
|||
|
|
client.domains = rules
|
|||
|
|
client.expectedIPs = expectedMatcher
|
|||
|
|
client.unexpectedIPs = unexpectedMatcher
|
|||
|
|
client.actPrior = ns.ActPrior
|
|||
|
|
client.actUnprior = ns.ActUnprior
|
|||
|
|
client.tag = tag
|
|||
|
|
client.timeoutMs = timeoutMs
|
|||
|
|
client.finalQuery = ns.FinalQuery
|
|||
|
|
client.ipOption = &ipOption
|
|||
|
|
client.checkSystem = checkSystem
|
|||
|
|
client.policyID = ns.PolicyID
|
|||
|
|
return nil
|
|||
|
|
})
|
|||
|
|
return client, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Name returns the server name the client manages.
|
|||
|
|
func (c *Client) Name() string {
|
|||
|
|
return c.server.Name()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// QueryIP sends DNS query to the name server with the client's IP.
|
|||
|
|
func (c *Client) QueryIP(ctx context.Context, domain string, option dns.IPOption) ([]net.IP, uint32, error) {
|
|||
|
|
if c.checkSystem {
|
|||
|
|
supportIPv4, supportIPv6 := checkRoutes()
|
|||
|
|
option.IPv4Enable = option.IPv4Enable && supportIPv4
|
|||
|
|
option.IPv6Enable = option.IPv6Enable && supportIPv6
|
|||
|
|
} else {
|
|||
|
|
option.IPv4Enable = option.IPv4Enable && c.ipOption.IPv4Enable
|
|||
|
|
option.IPv6Enable = option.IPv6Enable && c.ipOption.IPv6Enable
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if !option.IPv4Enable && !option.IPv6Enable {
|
|||
|
|
return nil, 0, dns.ErrEmptyResponse
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ctx, cancel := context.WithTimeout(ctx, c.timeoutMs)
|
|||
|
|
ctx = session.ContextWithInbound(ctx, &session.Inbound{Tag: c.tag})
|
|||
|
|
ips, ttl, err := c.server.QueryIP(ctx, domain, option)
|
|||
|
|
cancel()
|
|||
|
|
|
|||
|
|
if err != nil {
|
|||
|
|
return nil, 0, err
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if len(ips) == 0 {
|
|||
|
|
return nil, 0, dns.ErrEmptyResponse
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if c.expectedIPs != nil && !c.actPrior {
|
|||
|
|
ips, _ = c.expectedIPs.FilterIPs(ips)
|
|||
|
|
errors.LogDebug(context.Background(), "domain ", domain, " expectedIPs ", ips, " matched at server ", c.Name())
|
|||
|
|
if len(ips) == 0 {
|
|||
|
|
return nil, 0, dns.ErrEmptyResponse
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if c.unexpectedIPs != nil && !c.actUnprior {
|
|||
|
|
_, ips = c.unexpectedIPs.FilterIPs(ips)
|
|||
|
|
errors.LogDebug(context.Background(), "domain ", domain, " unexpectedIPs ", ips, " matched at server ", c.Name())
|
|||
|
|
if len(ips) == 0 {
|
|||
|
|
return nil, 0, dns.ErrEmptyResponse
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if c.expectedIPs != nil && c.actPrior {
|
|||
|
|
ipsNew, _ := c.expectedIPs.FilterIPs(ips)
|
|||
|
|
if len(ipsNew) > 0 {
|
|||
|
|
ips = ipsNew
|
|||
|
|
errors.LogDebug(context.Background(), "domain ", domain, " priorIPs ", ips, " matched at server ", c.Name())
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if c.unexpectedIPs != nil && c.actUnprior {
|
|||
|
|
_, ipsNew := c.unexpectedIPs.FilterIPs(ips)
|
|||
|
|
if len(ipsNew) > 0 {
|
|||
|
|
ips = ipsNew
|
|||
|
|
errors.LogDebug(context.Background(), "domain ", domain, " unpriorIPs ", ips, " matched at server ", c.Name())
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return ips, ttl, nil
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func ResolveIpOptionOverride(queryStrategy QueryStrategy, ipOption dns.IPOption) dns.IPOption {
|
|||
|
|
switch queryStrategy {
|
|||
|
|
case QueryStrategy_USE_IP:
|
|||
|
|
return ipOption
|
|||
|
|
case QueryStrategy_USE_SYS:
|
|||
|
|
return ipOption
|
|||
|
|
case QueryStrategy_USE_IP4:
|
|||
|
|
return dns.IPOption{
|
|||
|
|
IPv4Enable: ipOption.IPv4Enable,
|
|||
|
|
IPv6Enable: false,
|
|||
|
|
FakeEnable: false,
|
|||
|
|
}
|
|||
|
|
case QueryStrategy_USE_IP6:
|
|||
|
|
return dns.IPOption{
|
|||
|
|
IPv4Enable: false,
|
|||
|
|
IPv6Enable: ipOption.IPv6Enable,
|
|||
|
|
FakeEnable: false,
|
|||
|
|
}
|
|||
|
|
default:
|
|||
|
|
return ipOption
|
|||
|
|
}
|
|||
|
|
}
|