mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
Turn off fake DNS for request sent from Routing and Freedom outbound. Fake DNS now only apply to DNS outbound. This is important for Android, where VPN service take over all system DNS traffic and pass it to core. "UseIp" option can be used in Freedom outbound to avoid getting fake IP and fail connection. Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
64 lines
1.4 KiB
Go
64 lines
1.4 KiB
Go
package localdns
|
|
|
|
import (
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
"github.com/v2fly/v2ray-core/v4/features/dns"
|
|
)
|
|
|
|
// Client is an implementation of dns.Client, which queries localhost for DNS.
|
|
type Client struct{}
|
|
|
|
// 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 (*Client) LookupIP(host string, option dns.IPOption) ([]net.IP, error) {
|
|
ips, err := net.LookupIP(host)
|
|
if err != nil {
|
|
return nil, 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 {
|
|
parsedIPs = append(parsedIPs, parsed.IP())
|
|
}
|
|
if len(ip) == net.IPv4len {
|
|
ipv4 = append(ipv4, ip)
|
|
}
|
|
if len(ip) == net.IPv6len {
|
|
ipv6 = append(ipv6, ip)
|
|
}
|
|
}
|
|
switch {
|
|
case option.IPv4Enable && option.IPv6Enable:
|
|
if len(parsedIPs) > 0 {
|
|
return parsedIPs, nil
|
|
}
|
|
case option.IPv4Enable:
|
|
if len(ipv4) > 0 {
|
|
return ipv4, nil
|
|
}
|
|
case option.IPv6Enable:
|
|
if len(ipv6) > 0 {
|
|
return ipv6, nil
|
|
}
|
|
}
|
|
return nil, dns.ErrEmptyResponse
|
|
}
|
|
|
|
// New create a new dns.Client that queries localhost for DNS.
|
|
func New() *Client {
|
|
return &Client{}
|
|
}
|