aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/discover/table_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-09-30 11:01:49 +0800
committerFelix Lange <fjl@twurst.com>2015-09-30 22:23:03 +0800
commitb4374436f331903ae1a19879aac0f37678b65f0e (patch)
treef2f9f0ba76dc4557820b4adc7eeb3b7c5113d223 /p2p/discover/table_test.go
parent7977e87ce1e9ec46a8e8275f4cf53b6281c412c7 (diff)
downloadgo-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar.gz
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar.bz2
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar.lz
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar.xz
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.tar.zst
go-tangerine-b4374436f331903ae1a19879aac0f37678b65f0e.zip
p2p/discover: fix race involving the seed node iterator
nodeDB.querySeeds was not safe for concurrent use but could be called concurrenty on multiple goroutines in the following case: - the table was empty - a timed refresh started - a lookup was started and initiated refresh These conditions are unlikely to coincide during normal use, but are much more likely to occur all at once when the user's machine just woke from sleep. The root cause of the issue is that querySeeds reused the same leveldb iterator until it was exhausted. This commit moves the refresh scheduling logic into its own goroutine (so only one refresh is ever active) and changes querySeeds to not use a persistent iterator. The seed node selection is now more random and ignores nodes that have not been contacted in the last 5 days.
Diffstat (limited to 'p2p/discover/table_test.go')
-rw-r--r--p2p/discover/table_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/p2p/discover/table_test.go b/p2p/discover/table_test.go
index 426f4e9cc..84962a1a5 100644
--- a/p2p/discover/table_test.go
+++ b/p2p/discover/table_test.go
@@ -514,9 +514,6 @@ func (tn *preminedTestnet) findnode(toid NodeID, toaddr *net.UDPAddr, target Nod
if toaddr.Port == 0 {
panic("query to node at distance 0")
}
- if target != tn.target {
- panic("findnode with wrong target")
- }
next := uint16(toaddr.Port) - 1
var result []*Node
for i, id := range tn.dists[toaddr.Port] {