mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
configure systemd-resolved if strict-route is set
properly configure DNS server and +DefaultRoute for systemd-resolved to prevent DNS leak when strict-route is set.
This commit is contained in:
parent
b02f252916
commit
cc2b79958c
1 changed files with 19 additions and 3 deletions
22
tun_linux.go
22
tun_linux.go
|
@ -167,7 +167,7 @@ func (t *NativeTun) configure(tunLink netlink.Link) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
setSearchDomainForSystemdResolved(t.options.Name)
|
configureSystemdResulved(t.options)
|
||||||
|
|
||||||
if t.options.AutoRoute && runtime.GOOS == "android" {
|
if t.options.AutoRoute && runtime.GOOS == "android" {
|
||||||
t.interfaceCallback = t.options.InterfaceMonitor.RegisterCallback(t.routeUpdate)
|
t.interfaceCallback = t.options.InterfaceMonitor.RegisterCallback(t.routeUpdate)
|
||||||
|
@ -599,10 +599,26 @@ func (t *NativeTun) routeUpdate(event int) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func setSearchDomainForSystemdResolved(interfaceName string) {
|
func configureSystemdResulved(options Options) {
|
||||||
ctlPath, err := exec.LookPath("resolvectl")
|
ctlPath, err := exec.LookPath("resolvectl")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
shell.Exec(ctlPath, "domain", interfaceName, "~.").Run()
|
|
||||||
|
if options.StrictRoute {
|
||||||
|
if len(options.Inet4Address) > 0 && len(options.Inet6Address) > 0 {
|
||||||
|
shell.Exec(ctlPath, "dns", options.Name, options.Inet4Address[0].Addr().Next().String(), options.Inet6Address[0].Addr().Next().String()).Run()
|
||||||
|
} else {
|
||||||
|
if len(options.Inet4Address) > 0 {
|
||||||
|
shell.Exec(ctlPath, "dns", options.Name, options.Inet4Address[0].Addr().Next().String()).Run()
|
||||||
|
}
|
||||||
|
if len(options.Inet6Address) > 0 {
|
||||||
|
shell.Exec(ctlPath, "dns", options.Name, options.Inet6Address[0].Addr().Next().String()).Run()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
shell.Exec(ctlPath, "default-route", options.Name, "true").Run()
|
||||||
|
}
|
||||||
|
|
||||||
|
shell.Exec(ctlPath, "domain", options.Name, "~.").Run()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue