2020-02-15 13:42:46 +00:00
|
|
|
package resolver
|
2019-06-28 16:58:59 +00:00
|
|
|
|
|
|
|
import (
|
2021-04-01 10:03:30 +00:00
|
|
|
"context"
|
2019-06-28 16:58:59 +00:00
|
|
|
"errors"
|
2022-11-12 13:31:07 +00:00
|
|
|
"fmt"
|
2021-04-01 13:20:44 +00:00
|
|
|
"math/rand"
|
2019-06-28 16:58:59 +00:00
|
|
|
"net"
|
2022-04-05 20:25:53 +00:00
|
|
|
"net/netip"
|
2022-11-12 13:31:07 +00:00
|
|
|
"strings"
|
2021-04-01 10:03:30 +00:00
|
|
|
"time"
|
2020-02-15 13:42:46 +00:00
|
|
|
|
2020-05-28 04:13:05 +00:00
|
|
|
"github.com/Dreamacro/clash/component/trie"
|
2020-02-15 13:42:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// DefaultResolver aim to resolve ip
|
|
|
|
DefaultResolver Resolver
|
|
|
|
|
2022-03-27 16:44:13 +00:00
|
|
|
// ProxyServerHostResolver resolve ip to proxies server host
|
|
|
|
ProxyServerHostResolver Resolver
|
2022-02-22 18:38:50 +00:00
|
|
|
|
2020-06-18 10:11:02 +00:00
|
|
|
// DisableIPv6 means don't resolve ipv6 host
|
|
|
|
// default value is true
|
|
|
|
DisableIPv6 = true
|
|
|
|
|
2020-02-15 13:42:46 +00:00
|
|
|
// DefaultHosts aim to resolve hosts
|
2022-04-05 20:25:53 +00:00
|
|
|
DefaultHosts = trie.New[netip.Addr]()
|
2021-04-01 10:03:30 +00:00
|
|
|
|
|
|
|
// DefaultDNSTimeout defined the default dns request timeout
|
|
|
|
DefaultDNSTimeout = time.Second * 5
|
2019-06-28 16:58:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-06-18 10:11:02 +00:00
|
|
|
ErrIPNotFound = errors.New("couldn't find ip")
|
|
|
|
ErrIPVersion = errors.New("ip version error")
|
|
|
|
ErrIPv6Disabled = errors.New("ipv6 disabled")
|
2019-06-28 16:58:59 +00:00
|
|
|
)
|
|
|
|
|
2020-02-15 13:42:46 +00:00
|
|
|
type Resolver interface {
|
2022-11-12 05:18:36 +00:00
|
|
|
LookupIP(ctx context.Context, host string) (ips []netip.Addr, err error)
|
|
|
|
LookupIPv4(ctx context.Context, host string) (ips []netip.Addr, err error)
|
|
|
|
LookupIPv6(ctx context.Context, host string) (ips []netip.Addr, err error)
|
|
|
|
ResolveIP(ctx context.Context, host string) (ip netip.Addr, err error)
|
|
|
|
ResolveIPv4(ctx context.Context, host string) (ip netip.Addr, err error)
|
|
|
|
ResolveIPv6(ctx context.Context, host string) (ip netip.Addr, err error)
|
2020-02-15 13:42:46 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// LookupIPv4WithResolver same as LookupIPv4, but with a resolver
|
|
|
|
func LookupIPv4WithResolver(ctx context.Context, host string, r Resolver) ([]netip.Addr, error) {
|
|
|
|
if node := DefaultHosts.Search(host); node != nil {
|
|
|
|
if ip := node.Data(); ip.Is4() {
|
|
|
|
return []netip.Addr{node.Data()}, nil
|
|
|
|
}
|
|
|
|
}
|
2022-02-22 18:38:50 +00:00
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
ip, err := netip.ParseAddr(host)
|
|
|
|
if err == nil {
|
|
|
|
if ip.Is4() || ip.Is4In6() {
|
|
|
|
return []netip.Addr{ip}, nil
|
|
|
|
}
|
|
|
|
return []netip.Addr{}, ErrIPVersion
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
if r != nil {
|
|
|
|
return r.LookupIPv4(ctx, host)
|
|
|
|
}
|
2022-04-29 05:03:55 +00:00
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
if DefaultResolver != nil {
|
|
|
|
return DefaultResolver.LookupIPv4(ctx, host)
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
ipAddrs, err := net.DefaultResolver.LookupNetIP(ctx, "ip4", host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if len(ipAddrs) == 0 {
|
|
|
|
return nil, ErrIPNotFound
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
return ipAddrs, nil
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// LookupIPv4 with a host, return ipv4 list
|
|
|
|
func LookupIPv4(ctx context.Context, host string) ([]netip.Addr, error) {
|
|
|
|
return LookupIPv4WithResolver(ctx, host, DefaultResolver)
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// ResolveIPv4WithResolver same as ResolveIPv4, but with a resolver
|
|
|
|
func ResolveIPv4WithResolver(ctx context.Context, host string, r Resolver) (netip.Addr, error) {
|
|
|
|
ips, err := LookupIPv4WithResolver(ctx, host, r)
|
|
|
|
if err != nil {
|
|
|
|
return netip.Addr{}, err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return netip.Addr{}, fmt.Errorf("%w: %s", ErrIPNotFound, host)
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
2022-11-12 13:31:07 +00:00
|
|
|
return ips[rand.Intn(len(ips))], nil
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// ResolveIPv4 with a host, return ipv4
|
|
|
|
func ResolveIPv4(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
return ResolveIPv4WithResolver(ctx, host, DefaultResolver)
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// LookupIPv6WithResolver same as LookupIPv6, but with a resolver
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIPv6WithResolver(ctx context.Context, host string, r Resolver) ([]netip.Addr, error) {
|
2022-04-29 05:03:55 +00:00
|
|
|
if DisableIPv6 {
|
2022-11-12 13:31:07 +00:00
|
|
|
return nil, ErrIPv6Disabled
|
2022-04-29 05:03:55 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 09:00:55 +00:00
|
|
|
if node := DefaultHosts.Search(host); node != nil {
|
2022-11-02 14:28:18 +00:00
|
|
|
if ip := node.Data(); ip.Is6() {
|
2022-04-29 05:03:55 +00:00
|
|
|
return []netip.Addr{ip}, nil
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
if ip, err := netip.ParseAddr(host); err == nil {
|
|
|
|
if strings.Contains(host, ":") {
|
2022-04-29 05:03:55 +00:00
|
|
|
return []netip.Addr{ip}, nil
|
2019-09-27 02:33:37 +00:00
|
|
|
}
|
2022-11-12 13:31:07 +00:00
|
|
|
return nil, ErrIPVersion
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
|
2022-02-22 18:38:50 +00:00
|
|
|
if r != nil {
|
2022-11-12 05:18:36 +00:00
|
|
|
return r.LookupIPv6(ctx, host)
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
2022-11-12 13:31:07 +00:00
|
|
|
if DefaultResolver != nil {
|
|
|
|
return DefaultResolver.LookupIPv6(ctx, host)
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
ipAddrs, err := net.DefaultResolver.LookupNetIP(ctx, "ip6", host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if len(ipAddrs) == 0 {
|
|
|
|
return nil, ErrIPNotFound
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
return ipAddrs, nil
|
|
|
|
}
|
2022-03-27 16:44:13 +00:00
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// LookupIPv6 with a host, return ipv6 list
|
|
|
|
func LookupIPv6(ctx context.Context, host string) ([]netip.Addr, error) {
|
|
|
|
return LookupIPv6WithResolver(ctx, host, DefaultResolver)
|
|
|
|
}
|
2022-04-29 05:03:55 +00:00
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// ResolveIPv6WithResolver same as ResolveIPv6, but with a resolver
|
|
|
|
func ResolveIPv6WithResolver(ctx context.Context, host string, r Resolver) (netip.Addr, error) {
|
|
|
|
ips, err := LookupIPv6WithResolver(ctx, host, r)
|
|
|
|
if err != nil {
|
|
|
|
return netip.Addr{}, err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return netip.Addr{}, fmt.Errorf("%w: %s", ErrIPNotFound, host)
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
2022-11-12 13:31:07 +00:00
|
|
|
return ips[rand.Intn(len(ips))], nil
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
func ResolveIPv6(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
return ResolveIPv6WithResolver(ctx, host, DefaultResolver)
|
|
|
|
}
|
|
|
|
|
|
|
|
// LookupIPWithResolver same as LookupIP, but with a resolver
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIPWithResolver(ctx context.Context, host string, r Resolver) ([]netip.Addr, error) {
|
2019-09-11 09:00:55 +00:00
|
|
|
if node := DefaultHosts.Search(host); node != nil {
|
2022-11-02 14:28:18 +00:00
|
|
|
return []netip.Addr{node.Data()}, nil
|
2019-09-11 09:00:55 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 13:20:44 +00:00
|
|
|
if r != nil {
|
2020-06-18 10:11:02 +00:00
|
|
|
if DisableIPv6 {
|
2022-11-12 05:18:36 +00:00
|
|
|
return r.LookupIPv4(ctx, host)
|
2020-06-18 10:11:02 +00:00
|
|
|
}
|
2022-11-12 05:18:36 +00:00
|
|
|
return r.LookupIP(ctx, host)
|
2020-06-18 10:11:02 +00:00
|
|
|
} else if DisableIPv6 {
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPv4(ctx, host)
|
2019-06-28 16:58:59 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
if ip, err := netip.ParseAddr(host); err == nil {
|
|
|
|
return []netip.Addr{ip}, nil
|
|
|
|
}
|
2022-03-27 16:44:13 +00:00
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
ips, err := net.DefaultResolver.LookupNetIP(ctx, "ip", host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return nil, ErrIPNotFound
|
2019-06-28 16:58:59 +00:00
|
|
|
}
|
2022-11-12 13:31:07 +00:00
|
|
|
|
|
|
|
return ips, nil
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// LookupIP with a host, return ip
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIP(ctx context.Context, host string) ([]netip.Addr, error) {
|
|
|
|
return LookupIPWithResolver(ctx, host, DefaultResolver)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// ResolveIPWithResolver same as ResolveIP, but with a resolver
|
|
|
|
func ResolveIPWithResolver(ctx context.Context, host string, r Resolver) (netip.Addr, error) {
|
|
|
|
ips, err := LookupIPWithResolver(ctx, host, r)
|
|
|
|
if err != nil {
|
|
|
|
return netip.Addr{}, err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return netip.Addr{}, fmt.Errorf("%w: %s", ErrIPNotFound, host)
|
|
|
|
}
|
|
|
|
return ips[rand.Intn(len(ips))], nil
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 13:31:07 +00:00
|
|
|
// ResolveIP with a host, return ip
|
|
|
|
func ResolveIP(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
return ResolveIPWithResolver(ctx, host, DefaultResolver)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolveIPv4ProxyServerHost proxies server host only
|
|
|
|
func ResolveIPv4ProxyServerHost(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
if ProxyServerHostResolver != nil {
|
|
|
|
if ip, err := ResolveIPv4WithResolver(ctx, host, ProxyServerHostResolver); err != nil {
|
|
|
|
return ResolveIPv4(ctx, host)
|
|
|
|
} else {
|
|
|
|
return ip, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ResolveIPv4(ctx, host)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolveIPv6ProxyServerHost proxies server host only
|
|
|
|
func ResolveIPv6ProxyServerHost(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
if ProxyServerHostResolver != nil {
|
|
|
|
if ip, err := ResolveIPv6WithResolver(ctx, host, ProxyServerHostResolver); err != nil {
|
|
|
|
return ResolveIPv6(ctx, host)
|
|
|
|
} else {
|
|
|
|
return ip, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ResolveIPv6(ctx, host)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolveProxyServerHost proxies server host only
|
|
|
|
func ResolveProxyServerHost(ctx context.Context, host string) (netip.Addr, error) {
|
|
|
|
if ProxyServerHostResolver != nil {
|
|
|
|
if ip, err := ResolveIPWithResolver(ctx, host, ProxyServerHostResolver); err != nil {
|
|
|
|
return ResolveIP(ctx, host)
|
|
|
|
} else {
|
|
|
|
return ip, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ResolveIP(ctx, host)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIPv6ProxyServerHost(ctx context.Context, host string) ([]netip.Addr, error) {
|
2022-04-22 16:27:22 +00:00
|
|
|
if ProxyServerHostResolver != nil {
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPv6WithResolver(ctx, host, ProxyServerHostResolver)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPv6(ctx, host)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIPv4ProxyServerHost(ctx context.Context, host string) ([]netip.Addr, error) {
|
2022-04-22 16:27:22 +00:00
|
|
|
if ProxyServerHostResolver != nil {
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPv4WithResolver(ctx, host, ProxyServerHostResolver)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPv4(ctx, host)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 05:18:36 +00:00
|
|
|
func LookupIPProxyServerHost(ctx context.Context, host string) ([]netip.Addr, error) {
|
2022-04-22 16:27:22 +00:00
|
|
|
if ProxyServerHostResolver != nil {
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIPWithResolver(ctx, host, ProxyServerHostResolver)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|
2022-11-12 05:18:36 +00:00
|
|
|
return LookupIP(ctx, host)
|
2022-04-22 16:27:22 +00:00
|
|
|
}
|