mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-11 10:41:43 +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>
330 lines
10 KiB
Go
330 lines
10 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build linux
|
|
|
|
package linuxfw
|
|
|
|
import (
|
|
"net/netip"
|
|
"testing"
|
|
)
|
|
|
|
func newFakeIPTablesRunner() *iptablesRunner {
|
|
return NewFakeIPTablesRunner().(*iptablesRunner)
|
|
}
|
|
|
|
func Test_iptablesRunner_EnsurePortMapRuleForSvc(t *testing.T) {
|
|
v4Addr := netip.MustParseAddr("10.0.0.4")
|
|
v6Addr := netip.MustParseAddr("fd7a:115c:a1e0::701:b62a")
|
|
testPM := PortMap{Protocol: "tcp", MatchPort: 4003, TargetPort: 80}
|
|
testPM2 := PortMap{Protocol: "udp", MatchPort: 4004, TargetPort: 53}
|
|
v4Rule := argsForPortMapRule("test-svc", "tailscale0", v4Addr, testPM)
|
|
tests := []struct {
|
|
name string
|
|
targetIP netip.Addr
|
|
svc string
|
|
pm PortMap
|
|
precreateSvcRules [][]string
|
|
}{
|
|
{
|
|
name: "pm_for_ipv4",
|
|
targetIP: v4Addr,
|
|
svc: "test-svc",
|
|
pm: testPM,
|
|
},
|
|
{
|
|
name: "pm_for_ipv6",
|
|
targetIP: v6Addr,
|
|
svc: "test-svc-2",
|
|
pm: testPM2,
|
|
},
|
|
{
|
|
name: "add_existing_rule",
|
|
targetIP: v4Addr,
|
|
svc: "test-svc",
|
|
pm: testPM,
|
|
precreateSvcRules: [][]string{v4Rule},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
iptr := newFakeIPTablesRunner()
|
|
table := iptr.getIPTByAddr(tt.targetIP)
|
|
for _, ruleset := range tt.precreateSvcRules {
|
|
mustPrecreatePortMapRule(t, ruleset, table)
|
|
}
|
|
if err := iptr.EnsurePortMapRuleForSvc(tt.svc, "tailscale0", tt.targetIP, tt.pm); err != nil {
|
|
t.Errorf("[unexpected error] iptablesRunner.EnsurePortMapRuleForSvc() = %v", err)
|
|
}
|
|
args := argsForPortMapRule(tt.svc, "tailscale0", tt.targetIP, tt.pm)
|
|
exists, err := table.Exists("nat", "PREROUTING", args...)
|
|
if err != nil {
|
|
t.Fatalf("error checking if rule exists: %v", err)
|
|
}
|
|
if !exists {
|
|
t.Errorf("expected rule was not created")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_iptablesRunner_DeletePortMapRuleForSvc(t *testing.T) {
|
|
v4Addr := netip.MustParseAddr("10.0.0.4")
|
|
v6Addr := netip.MustParseAddr("fd7a:115c:a1e0::701:b62a")
|
|
testPM := PortMap{Protocol: "tcp", MatchPort: 4003, TargetPort: 80}
|
|
v4Rule := argsForPortMapRule("test", "tailscale0", v4Addr, testPM)
|
|
v6Rule := argsForPortMapRule("test", "tailscale0", v6Addr, testPM)
|
|
|
|
tests := []struct {
|
|
name string
|
|
targetIP netip.Addr
|
|
svc string
|
|
pm PortMap
|
|
precreateSvcRules [][]string
|
|
}{
|
|
{
|
|
name: "multiple_rules_ipv4_deleted",
|
|
targetIP: v4Addr,
|
|
svc: "test",
|
|
pm: testPM,
|
|
precreateSvcRules: [][]string{v4Rule, v6Rule},
|
|
},
|
|
{
|
|
name: "multiple_rules_ipv6_deleted",
|
|
targetIP: v6Addr,
|
|
svc: "test",
|
|
pm: testPM,
|
|
precreateSvcRules: [][]string{v4Rule, v6Rule},
|
|
},
|
|
{
|
|
name: "non-existent_rule_deleted",
|
|
targetIP: v4Addr,
|
|
svc: "test",
|
|
pm: testPM,
|
|
precreateSvcRules: [][]string{v6Rule},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
iptr := newFakeIPTablesRunner()
|
|
table := iptr.getIPTByAddr(tt.targetIP)
|
|
for _, ruleset := range tt.precreateSvcRules {
|
|
mustPrecreatePortMapRule(t, ruleset, table)
|
|
}
|
|
if err := iptr.DeletePortMapRuleForSvc(tt.svc, "tailscale0", tt.targetIP, tt.pm); err != nil {
|
|
t.Errorf("iptablesRunner.DeletePortMapRuleForSvc() errored: %v ", err)
|
|
}
|
|
deletedRule := argsForPortMapRule(tt.svc, "tailscale0", tt.targetIP, tt.pm)
|
|
exists, err := table.Exists("nat", "PREROUTING", deletedRule...)
|
|
if err != nil {
|
|
t.Fatalf("error verifying that rule does not exist after deletion: %v", err)
|
|
}
|
|
if exists {
|
|
t.Errorf("portmap rule exists after deletion")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_iptablesRunner_DeleteSvc(t *testing.T) {
|
|
v4Addr := netip.MustParseAddr("10.0.0.4")
|
|
v6Addr := netip.MustParseAddr("fd7a:115c:a1e0::701:b62a")
|
|
testPM := PortMap{Protocol: "tcp", MatchPort: 4003, TargetPort: 80}
|
|
iptr := newFakeIPTablesRunner()
|
|
|
|
// create two rules that will consitute svc1
|
|
s1R1 := argsForPortMapRule("svc1", "tailscale0", v4Addr, testPM)
|
|
mustPrecreatePortMapRule(t, s1R1, iptr.getIPTByAddr(v4Addr))
|
|
s1R2 := argsForPortMapRule("svc1", "tailscale0", v6Addr, testPM)
|
|
mustPrecreatePortMapRule(t, s1R2, iptr.getIPTByAddr(v6Addr))
|
|
|
|
// create two rules that will consitute svc2
|
|
s2R1 := argsForPortMapRule("svc2", "tailscale0", v4Addr, testPM)
|
|
mustPrecreatePortMapRule(t, s2R1, iptr.getIPTByAddr(v4Addr))
|
|
s2R2 := argsForPortMapRule("svc2", "tailscale0", v6Addr, testPM)
|
|
mustPrecreatePortMapRule(t, s2R2, iptr.getIPTByAddr(v6Addr))
|
|
|
|
// delete svc1
|
|
if err := iptr.DeleteSvc("svc1", "tailscale0", []netip.Addr{v4Addr, v6Addr}, []PortMap{testPM}); err != nil {
|
|
t.Fatalf("error deleting service: %v", err)
|
|
}
|
|
|
|
// validate that svc1 no longer exists
|
|
svcMustNotExist(t, "svc1", map[string][]string{v4Addr.String(): s1R1, v6Addr.String(): s1R2}, iptr)
|
|
|
|
// validate that svc2 still exists
|
|
svcMustExist(t, "svc2", map[string][]string{v4Addr.String(): s2R1, v6Addr.String(): s2R2}, iptr)
|
|
}
|
|
|
|
func Test_iptablesRunner_EnsureDNATRuleForSvc(t *testing.T) {
|
|
v4OrigDst := netip.MustParseAddr("10.0.0.1")
|
|
v4Target := netip.MustParseAddr("10.0.0.2")
|
|
v6OrigDst := netip.MustParseAddr("fd7a:115c:a1e0::1")
|
|
v6Target := netip.MustParseAddr("fd7a:115c:a1e0::2")
|
|
v4Rule := argsForIngressRule("svc:test", v4OrigDst, v4Target)
|
|
|
|
tests := []struct {
|
|
name string
|
|
svcName string
|
|
origDst netip.Addr
|
|
targetIP netip.Addr
|
|
precreateSvcRules [][]string
|
|
}{
|
|
{
|
|
name: "dnat_for_ipv4",
|
|
svcName: "svc:test",
|
|
origDst: v4OrigDst,
|
|
targetIP: v4Target,
|
|
},
|
|
{
|
|
name: "dnat_for_ipv6",
|
|
svcName: "svc:test-2",
|
|
origDst: v6OrigDst,
|
|
targetIP: v6Target,
|
|
},
|
|
{
|
|
name: "add_existing_rule",
|
|
svcName: "svc:test",
|
|
origDst: v4OrigDst,
|
|
targetIP: v4Target,
|
|
precreateSvcRules: [][]string{v4Rule},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
iptr := newFakeIPTablesRunner()
|
|
table := iptr.getIPTByAddr(tt.targetIP)
|
|
for _, ruleset := range tt.precreateSvcRules {
|
|
mustPrecreateDNATRule(t, ruleset, table)
|
|
}
|
|
if err := iptr.EnsureDNATRuleForSvc(tt.svcName, tt.origDst, tt.targetIP); err != nil {
|
|
t.Errorf("[unexpected error] iptablesRunner.EnsureDNATRuleForSvc() = %v", err)
|
|
}
|
|
args := argsForIngressRule(tt.svcName, tt.origDst, tt.targetIP)
|
|
exists, err := table.Exists("nat", "PREROUTING", args...)
|
|
if err != nil {
|
|
t.Fatalf("error checking if rule exists: %v", err)
|
|
}
|
|
if !exists {
|
|
t.Errorf("expected rule was not created")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_iptablesRunner_DeleteDNATRuleForSvc(t *testing.T) {
|
|
v4OrigDst := netip.MustParseAddr("10.0.0.1")
|
|
v4Target := netip.MustParseAddr("10.0.0.2")
|
|
v6OrigDst := netip.MustParseAddr("fd7a:115c:a1e0::1")
|
|
v6Target := netip.MustParseAddr("fd7a:115c:a1e0::2")
|
|
v4Rule := argsForIngressRule("svc:test", v4OrigDst, v4Target)
|
|
v6Rule := argsForIngressRule("svc:test", v6OrigDst, v6Target)
|
|
|
|
tests := []struct {
|
|
name string
|
|
svcName string
|
|
origDst netip.Addr
|
|
targetIP netip.Addr
|
|
precreateSvcRules [][]string
|
|
}{
|
|
{
|
|
name: "multiple_rules_ipv4_deleted",
|
|
svcName: "svc:test",
|
|
origDst: v4OrigDst,
|
|
targetIP: v4Target,
|
|
precreateSvcRules: [][]string{v4Rule, v6Rule},
|
|
},
|
|
{
|
|
name: "multiple_rules_ipv6_deleted",
|
|
svcName: "svc:test",
|
|
origDst: v6OrigDst,
|
|
targetIP: v6Target,
|
|
precreateSvcRules: [][]string{v4Rule, v6Rule},
|
|
},
|
|
{
|
|
name: "non-existent_rule_deleted",
|
|
svcName: "svc:test",
|
|
origDst: v4OrigDst,
|
|
targetIP: v4Target,
|
|
precreateSvcRules: [][]string{v6Rule},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
iptr := newFakeIPTablesRunner()
|
|
table := iptr.getIPTByAddr(tt.targetIP)
|
|
for _, ruleset := range tt.precreateSvcRules {
|
|
mustPrecreateDNATRule(t, ruleset, table)
|
|
}
|
|
if err := iptr.DeleteDNATRuleForSvc(tt.svcName, tt.origDst, tt.targetIP); err != nil {
|
|
t.Errorf("iptablesRunner.DeleteDNATRuleForSvc() errored: %v ", err)
|
|
}
|
|
deletedRule := argsForIngressRule(tt.svcName, tt.origDst, tt.targetIP)
|
|
exists, err := table.Exists("nat", "PREROUTING", deletedRule...)
|
|
if err != nil {
|
|
t.Fatalf("error verifying that rule does not exist after deletion: %v", err)
|
|
}
|
|
if exists {
|
|
t.Errorf("DNAT rule exists after deletion")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func mustPrecreateDNATRule(t *testing.T, rules []string, table iptablesInterface) {
|
|
t.Helper()
|
|
exists, err := table.Exists("nat", "PREROUTING", rules...)
|
|
if err != nil {
|
|
t.Fatalf("error ensuring that nat PREROUTING table exists: %v", err)
|
|
}
|
|
if exists {
|
|
return
|
|
}
|
|
if err := table.Append("nat", "PREROUTING", rules...); err != nil {
|
|
t.Fatalf("error precreating DNAT rule: %v", err)
|
|
}
|
|
}
|
|
|
|
func svcMustExist(t *testing.T, svcName string, rules map[string][]string, iptr *iptablesRunner) {
|
|
t.Helper()
|
|
for dst, ruleset := range rules {
|
|
tip := netip.MustParseAddr(dst)
|
|
exists, err := iptr.getIPTByAddr(tip).Exists("nat", "PREROUTING", ruleset...)
|
|
if err != nil {
|
|
t.Fatalf("error checking whether %s exists: %v", svcName, err)
|
|
}
|
|
if !exists {
|
|
t.Fatalf("service %s should be deleted,but found rule for %s", svcName, dst)
|
|
}
|
|
}
|
|
}
|
|
|
|
func svcMustNotExist(t *testing.T, svcName string, rules map[string][]string, iptr *iptablesRunner) {
|
|
t.Helper()
|
|
for dst, ruleset := range rules {
|
|
tip := netip.MustParseAddr(dst)
|
|
exists, err := iptr.getIPTByAddr(tip).Exists("nat", "PREROUTING", ruleset...)
|
|
if err != nil {
|
|
t.Fatalf("error checking whether %s exists: %v", svcName, err)
|
|
}
|
|
if exists {
|
|
t.Fatalf("service %s should exist, but rule for %s is missing", svcName, dst)
|
|
}
|
|
}
|
|
}
|
|
|
|
func mustPrecreatePortMapRule(t *testing.T, rules []string, table iptablesInterface) {
|
|
t.Helper()
|
|
exists, err := table.Exists("nat", "PREROUTING", rules...)
|
|
if err != nil {
|
|
t.Fatalf("error ensuring that nat PREROUTING table exists: %v", err)
|
|
}
|
|
if exists {
|
|
return
|
|
}
|
|
if err := table.Append("nat", "PREROUTING", rules...); err != nil {
|
|
t.Fatalf("error precreating portmap rule: %v", err)
|
|
}
|
|
}
|