mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
And refactor `mtu` to support setting IPv4/v6 separately Example: https://github.com/XTLS/Xray-core/pull/5887#issue-4198837696
105 lines
2.3 KiB
Go
105 lines
2.3 KiB
Go
package localdns
|
|
|
|
import (
|
|
"context"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/xtls/xray-core/common/errors"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/features/dns"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
// Client is an implementation of dns.Client, which queries localhost for DNS.
|
|
type Client struct {
|
|
d *net.Dialer
|
|
r *net.Resolver
|
|
}
|
|
|
|
// Type implements common.HasType.
|
|
func (*Client) Type() interface{} {
|
|
return dns.ClientType()
|
|
}
|
|
|
|
// Start implements common.Runnable.
|
|
func (*Client) Start() error { return nil }
|
|
|
|
// Close implements common.Closable.
|
|
func (*Client) Close() error { return nil }
|
|
|
|
// LookupIP implements Client.
|
|
func (c *Client) LookupIP(host string, option dns.IPOption) ([]net.IP, uint32, error) {
|
|
var ips []net.IP
|
|
var err error
|
|
if len(internet.Controllers) > 0 {
|
|
ips, err = c.r.LookupIP(context.Background(), "ip", host)
|
|
} else {
|
|
ips, err = net.LookupIP(host)
|
|
}
|
|
if err != nil {
|
|
return nil, 0, err
|
|
}
|
|
parsedIPs := make([]net.IP, 0, len(ips))
|
|
ipv4 := make([]net.IP, 0, len(ips))
|
|
ipv6 := make([]net.IP, 0, len(ips))
|
|
for _, ip := range ips {
|
|
parsed := net.IPAddress(ip)
|
|
if parsed == nil {
|
|
continue
|
|
}
|
|
parsedIP := parsed.IP()
|
|
parsedIPs = append(parsedIPs, parsedIP)
|
|
|
|
if len(parsedIP) == net.IPv4len {
|
|
ipv4 = append(ipv4, parsedIP)
|
|
} else {
|
|
ipv6 = append(ipv6, parsedIP)
|
|
}
|
|
}
|
|
|
|
switch {
|
|
case option.IPv4Enable && option.IPv6Enable:
|
|
if len(parsedIPs) > 0 {
|
|
return parsedIPs, dns.DefaultTTL, nil
|
|
}
|
|
case option.IPv4Enable:
|
|
if len(ipv4) > 0 {
|
|
return ipv4, dns.DefaultTTL, nil
|
|
}
|
|
case option.IPv6Enable:
|
|
if len(ipv6) > 0 {
|
|
return ipv6, dns.DefaultTTL, nil
|
|
}
|
|
}
|
|
return nil, 0, dns.ErrEmptyResponse
|
|
}
|
|
|
|
// New create a new dns.Client that queries localhost for DNS.
|
|
func New() *Client {
|
|
d := &net.Dialer{
|
|
Timeout: time.Second * 16,
|
|
Control: func(network, address string, c syscall.RawConn) error {
|
|
for _, ctl := range internet.Controllers {
|
|
if err := ctl(network, address, c); err != nil {
|
|
errors.LogInfoInner(context.Background(), err, "failed to apply external controller")
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
r := &net.Resolver{
|
|
PreferGo: true,
|
|
Dial: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
return d.DialContext(ctx, network, address)
|
|
},
|
|
}
|
|
|
|
return &Client{
|
|
d: d,
|
|
r: r,
|
|
}
|
|
}
|