2019-11-19 18:00:20 +01:00
|
|
|
package nebula
|
|
|
|
|
|
|
|
import (
|
2021-03-12 20:16:25 +01:00
|
|
|
"bytes"
|
2021-11-02 19:14:26 +01:00
|
|
|
"context"
|
2019-11-19 18:00:20 +01:00
|
|
|
"crypto/rand"
|
|
|
|
"encoding/binary"
|
2021-03-12 20:16:25 +01:00
|
|
|
"errors"
|
2019-11-19 18:00:20 +01:00
|
|
|
"net"
|
|
|
|
"time"
|
|
|
|
|
2021-04-28 04:23:18 +02:00
|
|
|
"github.com/rcrowley/go-metrics"
|
2019-11-19 18:00:20 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-11-04 02:54:04 +01:00
|
|
|
"github.com/slackhq/nebula/header"
|
|
|
|
"github.com/slackhq/nebula/iputil"
|
|
|
|
"github.com/slackhq/nebula/udp"
|
2019-11-19 18:00:20 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-04-14 20:50:09 +02:00
|
|
|
DefaultHandshakeTryInterval = time.Millisecond * 100
|
|
|
|
DefaultHandshakeRetries = 10
|
2020-07-22 16:35:10 +02:00
|
|
|
DefaultHandshakeTriggerBuffer = 64
|
2019-11-19 18:00:20 +01:00
|
|
|
)
|
|
|
|
|
2020-02-21 22:25:11 +01:00
|
|
|
var (
|
|
|
|
defaultHandshakeConfig = HandshakeConfig{
|
2020-07-22 16:35:10 +02:00
|
|
|
tryInterval: DefaultHandshakeTryInterval,
|
|
|
|
retries: DefaultHandshakeRetries,
|
|
|
|
triggerBuffer: DefaultHandshakeTriggerBuffer,
|
2020-02-21 22:25:11 +01:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
type HandshakeConfig struct {
|
2020-07-22 16:35:10 +02:00
|
|
|
tryInterval time.Duration
|
|
|
|
retries int
|
|
|
|
triggerBuffer int
|
2020-06-26 19:45:48 +02:00
|
|
|
|
|
|
|
messageMetrics *MessageMetrics
|
2020-02-21 22:25:11 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 18:00:20 +01:00
|
|
|
type HandshakeManager struct {
|
2021-04-14 20:50:09 +02:00
|
|
|
pendingHostMap *HostMap
|
|
|
|
mainHostMap *HostMap
|
|
|
|
lightHouse *LightHouse
|
2021-11-04 02:54:04 +01:00
|
|
|
outside *udp.Conn
|
2021-04-14 20:50:09 +02:00
|
|
|
config HandshakeConfig
|
|
|
|
OutboundHandshakeTimer *SystemTimerWheel
|
|
|
|
messageMetrics *MessageMetrics
|
2021-04-28 04:23:18 +02:00
|
|
|
metricInitiated metrics.Counter
|
|
|
|
metricTimedOut metrics.Counter
|
2021-04-14 20:50:09 +02:00
|
|
|
l *logrus.Logger
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
// can be used to trigger outbound handshake for the given vpnIp
|
|
|
|
trigger chan iputil.VpnIp
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
func NewHandshakeManager(l *logrus.Logger, tunCidr *net.IPNet, preferredRanges []*net.IPNet, mainHostMap *HostMap, lightHouse *LightHouse, outside *udp.Conn, config HandshakeConfig) *HandshakeManager {
|
2019-11-19 18:00:20 +01:00
|
|
|
return &HandshakeManager{
|
2021-04-14 20:50:09 +02:00
|
|
|
pendingHostMap: NewHostMap(l, "pending", tunCidr, preferredRanges),
|
|
|
|
mainHostMap: mainHostMap,
|
|
|
|
lightHouse: lightHouse,
|
|
|
|
outside: outside,
|
|
|
|
config: config,
|
2021-11-04 02:54:04 +01:00
|
|
|
trigger: make(chan iputil.VpnIp, config.triggerBuffer),
|
2021-04-14 20:50:09 +02:00
|
|
|
OutboundHandshakeTimer: NewSystemTimerWheel(config.tryInterval, hsTimeout(config.retries, config.tryInterval)),
|
|
|
|
messageMetrics: config.messageMetrics,
|
2021-04-28 04:23:18 +02:00
|
|
|
metricInitiated: metrics.GetOrRegisterCounter("handshake_manager.initiated", nil),
|
|
|
|
metricTimedOut: metrics.GetOrRegisterCounter("handshake_manager.timed_out", nil),
|
2021-04-14 20:50:09 +02:00
|
|
|
l: l,
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
func (c *HandshakeManager) Run(ctx context.Context, f udp.EncWriter) {
|
2021-11-02 19:14:26 +01:00
|
|
|
clockSource := time.NewTicker(c.config.tryInterval)
|
|
|
|
defer clockSource.Stop()
|
|
|
|
|
2020-07-22 16:35:10 +02:00
|
|
|
for {
|
|
|
|
select {
|
2021-11-02 19:14:26 +01:00
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
2020-07-22 16:35:10 +02:00
|
|
|
case vpnIP := <-c.trigger:
|
2021-11-04 02:54:04 +01:00
|
|
|
c.l.WithField("vpnIp", vpnIP).Debug("HandshakeManager: triggered")
|
2020-07-22 16:35:10 +02:00
|
|
|
c.handleOutbound(vpnIP, f, true)
|
2021-11-02 19:14:26 +01:00
|
|
|
case now := <-clockSource.C:
|
2020-07-22 16:35:10 +02:00
|
|
|
c.NextOutboundHandshakeTimerTick(now, f)
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
func (c *HandshakeManager) NextOutboundHandshakeTimerTick(now time.Time, f udp.EncWriter) {
|
2019-11-19 18:00:20 +01:00
|
|
|
c.OutboundHandshakeTimer.advance(now)
|
|
|
|
for {
|
|
|
|
ep := c.OutboundHandshakeTimer.Purge()
|
|
|
|
if ep == nil {
|
|
|
|
break
|
|
|
|
}
|
2021-11-04 02:54:04 +01:00
|
|
|
vpnIp := ep.(iputil.VpnIp)
|
|
|
|
c.handleOutbound(vpnIp, f, false)
|
2020-07-22 16:35:10 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
func (c *HandshakeManager) handleOutbound(vpnIp iputil.VpnIp, f udp.EncWriter, lighthouseTriggered bool) {
|
|
|
|
hostinfo, err := c.pendingHostMap.QueryVpnIp(vpnIp)
|
2020-07-22 16:35:10 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-03-06 03:18:33 +01:00
|
|
|
hostinfo.Lock()
|
|
|
|
defer hostinfo.Unlock()
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// We may have raced to completion but now that we have a lock we should ensure we have not yet completed.
|
|
|
|
if hostinfo.HandshakeComplete {
|
|
|
|
// Ensure we don't exist in the pending hostmap anymore since we have completed
|
|
|
|
c.pendingHostMap.DeleteHostInfo(hostinfo)
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// Check if we have a handshake packet to transmit yet
|
|
|
|
if !hostinfo.HandshakeReady {
|
|
|
|
// There is currently a slight race in getOrHandshake due to ConnectionState not being part of the HostInfo directly
|
|
|
|
// Our hostinfo here was added to the pending map and the wheel may have ticked to us before we created ConnectionState
|
2021-11-04 02:54:04 +01:00
|
|
|
c.OutboundHandshakeTimer.Add(vpnIp, c.config.tryInterval*time.Duration(hostinfo.HandshakeCounter))
|
2021-04-14 20:50:09 +02:00
|
|
|
return
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// If we are out of time, clean up
|
|
|
|
if hostinfo.HandshakeCounter >= c.config.retries {
|
|
|
|
hostinfo.logger(c.l).WithField("udpAddrs", hostinfo.remotes.CopyAddrs(c.pendingHostMap.preferredRanges)).
|
|
|
|
WithField("initiatorIndex", hostinfo.localIndexId).
|
|
|
|
WithField("remoteIndex", hostinfo.remoteIndexId).
|
|
|
|
WithField("handshake", m{"stage": 1, "style": "ix_psk0"}).
|
|
|
|
WithField("durationNs", time.Since(hostinfo.handshakeStart).Nanoseconds()).
|
|
|
|
Info("Handshake timed out")
|
2021-04-28 04:23:18 +02:00
|
|
|
c.metricTimedOut.Inc(1)
|
2021-04-14 20:50:09 +02:00
|
|
|
c.pendingHostMap.DeleteHostInfo(hostinfo)
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// We only care about a lighthouse trigger before the first handshake transmit attempt. This is a very specific
|
|
|
|
// optimization for a fast lighthouse reply
|
|
|
|
//TODO: it would feel better to do this once, anytime, as our delay increases over time
|
|
|
|
if lighthouseTriggered && hostinfo.HandshakeCounter > 0 {
|
|
|
|
// If we didn't return here a lighthouse could cause us to aggressively send handshakes
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// Get a remotes object if we don't already have one.
|
|
|
|
// This is mainly to protect us as this should never be the case
|
|
|
|
if hostinfo.remotes == nil {
|
2021-11-04 02:54:04 +01:00
|
|
|
hostinfo.remotes = c.lightHouse.QueryCache(vpnIp)
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
//TODO: this will generate a load of queries for hosts with only 1 ip (i'm not using a lighthouse, static mapped)
|
|
|
|
if hostinfo.remotes.Len(c.pendingHostMap.preferredRanges) <= 1 {
|
|
|
|
// If we only have 1 remote it is highly likely our query raced with the other host registered within the lighthouse
|
2021-11-04 02:54:04 +01:00
|
|
|
// Our vpnIp here has a tunnel with a lighthouse but has yet to send a host update packet there so we only know about
|
2021-04-14 20:50:09 +02:00
|
|
|
// the learned public ip for them. Query again to short circuit the promotion counter
|
2021-11-04 02:54:04 +01:00
|
|
|
c.lightHouse.QueryServer(vpnIp, f)
|
2021-04-14 20:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send a the handshake to all known ips, stage 2 takes care of assigning the hostinfo.remote based on the first to reply
|
2021-11-04 02:54:04 +01:00
|
|
|
var sentTo []*udp.Addr
|
|
|
|
hostinfo.remotes.ForEach(c.pendingHostMap.preferredRanges, func(addr *udp.Addr, _ bool) {
|
|
|
|
c.messageMetrics.Tx(header.Handshake, header.MessageSubType(hostinfo.HandshakePacket[0][1]), 1)
|
2021-04-14 20:50:09 +02:00
|
|
|
err = c.outside.WriteTo(hostinfo.HandshakePacket[0], addr)
|
|
|
|
if err != nil {
|
|
|
|
hostinfo.logger(c.l).WithField("udpAddr", addr).
|
|
|
|
WithField("initiatorIndex", hostinfo.localIndexId).
|
|
|
|
WithField("handshake", m{"stage": 1, "style": "ix_psk0"}).
|
|
|
|
WithError(err).Error("Failed to send handshake message")
|
|
|
|
|
|
|
|
} else {
|
|
|
|
sentTo = append(sentTo, addr)
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
2021-04-14 20:50:09 +02:00
|
|
|
})
|
|
|
|
|
2021-05-01 01:19:40 +02:00
|
|
|
// Don't be too noisy or confusing if we fail to send a handshake - if we don't get through we'll eventually log a timeout
|
|
|
|
if len(sentTo) > 0 {
|
|
|
|
hostinfo.logger(c.l).WithField("udpAddrs", sentTo).
|
|
|
|
WithField("initiatorIndex", hostinfo.localIndexId).
|
|
|
|
WithField("handshake", m{"stage": 1, "style": "ix_psk0"}).
|
|
|
|
Info("Handshake message sent")
|
|
|
|
}
|
2019-11-19 18:00:20 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// Increment the counter to increase our delay, linear backoff
|
|
|
|
hostinfo.HandshakeCounter++
|
|
|
|
|
|
|
|
// If a lighthouse triggered this attempt then we are still in the timer wheel and do not need to re-add
|
|
|
|
if !lighthouseTriggered {
|
|
|
|
//TODO: feel like we dupe handshake real fast in a tight loop, why?
|
2021-11-04 02:54:04 +01:00
|
|
|
c.OutboundHandshakeTimer.Add(vpnIp, c.config.tryInterval*time.Duration(hostinfo.HandshakeCounter))
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
func (c *HandshakeManager) AddVpnIp(vpnIp iputil.VpnIp) *HostInfo {
|
|
|
|
hostinfo := c.pendingHostMap.AddVpnIp(vpnIp)
|
2019-11-19 18:00:20 +01:00
|
|
|
// We lock here and use an array to insert items to prevent locking the
|
|
|
|
// main receive thread for very long by waiting to add items to the pending map
|
2021-04-14 20:50:09 +02:00
|
|
|
//TODO: what lock?
|
2021-11-04 02:54:04 +01:00
|
|
|
c.OutboundHandshakeTimer.Add(vpnIp, c.config.tryInterval)
|
2021-04-28 04:23:18 +02:00
|
|
|
c.metricInitiated.Inc(1)
|
2020-07-22 16:35:10 +02:00
|
|
|
|
2019-11-19 18:00:20 +01:00
|
|
|
return hostinfo
|
|
|
|
}
|
|
|
|
|
2021-03-12 20:16:25 +01:00
|
|
|
var (
|
|
|
|
ErrExistingHostInfo = errors.New("existing hostinfo")
|
|
|
|
ErrAlreadySeen = errors.New("already seen")
|
|
|
|
ErrLocalIndexCollision = errors.New("local index collision")
|
2021-04-14 20:50:09 +02:00
|
|
|
ErrExistingHandshake = errors.New("existing handshake")
|
2021-03-12 20:16:25 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// CheckAndComplete checks for any conflicts in the main and pending hostmap
|
|
|
|
// before adding hostinfo to main. If err is nil, it was added. Otherwise err will be:
|
2021-11-04 02:54:04 +01:00
|
|
|
//
|
2021-03-12 20:16:25 +01:00
|
|
|
// ErrAlreadySeen if we already have an entry in the hostmap that has seen the
|
|
|
|
// exact same handshake packet
|
|
|
|
//
|
|
|
|
// ErrExistingHostInfo if we already have an entry in the hostmap for this
|
2021-11-04 02:54:04 +01:00
|
|
|
// VpnIp and the new handshake was older than the one we currently have
|
2021-03-12 20:16:25 +01:00
|
|
|
//
|
|
|
|
// ErrLocalIndexCollision if we already have an entry in the main or pending
|
|
|
|
// hostmap for the hostinfo.localIndexId.
|
|
|
|
func (c *HandshakeManager) CheckAndComplete(hostinfo *HostInfo, handshakePacket uint8, overwrite bool, f *Interface) (*HostInfo, error) {
|
2021-04-14 20:50:09 +02:00
|
|
|
c.pendingHostMap.Lock()
|
|
|
|
defer c.pendingHostMap.Unlock()
|
2021-03-12 20:16:25 +01:00
|
|
|
c.mainHostMap.Lock()
|
|
|
|
defer c.mainHostMap.Unlock()
|
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// Check if we already have a tunnel with this vpn ip
|
2021-11-04 02:54:04 +01:00
|
|
|
existingHostInfo, found := c.mainHostMap.Hosts[hostinfo.vpnIp]
|
2021-03-12 20:16:25 +01:00
|
|
|
if found && existingHostInfo != nil {
|
2021-04-14 20:50:09 +02:00
|
|
|
// Is it just a delayed handshake packet?
|
2021-03-12 20:16:25 +01:00
|
|
|
if bytes.Equal(hostinfo.HandshakePacket[handshakePacket], existingHostInfo.HandshakePacket[handshakePacket]) {
|
|
|
|
return existingHostInfo, ErrAlreadySeen
|
|
|
|
}
|
2021-04-14 20:50:09 +02:00
|
|
|
|
2021-04-28 04:15:34 +02:00
|
|
|
// Is this a newer handshake?
|
|
|
|
if existingHostInfo.lastHandshakeTime >= hostinfo.lastHandshakeTime {
|
2021-03-12 20:16:25 +01:00
|
|
|
return existingHostInfo, ErrExistingHostInfo
|
|
|
|
}
|
2021-04-28 04:15:34 +02:00
|
|
|
|
|
|
|
existingHostInfo.logger(c.l).Info("Taking new handshake")
|
2021-03-12 20:16:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
existingIndex, found := c.mainHostMap.Indexes[hostinfo.localIndexId]
|
|
|
|
if found {
|
|
|
|
// We have a collision, but for a different hostinfo
|
|
|
|
return existingIndex, ErrLocalIndexCollision
|
|
|
|
}
|
2021-04-14 20:50:09 +02:00
|
|
|
|
2021-03-12 20:16:25 +01:00
|
|
|
existingIndex, found = c.pendingHostMap.Indexes[hostinfo.localIndexId]
|
|
|
|
if found && existingIndex != hostinfo {
|
|
|
|
// We have a collision, but for a different hostinfo
|
|
|
|
return existingIndex, ErrLocalIndexCollision
|
|
|
|
}
|
|
|
|
|
|
|
|
existingRemoteIndex, found := c.mainHostMap.RemoteIndexes[hostinfo.remoteIndexId]
|
2021-11-04 02:54:04 +01:00
|
|
|
if found && existingRemoteIndex != nil && existingRemoteIndex.vpnIp != hostinfo.vpnIp {
|
2021-03-12 20:16:25 +01:00
|
|
|
// We have a collision, but this can happen since we can't control
|
|
|
|
// the remote ID. Just log about the situation as a note.
|
2021-03-26 15:46:30 +01:00
|
|
|
hostinfo.logger(c.l).
|
2021-11-04 02:54:04 +01:00
|
|
|
WithField("remoteIndex", hostinfo.remoteIndexId).WithField("collision", existingRemoteIndex.vpnIp).
|
2021-03-12 20:16:25 +01:00
|
|
|
Info("New host shadows existing host remoteIndex")
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
2021-03-12 20:16:25 +01:00
|
|
|
|
2021-04-14 20:50:09 +02:00
|
|
|
// Check if we are also handshaking with this vpn ip
|
2021-11-04 02:54:04 +01:00
|
|
|
pendingHostInfo, found := c.pendingHostMap.Hosts[hostinfo.vpnIp]
|
2021-04-14 20:50:09 +02:00
|
|
|
if found && pendingHostInfo != nil {
|
|
|
|
if !overwrite {
|
|
|
|
// We won, let our pending handshake win
|
|
|
|
return pendingHostInfo, ErrExistingHandshake
|
|
|
|
}
|
|
|
|
|
|
|
|
// We lost, take this handshake and move any cached packets over so they get sent
|
|
|
|
pendingHostInfo.ConnectionState.queueLock.Lock()
|
|
|
|
hostinfo.packetStore = append(hostinfo.packetStore, pendingHostInfo.packetStore...)
|
|
|
|
c.pendingHostMap.unlockedDeleteHostInfo(pendingHostInfo)
|
|
|
|
pendingHostInfo.ConnectionState.queueLock.Unlock()
|
|
|
|
pendingHostInfo.logger(c.l).Info("Handshake race lost, replacing pending handshake with completed tunnel")
|
|
|
|
}
|
|
|
|
|
2021-03-12 20:16:25 +01:00
|
|
|
if existingHostInfo != nil {
|
|
|
|
// We are going to overwrite this entry, so remove the old references
|
2021-11-04 02:54:04 +01:00
|
|
|
delete(c.mainHostMap.Hosts, existingHostInfo.vpnIp)
|
2021-03-12 20:16:25 +01:00
|
|
|
delete(c.mainHostMap.Indexes, existingHostInfo.localIndexId)
|
|
|
|
delete(c.mainHostMap.RemoteIndexes, existingHostInfo.remoteIndexId)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mainHostMap.addHostInfo(hostinfo, f)
|
|
|
|
return existingHostInfo, nil
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
2021-03-12 20:16:25 +01:00
|
|
|
// Complete is a simpler version of CheckAndComplete when we already know we
|
|
|
|
// won't have a localIndexId collision because we already have an entry in the
|
|
|
|
// pendingHostMap
|
|
|
|
func (c *HandshakeManager) Complete(hostinfo *HostInfo, f *Interface) {
|
2021-04-14 20:50:09 +02:00
|
|
|
c.pendingHostMap.Lock()
|
|
|
|
defer c.pendingHostMap.Unlock()
|
2021-03-12 20:16:25 +01:00
|
|
|
c.mainHostMap.Lock()
|
|
|
|
defer c.mainHostMap.Unlock()
|
|
|
|
|
2021-11-04 02:54:04 +01:00
|
|
|
existingHostInfo, found := c.mainHostMap.Hosts[hostinfo.vpnIp]
|
2021-03-12 20:16:25 +01:00
|
|
|
if found && existingHostInfo != nil {
|
|
|
|
// We are going to overwrite this entry, so remove the old references
|
2021-11-04 02:54:04 +01:00
|
|
|
delete(c.mainHostMap.Hosts, existingHostInfo.vpnIp)
|
2021-03-12 20:16:25 +01:00
|
|
|
delete(c.mainHostMap.Indexes, existingHostInfo.localIndexId)
|
|
|
|
delete(c.mainHostMap.RemoteIndexes, existingHostInfo.remoteIndexId)
|
|
|
|
}
|
|
|
|
|
|
|
|
existingRemoteIndex, found := c.mainHostMap.RemoteIndexes[hostinfo.remoteIndexId]
|
|
|
|
if found && existingRemoteIndex != nil {
|
|
|
|
// We have a collision, but this can happen since we can't control
|
|
|
|
// the remote ID. Just log about the situation as a note.
|
2021-03-26 15:46:30 +01:00
|
|
|
hostinfo.logger(c.l).
|
2021-11-04 02:54:04 +01:00
|
|
|
WithField("remoteIndex", hostinfo.remoteIndexId).WithField("collision", existingRemoteIndex.vpnIp).
|
2021-03-12 20:16:25 +01:00
|
|
|
Info("New host shadows existing host remoteIndex")
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mainHostMap.addHostInfo(hostinfo, f)
|
2021-04-14 20:50:09 +02:00
|
|
|
c.pendingHostMap.unlockedDeleteHostInfo(hostinfo)
|
2021-03-12 20:16:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddIndexHostInfo generates a unique localIndexId for this HostInfo
|
|
|
|
// and adds it to the pendingHostMap. Will error if we are unable to generate
|
|
|
|
// a unique localIndexId
|
|
|
|
func (c *HandshakeManager) AddIndexHostInfo(h *HostInfo) error {
|
|
|
|
c.pendingHostMap.Lock()
|
|
|
|
defer c.pendingHostMap.Unlock()
|
|
|
|
c.mainHostMap.RLock()
|
|
|
|
defer c.mainHostMap.RUnlock()
|
|
|
|
|
|
|
|
for i := 0; i < 32; i++ {
|
2021-03-26 15:46:30 +01:00
|
|
|
index, err := generateIndex(c.l)
|
2021-03-12 20:16:25 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, inPending := c.pendingHostMap.Indexes[index]
|
|
|
|
_, inMain := c.mainHostMap.Indexes[index]
|
|
|
|
|
|
|
|
if !inMain && !inPending {
|
|
|
|
h.localIndexId = index
|
|
|
|
c.pendingHostMap.Indexes[index] = h
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.New("failed to generate unique localIndexId")
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
2020-11-23 20:51:16 +01:00
|
|
|
func (c *HandshakeManager) addRemoteIndexHostInfo(index uint32, h *HostInfo) {
|
|
|
|
c.pendingHostMap.addRemoteIndexHostInfo(index, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HandshakeManager) DeleteHostInfo(hostinfo *HostInfo) {
|
|
|
|
//l.Debugln("Deleting pending hostinfo :", hostinfo)
|
|
|
|
c.pendingHostMap.DeleteHostInfo(hostinfo)
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HandshakeManager) QueryIndex(index uint32) (*HostInfo, error) {
|
|
|
|
return c.pendingHostMap.QueryIndex(index)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HandshakeManager) EmitStats() {
|
|
|
|
c.pendingHostMap.EmitStats("pending")
|
|
|
|
c.mainHostMap.EmitStats("main")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Utility functions below
|
|
|
|
|
2021-03-26 15:46:30 +01:00
|
|
|
func generateIndex(l *logrus.Logger) (uint32, error) {
|
2019-11-19 18:00:20 +01:00
|
|
|
b := make([]byte, 4)
|
2020-11-23 20:51:16 +01:00
|
|
|
|
|
|
|
// Let zero mean we don't know the ID, so don't generate zero
|
|
|
|
var index uint32
|
|
|
|
for index == 0 {
|
|
|
|
_, err := rand.Read(b)
|
|
|
|
if err != nil {
|
|
|
|
l.Errorln(err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
index = binary.BigEndian.Uint32(b)
|
2019-11-19 18:00:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if l.Level >= logrus.DebugLevel {
|
|
|
|
l.WithField("index", index).
|
|
|
|
Debug("Generated index")
|
|
|
|
}
|
|
|
|
return index, nil
|
|
|
|
}
|
2021-04-14 20:50:09 +02:00
|
|
|
|
|
|
|
func hsTimeout(tries int, interval time.Duration) time.Duration {
|
|
|
|
return time.Duration(tries / 2 * ((2 * int(interval)) + (tries-1)*int(interval)))
|
|
|
|
}
|