mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-09 17:52:57 +01:00
This file was never truly necessary and has never actually been used in the history of Tailscale's open source releases. A Brief History of AUTHORS files --- The AUTHORS file was a pattern developed at Google, originally for Chromium, then adopted by Go and a bunch of other projects. The problem was that Chromium originally had a copyright line only recognizing Google as the copyright holder. Because Google (and most open source projects) do not require copyright assignemnt for contributions, each contributor maintains their copyright. Some large corporate contributors then tried to add their own name to the copyright line in the LICENSE file or in file headers. This quickly becomes unwieldy, and puts a tremendous burden on anyone building on top of Chromium, since the license requires that they keep all copyright lines intact. The compromise was to create an AUTHORS file that would list all of the copyright holders. The LICENSE file and source file headers would then include that list by reference, listing the copyright holder as "The Chromium Authors". This also become cumbersome to simply keep the file up to date with a high rate of new contributors. Plus it's not always obvious who the copyright holder is. Sometimes it is the individual making the contribution, but many times it may be their employer. There is no way for the proejct maintainer to know. Eventually, Google changed their policy to no longer recommend trying to keep the AUTHORS file up to date proactively, and instead to only add to it when requested: https://opensource.google/docs/releasing/authors. They are also clear that: > Adding contributors to the AUTHORS file is entirely within the > project's discretion and has no implications for copyright ownership. It was primarily added to appease a small number of large contributors that insisted that they be recognized as copyright holders (which was entirely their right to do). But it's not truly necessary, and not even the most accurate way of identifying contributors and/or copyright holders. In practice, we've never added anyone to our AUTHORS file. It only lists Tailscale, so it's not really serving any purpose. It also causes confusion because Tailscalars put the "Tailscale Inc & AUTHORS" header in other open source repos which don't actually have an AUTHORS file, so it's ambiguous what that means. Instead, we just acknowledge that the contributors to Tailscale (whoever they are) are copyright holders for their individual contributions. We also have the benefit of using the DCO (developercertificate.org) which provides some additional certification of their right to make the contribution. The source file changes were purely mechanical with: git ls-files | xargs sed -i -e 's/\(Tailscale Inc &\) AUTHORS/\1 contributors/g' Updates #cleanup Change-Id: Ia101a4a3005adb9118051b3416f5a64a4a45987d Signed-off-by: Will Norris <will@tailscale.com>
437 lines
12 KiB
Go
437 lines
12 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build linux && !android && !ts_omit_networkmanager
|
|
|
|
package dns
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"net/netip"
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/godbus/dbus/v5"
|
|
"tailscale.com/net/tsaddr"
|
|
"tailscale.com/util/cmpver"
|
|
"tailscale.com/util/dnsname"
|
|
)
|
|
|
|
const (
|
|
highestPriority = int32(-1 << 31)
|
|
mediumPriority = int32(1) // Highest priority that doesn't hard-override
|
|
lowerPriority = int32(200) // lower than all builtin auto priorities
|
|
)
|
|
|
|
// nmManager uses the NetworkManager DBus API.
|
|
type nmManager struct {
|
|
interfaceName string
|
|
manager dbus.BusObject
|
|
dnsManager dbus.BusObject
|
|
}
|
|
|
|
func init() {
|
|
optNewNMManager.Set(newNMManager)
|
|
optNMIsUsingResolved.Set(nmIsUsingResolved)
|
|
optNMVersionBetween.Set(nmVersionBetween)
|
|
}
|
|
|
|
func newNMManager(interfaceName string) (OSConfigurator, error) {
|
|
conn, err := dbus.SystemBus()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &nmManager{
|
|
interfaceName: interfaceName,
|
|
manager: conn.Object("org.freedesktop.NetworkManager", dbus.ObjectPath("/org/freedesktop/NetworkManager")),
|
|
dnsManager: conn.Object("org.freedesktop.NetworkManager", dbus.ObjectPath("/org/freedesktop/NetworkManager/DnsManager")),
|
|
}, nil
|
|
}
|
|
|
|
type nmConnectionSettings map[string]map[string]dbus.Variant
|
|
|
|
func (m *nmManager) SetDNS(config OSConfig) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), reconfigTimeout)
|
|
defer cancel()
|
|
|
|
// NetworkManager only lets you set DNS settings on "active"
|
|
// connections, which requires an assigned IP address. This got
|
|
// configured before the DNS manager was invoked, but it might
|
|
// take a little time for the netlink notifications to propagate
|
|
// up. So, keep retrying for the duration of the reconfigTimeout.
|
|
var err error
|
|
for ctx.Err() == nil {
|
|
err = m.trySet(ctx, config)
|
|
if err == nil {
|
|
break
|
|
}
|
|
time.Sleep(10 * time.Millisecond)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func (m *nmManager) trySet(ctx context.Context, config OSConfig) error {
|
|
conn, err := dbus.SystemBus()
|
|
if err != nil {
|
|
return fmt.Errorf("connecting to system bus: %w", err)
|
|
}
|
|
|
|
// This is how we get at the DNS settings:
|
|
//
|
|
// org.freedesktop.NetworkManager
|
|
// |
|
|
// [GetDeviceByIpIface]
|
|
// |
|
|
// v
|
|
// org.freedesktop.NetworkManager.Device <--------\
|
|
// (describes a network interface) |
|
|
// | |
|
|
// [GetAppliedConnection] [Reapply]
|
|
// | |
|
|
// v |
|
|
// org.freedesktop.NetworkManager.Connection |
|
|
// (connection settings) ------/
|
|
// contains {dns, dns-priority, dns-search}
|
|
//
|
|
// Ref: https://developer.gnome.org/NetworkManager/stable/settings-ipv4.html.
|
|
|
|
nm := conn.Object(
|
|
"org.freedesktop.NetworkManager",
|
|
dbus.ObjectPath("/org/freedesktop/NetworkManager"),
|
|
)
|
|
|
|
var devicePath dbus.ObjectPath
|
|
err = nm.CallWithContext(
|
|
ctx, "org.freedesktop.NetworkManager.GetDeviceByIpIface", 0,
|
|
m.interfaceName,
|
|
).Store(&devicePath)
|
|
if err != nil {
|
|
return fmt.Errorf("getDeviceByIpIface: %w", err)
|
|
}
|
|
device := conn.Object("org.freedesktop.NetworkManager", devicePath)
|
|
|
|
var (
|
|
settings nmConnectionSettings
|
|
version uint64
|
|
)
|
|
err = device.CallWithContext(
|
|
ctx, "org.freedesktop.NetworkManager.Device.GetAppliedConnection", 0,
|
|
uint32(0),
|
|
).Store(&settings, &version)
|
|
if err != nil {
|
|
return fmt.Errorf("getAppliedConnection: %w", err)
|
|
}
|
|
|
|
// Frustratingly, NetworkManager represents IPv4 addresses as uint32s,
|
|
// although IPv6 addresses are represented as byte arrays.
|
|
// Perform the conversion here.
|
|
var (
|
|
dnsv4 []uint32
|
|
dnsv6 [][]byte
|
|
)
|
|
for _, ip := range config.Nameservers {
|
|
b := ip.As16()
|
|
if ip.Is4() {
|
|
dnsv4 = append(dnsv4, binary.NativeEndian.Uint32(b[12:]))
|
|
} else {
|
|
dnsv6 = append(dnsv6, b[:])
|
|
}
|
|
}
|
|
|
|
// NetworkManager wipes out IPv6 address configuration unless we
|
|
// tell it explicitly to keep it. Read out the current interface
|
|
// settings and mirror them out to NetworkManager.
|
|
var addrs6 []map[string]any
|
|
if tsIf, err := net.InterfaceByName(m.interfaceName); err == nil {
|
|
addrs, _ := tsIf.Addrs()
|
|
for _, a := range addrs {
|
|
if ipnet, ok := a.(*net.IPNet); ok {
|
|
nip, ok := netip.AddrFromSlice(ipnet.IP)
|
|
nip = nip.Unmap()
|
|
if ok && tsaddr.IsTailscaleIP(nip) && nip.Is6() {
|
|
addrs6 = append(addrs6, map[string]any{
|
|
"address": nip.String(),
|
|
"prefix": uint32(128),
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
seen := map[dnsname.FQDN]bool{}
|
|
var search []string
|
|
for _, dom := range config.SearchDomains {
|
|
if seen[dom] {
|
|
continue
|
|
}
|
|
seen[dom] = true
|
|
search = append(search, dom.WithTrailingDot())
|
|
}
|
|
for _, dom := range config.MatchDomains {
|
|
if seen[dom] {
|
|
continue
|
|
}
|
|
seen[dom] = true
|
|
search = append(search, "~"+dom.WithTrailingDot())
|
|
}
|
|
if len(config.MatchDomains) == 0 {
|
|
// Non-split routing requested, add an all-domains match.
|
|
search = append(search, "~.")
|
|
}
|
|
|
|
// Ideally we would like to disable LLMNR and mdns on the
|
|
// interface here, but older NetworkManagers don't understand
|
|
// those settings and choke on them, so we don't. Both LLMNR and
|
|
// mdns will fail since tailscale0 doesn't do multicast, so it's
|
|
// effectively fine. We used to try and enforce LLMNR and mdns
|
|
// settings here, but that led to #1870.
|
|
|
|
ipv4Map := settings["ipv4"]
|
|
ipv4Map["dns"] = dbus.MakeVariant(dnsv4)
|
|
ipv4Map["dns-search"] = dbus.MakeVariant(search)
|
|
// We should only request priority if we have nameservers to set.
|
|
if len(dnsv4) == 0 {
|
|
ipv4Map["dns-priority"] = dbus.MakeVariant(lowerPriority)
|
|
} else if len(config.MatchDomains) > 0 {
|
|
// Set a fairly high priority, but don't override all other
|
|
// configs when in split-DNS mode.
|
|
ipv4Map["dns-priority"] = dbus.MakeVariant(mediumPriority)
|
|
} else {
|
|
// Negative priority means only the settings from the most
|
|
// negative connection get used. The way this mixes with
|
|
// per-domain routing is unclear, but it _seems_ that the
|
|
// priority applies after routing has found possible
|
|
// candidates for a resolution.
|
|
ipv4Map["dns-priority"] = dbus.MakeVariant(highestPriority)
|
|
}
|
|
|
|
ipv6Map := settings["ipv6"]
|
|
// In IPv6 settings, you're only allowed to provide additional
|
|
// static DNS settings in "auto" (SLAAC) or "manual" mode. In
|
|
// "manual" mode you also have to specify IP addresses, so we use
|
|
// "auto".
|
|
//
|
|
// NM actually documents that to set just DNS servers, you should
|
|
// use "auto" mode and then set ignore auto routes and DNS, which
|
|
// basically means "autoconfigure but ignore any autoconfiguration
|
|
// results you might get". As a safety, we also say that
|
|
// NetworkManager should never try to make us the default route
|
|
// (none of its business anyway, we handle our own default
|
|
// routing).
|
|
ipv6Map["method"] = dbus.MakeVariant("auto")
|
|
if len(addrs6) > 0 {
|
|
ipv6Map["address-data"] = dbus.MakeVariant(addrs6)
|
|
}
|
|
ipv6Map["ignore-auto-routes"] = dbus.MakeVariant(true)
|
|
ipv6Map["ignore-auto-dns"] = dbus.MakeVariant(true)
|
|
ipv6Map["never-default"] = dbus.MakeVariant(true)
|
|
|
|
ipv6Map["dns"] = dbus.MakeVariant(dnsv6)
|
|
ipv6Map["dns-search"] = dbus.MakeVariant(search)
|
|
if len(dnsv6) == 0 {
|
|
ipv6Map["dns-priority"] = dbus.MakeVariant(lowerPriority)
|
|
} else if len(config.MatchDomains) > 0 {
|
|
// Set a fairly high priority, but don't override all other
|
|
// configs when in split-DNS mode.
|
|
ipv6Map["dns-priority"] = dbus.MakeVariant(mediumPriority)
|
|
} else {
|
|
ipv6Map["dns-priority"] = dbus.MakeVariant(highestPriority)
|
|
}
|
|
|
|
// deprecatedProperties are the properties in interface settings
|
|
// that are deprecated by NetworkManager.
|
|
//
|
|
// In practice, this means that they are returned for reading,
|
|
// but submitting a settings object with them present fails
|
|
// with hard-to-diagnose errors. They must be removed.
|
|
deprecatedProperties := []string{
|
|
"addresses", "routes",
|
|
}
|
|
|
|
for _, property := range deprecatedProperties {
|
|
delete(ipv4Map, property)
|
|
delete(ipv6Map, property)
|
|
}
|
|
|
|
if call := device.CallWithContext(ctx, "org.freedesktop.NetworkManager.Device.Reapply", 0, settings, version, uint32(0)); call.Err != nil {
|
|
return fmt.Errorf("reapply: %w", call.Err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *nmManager) SupportsSplitDNS() bool {
|
|
var mode string
|
|
v, err := m.dnsManager.GetProperty("org.freedesktop.NetworkManager.DnsManager.Mode")
|
|
if err != nil {
|
|
return false
|
|
}
|
|
mode, ok := v.Value().(string)
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
// Per NM's documentation, it only does split-DNS when it's
|
|
// programming dnsmasq or systemd-resolved. All other modes are
|
|
// primary-only.
|
|
return mode == "dnsmasq" || mode == "systemd-resolved"
|
|
}
|
|
|
|
func (m *nmManager) GetBaseConfig() (OSConfig, error) {
|
|
conn, err := dbus.SystemBus()
|
|
if err != nil {
|
|
return OSConfig{}, err
|
|
}
|
|
|
|
nm := conn.Object("org.freedesktop.NetworkManager", dbus.ObjectPath("/org/freedesktop/NetworkManager/DnsManager"))
|
|
v, err := nm.GetProperty("org.freedesktop.NetworkManager.DnsManager.Configuration")
|
|
if err != nil {
|
|
return OSConfig{}, err
|
|
}
|
|
cfgs, ok := v.Value().([]map[string]dbus.Variant)
|
|
if !ok {
|
|
return OSConfig{}, fmt.Errorf("unexpected NM config type %T", v.Value())
|
|
}
|
|
|
|
if len(cfgs) == 0 {
|
|
return OSConfig{}, nil
|
|
}
|
|
|
|
type dnsPrio struct {
|
|
resolvers []netip.Addr
|
|
domains []string
|
|
priority int32
|
|
}
|
|
order := make([]dnsPrio, 0, len(cfgs)-1)
|
|
|
|
for _, cfg := range cfgs {
|
|
if name, ok := cfg["interface"]; ok {
|
|
if s, ok := name.Value().(string); ok && s == m.interfaceName {
|
|
// Config for the tailscale interface, skip.
|
|
continue
|
|
}
|
|
}
|
|
|
|
var p dnsPrio
|
|
|
|
if v, ok := cfg["nameservers"]; ok {
|
|
if ips, ok := v.Value().([]string); ok {
|
|
for _, s := range ips {
|
|
ip, err := netip.ParseAddr(s)
|
|
if err != nil {
|
|
// hmm, what do? Shouldn't really happen.
|
|
continue
|
|
}
|
|
p.resolvers = append(p.resolvers, ip)
|
|
}
|
|
}
|
|
}
|
|
if v, ok := cfg["domains"]; ok {
|
|
if domains, ok := v.Value().([]string); ok {
|
|
p.domains = domains
|
|
}
|
|
}
|
|
if v, ok := cfg["priority"]; ok {
|
|
if prio, ok := v.Value().(int32); ok {
|
|
p.priority = prio
|
|
}
|
|
}
|
|
|
|
order = append(order, p)
|
|
}
|
|
|
|
sort.Slice(order, func(i, j int) bool {
|
|
return order[i].priority < order[j].priority
|
|
})
|
|
|
|
var (
|
|
ret OSConfig
|
|
seenResolvers = map[netip.Addr]bool{}
|
|
seenSearch = map[string]bool{}
|
|
)
|
|
|
|
for _, cfg := range order {
|
|
for _, resolver := range cfg.resolvers {
|
|
if seenResolvers[resolver] {
|
|
continue
|
|
}
|
|
ret.Nameservers = append(ret.Nameservers, resolver)
|
|
seenResolvers[resolver] = true
|
|
}
|
|
for _, dom := range cfg.domains {
|
|
if seenSearch[dom] {
|
|
continue
|
|
}
|
|
fqdn, err := dnsname.ToFQDN(dom)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
ret.SearchDomains = append(ret.SearchDomains, fqdn)
|
|
seenSearch[dom] = true
|
|
}
|
|
if cfg.priority < 0 {
|
|
// exclusive configurations preempt all other
|
|
// configurations, so we're done.
|
|
break
|
|
}
|
|
}
|
|
|
|
return ret, nil
|
|
}
|
|
|
|
func (m *nmManager) Close() error {
|
|
// No need to do anything on close, NetworkManager will delete our
|
|
// settings when the tailscale interface goes away.
|
|
return nil
|
|
}
|
|
|
|
func nmVersionBetween(first, last string) (bool, error) {
|
|
conn, err := dbus.SystemBus()
|
|
if err != nil {
|
|
// DBus probably not running.
|
|
return false, err
|
|
}
|
|
|
|
nm := conn.Object("org.freedesktop.NetworkManager", dbus.ObjectPath("/org/freedesktop/NetworkManager"))
|
|
v, err := nm.GetProperty("org.freedesktop.NetworkManager.Version")
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
version, ok := v.Value().(string)
|
|
if !ok {
|
|
return false, fmt.Errorf("unexpected type %T for NM version", v.Value())
|
|
}
|
|
|
|
outside := cmpver.Compare(version, first) < 0 || cmpver.Compare(version, last) > 0
|
|
return !outside, nil
|
|
}
|
|
|
|
func nmIsUsingResolved() error {
|
|
conn, err := dbus.SystemBus()
|
|
if err != nil {
|
|
// DBus probably not running.
|
|
return err
|
|
}
|
|
|
|
nm := conn.Object("org.freedesktop.NetworkManager", dbus.ObjectPath("/org/freedesktop/NetworkManager/DnsManager"))
|
|
v, err := nm.GetProperty("org.freedesktop.NetworkManager.DnsManager.Mode")
|
|
if err != nil {
|
|
return fmt.Errorf("getting NM mode: %w", err)
|
|
}
|
|
mode, ok := v.Value().(string)
|
|
if !ok {
|
|
return fmt.Errorf("unexpected type %T for NM DNS mode", v.Value())
|
|
}
|
|
if mode != "systemd-resolved" {
|
|
return errors.New("NetworkManager is not using systemd-resolved for DNS")
|
|
}
|
|
return nil
|
|
}
|