mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-10 18:22:37 +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>
299 lines
8.6 KiB
Go
299 lines
8.6 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package taildrop contains the implementation of the Taildrop
|
|
// functionality including sending and retrieving files.
|
|
// This package does not validate permissions, the caller should
|
|
// be responsible for ensuring correct authorization.
|
|
//
|
|
// For related documentation see: http://go/taildrop-how-does-it-work
|
|
package taildrop
|
|
|
|
import (
|
|
"errors"
|
|
"hash/adler32"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"regexp"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
"sync/atomic"
|
|
"unicode"
|
|
"unicode/utf8"
|
|
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/syncs"
|
|
"tailscale.com/tstime"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/util/multierr"
|
|
)
|
|
|
|
var (
|
|
ErrNoTaildrop = errors.New("Taildrop disabled; no storage directory")
|
|
ErrInvalidFileName = errors.New("invalid filename")
|
|
ErrFileExists = errors.New("file already exists")
|
|
ErrNotAccessible = errors.New("Taildrop folder not configured or accessible")
|
|
)
|
|
|
|
const (
|
|
// partialSuffix is the suffix appended to files while they're
|
|
// still in the process of being transferred.
|
|
partialSuffix = ".partial"
|
|
|
|
// deletedSuffix is the suffix for a deleted marker file
|
|
// that's placed next to a file (without the suffix) that we
|
|
// tried to delete, but Windows wouldn't let us. These are
|
|
// only written on Windows (and in tests), but they're not
|
|
// permitted to be uploaded directly on any platform, like
|
|
// partial files.
|
|
deletedSuffix = ".deleted"
|
|
)
|
|
|
|
// clientID is an opaque identifier for file resumption.
|
|
// A client can only list and resume partial files for its own ID.
|
|
// It must contain any filesystem specific characters (e.g., slashes).
|
|
type clientID string // e.g., "n12345CNTRL"
|
|
|
|
func (id clientID) partialSuffix() string {
|
|
if id == "" {
|
|
return partialSuffix
|
|
}
|
|
return "." + string(id) + partialSuffix // e.g., ".n12345CNTRL.partial"
|
|
}
|
|
|
|
// managerOptions are options to configure the [manager].
|
|
type managerOptions struct {
|
|
Logf logger.Logf // may be nil
|
|
Clock tstime.DefaultClock // may be nil
|
|
State ipn.StateStore // may be nil
|
|
|
|
// DirectFileMode reports whether we are writing files
|
|
// directly to a download directory, rather than writing them to
|
|
// a temporary staging directory.
|
|
//
|
|
// The following methods:
|
|
// - HasFilesWaiting
|
|
// - WaitingFiles
|
|
// - DeleteFile
|
|
// - OpenFile
|
|
// have no purpose in DirectFileMode.
|
|
// They are only used to check whether files are in the staging directory,
|
|
// copy them out, and then delete them.
|
|
DirectFileMode bool
|
|
|
|
// FileOps abstracts platform-specific file operations needed for file transfers.
|
|
// Android's implementation uses the Storage Access Framework, and other platforms
|
|
// use fsFileOps.
|
|
fileOps FileOps
|
|
|
|
// SendFileNotify is called periodically while a file is actively
|
|
// receiving the contents for the file. There is a final call
|
|
// to the function when reception completes.
|
|
// It is not called if nil.
|
|
SendFileNotify func()
|
|
}
|
|
|
|
// manager manages the state for receiving and managing taildropped files.
|
|
type manager struct {
|
|
opts managerOptions
|
|
|
|
// incomingFiles is a map of files actively being received.
|
|
incomingFiles syncs.Map[incomingFileKey, *incomingFile]
|
|
// deleter managers asynchronous deletion of files.
|
|
deleter fileDeleter
|
|
|
|
// totalReceived counts the cumulative total of received files.
|
|
totalReceived atomic.Int64
|
|
// emptySince specifies that there were no waiting files
|
|
// since this value of totalReceived.
|
|
emptySince atomic.Int64
|
|
}
|
|
|
|
// New initializes a new taildrop manager.
|
|
// It may spawn asynchronous goroutines to delete files,
|
|
// so the Shutdown method must be called for resource cleanup.
|
|
func (opts managerOptions) New() *manager {
|
|
if opts.Logf == nil {
|
|
opts.Logf = logger.Discard
|
|
}
|
|
if opts.SendFileNotify == nil {
|
|
opts.SendFileNotify = func() {}
|
|
}
|
|
m := &manager{opts: opts}
|
|
m.deleter.Init(m, func(string) {})
|
|
m.emptySince.Store(-1) // invalidate this cache
|
|
return m
|
|
}
|
|
|
|
// Shutdown shuts down the Manager.
|
|
// It blocks until all spawned goroutines have stopped running.
|
|
func (m *manager) Shutdown() {
|
|
if m != nil {
|
|
m.deleter.shutdown()
|
|
m.deleter.group.Wait()
|
|
}
|
|
}
|
|
|
|
func validFilenameRune(r rune) bool {
|
|
switch r {
|
|
case '/':
|
|
return false
|
|
case '\\', ':', '*', '"', '<', '>', '|':
|
|
// Invalid stuff on Windows, but we reject them everywhere
|
|
// for now.
|
|
// TODO(bradfitz): figure out a better plan. We initially just
|
|
// wrote things to disk URL path-escaped, but that's gross
|
|
// when debugging, and just moves the problem to callers.
|
|
// So now we put the UTF-8 filenames on disk directly as
|
|
// sent.
|
|
return false
|
|
}
|
|
return unicode.IsGraphic(r)
|
|
}
|
|
|
|
func isPartialOrDeleted(s string) bool {
|
|
return strings.HasSuffix(s, deletedSuffix) || strings.HasSuffix(s, partialSuffix)
|
|
}
|
|
|
|
func validateBaseName(name string) error {
|
|
if !utf8.ValidString(name) ||
|
|
strings.TrimSpace(name) != name ||
|
|
len(name) > 255 {
|
|
return ErrInvalidFileName
|
|
}
|
|
// TODO: validate unicode normalization form too? Varies by platform.
|
|
clean := path.Clean(name)
|
|
if clean != name || clean == "." || clean == ".." {
|
|
return ErrInvalidFileName
|
|
}
|
|
if isPartialOrDeleted(name) {
|
|
return ErrInvalidFileName
|
|
}
|
|
for _, r := range name {
|
|
if !validFilenameRune(r) {
|
|
return ErrInvalidFileName
|
|
}
|
|
}
|
|
if !filepath.IsLocal(name) {
|
|
return ErrInvalidFileName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// IncomingFiles returns a list of active incoming files.
|
|
func (m *manager) IncomingFiles() []ipn.PartialFile {
|
|
// Make sure we always set n.IncomingFiles non-nil so it gets encoded
|
|
// in JSON to clients. They distinguish between empty and non-nil
|
|
// to know whether a Notify should be able about files.
|
|
files := make([]ipn.PartialFile, 0)
|
|
for k, f := range m.incomingFiles.All() {
|
|
f.mu.Lock()
|
|
files = append(files, ipn.PartialFile{
|
|
Name: k.name,
|
|
Started: f.started,
|
|
DeclaredSize: f.size,
|
|
Received: f.copied,
|
|
PartialPath: f.partialPath,
|
|
FinalPath: f.finalPath,
|
|
Done: f.done,
|
|
})
|
|
f.mu.Unlock()
|
|
}
|
|
|
|
sort.Slice(files, func(i, j int) bool {
|
|
return files[i].Started.Before(files[j].Started)
|
|
})
|
|
|
|
return files
|
|
}
|
|
|
|
type redactedError struct {
|
|
msg string
|
|
inner error
|
|
}
|
|
|
|
func (re *redactedError) Error() string {
|
|
return re.msg
|
|
}
|
|
|
|
func (re *redactedError) Unwrap() error {
|
|
return re.inner
|
|
}
|
|
|
|
func redactString(s string) string {
|
|
hash := adler32.Checksum([]byte(s))
|
|
|
|
const redacted = "redacted"
|
|
var buf [len(redacted) + len(".12345678")]byte
|
|
b := append(buf[:0], []byte(redacted)...)
|
|
b = append(b, '.')
|
|
b = strconv.AppendUint(b, uint64(hash), 16)
|
|
return string(b)
|
|
}
|
|
|
|
func redactError(root error) error {
|
|
// redactStrings is a list of sensitive strings that were redacted.
|
|
// It is not sufficient to just snub out sensitive fields in Go errors
|
|
// since some wrapper errors like fmt.Errorf pre-cache the error string,
|
|
// which would unfortunately remain unaffected.
|
|
var redactStrings []string
|
|
|
|
// Redact sensitive fields in known Go error types.
|
|
var unknownErrors int
|
|
multierr.Range(root, func(err error) bool {
|
|
switch err := err.(type) {
|
|
case *os.PathError:
|
|
redactStrings = append(redactStrings, err.Path)
|
|
err.Path = redactString(err.Path)
|
|
case *os.LinkError:
|
|
redactStrings = append(redactStrings, err.New, err.Old)
|
|
err.New = redactString(err.New)
|
|
err.Old = redactString(err.Old)
|
|
default:
|
|
unknownErrors++
|
|
}
|
|
return true
|
|
})
|
|
|
|
// If there are no redacted strings or no unknown error types,
|
|
// then we can return the possibly modified root error verbatim.
|
|
// Otherwise, we must replace redacted strings from any wrappers.
|
|
if len(redactStrings) == 0 || unknownErrors == 0 {
|
|
return root
|
|
}
|
|
|
|
// Stringify and replace any paths that we found above, then return
|
|
// the error wrapped in a type that uses the newly-redacted string
|
|
// while also allowing Unwrap()-ing to the inner error type(s).
|
|
s := root.Error()
|
|
for _, toRedact := range redactStrings {
|
|
s = strings.ReplaceAll(s, toRedact, redactString(toRedact))
|
|
}
|
|
return &redactedError{msg: s, inner: root}
|
|
}
|
|
|
|
var (
|
|
rxExtensionSuffix = regexp.MustCompile(`(\.[a-zA-Z0-9]{0,3}[a-zA-Z][a-zA-Z0-9]{0,3})*$`)
|
|
rxNumberSuffix = regexp.MustCompile(` \([0-9]+\)`)
|
|
)
|
|
|
|
// nextFilename returns the next filename in a sequence.
|
|
// It is used for construction a new filename if there is a conflict.
|
|
//
|
|
// For example, "Foo.jpg" becomes "Foo (1).jpg" and
|
|
// "Foo (1).jpg" becomes "Foo (2).jpg".
|
|
func nextFilename(name string) string {
|
|
ext := rxExtensionSuffix.FindString(strings.TrimPrefix(name, "."))
|
|
name = strings.TrimSuffix(name, ext)
|
|
var n uint64
|
|
if rxNumberSuffix.MatchString(name) {
|
|
i := strings.LastIndex(name, " (")
|
|
if n, _ = strconv.ParseUint(name[i+len("( "):len(name)-len(")")], 10, 64); n > 0 {
|
|
name = name[:i]
|
|
}
|
|
}
|
|
return name + " (" + strconv.FormatUint(n+1, 10) + ")" + ext
|
|
}
|