2021-08-18 13:26:23 +08:00
|
|
|
//go:build !linux && !darwin
|
2020-10-22 00:11:49 +08:00
|
|
|
// +build !linux,!darwin
|
|
|
|
|
|
|
|
package dialer
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-10-22 00:11:49 +08:00
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
"github.com/Dreamacro/clash/component/iface"
|
|
|
|
)
|
|
|
|
|
|
|
|
func lookupLocalAddr(ifaceName string, network string, destination net.IP, port int) (net.Addr, error) {
|
|
|
|
ifaceObj, err := iface.ResolveInterface(ifaceName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var addr *net.IPNet
|
|
|
|
switch network {
|
|
|
|
case "udp4", "tcp4":
|
|
|
|
addr, err = ifaceObj.PickIPv4Addr(destination)
|
|
|
|
case "tcp6", "udp6":
|
|
|
|
addr, err = ifaceObj.PickIPv6Addr(destination)
|
|
|
|
default:
|
|
|
|
if destination != nil {
|
|
|
|
if destination.To4() != nil {
|
|
|
|
addr, err = ifaceObj.PickIPv4Addr(destination)
|
|
|
|
} else {
|
|
|
|
addr, err = ifaceObj.PickIPv6Addr(destination)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
addr, err = ifaceObj.PickIPv4Addr(destination)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(network, "tcp") {
|
|
|
|
return &net.TCPAddr{
|
|
|
|
IP: addr.IP,
|
|
|
|
Port: port,
|
|
|
|
}, nil
|
|
|
|
} else if strings.HasPrefix(network, "udp") {
|
|
|
|
return &net.UDPAddr{
|
|
|
|
IP: addr.IP,
|
|
|
|
Port: port,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, iface.ErrAddrNotFound
|
2020-10-22 00:11:49 +08:00
|
|
|
}
|
|
|
|
|
2021-09-06 23:07:34 +08:00
|
|
|
func bindIfaceToDialer(ifaceName string, dialer *net.Dialer, network string, destination net.IP) error {
|
|
|
|
if !destination.IsGlobalUnicast() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-02 01:09:29 +08:00
|
|
|
local := uint64(0)
|
2021-09-06 23:07:34 +08:00
|
|
|
if dialer.LocalAddr != nil {
|
|
|
|
_, port, err := net.SplitHostPort(dialer.LocalAddr.String())
|
|
|
|
if err == nil {
|
2022-01-02 01:09:29 +08:00
|
|
|
local, _ = strconv.ParseUint(port, 10, 16)
|
2021-09-06 23:07:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-08 21:24:39 +08:00
|
|
|
addr, err := lookupLocalAddr(ifaceName, network, destination, int(local))
|
2021-09-06 23:07:34 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
dialer.LocalAddr = addr
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func bindIfaceToListenConfig(ifaceName string, _ *net.ListenConfig, network, address string) (string, error) {
|
|
|
|
_, port, err := net.SplitHostPort(address)
|
|
|
|
if err != nil {
|
|
|
|
port = "0"
|
|
|
|
}
|
|
|
|
|
2022-01-02 01:09:29 +08:00
|
|
|
local, _ := strconv.ParseUint(port, 10, 16)
|
2021-09-06 23:07:34 +08:00
|
|
|
|
2021-11-08 21:24:39 +08:00
|
|
|
addr, err := lookupLocalAddr(ifaceName, network, nil, int(local))
|
2021-09-06 23:07:34 +08:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return addr.String(), nil
|
2020-10-22 00:11:49 +08:00
|
|
|
}
|