aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-04-15 18:20:48 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-15 18:20:48 +0800
commit1aca2eff39c55afd5e56123bd6a5b92e6e628b2b (patch)
tree979b45de28a50333f38487a6726caaa59d18276a
parent4a8d6480f7ab074bc032d68df6ee8df5876ef3cc (diff)
downloaddexon-1aca2eff39c55afd5e56123bd6a5b92e6e628b2b.tar.gz
dexon-1aca2eff39c55afd5e56123bd6a5b92e6e628b2b.tar.zst
dexon-1aca2eff39c55afd5e56123bd6a5b92e6e628b2b.zip
dex: add pullblock rate limit (#363)
-rw-r--r--dex/handler.go28
1 files changed, 20 insertions, 8 deletions
diff --git a/dex/handler.go b/dex/handler.go
index 8e5898817..fb2ce4e4d 100644
--- a/dex/handler.go
+++ b/dex/handler.go
@@ -83,7 +83,8 @@ const (
maxPullPeers = 3
maxPullVotePeers = 1
- pullVoteRateLimit = 10 * time.Second
+ pullVoteRateLimit = 3 * time.Second
+ pullBlockRateLimit = 3 * time.Second
maxAgreementResultBroadcast = 3
maxFinalizedBlockBroadcast = 3
@@ -103,13 +104,14 @@ type ProtocolManager struct {
fastSync uint32 // Flag whether fast sync is enabled (gets disabled if we already have blocks)
acceptTxs uint32 // Flag whether we're considered synchronised (enables transaction processing)
- txpool txPool
- gov governance
- blockchain *core.BlockChain
- chainconfig *params.ChainConfig
- cache *cache
- nextPullVote *sync.Map
- maxPeers int
+ txpool txPool
+ gov governance
+ blockchain *core.BlockChain
+ chainconfig *params.ChainConfig
+ cache *cache
+ nextPullVote *sync.Map
+ nextPullBlock *sync.Map
+ maxPeers int
downloader *downloader.Downloader
fetcher *fetcher.Fetcher
@@ -171,6 +173,7 @@ func NewProtocolManager(
blockchain: blockchain,
cache: newCache(5120, dexDB.NewDatabase(chaindb)),
nextPullVote: &sync.Map{},
+ nextPullBlock: &sync.Map{},
chainconfig: config,
whitelist: whitelist,
newPeerCh: make(chan *peer),
@@ -258,6 +261,7 @@ func (pm *ProtocolManager) removePeer(id string) {
log.Debug("Removing Ethereum peer", "peer", id)
pm.nextPullVote.Delete(peer.ID())
+ pm.nextPullBlock.Delete(peer.ID())
// Unregister the peer from the downloader and Ethereum peer set
pm.downloader.UnregisterPeer(id)
@@ -927,6 +931,14 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
if atomic.LoadInt32(&pm.receiveCoreMessage) == 0 {
break
}
+ next, ok := pm.nextPullBlock.Load(p.ID())
+ if ok {
+ nextTime := next.(time.Time)
+ if nextTime.After(time.Now()) {
+ break
+ }
+ }
+ pm.nextPullBlock.Store(p.ID(), time.Now().Add(pullBlockRateLimit))
var hashes coreCommon.Hashes
if err := msg.Decode(&hashes); err != nil {
return errResp(ErrDecode, "msg %v: %v", msg, err)