mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-02 22:35:59 +00:00
net/dns: work around old systemd-resolved setLinkDomain length limit
Don't set all the *.arpa. reverse DNS lookup domains if systemd-resolved is old and can't handle them. Fixes #3188 Change-Id: I283f8ce174daa8f0a972ac7bfafb6ff393dde41d Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
9fa6cdf7bf
commit
400ed799e6
@ -12,6 +12,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/godbus/dbus/v5"
|
"github.com/godbus/dbus/v5"
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
@ -171,6 +172,14 @@ func (m *resolvedManager) SetDNS(config OSConfig) error {
|
|||||||
ctx, "org.freedesktop.resolve1.Manager.SetLinkDomains", 0,
|
ctx, "org.freedesktop.resolve1.Manager.SetLinkDomains", 0,
|
||||||
m.ifidx, linkDomains,
|
m.ifidx, linkDomains,
|
||||||
).Store()
|
).Store()
|
||||||
|
if err != nil && err.Error() == "Argument list too long" { // TODO: better error match
|
||||||
|
// Issue 3188: older systemd-resolved had argument length limits.
|
||||||
|
// Trim out the *.arpa. entries and try again.
|
||||||
|
err = m.resolved.CallWithContext(
|
||||||
|
ctx, "org.freedesktop.resolve1.Manager.SetLinkDomains", 0,
|
||||||
|
m.ifidx, linkDomainsWithoutReverseDNS(linkDomains),
|
||||||
|
).Store()
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("setLinkDomains: %w", err)
|
return fmt.Errorf("setLinkDomains: %w", err)
|
||||||
}
|
}
|
||||||
@ -234,3 +243,16 @@ func (m *resolvedManager) Close() error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// linkDomainsWithoutReverseDNS returns a copy of v without
|
||||||
|
// *.arpa. entries.
|
||||||
|
func linkDomainsWithoutReverseDNS(v []resolvedLinkDomain) (ret []resolvedLinkDomain) {
|
||||||
|
for _, d := range v {
|
||||||
|
if strings.HasSuffix(d.Domain, ".arpa.") {
|
||||||
|
// Oh well. At least the rest will work.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
ret = append(ret, d)
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user