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>
1764 lines
45 KiB
Go
1764 lines
45 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !ts_omit_serve
|
|
|
|
package ipnlocal
|
|
|
|
import (
|
|
"bytes"
|
|
"cmp"
|
|
"context"
|
|
"crypto/tls"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"mime"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/netip"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"tailscale.com/control/controlclient"
|
|
"tailscale.com/health"
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/ipn/store/mem"
|
|
"tailscale.com/tailcfg"
|
|
"tailscale.com/tsd"
|
|
"tailscale.com/tstest"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/types/logid"
|
|
"tailscale.com/types/netmap"
|
|
"tailscale.com/util/eventbus/eventbustest"
|
|
"tailscale.com/util/mak"
|
|
"tailscale.com/util/must"
|
|
"tailscale.com/util/syspolicy/policyclient"
|
|
"tailscale.com/wgengine"
|
|
"tailscale.com/wgengine/filter"
|
|
)
|
|
|
|
func TestExpandProxyArg(t *testing.T) {
|
|
type res struct {
|
|
target string
|
|
insecure bool
|
|
}
|
|
tests := []struct {
|
|
in string
|
|
want res
|
|
}{
|
|
{"", res{}},
|
|
{"3030", res{"http://127.0.0.1:3030", false}},
|
|
{"localhost:3030", res{"http://localhost:3030", false}},
|
|
{"10.2.3.5:3030", res{"http://10.2.3.5:3030", false}},
|
|
{"http://foo.com", res{"http://foo.com", false}},
|
|
{"https://foo.com", res{"https://foo.com", false}},
|
|
{"https+insecure://10.2.3.4", res{"https://10.2.3.4", true}},
|
|
}
|
|
for _, tt := range tests {
|
|
target, insecure := expandProxyArg(tt.in)
|
|
got := res{target, insecure}
|
|
if got != tt.want {
|
|
t.Errorf("expandProxyArg(%q) = %v, want %v", tt.in, got, tt.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestParseRedirectWithRedirectCode(t *testing.T) {
|
|
tests := []struct {
|
|
in string
|
|
wantCode int
|
|
wantURL string
|
|
}{
|
|
{"301:https://example.com", 301, "https://example.com"},
|
|
{"302:https://example.com", 302, "https://example.com"},
|
|
{"303:/path", 303, "/path"},
|
|
{"307:https://example.com/path?query=1", 307, "https://example.com/path?query=1"},
|
|
{"308:https://example.com", 308, "https://example.com"},
|
|
|
|
{"https://example.com", 302, "https://example.com"},
|
|
{"/path", 302, "/path"},
|
|
{"http://example.com", 302, "http://example.com"},
|
|
{"git://example.com", 302, "git://example.com"},
|
|
|
|
{"200:https://example.com", 302, "200:https://example.com"},
|
|
{"404:https://example.com", 302, "404:https://example.com"},
|
|
{"500:https://example.com", 302, "500:https://example.com"},
|
|
{"30:https://example.com", 302, "30:https://example.com"},
|
|
{"3:https://example.com", 302, "3:https://example.com"},
|
|
{"3012:https://example.com", 302, "3012:https://example.com"},
|
|
{"abc:https://example.com", 302, "abc:https://example.com"},
|
|
{"301", 302, "301"},
|
|
}
|
|
for _, tt := range tests {
|
|
gotCode, gotURL := parseRedirectWithCode(tt.in)
|
|
if gotCode != tt.wantCode || gotURL != tt.wantURL {
|
|
t.Errorf("parseRedirectWithCode(%q) = (%d, %q), want (%d, %q)",
|
|
tt.in, gotCode, gotURL, tt.wantCode, tt.wantURL)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGetServeHandler(t *testing.T) {
|
|
const serverName = "example.ts.net"
|
|
conf1 := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
serverName + ":443": {
|
|
Handlers: map[string]*ipn.HTTPHandler{
|
|
"/": {},
|
|
"/bar": {},
|
|
"/foo/": {},
|
|
"/foo/bar": {},
|
|
"/foo/bar/": {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
port uint16 // or 443 is zero
|
|
path string // http.Request.URL.Path
|
|
conf *ipn.ServeConfig
|
|
want string // mountPoint
|
|
}{
|
|
{
|
|
name: "nothing",
|
|
path: "/",
|
|
conf: nil,
|
|
want: "",
|
|
},
|
|
{
|
|
name: "root",
|
|
conf: conf1,
|
|
path: "/",
|
|
want: "/",
|
|
},
|
|
{
|
|
name: "root-other",
|
|
conf: conf1,
|
|
path: "/other",
|
|
want: "/",
|
|
},
|
|
{
|
|
name: "bar",
|
|
conf: conf1,
|
|
path: "/bar",
|
|
want: "/bar",
|
|
},
|
|
{
|
|
name: "foo-bar",
|
|
conf: conf1,
|
|
path: "/foo/bar",
|
|
want: "/foo/bar",
|
|
},
|
|
{
|
|
name: "foo-bar-slash",
|
|
conf: conf1,
|
|
path: "/foo/bar/",
|
|
want: "/foo/bar/",
|
|
},
|
|
{
|
|
name: "foo-bar-other",
|
|
conf: conf1,
|
|
path: "/foo/bar/other",
|
|
want: "/foo/bar/",
|
|
},
|
|
{
|
|
name: "foo-other",
|
|
conf: conf1,
|
|
path: "/foo/other",
|
|
want: "/foo/",
|
|
},
|
|
{
|
|
name: "foo-no-trailing-slash",
|
|
conf: conf1,
|
|
path: "/foo",
|
|
want: "/foo/",
|
|
},
|
|
{
|
|
name: "dot-dots",
|
|
conf: conf1,
|
|
path: "/foo/../../../../../../../../etc/passwd",
|
|
want: "/",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
b := &LocalBackend{
|
|
serveConfig: tt.conf.View(),
|
|
logf: t.Logf,
|
|
}
|
|
req := &http.Request{
|
|
URL: &url.URL{
|
|
Path: tt.path,
|
|
},
|
|
TLS: &tls.ConnectionState{ServerName: serverName},
|
|
}
|
|
port := cmp.Or(tt.port, 443)
|
|
req = req.WithContext(serveHTTPContextKey.WithValue(req.Context(), &serveHTTPContext{
|
|
DestPort: port,
|
|
}))
|
|
|
|
h, got, ok := b.getServeHandler(req)
|
|
if (got != "") != ok {
|
|
t.Fatalf("got ok=%v, but got mountPoint=%q", ok, got)
|
|
}
|
|
if h.Valid() != ok {
|
|
t.Fatalf("got ok=%v, but valid=%v", ok, h.Valid())
|
|
}
|
|
if got != tt.want {
|
|
t.Errorf("got handler at mount %q, want %q", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// TestServeConfigForeground tests the inter-dependency
|
|
// between a ServeConfig and a WatchIPNBus:
|
|
// 1. Creating a WatchIPNBus returns a sessionID, that
|
|
// 2. ServeConfig sets it as the key of the Foreground field.
|
|
// 3. ServeConfig expects the WatchIPNBus to clean up the Foreground
|
|
// config when the session is done.
|
|
// 4. WatchIPNBus expects the ServeConfig to send a signal (close the channel)
|
|
// if an incoming SetServeConfig removes previous foregrounds.
|
|
func TestServeConfigForeground(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
|
|
ch1 := make(chan string, 1)
|
|
go func() {
|
|
defer close(ch1)
|
|
b.WatchNotifications(context.Background(), ipn.NotifyInitialState, nil, func(roNotify *ipn.Notify) (keepGoing bool) {
|
|
if roNotify.SessionID != "" {
|
|
ch1 <- roNotify.SessionID
|
|
}
|
|
return true
|
|
})
|
|
}()
|
|
|
|
ch2 := make(chan string, 1)
|
|
go func() {
|
|
b.WatchNotifications(context.Background(), ipn.NotifyInitialState, nil, func(roNotify *ipn.Notify) (keepGoing bool) {
|
|
if roNotify.SessionID != "" {
|
|
ch2 <- roNotify.SessionID
|
|
return true
|
|
}
|
|
ch2 <- "again" // let channel know fn was called again
|
|
return true
|
|
})
|
|
}()
|
|
|
|
var session1 string
|
|
select {
|
|
case session1 = <-ch1:
|
|
case <-time.After(time.Second):
|
|
t.Fatal("timed out waiting on watch notifications session id")
|
|
}
|
|
|
|
var session2 string
|
|
select {
|
|
case session2 = <-ch2:
|
|
case <-time.After(time.Second):
|
|
t.Fatal("timed out waiting on watch notifications session id")
|
|
}
|
|
|
|
err := b.SetServeConfig(&ipn.ServeConfig{
|
|
Foreground: map[string]*ipn.ServeConfig{
|
|
session1: {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
443: {TCPForward: "http://localhost:3000"},
|
|
},
|
|
},
|
|
session2: {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
999: {TCPForward: "http://localhost:4000"},
|
|
},
|
|
},
|
|
},
|
|
}, "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Introduce a race between [LocalBackend] sending notifications
|
|
// and [LocalBackend.WatchNotifications] shutting down due to
|
|
// setting the serve config below.
|
|
const N = 1000
|
|
for range N {
|
|
go b.send(ipn.Notify{})
|
|
}
|
|
|
|
// Setting a new serve config should shut down WatchNotifications
|
|
// whose session IDs are no longer found: session1 goes, session2 stays.
|
|
err = b.SetServeConfig(&ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
5000: {TCPForward: "http://localhost:5000"},
|
|
},
|
|
Foreground: map[string]*ipn.ServeConfig{
|
|
session2: {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
999: {TCPForward: "http://localhost:4000"},
|
|
},
|
|
},
|
|
},
|
|
}, "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
select {
|
|
case _, ok := <-ch1:
|
|
if ok {
|
|
t.Fatal("expected channel to be closed")
|
|
}
|
|
case <-time.After(time.Second):
|
|
t.Fatal("timed out waiting on watch notifications closing")
|
|
}
|
|
|
|
// check that the second session is still running
|
|
b.send(ipn.Notify{})
|
|
select {
|
|
case _, ok := <-ch2:
|
|
if !ok {
|
|
t.Fatal("expected second session to remain open")
|
|
}
|
|
case <-time.After(time.Second):
|
|
t.Fatal("timed out waiting on second session")
|
|
}
|
|
}
|
|
|
|
// TestServeConfigServices tests the side effects of setting the
|
|
// Services field in a ServeConfig. The Services field is a map
|
|
// of all services the current service host is serving. Unlike what we
|
|
// serve for node itself, there is no foreground and no local handlers
|
|
// for the services. So the only things we need to test are if the
|
|
// services configured are valid and if they correctly set intercept
|
|
// functions for netStack.
|
|
func TestServeConfigServices(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
svcIPMap := tailcfg.ServiceIPMappings{
|
|
"svc:foo": []netip.Addr{
|
|
netip.MustParseAddr("100.101.101.101"),
|
|
netip.MustParseAddr("fd7a:115c:a1e0:ab12:4843:cd96:6565:6565"),
|
|
},
|
|
"svc:bar": []netip.Addr{
|
|
netip.MustParseAddr("100.99.99.99"),
|
|
netip.MustParseAddr("fd7a:115c:a1e0:ab12:4843:cd96:626b:628b"),
|
|
},
|
|
}
|
|
svcIPMapJSON, err := json.Marshal(svcIPMap)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
b.currentNode().SetNetMap(&netmap.NetworkMap{
|
|
SelfNode: (&tailcfg.Node{
|
|
Name: "example.ts.net",
|
|
CapMap: tailcfg.NodeCapMap{
|
|
tailcfg.NodeAttrServiceHost: []tailcfg.RawMessage{tailcfg.RawMessage(svcIPMapJSON)},
|
|
},
|
|
}).View(),
|
|
UserProfiles: map[tailcfg.UserID]tailcfg.UserProfileView{
|
|
tailcfg.UserID(1): (&tailcfg.UserProfile{
|
|
LoginName: "someone@example.com",
|
|
DisplayName: "Some One",
|
|
ProfilePicURL: "https://example.com/photo.jpg",
|
|
}).View(),
|
|
},
|
|
})
|
|
|
|
tests := []struct {
|
|
name string
|
|
conf *ipn.ServeConfig
|
|
errExpected bool
|
|
packetDstAddrPort []netip.AddrPort
|
|
intercepted bool
|
|
}{
|
|
{
|
|
name: "no-services",
|
|
conf: &ipn.ServeConfig{},
|
|
packetDstAddrPort: []netip.AddrPort{
|
|
netip.MustParseAddrPort("100.101.101.101:443"),
|
|
},
|
|
intercepted: false,
|
|
},
|
|
{
|
|
name: "one-incorrectly-configured-service",
|
|
conf: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
},
|
|
Tun: true,
|
|
},
|
|
},
|
|
},
|
|
errExpected: true,
|
|
},
|
|
{
|
|
// one correctly configured service with packet should be intercepted
|
|
name: "one-service-intercept-packet",
|
|
conf: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
packetDstAddrPort: []netip.AddrPort{
|
|
netip.MustParseAddrPort("100.101.101.101:80"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:6565:6565]:80"),
|
|
},
|
|
intercepted: true,
|
|
},
|
|
{
|
|
// one correctly configured service with packet should not be intercepted
|
|
name: "one-service-not-intercept-packet",
|
|
conf: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
packetDstAddrPort: []netip.AddrPort{
|
|
netip.MustParseAddrPort("100.99.99.99:80"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:626b:628b]:80"),
|
|
netip.MustParseAddrPort("100.101.101.101:82"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:6565:6565]:82"),
|
|
},
|
|
intercepted: false,
|
|
},
|
|
{
|
|
// multiple correctly configured service with packet should be intercepted
|
|
name: "multiple-service-intercept-packet",
|
|
conf: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
},
|
|
},
|
|
"svc:bar": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
82: {HTTPS: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
packetDstAddrPort: []netip.AddrPort{
|
|
netip.MustParseAddrPort("100.99.99.99:80"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:626b:628b]:80"),
|
|
netip.MustParseAddrPort("100.101.101.101:81"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:6565:6565]:81"),
|
|
},
|
|
intercepted: true,
|
|
},
|
|
{
|
|
// multiple correctly configured service with packet should not be intercepted
|
|
name: "multiple-service-not-intercept-packet",
|
|
conf: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
},
|
|
},
|
|
"svc:bar": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {HTTP: true},
|
|
81: {HTTPS: true},
|
|
82: {HTTPS: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
packetDstAddrPort: []netip.AddrPort{
|
|
// ips in capmap but port is not hosting service
|
|
netip.MustParseAddrPort("100.99.99.99:77"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:626b:628b]:77"),
|
|
netip.MustParseAddrPort("100.101.101.101:85"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:6565:6565]:85"),
|
|
// ips not in capmap
|
|
netip.MustParseAddrPort("100.102.102.102:80"),
|
|
netip.MustParseAddrPort("[fd7a:115c:a1e0:ab12:4843:cd96:6666:6666]:80"),
|
|
},
|
|
intercepted: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := b.SetServeConfig(tt.conf, "")
|
|
if err == nil && tt.errExpected {
|
|
t.Fatal("expected error")
|
|
}
|
|
if err != nil {
|
|
if tt.errExpected {
|
|
return
|
|
}
|
|
t.Fatal(err)
|
|
}
|
|
for _, addrPort := range tt.packetDstAddrPort {
|
|
if tt.intercepted != b.ShouldInterceptVIPServiceTCPPort(addrPort) {
|
|
if tt.intercepted {
|
|
t.Fatalf("expected packet to be intercepted")
|
|
} else {
|
|
t.Fatalf("expected packet not to be intercepted")
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServeConfigETag(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
|
|
// the etag should be valid even when there is no config
|
|
_, emptyStateETag, err := b.ServeConfigETag()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// a nil config with the empty-state etag should succeed
|
|
err = b.SetServeConfig(nil, emptyStateETag)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// a nil config with an invalid etag should fail
|
|
err = b.SetServeConfig(nil, "abc")
|
|
if !errors.Is(err, ErrETagMismatch) {
|
|
t.Fatal("expected an error but got nil")
|
|
}
|
|
|
|
// a new config with the empty-state etag should succeed
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"example.ts.net:443": {Handlers: map[string]*ipn.HTTPHandler{
|
|
"/": {Proxy: "http://127.0.0.1:3000"},
|
|
}},
|
|
},
|
|
}
|
|
err = b.SetServeConfig(conf, emptyStateETag)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
confView, etag, err := b.ServeConfigETag()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
conf = confView.AsStruct()
|
|
mak.Set(&conf.AllowFunnel, "example.ts.net:443", true)
|
|
|
|
// replacing an existing config with an invalid etag should fail
|
|
err = b.SetServeConfig(conf, "invalid etag")
|
|
if !errors.Is(err, ErrETagMismatch) {
|
|
t.Fatalf("expected an etag mismatch error but got %v", err)
|
|
}
|
|
|
|
// replacing an existing config with a valid etag should succeed
|
|
err = b.SetServeConfig(conf, etag)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// replacing an existing config with a previous etag should fail
|
|
err = b.SetServeConfig(nil, etag)
|
|
if !errors.Is(err, ErrETagMismatch) {
|
|
t.Fatalf("expected an etag mismatch error but got %v", err)
|
|
}
|
|
|
|
// replacing an existing config with the new etag should succeed
|
|
_, etag, err = b.ServeConfigETag()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
err = b.SetServeConfig(nil, etag)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestServeHTTPProxyPath(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
// Start test serve endpoint.
|
|
testServ := httptest.NewServer(http.HandlerFunc(
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
// Set the request URL path to a response header, so the
|
|
// requested URL path can be checked in tests.
|
|
t.Logf("adding path %s", r.URL.Path)
|
|
w.Header().Add("Path", r.URL.Path)
|
|
},
|
|
))
|
|
defer testServ.Close()
|
|
tests := []struct {
|
|
name string
|
|
mountPoint string
|
|
proxyPath string
|
|
requestPath string
|
|
wantRequestPath string
|
|
}{
|
|
{
|
|
name: "/foo -> /foo, with mount point and path /foo",
|
|
mountPoint: "/foo",
|
|
proxyPath: "/foo",
|
|
requestPath: "/foo",
|
|
wantRequestPath: "/foo",
|
|
},
|
|
{
|
|
name: "/foo/ -> /foo/, with mount point and path /foo",
|
|
mountPoint: "/foo",
|
|
proxyPath: "/foo",
|
|
requestPath: "/foo/",
|
|
wantRequestPath: "/foo/",
|
|
},
|
|
{
|
|
name: "/foo -> /foo/, with mount point and path /foo/",
|
|
mountPoint: "/foo/",
|
|
proxyPath: "/foo/",
|
|
requestPath: "/foo",
|
|
wantRequestPath: "/foo/",
|
|
},
|
|
{
|
|
name: "/-> /, with mount point and path /",
|
|
mountPoint: "/",
|
|
proxyPath: "/",
|
|
requestPath: "/",
|
|
wantRequestPath: "/",
|
|
},
|
|
{
|
|
name: "/foo -> /foo, with mount point and path /",
|
|
mountPoint: "/",
|
|
proxyPath: "/",
|
|
requestPath: "/foo",
|
|
wantRequestPath: "/foo",
|
|
},
|
|
{
|
|
name: "/foo/bar -> /foo/bar, with mount point and path /foo",
|
|
mountPoint: "/foo",
|
|
proxyPath: "/foo",
|
|
requestPath: "/foo/bar",
|
|
wantRequestPath: "/foo/bar",
|
|
},
|
|
{
|
|
name: "/foo/bar/baz -> /foo/bar/baz, with mount point and path /foo",
|
|
mountPoint: "/foo",
|
|
proxyPath: "/foo",
|
|
requestPath: "/foo/bar/baz",
|
|
wantRequestPath: "/foo/bar/baz",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"example.ts.net:443": {Handlers: map[string]*ipn.HTTPHandler{
|
|
tt.mountPoint: {Proxy: testServ.URL + tt.proxyPath},
|
|
}},
|
|
},
|
|
}
|
|
if err := b.SetServeConfig(conf, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
req := &http.Request{
|
|
URL: &url.URL{Path: tt.requestPath},
|
|
TLS: &tls.ConnectionState{ServerName: "example.ts.net"},
|
|
}
|
|
req = req.WithContext(serveHTTPContextKey.WithValue(req.Context(),
|
|
&serveHTTPContext{
|
|
DestPort: 443,
|
|
SrcAddr: netip.MustParseAddrPort("1.2.3.4:1234"), // random src
|
|
}))
|
|
|
|
w := httptest.NewRecorder()
|
|
b.serveWebHandler(w, req)
|
|
|
|
// Verify what path was requested
|
|
p := w.Result().Header.Get("Path")
|
|
if p != tt.wantRequestPath {
|
|
t.Errorf("wanted request path %s got %s", tt.wantRequestPath, p)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServeHTTPProxyHeaders(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
|
|
// Start test serve endpoint.
|
|
testServ := httptest.NewServer(http.HandlerFunc(
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
// Piping all the headers through the response writer
|
|
// so we can check their values in tests below.
|
|
for key, val := range r.Header {
|
|
w.Header().Add(key, strings.Join(val, ","))
|
|
}
|
|
},
|
|
))
|
|
defer testServ.Close()
|
|
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"example.ts.net:443": {Handlers: map[string]*ipn.HTTPHandler{
|
|
"/": {Proxy: testServ.URL},
|
|
}},
|
|
},
|
|
}
|
|
if err := b.SetServeConfig(conf, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
type headerCheck struct {
|
|
header string
|
|
want string
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
srcIP string
|
|
wantHeaders []headerCheck
|
|
}{
|
|
{
|
|
name: "request-from-user-within-tailnet",
|
|
srcIP: "100.150.151.152",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.150.151.152"},
|
|
{"Tailscale-User-Login", "someone@example.com"},
|
|
{"Tailscale-User-Name", "Some One"},
|
|
{"Tailscale-User-Profile-Pic", "https://example.com/photo.jpg"},
|
|
{"Tailscale-Headers-Info", "https://tailscale.com/s/serve-headers"},
|
|
},
|
|
},
|
|
{
|
|
name: "request-from-tagged-node-within-tailnet",
|
|
srcIP: "100.150.151.153",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.150.151.153"},
|
|
{"Tailscale-User-Login", ""},
|
|
{"Tailscale-User-Name", ""},
|
|
{"Tailscale-User-Profile-Pic", ""},
|
|
{"Tailscale-Headers-Info", ""},
|
|
},
|
|
},
|
|
{
|
|
name: "request-from-outside-tailnet",
|
|
srcIP: "100.160.161.162",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.160.161.162"},
|
|
{"Tailscale-User-Login", ""},
|
|
{"Tailscale-User-Name", ""},
|
|
{"Tailscale-User-Profile-Pic", ""},
|
|
{"Tailscale-Headers-Info", ""},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{
|
|
URL: &url.URL{Path: "/"},
|
|
TLS: &tls.ConnectionState{ServerName: "example.ts.net"},
|
|
}
|
|
req = req.WithContext(serveHTTPContextKey.WithValue(req.Context(), &serveHTTPContext{
|
|
DestPort: 443,
|
|
SrcAddr: netip.MustParseAddrPort(tt.srcIP + ":1234"), // random src port for tests
|
|
}))
|
|
|
|
w := httptest.NewRecorder()
|
|
b.serveWebHandler(w, req)
|
|
|
|
// Verify the headers.
|
|
h := w.Result().Header
|
|
for _, c := range tt.wantHeaders {
|
|
if got := h.Get(c.header); got != c.want {
|
|
t.Errorf("invalid %q header; want=%q, got=%q", c.header, c.want, got)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServeHTTPProxyGrantHeader(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
|
|
nm := b.NetMap()
|
|
matches, err := filter.MatchesFromFilterRules([]tailcfg.FilterRule{
|
|
{
|
|
SrcIPs: []string{"100.150.151.152"},
|
|
CapGrant: []tailcfg.CapGrant{{
|
|
Dsts: []netip.Prefix{
|
|
netip.MustParsePrefix("100.150.151.151/32"),
|
|
},
|
|
CapMap: tailcfg.PeerCapMap{
|
|
"example.com/cap/interesting": []tailcfg.RawMessage{
|
|
`{"role": "🐿"}`,
|
|
},
|
|
},
|
|
}},
|
|
},
|
|
{
|
|
SrcIPs: []string{"100.150.151.153"},
|
|
CapGrant: []tailcfg.CapGrant{{
|
|
Dsts: []netip.Prefix{
|
|
netip.MustParsePrefix("100.150.151.151/32"),
|
|
},
|
|
CapMap: tailcfg.PeerCapMap{
|
|
"example.com/cap/boring": []tailcfg.RawMessage{
|
|
`{"role": "Viewer"}`,
|
|
},
|
|
"example.com/cap/irrelevant": []tailcfg.RawMessage{
|
|
`{"role": "Editor"}`,
|
|
},
|
|
},
|
|
}},
|
|
},
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
nm.PacketFilter = matches
|
|
b.SetControlClientStatus(nil, controlclient.Status{NetMap: nm})
|
|
|
|
// Start test serve endpoint.
|
|
testServ := httptest.NewServer(http.HandlerFunc(
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
// Piping all the headers through the response writer
|
|
// so we can check their values in tests below.
|
|
for key, val := range r.Header {
|
|
w.Header().Add(key, strings.Join(val, ","))
|
|
}
|
|
},
|
|
))
|
|
defer testServ.Close()
|
|
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"example.ts.net:443": {Handlers: map[string]*ipn.HTTPHandler{
|
|
"/": {
|
|
Proxy: testServ.URL,
|
|
AcceptAppCaps: []tailcfg.PeerCapability{"example.com/cap/interesting", "example.com/cap/boring"},
|
|
},
|
|
}},
|
|
},
|
|
}
|
|
if err := b.SetServeConfig(conf, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
type headerCheck struct {
|
|
header string
|
|
want string
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
srcIP string
|
|
wantHeaders []headerCheck
|
|
}{
|
|
{
|
|
name: "request-from-user-within-tailnet",
|
|
srcIP: "100.150.151.152",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.150.151.152"},
|
|
{"Tailscale-User-Login", "someone@example.com"},
|
|
{"Tailscale-User-Name", "Some One"},
|
|
{"Tailscale-User-Profile-Pic", "https://example.com/photo.jpg"},
|
|
{"Tailscale-Headers-Info", "https://tailscale.com/s/serve-headers"},
|
|
{"Tailscale-App-Capabilities", `{"example.com/cap/interesting":[{"role":"🐿"}]}`},
|
|
},
|
|
},
|
|
{
|
|
name: "request-from-tagged-node-within-tailnet",
|
|
srcIP: "100.150.151.153",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.150.151.153"},
|
|
{"Tailscale-User-Login", ""},
|
|
{"Tailscale-User-Name", ""},
|
|
{"Tailscale-User-Profile-Pic", ""},
|
|
{"Tailscale-Headers-Info", ""},
|
|
{"Tailscale-App-Capabilities", `{"example.com/cap/boring":[{"role":"Viewer"}]}`},
|
|
},
|
|
},
|
|
{
|
|
name: "request-from-outside-tailnet",
|
|
srcIP: "100.160.161.162",
|
|
wantHeaders: []headerCheck{
|
|
{"X-Forwarded-Proto", "https"},
|
|
{"X-Forwarded-For", "100.160.161.162"},
|
|
{"Tailscale-User-Login", ""},
|
|
{"Tailscale-User-Name", ""},
|
|
{"Tailscale-User-Profile-Pic", ""},
|
|
{"Tailscale-Headers-Info", ""},
|
|
{"Tailscale-App-Capabilities", ""},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{
|
|
URL: &url.URL{Path: "/"},
|
|
TLS: &tls.ConnectionState{ServerName: "example.ts.net"},
|
|
}
|
|
req = req.WithContext(serveHTTPContextKey.WithValue(req.Context(), &serveHTTPContext{
|
|
DestPort: 443,
|
|
SrcAddr: netip.MustParseAddrPort(tt.srcIP + ":1234"), // random src port for tests
|
|
}))
|
|
|
|
w := httptest.NewRecorder()
|
|
b.serveWebHandler(w, req)
|
|
|
|
// Verify the headers. The contract with users is that identity and grant headers containing non-ASCII
|
|
// UTF-8 characters will be Q-encoded.
|
|
h := w.Result().Header
|
|
dec := new(mime.WordDecoder)
|
|
for _, c := range tt.wantHeaders {
|
|
maybeEncoded := h.Get(c.header)
|
|
got, err := dec.DecodeHeader(maybeEncoded)
|
|
if err != nil {
|
|
t.Fatalf("invalid %q header; failed to decode: %v", maybeEncoded, err)
|
|
}
|
|
if got != c.want {
|
|
t.Errorf("invalid %q header; want=%q, got=%q", c.header, c.want, got)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_reverseProxyConfiguration(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
type test struct {
|
|
backend string
|
|
path string
|
|
// set to false to test that a proxy has been removed
|
|
shouldExist bool
|
|
wantsInsecure bool
|
|
wantsURL url.URL
|
|
}
|
|
runner := func(name string, tests []test) {
|
|
t.Logf("running tests for %s", name)
|
|
host := ipn.HostPort("http://example.ts.net:80")
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
host: {Handlers: map[string]*ipn.HTTPHandler{}},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
if tt.shouldExist {
|
|
conf.Web[host].Handlers[tt.path] = &ipn.HTTPHandler{Proxy: tt.backend}
|
|
}
|
|
}
|
|
if err := b.setServeConfigLocked(conf, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// test that reverseproxies have been set up as expected
|
|
for _, tt := range tests {
|
|
rp, ok := b.serveProxyHandlers.Load(tt.backend)
|
|
if !tt.shouldExist && ok {
|
|
t.Errorf("proxy for backend %s should not exist, but it does", tt.backend)
|
|
}
|
|
if !tt.shouldExist {
|
|
continue
|
|
}
|
|
parsedRp, ok := rp.(*reverseProxy)
|
|
if !ok {
|
|
t.Errorf("proxy for backend %q is not a reverseproxy", tt.backend)
|
|
}
|
|
if parsedRp.insecure != tt.wantsInsecure {
|
|
t.Errorf("proxy for backend %q should be insecure: %v got insecure: %v", tt.backend, tt.wantsInsecure, parsedRp.insecure)
|
|
}
|
|
if !reflect.DeepEqual(*parsedRp.url, tt.wantsURL) {
|
|
t.Errorf("proxy for backend %q should have URL %#+v, got URL %+#v", tt.backend, &tt.wantsURL, parsedRp.url)
|
|
}
|
|
if tt.backend != parsedRp.backend {
|
|
t.Errorf("proxy for backend %q should have backend %q got %q", tt.backend, tt.backend, parsedRp.backend)
|
|
}
|
|
}
|
|
}
|
|
|
|
// configure local backend with some proxy backends
|
|
runner("initial proxy configs", []test{
|
|
{
|
|
backend: "http://example.com/docs",
|
|
path: "/example",
|
|
shouldExist: true,
|
|
wantsInsecure: false,
|
|
wantsURL: mustCreateURL(t, "http://example.com/docs"),
|
|
},
|
|
{
|
|
backend: "https://example1.com",
|
|
path: "/example1",
|
|
shouldExist: true,
|
|
wantsInsecure: false,
|
|
wantsURL: mustCreateURL(t, "https://example1.com"),
|
|
},
|
|
{
|
|
backend: "https+insecure://example2.com",
|
|
path: "/example2",
|
|
shouldExist: true,
|
|
wantsInsecure: true,
|
|
wantsURL: mustCreateURL(t, "https://example2.com"),
|
|
},
|
|
})
|
|
|
|
// reconfigure the local backend with different proxies
|
|
runner("reloaded proxy configs", []test{
|
|
{
|
|
backend: "http://example.com/docs",
|
|
path: "/example",
|
|
shouldExist: true,
|
|
wantsInsecure: false,
|
|
wantsURL: mustCreateURL(t, "http://example.com/docs"),
|
|
},
|
|
{
|
|
backend: "https://example1.com",
|
|
shouldExist: false,
|
|
},
|
|
{
|
|
backend: "https+insecure://example2.com",
|
|
shouldExist: false,
|
|
},
|
|
{
|
|
backend: "https+insecure://example3.com",
|
|
path: "/example3",
|
|
shouldExist: true,
|
|
wantsInsecure: true,
|
|
wantsURL: mustCreateURL(t, "https://example3.com"),
|
|
},
|
|
})
|
|
}
|
|
|
|
func mustCreateURL(t *testing.T, u string) url.URL {
|
|
t.Helper()
|
|
uParsed, err := url.Parse(u)
|
|
if err != nil {
|
|
t.Fatalf("failed parsing url: %v", err)
|
|
}
|
|
return *uParsed
|
|
}
|
|
|
|
func newTestBackend(t *testing.T, opts ...any) *LocalBackend {
|
|
var logf logger.Logf = logger.Discard
|
|
const debug = false
|
|
if debug {
|
|
logf = logger.WithPrefix(tstest.WhileTestRunningLogger(t), "... ")
|
|
}
|
|
|
|
bus := eventbustest.NewBus(t)
|
|
sys := tsd.NewSystemWithBus(bus)
|
|
|
|
for _, o := range opts {
|
|
switch v := o.(type) {
|
|
case policyclient.Client:
|
|
sys.PolicyClient.Set(v)
|
|
default:
|
|
panic(fmt.Sprintf("unsupported option type %T", v))
|
|
}
|
|
}
|
|
|
|
e, err := wgengine.NewUserspaceEngine(logf, wgengine.Config{
|
|
SetSubsystem: sys.Set,
|
|
HealthTracker: sys.HealthTracker.Get(),
|
|
Metrics: sys.UserMetricsRegistry(),
|
|
EventBus: sys.Bus.Get(),
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
sys.Set(e)
|
|
sys.Set(new(mem.Store))
|
|
|
|
b, err := NewLocalBackend(logf, logid.PublicID{}, sys, 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Cleanup(b.Shutdown)
|
|
dir := t.TempDir()
|
|
b.SetVarRoot(dir)
|
|
|
|
pm := must.Get(newProfileManager(new(mem.Store), logf, health.NewTracker(bus)))
|
|
pm.currentProfile = (&ipn.LoginProfile{ID: "id0"}).View()
|
|
b.pm = pm
|
|
|
|
b.currentNode().SetNetMap(&netmap.NetworkMap{
|
|
SelfNode: (&tailcfg.Node{
|
|
Name: "example.ts.net",
|
|
Addresses: []netip.Prefix{
|
|
netip.MustParsePrefix("100.150.151.151/32"),
|
|
},
|
|
}).View(),
|
|
UserProfiles: map[tailcfg.UserID]tailcfg.UserProfileView{
|
|
tailcfg.UserID(1): (&tailcfg.UserProfile{
|
|
LoginName: "someone@example.com",
|
|
DisplayName: "Some One",
|
|
ProfilePicURL: "https://example.com/photo.jpg",
|
|
}).View(),
|
|
},
|
|
Peers: []tailcfg.NodeView{
|
|
(&tailcfg.Node{
|
|
ID: 152,
|
|
ComputedName: "some-peer",
|
|
User: tailcfg.UserID(1),
|
|
Key: makeNodeKeyFromID(152),
|
|
Addresses: []netip.Prefix{
|
|
netip.MustParsePrefix("100.150.151.152/32"),
|
|
},
|
|
}).View(),
|
|
(&tailcfg.Node{
|
|
ID: 153,
|
|
ComputedName: "some-tagged-peer",
|
|
Tags: []string{"tag:server", "tag:test"},
|
|
User: tailcfg.UserID(1),
|
|
Key: makeNodeKeyFromID(153),
|
|
Addresses: []netip.Prefix{
|
|
netip.MustParsePrefix("100.150.151.153/32"),
|
|
},
|
|
}).View(),
|
|
},
|
|
})
|
|
return b
|
|
}
|
|
|
|
func TestServeFileOrDirectory(t *testing.T) {
|
|
td := t.TempDir()
|
|
writeFile := func(suffix, contents string) {
|
|
if err := os.WriteFile(filepath.Join(td, suffix), []byte(contents), 0o600); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
writeFile("foo", "this is foo")
|
|
writeFile("bar", "this is bar")
|
|
os.MkdirAll(filepath.Join(td, "subdir"), 0o700)
|
|
writeFile("subdir/file-a", "this is A")
|
|
writeFile("subdir/file-b", "this is B")
|
|
writeFile("subdir/file-c", "this is C")
|
|
|
|
contains := func(subs ...string) func([]byte, *http.Response) error {
|
|
return func(resBody []byte, res *http.Response) error {
|
|
for _, sub := range subs {
|
|
if !bytes.Contains(resBody, []byte(sub)) {
|
|
return fmt.Errorf("response body does not contain %q: %s", sub, resBody)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
isStatus := func(wantCode int) func([]byte, *http.Response) error {
|
|
return func(resBody []byte, res *http.Response) error {
|
|
if res.StatusCode != wantCode {
|
|
return fmt.Errorf("response status = %d; want %d", res.StatusCode, wantCode)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
isRedirect := func(wantLocation string) func([]byte, *http.Response) error {
|
|
return func(resBody []byte, res *http.Response) error {
|
|
switch res.StatusCode {
|
|
case 301, 302, 303, 307, 308:
|
|
if got := res.Header.Get("Location"); got != wantLocation {
|
|
return fmt.Errorf("got Location = %q; want %q", got, wantLocation)
|
|
}
|
|
default:
|
|
return fmt.Errorf("response status = %d; want redirect. body: %s", res.StatusCode, resBody)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
b := &LocalBackend{}
|
|
|
|
tests := []struct {
|
|
req string
|
|
mount string
|
|
want func(resBody []byte, res *http.Response) error
|
|
}{
|
|
// Mounted at /
|
|
|
|
{"/", "/", contains("foo", "bar", "subdir")},
|
|
{"/../../.../../../../../../../etc/passwd", "/", isStatus(404)},
|
|
{"/foo", "/", contains("this is foo")},
|
|
{"/bar", "/", contains("this is bar")},
|
|
{"/bar/inside-file", "/", isStatus(404)},
|
|
{"/subdir", "/", isRedirect("/subdir/")},
|
|
{"/subdir/", "/", contains("file-a", "file-b", "file-c")},
|
|
{"/subdir/file-a", "/", contains("this is A")},
|
|
{"/subdir/file-z", "/", isStatus(404)},
|
|
|
|
{"/doc", "/doc/", isRedirect("/doc/")},
|
|
{"/doc/", "/doc/", contains("foo", "bar", "subdir")},
|
|
{"/doc/../../.../../../../../../../etc/passwd", "/doc/", isStatus(404)},
|
|
{"/doc/foo", "/doc/", contains("this is foo")},
|
|
{"/doc/bar", "/doc/", contains("this is bar")},
|
|
{"/doc/bar/inside-file", "/doc/", isStatus(404)},
|
|
{"/doc/subdir", "/doc/", isRedirect("/doc/subdir/")},
|
|
{"/doc/subdir/", "/doc/", contains("file-a", "file-b", "file-c")},
|
|
{"/doc/subdir/file-a", "/doc/", contains("this is A")},
|
|
{"/doc/subdir/file-z", "/doc/", isStatus(404)},
|
|
}
|
|
for _, tt := range tests {
|
|
rec := httptest.NewRecorder()
|
|
req := httptest.NewRequest("GET", tt.req, nil)
|
|
b.serveFileOrDirectory(rec, req, td, tt.mount)
|
|
if tt.want == nil {
|
|
t.Errorf("no want for path %q", tt.req)
|
|
return
|
|
}
|
|
if err := tt.want(rec.Body.Bytes(), rec.Result()); err != nil {
|
|
t.Errorf("error for req %q (mount %v): %v", tt.req, tt.mount, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Test_isGRPCContentType(t *testing.T) {
|
|
tests := []struct {
|
|
contentType string
|
|
want bool
|
|
}{
|
|
{contentType: "application/grpc", want: true},
|
|
{contentType: "application/grpc;", want: true},
|
|
{contentType: "application/grpc+", want: true},
|
|
{contentType: "application/grpcfoobar"},
|
|
{contentType: "application/text"},
|
|
{contentType: "foobar"},
|
|
{contentType: ""},
|
|
}
|
|
for _, tt := range tests {
|
|
if got := isGRPCContentType(tt.contentType); got != tt.want {
|
|
t.Errorf("isGRPCContentType(%q) = %v, want %v", tt.contentType, got, tt.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestEncTailscaleHeaderValue(t *testing.T) {
|
|
tests := []struct {
|
|
in string
|
|
want string
|
|
}{
|
|
{"", ""},
|
|
{"Alice Smith", "Alice Smith"},
|
|
{"Bad\xffUTF-8", ""},
|
|
{"Krūmiņa", "=?utf-8?q?Kr=C5=ABmi=C5=86a?="},
|
|
}
|
|
for _, tt := range tests {
|
|
got := encTailscaleHeaderValue(tt.in)
|
|
if got != tt.want {
|
|
t.Errorf("encTailscaleHeaderValue(%q) = %q, want %q", tt.in, got, tt.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestServeGRPCProxy(t *testing.T) {
|
|
const msg = "some-response\n"
|
|
backend := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Path-Was", r.RequestURI)
|
|
w.Header().Set("Proto-Was", r.Proto)
|
|
io.WriteString(w, msg)
|
|
}))
|
|
backend.EnableHTTP2 = true
|
|
backend.Config.Protocols = new(http.Protocols)
|
|
backend.Config.Protocols.SetHTTP1(true)
|
|
backend.Config.Protocols.SetUnencryptedHTTP2(true)
|
|
backend.Start()
|
|
defer backend.Close()
|
|
|
|
backendURL := must.Get(url.Parse(backend.URL))
|
|
|
|
lb := newTestBackend(t)
|
|
rp := &reverseProxy{
|
|
logf: t.Logf,
|
|
url: backendURL,
|
|
backend: backend.URL,
|
|
lb: lb,
|
|
}
|
|
|
|
req := func(method, urlStr string, opt ...any) *http.Request {
|
|
req := httptest.NewRequest(method, urlStr, nil)
|
|
for _, o := range opt {
|
|
switch v := o.(type) {
|
|
case int:
|
|
req.ProtoMajor = v
|
|
case string:
|
|
req.Header.Set("Content-Type", v)
|
|
default:
|
|
panic(fmt.Sprintf("unsupported option type %T", v))
|
|
}
|
|
}
|
|
return req
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
req *http.Request
|
|
wantPath string
|
|
wantProto string
|
|
wantBody string
|
|
}{
|
|
{
|
|
name: "non-gRPC",
|
|
req: req("GET", "http://foo/bar"),
|
|
wantPath: "/bar",
|
|
wantProto: "HTTP/1.1",
|
|
},
|
|
{
|
|
name: "gRPC-but-not-http2",
|
|
req: req("GET", "http://foo/bar", "application/grpc"),
|
|
wantPath: "/bar",
|
|
wantProto: "HTTP/1.1",
|
|
},
|
|
{
|
|
name: "gRPC--http2",
|
|
req: req("GET", "http://foo/bar", 2, "application/grpc"),
|
|
wantPath: "/bar",
|
|
wantProto: "HTTP/2.0",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
rec := httptest.NewRecorder()
|
|
rp.ServeHTTP(rec, tt.req)
|
|
|
|
res := rec.Result()
|
|
got := must.Get(io.ReadAll(res.Body))
|
|
if got, want := res.Header.Get("Path-Was"), tt.wantPath; want != got {
|
|
t.Errorf("Path-Was %q, want %q", got, want)
|
|
}
|
|
if got, want := res.Header.Get("Proto-Was"), tt.wantProto; want != got {
|
|
t.Errorf("Proto-Was %q, want %q", got, want)
|
|
}
|
|
if string(got) != msg {
|
|
t.Errorf("got body %q, want %q", got, msg)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServeHTTPRedirect(t *testing.T) {
|
|
b := newTestBackend(t)
|
|
|
|
tests := []struct {
|
|
host string
|
|
path string
|
|
redirect string
|
|
reqURI string
|
|
wantCode int
|
|
wantLoc string
|
|
}{
|
|
{
|
|
host: "hardcoded-root",
|
|
path: "/",
|
|
redirect: "https://example.com/",
|
|
reqURI: "/old",
|
|
wantCode: http.StatusFound, // 302 is the default
|
|
wantLoc: "https://example.com/",
|
|
},
|
|
{
|
|
host: "template-host-and-uri",
|
|
path: "/",
|
|
redirect: "https://${HOST}${REQUEST_URI}",
|
|
reqURI: "/path?foo=bar",
|
|
wantCode: http.StatusFound, // 302 is the default
|
|
wantLoc: "https://template-host-and-uri/path?foo=bar",
|
|
},
|
|
{
|
|
host: "custom-301",
|
|
path: "/",
|
|
redirect: "301:https://example.com/",
|
|
reqURI: "/old",
|
|
wantCode: http.StatusMovedPermanently, // 301
|
|
wantLoc: "https://example.com/",
|
|
},
|
|
{
|
|
host: "custom-307",
|
|
path: "/",
|
|
redirect: "307:https://example.com/new",
|
|
reqURI: "/old",
|
|
wantCode: http.StatusTemporaryRedirect, // 307
|
|
wantLoc: "https://example.com/new",
|
|
},
|
|
{
|
|
host: "custom-308",
|
|
path: "/",
|
|
redirect: "308:https://example.com/permanent",
|
|
reqURI: "/old",
|
|
wantCode: http.StatusPermanentRedirect, // 308
|
|
wantLoc: "https://example.com/permanent",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.host, func(t *testing.T) {
|
|
conf := &ipn.ServeConfig{
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
ipn.HostPort(tt.host + ":80"): {
|
|
Handlers: map[string]*ipn.HTTPHandler{
|
|
tt.path: {Redirect: tt.redirect},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
if err := b.SetServeConfig(conf, ""); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
req := &http.Request{
|
|
Host: tt.host,
|
|
URL: &url.URL{Path: tt.path},
|
|
RequestURI: tt.reqURI,
|
|
TLS: &tls.ConnectionState{ServerName: tt.host},
|
|
}
|
|
req = req.WithContext(serveHTTPContextKey.WithValue(req.Context(), &serveHTTPContext{
|
|
DestPort: 80,
|
|
SrcAddr: netip.MustParseAddrPort("1.2.3.4:1234"),
|
|
}))
|
|
|
|
w := httptest.NewRecorder()
|
|
b.serveWebHandler(w, req)
|
|
|
|
if w.Code != tt.wantCode {
|
|
t.Errorf("got status %d, want %d", w.Code, tt.wantCode)
|
|
}
|
|
if got := w.Header().Get("Location"); got != tt.wantLoc {
|
|
t.Errorf("got Location %q, want %q", got, tt.wantLoc)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateServeConfigUpdate(t *testing.T) {
|
|
tests := []struct {
|
|
name, description string
|
|
existing, incoming *ipn.ServeConfig
|
|
wantError bool
|
|
}{
|
|
{
|
|
name: "empty existing config",
|
|
description: "should be able to update with empty existing config",
|
|
existing: &ipn.ServeConfig{},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
8080: {},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "no existing config",
|
|
description: "should be able to update with no existing config",
|
|
existing: nil,
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
8080: {},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "empty incoming config",
|
|
description: "wiping config should work",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "no incoming config",
|
|
description: "missing incoming config should not result in an error",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
incoming: nil,
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "non-overlapping update",
|
|
description: "non-overlapping update should work",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
8080: {},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "overwriting background port",
|
|
description: "should be able to overwrite a background port",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
TCPForward: "localhost:8080",
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
TCPForward: "localhost:9999",
|
|
},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "broken existing config",
|
|
description: "broken existing config should not prevent new config updates",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
// Broken because HTTPS and TCPForward are mutually exclusive.
|
|
9000: {
|
|
HTTPS: true,
|
|
TCPForward: "127.0.0.1:9000",
|
|
},
|
|
// Broken because foreground and background handlers cannot coexist.
|
|
443: {},
|
|
},
|
|
Foreground: map[string]*ipn.ServeConfig{
|
|
"12345": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
// Broken because foreground and background handlers cannot coexist.
|
|
443: {},
|
|
},
|
|
},
|
|
},
|
|
// Broken because Services cannot specify TUN mode and a TCP handler.
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
6060: {},
|
|
},
|
|
Tun: true,
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "services same port as background",
|
|
description: "services should be able to use the same port as background listeners",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantError: false,
|
|
},
|
|
{
|
|
name: "services tun mode",
|
|
description: "TUN mode should be mutually exclusive with TCP or web handlers for new Services",
|
|
existing: &ipn.ServeConfig{},
|
|
incoming: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
6060: {},
|
|
},
|
|
Tun: true,
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "new foreground listener",
|
|
description: "new foreground listeners must be on open ports",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
Foreground: map[string]*ipn.ServeConfig{
|
|
"12345": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "new background listener",
|
|
description: "new background listers cannot overwrite foreground listeners",
|
|
existing: &ipn.ServeConfig{
|
|
Foreground: map[string]*ipn.ServeConfig{
|
|
"12345": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "serve type overwrite",
|
|
description: "incoming configuration cannot change the serve type in use by a port",
|
|
existing: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
HTTP: true,
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
TCPForward: "localhost:8080",
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "serve type overwrite services",
|
|
description: "incoming Services configuration cannot change the serve type in use by a port",
|
|
existing: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
HTTP: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
80: {
|
|
TCPForward: "localhost:8080",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "tun mode with handlers",
|
|
description: "Services cannot enable TUN mode if L4 or L7 handlers already exist",
|
|
existing: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
443: {
|
|
HTTPS: true,
|
|
},
|
|
},
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"127.0.0.1:443": {
|
|
Handlers: map[string]*ipn.HTTPHandler{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
Tun: true,
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
{
|
|
name: "handlers with tun mode",
|
|
description: "Services cannot add L4 or L7 handlers if TUN mode is already enabled",
|
|
existing: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
Tun: true,
|
|
},
|
|
},
|
|
},
|
|
incoming: &ipn.ServeConfig{
|
|
Services: map[tailcfg.ServiceName]*ipn.ServiceConfig{
|
|
"svc:foo": {
|
|
TCP: map[uint16]*ipn.TCPPortHandler{
|
|
443: {
|
|
HTTPS: true,
|
|
},
|
|
},
|
|
Web: map[ipn.HostPort]*ipn.WebServerConfig{
|
|
"127.0.0.1:443": {
|
|
Handlers: map[string]*ipn.HTTPHandler{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantError: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := validateServeConfigUpdate(tt.existing.View(), tt.incoming.View())
|
|
if err != nil && !tt.wantError {
|
|
t.Error("unexpected error:", err)
|
|
}
|
|
if err == nil && tt.wantError {
|
|
t.Error("expected error, got nil;", tt.description)
|
|
}
|
|
})
|
|
}
|
|
}
|