mirror of
https://github.com/tailscale/tailscale.git
synced 2026-01-30 18:41:35 -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>
364 lines
9.0 KiB
Go
364 lines
9.0 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package ts2021
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"encoding/json"
|
|
"io"
|
|
"math"
|
|
"net/http"
|
|
"net/http/httptrace"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
|
|
"golang.org/x/net/http2"
|
|
"tailscale.com/control/controlhttp/controlhttpserver"
|
|
"tailscale.com/net/netmon"
|
|
"tailscale.com/net/tsdial"
|
|
"tailscale.com/tailcfg"
|
|
"tailscale.com/tstest/nettest"
|
|
"tailscale.com/types/key"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/util/must"
|
|
)
|
|
|
|
// maxAllowedNoiseVersion is the highest we expect the Tailscale
|
|
// capability version to ever get. It's a value close to 2^16, but
|
|
// with enough leeway that we get a very early warning that it's time
|
|
// to rework the wire protocol to allow larger versions, while still
|
|
// giving us headroom to bump this test and fix the build.
|
|
//
|
|
// Code elsewhere in the client will panic() if the tailcfg capability
|
|
// version exceeds 16 bits, so take a failure of this test seriously.
|
|
const maxAllowedNoiseVersion = math.MaxUint16 - 5000
|
|
|
|
func TestNoiseVersion(t *testing.T) {
|
|
if tailcfg.CurrentCapabilityVersion > maxAllowedNoiseVersion {
|
|
t.Fatalf("tailcfg.CurrentCapabilityVersion is %d, want <=%d", tailcfg.CurrentCapabilityVersion, maxAllowedNoiseVersion)
|
|
}
|
|
}
|
|
|
|
type noiseClientTest struct {
|
|
sendEarlyPayload bool
|
|
}
|
|
|
|
func TestNoiseClientHTTP2Upgrade(t *testing.T) {
|
|
noiseClientTest{}.run(t)
|
|
}
|
|
|
|
func TestNoiseClientHTTP2Upgrade_earlyPayload(t *testing.T) {
|
|
noiseClientTest{
|
|
sendEarlyPayload: true,
|
|
}.run(t)
|
|
}
|
|
|
|
var (
|
|
testPrivKey = key.NewMachine()
|
|
testServerPub = key.NewMachine().Public()
|
|
)
|
|
|
|
func makeClientWithURL(t *testing.T, url string) *Client {
|
|
nc, err := NewClient(ClientOpts{
|
|
Logf: t.Logf,
|
|
PrivKey: testPrivKey,
|
|
ServerPubKey: testServerPub,
|
|
ServerURL: url,
|
|
Dialer: tsdial.NewDialer(netmon.NewStatic()),
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Cleanup(func() { nc.Close() })
|
|
return nc
|
|
}
|
|
|
|
func TestNoiseClientPortsAreSet(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
url string
|
|
wantHTTPS string
|
|
wantHTTP string
|
|
}{
|
|
{
|
|
name: "https-url",
|
|
url: "https://example.com",
|
|
wantHTTPS: "443",
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "http-url",
|
|
url: "http://example.com",
|
|
wantHTTPS: "443", // TODO(bradfitz): questionable; change?
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "https-url-custom-port",
|
|
url: "https://example.com:123",
|
|
wantHTTPS: "123",
|
|
wantHTTP: "",
|
|
},
|
|
{
|
|
name: "http-url-custom-port",
|
|
url: "http://example.com:123",
|
|
wantHTTPS: "443", // TODO(bradfitz): questionable; change?
|
|
wantHTTP: "123",
|
|
},
|
|
{
|
|
name: "http-loopback-no-port",
|
|
url: "http://127.0.0.1",
|
|
wantHTTPS: "",
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "http-loopback-custom-port",
|
|
url: "http://127.0.0.1:8080",
|
|
wantHTTPS: "",
|
|
wantHTTP: "8080",
|
|
},
|
|
{
|
|
name: "http-localhost-no-port",
|
|
url: "http://localhost",
|
|
wantHTTPS: "",
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "http-localhost-custom-port",
|
|
url: "http://localhost:8080",
|
|
wantHTTPS: "",
|
|
wantHTTP: "8080",
|
|
},
|
|
{
|
|
name: "http-private-ip-no-port",
|
|
url: "http://192.168.2.3",
|
|
wantHTTPS: "",
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "http-private-ip-custom-port",
|
|
url: "http://192.168.2.3:8080",
|
|
wantHTTPS: "",
|
|
wantHTTP: "8080",
|
|
},
|
|
{
|
|
name: "http-public-ip",
|
|
url: "http://1.2.3.4",
|
|
wantHTTPS: "443", // TODO(bradfitz): questionable; change?
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "http-public-ip-custom-port",
|
|
url: "http://1.2.3.4:8080",
|
|
wantHTTPS: "443", // TODO(bradfitz): questionable; change?
|
|
wantHTTP: "8080",
|
|
},
|
|
{
|
|
name: "https-public-ip",
|
|
url: "https://1.2.3.4",
|
|
wantHTTPS: "443",
|
|
wantHTTP: "80",
|
|
},
|
|
{
|
|
name: "https-public-ip-custom-port",
|
|
url: "https://1.2.3.4:8080",
|
|
wantHTTPS: "8080",
|
|
wantHTTP: "",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
nc := makeClientWithURL(t, tt.url)
|
|
if nc.httpsPort != tt.wantHTTPS {
|
|
t.Errorf("nc.httpsPort = %q; want %q", nc.httpsPort, tt.wantHTTPS)
|
|
}
|
|
if nc.httpPort != tt.wantHTTP {
|
|
t.Errorf("nc.httpPort = %q; want %q", nc.httpPort, tt.wantHTTP)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (tt noiseClientTest) run(t *testing.T) {
|
|
serverPrivate := key.NewMachine()
|
|
clientPrivate := key.NewMachine()
|
|
chalPrivate := key.NewChallenge()
|
|
|
|
const msg = "Hello, client"
|
|
h2 := &http2.Server{}
|
|
nw := nettest.GetNetwork(t)
|
|
hs := nettest.NewHTTPServer(nw, &Upgrader{
|
|
h2srv: h2,
|
|
noiseKeyPriv: serverPrivate,
|
|
sendEarlyPayload: tt.sendEarlyPayload,
|
|
challenge: chalPrivate,
|
|
httpBaseConfig: &http.Server{
|
|
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
io.WriteString(w, msg)
|
|
}),
|
|
},
|
|
})
|
|
defer hs.Close()
|
|
|
|
dialer := tsdial.NewDialer(netmon.NewStatic())
|
|
if nettest.PreferMemNetwork() {
|
|
dialer.SetSystemDialerForTest(nw.Dial)
|
|
}
|
|
|
|
nc, err := NewClient(ClientOpts{
|
|
PrivKey: clientPrivate,
|
|
ServerPubKey: serverPrivate.Public(),
|
|
ServerURL: hs.URL,
|
|
Dialer: dialer,
|
|
Logf: t.Logf,
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var sawConn atomic.Bool
|
|
trace := httptrace.WithClientTrace(t.Context(), &httptrace.ClientTrace{
|
|
GotConn: func(ci httptrace.GotConnInfo) {
|
|
ncc, ok := ci.Conn.(*Conn)
|
|
if !ok {
|
|
// This trace hook sees two dials: the lower-level controlhttp upgrade's
|
|
// dial (a tsdial.sysConn), and then the *ts2021.Conn we want.
|
|
// Ignore the first one.
|
|
return
|
|
}
|
|
sawConn.Store(true)
|
|
|
|
ctx, cancel := context.WithTimeout(t.Context(), 5*time.Second)
|
|
defer cancel()
|
|
|
|
payload, err := ncc.GetEarlyPayload(ctx)
|
|
if err != nil {
|
|
t.Errorf("GetEarlyPayload: %v", err)
|
|
return
|
|
}
|
|
|
|
gotNonNil := payload != nil
|
|
if gotNonNil != tt.sendEarlyPayload {
|
|
t.Errorf("sendEarlyPayload = %v but got earlyPayload = %T", tt.sendEarlyPayload, payload)
|
|
}
|
|
if payload != nil {
|
|
if payload.NodeKeyChallenge != chalPrivate.Public() {
|
|
t.Errorf("earlyPayload.NodeKeyChallenge = %v; want %v", payload.NodeKeyChallenge, chalPrivate.Public())
|
|
}
|
|
}
|
|
},
|
|
})
|
|
req := must.Get(http.NewRequestWithContext(trace, "GET", "https://unused.example/", nil))
|
|
|
|
checkRes := func(t *testing.T, res *http.Response) {
|
|
t.Helper()
|
|
defer res.Body.Close()
|
|
all, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if string(all) != msg {
|
|
t.Errorf("got response %q; want %q", all, msg)
|
|
}
|
|
}
|
|
|
|
// Verify we can do HTTP/2 against that conn.
|
|
res, err := nc.Do(req)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
checkRes(t, res)
|
|
|
|
if !sawConn.Load() {
|
|
t.Error("ClientTrace.GotConn never saw the *ts2021.Conn")
|
|
}
|
|
|
|
// And try using the high-level nc.post API as well.
|
|
res, err = nc.Post(context.Background(), "/", key.NodePublic{}, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
checkRes(t, res)
|
|
}
|
|
|
|
// Upgrader is an http.Handler that hijacks and upgrades POST-with-Upgrade
|
|
// request to a Tailscale 2021 connection, then hands the resulting
|
|
// controlbase.Conn off to h2srv.
|
|
type Upgrader struct {
|
|
// h2srv is that will handle requests after the
|
|
// connection has been upgraded to HTTP/2-over-noise.
|
|
h2srv *http2.Server
|
|
|
|
// httpBaseConfig is the http1 server config that h2srv is
|
|
// associated with.
|
|
httpBaseConfig *http.Server
|
|
|
|
logf logger.Logf
|
|
|
|
noiseKeyPriv key.MachinePrivate
|
|
challenge key.ChallengePrivate
|
|
|
|
sendEarlyPayload bool
|
|
}
|
|
|
|
func (up *Upgrader) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
if up == nil || up.h2srv == nil {
|
|
http.Error(w, "invalid server config", http.StatusServiceUnavailable)
|
|
return
|
|
}
|
|
if r.URL.Path != "/ts2021" {
|
|
http.Error(w, "ts2021 upgrader installed at wrong path", http.StatusBadGateway)
|
|
return
|
|
}
|
|
if up.noiseKeyPriv.IsZero() {
|
|
http.Error(w, "keys not available", http.StatusServiceUnavailable)
|
|
return
|
|
}
|
|
|
|
earlyWriteFn := func(protocolVersion int, w io.Writer) error {
|
|
if !up.sendEarlyPayload {
|
|
return nil
|
|
}
|
|
earlyJSON, err := json.Marshal(&tailcfg.EarlyNoise{
|
|
NodeKeyChallenge: up.challenge.Public(),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// 5 bytes that won't be mistaken for an HTTP/2 frame:
|
|
// https://httpwg.org/specs/rfc7540.html#rfc.section.4.1 (Especially not
|
|
// an HTTP/2 settings frame, which isn't of type 'T')
|
|
var notH2Frame [5]byte
|
|
copy(notH2Frame[:], EarlyPayloadMagic)
|
|
var lenBuf [4]byte
|
|
binary.BigEndian.PutUint32(lenBuf[:], uint32(len(earlyJSON)))
|
|
// These writes are all buffered by caller, so fine to do them
|
|
// separately:
|
|
if _, err := w.Write(notH2Frame[:]); err != nil {
|
|
return err
|
|
}
|
|
if _, err := w.Write(lenBuf[:]); err != nil {
|
|
return err
|
|
}
|
|
if _, err := w.Write(earlyJSON[:]); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
cbConn, err := controlhttpserver.AcceptHTTP(r.Context(), w, r, up.noiseKeyPriv, earlyWriteFn)
|
|
if err != nil {
|
|
up.logf("controlhttp: Accept: %v", err)
|
|
return
|
|
}
|
|
defer cbConn.Close()
|
|
|
|
up.h2srv.ServeConn(cbConn, &http2.ServeConnOpts{
|
|
BaseConfig: up.httpBaseConfig,
|
|
})
|
|
}
|