refactor: new way to get interface for android

This commit is contained in:
gVisor bot 2022-05-15 23:02:34 +08:00
parent 02d30883b6
commit d86deea7f1
7 changed files with 36 additions and 20 deletions

View file

@ -884,7 +884,7 @@ func parseAuthentication(rawRecords []string) []auth.AuthUser {
func parseTun(rawTun RawTun, general *General) (*Tun, error) { func parseTun(rawTun RawTun, general *General) (*Tun, error) {
if rawTun.Enable && rawTun.AutoDetectInterface { if rawTun.Enable && rawTun.AutoDetectInterface {
autoDetectInterfaceName, err := commons.GetAutoDetectInterface() autoDetectInterfaceName, err := commons.GetAutoDetectInterface(rawTun.Device)
if err != nil { if err != nil {
log.Warnln("Can not find auto detect interface.[%s]", err) log.Warnln("Can not find auto detect interface.[%s]", err)
} else { } else {

View file

@ -23,17 +23,17 @@ func ipv4MaskString(bits int) string {
return fmt.Sprintf("%d.%d.%d.%d", m[0], m[1], m[2], m[3]) return fmt.Sprintf("%d.%d.%d.%d", m[0], m[1], m[2], m[3])
} }
func DefaultInterfaceChangeMonitor() { func DefaultInterfaceChangeMonitor(tunName string) {
t := time.NewTicker(defaultInterfaceMonitorDuration) t := time.NewTicker(defaultInterfaceMonitorDuration)
defer t.Stop() defer t.Stop()
for { for {
<-t.C <-t.C
interfaceName, err := GetAutoDetectInterface() interfaceName, err := GetAutoDetectInterface(tunName)
if err != nil { if err != nil {
log.Warnln("[TUN] default interface monitor exited, cause: %v", err) log.Warnln("[TUN] default interface monitor exited, cause: %v", err)
break continue
} }
old := dialer.DefaultInterface.Load() old := dialer.DefaultInterface.Load()

View file

@ -10,18 +10,30 @@ import (
"strings" "strings"
) )
func GetAutoDetectInterface() (string, error) { func GetAutoDetectInterface(tunName string) (ifn string, err error) {
res, err := cmd.ExecCmd("sh -c ip route | awk '{print $3}' | xargs echo -n") cmdRes, err := cmd.ExecCmd("ip route show")
if err != nil { if err != nil {
return "", err return
} }
ifaces := strings.Split(res, " ")
for _, iface := range ifaces { for _, route := range strings.Split(cmdRes, "\n") {
if iface == "wlan0" { rs := strings.Split(route, " ")
return "wlan0", nil if len(rs) > 2 {
if rs[2] == tunName {
continue
}
ifn = rs[2]
if ifn == "wlan0" {
return
}
} }
} }
return ifaces[0], nil
if ifn == "" {
return "", fmt.Errorf("interface not found")
}
return
//err = fmt.Errorf("interface not found")
} }
func ConfigInterfaceAddress(dev device.Device, addr netip.Prefix, forceMTU int, autoRoute, autoDetectInterface bool) error { func ConfigInterfaceAddress(dev device.Device, addr netip.Prefix, forceMTU int, autoRoute, autoDetectInterface bool) error {
@ -40,6 +52,10 @@ func ConfigInterfaceAddress(dev device.Device, addr netip.Prefix, forceMTU int,
return err return err
} }
if err = execRouterCmd("add", addr.Masked().String(), interfaceName, ip.String(), "main"); err != nil {
return err
}
if autoRoute { if autoRoute {
err = configInterfaceRouting(interfaceName, addr, autoDetectInterface) err = configInterfaceRouting(interfaceName, addr, autoDetectInterface)
} }
@ -62,7 +78,7 @@ func configInterfaceRouting(interfaceName string, addr netip.Prefix, autoDetectI
execAddRuleCmd(fmt.Sprintf("not from all iif lo lookup %d pref 9004", tableId)) execAddRuleCmd(fmt.Sprintf("not from all iif lo lookup %d pref 9004", tableId))
if autoDetectInterface { if autoDetectInterface {
go DefaultInterfaceChangeMonitor() go DefaultInterfaceChangeMonitor(interfaceName)
} }
return nil return nil

View file

@ -8,7 +8,7 @@ import (
"github.com/Dreamacro/clash/listener/tun/device" "github.com/Dreamacro/clash/listener/tun/device"
) )
func GetAutoDetectInterface() (string, error) { func GetAutoDetectInterface(string) (string, error) {
return cmd.ExecCmd("bash -c route -n get default | grep 'interface:' | awk -F ' ' 'NR==1{print $2}' | xargs echo -n") return cmd.ExecCmd("bash -c route -n get default | grep 'interface:' | awk -F ' ' 'NR==1{print $2}' | xargs echo -n")
} }
@ -55,7 +55,7 @@ func configInterfaceRouting(interfaceName string, addr netip.Prefix, autoDetectI
} }
if autoDetectInterface { if autoDetectInterface {
go DefaultInterfaceChangeMonitor() go DefaultInterfaceChangeMonitor(interfaceName)
} }
return execRouterCmd("add", "-inet6", "2000::/3", interfaceName) return execRouterCmd("add", "-inet6", "2000::/3", interfaceName)

View file

@ -9,7 +9,7 @@ import (
"net/netip" "net/netip"
) )
func GetAutoDetectInterface() (string, error) { func GetAutoDetectInterface(string) (string, error) {
return cmd.ExecCmd("bash -c ip route show | grep 'default via' | awk -F ' ' 'NR==1{print $5}' | xargs echo -n") return cmd.ExecCmd("bash -c ip route show | grep 'default via' | awk -F ' ' 'NR==1{print $5}' | xargs echo -n")
} }
@ -47,7 +47,7 @@ func configInterfaceRouting(interfaceName string, addr netip.Prefix, autoDetectI
} }
if autoDetectInterface { if autoDetectInterface {
go DefaultInterfaceChangeMonitor() go DefaultInterfaceChangeMonitor(interfaceName)
} }
return nil return nil

View file

@ -10,7 +10,7 @@ import (
"github.com/Dreamacro/clash/listener/tun/device" "github.com/Dreamacro/clash/listener/tun/device"
) )
func GetAutoDetectInterface() (string, error) { func GetAutoDetectInterface(string) (string, error) {
return "", fmt.Errorf("can not auto detect interface-name on this OS: %s, you must be detecting interface-name by manual", runtime.GOOS) return "", fmt.Errorf("can not auto detect interface-name on this OS: %s, you must be detecting interface-name by manual", runtime.GOOS)
} }

View file

@ -18,7 +18,7 @@ import (
var wintunInterfaceName string var wintunInterfaceName string
func GetAutoDetectInterface() (string, error) { func GetAutoDetectInterface(string) (string, error) {
ifname, err := getAutoDetectInterfaceByFamily(winipcfg.AddressFamily(windows.AF_INET)) ifname, err := getAutoDetectInterfaceByFamily(winipcfg.AddressFamily(windows.AF_INET))
if err == nil { if err == nil {
return ifname, err return ifname, err
@ -206,7 +206,7 @@ startOver:
wintunInterfaceName = dev.Name() wintunInterfaceName = dev.Name()
if autoDetectInterface { if autoDetectInterface {
go DefaultInterfaceChangeMonitor() go DefaultInterfaceChangeMonitor(dev.Name())
} }
return nil return nil