mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-13 01:11:55 -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>
162 lines
5.1 KiB
Go
162 lines
5.1 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package router presents an interface to manipulate the host network
|
|
// stack's state.
|
|
package router
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net/netip"
|
|
"reflect"
|
|
"runtime"
|
|
"slices"
|
|
|
|
"github.com/tailscale/wireguard-go/tun"
|
|
"tailscale.com/feature"
|
|
"tailscale.com/feature/buildfeatures"
|
|
"tailscale.com/health"
|
|
"tailscale.com/net/netmon"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/types/preftype"
|
|
"tailscale.com/util/eventbus"
|
|
)
|
|
|
|
// Router is responsible for managing the system network stack.
|
|
//
|
|
// There is typically only one instance of this interface per process.
|
|
type Router interface {
|
|
// Up brings the router up.
|
|
Up() error
|
|
|
|
// Set updates the OS network stack with a new Config. It may be
|
|
// called multiple times with identical Configs, which the
|
|
// implementation should handle gracefully.
|
|
Set(*Config) error
|
|
|
|
// Close closes the router.
|
|
Close() error
|
|
}
|
|
|
|
// NewOpts are the options passed to the NewUserspaceRouter hook.
|
|
type NewOpts struct {
|
|
Logf logger.Logf // required
|
|
Tun tun.Device // required
|
|
NetMon *netmon.Monitor // optional
|
|
Health *health.Tracker // required (but TODO: support optional later)
|
|
Bus *eventbus.Bus // required
|
|
}
|
|
|
|
// PortUpdate is an eventbus value, reporting the port and address family
|
|
// magicsock is currently listening on, so it can be threaded through firewalls
|
|
// and such.
|
|
type PortUpdate struct {
|
|
UDPPort uint16
|
|
EndpointNetwork string // either "udp4" or "udp6".
|
|
}
|
|
|
|
// HookNewUserspaceRouter is the registration point for router implementations
|
|
// to register a constructor for userspace routers. It's meant for implementations
|
|
// in wgengine/router/osrouter.
|
|
//
|
|
// If no implementation is registered, [New] will return an error.
|
|
var HookNewUserspaceRouter feature.Hook[func(NewOpts) (Router, error)]
|
|
|
|
// New returns a new Router for the current platform, using the
|
|
// provided tun device.
|
|
//
|
|
// If netMon is nil, it's not used. It's currently (2021-07-20) only
|
|
// used on Linux in some situations.
|
|
func New(logf logger.Logf, tundev tun.Device, netMon *netmon.Monitor,
|
|
health *health.Tracker, bus *eventbus.Bus,
|
|
) (Router, error) {
|
|
logf = logger.WithPrefix(logf, "router: ")
|
|
if f, ok := HookNewUserspaceRouter.GetOk(); ok {
|
|
return f(NewOpts{
|
|
Logf: logf,
|
|
Tun: tundev,
|
|
NetMon: netMon,
|
|
Health: health,
|
|
Bus: bus,
|
|
})
|
|
}
|
|
if !buildfeatures.HasOSRouter {
|
|
return nil, errors.New("router: tailscaled was built without OSRouter support")
|
|
}
|
|
return nil, fmt.Errorf("unsupported OS %q", runtime.GOOS)
|
|
}
|
|
|
|
// HookCleanUp is the optional registration point for router implementations
|
|
// to register a cleanup function for [CleanUp] to use. It's meant for
|
|
// implementations in wgengine/router/osrouter.
|
|
var HookCleanUp feature.Hook[func(_ logger.Logf, _ *netmon.Monitor, ifName string)]
|
|
|
|
// CleanUp restores the system network configuration to its original state
|
|
// in case the Tailscale daemon terminated without closing the router.
|
|
// No other state needs to be instantiated before this runs.
|
|
func CleanUp(logf logger.Logf, netMon *netmon.Monitor, interfaceName string) {
|
|
if f, ok := HookCleanUp.GetOk(); ok {
|
|
f(logf, netMon, interfaceName)
|
|
}
|
|
}
|
|
|
|
// Config is the subset of Tailscale configuration that is relevant to
|
|
// the OS's network stack.
|
|
type Config struct {
|
|
// LocalAddrs are the address(es) for this node. This is
|
|
// typically one IPv4/32 (the 100.x.y.z CGNAT) and one
|
|
// IPv6/128 (Tailscale ULA).
|
|
LocalAddrs []netip.Prefix
|
|
|
|
// Routes are the routes that point into the Tailscale
|
|
// interface. These are the /32 and /128 routes to peers, as
|
|
// well as any other subnets that peers are advertising and
|
|
// this node has chosen to use.
|
|
Routes []netip.Prefix
|
|
|
|
// LocalRoutes are the routes that should not be routed through Tailscale.
|
|
// There are no priorities set in how these routes are added, normal
|
|
// routing rules apply.
|
|
LocalRoutes []netip.Prefix
|
|
|
|
// NewMTU is currently only used by the MacOS network extension
|
|
// app to set the MTU of the tun in the router configuration
|
|
// callback. If zero, the MTU is unchanged.
|
|
NewMTU int
|
|
|
|
// SubnetRoutes is the list of subnets that this node is
|
|
// advertising to other Tailscale nodes.
|
|
// As of 2023-10-11, this field is only used for network
|
|
// flow logging and is otherwise ignored.
|
|
SubnetRoutes []netip.Prefix
|
|
|
|
// Linux-only things below, ignored on other platforms.
|
|
SNATSubnetRoutes bool // SNAT traffic to local subnets
|
|
StatefulFiltering bool // Apply stateful filtering to inbound connections
|
|
NetfilterMode preftype.NetfilterMode // how much to manage netfilter rules
|
|
NetfilterKind string // what kind of netfilter to use ("nftables", "iptables", or "" to auto-detect)
|
|
}
|
|
|
|
func (a *Config) Equal(b *Config) bool {
|
|
if a == nil && b == nil {
|
|
return true
|
|
}
|
|
if (a == nil) != (b == nil) {
|
|
return false
|
|
}
|
|
return reflect.DeepEqual(a, b)
|
|
}
|
|
|
|
func (c *Config) Clone() *Config {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
c2 := *c
|
|
c2.LocalAddrs = slices.Clone(c.LocalAddrs)
|
|
c2.Routes = slices.Clone(c.Routes)
|
|
c2.LocalRoutes = slices.Clone(c.LocalRoutes)
|
|
c2.SubnetRoutes = slices.Clone(c.SubnetRoutes)
|
|
return &c2
|
|
}
|