2017-12-29 07:16:20 +03:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This part has the (kademlia-like) distributed hash table
|
|
|
|
|
|
|
|
It's used to look up coords for a NodeID
|
|
|
|
|
|
|
|
Every node participates in the DHT, and the DHT stores no real keys/values
|
|
|
|
(Only the peer relationships / lookups are needed)
|
|
|
|
|
|
|
|
This version is intentionally fragile, by being recursive instead of iterative
|
|
|
|
(it's also not parallel, as a result)
|
|
|
|
This is to make sure that DHT black holes are visible if they exist
|
|
|
|
(the iterative parallel approach tends to get around them sometimes)
|
|
|
|
I haven't seen this get stuck on blackholes, but I also haven't proven it can't
|
|
|
|
Slight changes *do* make it blackhole hard, bootstrapping isn't an easy problem
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
import "sort"
|
|
|
|
import "time"
|
2018-01-05 01:37:51 +03:00
|
|
|
|
2017-12-29 07:16:20 +03:00
|
|
|
//import "fmt"
|
|
|
|
|
|
|
|
// Maximum size for buckets and lookups
|
|
|
|
// Exception for buckets if the next one is non-full
|
2018-01-05 01:37:51 +03:00
|
|
|
const dht_bucket_number = 8 * NodeIDLen // This shouldn't be changed
|
2018-05-16 07:57:00 +03:00
|
|
|
const dht_bucket_size = 2 // This should be at least 2
|
|
|
|
const dht_lookup_size = 16 // This should be at least 1, below 2 is impractical
|
2017-12-29 07:16:20 +03:00
|
|
|
|
|
|
|
type dhtInfo struct {
|
2018-01-05 01:37:51 +03:00
|
|
|
nodeID_hidden *NodeID
|
|
|
|
key boxPubKey
|
|
|
|
coords []byte
|
|
|
|
send time.Time // When we last sent a message
|
|
|
|
recv time.Time // When we last received a message
|
|
|
|
pings int // Decide when to drop
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (info *dhtInfo) getNodeID() *NodeID {
|
2018-01-05 01:37:51 +03:00
|
|
|
if info.nodeID_hidden == nil {
|
|
|
|
info.nodeID_hidden = getNodeID(&info.key)
|
|
|
|
}
|
|
|
|
return info.nodeID_hidden
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type bucket struct {
|
2018-03-10 22:58:48 +03:00
|
|
|
peers []*dhtInfo
|
|
|
|
other []*dhtInfo
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type dhtReq struct {
|
2018-01-05 01:37:51 +03:00
|
|
|
key boxPubKey // Key of whoever asked
|
|
|
|
coords []byte // Coords of whoever asked
|
|
|
|
dest NodeID // NodeID they're asking about
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type dhtRes struct {
|
2018-01-05 01:37:51 +03:00
|
|
|
key boxPubKey // key to respond to
|
|
|
|
coords []byte // coords to respond to
|
|
|
|
dest NodeID
|
|
|
|
infos []*dhtInfo // response
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
2018-02-18 02:10:08 +03:00
|
|
|
type dht_rumor struct {
|
|
|
|
info *dhtInfo
|
|
|
|
target *NodeID
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:16:20 +03:00
|
|
|
type dht struct {
|
2018-01-05 01:37:51 +03:00
|
|
|
core *Core
|
|
|
|
nodeID NodeID
|
|
|
|
buckets_hidden [dht_bucket_number]bucket // Extra is for the self-bucket
|
|
|
|
peers chan *dhtInfo // other goroutines put incoming dht updates here
|
|
|
|
reqs map[boxPubKey]map[NodeID]time.Time
|
|
|
|
offset int
|
2018-02-18 02:10:08 +03:00
|
|
|
rumorMill []dht_rumor
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) init(c *Core) {
|
2018-01-05 01:37:51 +03:00
|
|
|
t.core = c
|
|
|
|
t.nodeID = *t.core.GetNodeID()
|
|
|
|
t.peers = make(chan *dhtInfo, 1)
|
|
|
|
t.reqs = make(map[boxPubKey]map[NodeID]time.Time)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) handleReq(req *dhtReq) {
|
2018-01-05 01:37:51 +03:00
|
|
|
// Send them what they asked for
|
|
|
|
loc := t.core.switchTable.getLocator()
|
|
|
|
coords := loc.getCoords()
|
|
|
|
res := dhtRes{
|
|
|
|
key: t.core.boxPub,
|
|
|
|
coords: coords,
|
|
|
|
dest: req.dest,
|
|
|
|
infos: t.lookup(&req.dest),
|
|
|
|
}
|
|
|
|
t.sendRes(&res, req)
|
|
|
|
// Also (possibly) add them to our DHT
|
|
|
|
info := dhtInfo{
|
|
|
|
key: req.key,
|
|
|
|
coords: req.coords,
|
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
t.insertIfNew(&info, false) // This seems DoSable (we just trust their coords...)
|
2018-01-05 01:37:51 +03:00
|
|
|
//if req.dest != t.nodeID { t.ping(&info, info.getNodeID()) } // Or spam...
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) handleRes(res *dhtRes) {
|
2018-01-05 01:37:51 +03:00
|
|
|
reqs, isIn := t.reqs[res.key]
|
|
|
|
if !isIn {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, isIn = reqs[res.dest]
|
|
|
|
if !isIn {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rinfo := dhtInfo{
|
|
|
|
key: res.key,
|
|
|
|
coords: res.coords,
|
2018-01-27 02:30:51 +03:00
|
|
|
send: time.Now(), // Technically wrong but should be OK...
|
2018-01-05 01:37:51 +03:00
|
|
|
recv: time.Now(),
|
|
|
|
}
|
|
|
|
// If they're already in the table, then keep the correct send time
|
|
|
|
bidx, isOK := t.getBucketIndex(rinfo.getNodeID())
|
|
|
|
if !isOK {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
b := t.getBucket(bidx)
|
2018-03-10 22:58:48 +03:00
|
|
|
for _, oldinfo := range b.peers {
|
|
|
|
if oldinfo.key == rinfo.key {
|
|
|
|
rinfo.send = oldinfo.send
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, oldinfo := range b.other {
|
2018-01-05 01:37:51 +03:00
|
|
|
if oldinfo.key == rinfo.key {
|
|
|
|
rinfo.send = oldinfo.send
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Insert into table
|
2018-03-10 22:58:48 +03:00
|
|
|
t.insert(&rinfo, false)
|
2018-01-05 01:37:51 +03:00
|
|
|
if res.dest == *rinfo.getNodeID() {
|
|
|
|
return
|
|
|
|
} // No infinite recursions
|
|
|
|
if len(res.infos) > dht_lookup_size {
|
|
|
|
// Ignore any "extra" lookup results
|
|
|
|
res.infos = res.infos[:dht_lookup_size]
|
|
|
|
}
|
|
|
|
for _, info := range res.infos {
|
2018-05-16 07:57:00 +03:00
|
|
|
if dht_firstCloserThanThird(info.getNodeID(), &res.dest, rinfo.getNodeID()) {
|
|
|
|
t.addToMill(info, info.getNodeID())
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
}
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) lookup(nodeID *NodeID) []*dhtInfo {
|
2018-01-05 01:37:51 +03:00
|
|
|
// FIXME this allocates a bunch, sorts, and keeps the part it likes
|
|
|
|
// It would be better to only track the part it likes to begin with
|
|
|
|
addInfos := func(res []*dhtInfo, infos []*dhtInfo) []*dhtInfo {
|
|
|
|
for _, info := range infos {
|
|
|
|
if info == nil {
|
|
|
|
panic("Should never happen!")
|
|
|
|
}
|
2018-05-16 07:57:00 +03:00
|
|
|
if dht_firstCloserThanThird(info.getNodeID(), nodeID, &t.nodeID) {
|
2018-01-05 01:37:51 +03:00
|
|
|
res = append(res, info)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
var res []*dhtInfo
|
|
|
|
for bidx := 0; bidx < t.nBuckets(); bidx++ {
|
|
|
|
b := t.getBucket(bidx)
|
2018-03-10 22:58:48 +03:00
|
|
|
res = addInfos(res, b.peers)
|
|
|
|
res = addInfos(res, b.other)
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
doSort := func(infos []*dhtInfo) {
|
|
|
|
less := func(i, j int) bool {
|
|
|
|
return dht_firstCloserThanThird(infos[i].getNodeID(),
|
|
|
|
nodeID,
|
|
|
|
infos[j].getNodeID())
|
|
|
|
}
|
|
|
|
sort.SliceStable(infos, less)
|
|
|
|
}
|
|
|
|
doSort(res)
|
|
|
|
if len(res) > dht_lookup_size {
|
|
|
|
res = res[:dht_lookup_size]
|
|
|
|
}
|
|
|
|
return res
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) getBucket(bidx int) *bucket {
|
2018-01-05 01:37:51 +03:00
|
|
|
return &t.buckets_hidden[bidx]
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) nBuckets() int {
|
2018-01-05 01:37:51 +03:00
|
|
|
return len(t.buckets_hidden)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
2018-03-10 22:58:48 +03:00
|
|
|
func (t *dht) insertIfNew(info *dhtInfo, isPeer bool) {
|
2018-01-05 01:37:51 +03:00
|
|
|
//fmt.Println("DEBUG: dht insertIfNew:", info.getNodeID(), info.coords)
|
|
|
|
// Insert a peer if and only if the bucket doesn't already contain it
|
2018-05-18 03:32:29 +03:00
|
|
|
if !t.shouldInsert(info) {
|
2018-01-05 01:37:51 +03:00
|
|
|
return
|
|
|
|
}
|
2018-05-18 03:32:29 +03:00
|
|
|
info.send = time.Now()
|
|
|
|
info.recv = info.send
|
|
|
|
t.insert(info, isPeer)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
2018-03-10 22:58:48 +03:00
|
|
|
func (t *dht) insert(info *dhtInfo, isPeer bool) {
|
2018-01-05 01:37:51 +03:00
|
|
|
//fmt.Println("DEBUG: dht insert:", info.getNodeID(), info.coords)
|
|
|
|
// First update the time on this info
|
|
|
|
info.recv = time.Now()
|
|
|
|
// Get the bucket for this node
|
|
|
|
nodeID := info.getNodeID()
|
|
|
|
bidx, isOK := t.getBucketIndex(nodeID)
|
|
|
|
if !isOK {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
b := t.getBucket(bidx)
|
|
|
|
// First drop any existing entry from the bucket
|
|
|
|
b.drop(&info.key)
|
|
|
|
// Now add to the *end* of the bucket
|
2018-03-10 22:58:48 +03:00
|
|
|
if isPeer {
|
|
|
|
// TODO make sure we don't duplicate peers in b.other too
|
|
|
|
b.peers = append(b.peers, info)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
b.other = append(b.other, info)
|
2018-01-05 01:37:51 +03:00
|
|
|
// Shrink from the *front* to requied size
|
2018-03-10 22:58:48 +03:00
|
|
|
for len(b.other) > dht_bucket_size {
|
|
|
|
b.other = b.other[1:]
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) getBucketIndex(nodeID *NodeID) (int, bool) {
|
2018-01-05 01:37:51 +03:00
|
|
|
for bidx := 0; bidx < t.nBuckets(); bidx++ {
|
|
|
|
them := nodeID[bidx/8] & (0x80 >> byte(bidx%8))
|
|
|
|
me := t.nodeID[bidx/8] & (0x80 >> byte(bidx%8))
|
|
|
|
if them != me {
|
|
|
|
return bidx, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return t.nBuckets(), false
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bucket) contains(ninfo *dhtInfo) bool {
|
2018-01-05 01:37:51 +03:00
|
|
|
// Compares if key and coords match
|
2018-03-10 22:58:48 +03:00
|
|
|
var found bool
|
|
|
|
check := func(infos []*dhtInfo) {
|
|
|
|
for _, info := range infos {
|
|
|
|
if info == nil {
|
|
|
|
panic("Should never happen")
|
|
|
|
}
|
|
|
|
if info.key != info.key {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-05 01:37:51 +03:00
|
|
|
if len(info.coords) != len(ninfo.coords) {
|
2018-03-10 22:58:48 +03:00
|
|
|
continue
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
match := true
|
2018-01-05 01:37:51 +03:00
|
|
|
for idx := 0; idx < len(info.coords); idx++ {
|
|
|
|
if info.coords[idx] != ninfo.coords[idx] {
|
2018-03-10 22:58:48 +03:00
|
|
|
match = false
|
|
|
|
break
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
if match {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
check(b.peers)
|
|
|
|
check(b.other)
|
|
|
|
return found
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bucket) drop(key *boxPubKey) {
|
2018-01-05 01:37:51 +03:00
|
|
|
clean := func(infos []*dhtInfo) []*dhtInfo {
|
|
|
|
cleaned := infos[:0]
|
|
|
|
for _, info := range infos {
|
|
|
|
if info.key == *key {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
cleaned = append(cleaned, info)
|
|
|
|
}
|
|
|
|
return cleaned
|
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
b.peers = clean(b.peers)
|
|
|
|
b.other = clean(b.other)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) sendReq(req *dhtReq, dest *dhtInfo) {
|
2018-01-05 01:37:51 +03:00
|
|
|
// Send a dhtReq to the node in dhtInfo
|
|
|
|
bs := req.encode()
|
|
|
|
shared := t.core.sessions.getSharedKey(&t.core.boxPriv, &dest.key)
|
|
|
|
payload, nonce := boxSeal(shared, bs, nil)
|
|
|
|
p := wire_protoTrafficPacket{
|
|
|
|
ttl: ^uint64(0),
|
|
|
|
coords: dest.coords,
|
|
|
|
toKey: dest.key,
|
|
|
|
fromKey: t.core.boxPub,
|
|
|
|
nonce: *nonce,
|
|
|
|
payload: payload,
|
|
|
|
}
|
|
|
|
packet := p.encode()
|
|
|
|
t.core.router.out(packet)
|
|
|
|
reqsToDest, isIn := t.reqs[dest.key]
|
|
|
|
if !isIn {
|
|
|
|
t.reqs[dest.key] = make(map[NodeID]time.Time)
|
|
|
|
reqsToDest, isIn = t.reqs[dest.key]
|
|
|
|
if !isIn {
|
|
|
|
panic("This should never happen")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reqsToDest[req.dest] = time.Now()
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) sendRes(res *dhtRes, req *dhtReq) {
|
2018-01-05 01:37:51 +03:00
|
|
|
// Send a reply for a dhtReq
|
|
|
|
bs := res.encode()
|
|
|
|
shared := t.core.sessions.getSharedKey(&t.core.boxPriv, &req.key)
|
|
|
|
payload, nonce := boxSeal(shared, bs, nil)
|
|
|
|
p := wire_protoTrafficPacket{
|
|
|
|
ttl: ^uint64(0),
|
|
|
|
coords: req.coords,
|
|
|
|
toKey: req.key,
|
|
|
|
fromKey: t.core.boxPub,
|
|
|
|
nonce: *nonce,
|
|
|
|
payload: payload,
|
|
|
|
}
|
|
|
|
packet := p.encode()
|
|
|
|
t.core.router.out(packet)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bucket) isEmpty() bool {
|
2018-03-10 22:58:48 +03:00
|
|
|
return len(b.peers)+len(b.other) == 0
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bucket) nextToPing() *dhtInfo {
|
2018-01-05 01:37:51 +03:00
|
|
|
// Check the nodes in the bucket
|
|
|
|
// Return whichever one responded least recently
|
|
|
|
// Delay of 6 seconds between pinging the same node
|
|
|
|
// Gives them time to respond
|
|
|
|
// And time between traffic loss from short term congestion in the network
|
|
|
|
var toPing *dhtInfo
|
2018-03-10 22:58:48 +03:00
|
|
|
update := func(infos []*dhtInfo) {
|
|
|
|
for _, next := range infos {
|
|
|
|
if time.Since(next.send) < 6*time.Second {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if toPing == nil || next.recv.Before(toPing.recv) {
|
|
|
|
toPing = next
|
|
|
|
}
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
}
|
2018-03-10 22:58:48 +03:00
|
|
|
update(b.peers)
|
|
|
|
update(b.other)
|
2018-01-05 01:37:51 +03:00
|
|
|
return toPing
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) getTarget(bidx int) *NodeID {
|
2018-01-05 01:37:51 +03:00
|
|
|
targetID := t.nodeID
|
|
|
|
targetID[bidx/8] ^= 0x80 >> byte(bidx%8)
|
|
|
|
return &targetID
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *dht) ping(info *dhtInfo, target *NodeID) {
|
2018-01-05 01:37:51 +03:00
|
|
|
if info.pings > 2 {
|
|
|
|
bidx, isOK := t.getBucketIndex(info.getNodeID())
|
|
|
|
if !isOK {
|
|
|
|
panic("This should never happen")
|
|
|
|
}
|
|
|
|
b := t.getBucket(bidx)
|
|
|
|
b.drop(&info.key)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if target == nil {
|
|
|
|
target = &t.nodeID
|
|
|
|
}
|
|
|
|
loc := t.core.switchTable.getLocator()
|
|
|
|
coords := loc.getCoords()
|
|
|
|
req := dhtReq{
|
|
|
|
key: t.core.boxPub,
|
|
|
|
coords: coords,
|
|
|
|
dest: *target,
|
|
|
|
}
|
|
|
|
info.pings++
|
|
|
|
info.send = time.Now()
|
|
|
|
t.sendReq(&req, info)
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
2018-02-18 02:10:08 +03:00
|
|
|
func (t *dht) addToMill(info *dhtInfo, target *NodeID) {
|
|
|
|
rumor := dht_rumor{
|
|
|
|
info: info,
|
|
|
|
target: target,
|
|
|
|
}
|
|
|
|
t.rumorMill = append(t.rumorMill, rumor)
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:16:20 +03:00
|
|
|
func (t *dht) doMaintenance() {
|
2018-01-05 01:37:51 +03:00
|
|
|
// First clean up reqs
|
|
|
|
for key, reqs := range t.reqs {
|
|
|
|
for target, timeout := range reqs {
|
|
|
|
if time.Since(timeout) > time.Minute {
|
|
|
|
delete(reqs, target)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(reqs) == 0 {
|
|
|
|
delete(t.reqs, key)
|
|
|
|
}
|
|
|
|
}
|
2018-02-18 02:10:08 +03:00
|
|
|
if len(t.rumorMill) == 0 {
|
|
|
|
// Ping the least recently contacted node
|
|
|
|
// This is to make sure we eventually notice when someone times out
|
|
|
|
var oldest *dhtInfo
|
|
|
|
last := 0
|
|
|
|
for bidx := 0; bidx < t.nBuckets(); bidx++ {
|
|
|
|
b := t.getBucket(bidx)
|
|
|
|
if !b.isEmpty() {
|
|
|
|
last = bidx
|
|
|
|
toPing := b.nextToPing()
|
|
|
|
if toPing == nil {
|
|
|
|
continue
|
|
|
|
} // We've recently pinged everyone in b
|
|
|
|
if oldest == nil || toPing.recv.Before(oldest.recv) {
|
|
|
|
oldest = toPing
|
|
|
|
}
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
|
|
|
}
|
2018-03-17 23:28:22 +03:00
|
|
|
if oldest != nil && time.Since(oldest.recv) > time.Minute {
|
2018-02-18 02:10:08 +03:00
|
|
|
t.addToMill(oldest, nil)
|
|
|
|
} // if the DHT isn't empty
|
|
|
|
// Refresh buckets
|
|
|
|
if t.offset > last {
|
|
|
|
t.offset = 0
|
|
|
|
}
|
|
|
|
target := t.getTarget(t.offset)
|
|
|
|
for _, info := range t.lookup(target) {
|
2018-03-17 23:28:22 +03:00
|
|
|
if time.Since(info.recv) > time.Minute {
|
|
|
|
t.addToMill(info, target)
|
|
|
|
break
|
|
|
|
}
|
2018-02-18 02:10:08 +03:00
|
|
|
}
|
|
|
|
t.offset++
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
2018-05-16 07:57:00 +03:00
|
|
|
for len(t.rumorMill) > 0 {
|
2018-02-18 02:10:08 +03:00
|
|
|
var rumor dht_rumor
|
|
|
|
rumor, t.rumorMill = t.rumorMill[0], t.rumorMill[1:]
|
2018-05-16 07:57:00 +03:00
|
|
|
if rumor.target == rumor.info.getNodeID() {
|
|
|
|
// Note that the above is a pointer comparison, and target can be nil
|
|
|
|
// This is only for adding new nodes (learned from other lookups)
|
|
|
|
// It only makes sense to ping if the node isn't already in the table
|
2018-05-18 03:32:29 +03:00
|
|
|
if !t.shouldInsert(rumor.info) {
|
2018-05-16 07:57:00 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2018-02-18 02:10:08 +03:00
|
|
|
t.ping(rumor.info, rumor.target)
|
2018-05-16 07:57:00 +03:00
|
|
|
break
|
2018-01-05 01:37:51 +03:00
|
|
|
}
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
|
|
|
|
2018-05-18 03:32:29 +03:00
|
|
|
func (t *dht) shouldInsert(info *dhtInfo) bool {
|
|
|
|
bidx, isOK := t.getBucketIndex(info.getNodeID())
|
|
|
|
if !isOK {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
b := t.getBucket(bidx)
|
|
|
|
if b.contains(info) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if len(b.other) < dht_bucket_size {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
for _, other := range b.other {
|
|
|
|
if dht_firstCloserThanThird(info.getNodeID(), &t.nodeID, other.getNodeID()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-12-29 07:16:20 +03:00
|
|
|
func dht_firstCloserThanThird(first *NodeID,
|
2018-01-05 01:37:51 +03:00
|
|
|
second *NodeID,
|
|
|
|
third *NodeID) bool {
|
|
|
|
for idx := 0; idx < NodeIDLen; idx++ {
|
|
|
|
f := first[idx] ^ second[idx]
|
|
|
|
t := third[idx] ^ second[idx]
|
|
|
|
if f == t {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return f < t
|
|
|
|
}
|
|
|
|
return false
|
2017-12-29 07:16:20 +03:00
|
|
|
}
|
2018-03-11 00:16:39 +03:00
|
|
|
|
2018-05-16 07:57:00 +03:00
|
|
|
func (t *dht) reset() {
|
|
|
|
// This is mostly so bootstrapping will reset to resend coords into the network
|
2018-03-11 00:16:39 +03:00
|
|
|
for _, b := range t.buckets_hidden {
|
|
|
|
b.peers = b.peers[:0]
|
2018-05-16 07:57:00 +03:00
|
|
|
b.other = b.other[:0]
|
2018-03-11 00:16:39 +03:00
|
|
|
}
|
2018-05-16 07:57:00 +03:00
|
|
|
t.offset = 0
|
2018-03-11 00:16:39 +03:00
|
|
|
}
|