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:
Victor Tseng 2023-05-14 11:10:51 +08:00
parent b02f252916
commit cc2b79958c

View file

@ -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()
} }