mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-30 07:43:42 +00:00

consumeEventbusTopics now owns server and related eventbus machinery. Updates tailscale/corp#30651 Signed-off-by: Jordan Whited <jordan@tailscale.com>
191 lines
5.6 KiB
Go
191 lines
5.6 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package relayserver registers the relay server feature and implements its
|
|
// associated ipnext.Extension.
|
|
package relayserver
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"tailscale.com/disco"
|
|
"tailscale.com/feature"
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/ipn/ipnext"
|
|
"tailscale.com/net/udprelay"
|
|
"tailscale.com/net/udprelay/endpoint"
|
|
"tailscale.com/tailcfg"
|
|
"tailscale.com/types/key"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/types/ptr"
|
|
"tailscale.com/util/eventbus"
|
|
"tailscale.com/wgengine/magicsock"
|
|
)
|
|
|
|
// featureName is the name of the feature implemented by this package.
|
|
// It is also the [extension] name and the log prefix.
|
|
const featureName = "relayserver"
|
|
|
|
func init() {
|
|
feature.Register(featureName)
|
|
ipnext.RegisterExtension(featureName, newExtension)
|
|
}
|
|
|
|
// newExtension is an [ipnext.NewExtensionFn] that creates a new relay server
|
|
// extension. It is registered with [ipnext.RegisterExtension] if the package is
|
|
// imported.
|
|
func newExtension(logf logger.Logf, sb ipnext.SafeBackend) (ipnext.Extension, error) {
|
|
return &extension{
|
|
logf: logger.WithPrefix(logf, featureName+": "),
|
|
bus: sb.Sys().Bus.Get(),
|
|
}, nil
|
|
}
|
|
|
|
// extension is an [ipnext.Extension] managing the relay server on platforms
|
|
// that import this package.
|
|
type extension struct {
|
|
logf logger.Logf
|
|
bus *eventbus.Bus
|
|
|
|
mu sync.Mutex // guards the following fields
|
|
shutdown bool
|
|
port *int // ipn.Prefs.RelayServerPort, nil if disabled
|
|
disconnectFromBusCh chan struct{} // non-nil if consumeEventbusTopics is running, closed to signal it to return
|
|
busDoneCh chan struct{} // non-nil if consumeEventbusTopics is running, closed when it returns
|
|
hasNodeAttrDisableRelayServer bool // tailcfg.NodeAttrDisableRelayServer
|
|
}
|
|
|
|
// relayServer is the interface of [udprelay.Server].
|
|
type relayServer interface {
|
|
AllocateEndpoint(discoA key.DiscoPublic, discoB key.DiscoPublic) (endpoint.ServerEndpoint, error)
|
|
Close() error
|
|
}
|
|
|
|
// Name implements [ipnext.Extension].
|
|
func (e *extension) Name() string {
|
|
return featureName
|
|
}
|
|
|
|
// Init implements [ipnext.Extension] by registering callbacks and providers
|
|
// for the duration of the extension's lifetime.
|
|
func (e *extension) Init(host ipnext.Host) error {
|
|
profile, prefs := host.Profiles().CurrentProfileState()
|
|
e.profileStateChanged(profile, prefs, false)
|
|
host.Hooks().ProfileStateChange.Add(e.profileStateChanged)
|
|
host.Hooks().OnSelfChange.Add(e.selfNodeViewChanged)
|
|
return nil
|
|
}
|
|
|
|
// handleBusLifetimeLocked handles the lifetime of consumeEventbusTopics.
|
|
func (e *extension) handleBusLifetimeLocked() {
|
|
busShouldBeRunning := !e.shutdown && e.port != nil && !e.hasNodeAttrDisableRelayServer
|
|
if !busShouldBeRunning {
|
|
e.disconnectFromBusLocked()
|
|
return
|
|
}
|
|
if e.busDoneCh != nil {
|
|
return // already running
|
|
}
|
|
port := *e.port
|
|
e.disconnectFromBusCh = make(chan struct{})
|
|
e.busDoneCh = make(chan struct{})
|
|
go e.consumeEventbusTopics(port)
|
|
}
|
|
|
|
func (e *extension) selfNodeViewChanged(nodeView tailcfg.NodeView) {
|
|
e.mu.Lock()
|
|
defer e.mu.Unlock()
|
|
e.hasNodeAttrDisableRelayServer = nodeView.HasCap(tailcfg.NodeAttrDisableRelayServer)
|
|
e.handleBusLifetimeLocked()
|
|
}
|
|
|
|
func (e *extension) profileStateChanged(_ ipn.LoginProfileView, prefs ipn.PrefsView, sameNode bool) {
|
|
e.mu.Lock()
|
|
defer e.mu.Unlock()
|
|
newPort, ok := prefs.RelayServerPort().GetOk()
|
|
enableOrDisableServer := ok != (e.port != nil)
|
|
portChanged := ok && e.port != nil && newPort != *e.port
|
|
if enableOrDisableServer || portChanged || !sameNode {
|
|
e.disconnectFromBusLocked()
|
|
e.port = nil
|
|
if ok {
|
|
e.port = ptr.To(newPort)
|
|
}
|
|
}
|
|
e.handleBusLifetimeLocked()
|
|
}
|
|
|
|
func (e *extension) consumeEventbusTopics(port int) {
|
|
defer close(e.busDoneCh)
|
|
|
|
eventClient := e.bus.Client("relayserver.extension")
|
|
reqSub := eventbus.Subscribe[magicsock.UDPRelayAllocReq](eventClient)
|
|
respPub := eventbus.Publish[magicsock.UDPRelayAllocResp](eventClient)
|
|
defer eventClient.Close()
|
|
|
|
var rs relayServer // lazily initialized
|
|
defer func() {
|
|
if rs != nil {
|
|
rs.Close()
|
|
}
|
|
}()
|
|
for {
|
|
select {
|
|
case <-e.disconnectFromBusCh:
|
|
return
|
|
case <-reqSub.Done():
|
|
// If reqSub is done, the eventClient has been closed, which is a
|
|
// signal to return.
|
|
return
|
|
case req := <-reqSub.Events():
|
|
if rs == nil {
|
|
var err error
|
|
rs, err = udprelay.NewServer(e.logf, port, nil)
|
|
if err != nil {
|
|
e.logf("error initializing server: %v", err)
|
|
continue
|
|
}
|
|
}
|
|
se, err := rs.AllocateEndpoint(req.Message.ClientDisco[0], req.Message.ClientDisco[1])
|
|
if err != nil {
|
|
e.logf("error allocating endpoint: %v", err)
|
|
continue
|
|
}
|
|
respPub.Publish(magicsock.UDPRelayAllocResp{
|
|
ReqRxFromNodeKey: req.RxFromNodeKey,
|
|
ReqRxFromDiscoKey: req.RxFromDiscoKey,
|
|
Message: &disco.AllocateUDPRelayEndpointResponse{
|
|
Generation: req.Message.Generation,
|
|
UDPRelayEndpoint: disco.UDPRelayEndpoint{
|
|
ServerDisco: se.ServerDisco,
|
|
ClientDisco: se.ClientDisco,
|
|
LamportID: se.LamportID,
|
|
VNI: se.VNI,
|
|
BindLifetime: se.BindLifetime.Duration,
|
|
SteadyStateLifetime: se.SteadyStateLifetime.Duration,
|
|
AddrPorts: se.AddrPorts,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (e *extension) disconnectFromBusLocked() {
|
|
if e.busDoneCh != nil {
|
|
close(e.disconnectFromBusCh)
|
|
<-e.busDoneCh
|
|
e.busDoneCh = nil
|
|
e.disconnectFromBusCh = nil
|
|
}
|
|
}
|
|
|
|
// Shutdown implements [ipnlocal.Extension].
|
|
func (e *extension) Shutdown() error {
|
|
e.mu.Lock()
|
|
defer e.mu.Unlock()
|
|
e.disconnectFromBusLocked()
|
|
e.shutdown = true
|
|
return nil
|
|
}
|