mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-11 02:31:20 +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>
586 lines
14 KiB
Go
586 lines
14 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package distsign
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"crypto/ed25519"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"golang.org/x/crypto/blake2s"
|
|
)
|
|
|
|
func TestDownload(t *testing.T) {
|
|
srv := newTestServer(t)
|
|
c := srv.client(t)
|
|
|
|
tests := []struct {
|
|
desc string
|
|
before func(*testing.T)
|
|
src string
|
|
want []byte
|
|
wantErr bool
|
|
}{
|
|
{
|
|
desc: "missing file",
|
|
before: func(*testing.T) {},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "success",
|
|
before: func(*testing.T) {
|
|
srv.addSigned("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
want: []byte("world"),
|
|
},
|
|
{
|
|
desc: "no signature",
|
|
before: func(*testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "bad signature",
|
|
before: func(*testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", []byte("potato"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "signed with untrusted key",
|
|
before: func(t *testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", newSigningKeyPair(t).sign([]byte("world")))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "signed with root key",
|
|
before: func(t *testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", ed25519.Sign(srv.roots[0].k, []byte("world")))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "bad signing key signature",
|
|
before: func(t *testing.T) {
|
|
srv.add("distsign.pub.sig", []byte("potato"))
|
|
srv.addSigned("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
srv.reset()
|
|
tt.before(t)
|
|
|
|
dst := filepath.Join(t.TempDir(), tt.src)
|
|
t.Cleanup(func() {
|
|
os.Remove(dst)
|
|
})
|
|
err := c.Download(context.Background(), tt.src, dst)
|
|
if err != nil {
|
|
if tt.wantErr {
|
|
return
|
|
}
|
|
t.Fatalf("unexpected error from Download(%q): %v", tt.src, err)
|
|
}
|
|
if tt.wantErr {
|
|
t.Fatalf("Download(%q) succeeded, expected an error", tt.src)
|
|
}
|
|
got, err := os.ReadFile(dst)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !bytes.Equal(tt.want, got) {
|
|
t.Errorf("Download(%q): got %q, want %q", tt.src, got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateLocalBinary(t *testing.T) {
|
|
srv := newTestServer(t)
|
|
c := srv.client(t)
|
|
|
|
tests := []struct {
|
|
desc string
|
|
before func(*testing.T)
|
|
src string
|
|
wantErr bool
|
|
}{
|
|
{
|
|
desc: "missing file",
|
|
before: func(*testing.T) {},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "success",
|
|
before: func(*testing.T) {
|
|
srv.addSigned("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
},
|
|
{
|
|
desc: "contents changed",
|
|
before: func(*testing.T) {
|
|
srv.addSigned("hello", []byte("new world"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "no signature",
|
|
before: func(*testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "bad signature",
|
|
before: func(*testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", []byte("potato"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "signed with untrusted key",
|
|
before: func(t *testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", newSigningKeyPair(t).sign([]byte("world")))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "signed with root key",
|
|
before: func(t *testing.T) {
|
|
srv.add("hello", []byte("world"))
|
|
srv.add("hello.sig", ed25519.Sign(srv.roots[0].k, []byte("world")))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "bad signing key signature",
|
|
before: func(t *testing.T) {
|
|
srv.add("distsign.pub.sig", []byte("potato"))
|
|
srv.addSigned("hello", []byte("world"))
|
|
},
|
|
src: "hello",
|
|
wantErr: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
srv.reset()
|
|
|
|
// First just do a successful Download.
|
|
want := []byte("world")
|
|
srv.addSigned("hello", want)
|
|
dst := filepath.Join(t.TempDir(), tt.src)
|
|
err := c.Download(context.Background(), tt.src, dst)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error from Download(%q): %v", tt.src, err)
|
|
}
|
|
got, err := os.ReadFile(dst)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !bytes.Equal(want, got) {
|
|
t.Errorf("Download(%q): got %q, want %q", tt.src, got, want)
|
|
}
|
|
|
|
// Now we reset srv with the test case and validate against the local dst.
|
|
srv.reset()
|
|
tt.before(t)
|
|
|
|
err = c.ValidateLocalBinary(tt.src, dst)
|
|
if err != nil {
|
|
if tt.wantErr {
|
|
return
|
|
}
|
|
t.Fatalf("unexpected error from ValidateLocalBinary(%q): %v", tt.src, err)
|
|
}
|
|
if tt.wantErr {
|
|
t.Fatalf("ValidateLocalBinary(%q) succeeded, expected an error", tt.src)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRotateRoot(t *testing.T) {
|
|
srv := newTestServer(t)
|
|
c1 := srv.client(t)
|
|
ctx := context.Background()
|
|
|
|
srv.addSigned("hello", []byte("world"))
|
|
if err := c1.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed on a fresh server: %v", err)
|
|
}
|
|
|
|
// Remove first root and replace it with a new key.
|
|
srv.roots = append(srv.roots[1:], newRootKeyPair(t))
|
|
|
|
// Old client can still download files because it still trusts the old
|
|
// root key.
|
|
if err := c1.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after root rotation on old client: %v", err)
|
|
}
|
|
// New client should fail download because current signing key is signed by
|
|
// the revoked root that new client doesn't trust.
|
|
c2 := srv.client(t)
|
|
if err := c2.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err == nil {
|
|
t.Fatalf("Download succeeded on new client, but signing key is signed with revoked root key")
|
|
}
|
|
// Re-sign signing key with another valid root that client still trusts.
|
|
srv.resignSigningKeys()
|
|
// Both old and new clients should now be able to download.
|
|
//
|
|
// Note: we don't need to re-sign the "hello" file because signing key
|
|
// didn't change (only signing key's signature).
|
|
if err := c1.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after root rotation on old client with re-signed signing key: %v", err)
|
|
}
|
|
if err := c2.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after root rotation on new client with re-signed signing key: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestRotateSigning(t *testing.T) {
|
|
srv := newTestServer(t)
|
|
c := srv.client(t)
|
|
ctx := context.Background()
|
|
|
|
srv.addSigned("hello", []byte("world"))
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed on a fresh server: %v", err)
|
|
}
|
|
|
|
// Replace signing key but don't publish it yet.
|
|
srv.sign = append(srv.sign, newSigningKeyPair(t))
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after new signing key added but before publishing it: %v", err)
|
|
}
|
|
|
|
// Publish new signing key bundle with both keys.
|
|
srv.resignSigningKeys()
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after new signing key was published: %v", err)
|
|
}
|
|
|
|
// Re-sign the "hello" file with new signing key.
|
|
srv.add("hello.sig", srv.sign[1].sign([]byte("world")))
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after re-signing with new signing key: %v", err)
|
|
}
|
|
|
|
// Drop the old signing key.
|
|
srv.sign = srv.sign[1:]
|
|
srv.resignSigningKeys()
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after removing old signing key: %v", err)
|
|
}
|
|
|
|
// Add another key and re-sign the file with it *before* publishing.
|
|
srv.sign = append(srv.sign, newSigningKeyPair(t))
|
|
srv.add("hello.sig", srv.sign[1].sign([]byte("world")))
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err == nil {
|
|
t.Fatalf("Download succeeded when signed with a not-yet-published signing key")
|
|
}
|
|
// Fix this by publishing the new key.
|
|
srv.resignSigningKeys()
|
|
if err := c.Download(ctx, "hello", filepath.Join(t.TempDir(), "hello")); err != nil {
|
|
t.Fatalf("Download failed after publishing new signing key: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestParseRootKey(t *testing.T) {
|
|
tests := []struct {
|
|
desc string
|
|
generate func() ([]byte, []byte, error)
|
|
wantErr bool
|
|
}{
|
|
{
|
|
desc: "valid",
|
|
generate: GenerateRootKey,
|
|
},
|
|
{
|
|
desc: "signing",
|
|
generate: GenerateSigningKey,
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "nil",
|
|
generate: func() ([]byte, []byte, error) { return nil, nil, nil },
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "invalid PEM tag",
|
|
generate: func() ([]byte, []byte, error) {
|
|
priv, pub, err := GenerateRootKey()
|
|
priv = bytes.Replace(priv, []byte("ROOT "), nil, -1)
|
|
return priv, pub, err
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "not PEM",
|
|
generate: func() ([]byte, []byte, error) { return []byte("s3cr3t"), nil, nil },
|
|
wantErr: true,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
priv, _, err := tt.generate()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
r, err := ParseRootKey(priv)
|
|
if err != nil {
|
|
if tt.wantErr {
|
|
return
|
|
}
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if tt.wantErr {
|
|
t.Fatal("expected non-nil error")
|
|
}
|
|
if r == nil {
|
|
t.Errorf("got nil error and nil RootKey")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestParseSigningKey(t *testing.T) {
|
|
tests := []struct {
|
|
desc string
|
|
generate func() ([]byte, []byte, error)
|
|
wantErr bool
|
|
}{
|
|
{
|
|
desc: "valid",
|
|
generate: GenerateSigningKey,
|
|
},
|
|
{
|
|
desc: "root",
|
|
generate: GenerateRootKey,
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "nil",
|
|
generate: func() ([]byte, []byte, error) { return nil, nil, nil },
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "invalid PEM tag",
|
|
generate: func() ([]byte, []byte, error) {
|
|
priv, pub, err := GenerateSigningKey()
|
|
priv = bytes.Replace(priv, []byte("SIGNING "), nil, -1)
|
|
return priv, pub, err
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
desc: "not PEM",
|
|
generate: func() ([]byte, []byte, error) { return []byte("s3cr3t"), nil, nil },
|
|
wantErr: true,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
priv, _, err := tt.generate()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
r, err := ParseSigningKey(priv)
|
|
if err != nil {
|
|
if tt.wantErr {
|
|
return
|
|
}
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if tt.wantErr {
|
|
t.Fatal("expected non-nil error")
|
|
}
|
|
if r == nil {
|
|
t.Errorf("got nil error and nil SigningKey")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
type testServer struct {
|
|
roots []rootKeyPair
|
|
sign []signingKeyPair
|
|
files map[string][]byte
|
|
srv *httptest.Server
|
|
}
|
|
|
|
func newTestServer(t *testing.T) *testServer {
|
|
var roots []rootKeyPair
|
|
for range 3 {
|
|
roots = append(roots, newRootKeyPair(t))
|
|
}
|
|
|
|
ts := &testServer{
|
|
roots: roots,
|
|
sign: []signingKeyPair{newSigningKeyPair(t)},
|
|
}
|
|
ts.reset()
|
|
ts.srv = httptest.NewServer(ts)
|
|
t.Cleanup(ts.srv.Close)
|
|
return ts
|
|
}
|
|
|
|
func (s *testServer) client(t *testing.T) *Client {
|
|
roots := make([]ed25519.PublicKey, 0, len(s.roots))
|
|
for _, r := range s.roots {
|
|
pub, err := parseSinglePublicKey(r.pubRaw, pemTypeRootPublic)
|
|
if err != nil {
|
|
t.Fatalf("parsePublicKey: %v", err)
|
|
}
|
|
roots = append(roots, pub)
|
|
}
|
|
u, err := url.Parse(s.srv.URL)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
return &Client{
|
|
logf: t.Logf,
|
|
roots: roots,
|
|
pkgsAddr: u,
|
|
}
|
|
}
|
|
|
|
func (s *testServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
path := strings.TrimPrefix(r.URL.Path, "/")
|
|
data, ok := s.files[path]
|
|
if !ok {
|
|
http.NotFound(w, r)
|
|
return
|
|
}
|
|
w.Write(data)
|
|
}
|
|
|
|
func (s *testServer) addSigned(name string, data []byte) {
|
|
s.files[name] = data
|
|
s.files[name+".sig"] = s.sign[0].sign(data)
|
|
}
|
|
|
|
func (s *testServer) add(name string, data []byte) {
|
|
s.files[name] = data
|
|
}
|
|
|
|
func (s *testServer) reset() {
|
|
s.files = make(map[string][]byte)
|
|
s.resignSigningKeys()
|
|
}
|
|
|
|
func (s *testServer) resignSigningKeys() {
|
|
var pubs [][]byte
|
|
for _, k := range s.sign {
|
|
pubs = append(pubs, k.pubRaw)
|
|
}
|
|
bundle := bytes.Join(pubs, []byte("\n"))
|
|
sig := s.roots[0].sign(bundle)
|
|
s.files["distsign.pub"] = bundle
|
|
s.files["distsign.pub.sig"] = sig
|
|
}
|
|
|
|
type rootKeyPair struct {
|
|
*RootKey
|
|
keyPair
|
|
}
|
|
|
|
func newRootKeyPair(t *testing.T) rootKeyPair {
|
|
privRaw, pubRaw, err := GenerateRootKey()
|
|
if err != nil {
|
|
t.Fatalf("GenerateRootKey: %v", err)
|
|
}
|
|
kp := keyPair{
|
|
privRaw: privRaw,
|
|
pubRaw: pubRaw,
|
|
}
|
|
priv, err := parsePrivateKey(kp.privRaw, pemTypeRootPrivate)
|
|
if err != nil {
|
|
t.Fatalf("parsePrivateKey: %v", err)
|
|
}
|
|
return rootKeyPair{
|
|
RootKey: &RootKey{k: priv},
|
|
keyPair: kp,
|
|
}
|
|
}
|
|
|
|
func (s rootKeyPair) sign(bundle []byte) []byte {
|
|
sig, err := s.SignSigningKeys(bundle)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return sig
|
|
}
|
|
|
|
type signingKeyPair struct {
|
|
*SigningKey
|
|
keyPair
|
|
}
|
|
|
|
func newSigningKeyPair(t *testing.T) signingKeyPair {
|
|
privRaw, pubRaw, err := GenerateSigningKey()
|
|
if err != nil {
|
|
t.Fatalf("GenerateSigningKey: %v", err)
|
|
}
|
|
kp := keyPair{
|
|
privRaw: privRaw,
|
|
pubRaw: pubRaw,
|
|
}
|
|
priv, err := parsePrivateKey(kp.privRaw, pemTypeSigningPrivate)
|
|
if err != nil {
|
|
t.Fatalf("parsePrivateKey: %v", err)
|
|
}
|
|
return signingKeyPair{
|
|
SigningKey: &SigningKey{k: priv},
|
|
keyPair: kp,
|
|
}
|
|
}
|
|
|
|
func (s signingKeyPair) sign(blob []byte) []byte {
|
|
hash := blake2s.Sum256(blob)
|
|
sig, err := s.SignPackageHash(hash[:], int64(len(blob)))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return sig
|
|
}
|
|
|
|
type keyPair struct {
|
|
privRaw []byte
|
|
pubRaw []byte
|
|
}
|