mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-13 09:21:47 -05: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>
230 lines
5.7 KiB
Go
230 lines
5.7 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build linux && !android
|
|
|
|
package routetable
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"net/netip"
|
|
"strconv"
|
|
|
|
"github.com/tailscale/netlink"
|
|
"golang.org/x/sys/unix"
|
|
"tailscale.com/net/netaddr"
|
|
"tailscale.com/net/netmon"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
// RouteEntryLinux is the structure that makes up the Sys field of the
|
|
// RouteEntry structure.
|
|
type RouteEntryLinux struct {
|
|
// Type is the raw type of the route.
|
|
Type int
|
|
// Table is the routing table index of this route.
|
|
Table int
|
|
// Src is the source of the route (if any).
|
|
Src netip.Addr
|
|
// Proto describes the source of the route--i.e. what caused this route
|
|
// to be added to the route table.
|
|
Proto netlink.RouteProtocol
|
|
// Priority is the route's priority.
|
|
Priority int
|
|
// Scope is the route's scope.
|
|
Scope int
|
|
// InputInterfaceIdx is the input interface index.
|
|
InputInterfaceIdx int
|
|
// InputInterfaceName is the input interface name (if available).
|
|
InputInterfaceName string
|
|
}
|
|
|
|
// Format implements the fmt.Formatter interface.
|
|
func (r RouteEntryLinux) Format(f fmt.State, verb rune) {
|
|
logger.ArgWriter(func(w *bufio.Writer) {
|
|
// TODO(andrew): should we skip printing anything if type is unicast?
|
|
fmt.Fprintf(w, "{Type: %s", r.TypeName())
|
|
|
|
// Match 'ip route' behaviour when printing these fields
|
|
if r.Table != unix.RT_TABLE_MAIN {
|
|
fmt.Fprintf(w, ", Table: %s", r.TableName())
|
|
}
|
|
if r.Proto != unix.RTPROT_BOOT {
|
|
fmt.Fprintf(w, ", Proto: %s", r.Proto)
|
|
}
|
|
|
|
if r.Src.IsValid() {
|
|
fmt.Fprintf(w, ", Src: %s", r.Src)
|
|
}
|
|
if r.Priority != 0 {
|
|
fmt.Fprintf(w, ", Priority: %d", r.Priority)
|
|
}
|
|
if r.Scope != unix.RT_SCOPE_UNIVERSE {
|
|
fmt.Fprintf(w, ", Scope: %s", r.ScopeName())
|
|
}
|
|
if r.InputInterfaceName != "" {
|
|
fmt.Fprintf(w, ", InputInterfaceName: %s", r.InputInterfaceName)
|
|
} else if r.InputInterfaceIdx != 0 {
|
|
fmt.Fprintf(w, ", InputInterfaceIdx: %d", r.InputInterfaceIdx)
|
|
}
|
|
w.WriteString("}")
|
|
}).Format(f, verb)
|
|
}
|
|
|
|
// TypeName returns the string representation of this route's Type.
|
|
func (r RouteEntryLinux) TypeName() string {
|
|
switch r.Type {
|
|
case unix.RTN_UNSPEC:
|
|
return "none"
|
|
case unix.RTN_UNICAST:
|
|
return "unicast"
|
|
case unix.RTN_LOCAL:
|
|
return "local"
|
|
case unix.RTN_BROADCAST:
|
|
return "broadcast"
|
|
case unix.RTN_ANYCAST:
|
|
return "anycast"
|
|
case unix.RTN_MULTICAST:
|
|
return "multicast"
|
|
case unix.RTN_BLACKHOLE:
|
|
return "blackhole"
|
|
case unix.RTN_UNREACHABLE:
|
|
return "unreachable"
|
|
case unix.RTN_PROHIBIT:
|
|
return "prohibit"
|
|
case unix.RTN_THROW:
|
|
return "throw"
|
|
case unix.RTN_NAT:
|
|
return "nat"
|
|
case unix.RTN_XRESOLVE:
|
|
return "xresolve"
|
|
default:
|
|
return strconv.Itoa(r.Type)
|
|
}
|
|
}
|
|
|
|
// TableName returns the string representation of this route's Table.
|
|
func (r RouteEntryLinux) TableName() string {
|
|
switch r.Table {
|
|
case unix.RT_TABLE_DEFAULT:
|
|
return "default"
|
|
case unix.RT_TABLE_MAIN:
|
|
return "main"
|
|
case unix.RT_TABLE_LOCAL:
|
|
return "local"
|
|
default:
|
|
return strconv.Itoa(r.Table)
|
|
}
|
|
}
|
|
|
|
// ScopeName returns the string representation of this route's Scope.
|
|
func (r RouteEntryLinux) ScopeName() string {
|
|
switch r.Scope {
|
|
case unix.RT_SCOPE_UNIVERSE:
|
|
return "global"
|
|
case unix.RT_SCOPE_NOWHERE:
|
|
return "nowhere"
|
|
case unix.RT_SCOPE_HOST:
|
|
return "host"
|
|
case unix.RT_SCOPE_LINK:
|
|
return "link"
|
|
case unix.RT_SCOPE_SITE:
|
|
return "site"
|
|
default:
|
|
return strconv.Itoa(r.Scope)
|
|
}
|
|
}
|
|
|
|
// Get returns route entries from the system route table, limited to at most
|
|
// max results.
|
|
func Get(max int) ([]RouteEntry, error) {
|
|
// Fetching the list of interfaces can race with fetching our route
|
|
// table, but we do it anyway since it's helpful for debugging.
|
|
ifs, err := netmon.GetInterfaceList()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ifsByIdx := make(map[int]netmon.Interface)
|
|
for _, iif := range ifs {
|
|
ifsByIdx[iif.Index] = iif
|
|
}
|
|
|
|
filter := &netlink.Route{}
|
|
routes, err := netlink.RouteListFiltered(netlink.FAMILY_ALL, filter, netlink.RT_FILTER_TABLE)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var ret []RouteEntry
|
|
for _, route := range routes {
|
|
if route.Family != netlink.FAMILY_V4 && route.Family != netlink.FAMILY_V6 {
|
|
continue
|
|
}
|
|
|
|
re := RouteEntry{}
|
|
if route.Family == netlink.FAMILY_V4 {
|
|
re.Family = 4
|
|
} else {
|
|
re.Family = 6
|
|
}
|
|
switch route.Type {
|
|
case unix.RTN_UNSPEC:
|
|
re.Type = RouteTypeUnspecified
|
|
case unix.RTN_UNICAST:
|
|
re.Type = RouteTypeUnicast
|
|
case unix.RTN_LOCAL:
|
|
re.Type = RouteTypeLocal
|
|
case unix.RTN_BROADCAST:
|
|
re.Type = RouteTypeBroadcast
|
|
case unix.RTN_MULTICAST:
|
|
re.Type = RouteTypeMulticast
|
|
default:
|
|
re.Type = RouteTypeOther
|
|
}
|
|
if route.Dst != nil {
|
|
if d, ok := netaddr.FromStdIPNet(route.Dst); ok {
|
|
re.Dst = RouteDestination{Prefix: d}
|
|
}
|
|
} else if route.Family == netlink.FAMILY_V4 {
|
|
re.Dst = RouteDestination{Prefix: netip.PrefixFrom(netip.IPv4Unspecified(), 0)}
|
|
} else {
|
|
re.Dst = RouteDestination{Prefix: netip.PrefixFrom(netip.IPv6Unspecified(), 0)}
|
|
}
|
|
if gw := route.Gw; gw != nil {
|
|
if gwa, ok := netip.AddrFromSlice(gw); ok {
|
|
re.Gateway = gwa
|
|
}
|
|
}
|
|
if outif, ok := ifsByIdx[route.LinkIndex]; ok {
|
|
re.Interface = outif.Name
|
|
} else if route.LinkIndex > 0 {
|
|
re.Interface = fmt.Sprintf("link#%d", route.LinkIndex)
|
|
}
|
|
reSys := RouteEntryLinux{
|
|
Type: route.Type,
|
|
Table: route.Table,
|
|
Proto: route.Protocol,
|
|
Priority: route.Priority,
|
|
Scope: int(route.Scope),
|
|
InputInterfaceIdx: route.ILinkIndex,
|
|
}
|
|
if src, ok := netip.AddrFromSlice(route.Src); ok {
|
|
reSys.Src = src
|
|
}
|
|
if iif, ok := ifsByIdx[route.ILinkIndex]; ok {
|
|
reSys.InputInterfaceName = iif.Name
|
|
}
|
|
|
|
re.Sys = reSys
|
|
ret = append(ret, re)
|
|
|
|
// Stop after we've reached the maximum number of routes
|
|
if len(ret) == max {
|
|
break
|
|
}
|
|
}
|
|
return ret, nil
|
|
}
|