| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733 |
- // Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package controlclient
- import (
- "bufio"
- "bytes"
- "context"
- "encoding/binary"
- "encoding/json"
- "errors"
- "flag"
- "fmt"
- "io"
- "log"
- "net/http"
- "net/http/httptest"
- "net/netip"
- "net/url"
- "os"
- "reflect"
- "runtime"
- "strings"
- "sync"
- "time"
- "go4.org/mem"
- "tailscale.com/control/controlknobs"
- "tailscale.com/envknob"
- "tailscale.com/health"
- "tailscale.com/hostinfo"
- "tailscale.com/ipn/ipnstate"
- "tailscale.com/log/logheap"
- "tailscale.com/logtail"
- "tailscale.com/net/dnscache"
- "tailscale.com/net/dnsfallback"
- "tailscale.com/net/interfaces"
- "tailscale.com/net/netutil"
- "tailscale.com/net/tlsdial"
- "tailscale.com/net/tsdial"
- "tailscale.com/net/tshttpproxy"
- "tailscale.com/syncs"
- "tailscale.com/tailcfg"
- "tailscale.com/tka"
- "tailscale.com/types/key"
- "tailscale.com/types/logger"
- "tailscale.com/types/netmap"
- "tailscale.com/types/opt"
- "tailscale.com/types/persist"
- "tailscale.com/types/tkatype"
- "tailscale.com/util/clientmetric"
- "tailscale.com/util/multierr"
- "tailscale.com/util/singleflight"
- "tailscale.com/util/systemd"
- "tailscale.com/wgengine/monitor"
- )
- // Direct is the client that connects to a tailcontrol server for a node.
- type Direct struct {
- httpc *http.Client // HTTP client used to talk to tailcontrol
- dialer *tsdial.Dialer
- serverURL string // URL of the tailcontrol server
- timeNow func() time.Time
- lastPrintMap time.Time
- newDecompressor func() (Decompressor, error)
- keepAlive bool
- logf logger.Logf
- linkMon *monitor.Mon // or nil
- discoPubKey key.DiscoPublic
- getMachinePrivKey func() (key.MachinePrivate, error)
- getNLPrivateKey func() (key.NLPrivate, error) // or nil
- debugFlags []string
- keepSharerAndUserSplit bool
- skipIPForwardingCheck bool
- pinger Pinger
- popBrowser func(url string) // or nil
- c2nHandler http.Handler // or nil
- dialPlan ControlDialPlanner // can be nil
- mu sync.Mutex // mutex guards the following fields
- serverKey key.MachinePublic // original ("legacy") nacl crypto_box-based public key
- serverNoiseKey key.MachinePublic
- sfGroup singleflight.Group[struct{}, *NoiseClient] // protects noiseClient creation.
- noiseClient *NoiseClient
- persist persist.PersistView
- authKey string
- tryingNewKey key.NodePrivate
- expiry *time.Time
- hostinfo *tailcfg.Hostinfo // always non-nil
- netinfo *tailcfg.NetInfo
- endpoints []tailcfg.Endpoint
- tkaHead string
- everEndpoints bool // whether we've ever had non-empty endpoints
- lastPingURL string // last PingRequest.URL received, for dup suppression
- }
- type Options struct {
- Persist persist.Persist // initial persistent data
- GetMachinePrivateKey func() (key.MachinePrivate, error) // returns the machine key to use
- ServerURL string // URL of the tailcontrol server
- AuthKey string // optional node auth key for auto registration
- TimeNow func() time.Time // time.Now implementation used by Client
- Hostinfo *tailcfg.Hostinfo // non-nil passes ownership, nil means to use default using os.Hostname, etc
- DiscoPublicKey key.DiscoPublic
- NewDecompressor func() (Decompressor, error)
- KeepAlive bool
- Logf logger.Logf
- HTTPTestClient *http.Client // optional HTTP client to use (for tests only)
- NoiseTestClient *http.Client // optional HTTP client to use for noise RPCs (tests only)
- DebugFlags []string // debug settings to send to control
- LinkMonitor *monitor.Mon // optional link monitor
- PopBrowserURL func(url string) // optional func to open browser
- Dialer *tsdial.Dialer // non-nil
- C2NHandler http.Handler // or nil
- // GetNLPrivateKey specifies an optional function to use
- // Network Lock. If nil, it's not used.
- GetNLPrivateKey func() (key.NLPrivate, error)
- // Status is called when there's a change in status.
- Status func(Status)
- // KeepSharerAndUserSplit controls whether the client
- // understands Node.Sharer. If false, the Sharer is mapped to the User.
- KeepSharerAndUserSplit bool
- // SkipIPForwardingCheck declares that the host's IP
- // forwarding works and should not be double-checked by the
- // controlclient package.
- SkipIPForwardingCheck bool
- // Pinger optionally specifies the Pinger to use to satisfy
- // MapResponse.PingRequest queries from the control plane.
- // If nil, PingRequest queries are not answered.
- Pinger Pinger
- // DialPlan contains and stores a previous dial plan that we received
- // from the control server; if nil, we fall back to using DNS.
- //
- // If we receive a new DialPlan from the server, this value will be
- // updated.
- DialPlan ControlDialPlanner
- }
- // ControlDialPlanner is the interface optionally supplied when creating a
- // control client to control exactly how TCP connections to the control plane
- // are dialed.
- //
- // It is usually implemented by an atomic.Pointer.
- type ControlDialPlanner interface {
- // Load returns the current plan for how to connect to control.
- //
- // The returned plan can be nil. If so, connections should be made by
- // resolving the control URL using DNS.
- Load() *tailcfg.ControlDialPlan
- // Store updates the dial plan with new directions from the control
- // server.
- //
- // The dial plan can span multiple connections to the control server.
- // That is, a dial plan received when connected over Wi-Fi is still
- // valid for a subsequent connection over LTE after a network switch.
- Store(*tailcfg.ControlDialPlan)
- }
- // Pinger is the LocalBackend.Ping method.
- type Pinger interface {
- // Ping is a request to do a ping with the peer handling the given IP.
- Ping(ctx context.Context, ip netip.Addr, pingType tailcfg.PingType) (*ipnstate.PingResult, error)
- }
- type Decompressor interface {
- DecodeAll(input, dst []byte) ([]byte, error)
- Close()
- }
- // NewDirect returns a new Direct client.
- func NewDirect(opts Options) (*Direct, error) {
- if opts.ServerURL == "" {
- return nil, errors.New("controlclient.New: no server URL specified")
- }
- if opts.GetMachinePrivateKey == nil {
- return nil, errors.New("controlclient.New: no GetMachinePrivateKey specified")
- }
- opts.ServerURL = strings.TrimRight(opts.ServerURL, "/")
- serverURL, err := url.Parse(opts.ServerURL)
- if err != nil {
- return nil, err
- }
- if opts.TimeNow == nil {
- opts.TimeNow = time.Now
- }
- if opts.Logf == nil {
- // TODO(apenwarr): remove this default and fail instead.
- // TODO(bradfitz): ... but then it shouldn't be in Options.
- opts.Logf = log.Printf
- }
- httpc := opts.HTTPTestClient
- if httpc == nil && runtime.GOOS == "js" {
- // In js/wasm, net/http.Transport (as of Go 1.18) will
- // only use the browser's Fetch API if you're using
- // the DefaultClient (or a client without dial hooks
- // etc set).
- httpc = http.DefaultClient
- }
- if httpc == nil {
- dnsCache := &dnscache.Resolver{
- Forward: dnscache.Get().Forward, // use default cache's forwarder
- UseLastGood: true,
- LookupIPFallback: dnsfallback.Lookup,
- }
- tr := http.DefaultTransport.(*http.Transport).Clone()
- tr.Proxy = tshttpproxy.ProxyFromEnvironment
- tshttpproxy.SetTransportGetProxyConnectHeader(tr)
- tr.TLSClientConfig = tlsdial.Config(serverURL.Hostname(), tr.TLSClientConfig)
- tr.DialContext = dnscache.Dialer(opts.Dialer.SystemDial, dnsCache)
- tr.DialTLSContext = dnscache.TLSDialer(opts.Dialer.SystemDial, dnsCache, tr.TLSClientConfig)
- tr.ForceAttemptHTTP2 = true
- // Disable implicit gzip compression; the various
- // handlers (register, map, set-dns, etc) do their own
- // zstd compression per naclbox.
- tr.DisableCompression = true
- httpc = &http.Client{Transport: tr}
- }
- c := &Direct{
- httpc: httpc,
- getMachinePrivKey: opts.GetMachinePrivateKey,
- getNLPrivateKey: opts.GetNLPrivateKey,
- serverURL: opts.ServerURL,
- timeNow: opts.TimeNow,
- logf: opts.Logf,
- newDecompressor: opts.NewDecompressor,
- keepAlive: opts.KeepAlive,
- persist: opts.Persist.View(),
- authKey: opts.AuthKey,
- discoPubKey: opts.DiscoPublicKey,
- debugFlags: opts.DebugFlags,
- keepSharerAndUserSplit: opts.KeepSharerAndUserSplit,
- linkMon: opts.LinkMonitor,
- skipIPForwardingCheck: opts.SkipIPForwardingCheck,
- pinger: opts.Pinger,
- popBrowser: opts.PopBrowserURL,
- c2nHandler: opts.C2NHandler,
- dialer: opts.Dialer,
- dialPlan: opts.DialPlan,
- }
- if opts.Hostinfo == nil {
- c.SetHostinfo(hostinfo.New())
- } else {
- ni := opts.Hostinfo.NetInfo
- opts.Hostinfo.NetInfo = nil
- c.SetHostinfo(opts.Hostinfo)
- if ni != nil {
- c.SetNetInfo(ni)
- }
- }
- if opts.NoiseTestClient != nil {
- c.noiseClient = &NoiseClient{
- Client: opts.NoiseTestClient,
- }
- c.serverNoiseKey = key.NewMachine().Public() // prevent early error before hitting test client
- }
- return c, nil
- }
- // Close closes the underlying Noise connection(s).
- func (c *Direct) Close() error {
- c.mu.Lock()
- defer c.mu.Unlock()
- if c.noiseClient != nil {
- if err := c.noiseClient.Close(); err != nil {
- return err
- }
- }
- c.noiseClient = nil
- return nil
- }
- // SetHostinfo clones the provided Hostinfo and remembers it for the
- // next update. It reports whether the Hostinfo has changed.
- func (c *Direct) SetHostinfo(hi *tailcfg.Hostinfo) bool {
- if hi == nil {
- panic("nil Hostinfo")
- }
- c.mu.Lock()
- defer c.mu.Unlock()
- if hi.Equal(c.hostinfo) {
- return false
- }
- c.hostinfo = hi.Clone()
- j, _ := json.Marshal(c.hostinfo)
- c.logf("[v1] HostInfo: %s", j)
- return true
- }
- // SetNetInfo clones the provided NetInfo and remembers it for the
- // next update. It reports whether the NetInfo has changed.
- func (c *Direct) SetNetInfo(ni *tailcfg.NetInfo) bool {
- if ni == nil {
- panic("nil NetInfo")
- }
- c.mu.Lock()
- defer c.mu.Unlock()
- if reflect.DeepEqual(ni, c.netinfo) {
- return false
- }
- c.netinfo = ni.Clone()
- c.logf("NetInfo: %v", ni)
- return true
- }
- // SetNetInfo stores a new TKA head value for next update.
- // It reports whether the TKA head changed.
- func (c *Direct) SetTKAHead(tkaHead string) bool {
- c.mu.Lock()
- defer c.mu.Unlock()
- if tkaHead == c.tkaHead {
- return false
- }
- c.tkaHead = tkaHead
- c.logf("tkaHead: %v", tkaHead)
- return true
- }
- func (c *Direct) GetPersist() persist.PersistView {
- c.mu.Lock()
- defer c.mu.Unlock()
- return c.persist
- }
- func (c *Direct) TryLogout(ctx context.Context) error {
- c.logf("[v1] direct.TryLogout()")
- mustRegen, newURL, _, err := c.doLogin(ctx, loginOpt{Logout: true})
- c.logf("[v1] TryLogout control response: mustRegen=%v, newURL=%v, err=%v", mustRegen, newURL, err)
- c.mu.Lock()
- c.persist = new(persist.Persist).View()
- c.mu.Unlock()
- return err
- }
- func (c *Direct) TryLogin(ctx context.Context, t *tailcfg.Oauth2Token, flags LoginFlags) (url string, err error) {
- c.logf("[v1] direct.TryLogin(token=%v, flags=%v)", t != nil, flags)
- return c.doLoginOrRegen(ctx, loginOpt{Token: t, Flags: flags})
- }
- // WaitLoginURL sits in a long poll waiting for the user to authenticate at url.
- //
- // On success, newURL and err will both be nil.
- func (c *Direct) WaitLoginURL(ctx context.Context, url string) (newURL string, err error) {
- c.logf("[v1] direct.WaitLoginURL")
- return c.doLoginOrRegen(ctx, loginOpt{URL: url})
- }
- func (c *Direct) doLoginOrRegen(ctx context.Context, opt loginOpt) (newURL string, err error) {
- mustRegen, url, oldNodeKeySignature, err := c.doLogin(ctx, opt)
- if err != nil {
- return url, err
- }
- if mustRegen {
- opt.Regen = true
- opt.OldNodeKeySignature = oldNodeKeySignature
- _, url, _, err = c.doLogin(ctx, opt)
- }
- return url, err
- }
- // SetExpirySooner attempts to shorten the expiry to the specified time.
- func (c *Direct) SetExpirySooner(ctx context.Context, expiry time.Time) error {
- c.logf("[v1] direct.SetExpirySooner()")
- newURL, err := c.doLoginOrRegen(ctx, loginOpt{Expiry: &expiry})
- c.logf("[v1] SetExpirySooner control response: newURL=%v, err=%v", newURL, err)
- return err
- }
- type loginOpt struct {
- Token *tailcfg.Oauth2Token
- Flags LoginFlags
- Regen bool // generate a new nodekey, can be overridden in doLogin
- URL string
- Logout bool // set the expiry to the far past, expiring the node
- // Expiry, if non-nil, attempts to set the node expiry to the
- // specified time and cannot be used to extend the expiry.
- // It is ignored if Logout is set since Logout works by setting a
- // expiry time in the far past.
- Expiry *time.Time
- // OldNodeKeySignature indicates the former NodeKeySignature
- // that must be resigned for the new node-key.
- OldNodeKeySignature tkatype.MarshaledSignature
- }
- // httpClient provides a common interface for the noiseClient and
- // the NaCl box http.Client.
- type httpClient interface {
- Do(req *http.Request) (*http.Response, error)
- }
- // hostInfoLocked returns a Clone of c.hostinfo and c.netinfo.
- // It must only be called with c.mu held.
- func (c *Direct) hostInfoLocked() *tailcfg.Hostinfo {
- hi := c.hostinfo.Clone()
- hi.NetInfo = c.netinfo.Clone()
- return hi
- }
- func (c *Direct) doLogin(ctx context.Context, opt loginOpt) (mustRegen bool, newURL string, nks tkatype.MarshaledSignature, err error) {
- c.mu.Lock()
- persist := c.persist.AsStruct()
- tryingNewKey := c.tryingNewKey
- serverKey := c.serverKey
- serverNoiseKey := c.serverNoiseKey
- authKey := c.authKey
- hi := c.hostInfoLocked()
- backendLogID := hi.BackendLogID
- expired := c.expiry != nil && !c.expiry.IsZero() && c.expiry.Before(c.timeNow())
- c.mu.Unlock()
- machinePrivKey, err := c.getMachinePrivKey()
- if err != nil {
- return false, "", nil, fmt.Errorf("getMachinePrivKey: %w", err)
- }
- if machinePrivKey.IsZero() {
- return false, "", nil, errors.New("getMachinePrivKey returned zero key")
- }
- regen := opt.Regen
- if opt.Logout {
- c.logf("logging out...")
- } else {
- if expired {
- c.logf("Old key expired -> regen=true")
- systemd.Status("key expired; run 'tailscale up' to authenticate")
- regen = true
- }
- if (opt.Flags & LoginInteractive) != 0 {
- c.logf("LoginInteractive -> regen=true")
- regen = true
- }
- }
- c.logf("doLogin(regen=%v, hasUrl=%v)", regen, opt.URL != "")
- if serverKey.IsZero() {
- keys, err := loadServerPubKeys(ctx, c.httpc, c.serverURL)
- if err != nil {
- return regen, opt.URL, nil, err
- }
- c.logf("control server key from %s: ts2021=%s, legacy=%v", c.serverURL, keys.PublicKey.ShortString(), keys.LegacyPublicKey.ShortString())
- c.mu.Lock()
- c.serverKey = keys.LegacyPublicKey
- c.serverNoiseKey = keys.PublicKey
- c.mu.Unlock()
- serverKey = keys.LegacyPublicKey
- serverNoiseKey = keys.PublicKey
- // For servers supporting the Noise transport,
- // proactively shut down our TLS TCP connection.
- // We're not going to need it and it's nicer to the
- // server.
- if !serverNoiseKey.IsZero() {
- c.httpc.CloseIdleConnections()
- }
- }
- var oldNodeKey key.NodePublic
- switch {
- case opt.Logout:
- tryingNewKey = persist.PrivateNodeKey
- case opt.URL != "":
- // Nothing.
- case regen || persist.PrivateNodeKey.IsZero():
- c.logf("Generating a new nodekey.")
- persist.OldPrivateNodeKey = persist.PrivateNodeKey
- tryingNewKey = key.NewNode()
- default:
- // Try refreshing the current key first
- tryingNewKey = persist.PrivateNodeKey
- }
- if !persist.OldPrivateNodeKey.IsZero() {
- oldNodeKey = persist.OldPrivateNodeKey.Public()
- }
- if tryingNewKey.IsZero() {
- if opt.Logout {
- return false, "", nil, errors.New("no nodekey to log out")
- }
- log.Fatalf("tryingNewKey is empty, give up")
- }
- var nlPub key.NLPublic
- var nodeKeySignature tkatype.MarshaledSignature
- if c.getNLPrivateKey != nil {
- priv, err := c.getNLPrivateKey()
- if err != nil {
- return false, "", nil, fmt.Errorf("get nl key: %v", err)
- }
- nlPub = priv.Public()
- if !oldNodeKey.IsZero() && opt.OldNodeKeySignature != nil {
- if nodeKeySignature, err = resignNKS(priv, tryingNewKey.Public(), opt.OldNodeKeySignature); err != nil {
- c.logf("Failed re-signing node-key signature: %v", err)
- }
- }
- }
- if backendLogID == "" {
- err = errors.New("hostinfo: BackendLogID missing")
- return regen, opt.URL, nil, err
- }
- now := time.Now().Round(time.Second)
- request := tailcfg.RegisterRequest{
- Version: 1,
- OldNodeKey: oldNodeKey,
- NodeKey: tryingNewKey.Public(),
- NLKey: nlPub,
- Hostinfo: hi,
- Followup: opt.URL,
- Timestamp: &now,
- Ephemeral: (opt.Flags & LoginEphemeral) != 0,
- NodeKeySignature: nodeKeySignature,
- }
- if opt.Logout {
- request.Expiry = time.Unix(123, 0) // far in the past
- } else if opt.Expiry != nil {
- request.Expiry = *opt.Expiry
- }
- c.logf("RegisterReq: onode=%v node=%v fup=%v nks=%v",
- request.OldNodeKey.ShortString(),
- request.NodeKey.ShortString(), opt.URL != "", len(nodeKeySignature) > 0)
- request.Auth.Oauth2Token = opt.Token
- request.Auth.Provider = persist.Provider
- request.Auth.LoginName = persist.LoginName
- request.Auth.AuthKey = authKey
- err = signRegisterRequest(&request, c.serverURL, c.serverKey, machinePrivKey.Public())
- if err != nil {
- // If signing failed, clear all related fields
- request.SignatureType = tailcfg.SignatureNone
- request.Timestamp = nil
- request.DeviceCert = nil
- request.Signature = nil
- // Don't log the common error types. Signatures are not usually enabled,
- // so these are expected.
- if !errors.Is(err, errCertificateNotConfigured) && !errors.Is(err, errNoCertStore) {
- c.logf("RegisterReq sign error: %v", err)
- }
- }
- if debugRegister() {
- j, _ := json.MarshalIndent(request, "", "\t")
- c.logf("RegisterRequest: %s", j)
- }
- // URL and httpc are protocol specific.
- var url string
- var httpc httpClient
- if serverNoiseKey.IsZero() {
- httpc = c.httpc
- url = fmt.Sprintf("%s/machine/%s", c.serverURL, machinePrivKey.Public().UntypedHexString())
- } else {
- request.Version = tailcfg.CurrentCapabilityVersion
- httpc, err = c.getNoiseClient()
- if err != nil {
- return regen, opt.URL, nil, fmt.Errorf("getNoiseClient: %w", err)
- }
- url = fmt.Sprintf("%s/machine/register", c.serverURL)
- url = strings.Replace(url, "http:", "https:", 1)
- }
- bodyData, err := encode(request, serverKey, serverNoiseKey, machinePrivKey)
- if err != nil {
- return regen, opt.URL, nil, err
- }
- req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewReader(bodyData))
- if err != nil {
- return regen, opt.URL, nil, err
- }
- res, err := httpc.Do(req)
- if err != nil {
- return regen, opt.URL, nil, fmt.Errorf("register request: %w", err)
- }
- if res.StatusCode != 200 {
- msg, _ := io.ReadAll(res.Body)
- res.Body.Close()
- return regen, opt.URL, nil, fmt.Errorf("register request: http %d: %.200s",
- res.StatusCode, strings.TrimSpace(string(msg)))
- }
- resp := tailcfg.RegisterResponse{}
- if err := decode(res, &resp, serverKey, serverNoiseKey, machinePrivKey); err != nil {
- c.logf("error decoding RegisterResponse with server key %s and machine key %s: %v", serverKey, machinePrivKey.Public(), err)
- return regen, opt.URL, nil, fmt.Errorf("register request: %v", err)
- }
- if debugRegister() {
- j, _ := json.MarshalIndent(resp, "", "\t")
- c.logf("RegisterResponse: %s", j)
- }
- // Log without PII:
- c.logf("RegisterReq: got response; nodeKeyExpired=%v, machineAuthorized=%v; authURL=%v",
- resp.NodeKeyExpired, resp.MachineAuthorized, resp.AuthURL != "")
- if resp.Error != "" {
- return false, "", nil, UserVisibleError(resp.Error)
- }
- if len(resp.NodeKeySignature) > 0 {
- return true, "", resp.NodeKeySignature, nil
- }
- if resp.NodeKeyExpired {
- if regen {
- return true, "", nil, fmt.Errorf("weird: regen=true but server says NodeKeyExpired: %v", request.NodeKey)
- }
- c.logf("server reports new node key %v has expired",
- request.NodeKey.ShortString())
- return true, "", nil, nil
- }
- if resp.Login.Provider != "" {
- persist.Provider = resp.Login.Provider
- }
- if resp.Login.LoginName != "" {
- persist.LoginName = resp.Login.LoginName
- }
- persist.UserProfile = tailcfg.UserProfile{
- ID: resp.User.ID,
- DisplayName: resp.Login.DisplayName,
- ProfilePicURL: resp.Login.ProfilePicURL,
- LoginName: resp.Login.LoginName,
- }
- // TODO(crawshaw): RegisterResponse should be able to mechanically
- // communicate some extra instructions from the server:
- // - new node key required
- // - machine key no longer supported
- // - user is disabled
- if resp.AuthURL != "" {
- c.logf("AuthURL is %v", resp.AuthURL)
- } else {
- c.logf("[v1] No AuthURL")
- }
- c.mu.Lock()
- if resp.AuthURL == "" {
- // key rotation is complete
- persist.PrivateNodeKey = tryingNewKey
- } else {
- // save it for the retry-with-URL
- c.tryingNewKey = tryingNewKey
- }
- c.persist = persist.View()
- c.mu.Unlock()
- if err != nil {
- return regen, "", nil, err
- }
- if ctx.Err() != nil {
- return regen, "", nil, ctx.Err()
- }
- return false, resp.AuthURL, nil, nil
- }
- // resignNKS re-signs a node-key signature for a new node-key.
- //
- // This only matters on network-locked tailnets, because node-key signatures are
- // how other nodes know that a node-key is authentic. When the node-key is
- // rotated then the existing signature becomes invalid, so this function is
- // responsible for generating a new wrapping signature to certify the new node-key.
- //
- // The signature itself is a SigRotation signature, which embeds the old signature
- // and certifies the new node-key as a replacement for the old by signing the new
- // signature with RotationPubkey (which is the node's own network-lock key).
- func resignNKS(priv key.NLPrivate, nodeKey key.NodePublic, oldNKS tkatype.MarshaledSignature) (tkatype.MarshaledSignature, error) {
- var oldSig tka.NodeKeySignature
- if err := oldSig.Unserialize(oldNKS); err != nil {
- return nil, fmt.Errorf("decoding NKS: %w", err)
- }
- nk, err := nodeKey.MarshalBinary()
- if err != nil {
- return nil, fmt.Errorf("marshalling node-key: %w", err)
- }
- if bytes.Equal(nk, oldSig.Pubkey) {
- // The old signature is valid for the node-key we are using, so just
- // use it verbatim.
- return oldNKS, nil
- }
- newSig := tka.NodeKeySignature{
- SigKind: tka.SigRotation,
- Pubkey: nk,
- Nested: &oldSig,
- }
- if newSig.Signature, err = priv.SignNKS(newSig.SigHash()); err != nil {
- return nil, fmt.Errorf("signing NKS: %w", err)
- }
- return newSig.Serialize(), nil
- }
- func sameEndpoints(a, b []tailcfg.Endpoint) bool {
- if len(a) != len(b) {
- return false
- }
- for i := range a {
- if a[i] != b[i] {
- return false
- }
- }
- return true
- }
- // newEndpoints acquires c.mu and sets the local port and endpoints and reports
- // whether they've changed.
- //
- // It does not retain the provided slice.
- func (c *Direct) newEndpoints(endpoints []tailcfg.Endpoint) (changed bool) {
- c.mu.Lock()
- defer c.mu.Unlock()
- // Nothing new?
- if sameEndpoints(c.endpoints, endpoints) {
- return false // unchanged
- }
- var epStrs []string
- for _, ep := range endpoints {
- epStrs = append(epStrs, ep.Addr.String())
- }
- c.logf("[v2] client.newEndpoints(%v)", epStrs)
- c.endpoints = append(c.endpoints[:0], endpoints...)
- if len(endpoints) > 0 {
- c.everEndpoints = true
- }
- return true // changed
- }
- // SetEndpoints updates the list of locally advertised endpoints.
- // It won't be replicated to the server until a *fresh* call to PollNetMap().
- // You don't need to restart PollNetMap if we return changed==false.
- func (c *Direct) SetEndpoints(endpoints []tailcfg.Endpoint) (changed bool) {
- // (no log message on function entry, because it clutters the logs
- // if endpoints haven't changed. newEndpoints() will log it.)
- return c.newEndpoints(endpoints)
- }
- func inTest() bool { return flag.Lookup("test.v") != nil }
- // PollNetMap makes a /map request to download the network map, calling cb with
- // each new netmap.
- func (c *Direct) PollNetMap(ctx context.Context, cb func(*netmap.NetworkMap)) error {
- return c.sendMapRequest(ctx, -1, false, cb)
- }
- // FetchNetMap fetches the netmap once.
- func (c *Direct) FetchNetMap(ctx context.Context) (*netmap.NetworkMap, error) {
- var ret *netmap.NetworkMap
- err := c.sendMapRequest(ctx, 1, false, func(nm *netmap.NetworkMap) {
- ret = nm
- })
- if err == nil && ret == nil {
- return nil, errors.New("[unexpected] sendMapRequest success without callback")
- }
- return ret, err
- }
- // SendLiteMapUpdate makes a /map request to update the server of our latest state,
- // but does not fetch anything. It returns an error if the server did not return a
- // successful 200 OK response.
- func (c *Direct) SendLiteMapUpdate(ctx context.Context) error {
- return c.sendMapRequest(ctx, 1, false, nil)
- }
- // If we go more than pollTimeout without hearing from the server,
- // end the long poll. We should be receiving a keep alive ping
- // every minute.
- const pollTimeout = 120 * time.Second
- // cb nil means to omit peers.
- func (c *Direct) sendMapRequest(ctx context.Context, maxPolls int, readOnly bool, cb func(*netmap.NetworkMap)) error {
- metricMapRequests.Add(1)
- metricMapRequestsActive.Add(1)
- defer metricMapRequestsActive.Add(-1)
- if maxPolls == -1 {
- metricMapRequestsPoll.Add(1)
- } else {
- metricMapRequestsLite.Add(1)
- }
- c.mu.Lock()
- persist := c.persist
- serverURL := c.serverURL
- serverKey := c.serverKey
- serverNoiseKey := c.serverNoiseKey
- hi := c.hostInfoLocked()
- backendLogID := hi.BackendLogID
- var epStrs []string
- var epTypes []tailcfg.EndpointType
- for _, ep := range c.endpoints {
- epStrs = append(epStrs, ep.Addr.String())
- epTypes = append(epTypes, ep.Type)
- }
- everEndpoints := c.everEndpoints
- c.mu.Unlock()
- machinePrivKey, err := c.getMachinePrivKey()
- if err != nil {
- return fmt.Errorf("getMachinePrivKey: %w", err)
- }
- if machinePrivKey.IsZero() {
- return errors.New("getMachinePrivKey returned zero key")
- }
- if persist.PrivateNodeKey().IsZero() {
- return errors.New("privateNodeKey is zero")
- }
- if backendLogID == "" {
- return errors.New("hostinfo: BackendLogID missing")
- }
- allowStream := maxPolls != 1
- c.logf("[v1] PollNetMap: stream=%v ep=%v", allowStream, epStrs)
- vlogf := logger.Discard
- if DevKnob.DumpNetMaps() {
- // TODO(bradfitz): update this to use "[v2]" prefix perhaps? but we don't
- // want to upload it always.
- vlogf = c.logf
- }
- request := &tailcfg.MapRequest{
- Version: tailcfg.CurrentCapabilityVersion,
- KeepAlive: c.keepAlive,
- NodeKey: persist.PublicNodeKey(),
- DiscoKey: c.discoPubKey,
- Endpoints: epStrs,
- EndpointTypes: epTypes,
- Stream: allowStream,
- Hostinfo: hi,
- DebugFlags: c.debugFlags,
- OmitPeers: cb == nil,
- TKAHead: c.tkaHead,
- // On initial startup before we know our endpoints, set the ReadOnly flag
- // to tell the control server not to distribute out our (empty) endpoints to peers.
- // Presumably we'll learn our endpoints in a half second and do another post
- // with useful results. The first POST just gets us the DERP map which we
- // need to do the STUN queries to discover our endpoints.
- // TODO(bradfitz): we skip this optimization in tests, though,
- // because the e2e tests are currently hyper-specific about the
- // ordering of things. The e2e tests need love.
- ReadOnly: readOnly || (len(epStrs) == 0 && !everEndpoints && !inTest()),
- }
- var extraDebugFlags []string
- if hi != nil && c.linkMon != nil && !c.skipIPForwardingCheck &&
- ipForwardingBroken(hi.RoutableIPs, c.linkMon.InterfaceState()) {
- extraDebugFlags = append(extraDebugFlags, "warn-ip-forwarding-off")
- }
- if health.RouterHealth() != nil {
- extraDebugFlags = append(extraDebugFlags, "warn-router-unhealthy")
- }
- if health.NetworkCategoryHealth() != nil {
- extraDebugFlags = append(extraDebugFlags, "warn-network-category-unhealthy")
- }
- if hostinfo.DisabledEtcAptSource() {
- extraDebugFlags = append(extraDebugFlags, "warn-etc-apt-source-disabled")
- }
- if len(extraDebugFlags) > 0 {
- old := request.DebugFlags
- request.DebugFlags = append(old[:len(old):len(old)], extraDebugFlags...)
- }
- if c.newDecompressor != nil {
- request.Compress = "zstd"
- }
- bodyData, err := encode(request, serverKey, serverNoiseKey, machinePrivKey)
- if err != nil {
- vlogf("netmap: encode: %v", err)
- return err
- }
- ctx, cancel := context.WithCancel(ctx)
- defer cancel()
- machinePubKey := machinePrivKey.Public()
- t0 := time.Now()
- // Url and httpc are protocol specific.
- var url string
- var httpc httpClient
- if serverNoiseKey.IsZero() {
- httpc = c.httpc
- url = fmt.Sprintf("%s/machine/%s/map", serverURL, machinePubKey.UntypedHexString())
- } else {
- httpc, err = c.getNoiseClient()
- if err != nil {
- return fmt.Errorf("getNoiseClient: %w", err)
- }
- url = fmt.Sprintf("%s/machine/map", serverURL)
- url = strings.Replace(url, "http:", "https:", 1)
- }
- req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewReader(bodyData))
- if err != nil {
- return err
- }
- res, err := httpc.Do(req)
- if err != nil {
- vlogf("netmap: Do: %v", err)
- return err
- }
- vlogf("netmap: Do = %v after %v", res.StatusCode, time.Since(t0).Round(time.Millisecond))
- if res.StatusCode != 200 {
- msg, _ := io.ReadAll(res.Body)
- res.Body.Close()
- return fmt.Errorf("initial fetch failed %d: %.200s",
- res.StatusCode, strings.TrimSpace(string(msg)))
- }
- defer res.Body.Close()
- health.NoteMapRequestHeard(request)
- if cb == nil {
- io.Copy(io.Discard, res.Body)
- return nil
- }
- timeout := time.NewTimer(pollTimeout)
- timeoutReset := make(chan struct{})
- pollDone := make(chan struct{})
- defer close(pollDone)
- go func() {
- for {
- select {
- case <-pollDone:
- vlogf("netmap: ending timeout goroutine")
- return
- case <-timeout.C:
- c.logf("map response long-poll timed out!")
- cancel()
- return
- case <-timeoutReset:
- if !timeout.Stop() {
- select {
- case <-timeout.C:
- case <-pollDone:
- vlogf("netmap: ending timeout goroutine")
- return
- }
- }
- vlogf("netmap: reset timeout timer")
- timeout.Reset(pollTimeout)
- }
- }
- }()
- sess := newMapSession(persist.PrivateNodeKey())
- sess.logf = c.logf
- sess.vlogf = vlogf
- sess.machinePubKey = machinePubKey
- sess.keepSharerAndUserSplit = c.keepSharerAndUserSplit
- // If allowStream, then the server will use an HTTP long poll to
- // return incremental results. There is always one response right
- // away, followed by a delay, and eventually others.
- // If !allowStream, it'll still send the first result in exactly
- // the same format before just closing the connection.
- // We can use this same read loop either way.
- var msg []byte
- for i := 0; i < maxPolls || maxPolls < 0; i++ {
- vlogf("netmap: starting size read after %v (poll %v)", time.Since(t0).Round(time.Millisecond), i)
- var siz [4]byte
- if _, err := io.ReadFull(res.Body, siz[:]); err != nil {
- vlogf("netmap: size read error after %v: %v", time.Since(t0).Round(time.Millisecond), err)
- return err
- }
- size := binary.LittleEndian.Uint32(siz[:])
- vlogf("netmap: read size %v after %v", size, time.Since(t0).Round(time.Millisecond))
- msg = append(msg[:0], make([]byte, size)...)
- if _, err := io.ReadFull(res.Body, msg); err != nil {
- vlogf("netmap: body read error: %v", err)
- return err
- }
- vlogf("netmap: read body after %v", time.Since(t0).Round(time.Millisecond))
- var resp tailcfg.MapResponse
- if err := c.decodeMsg(msg, &resp, machinePrivKey); err != nil {
- vlogf("netmap: decode error: %v")
- return err
- }
- metricMapResponseMessages.Add(1)
- if allowStream {
- health.GotStreamedMapResponse()
- }
- if pr := resp.PingRequest; pr != nil && c.isUniquePingRequest(pr) {
- metricMapResponsePings.Add(1)
- go c.answerPing(pr)
- }
- if u := resp.PopBrowserURL; u != "" && u != sess.lastPopBrowserURL {
- sess.lastPopBrowserURL = u
- if c.popBrowser != nil {
- c.logf("netmap: control says to open URL %v; opening...", u)
- c.popBrowser(u)
- } else {
- c.logf("netmap: control says to open URL %v; no popBrowser func", u)
- }
- }
- if resp.ControlTime != nil && !resp.ControlTime.IsZero() {
- c.logf.JSON(1, "controltime", resp.ControlTime.UTC())
- }
- if resp.KeepAlive {
- vlogf("netmap: got keep-alive")
- } else {
- vlogf("netmap: got new map")
- }
- if resp.ControlDialPlan != nil {
- if c.dialPlan != nil {
- c.logf("netmap: got new dial plan from control")
- c.dialPlan.Store(resp.ControlDialPlan)
- } else {
- c.logf("netmap: [unexpected] new dial plan; nowhere to store it")
- }
- }
- select {
- case timeoutReset <- struct{}{}:
- vlogf("netmap: sent timer reset")
- case <-ctx.Done():
- c.logf("[v1] netmap: not resetting timer; context done: %v", ctx.Err())
- return ctx.Err()
- }
- if resp.KeepAlive {
- metricMapResponseKeepAlives.Add(1)
- continue
- }
- metricMapResponseMap.Add(1)
- if i > 0 {
- metricMapResponseMapDelta.Add(1)
- }
- hasDebug := resp.Debug != nil
- // being conservative here, if Debug not present set to False
- controlknobs.SetDisableUPnP(hasDebug && resp.Debug.DisableUPnP.EqualBool(true))
- if hasDebug {
- if code := resp.Debug.Exit; code != nil {
- c.logf("exiting process with status %v per controlplane", *code)
- os.Exit(*code)
- }
- if resp.Debug.DisableLogTail {
- logtail.Disable()
- envknob.SetNoLogsNoSupport()
- }
- if resp.Debug.LogHeapPprof {
- go logheap.LogHeap(resp.Debug.LogHeapURL)
- }
- if resp.Debug.GoroutineDumpURL != "" {
- go dumpGoroutinesToURL(c.httpc, resp.Debug.GoroutineDumpURL)
- }
- if sleep := time.Duration(resp.Debug.SleepSeconds * float64(time.Second)); sleep > 0 {
- if err := sleepAsRequested(ctx, c.logf, timeoutReset, sleep); err != nil {
- return err
- }
- }
- }
- nm := sess.netmapForResponse(&resp)
- if nm.SelfNode == nil {
- c.logf("MapResponse lacked node")
- return errors.New("MapResponse lacked node")
- }
- if d := nm.Debug; d != nil {
- controlUseDERPRoute.Store(d.DERPRoute)
- controlTrimWGConfig.Store(d.TrimWGConfig)
- }
- if DevKnob.StripEndpoints() {
- for _, p := range resp.Peers {
- p.Endpoints = nil
- }
- }
- if DevKnob.StripCaps() {
- nm.SelfNode.Capabilities = nil
- }
- // Occasionally print the netmap header.
- // This is handy for debugging, and our logs processing
- // pipeline depends on it. (TODO: Remove this dependency.)
- // Code elsewhere prints netmap diffs every time they are received.
- now := c.timeNow()
- if now.Sub(c.lastPrintMap) >= 5*time.Minute {
- c.lastPrintMap = now
- c.logf("[v1] new network map[%d]:\n%s", i, nm.VeryConcise())
- }
- c.mu.Lock()
- c.expiry = &nm.Expiry
- c.mu.Unlock()
- cb(nm)
- }
- if ctx.Err() != nil {
- return ctx.Err()
- }
- return nil
- }
- // decode JSON decodes the res.Body into v. If serverNoiseKey is not specified,
- // it uses the serverKey and mkey to decode the message from the NaCl-crypto-box.
- func decode(res *http.Response, v any, serverKey, serverNoiseKey key.MachinePublic, mkey key.MachinePrivate) error {
- defer res.Body.Close()
- msg, err := io.ReadAll(io.LimitReader(res.Body, 1<<20))
- if err != nil {
- return err
- }
- if res.StatusCode != 200 {
- return fmt.Errorf("%d: %v", res.StatusCode, string(msg))
- }
- if !serverNoiseKey.IsZero() {
- return json.Unmarshal(msg, v)
- }
- return decodeMsg(msg, v, serverKey, mkey)
- }
- var (
- debugMap = envknob.RegisterBool("TS_DEBUG_MAP")
- debugRegister = envknob.RegisterBool("TS_DEBUG_REGISTER")
- )
- var jsonEscapedZero = []byte(`\u0000`)
- // decodeMsg is responsible for uncompressing msg and unmarshaling into v.
- // If c.serverNoiseKey is not specified, it uses the c.serverKey and mkey
- // to first the decrypt msg from the NaCl-crypto-box.
- func (c *Direct) decodeMsg(msg []byte, v any, mkey key.MachinePrivate) error {
- c.mu.Lock()
- serverKey := c.serverKey
- serverNoiseKey := c.serverNoiseKey
- c.mu.Unlock()
- var decrypted []byte
- if serverNoiseKey.IsZero() {
- var ok bool
- decrypted, ok = mkey.OpenFrom(serverKey, msg)
- if !ok {
- return errors.New("cannot decrypt response")
- }
- } else {
- decrypted = msg
- }
- var b []byte
- if c.newDecompressor == nil {
- b = decrypted
- } else {
- decoder, err := c.newDecompressor()
- if err != nil {
- return err
- }
- defer decoder.Close()
- b, err = decoder.DecodeAll(decrypted, nil)
- if err != nil {
- return err
- }
- }
- if debugMap() {
- var buf bytes.Buffer
- json.Indent(&buf, b, "", " ")
- log.Printf("MapResponse: %s", buf.Bytes())
- }
- if bytes.Contains(b, jsonEscapedZero) {
- log.Printf("[unexpected] zero byte in controlclient.Direct.decodeMsg into %T: %q", v, b)
- }
- if err := json.Unmarshal(b, v); err != nil {
- return fmt.Errorf("response: %v", err)
- }
- return nil
- }
- func decodeMsg(msg []byte, v any, serverKey key.MachinePublic, machinePrivKey key.MachinePrivate) error {
- decrypted, ok := machinePrivKey.OpenFrom(serverKey, msg)
- if !ok {
- return errors.New("cannot decrypt response")
- }
- if bytes.Contains(decrypted, jsonEscapedZero) {
- log.Printf("[unexpected] zero byte in controlclient decodeMsg into %T: %q", v, decrypted)
- }
- if err := json.Unmarshal(decrypted, v); err != nil {
- return fmt.Errorf("response: %v", err)
- }
- return nil
- }
- // encode JSON encodes v. If serverNoiseKey is not specified, it uses the serverKey and mkey to
- // seal the message into a NaCl-crypto-box.
- func encode(v any, serverKey, serverNoiseKey key.MachinePublic, mkey key.MachinePrivate) ([]byte, error) {
- b, err := json.Marshal(v)
- if err != nil {
- return nil, err
- }
- if debugMap() {
- if _, ok := v.(*tailcfg.MapRequest); ok {
- log.Printf("MapRequest: %s", b)
- }
- }
- if !serverNoiseKey.IsZero() {
- return b, nil
- }
- return mkey.SealTo(serverKey, b), nil
- }
- func loadServerPubKeys(ctx context.Context, httpc *http.Client, serverURL string) (*tailcfg.OverTLSPublicKeyResponse, error) {
- keyURL := fmt.Sprintf("%v/key?v=%d", serverURL, tailcfg.CurrentCapabilityVersion)
- req, err := http.NewRequestWithContext(ctx, "GET", keyURL, nil)
- if err != nil {
- return nil, fmt.Errorf("create control key request: %v", err)
- }
- res, err := httpc.Do(req)
- if err != nil {
- return nil, fmt.Errorf("fetch control key: %v", err)
- }
- defer res.Body.Close()
- b, err := io.ReadAll(io.LimitReader(res.Body, 64<<10))
- if err != nil {
- return nil, fmt.Errorf("fetch control key response: %v", err)
- }
- if res.StatusCode != 200 {
- return nil, fmt.Errorf("fetch control key: %d", res.StatusCode)
- }
- var out tailcfg.OverTLSPublicKeyResponse
- jsonErr := json.Unmarshal(b, &out)
- if jsonErr == nil {
- return &out, nil
- }
- // Some old control servers might not be updated to send the new format.
- // Accept the old pre-JSON format too.
- out = tailcfg.OverTLSPublicKeyResponse{}
- k, err := key.ParseMachinePublicUntyped(mem.B(b))
- if err != nil {
- return nil, multierr.New(jsonErr, err)
- }
- out.LegacyPublicKey = k
- return &out, nil
- }
- // DevKnob contains temporary internal-only debug knobs.
- // They're unexported to not draw attention to them.
- var DevKnob = initDevKnob()
- type devKnobs struct {
- DumpNetMaps func() bool
- ForceProxyDNS func() bool
- StripEndpoints func() bool // strip endpoints from control (only use disco messages)
- StripCaps func() bool // strip all local node's control-provided capabilities
- }
- func initDevKnob() devKnobs {
- return devKnobs{
- DumpNetMaps: envknob.RegisterBool("TS_DEBUG_NETMAP"),
- ForceProxyDNS: envknob.RegisterBool("TS_DEBUG_PROXY_DNS"),
- StripEndpoints: envknob.RegisterBool("TS_DEBUG_STRIP_ENDPOINTS"),
- StripCaps: envknob.RegisterBool("TS_DEBUG_STRIP_CAPS"),
- }
- }
- var clockNow = time.Now
- // opt.Bool configs from control.
- var (
- controlUseDERPRoute syncs.AtomicValue[opt.Bool]
- controlTrimWGConfig syncs.AtomicValue[opt.Bool]
- )
- // DERPRouteFlag reports the last reported value from control for whether
- // DERP route optimization (Issue 150) should be enabled.
- func DERPRouteFlag() opt.Bool {
- return controlUseDERPRoute.Load()
- }
- // TrimWGConfig reports the last reported value from control for whether
- // we should do lazy wireguard configuration.
- func TrimWGConfig() opt.Bool {
- return controlTrimWGConfig.Load()
- }
- // ipForwardingBroken reports whether the system's IP forwarding is disabled
- // and will definitely not work for the routes provided.
- //
- // It should not return false positives.
- //
- // TODO(bradfitz): Change controlclient.Options.SkipIPForwardingCheck into a
- // func([]netip.Prefix) error signature instead.
- func ipForwardingBroken(routes []netip.Prefix, state *interfaces.State) bool {
- warn, err := netutil.CheckIPForwarding(routes, state)
- if err != nil {
- // Oh well, we tried. This is just for debugging.
- // We don't want false positives.
- // TODO: maybe we want a different warning for inability to check?
- return false
- }
- return warn != nil
- }
- // isUniquePingRequest reports whether pr contains a new PingRequest.URL
- // not already handled, noting its value when returning true.
- func (c *Direct) isUniquePingRequest(pr *tailcfg.PingRequest) bool {
- if pr == nil || pr.URL == "" {
- // Bogus.
- return false
- }
- c.mu.Lock()
- defer c.mu.Unlock()
- if pr.URL == c.lastPingURL {
- return false
- }
- c.lastPingURL = pr.URL
- return true
- }
- func (c *Direct) answerPing(pr *tailcfg.PingRequest) {
- httpc := c.httpc
- useNoise := pr.URLIsNoise || pr.Types == "c2n" && c.noiseConfigured()
- if useNoise {
- nc, err := c.getNoiseClient()
- if err != nil {
- c.logf("failed to get noise client for ping request: %v", err)
- return
- }
- httpc = nc.Client
- }
- if pr.URL == "" {
- c.logf("invalid PingRequest with no URL")
- return
- }
- switch pr.Types {
- case "":
- answerHeadPing(c.logf, httpc, pr)
- return
- case "c2n":
- if !useNoise && !envknob.Bool("TS_DEBUG_PERMIT_HTTP_C2N") {
- c.logf("refusing to answer c2n ping without noise")
- return
- }
- answerC2NPing(c.logf, c.c2nHandler, httpc, pr)
- return
- }
- for _, t := range strings.Split(pr.Types, ",") {
- switch pt := tailcfg.PingType(t); pt {
- case tailcfg.PingTSMP, tailcfg.PingDisco, tailcfg.PingICMP, tailcfg.PingPeerAPI:
- go doPingerPing(c.logf, httpc, pr, c.pinger, pt)
- default:
- c.logf("unsupported ping request type: %q", t)
- }
- }
- }
- func answerHeadPing(logf logger.Logf, c *http.Client, pr *tailcfg.PingRequest) {
- ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
- defer cancel()
- req, err := http.NewRequestWithContext(ctx, "HEAD", pr.URL, nil)
- if err != nil {
- logf("answerHeadPing: NewRequestWithContext: %v", err)
- return
- }
- if pr.Log {
- logf("answerHeadPing: sending HEAD ping to %v ...", pr.URL)
- }
- t0 := time.Now()
- _, err = c.Do(req)
- d := time.Since(t0).Round(time.Millisecond)
- if err != nil {
- logf("answerHeadPing error: %v to %v (after %v)", err, pr.URL, d)
- } else if pr.Log {
- logf("answerHeadPing complete to %v (after %v)", pr.URL, d)
- }
- }
- func answerC2NPing(logf logger.Logf, c2nHandler http.Handler, c *http.Client, pr *tailcfg.PingRequest) {
- if c2nHandler == nil {
- logf("answerC2NPing: c2nHandler not defined")
- return
- }
- hreq, err := http.ReadRequest(bufio.NewReader(bytes.NewReader(pr.Payload)))
- if err != nil {
- logf("answerC2NPing: ReadRequest: %v", err)
- return
- }
- if pr.Log {
- logf("answerC2NPing: got c2n request for %v ...", hreq.RequestURI)
- }
- handlerTimeout := time.Minute
- if v := hreq.Header.Get("C2n-Handler-Timeout"); v != "" {
- handlerTimeout, _ = time.ParseDuration(v)
- }
- handlerCtx, cancel := context.WithTimeout(context.Background(), handlerTimeout)
- defer cancel()
- hreq = hreq.WithContext(handlerCtx)
- rec := httptest.NewRecorder()
- c2nHandler.ServeHTTP(rec, hreq)
- cancel()
- c2nResBuf := new(bytes.Buffer)
- rec.Result().Write(c2nResBuf)
- replyCtx, cancel := context.WithTimeout(context.Background(), time.Minute)
- defer cancel()
- req, err := http.NewRequestWithContext(replyCtx, "POST", pr.URL, c2nResBuf)
- if err != nil {
- logf("answerC2NPing: NewRequestWithContext: %v", err)
- return
- }
- if pr.Log {
- logf("answerC2NPing: sending POST ping to %v ...", pr.URL)
- }
- t0 := time.Now()
- _, err = c.Do(req)
- d := time.Since(t0).Round(time.Millisecond)
- if err != nil {
- logf("answerC2NPing error: %v to %v (after %v)", err, pr.URL, d)
- } else if pr.Log {
- logf("answerC2NPing complete to %v (after %v)", pr.URL, d)
- }
- }
- func sleepAsRequested(ctx context.Context, logf logger.Logf, timeoutReset chan<- struct{}, d time.Duration) error {
- const maxSleep = 5 * time.Minute
- if d > maxSleep {
- logf("sleeping for %v, capped from server-requested %v ...", maxSleep, d)
- d = maxSleep
- } else {
- logf("sleeping for server-requested %v ...", d)
- }
- ticker := time.NewTicker(pollTimeout / 2)
- defer ticker.Stop()
- timer := time.NewTimer(d)
- defer timer.Stop()
- for {
- select {
- case <-ctx.Done():
- return ctx.Err()
- case <-timer.C:
- return nil
- case <-ticker.C:
- select {
- case timeoutReset <- struct{}{}:
- case <-timer.C:
- return nil
- case <-ctx.Done():
- return ctx.Err()
- }
- }
- }
- }
- // getNoiseClient returns the noise client, creating one if one doesn't exist.
- func (c *Direct) getNoiseClient() (*NoiseClient, error) {
- c.mu.Lock()
- serverNoiseKey := c.serverNoiseKey
- nc := c.noiseClient
- c.mu.Unlock()
- if serverNoiseKey.IsZero() {
- return nil, errors.New("zero serverNoiseKey")
- }
- if nc != nil {
- return nc, nil
- }
- var dp func() *tailcfg.ControlDialPlan
- if c.dialPlan != nil {
- dp = c.dialPlan.Load
- }
- nc, err, _ := c.sfGroup.Do(struct{}{}, func() (*NoiseClient, error) {
- k, err := c.getMachinePrivKey()
- if err != nil {
- return nil, err
- }
- c.logf("creating new noise client")
- nc, err := NewNoiseClient(k, serverNoiseKey, c.serverURL, c.dialer, dp)
- if err != nil {
- return nil, err
- }
- c.mu.Lock()
- defer c.mu.Unlock()
- c.noiseClient = nc
- return nc, nil
- })
- if err != nil {
- return nil, err
- }
- return nc, nil
- }
- // setDNSNoise sends the SetDNSRequest request to the control plane server over Noise,
- // requesting a DNS record be created or updated.
- func (c *Direct) setDNSNoise(ctx context.Context, req *tailcfg.SetDNSRequest) error {
- newReq := *req
- newReq.Version = tailcfg.CurrentCapabilityVersion
- nc, err := c.getNoiseClient()
- if err != nil {
- return err
- }
- res, err := nc.post(ctx, "/machine/set-dns", &newReq)
- if err != nil {
- return err
- }
- defer res.Body.Close()
- if res.StatusCode != 200 {
- msg, _ := io.ReadAll(res.Body)
- return fmt.Errorf("set-dns response: %v, %.200s", res.Status, strings.TrimSpace(string(msg)))
- }
- var setDNSRes tailcfg.SetDNSResponse
- if err := json.NewDecoder(res.Body).Decode(&setDNSRes); err != nil {
- c.logf("error decoding SetDNSResponse: %v", err)
- return fmt.Errorf("set-dns-response: %w", err)
- }
- return nil
- }
- // noiseConfigured reports whether the client can communicate with Control
- // over Noise.
- func (c *Direct) noiseConfigured() bool {
- c.mu.Lock()
- defer c.mu.Unlock()
- return !c.serverNoiseKey.IsZero()
- }
- // SetDNS sends the SetDNSRequest request to the control plane server,
- // requesting a DNS record be created or updated.
- func (c *Direct) SetDNS(ctx context.Context, req *tailcfg.SetDNSRequest) (err error) {
- metricSetDNS.Add(1)
- defer func() {
- if err != nil {
- metricSetDNSError.Add(1)
- }
- }()
- if c.noiseConfigured() {
- return c.setDNSNoise(ctx, req)
- }
- c.mu.Lock()
- serverKey := c.serverKey
- c.mu.Unlock()
- if serverKey.IsZero() {
- return errors.New("zero serverKey")
- }
- machinePrivKey, err := c.getMachinePrivKey()
- if err != nil {
- return fmt.Errorf("getMachinePrivKey: %w", err)
- }
- if machinePrivKey.IsZero() {
- return errors.New("getMachinePrivKey returned zero key")
- }
- // TODO(maisem): dedupe this codepath from SetDNSNoise.
- var serverNoiseKey key.MachinePublic
- bodyData, err := encode(req, serverKey, serverNoiseKey, machinePrivKey)
- if err != nil {
- return err
- }
- body := bytes.NewReader(bodyData)
- u := fmt.Sprintf("%s/machine/%s/set-dns", c.serverURL, machinePrivKey.Public().UntypedHexString())
- hreq, err := http.NewRequestWithContext(ctx, "POST", u, body)
- if err != nil {
- return err
- }
- res, err := c.httpc.Do(hreq)
- if err != nil {
- return err
- }
- defer res.Body.Close()
- if res.StatusCode != 200 {
- msg, _ := io.ReadAll(res.Body)
- return fmt.Errorf("set-dns response: %v, %.200s", res.Status, strings.TrimSpace(string(msg)))
- }
- var setDNSRes tailcfg.SetDNSResponse
- if err := decode(res, &setDNSRes, serverKey, serverNoiseKey, machinePrivKey); err != nil {
- c.logf("error decoding SetDNSResponse with server key %s and machine key %s: %v", serverKey, machinePrivKey.Public(), err)
- return fmt.Errorf("set-dns-response: %w", err)
- }
- return nil
- }
- func (c *Direct) DoNoiseRequest(req *http.Request) (*http.Response, error) {
- nc, err := c.getNoiseClient()
- if err != nil {
- return nil, err
- }
- return nc.Do(req)
- }
- // GetSingleUseNoiseRoundTripper returns a RoundTripper that can be only be used
- // once (and must be used once) to make a single HTTP request over the noise
- // channel to the coordination server.
- //
- // In addition to the RoundTripper, it returns the HTTP/2 channel's early noise
- // payload, if any.
- func (c *Direct) GetSingleUseNoiseRoundTripper(ctx context.Context) (http.RoundTripper, *tailcfg.EarlyNoise, error) {
- nc, err := c.getNoiseClient()
- if err != nil {
- return nil, nil, err
- }
- return nc.GetSingleUseRoundTripper(ctx)
- }
- // doPingerPing sends a Ping to pr.IP using pinger, and sends an http request back to
- // pr.URL with ping response data.
- func doPingerPing(logf logger.Logf, c *http.Client, pr *tailcfg.PingRequest, pinger Pinger, pingType tailcfg.PingType) {
- if pr.URL == "" || !pr.IP.IsValid() || pinger == nil {
- logf("invalid ping request: missing url, ip or pinger")
- return
- }
- start := time.Now()
- ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
- defer cancel()
- res, err := pinger.Ping(ctx, pr.IP, pingType)
- if err != nil {
- d := time.Since(start).Round(time.Millisecond)
- logf("doPingerPing: ping error of type %q to %v after %v: %v", pingType, pr.IP, d, err)
- return
- }
- postPingResult(start, logf, c, pr, res.ToPingResponse(pingType))
- }
- func postPingResult(start time.Time, logf logger.Logf, c *http.Client, pr *tailcfg.PingRequest, res *tailcfg.PingResponse) error {
- duration := time.Since(start)
- if pr.Log {
- if res.Err == "" {
- logf("ping to %v completed in %v. pinger.Ping took %v seconds", pr.IP, res.LatencySeconds, duration)
- } else {
- logf("ping to %v failed after %v: %v", pr.IP, duration, res.Err)
- }
- }
- ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
- defer cancel()
- jsonPingRes, err := json.Marshal(res)
- if err != nil {
- return err
- }
- // Send the results of the Ping, back to control URL.
- req, err := http.NewRequestWithContext(ctx, "POST", pr.URL, bytes.NewReader(jsonPingRes))
- if err != nil {
- return fmt.Errorf("http.NewRequestWithContext(%q): %w", pr.URL, err)
- }
- if pr.Log {
- logf("postPingResult: sending ping results to %v ...", pr.URL)
- }
- t0 := time.Now()
- _, err = c.Do(req)
- d := time.Since(t0).Round(time.Millisecond)
- if err != nil {
- return fmt.Errorf("postPingResult error: %w to %v (after %v)", err, pr.URL, d)
- } else if pr.Log {
- logf("postPingResult complete to %v (after %v)", pr.URL, d)
- }
- return nil
- }
- // ReportHealthChange reports to the control plane a change to this node's
- // health.
- func (c *Direct) ReportHealthChange(sys health.Subsystem, sysErr error) {
- if sys == health.SysOverall {
- // We don't report these. These include things like the network is down
- // (in which case we can't report anyway) or the user wanted things
- // stopped, as opposed to the more unexpected failure types in the other
- // subsystems.
- return
- }
- np, err := c.getNoiseClient()
- if err != nil {
- // Don't report errors to control if the server doesn't support noise.
- return
- }
- req := &tailcfg.HealthChangeRequest{
- Subsys: string(sys),
- }
- if sysErr != nil {
- req.Error = sysErr.Error()
- }
- // Best effort, no logging:
- ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
- defer cancel()
- res, err := np.post(ctx, "/machine/update-health", req)
- if err != nil {
- return
- }
- res.Body.Close()
- }
- var (
- metricMapRequestsActive = clientmetric.NewGauge("controlclient_map_requests_active")
- metricMapRequests = clientmetric.NewCounter("controlclient_map_requests")
- metricMapRequestsLite = clientmetric.NewCounter("controlclient_map_requests_lite")
- metricMapRequestsPoll = clientmetric.NewCounter("controlclient_map_requests_poll")
- metricMapResponseMessages = clientmetric.NewCounter("controlclient_map_response_message") // any message type
- metricMapResponsePings = clientmetric.NewCounter("controlclient_map_response_ping")
- metricMapResponseKeepAlives = clientmetric.NewCounter("controlclient_map_response_keepalive")
- metricMapResponseMap = clientmetric.NewCounter("controlclient_map_response_map") // any non-keepalive map response
- metricMapResponseMapDelta = clientmetric.NewCounter("controlclient_map_response_map_delta") // 2nd+ non-keepalive map response
- metricSetDNS = clientmetric.NewCounter("controlclient_setdns")
- metricSetDNSError = clientmetric.NewCounter("controlclient_setdns_error")
- )
|