2020-11-25 13:01:53 +02:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
2021-09-20 16:00:55 +03:00
|
|
|
"golang.org/x/net/dns/dnsmessage"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
2021-03-06 18:29:17 +02:00
|
|
|
"github.com/xtls/xray-core/common/log"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
"github.com/xtls/xray-core/common/protocol/dns"
|
|
|
|
udp_proto "github.com/xtls/xray-core/common/protocol/udp"
|
|
|
|
"github.com/xtls/xray-core/common/session"
|
|
|
|
"github.com/xtls/xray-core/common/signal/pubsub"
|
|
|
|
"github.com/xtls/xray-core/common/task"
|
|
|
|
dns_feature "github.com/xtls/xray-core/features/dns"
|
|
|
|
"github.com/xtls/xray-core/features/routing"
|
|
|
|
"github.com/xtls/xray-core/transport/internet/udp"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
// ClassicNameServer implemented traditional UDP DNS.
|
2020-11-25 13:01:53 +02:00
|
|
|
type ClassicNameServer struct {
|
|
|
|
sync.RWMutex
|
|
|
|
name string
|
2021-10-16 16:02:51 +03:00
|
|
|
address *net.Destination
|
|
|
|
ips map[string]*record
|
|
|
|
requests map[uint16]*dnsRequest
|
2020-11-25 13:01:53 +02:00
|
|
|
pub *pubsub.Service
|
|
|
|
udpServer *udp.Dispatcher
|
|
|
|
cleanup *task.Periodic
|
|
|
|
reqID uint32
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
// NewClassicNameServer creates udp server object for remote resolving.
|
|
|
|
func NewClassicNameServer(address net.Destination, dispatcher routing.Dispatcher) *ClassicNameServer {
|
2020-11-25 13:01:53 +02:00
|
|
|
// default to 53 if unspecific
|
|
|
|
if address.Port == 0 {
|
|
|
|
address.Port = net.Port(53)
|
|
|
|
}
|
|
|
|
|
|
|
|
s := &ClassicNameServer{
|
2021-10-16 16:02:51 +03:00
|
|
|
address: &address,
|
|
|
|
ips: make(map[string]*record),
|
|
|
|
requests: make(map[uint16]*dnsRequest),
|
2020-11-25 13:01:53 +02:00
|
|
|
pub: pubsub.NewService(),
|
|
|
|
name: strings.ToUpper(address.String()),
|
|
|
|
}
|
|
|
|
s.cleanup = &task.Periodic{
|
|
|
|
Interval: time.Minute,
|
|
|
|
Execute: s.Cleanup,
|
|
|
|
}
|
|
|
|
s.udpServer = udp.NewDispatcher(dispatcher, s.HandleResponse)
|
2021-03-07 06:39:50 +02:00
|
|
|
newError("DNS: created UDP client initialized for ", address.NetAddr()).AtInfo().WriteToLog()
|
2020-11-25 13:01:53 +02:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
// Name implements Server.
|
2020-11-25 13:01:53 +02:00
|
|
|
func (s *ClassicNameServer) Name() string {
|
|
|
|
return s.name
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
// Cleanup clears expired items from cache
|
2020-11-25 13:01:53 +02:00
|
|
|
func (s *ClassicNameServer) Cleanup() error {
|
|
|
|
now := time.Now()
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
|
|
|
|
if len(s.ips) == 0 && len(s.requests) == 0 {
|
|
|
|
return newError(s.name, " nothing to do. stopping...")
|
|
|
|
}
|
|
|
|
|
|
|
|
for domain, record := range s.ips {
|
|
|
|
if record.A != nil && record.A.Expire.Before(now) {
|
|
|
|
record.A = nil
|
|
|
|
}
|
|
|
|
if record.AAAA != nil && record.AAAA.Expire.Before(now) {
|
|
|
|
record.AAAA = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if record.A == nil && record.AAAA == nil {
|
2021-10-16 16:02:51 +03:00
|
|
|
newError(s.name, " cleanup ", domain).AtDebug().WriteToLog()
|
2020-11-25 13:01:53 +02:00
|
|
|
delete(s.ips, domain)
|
|
|
|
} else {
|
|
|
|
s.ips[domain] = record
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(s.ips) == 0 {
|
2021-10-16 16:02:51 +03:00
|
|
|
s.ips = make(map[string]*record)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for id, req := range s.requests {
|
|
|
|
if req.expire.Before(now) {
|
|
|
|
delete(s.requests, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(s.requests) == 0 {
|
2021-10-16 16:02:51 +03:00
|
|
|
s.requests = make(map[uint16]*dnsRequest)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
// HandleResponse handles udp response packet from remote DNS server.
|
2020-11-25 13:01:53 +02:00
|
|
|
func (s *ClassicNameServer) HandleResponse(ctx context.Context, packet *udp_proto.Packet) {
|
|
|
|
ipRec, err := parseResponse(packet.Payload.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
newError(s.name, " fail to parse responded DNS udp").AtError().WriteToLog()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Lock()
|
|
|
|
id := ipRec.ReqID
|
|
|
|
req, ok := s.requests[id]
|
|
|
|
if ok {
|
|
|
|
// remove the pending request
|
|
|
|
delete(s.requests, id)
|
|
|
|
}
|
|
|
|
s.Unlock()
|
|
|
|
if !ok {
|
|
|
|
newError(s.name, " cannot find the pending request").AtError().WriteToLog()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var rec record
|
|
|
|
switch req.reqType {
|
|
|
|
case dnsmessage.TypeA:
|
|
|
|
rec.A = ipRec
|
|
|
|
case dnsmessage.TypeAAAA:
|
|
|
|
rec.AAAA = ipRec
|
|
|
|
}
|
|
|
|
|
|
|
|
elapsed := time.Since(req.start)
|
|
|
|
newError(s.name, " got answer: ", req.domain, " ", req.reqType, " -> ", ipRec.IP, " ", elapsed).AtInfo().WriteToLog()
|
|
|
|
if len(req.domain) > 0 && (rec.A != nil || rec.AAAA != nil) {
|
2021-10-16 16:02:51 +03:00
|
|
|
s.updateIP(req.domain, &rec)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
func (s *ClassicNameServer) updateIP(domain string, newRec *record) {
|
2020-11-25 13:01:53 +02:00
|
|
|
s.Lock()
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
rec, found := s.ips[domain]
|
|
|
|
if !found {
|
|
|
|
rec = &record{}
|
|
|
|
}
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
updated := false
|
|
|
|
if isNewer(rec.A, newRec.A) {
|
|
|
|
rec.A = newRec.A
|
|
|
|
updated = true
|
|
|
|
}
|
|
|
|
if isNewer(rec.AAAA, newRec.AAAA) {
|
|
|
|
rec.AAAA = newRec.AAAA
|
|
|
|
updated = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if updated {
|
2021-10-16 16:02:51 +03:00
|
|
|
newError(s.name, " updating IP records for domain:", domain).AtDebug().WriteToLog()
|
2020-11-25 13:01:53 +02:00
|
|
|
s.ips[domain] = rec
|
|
|
|
}
|
|
|
|
if newRec.A != nil {
|
|
|
|
s.pub.Publish(domain+"4", nil)
|
|
|
|
}
|
|
|
|
if newRec.AAAA != nil {
|
|
|
|
s.pub.Publish(domain+"6", nil)
|
|
|
|
}
|
|
|
|
s.Unlock()
|
|
|
|
common.Must(s.cleanup.Start())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ClassicNameServer) newReqID() uint16 {
|
|
|
|
return uint16(atomic.AddUint32(&s.reqID, 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ClassicNameServer) addPendingRequest(req *dnsRequest) {
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
|
|
|
|
id := req.msg.ID
|
|
|
|
req.expire = time.Now().Add(time.Second * 8)
|
2021-10-16 16:02:51 +03:00
|
|
|
s.requests[id] = req
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
func (s *ClassicNameServer) sendQuery(ctx context.Context, domain string, clientIP net.IP, option dns_feature.IPOption) {
|
2020-11-25 13:01:53 +02:00
|
|
|
newError(s.name, " querying DNS for: ", domain).AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
reqs := buildReqMsgs(domain, option, s.newReqID, genEDNS0Options(clientIP))
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
for _, req := range reqs {
|
|
|
|
s.addPendingRequest(req)
|
|
|
|
b, _ := dns.PackMessage(req.msg)
|
|
|
|
udpCtx := context.Background()
|
|
|
|
if inbound := session.InboundFromContext(ctx); inbound != nil {
|
|
|
|
udpCtx = session.ContextWithInbound(udpCtx, inbound)
|
|
|
|
}
|
2021-06-18 14:28:02 +03:00
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
udpCtx = session.ContextWithContent(udpCtx, &session.Content{
|
|
|
|
Protocol: "dns",
|
|
|
|
})
|
2021-03-06 18:29:17 +02:00
|
|
|
udpCtx = log.ContextWithAccessMessage(udpCtx, &log.AccessMessage{
|
|
|
|
From: "DNS",
|
|
|
|
To: s.address,
|
|
|
|
Status: log.AccessAccepted,
|
|
|
|
Reason: "",
|
|
|
|
})
|
2021-10-16 16:02:51 +03:00
|
|
|
s.udpServer.Dispatch(udpCtx, *s.address, b)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-07 06:39:50 +02:00
|
|
|
func (s *ClassicNameServer) findIPsForDomain(domain string, option dns_feature.IPOption) ([]net.IP, error) {
|
2020-11-25 13:01:53 +02:00
|
|
|
s.RLock()
|
|
|
|
record, found := s.ips[domain]
|
|
|
|
s.RUnlock()
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return nil, errRecordNotFound
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
var err4 error
|
|
|
|
var err6 error
|
2020-11-25 13:01:53 +02:00
|
|
|
var ips []net.Address
|
2021-10-16 16:02:51 +03:00
|
|
|
var ip6 []net.Address
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
if option.IPv4Enable {
|
2021-10-16 16:02:51 +03:00
|
|
|
ips, err4 = record.A.getIPs()
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if option.IPv6Enable {
|
2021-10-16 16:02:51 +03:00
|
|
|
ip6, err6 = record.AAAA.getIPs()
|
|
|
|
ips = append(ips, ip6...)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(ips) > 0 {
|
2021-10-16 16:02:51 +03:00
|
|
|
return toNetIP(ips)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
if err4 != nil {
|
|
|
|
return nil, err4
|
|
|
|
}
|
|
|
|
|
|
|
|
if err6 != nil {
|
|
|
|
return nil, err6
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, dns_feature.ErrEmptyResponse
|
|
|
|
}
|
|
|
|
|
2021-03-07 06:39:50 +02:00
|
|
|
// QueryIP implements Server.
|
2021-10-16 16:02:51 +03:00
|
|
|
func (s *ClassicNameServer) QueryIP(ctx context.Context, domain string, clientIP net.IP, option dns_feature.IPOption, disableCache bool) ([]net.IP, error) {
|
2020-11-25 13:01:53 +02:00
|
|
|
fqdn := Fqdn(domain)
|
|
|
|
|
2021-10-16 16:02:51 +03:00
|
|
|
if disableCache {
|
|
|
|
newError("DNS cache is disabled. Querying IP for ", domain, " at ", s.name).AtDebug().WriteToLog()
|
|
|
|
} else {
|
|
|
|
ips, err := s.findIPsForDomain(fqdn, option)
|
|
|
|
if err != errRecordNotFound {
|
|
|
|
newError(s.name, " cache HIT ", domain, " -> ", ips).Base(err).AtDebug().WriteToLog()
|
|
|
|
log.Record(&log.DNSLog{Server: s.name, Domain: domain, Result: ips, Status: log.DNSCacheHit, Elapsed: 0, Error: err})
|
|
|
|
return ips, err
|
|
|
|
}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ipv4 and ipv6 belong to different subscription groups
|
|
|
|
var sub4, sub6 *pubsub.Subscriber
|
|
|
|
if option.IPv4Enable {
|
|
|
|
sub4 = s.pub.Subscribe(fqdn + "4")
|
|
|
|
defer sub4.Close()
|
|
|
|
}
|
|
|
|
if option.IPv6Enable {
|
|
|
|
sub6 = s.pub.Subscribe(fqdn + "6")
|
|
|
|
defer sub6.Close()
|
|
|
|
}
|
|
|
|
done := make(chan interface{})
|
|
|
|
go func() {
|
|
|
|
if sub4 != nil {
|
|
|
|
select {
|
|
|
|
case <-sub4.Wait():
|
|
|
|
case <-ctx.Done():
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if sub6 != nil {
|
|
|
|
select {
|
|
|
|
case <-sub6.Wait():
|
|
|
|
case <-ctx.Done():
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(done)
|
|
|
|
}()
|
2021-10-16 16:02:51 +03:00
|
|
|
s.sendQuery(ctx, fqdn, clientIP, option)
|
2021-03-06 18:29:17 +02:00
|
|
|
start := time.Now()
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
for {
|
|
|
|
ips, err := s.findIPsForDomain(fqdn, option)
|
|
|
|
if err != errRecordNotFound {
|
2021-10-12 19:49:31 +03:00
|
|
|
log.Record(&log.DNSLog{Server: s.name, Domain: domain, Result: ips, Status: log.DNSQueried, Elapsed: time.Since(start), Error: err})
|
2020-11-25 13:01:53 +02:00
|
|
|
return ips, err
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil, ctx.Err()
|
|
|
|
case <-done:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|