patch more unsupported config

This commit is contained in:
wwqgtxx 2024-09-12 10:50:27 +08:00
parent 8f1c235af5
commit a197f8fce1
4 changed files with 30 additions and 13 deletions

View File

@ -76,8 +76,7 @@ func Load(path string) error {
return err return err
} }
// Start the external controller like in hub.Parse(), but we have set its // like hub.Parse()
// default override value to end with ":0" for security.
hub.ApplyConfig(cfg) hub.ApplyConfig(cfg)
app.ApplySubtitlePattern(rawCfg.ClashForAndroid.UiSubtitlePattern) app.ApplySubtitlePattern(rawCfg.ClashForAndroid.UiSubtitlePattern)

View File

@ -10,10 +10,9 @@ import (
"cfa/native/common" "cfa/native/common"
"github.com/metacubex/mihomo/config"
C "github.com/metacubex/mihomo/constant" C "github.com/metacubex/mihomo/constant"
"github.com/metacubex/mihomo/log" "github.com/metacubex/mihomo/log"
"github.com/metacubex/mihomo/config"
) )
var processors = []processor{ var processors = []processor{
@ -23,6 +22,7 @@ var processors = []processor{
patchProfile, patchProfile,
patchDns, patchDns,
patchTun, patchTun,
patchListeners,
patchProviders, patchProviders,
validConfig, validConfig,
} }
@ -88,7 +88,23 @@ func patchDns(cfg *config.RawConfig, _ string) error {
func patchTun(cfg *config.RawConfig, _ string) error { func patchTun(cfg *config.RawConfig, _ string) error {
cfg.Tun.Enable = false cfg.Tun.Enable = false
cfg.Tun.AutoRoute = false
cfg.Tun.AutoDetectInterface = false
return nil
}
func patchListeners(cfg *config.RawConfig, _ string) error {
newListeners := make([]map[string]any, 0, len(cfg.Listeners))
for _, mapping := range cfg.Listeners {
if proxyType, existType := mapping["type"].(string); existType {
switch proxyType {
case "tproxy", "redir", "tun":
continue // remove those listeners which is not supported
}
}
newListeners = append(newListeners, mapping)
}
cfg.Listeners = newListeners
return nil return nil
} }

View File

@ -18,7 +18,7 @@ func Start(listen string) (listenAt string, err error) {
listener, err = http.NewWithAuthenticate(listen, tunnel.Tunnel, false) listener, err = http.NewWithAuthenticate(listen, tunnel.Tunnel, false)
if err == nil { if err == nil {
listenAt = listener.Listener().Addr().String() listenAt = listener.Address()
} }
return return

View File

@ -56,6 +56,8 @@ func Start(fd int, stack, gateway, portal, dns string) (io.Closer, error) {
Device: sing_tun.InterfaceName, Device: sing_tun.InterfaceName,
Stack: tunStack, Stack: tunStack,
DNSHijack: dnsHijack, DNSHijack: dnsHijack,
AutoRoute: false, // had set route in TunService.kt
AutoDetectInterface: false, // implements by VpnService::protect
Inet4Address: prefix4, Inet4Address: prefix4,
Inet6Address: prefix6, Inet6Address: prefix6,
MTU: 9000, // private const val TUN_MTU = 9000 in TunService.kt MTU: 9000, // private const val TUN_MTU = 9000 in TunService.kt