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>
312 lines
8.9 KiB
Go
312 lines
8.9 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !android
|
|
|
|
package netmon
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
"time"
|
|
|
|
"github.com/jsimonetti/rtnetlink"
|
|
"github.com/mdlayher/netlink"
|
|
"golang.org/x/sys/unix"
|
|
"tailscale.com/envknob"
|
|
"tailscale.com/net/tsaddr"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/util/eventbus"
|
|
)
|
|
|
|
var debugNetlinkMessages = envknob.RegisterBool("TS_DEBUG_NETLINK")
|
|
|
|
// unspecifiedMessage is a minimal message implementation that should not
|
|
// be ignored. In general, OS-specific implementations should use better
|
|
// types and avoid this if they can.
|
|
type unspecifiedMessage struct{}
|
|
|
|
func (unspecifiedMessage) ignore() bool { return false }
|
|
|
|
// RuleDeleted reports that one of Tailscale's policy routing rules
|
|
// was deleted.
|
|
type RuleDeleted struct {
|
|
// Table is the table number that the deleted rule referenced.
|
|
Table uint8
|
|
// Priority is the lookup priority of the deleted rule.
|
|
Priority uint32
|
|
}
|
|
|
|
// nlConn wraps a *netlink.Conn and returns a monitor.Message
|
|
// instead of a netlink.Message. Currently, messages are discarded,
|
|
// but down the line, when messages trigger different logic depending
|
|
// on the type of event, this provides the capability of handling
|
|
// each architecture-specific message in a generic fashion.
|
|
type nlConn struct {
|
|
busClient *eventbus.Client
|
|
rulesDeleted *eventbus.Publisher[RuleDeleted]
|
|
logf logger.Logf
|
|
conn *netlink.Conn
|
|
buffered []netlink.Message
|
|
|
|
// addrCache maps interface indices to a set of addresses, and is
|
|
// used to suppress duplicate RTM_NEWADDR messages. It is populated
|
|
// by RTM_NEWADDR messages and de-populated by RTM_DELADDR. See
|
|
// issue #4282.
|
|
addrCache map[uint32]map[netip.Addr]bool
|
|
}
|
|
|
|
func newOSMon(bus *eventbus.Bus, logf logger.Logf, m *Monitor) (osMon, error) {
|
|
conn, err := netlink.Dial(unix.NETLINK_ROUTE, &netlink.Config{
|
|
// Routes get us most of the events of interest, but we need
|
|
// address as well to cover things like DHCP deciding to give
|
|
// us a new address upon renewal - routing wouldn't change,
|
|
// but all reachability would.
|
|
Groups: unix.RTMGRP_IPV4_IFADDR | unix.RTMGRP_IPV6_IFADDR |
|
|
unix.RTMGRP_IPV4_ROUTE | unix.RTMGRP_IPV6_ROUTE |
|
|
unix.RTMGRP_IPV4_RULE, // no IPV6_RULE in x/sys/unix
|
|
})
|
|
if err != nil {
|
|
// Google Cloud Run does not implement NETLINK_ROUTE RTMGRP support
|
|
logf("monitor_linux: AF_NETLINK RTMGRP failed, falling back to polling")
|
|
return newPollingMon(logf, m)
|
|
}
|
|
client := bus.Client("netmon-iprules")
|
|
return &nlConn{
|
|
busClient: client,
|
|
rulesDeleted: eventbus.Publish[RuleDeleted](client),
|
|
logf: logf,
|
|
conn: conn,
|
|
addrCache: make(map[uint32]map[netip.Addr]bool),
|
|
}, nil
|
|
}
|
|
|
|
func (c *nlConn) Close() error {
|
|
c.busClient.Close()
|
|
return c.conn.Close()
|
|
}
|
|
|
|
func (c *nlConn) Receive() (message, error) {
|
|
if len(c.buffered) == 0 {
|
|
var err error
|
|
c.buffered, err = c.conn.Receive()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(c.buffered) == 0 {
|
|
// Unexpected. Not seen in wild, but sleep defensively.
|
|
time.Sleep(time.Second)
|
|
return ignoreMessage{}, nil
|
|
}
|
|
}
|
|
msg := c.buffered[0]
|
|
c.buffered = c.buffered[1:]
|
|
|
|
// See https://github.com/torvalds/linux/blob/master/include/uapi/linux/rtnetlink.h
|
|
// And https://man7.org/linux/man-pages/man7/rtnetlink.7.html
|
|
switch msg.Header.Type {
|
|
case unix.RTM_NEWADDR, unix.RTM_DELADDR:
|
|
var rmsg rtnetlink.AddressMessage
|
|
if err := rmsg.UnmarshalBinary(msg.Data); err != nil {
|
|
c.logf("failed to parse type %v: %v", msg.Header.Type, err)
|
|
return unspecifiedMessage{}, nil
|
|
}
|
|
|
|
nip := netaddrIP(rmsg.Attributes.Address)
|
|
|
|
if debugNetlinkMessages() {
|
|
typ := "RTM_NEWADDR"
|
|
if msg.Header.Type == unix.RTM_DELADDR {
|
|
typ = "RTM_DELADDR"
|
|
}
|
|
|
|
// label attributes are seemingly only populated for IPv4 addresses in the wild.
|
|
label := rmsg.Attributes.Label
|
|
if label == "" {
|
|
itf, err := net.InterfaceByIndex(int(rmsg.Index))
|
|
if err == nil {
|
|
label = itf.Name
|
|
}
|
|
}
|
|
|
|
c.logf("%s: %s(%d) %s / %s", typ, label, rmsg.Index, rmsg.Attributes.Address, rmsg.Attributes.Local)
|
|
}
|
|
|
|
addrs := c.addrCache[rmsg.Index]
|
|
|
|
// Ignore duplicate RTM_NEWADDR messages using c.addrCache to
|
|
// detect them. See nlConn.addrcache and issue #4282.
|
|
if msg.Header.Type == unix.RTM_NEWADDR {
|
|
if addrs == nil {
|
|
addrs = make(map[netip.Addr]bool)
|
|
c.addrCache[rmsg.Index] = addrs
|
|
}
|
|
|
|
if addrs[nip] {
|
|
if debugNetlinkMessages() {
|
|
c.logf("ignored duplicate RTM_NEWADDR for %s", nip)
|
|
}
|
|
return ignoreMessage{}, nil
|
|
}
|
|
|
|
addrs[nip] = true
|
|
} else { // msg.Header.Type == unix.RTM_DELADDR
|
|
if addrs != nil {
|
|
delete(addrs, nip)
|
|
}
|
|
|
|
if len(addrs) == 0 {
|
|
delete(c.addrCache, rmsg.Index)
|
|
}
|
|
}
|
|
|
|
nam := &newAddrMessage{
|
|
IfIndex: rmsg.Index,
|
|
Addr: nip,
|
|
Delete: msg.Header.Type == unix.RTM_DELADDR,
|
|
}
|
|
if debugNetlinkMessages() {
|
|
c.logf("%+v", nam)
|
|
}
|
|
return nam, nil
|
|
case unix.RTM_NEWROUTE, unix.RTM_DELROUTE:
|
|
typeStr := "RTM_NEWROUTE"
|
|
if msg.Header.Type == unix.RTM_DELROUTE {
|
|
typeStr = "RTM_DELROUTE"
|
|
}
|
|
var rmsg rtnetlink.RouteMessage
|
|
if err := rmsg.UnmarshalBinary(msg.Data); err != nil {
|
|
c.logf("%s: failed to parse: %v", typeStr, err)
|
|
return unspecifiedMessage{}, nil
|
|
}
|
|
src := netaddrIPPrefix(rmsg.Attributes.Src, rmsg.SrcLength)
|
|
dst := netaddrIPPrefix(rmsg.Attributes.Dst, rmsg.DstLength)
|
|
gw := netaddrIP(rmsg.Attributes.Gateway)
|
|
|
|
if msg.Header.Type == unix.RTM_NEWROUTE &&
|
|
(rmsg.Attributes.Table == 255 || rmsg.Attributes.Table == 254) &&
|
|
(dst.Addr().IsMulticast() || dst.Addr().IsLinkLocalUnicast()) {
|
|
|
|
if debugNetlinkMessages() {
|
|
c.logf("%s ignored", typeStr)
|
|
}
|
|
|
|
// Normal Linux route changes on new interface coming up; don't log or react.
|
|
return ignoreMessage{}, nil
|
|
}
|
|
|
|
if rmsg.Table == tsTable && dst.IsSingleIP() {
|
|
// Don't log. Spammy and normal to see a bunch of these on start-up,
|
|
// which we make ourselves.
|
|
} else if tsaddr.IsTailscaleIP(dst.Addr()) {
|
|
// Verbose only.
|
|
c.logf("%s: [v1] src=%v, dst=%v, gw=%v, outif=%v, table=%v", typeStr,
|
|
condNetAddrPrefix(src), condNetAddrPrefix(dst), condNetAddrIP(gw),
|
|
rmsg.Attributes.OutIface, rmsg.Attributes.Table)
|
|
} else {
|
|
c.logf("%s: src=%v, dst=%v, gw=%v, outif=%v, table=%v", typeStr,
|
|
condNetAddrPrefix(src), condNetAddrPrefix(dst), condNetAddrIP(gw),
|
|
rmsg.Attributes.OutIface, rmsg.Attributes.Table)
|
|
}
|
|
if msg.Header.Type == unix.RTM_DELROUTE {
|
|
// Just logging it for now.
|
|
// (Debugging https://github.com/tailscale/tailscale/issues/643)
|
|
return unspecifiedMessage{}, nil
|
|
}
|
|
|
|
nrm := &newRouteMessage{
|
|
Table: rmsg.Table,
|
|
Src: src,
|
|
Dst: dst,
|
|
Gateway: gw,
|
|
}
|
|
if debugNetlinkMessages() {
|
|
c.logf("%+v", nrm)
|
|
}
|
|
return nrm, nil
|
|
case unix.RTM_NEWRULE:
|
|
// Probably ourselves adding it.
|
|
return ignoreMessage{}, nil
|
|
case unix.RTM_DELRULE:
|
|
// For https://github.com/tailscale/tailscale/issues/1591 where
|
|
// systemd-networkd deletes our rules.
|
|
var rmsg rtnetlink.RouteMessage
|
|
err := rmsg.UnmarshalBinary(msg.Data)
|
|
if err != nil {
|
|
c.logf("ip rule deleted; failed to parse netlink message: %v", err)
|
|
} else {
|
|
c.logf("ip rule deleted: %+v", rmsg)
|
|
// On `ip -4 rule del pref 5210 table main`, logs:
|
|
// monitor: ip rule deleted: {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:254 Protocol:0 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:<nil> Gateway:<nil> OutIface:0 Priority:5210 Table:254 Mark:4294967295 Expires:<nil> Metrics:<nil> Multipath:[]}}
|
|
}
|
|
rd := RuleDeleted{
|
|
Table: rmsg.Table,
|
|
Priority: rmsg.Attributes.Priority,
|
|
}
|
|
c.rulesDeleted.Publish(rd)
|
|
if debugNetlinkMessages() {
|
|
c.logf("%+v", rd)
|
|
}
|
|
return ignoreMessage{}, nil
|
|
case unix.RTM_NEWLINK, unix.RTM_DELLINK:
|
|
// This is an unhandled message, but don't print an error.
|
|
// See https://github.com/tailscale/tailscale/issues/6806
|
|
return unspecifiedMessage{}, nil
|
|
default:
|
|
c.logf("unhandled netlink msg type %+v, %q", msg.Header, msg.Data)
|
|
return unspecifiedMessage{}, nil
|
|
}
|
|
}
|
|
|
|
func netaddrIP(std net.IP) netip.Addr {
|
|
ip, _ := netip.AddrFromSlice(std)
|
|
return ip.Unmap()
|
|
}
|
|
|
|
func netaddrIPPrefix(std net.IP, bits uint8) netip.Prefix {
|
|
ip, _ := netip.AddrFromSlice(std)
|
|
return netip.PrefixFrom(ip.Unmap(), int(bits))
|
|
}
|
|
|
|
func condNetAddrPrefix(ipp netip.Prefix) string {
|
|
if !ipp.Addr().IsValid() {
|
|
return ""
|
|
}
|
|
return ipp.String()
|
|
}
|
|
|
|
func condNetAddrIP(ip netip.Addr) string {
|
|
if !ip.IsValid() {
|
|
return ""
|
|
}
|
|
return ip.String()
|
|
}
|
|
|
|
// newRouteMessage is a message for a new route being added.
|
|
type newRouteMessage struct {
|
|
Src, Dst netip.Prefix
|
|
Gateway netip.Addr
|
|
Table uint8
|
|
}
|
|
|
|
const tsTable = 52
|
|
|
|
func (m *newRouteMessage) ignore() bool {
|
|
return m.Table == tsTable || tsaddr.IsTailscaleIP(m.Dst.Addr())
|
|
}
|
|
|
|
// newAddrMessage is a message for a new address being added.
|
|
type newAddrMessage struct {
|
|
Delete bool
|
|
Addr netip.Addr
|
|
IfIndex uint32 // interface index
|
|
}
|
|
|
|
func (m *newAddrMessage) ignore() bool {
|
|
return tsaddr.IsTailscaleIP(m.Addr)
|
|
}
|
|
|
|
type ignoreMessage struct{}
|
|
|
|
func (ignoreMessage) ignore() bool { return true }
|