aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Weiss <adam@signal11.com>2014-12-18 18:28:29 -0500
committerAdam Weiss <adam@signal11.com>2014-12-23 02:19:34 -0500
commitc90770430d7c1eb7ece2d4ddb987b0f2210fd86f (patch)
treed9662d96933a58a8dc7e475a3cf23541577cbb72 /src
parent4444b879bc1da56fffa4cb4cf31a276a795f43b9 (diff)
downloadbitcoin-c90770430d7c1eb7ece2d4ddb987b0f2210fd86f.tar.xz
DOS: Respect max per-peer blocks in flight limit
Don't allow immediate inv driven block downloads if a peer already has MAX_BLOCKS_IN_TRANSIT_PER_PEER active downloads. Prevents bogus inv spam from blowing up block transfer tracking data structures.
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9c038f90fa..accdfd10b2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3574,7 +3574,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
// doing this will result in the received block being rejected as an orphan in case it is
// not a direct successor.
pfrom->PushMessage("getheaders", chainActive.GetLocator(pindexBestHeader), inv.hash);
- if (chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - Params().TargetSpacing() * 20) {
+ CNodeState *nodestate = State(pfrom->GetId());
+ if (chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - Params().TargetSpacing() * 20 &&
+ nodestate->nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
vToFetch.push_back(inv);
// Mark block as in flight already, even though the actual "getdata" message only goes out
// later (within the same cs_main lock, though).