aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-06-02 20:57:07 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-06-08 18:23:58 +0800
commit6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5 (patch)
treecc1cc92cfe0d68efb781e07a36f9e4fcc43f4b75 /eth
parent9da0232eef7e7abd9f036fccb231220e272e6049 (diff)
downloadgo-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar.gz
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar.bz2
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar.lz
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar.xz
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.tar.zst
go-tangerine-6d497f61c65b1c02c4cfb5f4e0673574a0cd17d5.zip
eth/downloader: don't block hash deliveries while pulling blocks
Diffstat (limited to 'eth')
-rw-r--r--eth/downloader/downloader.go31
1 files changed, 14 insertions, 17 deletions
diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go
index 159a06bd4..4b837eed5 100644
--- a/eth/downloader/downloader.go
+++ b/eth/downloader/downloader.go
@@ -418,6 +418,9 @@ out:
case <-d.cancelCh:
return errCancelBlockFetch
+ case <-d.hashCh:
+ // Out of bounds hashes received, ignore them
+
case blockPack := <-d.blockCh:
// Short circuit if it's a stale cross check
if len(blockPack.blocks) == 1 {
@@ -472,30 +475,21 @@ out:
glog.V(logger.Detail).Infof("%s: delivery partially failed: %v", peer, err)
}
}
+
case <-ticker.C:
- // Check for bad peers. Bad peers may indicate a peer not responding
- // to a `getBlocks` message. A timeout of 5 seconds is set. Peers
- // that badly or poorly behave are removed from the peer set (not banned).
- // Bad peers are excluded from the available peer set and therefor won't be
- // reused. XXX We could re-introduce peers after X time.
+ // Short circuit if we lost all our peers
+ if d.peers.Len() == 0 {
+ return errNoPeers
+ }
+ // Check for block request timeouts and demote the responsible peers
badPeers := d.queue.Expire(blockHardTTL)
for _, pid := range badPeers {
- // XXX We could make use of a reputation system here ranking peers
- // in their performance
- // 1) Time for them to respond;
- // 2) Measure their speed;
- // 3) Amount and availability.
if peer := d.peers.Peer(pid); peer != nil {
peer.Demote()
glog.V(logger.Detail).Infof("%s: block delivery timeout", peer)
}
}
- // After removing bad peers make sure we actually have sufficient peer left to keep downloading
- if d.peers.Len() == 0 {
- return errNoPeers
- }
- // If there are unrequested hashes left start fetching
- // from the available peers.
+ // If there are unrequested hashes left start fetching from the available peers
if d.queue.Pending() > 0 {
// Throttle the download if block cache is full and waiting processing
if d.queue.Throttle() {
@@ -565,7 +559,7 @@ func (d *Downloader) banBlocks(peerId string, head common.Hash) error {
return err
}
// Wait a bit for the reply to arrive, and ban if done so
- timeout := time.After(blockTTL)
+ timeout := time.After(blockHardTTL)
for {
select {
case <-d.cancelCh:
@@ -574,6 +568,9 @@ func (d *Downloader) banBlocks(peerId string, head common.Hash) error {
case <-timeout:
return ErrTimeout
+ case <-d.hashCh:
+ // Out of bounds hashes received, ignore them
+
case blockPack := <-d.blockCh:
blocks := blockPack.blocks