hostmap.go 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  1. package nebula
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "net"
  7. "net/netip"
  8. "slices"
  9. "sync"
  10. "sync/atomic"
  11. "time"
  12. "github.com/gaissmai/bart"
  13. "github.com/rcrowley/go-metrics"
  14. "github.com/sirupsen/logrus"
  15. "github.com/slackhq/nebula/cert"
  16. "github.com/slackhq/nebula/config"
  17. "github.com/slackhq/nebula/header"
  18. )
  19. const defaultPromoteEvery = 1000 // Count of packets sent before we try moving a tunnel to a preferred underlay ip address
  20. const defaultReQueryEvery = 5000 // Count of packets sent before re-querying a hostinfo to the lighthouse
  21. const defaultReQueryWait = time.Minute // Minimum amount of seconds to wait before re-querying a hostinfo the lighthouse. Evaluated every ReQueryEvery
  22. const MaxRemotes = 10
  23. // MaxHostInfosPerVpnIp is the max number of hostinfos we will track for a given vpn ip
  24. // 5 allows for an initial handshake and each host pair re-handshaking twice
  25. const MaxHostInfosPerVpnIp = 5
  26. // How long we should prevent roaming back to the previous IP.
  27. // This helps prevent flapping due to packets already in flight
  28. const RoamingSuppressSeconds = 2
  29. const (
  30. Requested = iota
  31. PeerRequested
  32. Established
  33. Disestablished
  34. )
  35. const (
  36. Unknowntype = iota
  37. ForwardingType
  38. TerminalType
  39. )
  40. type Relay struct {
  41. Type int
  42. State int
  43. LocalIndex uint32
  44. RemoteIndex uint32
  45. PeerAddr netip.Addr
  46. }
  47. type HostMap struct {
  48. sync.RWMutex //Because we concurrently read and write to our maps
  49. Indexes map[uint32]*HostInfo
  50. Relays map[uint32]*HostInfo // Maps a Relay IDX to a Relay HostInfo object
  51. RemoteIndexes map[uint32]*HostInfo
  52. Hosts map[netip.Addr]*HostInfo
  53. preferredRanges atomic.Pointer[[]netip.Prefix]
  54. l *logrus.Logger
  55. }
  56. // For synchronization, treat the pointed-to Relay struct as immutable. To edit the Relay
  57. // struct, make a copy of an existing value, edit the fileds in the copy, and
  58. // then store a pointer to the new copy in both realyForBy* maps.
  59. type RelayState struct {
  60. sync.RWMutex
  61. relays []netip.Addr // Ordered set of VpnAddrs of Hosts to use as relays to access this peer
  62. // For data race avoidance, the contents of a *Relay are treated immutably. To update a *Relay, copy the existing data,
  63. // modify what needs to be updated, and store the new modified copy in the relayForByIp and relayForByIdx maps (with
  64. // the RelayState Lock held)
  65. relayForByAddr map[netip.Addr]*Relay // Maps vpnAddr of peers for which this HostInfo is a relay to some Relay info
  66. relayForByIdx map[uint32]*Relay // Maps a local index to some Relay info
  67. }
  68. func (rs *RelayState) DeleteRelay(ip netip.Addr) {
  69. rs.Lock()
  70. defer rs.Unlock()
  71. for idx, val := range rs.relays {
  72. if val == ip {
  73. rs.relays = append(rs.relays[:idx], rs.relays[idx+1:]...)
  74. return
  75. }
  76. }
  77. }
  78. func (rs *RelayState) UpdateRelayForByIpState(vpnIp netip.Addr, state int) {
  79. rs.Lock()
  80. defer rs.Unlock()
  81. if r, ok := rs.relayForByAddr[vpnIp]; ok {
  82. newRelay := *r
  83. newRelay.State = state
  84. rs.relayForByAddr[newRelay.PeerAddr] = &newRelay
  85. rs.relayForByIdx[newRelay.LocalIndex] = &newRelay
  86. }
  87. }
  88. func (rs *RelayState) UpdateRelayForByIdxState(idx uint32, state int) {
  89. rs.Lock()
  90. defer rs.Unlock()
  91. if r, ok := rs.relayForByIdx[idx]; ok {
  92. newRelay := *r
  93. newRelay.State = state
  94. rs.relayForByAddr[newRelay.PeerAddr] = &newRelay
  95. rs.relayForByIdx[newRelay.LocalIndex] = &newRelay
  96. }
  97. }
  98. func (rs *RelayState) CopyAllRelayFor() []*Relay {
  99. rs.RLock()
  100. defer rs.RUnlock()
  101. ret := make([]*Relay, 0, len(rs.relayForByIdx))
  102. for _, r := range rs.relayForByIdx {
  103. ret = append(ret, r)
  104. }
  105. return ret
  106. }
  107. func (rs *RelayState) GetRelayForByAddr(addr netip.Addr) (*Relay, bool) {
  108. rs.RLock()
  109. defer rs.RUnlock()
  110. r, ok := rs.relayForByAddr[addr]
  111. return r, ok
  112. }
  113. func (rs *RelayState) InsertRelayTo(ip netip.Addr) {
  114. rs.Lock()
  115. defer rs.Unlock()
  116. if !slices.Contains(rs.relays, ip) {
  117. rs.relays = append(rs.relays, ip)
  118. }
  119. }
  120. func (rs *RelayState) CopyRelayIps() []netip.Addr {
  121. ret := make([]netip.Addr, len(rs.relays))
  122. rs.RLock()
  123. defer rs.RUnlock()
  124. copy(ret, rs.relays)
  125. return ret
  126. }
  127. func (rs *RelayState) CopyRelayForIps() []netip.Addr {
  128. rs.RLock()
  129. defer rs.RUnlock()
  130. currentRelays := make([]netip.Addr, 0, len(rs.relayForByAddr))
  131. for relayIp := range rs.relayForByAddr {
  132. currentRelays = append(currentRelays, relayIp)
  133. }
  134. return currentRelays
  135. }
  136. func (rs *RelayState) CopyRelayForIdxs() []uint32 {
  137. rs.RLock()
  138. defer rs.RUnlock()
  139. ret := make([]uint32, 0, len(rs.relayForByIdx))
  140. for i := range rs.relayForByIdx {
  141. ret = append(ret, i)
  142. }
  143. return ret
  144. }
  145. func (rs *RelayState) CompleteRelayByIP(vpnIp netip.Addr, remoteIdx uint32) bool {
  146. rs.Lock()
  147. defer rs.Unlock()
  148. r, ok := rs.relayForByAddr[vpnIp]
  149. if !ok {
  150. return false
  151. }
  152. newRelay := *r
  153. newRelay.State = Established
  154. newRelay.RemoteIndex = remoteIdx
  155. rs.relayForByIdx[r.LocalIndex] = &newRelay
  156. rs.relayForByAddr[r.PeerAddr] = &newRelay
  157. return true
  158. }
  159. func (rs *RelayState) CompleteRelayByIdx(localIdx uint32, remoteIdx uint32) (*Relay, bool) {
  160. rs.Lock()
  161. defer rs.Unlock()
  162. r, ok := rs.relayForByIdx[localIdx]
  163. if !ok {
  164. return nil, false
  165. }
  166. newRelay := *r
  167. newRelay.State = Established
  168. newRelay.RemoteIndex = remoteIdx
  169. rs.relayForByIdx[r.LocalIndex] = &newRelay
  170. rs.relayForByAddr[r.PeerAddr] = &newRelay
  171. return &newRelay, true
  172. }
  173. func (rs *RelayState) QueryRelayForByIp(vpnIp netip.Addr) (*Relay, bool) {
  174. rs.RLock()
  175. defer rs.RUnlock()
  176. r, ok := rs.relayForByAddr[vpnIp]
  177. return r, ok
  178. }
  179. func (rs *RelayState) QueryRelayForByIdx(idx uint32) (*Relay, bool) {
  180. rs.RLock()
  181. defer rs.RUnlock()
  182. r, ok := rs.relayForByIdx[idx]
  183. return r, ok
  184. }
  185. func (rs *RelayState) InsertRelay(ip netip.Addr, idx uint32, r *Relay) {
  186. rs.Lock()
  187. defer rs.Unlock()
  188. rs.relayForByAddr[ip] = r
  189. rs.relayForByIdx[idx] = r
  190. }
  191. type NetworkType uint8
  192. const (
  193. NetworkTypeUnknown NetworkType = iota
  194. // NetworkTypeVPN is a network that overlaps one or more of the vpnNetworks in our certificate
  195. NetworkTypeVPN
  196. // NetworkTypeVPNPeer is a network that does not overlap one of our networks
  197. NetworkTypeVPNPeer
  198. // NetworkTypeUnsafe is a network from Certificate.UnsafeNetworks()
  199. NetworkTypeUnsafe
  200. )
  201. type HostInfo struct {
  202. remote netip.AddrPort
  203. remotes *RemoteList
  204. promoteCounter atomic.Uint32
  205. ConnectionState *ConnectionState
  206. remoteIndexId uint32
  207. localIndexId uint32
  208. // vpnAddrs is a list of vpn addresses assigned to this host that are within our own vpn networks
  209. // The host may have other vpn addresses that are outside our
  210. // vpn networks but were removed because they are not usable
  211. vpnAddrs []netip.Addr
  212. // networks is a combination of specific vpn addresses (not prefixes!) and full unsafe networks assigned to this host.
  213. networks *bart.Table[NetworkType]
  214. relayState RelayState
  215. // HandshakePacket records the packets used to create this hostinfo
  216. // We need these to avoid replayed handshake packets creating new hostinfos which causes churn
  217. HandshakePacket map[uint8][]byte
  218. // nextLHQuery is the earliest we can ask the lighthouse for new information.
  219. // This is used to limit lighthouse re-queries in chatty clients
  220. nextLHQuery atomic.Int64
  221. // lastRebindCount is the other side of Interface.rebindCount, if these values don't match then we need to ask LH
  222. // for a punch from the remote end of this tunnel. The goal being to prime their conntrack for our traffic just like
  223. // with a handshake
  224. lastRebindCount int8
  225. // lastHandshakeTime records the time the remote side told us about at the stage when the handshake was completed locally
  226. // Stage 1 packet will contain it if I am a responder, stage 2 packet if I am an initiator
  227. // This is used to avoid an attack where a handshake packet is replayed after some time
  228. lastHandshakeTime uint64
  229. lastRoam time.Time
  230. lastRoamRemote netip.AddrPort
  231. // Used to track other hostinfos for this vpn ip since only 1 can be primary
  232. // Synchronised via hostmap lock and not the hostinfo lock.
  233. next, prev *HostInfo
  234. //TODO: in, out, and others might benefit from being an atomic.Int32. We could collapse connectionManager pendingDeletion, relayUsed, and in/out into this 1 thing
  235. in, out, pendingDeletion atomic.Bool
  236. // lastUsed tracks the last time ConnectionManager checked the tunnel and it was in use.
  237. // This value will be behind against actual tunnel utilization in the hot path.
  238. // This should only be used by the ConnectionManagers ticker routine.
  239. lastUsed time.Time
  240. }
  241. type ViaSender struct {
  242. UdpAddr netip.AddrPort
  243. relayHI *HostInfo // relayHI is the host info object of the relay
  244. remoteIdx uint32 // remoteIdx is the index included in the header of the received packet
  245. relay *Relay // relay contains the rest of the relay information, including the PeerIP of the host trying to communicate with us.
  246. IsRelayed bool // IsRelayed is true if the packet was sent through a relay
  247. }
  248. func (v ViaSender) String() string {
  249. if v.IsRelayed {
  250. return fmt.Sprintf("%s (relayed)", v.UdpAddr)
  251. }
  252. return v.UdpAddr.String()
  253. }
  254. func (v ViaSender) MarshalJSON() ([]byte, error) {
  255. if v.IsRelayed {
  256. return json.Marshal(m{"relay": v.UdpAddr})
  257. }
  258. return json.Marshal(m{"direct": v.UdpAddr})
  259. }
  260. type cachedPacket struct {
  261. messageType header.MessageType
  262. messageSubType header.MessageSubType
  263. callback packetCallback
  264. packet []byte
  265. }
  266. type packetCallback func(t header.MessageType, st header.MessageSubType, h *HostInfo, p, nb, out []byte)
  267. type cachedPacketMetrics struct {
  268. sent metrics.Counter
  269. dropped metrics.Counter
  270. }
  271. func NewHostMapFromConfig(l *logrus.Logger, c *config.C) *HostMap {
  272. hm := newHostMap(l)
  273. hm.reload(c, true)
  274. c.RegisterReloadCallback(func(c *config.C) {
  275. hm.reload(c, false)
  276. })
  277. l.WithField("preferredRanges", hm.GetPreferredRanges()).
  278. Info("Main HostMap created")
  279. return hm
  280. }
  281. func newHostMap(l *logrus.Logger) *HostMap {
  282. return &HostMap{
  283. Indexes: map[uint32]*HostInfo{},
  284. Relays: map[uint32]*HostInfo{},
  285. RemoteIndexes: map[uint32]*HostInfo{},
  286. Hosts: map[netip.Addr]*HostInfo{},
  287. l: l,
  288. }
  289. }
  290. func (hm *HostMap) reload(c *config.C, initial bool) {
  291. if initial || c.HasChanged("preferred_ranges") {
  292. var preferredRanges []netip.Prefix
  293. rawPreferredRanges := c.GetStringSlice("preferred_ranges", []string{})
  294. for _, rawPreferredRange := range rawPreferredRanges {
  295. preferredRange, err := netip.ParsePrefix(rawPreferredRange)
  296. if err != nil {
  297. hm.l.WithError(err).WithField("range", rawPreferredRanges).Warn("Failed to parse preferred ranges, ignoring")
  298. continue
  299. }
  300. preferredRanges = append(preferredRanges, preferredRange)
  301. }
  302. oldRanges := hm.preferredRanges.Swap(&preferredRanges)
  303. if !initial {
  304. hm.l.WithField("oldPreferredRanges", *oldRanges).WithField("newPreferredRanges", preferredRanges).Info("preferred_ranges changed")
  305. }
  306. }
  307. }
  308. // EmitStats reports host, index, and relay counts to the stats collection system
  309. func (hm *HostMap) EmitStats() {
  310. hm.RLock()
  311. hostLen := len(hm.Hosts)
  312. indexLen := len(hm.Indexes)
  313. remoteIndexLen := len(hm.RemoteIndexes)
  314. relaysLen := len(hm.Relays)
  315. hm.RUnlock()
  316. metrics.GetOrRegisterGauge("hostmap.main.hosts", nil).Update(int64(hostLen))
  317. metrics.GetOrRegisterGauge("hostmap.main.indexes", nil).Update(int64(indexLen))
  318. metrics.GetOrRegisterGauge("hostmap.main.remoteIndexes", nil).Update(int64(remoteIndexLen))
  319. metrics.GetOrRegisterGauge("hostmap.main.relayIndexes", nil).Update(int64(relaysLen))
  320. }
  321. // DeleteHostInfo will fully unlink the hostinfo and return true if it was the final hostinfo for this vpn ip
  322. func (hm *HostMap) DeleteHostInfo(hostinfo *HostInfo) bool {
  323. // Delete the host itself, ensuring it's not modified anymore
  324. hm.Lock()
  325. // If we have a previous or next hostinfo then we are not the last one for this vpn ip
  326. final := (hostinfo.next == nil && hostinfo.prev == nil)
  327. hm.unlockedDeleteHostInfo(hostinfo)
  328. hm.Unlock()
  329. return final
  330. }
  331. func (hm *HostMap) MakePrimary(hostinfo *HostInfo) {
  332. hm.Lock()
  333. defer hm.Unlock()
  334. hm.unlockedMakePrimary(hostinfo)
  335. }
  336. func (hm *HostMap) unlockedMakePrimary(hostinfo *HostInfo) {
  337. // Get the current primary, if it exists
  338. oldHostinfo := hm.Hosts[hostinfo.vpnAddrs[0]]
  339. // Every address in the hostinfo gets elevated to primary
  340. for _, vpnAddr := range hostinfo.vpnAddrs {
  341. //NOTE: It is possible that we leave a dangling hostinfo here but connection manager works on
  342. // indexes so it should be fine.
  343. hm.Hosts[vpnAddr] = hostinfo
  344. }
  345. // If we are already primary then we won't bother re-linking
  346. if oldHostinfo == hostinfo {
  347. return
  348. }
  349. // Unlink this hostinfo
  350. if hostinfo.prev != nil {
  351. hostinfo.prev.next = hostinfo.next
  352. }
  353. if hostinfo.next != nil {
  354. hostinfo.next.prev = hostinfo.prev
  355. }
  356. // If there wasn't a previous primary then clear out any links
  357. if oldHostinfo == nil {
  358. hostinfo.next = nil
  359. hostinfo.prev = nil
  360. return
  361. }
  362. // Relink the hostinfo as primary
  363. hostinfo.next = oldHostinfo
  364. oldHostinfo.prev = hostinfo
  365. hostinfo.prev = nil
  366. }
  367. func (hm *HostMap) unlockedDeleteHostInfo(hostinfo *HostInfo) {
  368. for _, addr := range hostinfo.vpnAddrs {
  369. h := hm.Hosts[addr]
  370. for h != nil {
  371. if h == hostinfo {
  372. hm.unlockedInnerDeleteHostInfo(h, addr)
  373. }
  374. h = h.next
  375. }
  376. }
  377. }
  378. func (hm *HostMap) unlockedInnerDeleteHostInfo(hostinfo *HostInfo, addr netip.Addr) {
  379. primary, ok := hm.Hosts[addr]
  380. isLastHostinfo := hostinfo.next == nil && hostinfo.prev == nil
  381. if ok && primary == hostinfo {
  382. // The vpn addr pointer points to the same hostinfo as the local index id, we can remove it
  383. delete(hm.Hosts, addr)
  384. if len(hm.Hosts) == 0 {
  385. hm.Hosts = map[netip.Addr]*HostInfo{}
  386. }
  387. if hostinfo.next != nil {
  388. // We had more than 1 hostinfo at this vpn addr, promote the next in the list to primary
  389. hm.Hosts[addr] = hostinfo.next
  390. // It is primary, there is no previous hostinfo now
  391. hostinfo.next.prev = nil
  392. }
  393. } else {
  394. // Relink if we were in the middle of multiple hostinfos for this vpn addr
  395. if hostinfo.prev != nil {
  396. hostinfo.prev.next = hostinfo.next
  397. }
  398. if hostinfo.next != nil {
  399. hostinfo.next.prev = hostinfo.prev
  400. }
  401. }
  402. hostinfo.next = nil
  403. hostinfo.prev = nil
  404. // The remote index uses index ids outside our control so lets make sure we are only removing
  405. // the remote index pointer here if it points to the hostinfo we are deleting
  406. hostinfo2, ok := hm.RemoteIndexes[hostinfo.remoteIndexId]
  407. if ok && hostinfo2 == hostinfo {
  408. delete(hm.RemoteIndexes, hostinfo.remoteIndexId)
  409. if len(hm.RemoteIndexes) == 0 {
  410. hm.RemoteIndexes = map[uint32]*HostInfo{}
  411. }
  412. }
  413. delete(hm.Indexes, hostinfo.localIndexId)
  414. if len(hm.Indexes) == 0 {
  415. hm.Indexes = map[uint32]*HostInfo{}
  416. }
  417. if hm.l.Level >= logrus.DebugLevel {
  418. hm.l.WithField("hostMap", m{"mapTotalSize": len(hm.Hosts),
  419. "vpnAddrs": hostinfo.vpnAddrs, "indexNumber": hostinfo.localIndexId, "remoteIndexNumber": hostinfo.remoteIndexId}).
  420. Debug("Hostmap hostInfo deleted")
  421. }
  422. if isLastHostinfo {
  423. // I have lost connectivity to my peers. My relay tunnel is likely broken. Mark the next
  424. // hops as 'Requested' so that new relay tunnels are created in the future.
  425. hm.unlockedDisestablishVpnAddrRelayFor(hostinfo)
  426. }
  427. // Clean up any local relay indexes for which I am acting as a relay hop
  428. for _, localRelayIdx := range hostinfo.relayState.CopyRelayForIdxs() {
  429. delete(hm.Relays, localRelayIdx)
  430. }
  431. }
  432. func (hm *HostMap) QueryIndex(index uint32) *HostInfo {
  433. hm.RLock()
  434. if h, ok := hm.Indexes[index]; ok {
  435. hm.RUnlock()
  436. return h
  437. } else {
  438. hm.RUnlock()
  439. return nil
  440. }
  441. }
  442. func (hm *HostMap) QueryRelayIndex(index uint32) *HostInfo {
  443. hm.RLock()
  444. if h, ok := hm.Relays[index]; ok {
  445. hm.RUnlock()
  446. return h
  447. } else {
  448. hm.RUnlock()
  449. return nil
  450. }
  451. }
  452. func (hm *HostMap) QueryReverseIndex(index uint32) *HostInfo {
  453. hm.RLock()
  454. if h, ok := hm.RemoteIndexes[index]; ok {
  455. hm.RUnlock()
  456. return h
  457. } else {
  458. hm.RUnlock()
  459. return nil
  460. }
  461. }
  462. func (hm *HostMap) QueryVpnAddr(vpnIp netip.Addr) *HostInfo {
  463. return hm.queryVpnAddr(vpnIp, nil)
  464. }
  465. func (hm *HostMap) QueryVpnAddrsRelayFor(targetIps []netip.Addr, relayHostIp netip.Addr) (*HostInfo, *Relay, error) {
  466. hm.RLock()
  467. defer hm.RUnlock()
  468. h, ok := hm.Hosts[relayHostIp]
  469. if !ok {
  470. return nil, nil, errors.New("unable to find host")
  471. }
  472. for h != nil {
  473. for _, targetIp := range targetIps {
  474. r, ok := h.relayState.QueryRelayForByIp(targetIp)
  475. if ok && r.State == Established {
  476. return h, r, nil
  477. }
  478. }
  479. h = h.next
  480. }
  481. return nil, nil, errors.New("unable to find host with relay")
  482. }
  483. func (hm *HostMap) unlockedDisestablishVpnAddrRelayFor(hi *HostInfo) {
  484. for _, relayHostIp := range hi.relayState.CopyRelayIps() {
  485. if h, ok := hm.Hosts[relayHostIp]; ok {
  486. for h != nil {
  487. h.relayState.UpdateRelayForByIpState(hi.vpnAddrs[0], Disestablished)
  488. h = h.next
  489. }
  490. }
  491. }
  492. for _, rs := range hi.relayState.CopyAllRelayFor() {
  493. if rs.Type == ForwardingType {
  494. if h, ok := hm.Hosts[rs.PeerAddr]; ok {
  495. for h != nil {
  496. h.relayState.UpdateRelayForByIpState(hi.vpnAddrs[0], Disestablished)
  497. h = h.next
  498. }
  499. }
  500. }
  501. }
  502. }
  503. func (hm *HostMap) queryVpnAddr(vpnIp netip.Addr, promoteIfce *Interface) *HostInfo {
  504. hm.RLock()
  505. if h, ok := hm.Hosts[vpnIp]; ok {
  506. hm.RUnlock()
  507. // Do not attempt promotion if you are a lighthouse
  508. if promoteIfce != nil && !promoteIfce.lightHouse.amLighthouse {
  509. h.TryPromoteBest(hm.GetPreferredRanges(), promoteIfce)
  510. }
  511. return h
  512. }
  513. hm.RUnlock()
  514. return nil
  515. }
  516. // unlockedAddHostInfo assumes you have a write-lock and will add a hostinfo object to the hostmap Indexes and RemoteIndexes maps.
  517. // If an entry exists for the Hosts table (vpnIp -> hostinfo) then the provided hostinfo will be made primary
  518. func (hm *HostMap) unlockedAddHostInfo(hostinfo *HostInfo, f *Interface) {
  519. if f.serveDns {
  520. remoteCert := hostinfo.ConnectionState.peerCert
  521. dnsR.Add(remoteCert.Certificate.Name()+".", hostinfo.vpnAddrs)
  522. }
  523. for _, addr := range hostinfo.vpnAddrs {
  524. hm.unlockedInnerAddHostInfo(addr, hostinfo, f)
  525. }
  526. hm.Indexes[hostinfo.localIndexId] = hostinfo
  527. hm.RemoteIndexes[hostinfo.remoteIndexId] = hostinfo
  528. if hm.l.Level >= logrus.DebugLevel {
  529. hm.l.WithField("hostMap", m{"vpnAddrs": hostinfo.vpnAddrs, "mapTotalSize": len(hm.Hosts),
  530. "hostinfo": m{"existing": true, "localIndexId": hostinfo.localIndexId, "vpnAddrs": hostinfo.vpnAddrs}}).
  531. Debug("Hostmap vpnIp added")
  532. }
  533. }
  534. func (hm *HostMap) unlockedInnerAddHostInfo(vpnAddr netip.Addr, hostinfo *HostInfo, f *Interface) {
  535. existing := hm.Hosts[vpnAddr]
  536. hm.Hosts[vpnAddr] = hostinfo
  537. if existing != nil && existing != hostinfo {
  538. hostinfo.next = existing
  539. existing.prev = hostinfo
  540. }
  541. i := 1
  542. check := hostinfo
  543. for check != nil {
  544. if i > MaxHostInfosPerVpnIp {
  545. hm.unlockedDeleteHostInfo(check)
  546. }
  547. check = check.next
  548. i++
  549. }
  550. }
  551. func (hm *HostMap) GetPreferredRanges() []netip.Prefix {
  552. //NOTE: if preferredRanges is ever not stored before a load this will fail to dereference a nil pointer
  553. return *hm.preferredRanges.Load()
  554. }
  555. func (hm *HostMap) ForEachVpnAddr(f controlEach) {
  556. hm.RLock()
  557. defer hm.RUnlock()
  558. for _, v := range hm.Hosts {
  559. f(v)
  560. }
  561. }
  562. func (hm *HostMap) ForEachIndex(f controlEach) {
  563. hm.RLock()
  564. defer hm.RUnlock()
  565. for _, v := range hm.Indexes {
  566. f(v)
  567. }
  568. }
  569. // TryPromoteBest handles re-querying lighthouses and probing for better paths
  570. // NOTE: It is an error to call this if you are a lighthouse since they should not roam clients!
  571. func (i *HostInfo) TryPromoteBest(preferredRanges []netip.Prefix, ifce *Interface) {
  572. c := i.promoteCounter.Add(1)
  573. if c%ifce.tryPromoteEvery.Load() == 0 {
  574. remote := i.remote
  575. // return early if we are already on a preferred remote
  576. if remote.IsValid() {
  577. rIP := remote.Addr()
  578. for _, l := range preferredRanges {
  579. if l.Contains(rIP) {
  580. return
  581. }
  582. }
  583. }
  584. i.remotes.ForEach(preferredRanges, func(addr netip.AddrPort, preferred bool) {
  585. if remote.IsValid() && (!addr.IsValid() || !preferred) {
  586. return
  587. }
  588. // Try to send a test packet to that host, this should
  589. // cause it to detect a roaming event and switch remotes
  590. ifce.sendTo(header.Test, header.TestRequest, i.ConnectionState, i, addr, []byte(""), make([]byte, 12, 12), make([]byte, mtu))
  591. })
  592. }
  593. // Re query our lighthouses for new remotes occasionally
  594. if c%ifce.reQueryEvery.Load() == 0 && ifce.lightHouse != nil {
  595. now := time.Now().UnixNano()
  596. if now < i.nextLHQuery.Load() {
  597. return
  598. }
  599. i.nextLHQuery.Store(now + ifce.reQueryWait.Load())
  600. ifce.lightHouse.QueryServer(i.vpnAddrs[0])
  601. }
  602. }
  603. func (i *HostInfo) GetCert() *cert.CachedCertificate {
  604. if i.ConnectionState != nil {
  605. return i.ConnectionState.peerCert
  606. }
  607. return nil
  608. }
  609. // TODO: Maybe use ViaSender here?
  610. func (i *HostInfo) SetRemote(remote netip.AddrPort) {
  611. // We copy here because we likely got this remote from a source that reuses the object
  612. if i.remote != remote {
  613. i.remote = remote
  614. i.remotes.LearnRemote(i.vpnAddrs[0], remote)
  615. }
  616. }
  617. // SetRemoteIfPreferred returns true if the remote was changed. The lastRoam
  618. // time on the HostInfo will also be updated.
  619. func (i *HostInfo) SetRemoteIfPreferred(hm *HostMap, via ViaSender) bool {
  620. if via.IsRelayed {
  621. return false
  622. }
  623. currentRemote := i.remote
  624. if !currentRemote.IsValid() {
  625. i.SetRemote(via.UdpAddr)
  626. return true
  627. }
  628. // NOTE: We do this loop here instead of calling `isPreferred` in
  629. // remote_list.go so that we only have to loop over preferredRanges once.
  630. newIsPreferred := false
  631. for _, l := range hm.GetPreferredRanges() {
  632. // return early if we are already on a preferred remote
  633. if l.Contains(currentRemote.Addr()) {
  634. return false
  635. }
  636. if l.Contains(via.UdpAddr.Addr()) {
  637. newIsPreferred = true
  638. }
  639. }
  640. if newIsPreferred {
  641. // Consider this a roaming event
  642. i.lastRoam = time.Now()
  643. i.lastRoamRemote = currentRemote
  644. i.SetRemote(via.UdpAddr)
  645. return true
  646. }
  647. return false
  648. }
  649. // buildNetworks fills in the networks field of HostInfo. It accepts a cert.Certificate so you never ever mix the network types up.
  650. func (i *HostInfo) buildNetworks(myVpnNetworksTable *bart.Lite, c cert.Certificate) {
  651. if len(c.Networks()) == 1 && len(c.UnsafeNetworks()) == 0 {
  652. if myVpnNetworksTable.Contains(c.Networks()[0].Addr()) {
  653. return // Simple case, no BART needed
  654. }
  655. }
  656. i.networks = new(bart.Table[NetworkType])
  657. for _, network := range c.Networks() {
  658. nprefix := netip.PrefixFrom(network.Addr(), network.Addr().BitLen())
  659. if myVpnNetworksTable.Contains(network.Addr()) {
  660. i.networks.Insert(nprefix, NetworkTypeVPN)
  661. } else {
  662. i.networks.Insert(nprefix, NetworkTypeVPNPeer)
  663. }
  664. }
  665. for _, network := range c.UnsafeNetworks() {
  666. i.networks.Insert(network, NetworkTypeUnsafe)
  667. }
  668. }
  669. func (i *HostInfo) logger(l *logrus.Logger) *logrus.Entry {
  670. if i == nil {
  671. return logrus.NewEntry(l)
  672. }
  673. li := l.WithField("vpnAddrs", i.vpnAddrs).
  674. WithField("localIndex", i.localIndexId).
  675. WithField("remoteIndex", i.remoteIndexId)
  676. if connState := i.ConnectionState; connState != nil {
  677. if peerCert := connState.peerCert; peerCert != nil {
  678. li = li.WithField("certName", peerCert.Certificate.Name())
  679. }
  680. }
  681. return li
  682. }
  683. // Utility functions
  684. func localAddrs(l *logrus.Logger, allowList *LocalAllowList) []netip.Addr {
  685. //FIXME: This function is pretty garbage
  686. var finalAddrs []netip.Addr
  687. ifaces, _ := net.Interfaces()
  688. for _, i := range ifaces {
  689. allow := allowList.AllowName(i.Name)
  690. if l.Level >= logrus.TraceLevel {
  691. l.WithField("interfaceName", i.Name).WithField("allow", allow).Trace("localAllowList.AllowName")
  692. }
  693. if !allow {
  694. continue
  695. }
  696. addrs, _ := i.Addrs()
  697. for _, rawAddr := range addrs {
  698. var addr netip.Addr
  699. switch v := rawAddr.(type) {
  700. case *net.IPNet:
  701. //continue
  702. addr, _ = netip.AddrFromSlice(v.IP)
  703. case *net.IPAddr:
  704. addr, _ = netip.AddrFromSlice(v.IP)
  705. }
  706. if !addr.IsValid() {
  707. if l.Level >= logrus.DebugLevel {
  708. l.WithField("localAddr", rawAddr).Debug("addr was invalid")
  709. }
  710. continue
  711. }
  712. addr = addr.Unmap()
  713. if addr.IsLoopback() == false && addr.IsLinkLocalUnicast() == false {
  714. isAllowed := allowList.Allow(addr)
  715. if l.Level >= logrus.TraceLevel {
  716. l.WithField("localAddr", addr).WithField("allowed", isAllowed).Trace("localAllowList.Allow")
  717. }
  718. if !isAllowed {
  719. continue
  720. }
  721. finalAddrs = append(finalAddrs, addr)
  722. }
  723. }
  724. }
  725. return finalAddrs
  726. }