2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-01-19 20:05:17 +00:00
|
|
|
|
|
|
|
package netstack
|
|
|
|
|
|
|
|
import (
|
2022-09-21 23:07:57 +01:00
|
|
|
"fmt"
|
all: convert more code to use net/netip directly
perl -i -npe 's,netaddr.IPPrefixFrom,netip.PrefixFrom,' $(git grep -l -F netaddr.)
perl -i -npe 's,netaddr.IPPortFrom,netip.AddrPortFrom,' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPrefix,netip.Prefix,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPort,netip.AddrPort,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IP\b,netip.Addr,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPv6Raw\b,netip.AddrFrom16,g' $(git grep -l -F netaddr. )
goimports -w .
Then delete some stuff from the net/netaddr shim package which is no
longer neeed.
Updates #5162
Change-Id: Ia7a86893fe21c7e3ee1ec823e8aba288d4566cd8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-07-26 05:14:09 +01:00
|
|
|
"net/netip"
|
2022-01-19 20:05:17 +00:00
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
|
2022-11-08 21:09:23 +00:00
|
|
|
"tailscale.com/ipn"
|
|
|
|
"tailscale.com/ipn/ipnlocal"
|
|
|
|
"tailscale.com/ipn/store/mem"
|
2022-01-19 20:05:17 +00:00
|
|
|
"tailscale.com/net/packet"
|
2022-11-08 21:09:23 +00:00
|
|
|
"tailscale.com/net/tsaddr"
|
2022-01-19 20:05:17 +00:00
|
|
|
"tailscale.com/net/tsdial"
|
|
|
|
"tailscale.com/net/tstun"
|
2023-05-03 21:57:17 +01:00
|
|
|
"tailscale.com/tsd"
|
2023-01-19 14:48:39 +00:00
|
|
|
"tailscale.com/tstest"
|
2022-09-21 19:19:34 +01:00
|
|
|
"tailscale.com/types/ipproto"
|
2023-03-23 17:49:56 +00:00
|
|
|
"tailscale.com/types/logid"
|
2022-01-19 20:05:17 +00:00
|
|
|
"tailscale.com/wgengine"
|
|
|
|
"tailscale.com/wgengine/filter"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestInjectInboundLeak tests that injectInbound doesn't leak memory.
|
|
|
|
// See https://github.com/tailscale/tailscale/issues/3762
|
|
|
|
func TestInjectInboundLeak(t *testing.T) {
|
|
|
|
tunDev := tstun.NewFake()
|
|
|
|
dialer := new(tsdial.Dialer)
|
2022-03-16 23:27:57 +00:00
|
|
|
logf := func(format string, args ...any) {
|
2022-01-19 20:05:17 +00:00
|
|
|
if !t.Failed() {
|
|
|
|
t.Logf(format, args...)
|
|
|
|
}
|
|
|
|
}
|
2023-05-03 21:57:17 +01:00
|
|
|
sys := new(tsd.System)
|
2022-01-19 20:05:17 +00:00
|
|
|
eng, err := wgengine.NewUserspaceEngine(logf, wgengine.Config{
|
2023-05-03 21:57:17 +01:00
|
|
|
Tun: tunDev,
|
|
|
|
Dialer: dialer,
|
|
|
|
SetSubsystem: sys.Set,
|
2022-01-19 20:05:17 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer eng.Close()
|
2023-05-03 21:57:17 +01:00
|
|
|
sys.Set(eng)
|
|
|
|
sys.Set(new(mem.Store))
|
2022-01-19 20:05:17 +00:00
|
|
|
|
2023-05-03 21:57:17 +01:00
|
|
|
tunWrap := sys.Tun.Get()
|
|
|
|
lb, err := ipnlocal.NewLocalBackend(logf, logid.PublicID{}, sys, 0)
|
2022-12-23 18:22:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2024-02-02 18:45:32 +00:00
|
|
|
ns, err := Create(logf, tunWrap, eng, sys.MagicSock.Get(), dialer, sys.DNSManager.Get(), sys.ProxyMapper(), nil)
|
2022-01-19 20:05:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer ns.Close()
|
|
|
|
ns.ProcessLocalIPs = true
|
2022-12-23 18:22:39 +00:00
|
|
|
if err := ns.Start(lb); err != nil {
|
2022-01-19 20:05:17 +00:00
|
|
|
t.Fatalf("Start: %v", err)
|
|
|
|
}
|
all: convert more code to use net/netip directly
perl -i -npe 's,netaddr.IPPrefixFrom,netip.PrefixFrom,' $(git grep -l -F netaddr.)
perl -i -npe 's,netaddr.IPPortFrom,netip.AddrPortFrom,' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPrefix,netip.Prefix,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPPort,netip.AddrPort,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IP\b,netip.Addr,g' $(git grep -l -F netaddr. )
perl -i -npe 's,netaddr.IPv6Raw\b,netip.AddrFrom16,g' $(git grep -l -F netaddr. )
goimports -w .
Then delete some stuff from the net/netaddr shim package which is no
longer neeed.
Updates #5162
Change-Id: Ia7a86893fe21c7e3ee1ec823e8aba288d4566cd8
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-07-26 05:14:09 +01:00
|
|
|
ns.atomicIsLocalIPFunc.Store(func(netip.Addr) bool { return true })
|
2022-01-19 20:05:17 +00:00
|
|
|
|
|
|
|
pkt := &packet.Parsed{}
|
|
|
|
const N = 10_000
|
|
|
|
ms0 := getMemStats()
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
outcome := ns.injectInbound(pkt, tunWrap)
|
|
|
|
if outcome != filter.DropSilently {
|
|
|
|
t.Fatalf("got outcome %v; want DropSilently", outcome)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ms1 := getMemStats()
|
|
|
|
if grew := int64(ms1.HeapObjects) - int64(ms0.HeapObjects); grew >= N {
|
|
|
|
t.Fatalf("grew by %v (which is too much and >= the %v packets we sent)", grew, N)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMemStats() (ms runtime.MemStats) {
|
|
|
|
runtime.GC()
|
|
|
|
runtime.ReadMemStats(&ms)
|
|
|
|
return
|
|
|
|
}
|
2022-04-08 01:21:45 +01:00
|
|
|
|
2022-09-21 19:19:34 +01:00
|
|
|
func makeNetstack(t *testing.T, config func(*Impl)) *Impl {
|
|
|
|
tunDev := tstun.NewFake()
|
2023-05-03 21:57:17 +01:00
|
|
|
sys := &tsd.System{}
|
|
|
|
sys.Set(new(mem.Store))
|
2022-09-21 19:19:34 +01:00
|
|
|
dialer := new(tsdial.Dialer)
|
2023-01-19 14:48:39 +00:00
|
|
|
logf := tstest.WhileTestRunningLogger(t)
|
2022-09-21 19:19:34 +01:00
|
|
|
eng, err := wgengine.NewUserspaceEngine(logf, wgengine.Config{
|
2023-05-03 21:57:17 +01:00
|
|
|
Tun: tunDev,
|
|
|
|
Dialer: dialer,
|
|
|
|
SetSubsystem: sys.Set,
|
2022-09-21 19:19:34 +01:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
t.Cleanup(func() { eng.Close() })
|
2023-05-03 21:57:17 +01:00
|
|
|
sys.Set(eng)
|
2022-09-21 19:19:34 +01:00
|
|
|
|
2024-02-02 18:45:32 +00:00
|
|
|
ns, err := Create(logf, sys.Tun.Get(), eng, sys.MagicSock.Get(), dialer, sys.DNSManager.Get(), sys.ProxyMapper(), nil)
|
2022-09-21 19:19:34 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
t.Cleanup(func() { ns.Close() })
|
|
|
|
|
2023-05-03 21:57:17 +01:00
|
|
|
lb, err := ipnlocal.NewLocalBackend(logf, logid.PublicID{}, sys, 0)
|
2022-12-23 18:22:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("NewLocalBackend: %v", err)
|
|
|
|
}
|
2022-09-21 19:19:34 +01:00
|
|
|
|
2022-12-23 18:22:39 +00:00
|
|
|
ns.atomicIsLocalIPFunc.Store(func(netip.Addr) bool { return true })
|
|
|
|
if config != nil {
|
|
|
|
config(ns)
|
|
|
|
}
|
|
|
|
if err := ns.Start(lb); err != nil {
|
2022-09-21 19:19:34 +01:00
|
|
|
t.Fatalf("Start: %v", err)
|
|
|
|
}
|
|
|
|
return ns
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldHandlePing(t *testing.T) {
|
|
|
|
srcIP := netip.AddrFrom4([4]byte{1, 2, 3, 4})
|
|
|
|
|
|
|
|
t.Run("ICMP4", func(t *testing.T) {
|
|
|
|
dst := netip.MustParseAddr("5.6.7.8")
|
|
|
|
icmph := packet.ICMP4Header{
|
|
|
|
IP4Header: packet.IP4Header{
|
|
|
|
IPProto: ipproto.ICMPv4,
|
|
|
|
Src: srcIP,
|
|
|
|
Dst: dst,
|
|
|
|
},
|
|
|
|
Type: packet.ICMP4EchoRequest,
|
|
|
|
Code: packet.ICMP4NoCode,
|
|
|
|
}
|
|
|
|
_, payload := packet.ICMPEchoPayload(nil)
|
|
|
|
icmpPing := packet.Generate(icmph, payload)
|
|
|
|
pkt := &packet.Parsed{}
|
|
|
|
pkt.Decode(icmpPing)
|
|
|
|
|
|
|
|
impl := makeNetstack(t, func(impl *Impl) {
|
|
|
|
impl.ProcessSubnets = true
|
|
|
|
})
|
|
|
|
pingDst, ok := impl.shouldHandlePing(pkt)
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected shouldHandlePing==true")
|
|
|
|
}
|
|
|
|
if pingDst != dst {
|
|
|
|
t.Errorf("got dst %s; want %s", pingDst, dst)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ICMP6-no-via", func(t *testing.T) {
|
|
|
|
dst := netip.MustParseAddr("2a09:8280:1::4169")
|
|
|
|
icmph := packet.ICMP6Header{
|
|
|
|
IP6Header: packet.IP6Header{
|
|
|
|
IPProto: ipproto.ICMPv6,
|
|
|
|
Src: srcIP,
|
|
|
|
Dst: dst,
|
|
|
|
},
|
|
|
|
Type: packet.ICMP6EchoRequest,
|
|
|
|
Code: packet.ICMP6NoCode,
|
|
|
|
}
|
|
|
|
_, payload := packet.ICMPEchoPayload(nil)
|
|
|
|
icmpPing := packet.Generate(icmph, payload)
|
|
|
|
pkt := &packet.Parsed{}
|
|
|
|
pkt.Decode(icmpPing)
|
|
|
|
|
|
|
|
impl := makeNetstack(t, func(impl *Impl) {
|
|
|
|
impl.ProcessSubnets = true
|
|
|
|
})
|
|
|
|
pingDst, ok := impl.shouldHandlePing(pkt)
|
|
|
|
|
|
|
|
// Expect that we handle this since it's going out onto the
|
|
|
|
// network.
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected shouldHandlePing==true")
|
|
|
|
}
|
|
|
|
if pingDst != dst {
|
|
|
|
t.Errorf("got dst %s; want %s", pingDst, dst)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ICMP6-tailscale-addr", func(t *testing.T) {
|
|
|
|
dst := netip.MustParseAddr("fd7a:115c:a1e0:ab12::1")
|
|
|
|
icmph := packet.ICMP6Header{
|
|
|
|
IP6Header: packet.IP6Header{
|
|
|
|
IPProto: ipproto.ICMPv6,
|
|
|
|
Src: srcIP,
|
|
|
|
Dst: dst,
|
|
|
|
},
|
|
|
|
Type: packet.ICMP6EchoRequest,
|
|
|
|
Code: packet.ICMP6NoCode,
|
|
|
|
}
|
|
|
|
_, payload := packet.ICMPEchoPayload(nil)
|
|
|
|
icmpPing := packet.Generate(icmph, payload)
|
|
|
|
pkt := &packet.Parsed{}
|
|
|
|
pkt.Decode(icmpPing)
|
|
|
|
|
|
|
|
impl := makeNetstack(t, func(impl *Impl) {
|
|
|
|
impl.ProcessSubnets = true
|
|
|
|
})
|
|
|
|
_, ok := impl.shouldHandlePing(pkt)
|
|
|
|
|
|
|
|
// We don't handle this because it's a Tailscale IP and not 4via6
|
|
|
|
if ok {
|
|
|
|
t.Errorf("expected shouldHandlePing==false")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-09-21 23:07:57 +01:00
|
|
|
// Handle pings for 4via6 addresses regardless of ProcessSubnets
|
|
|
|
for _, subnets := range []bool{true, false} {
|
|
|
|
t.Run("ICMP6-4via6-ProcessSubnets-"+fmt.Sprint(subnets), func(t *testing.T) {
|
|
|
|
// The 4via6 route 10.1.1.0/24 siteid 7, and then the IP
|
|
|
|
// 10.1.1.9 within that route.
|
|
|
|
dst := netip.MustParseAddr("fd7a:115c:a1e0:b1a:0:7:a01:109")
|
|
|
|
expectedPingDst := netip.MustParseAddr("10.1.1.9")
|
|
|
|
icmph := packet.ICMP6Header{
|
|
|
|
IP6Header: packet.IP6Header{
|
|
|
|
IPProto: ipproto.ICMPv6,
|
|
|
|
Src: srcIP,
|
|
|
|
Dst: dst,
|
|
|
|
},
|
|
|
|
Type: packet.ICMP6EchoRequest,
|
|
|
|
Code: packet.ICMP6NoCode,
|
|
|
|
}
|
|
|
|
_, payload := packet.ICMPEchoPayload(nil)
|
|
|
|
icmpPing := packet.Generate(icmph, payload)
|
|
|
|
pkt := &packet.Parsed{}
|
|
|
|
pkt.Decode(icmpPing)
|
|
|
|
|
|
|
|
impl := makeNetstack(t, func(impl *Impl) {
|
|
|
|
impl.ProcessSubnets = subnets
|
|
|
|
})
|
|
|
|
pingDst, ok := impl.shouldHandlePing(pkt)
|
|
|
|
|
|
|
|
// Handled due to being 4via6
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("expected shouldHandlePing==true")
|
|
|
|
} else if pingDst != expectedPingDst {
|
|
|
|
t.Errorf("got dst %s; want %s", pingDst, expectedPingDst)
|
|
|
|
}
|
2022-09-21 19:19:34 +01:00
|
|
|
})
|
2022-09-21 23:07:57 +01:00
|
|
|
}
|
2022-09-21 19:19:34 +01:00
|
|
|
}
|
2022-11-08 21:09:23 +00:00
|
|
|
|
2022-11-09 03:53:40 +00:00
|
|
|
// looksLikeATailscaleSelfAddress reports whether addr looks like
|
|
|
|
// a Tailscale self address, for tests.
|
|
|
|
func looksLikeATailscaleSelfAddress(addr netip.Addr) bool {
|
|
|
|
return addr.Is4() && tsaddr.IsTailscaleIP(addr) ||
|
|
|
|
addr.Is6() && tsaddr.Tailscale4To6Range().Contains(addr)
|
|
|
|
}
|
|
|
|
|
2022-11-08 21:09:23 +00:00
|
|
|
func TestShouldProcessInbound(t *testing.T) {
|
|
|
|
testCases := []struct {
|
2022-12-23 18:22:39 +00:00
|
|
|
name string
|
|
|
|
pkt *packet.Parsed
|
|
|
|
afterStart func(*Impl) // optional; after Impl.Start is called
|
|
|
|
beforeStart func(*Impl) // optional; before Impl.Start is called
|
|
|
|
want bool
|
|
|
|
runOnGOOS string
|
2022-11-08 21:09:23 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "ipv6-via",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 6,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
|
|
|
|
// $ tailscale debug via 7 10.1.1.9/24
|
|
|
|
// fd7a:115c:a1e0:b1a:0:7:a01:109/120
|
|
|
|
Dst: netip.MustParseAddrPort("[fd7a:115c:a1e0:b1a:0:7:a01:109]:5678"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
prefs := ipn.NewPrefs()
|
|
|
|
prefs.AdvertiseRoutes = []netip.Prefix{
|
|
|
|
// $ tailscale debug via 7 10.1.1.0/24
|
|
|
|
// fd7a:115c:a1e0:b1a:0:7:a01:100/120
|
|
|
|
netip.MustParsePrefix("fd7a:115c:a1e0:b1a:0:7:a01:100/120"),
|
|
|
|
}
|
|
|
|
i.lb.Start(ipn.Options{
|
2022-11-09 05:58:10 +00:00
|
|
|
LegacyMigrationPrefs: prefs,
|
2022-11-08 21:09:23 +00:00
|
|
|
})
|
2022-11-09 03:53:40 +00:00
|
|
|
i.atomicIsLocalIPFunc.Store(looksLikeATailscaleSelfAddress)
|
2022-12-23 18:22:39 +00:00
|
|
|
},
|
|
|
|
beforeStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
// This should be handled even if we're
|
|
|
|
// otherwise not processing local IPs or
|
|
|
|
// subnets.
|
|
|
|
i.ProcessLocalIPs = false
|
|
|
|
i.ProcessSubnets = false
|
|
|
|
},
|
|
|
|
want: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "ipv6-via-not-advertised",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 6,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
|
|
|
|
// $ tailscale debug via 7 10.1.1.9/24
|
|
|
|
// fd7a:115c:a1e0:b1a:0:7:a01:109/120
|
|
|
|
Dst: netip.MustParseAddrPort("[fd7a:115c:a1e0:b1a:0:7:a01:109]:5678"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
prefs := ipn.NewPrefs()
|
|
|
|
prefs.AdvertiseRoutes = []netip.Prefix{
|
|
|
|
// tailscale debug via 7 10.1.2.0/24
|
|
|
|
// fd7a:115c:a1e0:b1a:0:7:a01:200/120
|
|
|
|
netip.MustParsePrefix("fd7a:115c:a1e0:b1a:0:7:a01:200/120"),
|
|
|
|
}
|
|
|
|
i.lb.Start(ipn.Options{
|
2022-11-09 05:58:10 +00:00
|
|
|
LegacyMigrationPrefs: prefs,
|
2022-11-08 21:09:23 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
want: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "tailscale-ssh-enabled",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 4,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
Dst: netip.MustParseAddrPort("100.101.102.104:22"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
prefs := ipn.NewPrefs()
|
|
|
|
prefs.RunSSH = true
|
|
|
|
i.lb.Start(ipn.Options{
|
2022-11-09 05:58:10 +00:00
|
|
|
LegacyMigrationPrefs: prefs,
|
2022-11-08 21:09:23 +00:00
|
|
|
})
|
|
|
|
i.atomicIsLocalIPFunc.Store(func(addr netip.Addr) bool {
|
|
|
|
return addr.String() == "100.101.102.104" // Dst, above
|
|
|
|
})
|
|
|
|
},
|
2022-11-21 23:11:44 +00:00
|
|
|
want: true,
|
|
|
|
runOnGOOS: "linux",
|
2022-11-08 21:09:23 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "tailscale-ssh-disabled",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 4,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
Dst: netip.MustParseAddrPort("100.101.102.104:22"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
prefs := ipn.NewPrefs()
|
|
|
|
prefs.RunSSH = false // default, but to be explicit
|
|
|
|
i.lb.Start(ipn.Options{
|
2022-11-09 05:58:10 +00:00
|
|
|
LegacyMigrationPrefs: prefs,
|
2022-11-08 21:09:23 +00:00
|
|
|
})
|
|
|
|
i.atomicIsLocalIPFunc.Store(func(addr netip.Addr) bool {
|
|
|
|
return addr.String() == "100.101.102.104" // Dst, above
|
|
|
|
})
|
|
|
|
},
|
|
|
|
want: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "process-local-ips",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 4,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
Dst: netip.MustParseAddrPort("100.101.102.104:4567"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
i.ProcessLocalIPs = true
|
|
|
|
i.atomicIsLocalIPFunc.Store(func(addr netip.Addr) bool {
|
|
|
|
return addr.String() == "100.101.102.104" // Dst, above
|
|
|
|
})
|
|
|
|
},
|
|
|
|
want: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "process-subnets",
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 4,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
Dst: netip.MustParseAddrPort("10.1.2.3:4567"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
beforeStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
i.ProcessSubnets = true
|
2022-12-23 18:22:39 +00:00
|
|
|
},
|
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
// For testing purposes, assume all Tailscale
|
|
|
|
// IPs are local; the Dst above is something
|
|
|
|
// not in that range.
|
2022-11-09 03:53:40 +00:00
|
|
|
i.atomicIsLocalIPFunc.Store(looksLikeATailscaleSelfAddress)
|
2022-11-08 21:09:23 +00:00
|
|
|
},
|
|
|
|
want: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "peerapi-port-subnet-router", // see #6235
|
|
|
|
pkt: &packet.Parsed{
|
|
|
|
IPVersion: 4,
|
|
|
|
IPProto: ipproto.TCP,
|
|
|
|
Src: netip.MustParseAddrPort("100.101.102.103:1234"),
|
|
|
|
Dst: netip.MustParseAddrPort("10.0.0.23:5555"),
|
|
|
|
TCPFlags: packet.TCPSyn,
|
|
|
|
},
|
2022-12-23 18:22:39 +00:00
|
|
|
beforeStart: func(i *Impl) {
|
|
|
|
// As if we were running on Linux where netstack isn't used.
|
|
|
|
i.ProcessSubnets = false
|
|
|
|
i.atomicIsLocalIPFunc.Store(func(netip.Addr) bool { return false })
|
|
|
|
},
|
|
|
|
afterStart: func(i *Impl) {
|
2022-11-08 21:09:23 +00:00
|
|
|
prefs := ipn.NewPrefs()
|
|
|
|
prefs.AdvertiseRoutes = []netip.Prefix{
|
|
|
|
netip.MustParsePrefix("10.0.0.1/24"),
|
|
|
|
}
|
|
|
|
i.lb.Start(ipn.Options{
|
2022-11-09 05:58:10 +00:00
|
|
|
LegacyMigrationPrefs: prefs,
|
2022-11-08 21:09:23 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Set the PeerAPI port to the Dst port above.
|
2022-12-22 20:53:56 +00:00
|
|
|
i.peerapiPort4Atomic.Store(5555)
|
|
|
|
i.peerapiPort6Atomic.Store(5555)
|
2022-11-08 21:09:23 +00:00
|
|
|
},
|
|
|
|
want: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// TODO(andrew): test PeerAPI
|
|
|
|
// TODO(andrew): test TCP packets without the SYN flag set
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
2022-11-21 23:11:44 +00:00
|
|
|
if tc.runOnGOOS != "" && runtime.GOOS != tc.runOnGOOS {
|
|
|
|
t.Skipf("skipping on GOOS=%v", runtime.GOOS)
|
|
|
|
}
|
2022-12-23 18:22:39 +00:00
|
|
|
impl := makeNetstack(t, tc.beforeStart)
|
|
|
|
if tc.afterStart != nil {
|
|
|
|
tc.afterStart(impl)
|
|
|
|
}
|
2022-11-08 21:09:23 +00:00
|
|
|
|
|
|
|
got := impl.shouldProcessInbound(tc.pkt, nil)
|
|
|
|
if got != tc.want {
|
|
|
|
t.Errorf("got shouldProcessInbound()=%v; want %v", got, tc.want)
|
|
|
|
} else {
|
|
|
|
t.Logf("OK: shouldProcessInbound() = %v", got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|