2021-03-18 15:24:24 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
"github.com/xtls/xray-core/features/dns"
|
|
|
|
"github.com/xtls/xray-core/features/dns/localdns"
|
|
|
|
)
|
|
|
|
|
|
|
|
// LocalNameServer is an wrapper over local DNS feature.
|
|
|
|
type LocalNameServer struct {
|
|
|
|
client *localdns.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryIP implements Server.
|
2021-04-09 15:36:36 +00:00
|
|
|
func (s *LocalNameServer) QueryIP(_ context.Context, domain string, _ net.IP, option dns.IPOption, _ CacheStrategy) ([]net.IP, error) {
|
2021-03-19 15:33:07 +00:00
|
|
|
var ips []net.IP
|
|
|
|
var err error
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case option.IPv4Enable && option.IPv6Enable:
|
|
|
|
ips, err = s.client.LookupIP(domain)
|
|
|
|
case option.IPv4Enable:
|
|
|
|
ips, err = s.client.LookupIPv4(domain)
|
|
|
|
case option.IPv6Enable:
|
|
|
|
ips, err = s.client.LookupIPv6(domain)
|
2021-03-18 15:24:24 +00:00
|
|
|
}
|
|
|
|
|
2021-03-19 15:33:07 +00:00
|
|
|
if len(ips) > 0 {
|
|
|
|
newError("Localhost got answer: ", domain, " -> ", ips).AtInfo().WriteToLog()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ips, err
|
2021-03-18 15:24:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Name implements Server.
|
|
|
|
func (s *LocalNameServer) Name() string {
|
|
|
|
return "localhost"
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLocalNameServer creates localdns server object for directly lookup in system DNS.
|
|
|
|
func NewLocalNameServer() *LocalNameServer {
|
|
|
|
newError("DNS: created localhost client").AtInfo().WriteToLog()
|
|
|
|
return &LocalNameServer{
|
|
|
|
client: localdns.New(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLocalDNSClient creates localdns client object for directly lookup in system DNS.
|
|
|
|
func NewLocalDNSClient() *Client {
|
|
|
|
return &Client{server: NewLocalNameServer()}
|
|
|
|
}
|