wgengine/magicsock: allow disco communication without known endpoints

Just because we don't have known endpoints for a peer does not mean that
the peer should become unreachable. If we know the peers key, it should
be able to call us, then we can talk back via whatever path it called us
on. First step - don't drop the packet in this context.

Updates tailscale/corp#19106

Signed-off-by: James Tucker <james@tailscale.com>
release-branch/1.64.0
James Tucker 2 months ago committed by James Tucker
parent 7f4cda23ac
commit a2eb1c22b0

@ -1389,10 +1389,10 @@ func (c *Conn) handleDiscoMessage(msg []byte, src netip.AddrPort, derpNodeSrc ke
return return
} }
if !c.peerMap.anyEndpointForDiscoKey(sender) { if !c.peerMap.knownPeerDiscoKey(sender) {
metricRecvDiscoBadPeer.Add(1) metricRecvDiscoBadPeer.Add(1)
if debugDisco() { if debugDisco() {
c.logf("magicsock: disco: ignoring disco-looking frame, don't know endpoint for %v", sender.ShortString()) c.logf("magicsock: disco: ignoring disco-looking frame, don't know of key %v", sender.ShortString())
} }
return return
} }
@ -2050,7 +2050,7 @@ func (c *Conn) SetNetworkMap(nm *netmap.NetworkMap) {
// discokeys might have changed in the above. Discard unused info. // discokeys might have changed in the above. Discard unused info.
for dk := range c.discoInfo { for dk := range c.discoInfo {
if !c.peerMap.anyEndpointForDiscoKey(dk) { if !c.peerMap.knownPeerDiscoKey(dk) {
delete(c.discoInfo, dk) delete(c.discoInfo, dk)
} }
} }

@ -60,10 +60,11 @@ func (m *peerMap) nodeCount() int {
return len(m.byNodeKey) return len(m.byNodeKey)
} }
// anyEndpointForDiscoKey reports whether there exists any // knownPeerDiscoKey reports whether there exists any peer with the disco key
// peers in the netmap with dk as their DiscoKey. // dk.
func (m *peerMap) anyEndpointForDiscoKey(dk key.DiscoPublic) bool { func (m *peerMap) knownPeerDiscoKey(dk key.DiscoPublic) bool {
return len(m.nodesOfDisco[dk]) > 0 _, ok := m.nodesOfDisco[dk]
return ok
} }
// endpointForNodeKey returns the endpoint for nk, or nil if // endpointForNodeKey returns the endpoint for nk, or nil if

Loading…
Cancel
Save