2020-02-09 17:02:48 +08:00
|
|
|
package dialer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-02-15 21:42:46 +08:00
|
|
|
"errors"
|
2022-04-23 00:30:25 +08:00
|
|
|
"fmt"
|
2022-04-23 00:27:22 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2020-02-09 17:02:48 +08:00
|
|
|
"net"
|
2022-04-20 01:52:51 +08:00
|
|
|
"net/netip"
|
2020-02-15 21:42:46 +08:00
|
|
|
|
|
|
|
"github.com/Dreamacro/clash/component/resolver"
|
2020-02-09 17:02:48 +08:00
|
|
|
)
|
|
|
|
|
2022-04-23 00:27:22 +08:00
|
|
|
var DisableIPv6 = false
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
func DialContext(ctx context.Context, network, address string, options ...Option) (net.Conn, error) {
|
2022-02-23 02:38:50 +08:00
|
|
|
opt := &option{
|
|
|
|
interfaceName: DefaultInterface.Load(),
|
|
|
|
routingMark: int(DefaultRoutingMark.Load()),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range DefaultOptions {
|
|
|
|
o(opt)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range options {
|
|
|
|
o(opt)
|
|
|
|
}
|
|
|
|
|
2020-02-15 21:42:46 +08:00
|
|
|
switch network {
|
|
|
|
case "tcp4", "tcp6", "udp4", "udp6":
|
|
|
|
host, port, err := net.SplitHostPort(address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-04-20 01:52:51 +08:00
|
|
|
var ip netip.Addr
|
2020-02-15 21:42:46 +08:00
|
|
|
switch network {
|
|
|
|
case "tcp4", "udp4":
|
2022-03-28 00:44:13 +08:00
|
|
|
if !opt.direct {
|
|
|
|
ip, err = resolver.ResolveIPv4ProxyServerHost(host)
|
2022-02-23 02:38:50 +08:00
|
|
|
} else {
|
|
|
|
ip, err = resolver.ResolveIPv4(host)
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
default:
|
2022-03-28 00:44:13 +08:00
|
|
|
if !opt.direct {
|
|
|
|
ip, err = resolver.ResolveIPv6ProxyServerHost(host)
|
2022-02-23 02:38:50 +08:00
|
|
|
} else {
|
|
|
|
ip, err = resolver.ResolveIPv6(host)
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-02-23 02:38:50 +08:00
|
|
|
return dialContext(ctx, network, ip, port, opt)
|
2020-02-15 21:42:46 +08:00
|
|
|
case "tcp", "udp":
|
2022-04-23 08:53:51 +08:00
|
|
|
if TCPConcurrent {
|
2022-04-23 00:27:22 +08:00
|
|
|
return concurrentDialContext(ctx, network, address, opt)
|
|
|
|
} else {
|
|
|
|
return dualStackDialContext(ctx, network, address, opt)
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
default:
|
|
|
|
return nil, errors.New("network invalid")
|
|
|
|
}
|
2020-02-09 17:02:48 +08:00
|
|
|
}
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
func ListenPacket(ctx context.Context, network, address string, options ...Option) (net.PacketConn, error) {
|
2021-11-07 16:48:51 +08:00
|
|
|
cfg := &option{
|
|
|
|
interfaceName: DefaultInterface.Load(),
|
2022-02-17 14:23:47 +08:00
|
|
|
routingMark: int(DefaultRoutingMark.Load()),
|
2021-11-07 16:48:51 +08:00
|
|
|
}
|
2021-09-06 23:07:34 +08:00
|
|
|
|
2021-11-07 16:48:51 +08:00
|
|
|
for _, o := range DefaultOptions {
|
|
|
|
o(cfg)
|
2021-09-06 23:07:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, o := range options {
|
|
|
|
o(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
lc := &net.ListenConfig{}
|
|
|
|
if cfg.interfaceName != "" {
|
|
|
|
addr, err := bindIfaceToListenConfig(cfg.interfaceName, lc, network, address)
|
2020-04-24 23:48:55 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
2021-09-06 23:07:34 +08:00
|
|
|
address = addr
|
|
|
|
}
|
|
|
|
if cfg.addrReuse {
|
|
|
|
addrReuseToListenConfig(lc)
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
2021-11-08 16:59:48 +08:00
|
|
|
if cfg.routingMark != 0 {
|
|
|
|
bindMarkToListenConfig(cfg.routingMark, lc, network, address)
|
|
|
|
}
|
2020-10-22 00:11:49 +08:00
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
return lc.ListenPacket(ctx, network, address)
|
2020-02-09 17:02:48 +08:00
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
|
2022-04-20 01:52:51 +08:00
|
|
|
func dialContext(ctx context.Context, network string, destination netip.Addr, port string, opt *option) (net.Conn, error) {
|
2021-09-06 23:07:34 +08:00
|
|
|
dialer := &net.Dialer{}
|
|
|
|
if opt.interfaceName != "" {
|
|
|
|
if err := bindIfaceToDialer(opt.interfaceName, dialer, network, destination); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2021-11-08 16:59:48 +08:00
|
|
|
if opt.routingMark != 0 {
|
|
|
|
bindMarkToDialer(opt.routingMark, dialer, network, destination)
|
|
|
|
}
|
2021-09-06 23:07:34 +08:00
|
|
|
|
2022-04-23 00:30:25 +08:00
|
|
|
if DisableIPv6 && destination.Is6() {
|
|
|
|
return nil, fmt.Errorf("IPv6 is diabled, dialer cancel")
|
|
|
|
}
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
return dialer.DialContext(ctx, network, net.JoinHostPort(destination.String(), port))
|
|
|
|
}
|
|
|
|
|
2022-02-23 02:38:50 +08:00
|
|
|
func dualStackDialContext(ctx context.Context, network, address string, opt *option) (net.Conn, error) {
|
2020-02-15 21:42:46 +08:00
|
|
|
host, port, err := net.SplitHostPort(address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
returned := make(chan struct{})
|
|
|
|
defer close(returned)
|
|
|
|
|
|
|
|
type dialResult struct {
|
|
|
|
net.Conn
|
|
|
|
error
|
|
|
|
resolved bool
|
|
|
|
ipv6 bool
|
|
|
|
done bool
|
|
|
|
}
|
|
|
|
results := make(chan dialResult)
|
|
|
|
var primary, fallback dialResult
|
|
|
|
|
2022-03-28 00:44:13 +08:00
|
|
|
startRacer := func(ctx context.Context, network, host string, direct bool, ipv6 bool) {
|
2020-02-15 21:42:46 +08:00
|
|
|
result := dialResult{ipv6: ipv6, done: true}
|
|
|
|
defer func() {
|
|
|
|
select {
|
|
|
|
case results <- result:
|
|
|
|
case <-returned:
|
|
|
|
if result.Conn != nil {
|
2022-04-20 01:52:51 +08:00
|
|
|
_ = result.Conn.Close()
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2022-04-20 01:52:51 +08:00
|
|
|
var ip netip.Addr
|
2020-02-15 21:42:46 +08:00
|
|
|
if ipv6 {
|
2022-03-28 00:44:13 +08:00
|
|
|
if !direct {
|
|
|
|
ip, result.error = resolver.ResolveIPv6ProxyServerHost(host)
|
2022-02-23 02:38:50 +08:00
|
|
|
} else {
|
|
|
|
ip, result.error = resolver.ResolveIPv6(host)
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
} else {
|
2022-03-28 00:44:13 +08:00
|
|
|
if !direct {
|
|
|
|
ip, result.error = resolver.ResolveIPv4ProxyServerHost(host)
|
2022-02-23 02:38:50 +08:00
|
|
|
} else {
|
|
|
|
ip, result.error = resolver.ResolveIPv4(host)
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
|
|
|
if result.error != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
result.resolved = true
|
|
|
|
|
2022-02-23 02:38:50 +08:00
|
|
|
result.Conn, result.error = dialContext(ctx, network, ip, port, opt)
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
|
|
|
|
2022-03-28 00:44:13 +08:00
|
|
|
go startRacer(ctx, network+"4", host, opt.direct, false)
|
|
|
|
go startRacer(ctx, network+"6", host, opt.direct, true)
|
2020-02-15 21:42:46 +08:00
|
|
|
|
2020-08-25 22:19:59 +08:00
|
|
|
for res := range results {
|
|
|
|
if res.error == nil {
|
|
|
|
return res.Conn, nil
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
|
2020-08-25 22:19:59 +08:00
|
|
|
if !res.ipv6 {
|
|
|
|
primary = res
|
|
|
|
} else {
|
|
|
|
fallback = res
|
|
|
|
}
|
2020-02-15 21:42:46 +08:00
|
|
|
|
2020-08-25 22:19:59 +08:00
|
|
|
if primary.done && fallback.done {
|
|
|
|
if primary.resolved {
|
|
|
|
return nil, primary.error
|
|
|
|
} else if fallback.resolved {
|
|
|
|
return nil, fallback.error
|
|
|
|
} else {
|
|
|
|
return nil, primary.error
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 22:19:59 +08:00
|
|
|
|
|
|
|
return nil, errors.New("never touched")
|
2020-02-15 21:42:46 +08:00
|
|
|
}
|
2022-04-23 00:27:22 +08:00
|
|
|
|
|
|
|
func concurrentDialContext(ctx context.Context, network, address string, opt *option) (net.Conn, error) {
|
|
|
|
host, port, err := net.SplitHostPort(address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
returned := make(chan struct{})
|
|
|
|
defer close(returned)
|
|
|
|
|
|
|
|
type dialResult struct {
|
|
|
|
ip netip.Addr
|
|
|
|
net.Conn
|
|
|
|
error
|
|
|
|
resolved bool
|
|
|
|
}
|
|
|
|
|
|
|
|
results := make(chan dialResult)
|
|
|
|
var ips []netip.Addr
|
|
|
|
|
|
|
|
if opt.direct {
|
|
|
|
ips, err = resolver.ResolveAllIP(host)
|
|
|
|
} else {
|
|
|
|
ips, err = resolver.ResolveAllIPProxyServerHost(host)
|
|
|
|
}
|
|
|
|
|
|
|
|
tcpRacer := func(ctx context.Context, ip netip.Addr) {
|
|
|
|
result := dialResult{ip: ip}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
select {
|
|
|
|
case results <- result:
|
|
|
|
case <-returned:
|
|
|
|
if result.Conn != nil {
|
|
|
|
result.Conn.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
v := "4"
|
|
|
|
if ip.Is6() {
|
|
|
|
v = "6"
|
|
|
|
}
|
2022-04-27 15:22:42 +08:00
|
|
|
//log.Debugln("[%s] try use [%s] connected", host, ip.String())
|
2022-04-23 00:27:22 +08:00
|
|
|
result.Conn, result.error = dialContext(ctx, network+v, ip, port, opt)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ip := range ips {
|
|
|
|
go tcpRacer(ctx, ip)
|
|
|
|
}
|
|
|
|
|
|
|
|
connCount := len(ips)
|
|
|
|
for res := range results {
|
|
|
|
connCount--
|
|
|
|
if res.error == nil {
|
2022-04-23 08:53:51 +08:00
|
|
|
log.Debugln("[%s] used [%s] connected", host, res.ip.String())
|
2022-04-23 00:27:22 +08:00
|
|
|
return res.Conn, nil
|
|
|
|
}
|
|
|
|
|
2022-04-27 15:22:42 +08:00
|
|
|
//log.Errorln("connect error:%v", res.error)
|
2022-04-23 00:27:22 +08:00
|
|
|
if connCount == 0 {
|
2022-04-27 15:22:42 +08:00
|
|
|
//log.Errorln("connect [%s] all ip failed", host)
|
2022-04-23 00:27:22 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, errors.New("all ip tcp shakeHands failed")
|
|
|
|
}
|