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>
243 lines
7.1 KiB
Go
243 lines
7.1 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package eventbus
|
|
|
|
import (
|
|
"cmp"
|
|
"fmt"
|
|
"path/filepath"
|
|
"reflect"
|
|
"runtime"
|
|
"slices"
|
|
"strings"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"tailscale.com/syncs"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
// slowSubscriberTimeout is a timeout after which a subscriber that does not
|
|
// accept a pending event will be flagged as being slow.
|
|
const slowSubscriberTimeout = 5 * time.Second
|
|
|
|
// A Debugger offers access to a bus's privileged introspection and
|
|
// debugging facilities.
|
|
//
|
|
// The debugger's functionality is intended for humans and their tools
|
|
// to examine and troubleshoot bus clients, and should not be used in
|
|
// normal codepaths.
|
|
//
|
|
// In particular, the debugger provides access to information that is
|
|
// deliberately withheld from bus clients to encourage more robust and
|
|
// maintainable code - for example, the sender of an event, or the
|
|
// event streams of other clients. Please don't use the debugger to
|
|
// circumvent these restrictions for purposes other than debugging.
|
|
type Debugger struct {
|
|
bus *Bus
|
|
}
|
|
|
|
// Clients returns a list of all clients attached to the bus.
|
|
func (d *Debugger) Clients() []*Client {
|
|
ret := d.bus.listClients()
|
|
slices.SortFunc(ret, func(a, b *Client) int {
|
|
return cmp.Compare(a.Name(), b.Name())
|
|
})
|
|
return ret
|
|
}
|
|
|
|
// PublishQueue returns the contents of the publish queue.
|
|
//
|
|
// The publish queue contains events that have been accepted by the
|
|
// bus from Publish() calls, but have not yet been routed to relevant
|
|
// subscribers.
|
|
//
|
|
// This queue is expected to be almost empty in normal operation. A
|
|
// full publish queue indicates that a slow subscriber downstream is
|
|
// causing backpressure and stalling the bus.
|
|
func (d *Debugger) PublishQueue() []PublishedEvent {
|
|
return d.bus.snapshotPublishQueue()
|
|
}
|
|
|
|
// checkClient verifies that client is attached to the same bus as the
|
|
// Debugger, and panics if not.
|
|
func (d *Debugger) checkClient(client *Client) {
|
|
if client.bus != d.bus {
|
|
panic(fmt.Errorf("SubscribeQueue given client belonging to wrong bus"))
|
|
}
|
|
}
|
|
|
|
// SubscribeQueue returns the contents of the given client's subscribe
|
|
// queue.
|
|
//
|
|
// The subscribe queue contains events that are to be delivered to the
|
|
// client, but haven't yet been handed off to the relevant
|
|
// [Subscriber].
|
|
//
|
|
// This queue is expected to be almost empty in normal operation. A
|
|
// full subscribe queue indicates that the client is accepting events
|
|
// too slowly, and may be causing the rest of the bus to stall.
|
|
func (d *Debugger) SubscribeQueue(client *Client) []DeliveredEvent {
|
|
d.checkClient(client)
|
|
return client.snapshotSubscribeQueue()
|
|
}
|
|
|
|
// WatchBus streams information about all events passing through the
|
|
// bus.
|
|
//
|
|
// Monitored events are delivered in the bus's global publication
|
|
// order (see "Concurrency properties" in the package docs).
|
|
//
|
|
// The caller must consume monitoring events promptly to avoid
|
|
// stalling the bus (see "Expected subscriber behavior" in the package
|
|
// docs).
|
|
func (d *Debugger) WatchBus() *Subscriber[RoutedEvent] {
|
|
return newMonitor(d.bus.routeDebug.add)
|
|
}
|
|
|
|
// WatchPublish streams information about all events published by the
|
|
// given client.
|
|
//
|
|
// Monitored events are delivered in the bus's global publication
|
|
// order (see "Concurrency properties" in the package docs).
|
|
//
|
|
// The caller must consume monitoring events promptly to avoid
|
|
// stalling the bus (see "Expected subscriber behavior" in the package
|
|
// docs).
|
|
func (d *Debugger) WatchPublish(client *Client) *Subscriber[PublishedEvent] {
|
|
d.checkClient(client)
|
|
return newMonitor(client.publishDebug.add)
|
|
}
|
|
|
|
// WatchSubscribe streams information about all events received by the
|
|
// given client.
|
|
//
|
|
// Monitored events are delivered in the bus's global publication
|
|
// order (see "Concurrency properties" in the package docs).
|
|
//
|
|
// The caller must consume monitoring events promptly to avoid
|
|
// stalling the bus (see "Expected subscriber behavior" in the package
|
|
// docs).
|
|
func (d *Debugger) WatchSubscribe(client *Client) *Subscriber[DeliveredEvent] {
|
|
d.checkClient(client)
|
|
return newMonitor(client.subscribeState().debug.add)
|
|
}
|
|
|
|
// PublishTypes returns the list of types being published by client.
|
|
//
|
|
// The returned types are those for which the client has obtained a
|
|
// [Publisher]. The client may not have ever sent the type in
|
|
// question.
|
|
func (d *Debugger) PublishTypes(client *Client) []reflect.Type {
|
|
d.checkClient(client)
|
|
return client.publishTypes()
|
|
}
|
|
|
|
// SubscribeTypes returns the list of types being subscribed to by
|
|
// client.
|
|
//
|
|
// The returned types are those for which the client has obtained a
|
|
// [Subscriber]. The client may not have ever received the type in
|
|
// question, and here may not be any publishers of the type.
|
|
func (d *Debugger) SubscribeTypes(client *Client) []reflect.Type {
|
|
d.checkClient(client)
|
|
return client.subscribeTypes()
|
|
}
|
|
|
|
// A hook collects hook functions that can be run as a group.
|
|
type hook[T any] struct {
|
|
syncs.Mutex
|
|
fns []hookFn[T]
|
|
}
|
|
|
|
var hookID atomic.Uint64
|
|
|
|
// add registers fn to be called when the hook is run. Returns an
|
|
// unregistration function that removes fn from the hook when called.
|
|
func (h *hook[T]) add(fn func(T)) (remove func()) {
|
|
id := hookID.Add(1)
|
|
h.Lock()
|
|
defer h.Unlock()
|
|
h.fns = append(h.fns, hookFn[T]{id, fn})
|
|
return func() { h.remove(id) }
|
|
}
|
|
|
|
// remove removes the function with the given ID from the hook.
|
|
func (h *hook[T]) remove(id uint64) {
|
|
h.Lock()
|
|
defer h.Unlock()
|
|
h.fns = slices.DeleteFunc(h.fns, func(f hookFn[T]) bool { return f.ID == id })
|
|
}
|
|
|
|
// active reports whether any functions are registered with the
|
|
// hook. This can be used to skip expensive work when the hook is
|
|
// inactive.
|
|
func (h *hook[T]) active() bool {
|
|
h.Lock()
|
|
defer h.Unlock()
|
|
return len(h.fns) > 0
|
|
}
|
|
|
|
// run calls all registered functions with the value v.
|
|
func (h *hook[T]) run(v T) {
|
|
h.Lock()
|
|
defer h.Unlock()
|
|
for _, fn := range h.fns {
|
|
fn.Fn(v)
|
|
}
|
|
}
|
|
|
|
type hookFn[T any] struct {
|
|
ID uint64
|
|
Fn func(T)
|
|
}
|
|
|
|
// DebugEvent is a representation of an event used for debug clients.
|
|
type DebugEvent struct {
|
|
Count int
|
|
Type string
|
|
From string
|
|
To []string
|
|
Event any
|
|
}
|
|
|
|
// DebugTopics provides the JSON encoding as a wrapper for a collection of [DebugTopic].
|
|
type DebugTopics struct {
|
|
Topics []DebugTopic
|
|
}
|
|
|
|
// DebugTopic provides the JSON encoding of publishers and subscribers for a
|
|
// given topic.
|
|
type DebugTopic struct {
|
|
Name string
|
|
Publisher string
|
|
Subscribers []string
|
|
}
|
|
|
|
// logfForCaller returns a [logger.Logf] that prefixes its output with the
|
|
// package, filename, and line number of the caller's caller.
|
|
// If logf == nil, it returns [logger.Discard].
|
|
// If the caller location could not be determined, it returns logf unmodified.
|
|
func logfForCaller(logf logger.Logf) logger.Logf {
|
|
if logf == nil {
|
|
return logger.Discard
|
|
}
|
|
pc, fpath, line, _ := runtime.Caller(2) // +1 for my caller, +1 for theirs
|
|
if f := runtime.FuncForPC(pc); f != nil {
|
|
return logger.WithPrefix(logf, fmt.Sprintf("%s %s:%d: ", funcPackageName(f.Name()), filepath.Base(fpath), line))
|
|
}
|
|
return logf
|
|
}
|
|
|
|
func funcPackageName(funcName string) string {
|
|
ls := max(strings.LastIndex(funcName, "/"), 0)
|
|
for {
|
|
i := strings.LastIndex(funcName, ".")
|
|
if i <= ls {
|
|
return funcName
|
|
}
|
|
funcName = funcName[:i]
|
|
}
|
|
}
|