@ -50,6 +50,7 @@ import (
"tailscale.com/net/netmon"
"tailscale.com/net/netmon"
"tailscale.com/net/netns"
"tailscale.com/net/netns"
"tailscale.com/net/packet"
"tailscale.com/net/packet"
"tailscale.com/net/ping"
"tailscale.com/net/portmapper"
"tailscale.com/net/portmapper"
"tailscale.com/net/sockstats"
"tailscale.com/net/sockstats"
"tailscale.com/net/stun"
"tailscale.com/net/stun"
@ -59,6 +60,7 @@ import (
"tailscale.com/tstime"
"tailscale.com/tstime"
"tailscale.com/tstime/mono"
"tailscale.com/tstime/mono"
"tailscale.com/types/key"
"tailscale.com/types/key"
"tailscale.com/types/lazy"
"tailscale.com/types/logger"
"tailscale.com/types/logger"
"tailscale.com/types/netmap"
"tailscale.com/types/netmap"
"tailscale.com/types/nettype"
"tailscale.com/types/nettype"
@ -209,11 +211,16 @@ func (m *peerMap) upsertEndpoint(ep *endpoint, oldDiscoKey key.DiscoPublic) {
if epDisco == nil || oldDiscoKey != epDisco . key {
if epDisco == nil || oldDiscoKey != epDisco . key {
delete ( m . nodesOfDisco [ oldDiscoKey ] , ep . publicKey )
delete ( m . nodesOfDisco [ oldDiscoKey ] , ep . publicKey )
}
}
if epDisco == nil {
if ep . isWireguardOnly {
// If the peer does not support Disco, but it does have an endpoint address,
// If the peer is a WireGuard only peer, add all of its endpoints.
// attempt to use that (e.g. WireGuardOnly peers).
if ep . bestAddr . AddrPort . IsValid ( ) {
// TODO(raggi,catzkorn): this could mean that if a "isWireguardOnly"
m . setNodeKeyForIPPort ( ep . bestAddr . AddrPort , ep . publicKey )
// peer has, say, 192.168.0.2 and so does a tailscale peer, the
// wireguard one will win. That may not be the outcome that we want -
// perhaps we should prefer bestAddr.AddrPort if it is set?
// see tailscale/tailscale#7994
for ipp := range ep . endpointState {
m . setNodeKeyForIPPort ( ipp , ep . publicKey )
}
}
return
return
@ -473,6 +480,9 @@ type Conn struct {
// peerLastDerp tracks which DERP node we last used to speak with a
// peerLastDerp tracks which DERP node we last used to speak with a
// peer. It's only used to quiet logging, so we only log on change.
// peer. It's only used to quiet logging, so we only log on change.
peerLastDerp map [ key . NodePublic ] int
peerLastDerp map [ key . NodePublic ] int
// wgPinger is the WireGuard only pinger used for latency measurements.
wgPinger lazy . SyncValue [ * ping . Pinger ]
}
}
// SetDebugLoggingEnabled controls whether spammy debug logging is enabled.
// SetDebugLoggingEnabled controls whether spammy debug logging is enabled.
@ -2766,6 +2776,7 @@ func (c *Conn) SetNetworkMap(nm *netmap.NetworkMap) {
sentPing : map [ stun . TxID ] sentPing { } ,
sentPing : map [ stun . TxID ] sentPing { } ,
endpointState : map [ netip . AddrPort ] * endpointState { } ,
endpointState : map [ netip . AddrPort ] * endpointState { } ,
heartbeatDisabled : heartbeatDisabled ,
heartbeatDisabled : heartbeatDisabled ,
isWireguardOnly : n . IsWireGuardOnly ,
}
}
if len ( n . Addresses ) > 0 {
if len ( n . Addresses ) > 0 {
ep . nodeAddr = n . Addresses [ 0 ] . Addr ( )
ep . nodeAddr = n . Addresses [ 0 ] . Addr ( )
@ -3143,6 +3154,11 @@ func (c *Conn) Close() error {
for c . goroutinesRunningLocked ( ) {
for c . goroutinesRunningLocked ( ) {
c . muCond . Wait ( )
c . muCond . Wait ( )
}
}
if pinger := c . getPinger ( ) ; pinger != nil {
pinger . Close ( )
}
return nil
return nil
}
}
@ -4084,9 +4100,14 @@ type endpointDisco struct {
short string // ShortString of discoKey.
short string // ShortString of discoKey.
}
}
// endpoint is a wireguard/conn.Endpoint that picks the best
// endpoint is a wireguard/conn.Endpoint. In wireguard-go and kernel WireGuard
// available path to communicate with a peer, based on network
// there is only one endpoint for a peer, but in Tailscale we distribute a
// conditions and what the peer supports.
// number of possible endpoints for a peer which would include the all the
// likely addresses at which a peer may be reachable. This endpoint type holds
// the information required that when WiregGuard-Go wants to send to a
// particular peer (essentally represented by this endpoint type), the send
// function can use the currnetly best known Tailscale endpoint to send packets
// to the peer.
type endpoint struct {
type endpoint struct {
// atomically accessed; declared first for alignment reasons
// atomically accessed; declared first for alignment reasons
lastRecv mono . Time
lastRecv mono . Time
@ -4108,7 +4129,7 @@ type endpoint struct {
heartBeatTimer * time . Timer // nil when idle
heartBeatTimer * time . Timer // nil when idle
lastSend mono . Time // last time there was outgoing packets sent to this peer (from wireguard-go)
lastSend mono . Time // last time there was outgoing packets sent to this peer (from wireguard-go)
lastFullPing mono . Time // last time we pinged all endpoints
lastFullPing mono . Time // last time we pinged all disco endpoints
derpAddr netip . AddrPort // fallback/bootstrap path, if non-zero (non-zero for well-behaved clients)
derpAddr netip . AddrPort // fallback/bootstrap path, if non-zero (non-zero for well-behaved clients)
bestAddr addrLatency // best non-DERP path; zero if none
bestAddr addrLatency // best non-DERP path; zero if none
@ -4126,7 +4147,8 @@ type endpoint struct {
heartbeatDisabled bool
heartbeatDisabled bool
pathFinderRunning bool
pathFinderRunning bool
expired bool // whether the node has expired
expired bool // whether the node has expired
isWireguardOnly bool // whether the endpoint is WireGuard only
}
}
type pendingCLIPing struct {
type pendingCLIPing struct {
@ -4238,6 +4260,15 @@ func (st *endpointState) shouldDeleteLocked() bool {
}
}
}
}
// latencyLocked returns the most recent latency measurement, if any.
// endpoint.mu must be held.
func ( st * endpointState ) latencyLocked ( ) ( lat time . Duration , ok bool ) {
if len ( st . recentPongs ) == 0 {
return 0 , false
}
return st . recentPongs [ st . recentPong ] . latency , true
}
func ( de * endpoint ) deleteEndpointLocked ( why string , ep netip . AddrPort ) {
func ( de * endpoint ) deleteEndpointLocked ( why string , ep netip . AddrPort ) {
de . debugUpdates . Add ( EndpointChange {
de . debugUpdates . Add ( EndpointChange {
When : time . Now ( ) ,
When : time . Now ( ) ,
@ -4321,17 +4352,87 @@ func (de *endpoint) DstToBytes() []byte { return packIPPort(de.fakeWGAddr) }
// addrForSendLocked returns the address(es) that should be used for
// addrForSendLocked returns the address(es) that should be used for
// sending the next packet. Zero, one, or both of UDP address and DERP
// sending the next packet. Zero, one, or both of UDP address and DERP
// addr may be non-zero.
// addr may be non-zero. If the endpoint is WireGuard only and does not have
// latency information, a bool is returned to indiciate that the
// WireGuard latency discovery pings should be sent.
//
//
// de.mu must be held.
// de.mu must be held.
func ( de * endpoint ) addrForSendLocked ( now mono . Time ) ( udpAddr , derpAddr netip . AddrPort ) {
func ( de * endpoint ) addrForSendLocked ( now mono . Time ) ( udpAddr , derpAddr netip . AddrPort , sendWGPing bool ) {
udpAddr = de . bestAddr . AddrPort
udpAddr = de . bestAddr . AddrPort
if ! udpAddr . IsValid ( ) || now . After ( de . trustBestAddrUntil ) {
// We had a bestAddr but it expired so send both to it
if udpAddr . IsValid ( ) && ! now . After ( de . trustBestAddrUntil ) {
// and DERP.
return udpAddr , netip . AddrPort { } , false
derpAddr = de . derpAddr
}
}
return
if de . isWireguardOnly {
// If the endpoint is wireguard-only, we don't have a DERP
// address to send to, so we have to send to the UDP address.
udpAddr , shouldPing := de . addrForWireGuardSendLocked ( now )
return udpAddr , netip . AddrPort { } , shouldPing
}
// We had a bestAddr but it expired so send both to it
// and DERP.
return udpAddr , de . derpAddr , false
}
// addrForWireGuardSendLocked returns the address that should be used for
// sending the next packet. If a packet has never or not recently been sent to
// the endpoint, then a randomly selected address for the endpoint is returned,
// as well as a bool indiciating that WireGuard discovery pings should be started.
// If the addresses have latency information available, then the address with the
// best latency is used.
//
// de.mu must be held.
func ( de * endpoint ) addrForWireGuardSendLocked ( now mono . Time ) ( udpAddr netip . AddrPort , shouldPing bool ) {
// lowestLatency is a high duration initially, so we
// can be sure we're going to have a duration lower than this
// for the first latency retrieved.
lowestLatency := time . Hour
for ipp , state := range de . endpointState {
if latency , ok := state . latencyLocked ( ) ; ok {
if latency < lowestLatency || latency == lowestLatency && ipp . Addr ( ) . Is6 ( ) {
// If we have the same latency,IPv6 is prioritized.
// TODO(catzkorn): Consider a small increase in latency to use
// IPv6 in comparison to IPv4, when possible.
lowestLatency = latency
udpAddr = ipp
}
}
}
if udpAddr . IsValid ( ) {
// Set trustBestAddrUntil to an hour, so we will
// continue to use this address for a long period of time.
de . bestAddr . AddrPort = udpAddr
de . trustBestAddrUntil = now . Add ( 1 * time . Hour )
return udpAddr , false
}
candidates := make ( [ ] netip . AddrPort , 0 , len ( de . endpointState ) )
for ipp := range de . endpointState {
if ipp . Addr ( ) . Is4 ( ) && de . c . noV4 . Load ( ) {
continue
}
if ipp . Addr ( ) . Is6 ( ) && de . c . noV6 . Load ( ) {
continue
}
candidates = append ( candidates , ipp )
}
// Randomly select an address to use until we retrieve latency information
// and give it a short trustBestAddrUntil time so we avoid flapping between
// addresses while waiting on latency information to be populated.
udpAddr = candidates [ rand . Intn ( len ( candidates ) ) ]
de . bestAddr . AddrPort = udpAddr
if len ( candidates ) == 1 {
// if we only have one address that we can send data too,
// we should trust it for a longer period of time.
de . trustBestAddrUntil = now . Add ( 1 * time . Hour )
} else {
de . trustBestAddrUntil = now . Add ( 15 * time . Second )
}
return udpAddr , len ( candidates ) > 1
}
}
// heartbeat is called every heartbeatInterval to keep the best UDP path alive,
// heartbeat is called every heartbeatInterval to keep the best UDP path alive,
@ -4359,14 +4460,14 @@ func (de *endpoint) heartbeat() {
}
}
now := mono . Now ( )
now := mono . Now ( )
udpAddr , _ := de . addrForSendLocked ( now )
udpAddr , _ , _ := de . addrForSendLocked ( now )
if udpAddr . IsValid ( ) {
if udpAddr . IsValid ( ) {
// We have a preferred path. Ping that every 2 seconds.
// We have a preferred path. Ping that every 2 seconds.
de . start PingLocked( udpAddr , now , pingHeartbeat )
de . start Disco PingLocked( udpAddr , now , pingHeartbeat )
}
}
if de . wantFullPingLocked ( now ) {
if de . wantFullPingLocked ( now ) {
de . send PingsLocked( now , true )
de . send Disco PingsLocked( now , true )
}
}
de . heartBeatTimer = time . AfterFunc ( heartbeatInterval , de . heartbeat )
de . heartBeatTimer = time . AfterFunc ( heartbeatInterval , de . heartbeat )
@ -4417,19 +4518,19 @@ func (de *endpoint) cliPing(res *ipnstate.PingResult, cb func(*ipnstate.PingResu
de . pendingCLIPings = append ( de . pendingCLIPings , pendingCLIPing { res , cb } )
de . pendingCLIPings = append ( de . pendingCLIPings , pendingCLIPing { res , cb } )
now := mono . Now ( )
now := mono . Now ( )
udpAddr , derpAddr := de . addrForSendLocked ( now )
udpAddr , derpAddr , _ := de . addrForSendLocked ( now )
if derpAddr . IsValid ( ) {
if derpAddr . IsValid ( ) {
de . start PingLocked( derpAddr , now , pingCLI )
de . start Disco PingLocked( derpAddr , now , pingCLI )
}
}
if udpAddr . IsValid ( ) && now . Before ( de . trustBestAddrUntil ) {
if udpAddr . IsValid ( ) && now . Before ( de . trustBestAddrUntil ) {
// Already have an active session, so just ping the address we're using.
// Already have an active session, so just ping the address we're using.
// Otherwise "tailscale ping" results to a node on the local network
// Otherwise "tailscale ping" results to a node on the local network
// can look like they're bouncing between, say 10.0.0.0/9 and the peer's
// can look like they're bouncing between, say 10.0.0.0/9 and the peer's
// IPv6 address, both 1ms away, and it's random who replies first.
// IPv6 address, both 1ms away, and it's random who replies first.
de . start PingLocked( udpAddr , now , pingCLI )
de . start Disco PingLocked( udpAddr , now , pingCLI )
} else {
} else {
for ep := range de . endpointState {
for ep := range de . endpointState {
de . start PingLocked( ep , now , pingCLI )
de . start Disco PingLocked( ep , now , pingCLI )
}
}
}
}
de . noteActiveLocked ( )
de . noteActiveLocked ( )
@ -4459,9 +4560,14 @@ func (de *endpoint) send(buffs [][]byte) error {
}
}
now := mono . Now ( )
now := mono . Now ( )
udpAddr , derpAddr := de . addrForSendLocked ( now )
udpAddr , derpAddr , startWGPing := de . addrForSendLocked ( now )
if ! udpAddr . IsValid ( ) || now . After ( de . trustBestAddrUntil ) {
de . sendPingsLocked ( now , true )
if de . isWireguardOnly {
if startWGPing {
de . sendWireGuardOnlyPingsLocked ( now )
}
} else if ! udpAddr . IsValid ( ) || now . After ( de . trustBestAddrUntil ) {
de . sendDiscoPingsLocked ( now , true )
}
}
de . noteActiveLocked ( )
de . noteActiveLocked ( )
de . mu . Unlock ( )
de . mu . Unlock ( )
@ -4499,7 +4605,7 @@ func (de *endpoint) send(buffs [][]byte) error {
return err
return err
}
}
func ( de * endpoint ) p ingTimeout( txid stun . TxID ) {
func ( de * endpoint ) discoP ingTimeout( txid stun . TxID ) {
de . mu . Lock ( )
de . mu . Lock ( )
defer de . mu . Unlock ( )
defer de . mu . Unlock ( )
sp , ok := de . sentPing [ txid ]
sp , ok := de . sentPing [ txid ]
@ -4509,20 +4615,20 @@ func (de *endpoint) pingTimeout(txid stun.TxID) {
if debugDisco ( ) || ! de . bestAddr . IsValid ( ) || mono . Now ( ) . After ( de . trustBestAddrUntil ) {
if debugDisco ( ) || ! de . bestAddr . IsValid ( ) || mono . Now ( ) . After ( de . trustBestAddrUntil ) {
de . c . dlogf ( "[v1] magicsock: disco: timeout waiting for pong %x from %v (%v, %v)" , txid [ : 6 ] , sp . to , de . publicKey . ShortString ( ) , de . discoShort ( ) )
de . c . dlogf ( "[v1] magicsock: disco: timeout waiting for pong %x from %v (%v, %v)" , txid [ : 6 ] , sp . to , de . publicKey . ShortString ( ) , de . discoShort ( ) )
}
}
de . removeSent PingLocked( txid , sp )
de . removeSent Disco PingLocked( txid , sp )
}
}
// forget Ping is called by a timer when a ping either fails to send or
// forget Disco Ping is called by a timer when a ping either fails to send or
// has taken too long to get a pong reply.
// has taken too long to get a pong reply.
func ( de * endpoint ) forget Ping( txid stun . TxID ) {
func ( de * endpoint ) forget Disco Ping( txid stun . TxID ) {
de . mu . Lock ( )
de . mu . Lock ( )
defer de . mu . Unlock ( )
defer de . mu . Unlock ( )
if sp , ok := de . sentPing [ txid ] ; ok {
if sp , ok := de . sentPing [ txid ] ; ok {
de . removeSent PingLocked( txid , sp )
de . removeSent Disco PingLocked( txid , sp )
}
}
}
}
func ( de * endpoint ) removeSent PingLocked( txid stun . TxID , sp sentPing ) {
func ( de * endpoint ) removeSent Disco PingLocked( txid stun . TxID , sp sentPing ) {
// Stop the timer for the case where sendPing failed to write to UDP.
// Stop the timer for the case where sendPing failed to write to UDP.
// In the case of a timer already having fired, this is a no-op:
// In the case of a timer already having fired, this is a no-op:
sp . timer . Stop ( )
sp . timer . Stop ( )
@ -4542,7 +4648,7 @@ func (de *endpoint) sendDiscoPing(ep netip.AddrPort, discoKey key.DiscoPublic, t
NodeKey : de . c . publicKeyAtomic . Load ( ) ,
NodeKey : de . c . publicKeyAtomic . Load ( ) ,
} , logLevel )
} , logLevel )
if ! sent {
if ! sent {
de . forget Ping( txid )
de . forget Disco Ping( txid )
}
}
}
}
@ -4564,7 +4670,7 @@ const (
pingCLI
pingCLI
)
)
func ( de * endpoint ) start PingLocked( ep netip . AddrPort , now mono . Time , purpose discoPingPurpose ) {
func ( de * endpoint ) start Disco PingLocked( ep netip . AddrPort , now mono . Time , purpose discoPingPurpose ) {
if runtime . GOOS == "js" {
if runtime . GOOS == "js" {
return
return
}
}
@ -4587,7 +4693,7 @@ func (de *endpoint) startPingLocked(ep netip.AddrPort, now mono.Time, purpose di
de . sentPing [ txid ] = sentPing {
de . sentPing [ txid ] = sentPing {
to : ep ,
to : ep ,
at : now ,
at : now ,
timer : time . AfterFunc ( pingTimeoutDuration , func ( ) { de . p ingTimeout( txid ) } ) ,
timer : time . AfterFunc ( pingTimeoutDuration , func ( ) { de . discoP ingTimeout( txid ) } ) ,
purpose : purpose ,
purpose : purpose ,
}
}
logLevel := discoLog
logLevel := discoLog
@ -4597,7 +4703,7 @@ func (de *endpoint) startPingLocked(ep netip.AddrPort, now mono.Time, purpose di
go de . sendDiscoPing ( ep , epDisco . key , txid , logLevel )
go de . sendDiscoPing ( ep , epDisco . key , txid , logLevel )
}
}
func ( de * endpoint ) send PingsLocked( now mono . Time , sendCallMeMaybe bool ) {
func ( de * endpoint ) send Disco PingsLocked( now mono . Time , sendCallMeMaybe bool ) {
de . lastFullPing = now
de . lastFullPing = now
var sentAny bool
var sentAny bool
for ep , st := range de . endpointState {
for ep , st := range de . endpointState {
@ -4619,7 +4725,7 @@ func (de *endpoint) sendPingsLocked(now mono.Time, sendCallMeMaybe bool) {
de . c . dlogf ( "[v1] magicsock: disco: send, starting discovery for %v (%v)" , de . publicKey . ShortString ( ) , de . discoShort ( ) )
de . c . dlogf ( "[v1] magicsock: disco: send, starting discovery for %v (%v)" , de . publicKey . ShortString ( ) , de . discoShort ( ) )
}
}
de . start PingLocked( ep , now , pingDiscovery )
de . start Disco PingLocked( ep , now , pingDiscovery )
}
}
derpAddr := de . derpAddr
derpAddr := de . derpAddr
if sentAny && sendCallMeMaybe && derpAddr . IsValid ( ) {
if sentAny && sendCallMeMaybe && derpAddr . IsValid ( ) {
@ -4632,9 +4738,99 @@ func (de *endpoint) sendPingsLocked(now mono.Time, sendCallMeMaybe bool) {
}
}
}
}
// sendWireGuardOnlyPingsLocked evaluates all available addresses for
// a WireGuard only endpoint and initates an ICMP ping for useable
// addresses.
func ( de * endpoint ) sendWireGuardOnlyPingsLocked ( now mono . Time ) {
if runtime . GOOS == "js" {
return
}
// Normally the we only send pings at a low rate as the decision to start
// sending a ping sets bestAddrAtUntil with a reasonable time to keep trying
// that address, however, if that code changed we may want to be sure that
// we don't ever send excessive pings to avoid impact to the client/user.
if ! now . After ( de . lastFullPing . Add ( 10 * time . Second ) ) {
return
}
de . lastFullPing = now
for ipp := range de . endpointState {
if ipp . Addr ( ) . Is4 ( ) && de . c . noV4 . Load ( ) {
continue
}
if ipp . Addr ( ) . Is6 ( ) && de . c . noV6 . Load ( ) {
continue
}
go de . sendWireGuardOnlyPing ( ipp , now )
}
}
// getPinger lazily instantiates a pinger and returns it, if it was
// already instantiated it returns the existing one.
func ( c * Conn ) getPinger ( ) * ping . Pinger {
return c . wgPinger . Get ( func ( ) * ping . Pinger {
return ping . New ( c . connCtx , c . dlogf , netns . Listener ( c . logf , c . netMon ) )
} )
}
// sendWireGuardOnlyPing sends a ICMP ping to a WireGuard only address to
// discover the latency.
func ( de * endpoint ) sendWireGuardOnlyPing ( ipp netip . AddrPort , now mono . Time ) {
ctx , cancel := context . WithTimeout ( de . c . connCtx , 5 * time . Second )
defer cancel ( )
de . setLastPing ( ipp , now )
addr := & net . IPAddr {
IP : net . IP ( ipp . Addr ( ) . AsSlice ( ) ) ,
Zone : ipp . Addr ( ) . Zone ( ) ,
}
p := de . c . getPinger ( )
if p == nil {
de . c . logf ( "[v2] magicsock: sendWireGuardOnlyPingLocked: pinger is nil" )
return
}
latency , err := p . Send ( ctx , addr , nil )
if err != nil {
de . c . logf ( "[v2] magicsock: sendWireGuardOnlyPingLocked: %s" , err )
return
}
de . mu . Lock ( )
defer de . mu . Unlock ( )
state , ok := de . endpointState [ ipp ]
if ! ok {
return
}
state . addPongReplyLocked ( pongReply {
latency : latency ,
pongAt : now ,
from : ipp ,
pongSrc : netip . AddrPort { } , // We don't know this.
} )
}
// setLastPing sets lastPing on the endpointState to now.
func ( de * endpoint ) setLastPing ( ipp netip . AddrPort , now mono . Time ) {
de . mu . Lock ( )
defer de . mu . Unlock ( )
state , ok := de . endpointState [ ipp ]
if ! ok {
return
}
state . lastPing = now
}
// updateFromNode updates the endpoint based on a tailcfg.Node from a NetMap
// update.
func ( de * endpoint ) updateFromNode ( n * tailcfg . Node , heartbeatDisabled bool ) {
func ( de * endpoint ) updateFromNode ( n * tailcfg . Node , heartbeatDisabled bool ) {
if n == nil {
if n == nil {
panic ( "nil node when updating disco ep" )
panic ( "nil node when updating end point ")
}
}
de . mu . Lock ( )
de . mu . Lock ( )
defer de . mu . Unlock ( )
defer de . mu . Unlock ( )
@ -4642,22 +4838,6 @@ func (de *endpoint) updateFromNode(n *tailcfg.Node, heartbeatDisabled bool) {
de . heartbeatDisabled = heartbeatDisabled
de . heartbeatDisabled = heartbeatDisabled
de . expired = n . Expired
de . expired = n . Expired
// TODO(#7826): add support for more than one endpoint for pure WireGuard
// peers, and/or support for probing "bestness" for endpoints.
if n . IsWireGuardOnly {
for _ , ep := range n . Endpoints {
ipp , err := netip . ParseAddrPort ( ep )
if err != nil {
de . c . logf ( "magicsock: invalid endpoint: %s %s" , ep , err )
continue
}
de . bestAddr = addrLatency {
AddrPort : ipp ,
}
break
}
}
epDisco := de . disco . Load ( )
epDisco := de . disco . Load ( )
var discoKey key . DiscoPublic
var discoKey key . DiscoPublic
if epDisco != nil {
if epDisco != nil {
@ -4810,7 +4990,7 @@ func (de *endpoint) handlePongConnLocked(m *disco.Pong, di *discoInfo, src netip
return false
return false
}
}
knownTxID = true // for naked returns below
knownTxID = true // for naked returns below
de . removeSent PingLocked( m . TxID , sp )
de . removeSent Disco PingLocked( m . TxID , sp )
now := mono . Now ( )
now := mono . Now ( )
latency := now . Sub ( sp . at )
latency := now . Sub ( sp . at )
@ -5026,7 +5206,7 @@ func (de *endpoint) handleCallMeMaybe(m *disco.CallMeMaybe) {
for _ , st := range de . endpointState {
for _ , st := range de . endpointState {
st . lastPing = 0
st . lastPing = 0
}
}
de . send PingsLocked( mono . Now ( ) , false )
de . send Disco PingsLocked( mono . Now ( ) , false )
}
}
func ( de * endpoint ) populatePeerStatus ( ps * ipnstate . PeerStatus ) {
func ( de * endpoint ) populatePeerStatus ( ps * ipnstate . PeerStatus ) {
@ -5043,7 +5223,7 @@ func (de *endpoint) populatePeerStatus(ps *ipnstate.PeerStatus) {
ps . LastWrite = de . lastSend . WallTime ( )
ps . LastWrite = de . lastSend . WallTime ( )
ps . Active = now . Sub ( de . lastSend ) < sessionActiveTimeout
ps . Active = now . Sub ( de . lastSend ) < sessionActiveTimeout
if udpAddr , derpAddr := de . addrForSendLocked ( now ) ; udpAddr . IsValid ( ) && ! derpAddr . IsValid ( ) {
if udpAddr , derpAddr , _ := de . addrForSendLocked ( now ) ; udpAddr . IsValid ( ) && ! derpAddr . IsValid ( ) {
ps . CurAddr = udpAddr . String ( )
ps . CurAddr = udpAddr . String ( )
}
}
}
}
@ -5086,7 +5266,7 @@ func (de *endpoint) resetLocked() {
es . lastPing = 0
es . lastPing = 0
}
}
for txid , sp := range de . sentPing {
for txid , sp := range de . sentPing {
de . removeSent PingLocked( txid , sp )
de . removeSent Disco PingLocked( txid , sp )
}
}
}
}