| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 | 
							- package nebula
 
- import (
 
- 	"bytes"
 
- 	"context"
 
- 	"encoding/binary"
 
- 	"fmt"
 
- 	"net/netip"
 
- 	"sync"
 
- 	"sync/atomic"
 
- 	"time"
 
- 	"github.com/rcrowley/go-metrics"
 
- 	"github.com/sirupsen/logrus"
 
- 	"github.com/slackhq/nebula/cert"
 
- 	"github.com/slackhq/nebula/config"
 
- 	"github.com/slackhq/nebula/header"
 
- )
 
- type trafficDecision int
 
- const (
 
- 	doNothing      trafficDecision = 0
 
- 	deleteTunnel   trafficDecision = 1 // delete the hostinfo on our side, do not notify the remote
 
- 	closeTunnel    trafficDecision = 2 // delete the hostinfo and notify the remote
 
- 	swapPrimary    trafficDecision = 3
 
- 	migrateRelays  trafficDecision = 4
 
- 	tryRehandshake trafficDecision = 5
 
- 	sendTestPacket trafficDecision = 6
 
- )
 
- type connectionManager struct {
 
- 	// relayUsed holds which relay localIndexs are in use
 
- 	relayUsed     map[uint32]struct{}
 
- 	relayUsedLock *sync.RWMutex
 
- 	hostMap      *HostMap
 
- 	trafficTimer *LockingTimerWheel[uint32]
 
- 	intf         *Interface
 
- 	punchy       *Punchy
 
- 	// Configuration settings
 
- 	checkInterval           time.Duration
 
- 	pendingDeletionInterval time.Duration
 
- 	inactivityTimeout       atomic.Int64
 
- 	dropInactive            atomic.Bool
 
- 	metricsTxPunchy metrics.Counter
 
- 	l *logrus.Logger
 
- }
 
- func newConnectionManagerFromConfig(l *logrus.Logger, c *config.C, hm *HostMap, p *Punchy) *connectionManager {
 
- 	cm := &connectionManager{
 
- 		hostMap:         hm,
 
- 		l:               l,
 
- 		punchy:          p,
 
- 		relayUsed:       make(map[uint32]struct{}),
 
- 		relayUsedLock:   &sync.RWMutex{},
 
- 		metricsTxPunchy: metrics.GetOrRegisterCounter("messages.tx.punchy", nil),
 
- 	}
 
- 	cm.reload(c, true)
 
- 	c.RegisterReloadCallback(func(c *config.C) {
 
- 		cm.reload(c, false)
 
- 	})
 
- 	return cm
 
- }
 
- func (cm *connectionManager) reload(c *config.C, initial bool) {
 
- 	if initial {
 
- 		cm.checkInterval = time.Duration(c.GetInt("timers.connection_alive_interval", 5)) * time.Second
 
- 		cm.pendingDeletionInterval = time.Duration(c.GetInt("timers.pending_deletion_interval", 10)) * time.Second
 
- 		// We want at least a minimum resolution of 500ms per tick so that we can hit these intervals
 
- 		// pretty close to their configured duration.
 
- 		// The inactivity duration is checked each time a hostinfo ticks through so we don't need the wheel to contain it.
 
- 		minDuration := min(time.Millisecond*500, cm.checkInterval, cm.pendingDeletionInterval)
 
- 		maxDuration := max(cm.checkInterval, cm.pendingDeletionInterval)
 
- 		cm.trafficTimer = NewLockingTimerWheel[uint32](minDuration, maxDuration)
 
- 	}
 
- 	if initial || c.HasChanged("tunnels.inactivity_timeout") {
 
- 		old := cm.getInactivityTimeout()
 
- 		cm.inactivityTimeout.Store((int64)(c.GetDuration("tunnels.inactivity_timeout", 10*time.Minute)))
 
- 		if !initial {
 
- 			cm.l.WithField("oldDuration", old).
 
- 				WithField("newDuration", cm.getInactivityTimeout()).
 
- 				Info("Inactivity timeout has changed")
 
- 		}
 
- 	}
 
- 	if initial || c.HasChanged("tunnels.drop_inactive") {
 
- 		old := cm.dropInactive.Load()
 
- 		cm.dropInactive.Store(c.GetBool("tunnels.drop_inactive", false))
 
- 		if !initial {
 
- 			cm.l.WithField("oldBool", old).
 
- 				WithField("newBool", cm.dropInactive.Load()).
 
- 				Info("Drop inactive setting has changed")
 
- 		}
 
- 	}
 
- }
 
- func (cm *connectionManager) getInactivityTimeout() time.Duration {
 
- 	return (time.Duration)(cm.inactivityTimeout.Load())
 
- }
 
- func (cm *connectionManager) In(h *HostInfo) {
 
- 	h.in.Store(true)
 
- }
 
- func (cm *connectionManager) Out(h *HostInfo) {
 
- 	h.out.Store(true)
 
- }
 
- func (cm *connectionManager) RelayUsed(localIndex uint32) {
 
- 	cm.relayUsedLock.RLock()
 
- 	// If this already exists, return
 
- 	if _, ok := cm.relayUsed[localIndex]; ok {
 
- 		cm.relayUsedLock.RUnlock()
 
- 		return
 
- 	}
 
- 	cm.relayUsedLock.RUnlock()
 
- 	cm.relayUsedLock.Lock()
 
- 	cm.relayUsed[localIndex] = struct{}{}
 
- 	cm.relayUsedLock.Unlock()
 
- }
 
- // getAndResetTrafficCheck returns if there was any inbound or outbound traffic within the last tick and
 
- // resets the state for this local index
 
- func (cm *connectionManager) getAndResetTrafficCheck(h *HostInfo, now time.Time) (bool, bool) {
 
- 	in := h.in.Swap(false)
 
- 	out := h.out.Swap(false)
 
- 	if in || out {
 
- 		h.lastUsed = now
 
- 	}
 
- 	return in, out
 
- }
 
- // AddTrafficWatch must be called for every new HostInfo.
 
- // We will continue to monitor the HostInfo until the tunnel is dropped.
 
- func (cm *connectionManager) AddTrafficWatch(h *HostInfo) {
 
- 	if h.out.Swap(true) == false {
 
- 		cm.trafficTimer.Add(h.localIndexId, cm.checkInterval)
 
- 	}
 
- }
 
- func (cm *connectionManager) Start(ctx context.Context) {
 
- 	clockSource := time.NewTicker(cm.trafficTimer.t.tickDuration)
 
- 	defer clockSource.Stop()
 
- 	p := []byte("")
 
- 	nb := make([]byte, 12, 12)
 
- 	out := make([]byte, mtu)
 
- 	for {
 
- 		select {
 
- 		case <-ctx.Done():
 
- 			return
 
- 		case now := <-clockSource.C:
 
- 			cm.trafficTimer.Advance(now)
 
- 			for {
 
- 				localIndex, has := cm.trafficTimer.Purge()
 
- 				if !has {
 
- 					break
 
- 				}
 
- 				cm.doTrafficCheck(localIndex, p, nb, out, now)
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- func (cm *connectionManager) doTrafficCheck(localIndex uint32, p, nb, out []byte, now time.Time) {
 
- 	decision, hostinfo, primary := cm.makeTrafficDecision(localIndex, now)
 
- 	switch decision {
 
- 	case deleteTunnel:
 
- 		if cm.hostMap.DeleteHostInfo(hostinfo) {
 
- 			// Only clearing the lighthouse cache if this is the last hostinfo for this vpn ip in the hostmap
 
- 			cm.intf.lightHouse.DeleteVpnAddrs(hostinfo.vpnAddrs)
 
- 		}
 
- 	case closeTunnel:
 
- 		cm.intf.sendCloseTunnel(hostinfo)
 
- 		cm.intf.closeTunnel(hostinfo)
 
- 	case swapPrimary:
 
- 		cm.swapPrimary(hostinfo, primary)
 
- 	case migrateRelays:
 
- 		cm.migrateRelayUsed(hostinfo, primary)
 
- 	case tryRehandshake:
 
- 		cm.tryRehandshake(hostinfo)
 
- 	case sendTestPacket:
 
- 		cm.intf.SendMessageToHostInfo(header.Test, header.TestRequest, hostinfo, p, nb, out)
 
- 	}
 
- 	cm.resetRelayTrafficCheck(hostinfo)
 
- }
 
- func (cm *connectionManager) resetRelayTrafficCheck(hostinfo *HostInfo) {
 
- 	if hostinfo != nil {
 
- 		cm.relayUsedLock.Lock()
 
- 		defer cm.relayUsedLock.Unlock()
 
- 		// No need to migrate any relays, delete usage info now.
 
- 		for _, idx := range hostinfo.relayState.CopyRelayForIdxs() {
 
- 			delete(cm.relayUsed, idx)
 
- 		}
 
- 	}
 
- }
 
- func (cm *connectionManager) migrateRelayUsed(oldhostinfo, newhostinfo *HostInfo) {
 
- 	relayFor := oldhostinfo.relayState.CopyAllRelayFor()
 
- 	for _, r := range relayFor {
 
- 		existing, ok := newhostinfo.relayState.QueryRelayForByIp(r.PeerAddr)
 
- 		var index uint32
 
- 		var relayFrom netip.Addr
 
- 		var relayTo netip.Addr
 
- 		switch {
 
- 		case ok:
 
- 			switch existing.State {
 
- 			case Established, PeerRequested, Disestablished:
 
- 				// This relay already exists in newhostinfo, then do nothing.
 
- 				continue
 
- 			case Requested:
 
- 				// The relay exists in a Requested state; re-send the request
 
- 				index = existing.LocalIndex
 
- 				switch r.Type {
 
- 				case TerminalType:
 
- 					relayFrom = cm.intf.myVpnAddrs[0]
 
- 					relayTo = existing.PeerAddr
 
- 				case ForwardingType:
 
- 					relayFrom = existing.PeerAddr
 
- 					relayTo = newhostinfo.vpnAddrs[0]
 
- 				default:
 
- 					// should never happen
 
- 					panic(fmt.Sprintf("Migrating unknown relay type: %v", r.Type))
 
- 				}
 
- 			}
 
- 		case !ok:
 
- 			cm.relayUsedLock.RLock()
 
- 			if _, relayUsed := cm.relayUsed[r.LocalIndex]; !relayUsed {
 
- 				// The relay hasn't been used; don't migrate it.
 
- 				cm.relayUsedLock.RUnlock()
 
- 				continue
 
- 			}
 
- 			cm.relayUsedLock.RUnlock()
 
- 			// The relay doesn't exist at all; create some relay state and send the request.
 
- 			var err error
 
- 			index, err = AddRelay(cm.l, newhostinfo, cm.hostMap, r.PeerAddr, nil, r.Type, Requested)
 
- 			if err != nil {
 
- 				cm.l.WithError(err).Error("failed to migrate relay to new hostinfo")
 
- 				continue
 
- 			}
 
- 			switch r.Type {
 
- 			case TerminalType:
 
- 				relayFrom = cm.intf.myVpnAddrs[0]
 
- 				relayTo = r.PeerAddr
 
- 			case ForwardingType:
 
- 				relayFrom = r.PeerAddr
 
- 				relayTo = newhostinfo.vpnAddrs[0]
 
- 			default:
 
- 				// should never happen
 
- 				panic(fmt.Sprintf("Migrating unknown relay type: %v", r.Type))
 
- 			}
 
- 		}
 
- 		// Send a CreateRelayRequest to the peer.
 
- 		req := NebulaControl{
 
- 			Type:                NebulaControl_CreateRelayRequest,
 
- 			InitiatorRelayIndex: index,
 
- 		}
 
- 		switch newhostinfo.GetCert().Certificate.Version() {
 
- 		case cert.Version1:
 
- 			if !relayFrom.Is4() {
 
- 				cm.l.Error("can not migrate v1 relay with a v6 network because the relay is not running a current nebula version")
 
- 				continue
 
- 			}
 
- 			if !relayTo.Is4() {
 
- 				cm.l.Error("can not migrate v1 relay with a v6 remote network because the relay is not running a current nebula version")
 
- 				continue
 
- 			}
 
- 			b := relayFrom.As4()
 
- 			req.OldRelayFromAddr = binary.BigEndian.Uint32(b[:])
 
- 			b = relayTo.As4()
 
- 			req.OldRelayToAddr = binary.BigEndian.Uint32(b[:])
 
- 		case cert.Version2:
 
- 			req.RelayFromAddr = netAddrToProtoAddr(relayFrom)
 
- 			req.RelayToAddr = netAddrToProtoAddr(relayTo)
 
- 		default:
 
- 			newhostinfo.logger(cm.l).Error("Unknown certificate version found while attempting to migrate relay")
 
- 			continue
 
- 		}
 
- 		msg, err := req.Marshal()
 
- 		if err != nil {
 
- 			cm.l.WithError(err).Error("failed to marshal Control message to migrate relay")
 
- 		} else {
 
- 			cm.intf.SendMessageToHostInfo(header.Control, 0, newhostinfo, msg, make([]byte, 12), make([]byte, mtu))
 
- 			cm.l.WithFields(logrus.Fields{
 
- 				"relayFrom":           req.RelayFromAddr,
 
- 				"relayTo":             req.RelayToAddr,
 
- 				"initiatorRelayIndex": req.InitiatorRelayIndex,
 
- 				"responderRelayIndex": req.ResponderRelayIndex,
 
- 				"vpnAddrs":            newhostinfo.vpnAddrs}).
 
- 				Info("send CreateRelayRequest")
 
- 		}
 
- 	}
 
- }
 
- func (cm *connectionManager) makeTrafficDecision(localIndex uint32, now time.Time) (trafficDecision, *HostInfo, *HostInfo) {
 
- 	// Read lock the main hostmap to order decisions based on tunnels being the primary tunnel
 
- 	cm.hostMap.RLock()
 
- 	defer cm.hostMap.RUnlock()
 
- 	hostinfo := cm.hostMap.Indexes[localIndex]
 
- 	if hostinfo == nil {
 
- 		cm.l.WithField("localIndex", localIndex).Debugln("Not found in hostmap")
 
- 		return doNothing, nil, nil
 
- 	}
 
- 	if cm.isInvalidCertificate(now, hostinfo) {
 
- 		return closeTunnel, hostinfo, nil
 
- 	}
 
- 	primary := cm.hostMap.Hosts[hostinfo.vpnAddrs[0]]
 
- 	mainHostInfo := true
 
- 	if primary != nil && primary != hostinfo {
 
- 		mainHostInfo = false
 
- 	}
 
- 	// Check for traffic on this hostinfo
 
- 	inTraffic, outTraffic := cm.getAndResetTrafficCheck(hostinfo, now)
 
- 	// A hostinfo is determined alive if there is incoming traffic
 
- 	if inTraffic {
 
- 		decision := doNothing
 
- 		if cm.l.Level >= logrus.DebugLevel {
 
- 			hostinfo.logger(cm.l).
 
- 				WithField("tunnelCheck", m{"state": "alive", "method": "passive"}).
 
- 				Debug("Tunnel status")
 
- 		}
 
- 		hostinfo.pendingDeletion.Store(false)
 
- 		if mainHostInfo {
 
- 			decision = tryRehandshake
 
- 		} else {
 
- 			if cm.shouldSwapPrimary(hostinfo) {
 
- 				decision = swapPrimary
 
- 			} else {
 
- 				// migrate the relays to the primary, if in use.
 
- 				decision = migrateRelays
 
- 			}
 
- 		}
 
- 		cm.trafficTimer.Add(hostinfo.localIndexId, cm.checkInterval)
 
- 		if !outTraffic {
 
- 			// Send a punch packet to keep the NAT state alive
 
- 			cm.sendPunch(hostinfo)
 
- 		}
 
- 		return decision, hostinfo, primary
 
- 	}
 
- 	if hostinfo.pendingDeletion.Load() {
 
- 		// We have already sent a test packet and nothing was returned, this hostinfo is dead
 
- 		hostinfo.logger(cm.l).
 
- 			WithField("tunnelCheck", m{"state": "dead", "method": "active"}).
 
- 			Info("Tunnel status")
 
- 		return deleteTunnel, hostinfo, nil
 
- 	}
 
- 	decision := doNothing
 
- 	if hostinfo != nil && hostinfo.ConnectionState != nil && mainHostInfo {
 
- 		if !outTraffic {
 
- 			inactiveFor, isInactive := cm.isInactive(hostinfo, now)
 
- 			if isInactive {
 
- 				// Tunnel is inactive, tear it down
 
- 				hostinfo.logger(cm.l).
 
- 					WithField("inactiveDuration", inactiveFor).
 
- 					WithField("primary", mainHostInfo).
 
- 					Info("Dropping tunnel due to inactivity")
 
- 				return closeTunnel, hostinfo, primary
 
- 			}
 
- 			// If we aren't sending or receiving traffic then its an unused tunnel and we don't to test the tunnel.
 
- 			// Just maintain NAT state if configured to do so.
 
- 			cm.sendPunch(hostinfo)
 
- 			cm.trafficTimer.Add(hostinfo.localIndexId, cm.checkInterval)
 
- 			return doNothing, nil, nil
 
- 		}
 
- 		if cm.punchy.GetTargetEverything() {
 
- 			// This is similar to the old punchy behavior with a slight optimization.
 
- 			// We aren't receiving traffic but we are sending it, punch on all known
 
- 			// ips in case we need to re-prime NAT state
 
- 			cm.sendPunch(hostinfo)
 
- 		}
 
- 		if cm.l.Level >= logrus.DebugLevel {
 
- 			hostinfo.logger(cm.l).
 
- 				WithField("tunnelCheck", m{"state": "testing", "method": "active"}).
 
- 				Debug("Tunnel status")
 
- 		}
 
- 		// Send a test packet to trigger an authenticated tunnel test, this should suss out any lingering tunnel issues
 
- 		decision = sendTestPacket
 
- 	} else {
 
- 		if cm.l.Level >= logrus.DebugLevel {
 
- 			hostinfo.logger(cm.l).Debugf("Hostinfo sadness")
 
- 		}
 
- 	}
 
- 	hostinfo.pendingDeletion.Store(true)
 
- 	cm.trafficTimer.Add(hostinfo.localIndexId, cm.pendingDeletionInterval)
 
- 	return decision, hostinfo, nil
 
- }
 
- func (cm *connectionManager) isInactive(hostinfo *HostInfo, now time.Time) (time.Duration, bool) {
 
- 	if cm.dropInactive.Load() == false {
 
- 		// We aren't configured to drop inactive tunnels
 
- 		return 0, false
 
- 	}
 
- 	inactiveDuration := now.Sub(hostinfo.lastUsed)
 
- 	if inactiveDuration < cm.getInactivityTimeout() {
 
- 		// It's not considered inactive
 
- 		return inactiveDuration, false
 
- 	}
 
- 	// The tunnel is inactive
 
- 	return inactiveDuration, true
 
- }
 
- func (cm *connectionManager) shouldSwapPrimary(current *HostInfo) bool {
 
- 	// The primary tunnel is the most recent handshake to complete locally and should work entirely fine.
 
- 	// If we are here then we have multiple tunnels for a host pair and neither side believes the same tunnel is primary.
 
- 	// Let's sort this out.
 
- 	// Only one side should swap because if both swap then we may never resolve to a single tunnel.
 
- 	// vpn addr is static across all tunnels for this host pair so lets
 
- 	// use that to determine if we should consider swapping.
 
- 	if current.vpnAddrs[0].Compare(cm.intf.myVpnAddrs[0]) < 0 {
 
- 		// Their primary vpn addr is less than mine. Do not swap.
 
- 		return false
 
- 	}
 
- 	crt := cm.intf.pki.getCertState().getCertificate(current.ConnectionState.myCert.Version())
 
- 	// If this tunnel is using the latest certificate then we should swap it to primary for a bit and see if things
 
- 	// settle down.
 
- 	return bytes.Equal(current.ConnectionState.myCert.Signature(), crt.Signature())
 
- }
 
- func (cm *connectionManager) swapPrimary(current, primary *HostInfo) {
 
- 	cm.hostMap.Lock()
 
- 	// Make sure the primary is still the same after the write lock. This avoids a race with a rehandshake.
 
- 	if cm.hostMap.Hosts[current.vpnAddrs[0]] == primary {
 
- 		cm.hostMap.unlockedMakePrimary(current)
 
- 	}
 
- 	cm.hostMap.Unlock()
 
- }
 
- // isInvalidCertificate will check if we should destroy a tunnel if pki.disconnect_invalid is true and
 
- // the certificate is no longer valid. Block listed certificates will skip the pki.disconnect_invalid
 
- // check and return true.
 
- func (cm *connectionManager) isInvalidCertificate(now time.Time, hostinfo *HostInfo) bool {
 
- 	remoteCert := hostinfo.GetCert()
 
- 	if remoteCert == nil {
 
- 		return false
 
- 	}
 
- 	caPool := cm.intf.pki.GetCAPool()
 
- 	err := caPool.VerifyCachedCertificate(now, remoteCert)
 
- 	if err == nil {
 
- 		return false
 
- 	}
 
- 	if !cm.intf.disconnectInvalid.Load() && err != cert.ErrBlockListed {
 
- 		// Block listed certificates should always be disconnected
 
- 		return false
 
- 	}
 
- 	hostinfo.logger(cm.l).WithError(err).
 
- 		WithField("fingerprint", remoteCert.Fingerprint).
 
- 		Info("Remote certificate is no longer valid, tearing down the tunnel")
 
- 	return true
 
- }
 
- func (cm *connectionManager) sendPunch(hostinfo *HostInfo) {
 
- 	if !cm.punchy.GetPunch() {
 
- 		// Punching is disabled
 
- 		return
 
- 	}
 
- 	if cm.intf.lightHouse.IsAnyLighthouseAddr(hostinfo.vpnAddrs) {
 
- 		// Do not punch to lighthouses, we assume our lighthouse update interval is good enough.
 
- 		// In the event the update interval is not sufficient to maintain NAT state then a publicly available lighthouse
 
- 		// would lose the ability to notify us and punchy.respond would become unreliable.
 
- 		return
 
- 	}
 
- 	if cm.punchy.GetTargetEverything() {
 
- 		hostinfo.remotes.ForEach(cm.hostMap.GetPreferredRanges(), func(addr netip.AddrPort, preferred bool) {
 
- 			cm.metricsTxPunchy.Inc(1)
 
- 			cm.intf.outside.WriteTo([]byte{1}, addr)
 
- 		})
 
- 	} else if hostinfo.remote.IsValid() {
 
- 		cm.metricsTxPunchy.Inc(1)
 
- 		cm.intf.outside.WriteTo([]byte{1}, hostinfo.remote)
 
- 	}
 
- }
 
- func (cm *connectionManager) tryRehandshake(hostinfo *HostInfo) {
 
- 	cs := cm.intf.pki.getCertState()
 
- 	curCrt := hostinfo.ConnectionState.myCert
 
- 	myCrt := cs.getCertificate(curCrt.Version())
 
- 	if curCrt.Version() >= cs.initiatingVersion && bytes.Equal(curCrt.Signature(), myCrt.Signature()) == true {
 
- 		// The current tunnel is using the latest certificate and version, no need to rehandshake.
 
- 		return
 
- 	}
 
- 	cm.l.WithField("vpnAddrs", hostinfo.vpnAddrs).
 
- 		WithField("reason", "local certificate is not current").
 
- 		Info("Re-handshaking with remote")
 
- 	cm.intf.handshakeManager.StartHandshake(hostinfo.vpnAddrs[0], nil)
 
- }
 
 
  |