Fix constness of ArgsManager methods
[bitcoinplatinum.git] / src / net_processing.cpp
bloba743f04dd155f5ddc7eb7801d5ba2d01c8ac4cdc
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 #include "net_processing.h"
8 #include "addrman.h"
9 #include "arith_uint256.h"
10 #include "blockencodings.h"
11 #include "chainparams.h"
12 #include "consensus/validation.h"
13 #include "hash.h"
14 #include "init.h"
15 #include "validation.h"
16 #include "merkleblock.h"
17 #include "net.h"
18 #include "netmessagemaker.h"
19 #include "netbase.h"
20 #include "policy/fees.h"
21 #include "policy/policy.h"
22 #include "primitives/block.h"
23 #include "primitives/transaction.h"
24 #include "random.h"
25 #include "reverse_iterator.h"
26 #include "tinyformat.h"
27 #include "txmempool.h"
28 #include "ui_interface.h"
29 #include "util.h"
30 #include "utilmoneystr.h"
31 #include "utilstrencodings.h"
32 #include "validationinterface.h"
34 #if defined(NDEBUG)
35 # error "Bitcoin cannot be compiled without assertions."
36 #endif
38 std::atomic<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of when we last received a block
40 struct IteratorComparator
42 template<typename I>
43 bool operator()(const I& a, const I& b)
45 return &(*a) < &(*b);
49 struct COrphanTx {
50 // When modifying, adapt the copy of this definition in tests/DoS_tests.
51 CTransactionRef tx;
52 NodeId fromPeer;
53 int64_t nTimeExpire;
55 std::map<uint256, COrphanTx> mapOrphanTransactions GUARDED_BY(cs_main);
56 std::map<COutPoint, std::set<std::map<uint256, COrphanTx>::iterator, IteratorComparator>> mapOrphanTransactionsByPrev GUARDED_BY(cs_main);
57 void EraseOrphansFor(NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
59 static size_t vExtraTxnForCompactIt = 0;
60 static std::vector<std::pair<uint256, CTransactionRef>> vExtraTxnForCompact GUARDED_BY(cs_main);
62 static const uint64_t RANDOMIZER_ID_ADDRESS_RELAY = 0x3cac0035b5866b90ULL; // SHA256("main address relay")[0:8]
64 // Internal stuff
65 namespace {
66 /** Number of nodes with fSyncStarted. */
67 int nSyncStarted = 0;
69 /**
70 * Sources of received blocks, saved to be able to send them reject
71 * messages or ban them when processing happens afterwards. Protected by
72 * cs_main.
73 * Set mapBlockSource[hash].second to false if the node should not be
74 * punished if the block is invalid.
76 std::map<uint256, std::pair<NodeId, bool>> mapBlockSource;
78 /**
79 * Filter for transactions that were recently rejected by
80 * AcceptToMemoryPool. These are not rerequested until the chain tip
81 * changes, at which point the entire filter is reset. Protected by
82 * cs_main.
84 * Without this filter we'd be re-requesting txs from each of our peers,
85 * increasing bandwidth consumption considerably. For instance, with 100
86 * peers, half of which relay a tx we don't accept, that might be a 50x
87 * bandwidth increase. A flooding attacker attempting to roll-over the
88 * filter using minimum-sized, 60byte, transactions might manage to send
89 * 1000/sec if we have fast peers, so we pick 120,000 to give our peers a
90 * two minute window to send invs to us.
92 * Decreasing the false positive rate is fairly cheap, so we pick one in a
93 * million to make it highly unlikely for users to have issues with this
94 * filter.
96 * Memory used: 1.3 MB
98 std::unique_ptr<CRollingBloomFilter> recentRejects;
99 uint256 hashRecentRejectsChainTip;
101 /** Blocks that are in flight, and that are in the queue to be downloaded. Protected by cs_main. */
102 struct QueuedBlock {
103 uint256 hash;
104 const CBlockIndex* pindex; //!< Optional.
105 bool fValidatedHeaders; //!< Whether this block has validated headers at the time of request.
106 std::unique_ptr<PartiallyDownloadedBlock> partialBlock; //!< Optional, used for CMPCTBLOCK downloads
108 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> > mapBlocksInFlight;
110 /** Stack of nodes which we have set to announce using compact blocks */
111 std::list<NodeId> lNodesAnnouncingHeaderAndIDs;
113 /** Number of preferable block download peers. */
114 int nPreferredDownload = 0;
116 /** Number of peers from which we're downloading blocks. */
117 int nPeersWithValidatedDownloads = 0;
119 /** Relay map, protected by cs_main. */
120 typedef std::map<uint256, CTransactionRef> MapRelay;
121 MapRelay mapRelay;
122 /** Expiration-time ordered list of (expire time, relay map entry) pairs, protected by cs_main). */
123 std::deque<std::pair<int64_t, MapRelay::iterator>> vRelayExpiration;
124 } // namespace
126 //////////////////////////////////////////////////////////////////////////////
128 // Registration of network node signals.
131 namespace {
133 struct CBlockReject {
134 unsigned char chRejectCode;
135 std::string strRejectReason;
136 uint256 hashBlock;
140 * Maintain validation-specific state about nodes, protected by cs_main, instead
141 * by CNode's own locks. This simplifies asynchronous operation, where
142 * processing of incoming data is done after the ProcessMessage call returns,
143 * and we're no longer holding the node's locks.
145 struct CNodeState {
146 //! The peer's address
147 const CService address;
148 //! Whether we have a fully established connection.
149 bool fCurrentlyConnected;
150 //! Accumulated misbehaviour score for this peer.
151 int nMisbehavior;
152 //! Whether this peer should be disconnected and banned (unless whitelisted).
153 bool fShouldBan;
154 //! String name of this peer (debugging/logging purposes).
155 const std::string name;
156 //! List of asynchronously-determined block rejections to notify this peer about.
157 std::vector<CBlockReject> rejects;
158 //! The best known block we know this peer has announced.
159 const CBlockIndex *pindexBestKnownBlock;
160 //! The hash of the last unknown block this peer has announced.
161 uint256 hashLastUnknownBlock;
162 //! The last full block we both have.
163 const CBlockIndex *pindexLastCommonBlock;
164 //! The best header we have sent our peer.
165 const CBlockIndex *pindexBestHeaderSent;
166 //! Length of current-streak of unconnecting headers announcements
167 int nUnconnectingHeaders;
168 //! Whether we've started headers synchronization with this peer.
169 bool fSyncStarted;
170 //! When to potentially disconnect peer for stalling headers download
171 int64_t nHeadersSyncTimeout;
172 //! Since when we're stalling block download progress (in microseconds), or 0.
173 int64_t nStallingSince;
174 std::list<QueuedBlock> vBlocksInFlight;
175 //! When the first entry in vBlocksInFlight started downloading. Don't care when vBlocksInFlight is empty.
176 int64_t nDownloadingSince;
177 int nBlocksInFlight;
178 int nBlocksInFlightValidHeaders;
179 //! Whether we consider this a preferred download peer.
180 bool fPreferredDownload;
181 //! Whether this peer wants invs or headers (when possible) for block announcements.
182 bool fPreferHeaders;
183 //! Whether this peer wants invs or cmpctblocks (when possible) for block announcements.
184 bool fPreferHeaderAndIDs;
186 * Whether this peer will send us cmpctblocks if we request them.
187 * This is not used to gate request logic, as we really only care about fSupportsDesiredCmpctVersion,
188 * but is used as a flag to "lock in" the version of compact blocks (fWantsCmpctWitness) we send.
190 bool fProvidesHeaderAndIDs;
191 //! Whether this peer can give us witnesses
192 bool fHaveWitness;
193 //! Whether this peer wants witnesses in cmpctblocks/blocktxns
194 bool fWantsCmpctWitness;
196 * If we've announced NODE_WITNESS to this peer: whether the peer sends witnesses in cmpctblocks/blocktxns,
197 * otherwise: whether this peer sends non-witnesses in cmpctblocks/blocktxns.
199 bool fSupportsDesiredCmpctVersion;
201 CNodeState(CAddress addrIn, std::string addrNameIn) : address(addrIn), name(addrNameIn) {
202 fCurrentlyConnected = false;
203 nMisbehavior = 0;
204 fShouldBan = false;
205 pindexBestKnownBlock = NULL;
206 hashLastUnknownBlock.SetNull();
207 pindexLastCommonBlock = NULL;
208 pindexBestHeaderSent = NULL;
209 nUnconnectingHeaders = 0;
210 fSyncStarted = false;
211 nHeadersSyncTimeout = 0;
212 nStallingSince = 0;
213 nDownloadingSince = 0;
214 nBlocksInFlight = 0;
215 nBlocksInFlightValidHeaders = 0;
216 fPreferredDownload = false;
217 fPreferHeaders = false;
218 fPreferHeaderAndIDs = false;
219 fProvidesHeaderAndIDs = false;
220 fHaveWitness = false;
221 fWantsCmpctWitness = false;
222 fSupportsDesiredCmpctVersion = false;
226 /** Map maintaining per-node state. Requires cs_main. */
227 std::map<NodeId, CNodeState> mapNodeState;
229 // Requires cs_main.
230 CNodeState *State(NodeId pnode) {
231 std::map<NodeId, CNodeState>::iterator it = mapNodeState.find(pnode);
232 if (it == mapNodeState.end())
233 return NULL;
234 return &it->second;
237 void UpdatePreferredDownload(CNode* node, CNodeState* state)
239 nPreferredDownload -= state->fPreferredDownload;
241 // Whether this node should be marked as a preferred download node.
242 state->fPreferredDownload = (!node->fInbound || node->fWhitelisted) && !node->fOneShot && !node->fClient;
244 nPreferredDownload += state->fPreferredDownload;
247 void PushNodeVersion(CNode *pnode, CConnman& connman, int64_t nTime)
249 ServiceFlags nLocalNodeServices = pnode->GetLocalServices();
250 uint64_t nonce = pnode->GetLocalNonce();
251 int nNodeStartingHeight = pnode->GetMyStartingHeight();
252 NodeId nodeid = pnode->GetId();
253 CAddress addr = pnode->addr;
255 CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService(), addr.nServices));
256 CAddress addrMe = CAddress(CService(), nLocalNodeServices);
258 connman.PushMessage(pnode, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::VERSION, PROTOCOL_VERSION, (uint64_t)nLocalNodeServices, nTime, addrYou, addrMe,
259 nonce, strSubVersion, nNodeStartingHeight, ::fRelayTxes));
261 if (fLogIPs) {
262 LogPrint(BCLog::NET, "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, addrMe.ToString(), addrYou.ToString(), nodeid);
263 } else {
264 LogPrint(BCLog::NET, "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, addrMe.ToString(), nodeid);
268 void InitializeNode(CNode *pnode, CConnman& connman) {
269 CAddress addr = pnode->addr;
270 std::string addrName = pnode->GetAddrName();
271 NodeId nodeid = pnode->GetId();
273 LOCK(cs_main);
274 mapNodeState.emplace_hint(mapNodeState.end(), std::piecewise_construct, std::forward_as_tuple(nodeid), std::forward_as_tuple(addr, std::move(addrName)));
276 if(!pnode->fInbound)
277 PushNodeVersion(pnode, connman, GetTime());
280 void FinalizeNode(NodeId nodeid, bool& fUpdateConnectionTime) {
281 fUpdateConnectionTime = false;
282 LOCK(cs_main);
283 CNodeState *state = State(nodeid);
285 if (state->fSyncStarted)
286 nSyncStarted--;
288 if (state->nMisbehavior == 0 && state->fCurrentlyConnected) {
289 fUpdateConnectionTime = true;
292 for (const QueuedBlock& entry : state->vBlocksInFlight) {
293 mapBlocksInFlight.erase(entry.hash);
295 EraseOrphansFor(nodeid);
296 nPreferredDownload -= state->fPreferredDownload;
297 nPeersWithValidatedDownloads -= (state->nBlocksInFlightValidHeaders != 0);
298 assert(nPeersWithValidatedDownloads >= 0);
300 mapNodeState.erase(nodeid);
302 if (mapNodeState.empty()) {
303 // Do a consistency check after the last peer is removed.
304 assert(mapBlocksInFlight.empty());
305 assert(nPreferredDownload == 0);
306 assert(nPeersWithValidatedDownloads == 0);
308 LogPrint(BCLog::NET, "Cleared nodestate for peer=%d\n", nodeid);
311 // Requires cs_main.
312 // Returns a bool indicating whether we requested this block.
313 // Also used if a block was /not/ received and timed out or started with another peer
314 bool MarkBlockAsReceived(const uint256& hash) {
315 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash);
316 if (itInFlight != mapBlocksInFlight.end()) {
317 CNodeState *state = State(itInFlight->second.first);
318 state->nBlocksInFlightValidHeaders -= itInFlight->second.second->fValidatedHeaders;
319 if (state->nBlocksInFlightValidHeaders == 0 && itInFlight->second.second->fValidatedHeaders) {
320 // Last validated block on the queue was received.
321 nPeersWithValidatedDownloads--;
323 if (state->vBlocksInFlight.begin() == itInFlight->second.second) {
324 // First block on the queue was received, update the start download time for the next one
325 state->nDownloadingSince = std::max(state->nDownloadingSince, GetTimeMicros());
327 state->vBlocksInFlight.erase(itInFlight->second.second);
328 state->nBlocksInFlight--;
329 state->nStallingSince = 0;
330 mapBlocksInFlight.erase(itInFlight);
331 return true;
333 return false;
336 // Requires cs_main.
337 // returns false, still setting pit, if the block was already in flight from the same peer
338 // pit will only be valid as long as the same cs_main lock is being held
339 bool MarkBlockAsInFlight(NodeId nodeid, const uint256& hash, const CBlockIndex* pindex = NULL, std::list<QueuedBlock>::iterator** pit = NULL) {
340 CNodeState *state = State(nodeid);
341 assert(state != NULL);
343 // Short-circuit most stuff in case its from the same node
344 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash);
345 if (itInFlight != mapBlocksInFlight.end() && itInFlight->second.first == nodeid) {
346 if (pit) {
347 *pit = &itInFlight->second.second;
349 return false;
352 // Make sure it's not listed somewhere already.
353 MarkBlockAsReceived(hash);
355 std::list<QueuedBlock>::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(),
356 {hash, pindex, pindex != NULL, std::unique_ptr<PartiallyDownloadedBlock>(pit ? new PartiallyDownloadedBlock(&mempool) : NULL)});
357 state->nBlocksInFlight++;
358 state->nBlocksInFlightValidHeaders += it->fValidatedHeaders;
359 if (state->nBlocksInFlight == 1) {
360 // We're starting a block download (batch) from this peer.
361 state->nDownloadingSince = GetTimeMicros();
363 if (state->nBlocksInFlightValidHeaders == 1 && pindex != NULL) {
364 nPeersWithValidatedDownloads++;
366 itInFlight = mapBlocksInFlight.insert(std::make_pair(hash, std::make_pair(nodeid, it))).first;
367 if (pit)
368 *pit = &itInFlight->second.second;
369 return true;
372 /** Check whether the last unknown block a peer advertised is not yet known. */
373 void ProcessBlockAvailability(NodeId nodeid) {
374 CNodeState *state = State(nodeid);
375 assert(state != NULL);
377 if (!state->hashLastUnknownBlock.IsNull()) {
378 BlockMap::iterator itOld = mapBlockIndex.find(state->hashLastUnknownBlock);
379 if (itOld != mapBlockIndex.end() && itOld->second->nChainWork > 0) {
380 if (state->pindexBestKnownBlock == NULL || itOld->second->nChainWork >= state->pindexBestKnownBlock->nChainWork)
381 state->pindexBestKnownBlock = itOld->second;
382 state->hashLastUnknownBlock.SetNull();
387 /** Update tracking information about which blocks a peer is assumed to have. */
388 void UpdateBlockAvailability(NodeId nodeid, const uint256 &hash) {
389 CNodeState *state = State(nodeid);
390 assert(state != NULL);
392 ProcessBlockAvailability(nodeid);
394 BlockMap::iterator it = mapBlockIndex.find(hash);
395 if (it != mapBlockIndex.end() && it->second->nChainWork > 0) {
396 // An actually better block was announced.
397 if (state->pindexBestKnownBlock == NULL || it->second->nChainWork >= state->pindexBestKnownBlock->nChainWork)
398 state->pindexBestKnownBlock = it->second;
399 } else {
400 // An unknown block was announced; just assume that the latest one is the best one.
401 state->hashLastUnknownBlock = hash;
405 void MaybeSetPeerAsAnnouncingHeaderAndIDs(NodeId nodeid, CConnman& connman) {
406 AssertLockHeld(cs_main);
407 CNodeState* nodestate = State(nodeid);
408 if (!nodestate || !nodestate->fSupportsDesiredCmpctVersion) {
409 // Never ask from peers who can't provide witnesses.
410 return;
412 if (nodestate->fProvidesHeaderAndIDs) {
413 for (std::list<NodeId>::iterator it = lNodesAnnouncingHeaderAndIDs.begin(); it != lNodesAnnouncingHeaderAndIDs.end(); it++) {
414 if (*it == nodeid) {
415 lNodesAnnouncingHeaderAndIDs.erase(it);
416 lNodesAnnouncingHeaderAndIDs.push_back(nodeid);
417 return;
420 connman.ForNode(nodeid, [&connman](CNode* pfrom){
421 bool fAnnounceUsingCMPCTBLOCK = false;
422 uint64_t nCMPCTBLOCKVersion = (pfrom->GetLocalServices() & NODE_WITNESS) ? 2 : 1;
423 if (lNodesAnnouncingHeaderAndIDs.size() >= 3) {
424 // As per BIP152, we only get 3 of our peers to announce
425 // blocks using compact encodings.
426 connman.ForNode(lNodesAnnouncingHeaderAndIDs.front(), [&connman, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion](CNode* pnodeStop){
427 connman.PushMessage(pnodeStop, CNetMsgMaker(pnodeStop->GetSendVersion()).Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
428 return true;
430 lNodesAnnouncingHeaderAndIDs.pop_front();
432 fAnnounceUsingCMPCTBLOCK = true;
433 connman.PushMessage(pfrom, CNetMsgMaker(pfrom->GetSendVersion()).Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
434 lNodesAnnouncingHeaderAndIDs.push_back(pfrom->GetId());
435 return true;
440 // Requires cs_main
441 bool CanDirectFetch(const Consensus::Params &consensusParams)
443 return chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - consensusParams.nPowTargetSpacing * 20;
446 // Requires cs_main
447 bool PeerHasHeader(CNodeState *state, const CBlockIndex *pindex)
449 if (state->pindexBestKnownBlock && pindex == state->pindexBestKnownBlock->GetAncestor(pindex->nHeight))
450 return true;
451 if (state->pindexBestHeaderSent && pindex == state->pindexBestHeaderSent->GetAncestor(pindex->nHeight))
452 return true;
453 return false;
456 /** Update pindexLastCommonBlock and add not-in-flight missing successors to vBlocks, until it has
457 * at most count entries. */
458 void FindNextBlocksToDownload(NodeId nodeid, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, NodeId& nodeStaller, const Consensus::Params& consensusParams) {
459 if (count == 0)
460 return;
462 vBlocks.reserve(vBlocks.size() + count);
463 CNodeState *state = State(nodeid);
464 assert(state != NULL);
466 // Make sure pindexBestKnownBlock is up to date, we'll need it.
467 ProcessBlockAvailability(nodeid);
469 if (state->pindexBestKnownBlock == NULL || state->pindexBestKnownBlock->nChainWork < chainActive.Tip()->nChainWork || state->pindexBestKnownBlock->nChainWork < UintToArith256(consensusParams.nMinimumChainWork)) {
470 // This peer has nothing interesting.
471 return;
474 if (state->pindexLastCommonBlock == NULL) {
475 // Bootstrap quickly by guessing a parent of our best tip is the forking point.
476 // Guessing wrong in either direction is not a problem.
477 state->pindexLastCommonBlock = chainActive[std::min(state->pindexBestKnownBlock->nHeight, chainActive.Height())];
480 // If the peer reorganized, our previous pindexLastCommonBlock may not be an ancestor
481 // of its current tip anymore. Go back enough to fix that.
482 state->pindexLastCommonBlock = LastCommonAncestor(state->pindexLastCommonBlock, state->pindexBestKnownBlock);
483 if (state->pindexLastCommonBlock == state->pindexBestKnownBlock)
484 return;
486 std::vector<const CBlockIndex*> vToFetch;
487 const CBlockIndex *pindexWalk = state->pindexLastCommonBlock;
488 // Never fetch further than the best block we know the peer has, or more than BLOCK_DOWNLOAD_WINDOW + 1 beyond the last
489 // linked block we have in common with this peer. The +1 is so we can detect stalling, namely if we would be able to
490 // download that next block if the window were 1 larger.
491 int nWindowEnd = state->pindexLastCommonBlock->nHeight + BLOCK_DOWNLOAD_WINDOW;
492 int nMaxHeight = std::min<int>(state->pindexBestKnownBlock->nHeight, nWindowEnd + 1);
493 NodeId waitingfor = -1;
494 while (pindexWalk->nHeight < nMaxHeight) {
495 // Read up to 128 (or more, if more blocks than that are needed) successors of pindexWalk (towards
496 // pindexBestKnownBlock) into vToFetch. We fetch 128, because CBlockIndex::GetAncestor may be as expensive
497 // as iterating over ~100 CBlockIndex* entries anyway.
498 int nToFetch = std::min(nMaxHeight - pindexWalk->nHeight, std::max<int>(count - vBlocks.size(), 128));
499 vToFetch.resize(nToFetch);
500 pindexWalk = state->pindexBestKnownBlock->GetAncestor(pindexWalk->nHeight + nToFetch);
501 vToFetch[nToFetch - 1] = pindexWalk;
502 for (unsigned int i = nToFetch - 1; i > 0; i--) {
503 vToFetch[i - 1] = vToFetch[i]->pprev;
506 // Iterate over those blocks in vToFetch (in forward direction), adding the ones that
507 // are not yet downloaded and not in flight to vBlocks. In the mean time, update
508 // pindexLastCommonBlock as long as all ancestors are already downloaded, or if it's
509 // already part of our chain (and therefore don't need it even if pruned).
510 for (const CBlockIndex* pindex : vToFetch) {
511 if (!pindex->IsValid(BLOCK_VALID_TREE)) {
512 // We consider the chain that this peer is on invalid.
513 return;
515 if (!State(nodeid)->fHaveWitness && IsWitnessEnabled(pindex->pprev, consensusParams)) {
516 // We wouldn't download this block or its descendants from this peer.
517 return;
519 if (pindex->nStatus & BLOCK_HAVE_DATA || chainActive.Contains(pindex)) {
520 if (pindex->nChainTx)
521 state->pindexLastCommonBlock = pindex;
522 } else if (mapBlocksInFlight.count(pindex->GetBlockHash()) == 0) {
523 // The block is not already downloaded, and not yet in flight.
524 if (pindex->nHeight > nWindowEnd) {
525 // We reached the end of the window.
526 if (vBlocks.size() == 0 && waitingfor != nodeid) {
527 // We aren't able to fetch anything, but we would be if the download window was one larger.
528 nodeStaller = waitingfor;
530 return;
532 vBlocks.push_back(pindex);
533 if (vBlocks.size() == count) {
534 return;
536 } else if (waitingfor == -1) {
537 // This is the first already-in-flight block.
538 waitingfor = mapBlocksInFlight[pindex->GetBlockHash()].first;
544 } // namespace
546 bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats) {
547 LOCK(cs_main);
548 CNodeState *state = State(nodeid);
549 if (state == NULL)
550 return false;
551 stats.nMisbehavior = state->nMisbehavior;
552 stats.nSyncHeight = state->pindexBestKnownBlock ? state->pindexBestKnownBlock->nHeight : -1;
553 stats.nCommonHeight = state->pindexLastCommonBlock ? state->pindexLastCommonBlock->nHeight : -1;
554 for (const QueuedBlock& queue : state->vBlocksInFlight) {
555 if (queue.pindex)
556 stats.vHeightInFlight.push_back(queue.pindex->nHeight);
558 return true;
561 void RegisterNodeSignals(CNodeSignals& nodeSignals)
563 nodeSignals.ProcessMessages.connect(&ProcessMessages);
564 nodeSignals.SendMessages.connect(&SendMessages);
565 nodeSignals.InitializeNode.connect(&InitializeNode);
566 nodeSignals.FinalizeNode.connect(&FinalizeNode);
569 void UnregisterNodeSignals(CNodeSignals& nodeSignals)
571 nodeSignals.ProcessMessages.disconnect(&ProcessMessages);
572 nodeSignals.SendMessages.disconnect(&SendMessages);
573 nodeSignals.InitializeNode.disconnect(&InitializeNode);
574 nodeSignals.FinalizeNode.disconnect(&FinalizeNode);
577 //////////////////////////////////////////////////////////////////////////////
579 // mapOrphanTransactions
582 void AddToCompactExtraTransactions(const CTransactionRef& tx)
584 size_t max_extra_txn = GetArg("-blockreconstructionextratxn", DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN);
585 if (max_extra_txn <= 0)
586 return;
587 if (!vExtraTxnForCompact.size())
588 vExtraTxnForCompact.resize(max_extra_txn);
589 vExtraTxnForCompact[vExtraTxnForCompactIt] = std::make_pair(tx->GetWitnessHash(), tx);
590 vExtraTxnForCompactIt = (vExtraTxnForCompactIt + 1) % max_extra_txn;
593 bool AddOrphanTx(const CTransactionRef& tx, NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
595 const uint256& hash = tx->GetHash();
596 if (mapOrphanTransactions.count(hash))
597 return false;
599 // Ignore big transactions, to avoid a
600 // send-big-orphans memory exhaustion attack. If a peer has a legitimate
601 // large transaction with a missing parent then we assume
602 // it will rebroadcast it later, after the parent transaction(s)
603 // have been mined or received.
604 // 100 orphans, each of which is at most 99,999 bytes big is
605 // at most 10 megabytes of orphans and somewhat more byprev index (in the worst case):
606 unsigned int sz = GetTransactionWeight(*tx);
607 if (sz >= MAX_STANDARD_TX_WEIGHT)
609 LogPrint(BCLog::MEMPOOL, "ignoring large orphan tx (size: %u, hash: %s)\n", sz, hash.ToString());
610 return false;
613 auto ret = mapOrphanTransactions.emplace(hash, COrphanTx{tx, peer, GetTime() + ORPHAN_TX_EXPIRE_TIME});
614 assert(ret.second);
615 for (const CTxIn& txin : tx->vin) {
616 mapOrphanTransactionsByPrev[txin.prevout].insert(ret.first);
619 AddToCompactExtraTransactions(tx);
621 LogPrint(BCLog::MEMPOOL, "stored orphan tx %s (mapsz %u outsz %u)\n", hash.ToString(),
622 mapOrphanTransactions.size(), mapOrphanTransactionsByPrev.size());
623 return true;
626 int static EraseOrphanTx(uint256 hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
628 std::map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.find(hash);
629 if (it == mapOrphanTransactions.end())
630 return 0;
631 for (const CTxIn& txin : it->second.tx->vin)
633 auto itPrev = mapOrphanTransactionsByPrev.find(txin.prevout);
634 if (itPrev == mapOrphanTransactionsByPrev.end())
635 continue;
636 itPrev->second.erase(it);
637 if (itPrev->second.empty())
638 mapOrphanTransactionsByPrev.erase(itPrev);
640 mapOrphanTransactions.erase(it);
641 return 1;
644 void EraseOrphansFor(NodeId peer)
646 int nErased = 0;
647 std::map<uint256, COrphanTx>::iterator iter = mapOrphanTransactions.begin();
648 while (iter != mapOrphanTransactions.end())
650 std::map<uint256, COrphanTx>::iterator maybeErase = iter++; // increment to avoid iterator becoming invalid
651 if (maybeErase->second.fromPeer == peer)
653 nErased += EraseOrphanTx(maybeErase->second.tx->GetHash());
656 if (nErased > 0) LogPrint(BCLog::MEMPOOL, "Erased %d orphan tx from peer=%d\n", nErased, peer);
660 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
662 unsigned int nEvicted = 0;
663 static int64_t nNextSweep;
664 int64_t nNow = GetTime();
665 if (nNextSweep <= nNow) {
666 // Sweep out expired orphan pool entries:
667 int nErased = 0;
668 int64_t nMinExpTime = nNow + ORPHAN_TX_EXPIRE_TIME - ORPHAN_TX_EXPIRE_INTERVAL;
669 std::map<uint256, COrphanTx>::iterator iter = mapOrphanTransactions.begin();
670 while (iter != mapOrphanTransactions.end())
672 std::map<uint256, COrphanTx>::iterator maybeErase = iter++;
673 if (maybeErase->second.nTimeExpire <= nNow) {
674 nErased += EraseOrphanTx(maybeErase->second.tx->GetHash());
675 } else {
676 nMinExpTime = std::min(maybeErase->second.nTimeExpire, nMinExpTime);
679 // Sweep again 5 minutes after the next entry that expires in order to batch the linear scan.
680 nNextSweep = nMinExpTime + ORPHAN_TX_EXPIRE_INTERVAL;
681 if (nErased > 0) LogPrint(BCLog::MEMPOOL, "Erased %d orphan tx due to expiration\n", nErased);
683 while (mapOrphanTransactions.size() > nMaxOrphans)
685 // Evict a random orphan:
686 uint256 randomhash = GetRandHash();
687 std::map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
688 if (it == mapOrphanTransactions.end())
689 it = mapOrphanTransactions.begin();
690 EraseOrphanTx(it->first);
691 ++nEvicted;
693 return nEvicted;
696 // Requires cs_main.
697 void Misbehaving(NodeId pnode, int howmuch)
699 if (howmuch == 0)
700 return;
702 CNodeState *state = State(pnode);
703 if (state == NULL)
704 return;
706 state->nMisbehavior += howmuch;
707 int banscore = GetArg("-banscore", DEFAULT_BANSCORE_THRESHOLD);
708 if (state->nMisbehavior >= banscore && state->nMisbehavior - howmuch < banscore)
710 LogPrintf("%s: %s peer=%d (%d -> %d) BAN THRESHOLD EXCEEDED\n", __func__, state->name, pnode, state->nMisbehavior-howmuch, state->nMisbehavior);
711 state->fShouldBan = true;
712 } else
713 LogPrintf("%s: %s peer=%d (%d -> %d)\n", __func__, state->name, pnode, state->nMisbehavior-howmuch, state->nMisbehavior);
723 //////////////////////////////////////////////////////////////////////////////
725 // blockchain -> download logic notification
728 PeerLogicValidation::PeerLogicValidation(CConnman* connmanIn) : connman(connmanIn) {
729 // Initialize global variables that cannot be constructed at startup.
730 recentRejects.reset(new CRollingBloomFilter(120000, 0.000001));
733 void PeerLogicValidation::BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindex, const std::vector<CTransactionRef>& vtxConflicted) {
734 LOCK(cs_main);
736 std::vector<uint256> vOrphanErase;
738 for (const CTransactionRef& ptx : pblock->vtx) {
739 const CTransaction& tx = *ptx;
741 // Which orphan pool entries must we evict?
742 for (const auto& txin : tx.vin) {
743 auto itByPrev = mapOrphanTransactionsByPrev.find(txin.prevout);
744 if (itByPrev == mapOrphanTransactionsByPrev.end()) continue;
745 for (auto mi = itByPrev->second.begin(); mi != itByPrev->second.end(); ++mi) {
746 const CTransaction& orphanTx = *(*mi)->second.tx;
747 const uint256& orphanHash = orphanTx.GetHash();
748 vOrphanErase.push_back(orphanHash);
753 // Erase orphan transactions include or precluded by this block
754 if (vOrphanErase.size()) {
755 int nErased = 0;
756 for (uint256 &orphanHash : vOrphanErase) {
757 nErased += EraseOrphanTx(orphanHash);
759 LogPrint(BCLog::MEMPOOL, "Erased %d orphan tx included or conflicted by block\n", nErased);
763 // All of the following cache a recent block, and are protected by cs_most_recent_block
764 static CCriticalSection cs_most_recent_block;
765 static std::shared_ptr<const CBlock> most_recent_block;
766 static std::shared_ptr<const CBlockHeaderAndShortTxIDs> most_recent_compact_block;
767 static uint256 most_recent_block_hash;
768 static bool fWitnessesPresentInMostRecentCompactBlock;
770 void PeerLogicValidation::NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock) {
771 std::shared_ptr<const CBlockHeaderAndShortTxIDs> pcmpctblock = std::make_shared<const CBlockHeaderAndShortTxIDs> (*pblock, true);
772 const CNetMsgMaker msgMaker(PROTOCOL_VERSION);
774 LOCK(cs_main);
776 static int nHighestFastAnnounce = 0;
777 if (pindex->nHeight <= nHighestFastAnnounce)
778 return;
779 nHighestFastAnnounce = pindex->nHeight;
781 bool fWitnessEnabled = IsWitnessEnabled(pindex->pprev, Params().GetConsensus());
782 uint256 hashBlock(pblock->GetHash());
785 LOCK(cs_most_recent_block);
786 most_recent_block_hash = hashBlock;
787 most_recent_block = pblock;
788 most_recent_compact_block = pcmpctblock;
789 fWitnessesPresentInMostRecentCompactBlock = fWitnessEnabled;
792 connman->ForEachNode([this, &pcmpctblock, pindex, &msgMaker, fWitnessEnabled, &hashBlock](CNode* pnode) {
793 // TODO: Avoid the repeated-serialization here
794 if (pnode->nVersion < INVALID_CB_NO_BAN_VERSION || pnode->fDisconnect)
795 return;
796 ProcessBlockAvailability(pnode->GetId());
797 CNodeState &state = *State(pnode->GetId());
798 // If the peer has, or we announced to them the previous block already,
799 // but we don't think they have this one, go ahead and announce it
800 if (state.fPreferHeaderAndIDs && (!fWitnessEnabled || state.fWantsCmpctWitness) &&
801 !PeerHasHeader(&state, pindex) && PeerHasHeader(&state, pindex->pprev)) {
803 LogPrint(BCLog::NET, "%s sending header-and-ids %s to peer=%d\n", "PeerLogicValidation::NewPoWValidBlock",
804 hashBlock.ToString(), pnode->GetId());
805 connman->PushMessage(pnode, msgMaker.Make(NetMsgType::CMPCTBLOCK, *pcmpctblock));
806 state.pindexBestHeaderSent = pindex;
811 void PeerLogicValidation::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) {
812 const int nNewHeight = pindexNew->nHeight;
813 connman->SetBestHeight(nNewHeight);
815 if (!fInitialDownload) {
816 // Find the hashes of all blocks that weren't previously in the best chain.
817 std::vector<uint256> vHashes;
818 const CBlockIndex *pindexToAnnounce = pindexNew;
819 while (pindexToAnnounce != pindexFork) {
820 vHashes.push_back(pindexToAnnounce->GetBlockHash());
821 pindexToAnnounce = pindexToAnnounce->pprev;
822 if (vHashes.size() == MAX_BLOCKS_TO_ANNOUNCE) {
823 // Limit announcements in case of a huge reorganization.
824 // Rely on the peer's synchronization mechanism in that case.
825 break;
828 // Relay inventory, but don't relay old inventory during initial block download.
829 connman->ForEachNode([nNewHeight, &vHashes](CNode* pnode) {
830 if (nNewHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 0)) {
831 for (const uint256& hash : reverse_iterate(vHashes)) {
832 pnode->PushBlockHash(hash);
836 connman->WakeMessageHandler();
839 nTimeBestReceived = GetTime();
842 void PeerLogicValidation::BlockChecked(const CBlock& block, const CValidationState& state) {
843 LOCK(cs_main);
845 const uint256 hash(block.GetHash());
846 std::map<uint256, std::pair<NodeId, bool>>::iterator it = mapBlockSource.find(hash);
848 int nDoS = 0;
849 if (state.IsInvalid(nDoS)) {
850 // Don't send reject message with code 0 or an internal reject code.
851 if (it != mapBlockSource.end() && State(it->second.first) && state.GetRejectCode() > 0 && state.GetRejectCode() < REJECT_INTERNAL) {
852 CBlockReject reject = {(unsigned char)state.GetRejectCode(), state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), hash};
853 State(it->second.first)->rejects.push_back(reject);
854 if (nDoS > 0 && it->second.second)
855 Misbehaving(it->second.first, nDoS);
858 // Check that:
859 // 1. The block is valid
860 // 2. We're not in initial block download
861 // 3. This is currently the best block we're aware of. We haven't updated
862 // the tip yet so we have no way to check this directly here. Instead we
863 // just check that there are currently no other blocks in flight.
864 else if (state.IsValid() &&
865 !IsInitialBlockDownload() &&
866 mapBlocksInFlight.count(hash) == mapBlocksInFlight.size()) {
867 if (it != mapBlockSource.end()) {
868 MaybeSetPeerAsAnnouncingHeaderAndIDs(it->second.first, *connman);
871 if (it != mapBlockSource.end())
872 mapBlockSource.erase(it);
875 //////////////////////////////////////////////////////////////////////////////
877 // Messages
881 bool static AlreadyHave(const CInv& inv) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
883 switch (inv.type)
885 case MSG_TX:
886 case MSG_WITNESS_TX:
888 assert(recentRejects);
889 if (chainActive.Tip()->GetBlockHash() != hashRecentRejectsChainTip)
891 // If the chain tip has changed previously rejected transactions
892 // might be now valid, e.g. due to a nLockTime'd tx becoming valid,
893 // or a double-spend. Reset the rejects filter and give those
894 // txs a second chance.
895 hashRecentRejectsChainTip = chainActive.Tip()->GetBlockHash();
896 recentRejects->reset();
899 return recentRejects->contains(inv.hash) ||
900 mempool.exists(inv.hash) ||
901 mapOrphanTransactions.count(inv.hash) ||
902 pcoinsTip->HaveCoinInCache(COutPoint(inv.hash, 0)) || // Best effort: only try output 0 and 1
903 pcoinsTip->HaveCoinInCache(COutPoint(inv.hash, 1));
905 case MSG_BLOCK:
906 case MSG_WITNESS_BLOCK:
907 return mapBlockIndex.count(inv.hash);
909 // Don't know what it is, just say we already got one
910 return true;
913 static void RelayTransaction(const CTransaction& tx, CConnman& connman)
915 CInv inv(MSG_TX, tx.GetHash());
916 connman.ForEachNode([&inv](CNode* pnode)
918 pnode->PushInventory(inv);
922 static void RelayAddress(const CAddress& addr, bool fReachable, CConnman& connman)
924 unsigned int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
926 // Relay to a limited number of other nodes
927 // Use deterministic randomness to send to the same nodes for 24 hours
928 // at a time so the addrKnowns of the chosen nodes prevent repeats
929 uint64_t hashAddr = addr.GetHash();
930 const CSipHasher hasher = connman.GetDeterministicRandomizer(RANDOMIZER_ID_ADDRESS_RELAY).Write(hashAddr << 32).Write((GetTime() + hashAddr) / (24*60*60));
931 FastRandomContext insecure_rand;
933 std::array<std::pair<uint64_t, CNode*>,2> best{{{0, nullptr}, {0, nullptr}}};
934 assert(nRelayNodes <= best.size());
936 auto sortfunc = [&best, &hasher, nRelayNodes](CNode* pnode) {
937 if (pnode->nVersion >= CADDR_TIME_VERSION) {
938 uint64_t hashKey = CSipHasher(hasher).Write(pnode->GetId()).Finalize();
939 for (unsigned int i = 0; i < nRelayNodes; i++) {
940 if (hashKey > best[i].first) {
941 std::copy(best.begin() + i, best.begin() + nRelayNodes - 1, best.begin() + i + 1);
942 best[i] = std::make_pair(hashKey, pnode);
943 break;
949 auto pushfunc = [&addr, &best, nRelayNodes, &insecure_rand] {
950 for (unsigned int i = 0; i < nRelayNodes && best[i].first != 0; i++) {
951 best[i].second->PushAddress(addr, insecure_rand);
955 connman.ForEachNodeThen(std::move(sortfunc), std::move(pushfunc));
958 void static ProcessGetData(CNode* pfrom, const Consensus::Params& consensusParams, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
960 std::deque<CInv>::iterator it = pfrom->vRecvGetData.begin();
961 std::vector<CInv> vNotFound;
962 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
963 LOCK(cs_main);
965 while (it != pfrom->vRecvGetData.end()) {
966 // Don't bother if send buffer is too full to respond anyway
967 if (pfrom->fPauseSend)
968 break;
970 const CInv &inv = *it;
972 if (interruptMsgProc)
973 return;
975 it++;
977 if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK || inv.type == MSG_CMPCT_BLOCK || inv.type == MSG_WITNESS_BLOCK)
979 bool send = false;
980 BlockMap::iterator mi = mapBlockIndex.find(inv.hash);
981 std::shared_ptr<const CBlock> a_recent_block;
982 std::shared_ptr<const CBlockHeaderAndShortTxIDs> a_recent_compact_block;
983 bool fWitnessesPresentInARecentCompactBlock;
985 LOCK(cs_most_recent_block);
986 a_recent_block = most_recent_block;
987 a_recent_compact_block = most_recent_compact_block;
988 fWitnessesPresentInARecentCompactBlock = fWitnessesPresentInMostRecentCompactBlock;
990 if (mi != mapBlockIndex.end())
992 if (mi->second->nChainTx && !mi->second->IsValid(BLOCK_VALID_SCRIPTS) &&
993 mi->second->IsValid(BLOCK_VALID_TREE)) {
994 // If we have the block and all of its parents, but have not yet validated it,
995 // we might be in the middle of connecting it (ie in the unlock of cs_main
996 // before ActivateBestChain but after AcceptBlock).
997 // In this case, we need to run ActivateBestChain prior to checking the relay
998 // conditions below.
999 CValidationState dummy;
1000 ActivateBestChain(dummy, Params(), a_recent_block);
1002 if (chainActive.Contains(mi->second)) {
1003 send = true;
1004 } else {
1005 static const int nOneMonth = 30 * 24 * 60 * 60;
1006 // To prevent fingerprinting attacks, only send blocks outside of the active
1007 // chain if they are valid, and no more than a month older (both in time, and in
1008 // best equivalent proof of work) than the best header chain we know about.
1009 send = mi->second->IsValid(BLOCK_VALID_SCRIPTS) && (pindexBestHeader != NULL) &&
1010 (pindexBestHeader->GetBlockTime() - mi->second->GetBlockTime() < nOneMonth) &&
1011 (GetBlockProofEquivalentTime(*pindexBestHeader, *mi->second, *pindexBestHeader, consensusParams) < nOneMonth);
1012 if (!send) {
1013 LogPrintf("%s: ignoring request from peer=%i for old block that isn't in the main chain\n", __func__, pfrom->GetId());
1017 // disconnect node in case we have reached the outbound limit for serving historical blocks
1018 // never disconnect whitelisted nodes
1019 static const int nOneWeek = 7 * 24 * 60 * 60; // assume > 1 week = historical
1020 if (send && connman.OutboundTargetReached(true) && ( ((pindexBestHeader != NULL) && (pindexBestHeader->GetBlockTime() - mi->second->GetBlockTime() > nOneWeek)) || inv.type == MSG_FILTERED_BLOCK) && !pfrom->fWhitelisted)
1022 LogPrint(BCLog::NET, "historical block serving limit reached, disconnect peer=%d\n", pfrom->GetId());
1024 //disconnect node
1025 pfrom->fDisconnect = true;
1026 send = false;
1028 // Pruned nodes may have deleted the block, so check whether
1029 // it's available before trying to send.
1030 if (send && (mi->second->nStatus & BLOCK_HAVE_DATA))
1032 std::shared_ptr<const CBlock> pblock;
1033 if (a_recent_block && a_recent_block->GetHash() == (*mi).second->GetBlockHash()) {
1034 pblock = a_recent_block;
1035 } else {
1036 // Send block from disk
1037 std::shared_ptr<CBlock> pblockRead = std::make_shared<CBlock>();
1038 if (!ReadBlockFromDisk(*pblockRead, (*mi).second, consensusParams))
1039 assert(!"cannot load block from disk");
1040 pblock = pblockRead;
1042 if (inv.type == MSG_BLOCK)
1043 connman.PushMessage(pfrom, msgMaker.Make(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::BLOCK, *pblock));
1044 else if (inv.type == MSG_WITNESS_BLOCK)
1045 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::BLOCK, *pblock));
1046 else if (inv.type == MSG_FILTERED_BLOCK)
1048 bool sendMerkleBlock = false;
1049 CMerkleBlock merkleBlock;
1051 LOCK(pfrom->cs_filter);
1052 if (pfrom->pfilter) {
1053 sendMerkleBlock = true;
1054 merkleBlock = CMerkleBlock(*pblock, *pfrom->pfilter);
1057 if (sendMerkleBlock) {
1058 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::MERKLEBLOCK, merkleBlock));
1059 // CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see
1060 // This avoids hurting performance by pointlessly requiring a round-trip
1061 // Note that there is currently no way for a node to request any single transactions we didn't send here -
1062 // they must either disconnect and retry or request the full block.
1063 // Thus, the protocol spec specified allows for us to provide duplicate txn here,
1064 // however we MUST always provide at least what the remote peer needs
1065 typedef std::pair<unsigned int, uint256> PairType;
1066 for (PairType& pair : merkleBlock.vMatchedTxn)
1067 connman.PushMessage(pfrom, msgMaker.Make(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::TX, *pblock->vtx[pair.first]));
1069 // else
1070 // no response
1072 else if (inv.type == MSG_CMPCT_BLOCK)
1074 // If a peer is asking for old blocks, we're almost guaranteed
1075 // they won't have a useful mempool to match against a compact block,
1076 // and we don't feel like constructing the object for them, so
1077 // instead we respond with the full, non-compact block.
1078 bool fPeerWantsWitness = State(pfrom->GetId())->fWantsCmpctWitness;
1079 int nSendFlags = fPeerWantsWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
1080 if (CanDirectFetch(consensusParams) && mi->second->nHeight >= chainActive.Height() - MAX_CMPCTBLOCK_DEPTH) {
1081 if ((fPeerWantsWitness || !fWitnessesPresentInARecentCompactBlock) && a_recent_compact_block && a_recent_compact_block->header.GetHash() == mi->second->GetBlockHash()) {
1082 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, *a_recent_compact_block));
1083 } else {
1084 CBlockHeaderAndShortTxIDs cmpctblock(*pblock, fPeerWantsWitness);
1085 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
1087 } else {
1088 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::BLOCK, *pblock));
1092 // Trigger the peer node to send a getblocks request for the next batch of inventory
1093 if (inv.hash == pfrom->hashContinue)
1095 // Bypass PushInventory, this must send even if redundant,
1096 // and we want it right after the last block so they don't
1097 // wait for other stuff first.
1098 std::vector<CInv> vInv;
1099 vInv.push_back(CInv(MSG_BLOCK, chainActive.Tip()->GetBlockHash()));
1100 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::INV, vInv));
1101 pfrom->hashContinue.SetNull();
1105 else if (inv.type == MSG_TX || inv.type == MSG_WITNESS_TX)
1107 // Send stream from relay memory
1108 bool push = false;
1109 auto mi = mapRelay.find(inv.hash);
1110 int nSendFlags = (inv.type == MSG_TX ? SERIALIZE_TRANSACTION_NO_WITNESS : 0);
1111 if (mi != mapRelay.end()) {
1112 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::TX, *mi->second));
1113 push = true;
1114 } else if (pfrom->timeLastMempoolReq) {
1115 auto txinfo = mempool.info(inv.hash);
1116 // To protect privacy, do not answer getdata using the mempool when
1117 // that TX couldn't have been INVed in reply to a MEMPOOL request.
1118 if (txinfo.tx && txinfo.nTime <= pfrom->timeLastMempoolReq) {
1119 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::TX, *txinfo.tx));
1120 push = true;
1123 if (!push) {
1124 vNotFound.push_back(inv);
1128 // Track requests for our stuff.
1129 GetMainSignals().Inventory(inv.hash);
1131 if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK || inv.type == MSG_CMPCT_BLOCK || inv.type == MSG_WITNESS_BLOCK)
1132 break;
1136 pfrom->vRecvGetData.erase(pfrom->vRecvGetData.begin(), it);
1138 if (!vNotFound.empty()) {
1139 // Let the peer know that we didn't find what it asked for, so it doesn't
1140 // have to wait around forever. Currently only SPV clients actually care
1141 // about this message: it's needed when they are recursively walking the
1142 // dependencies of relevant unconfirmed transactions. SPV clients want to
1143 // do that because they want to know about (and store and rebroadcast and
1144 // risk analyze) the dependencies of transactions relevant to them, without
1145 // having to download the entire memory pool.
1146 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::NOTFOUND, vNotFound));
1150 uint32_t GetFetchFlags(CNode* pfrom) {
1151 uint32_t nFetchFlags = 0;
1152 if ((pfrom->GetLocalServices() & NODE_WITNESS) && State(pfrom->GetId())->fHaveWitness) {
1153 nFetchFlags |= MSG_WITNESS_FLAG;
1155 return nFetchFlags;
1158 inline void static SendBlockTransactions(const CBlock& block, const BlockTransactionsRequest& req, CNode* pfrom, CConnman& connman) {
1159 BlockTransactions resp(req);
1160 for (size_t i = 0; i < req.indexes.size(); i++) {
1161 if (req.indexes[i] >= block.vtx.size()) {
1162 LOCK(cs_main);
1163 Misbehaving(pfrom->GetId(), 100);
1164 LogPrintf("Peer %d sent us a getblocktxn with out-of-bounds tx indices", pfrom->GetId());
1165 return;
1167 resp.txn[i] = block.vtx[req.indexes[i]];
1169 LOCK(cs_main);
1170 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
1171 int nSendFlags = State(pfrom->GetId())->fWantsCmpctWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
1172 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::BLOCKTXN, resp));
1175 bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv, int64_t nTimeReceived, const CChainParams& chainparams, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
1177 LogPrint(BCLog::NET, "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand), vRecv.size(), pfrom->GetId());
1178 if (IsArgSet("-dropmessagestest") && GetRand(GetArg("-dropmessagestest", 0)) == 0)
1180 LogPrintf("dropmessagestest DROPPING RECV MESSAGE\n");
1181 return true;
1185 if (!(pfrom->GetLocalServices() & NODE_BLOOM) &&
1186 (strCommand == NetMsgType::FILTERLOAD ||
1187 strCommand == NetMsgType::FILTERADD))
1189 if (pfrom->nVersion >= NO_BLOOM_VERSION) {
1190 LOCK(cs_main);
1191 Misbehaving(pfrom->GetId(), 100);
1192 return false;
1193 } else {
1194 pfrom->fDisconnect = true;
1195 return false;
1199 if (strCommand == NetMsgType::REJECT)
1201 if (LogAcceptCategory(BCLog::NET)) {
1202 try {
1203 std::string strMsg; unsigned char ccode; std::string strReason;
1204 vRecv >> LIMITED_STRING(strMsg, CMessageHeader::COMMAND_SIZE) >> ccode >> LIMITED_STRING(strReason, MAX_REJECT_MESSAGE_LENGTH);
1206 std::ostringstream ss;
1207 ss << strMsg << " code " << itostr(ccode) << ": " << strReason;
1209 if (strMsg == NetMsgType::BLOCK || strMsg == NetMsgType::TX)
1211 uint256 hash;
1212 vRecv >> hash;
1213 ss << ": hash " << hash.ToString();
1215 LogPrint(BCLog::NET, "Reject %s\n", SanitizeString(ss.str()));
1216 } catch (const std::ios_base::failure&) {
1217 // Avoid feedback loops by preventing reject messages from triggering a new reject message.
1218 LogPrint(BCLog::NET, "Unparseable reject message received\n");
1223 else if (strCommand == NetMsgType::VERSION)
1225 // Each connection can only send one version message
1226 if (pfrom->nVersion != 0)
1228 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_DUPLICATE, std::string("Duplicate version message")));
1229 LOCK(cs_main);
1230 Misbehaving(pfrom->GetId(), 1);
1231 return false;
1234 int64_t nTime;
1235 CAddress addrMe;
1236 CAddress addrFrom;
1237 uint64_t nNonce = 1;
1238 uint64_t nServiceInt;
1239 ServiceFlags nServices;
1240 int nVersion;
1241 int nSendVersion;
1242 std::string strSubVer;
1243 std::string cleanSubVer;
1244 int nStartingHeight = -1;
1245 bool fRelay = true;
1247 vRecv >> nVersion >> nServiceInt >> nTime >> addrMe;
1248 nSendVersion = std::min(nVersion, PROTOCOL_VERSION);
1249 nServices = ServiceFlags(nServiceInt);
1250 if (!pfrom->fInbound)
1252 connman.SetServices(pfrom->addr, nServices);
1254 if (pfrom->nServicesExpected & ~nServices)
1256 LogPrint(BCLog::NET, "peer=%d does not offer the expected services (%08x offered, %08x expected); disconnecting\n", pfrom->GetId(), nServices, pfrom->nServicesExpected);
1257 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_NONSTANDARD,
1258 strprintf("Expected to offer services %08x", pfrom->nServicesExpected)));
1259 pfrom->fDisconnect = true;
1260 return false;
1263 if (nVersion < MIN_PEER_PROTO_VERSION)
1265 // disconnect from peers older than this proto version
1266 LogPrintf("peer=%d using obsolete version %i; disconnecting\n", pfrom->GetId(), nVersion);
1267 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_OBSOLETE,
1268 strprintf("Version must be %d or greater", MIN_PEER_PROTO_VERSION)));
1269 pfrom->fDisconnect = true;
1270 return false;
1273 if (nVersion == 10300)
1274 nVersion = 300;
1275 if (!vRecv.empty())
1276 vRecv >> addrFrom >> nNonce;
1277 if (!vRecv.empty()) {
1278 vRecv >> LIMITED_STRING(strSubVer, MAX_SUBVERSION_LENGTH);
1279 cleanSubVer = SanitizeString(strSubVer);
1281 if (!vRecv.empty()) {
1282 vRecv >> nStartingHeight;
1284 if (!vRecv.empty())
1285 vRecv >> fRelay;
1286 // Disconnect if we connected to ourself
1287 if (pfrom->fInbound && !connman.CheckIncomingNonce(nNonce))
1289 LogPrintf("connected to self at %s, disconnecting\n", pfrom->addr.ToString());
1290 pfrom->fDisconnect = true;
1291 return true;
1294 if (pfrom->fInbound && addrMe.IsRoutable())
1296 SeenLocal(addrMe);
1299 // Be shy and don't send version until we hear
1300 if (pfrom->fInbound)
1301 PushNodeVersion(pfrom, connman, GetAdjustedTime());
1303 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::VERACK));
1305 pfrom->nServices = nServices;
1306 pfrom->SetAddrLocal(addrMe);
1308 LOCK(pfrom->cs_SubVer);
1309 pfrom->strSubVer = strSubVer;
1310 pfrom->cleanSubVer = cleanSubVer;
1312 pfrom->nStartingHeight = nStartingHeight;
1313 pfrom->fClient = !(nServices & NODE_NETWORK);
1315 LOCK(pfrom->cs_filter);
1316 pfrom->fRelayTxes = fRelay; // set to true after we get the first filter* message
1319 // Change version
1320 pfrom->SetSendVersion(nSendVersion);
1321 pfrom->nVersion = nVersion;
1323 if((nServices & NODE_WITNESS))
1325 LOCK(cs_main);
1326 State(pfrom->GetId())->fHaveWitness = true;
1329 // Potentially mark this peer as a preferred download peer.
1331 LOCK(cs_main);
1332 UpdatePreferredDownload(pfrom, State(pfrom->GetId()));
1335 if (!pfrom->fInbound)
1337 // Advertise our address
1338 if (fListen && !IsInitialBlockDownload())
1340 CAddress addr = GetLocalAddress(&pfrom->addr, pfrom->GetLocalServices());
1341 FastRandomContext insecure_rand;
1342 if (addr.IsRoutable())
1344 LogPrint(BCLog::NET, "ProcessMessages: advertising address %s\n", addr.ToString());
1345 pfrom->PushAddress(addr, insecure_rand);
1346 } else if (IsPeerAddrLocalGood(pfrom)) {
1347 addr.SetIP(addrMe);
1348 LogPrint(BCLog::NET, "ProcessMessages: advertising address %s\n", addr.ToString());
1349 pfrom->PushAddress(addr, insecure_rand);
1353 // Get recent addresses
1354 if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || connman.GetAddressCount() < 1000)
1356 connman.PushMessage(pfrom, CNetMsgMaker(nSendVersion).Make(NetMsgType::GETADDR));
1357 pfrom->fGetAddr = true;
1359 connman.MarkAddressGood(pfrom->addr);
1362 std::string remoteAddr;
1363 if (fLogIPs)
1364 remoteAddr = ", peeraddr=" + pfrom->addr.ToString();
1366 LogPrintf("receive version message: %s: version %d, blocks=%d, us=%s, peer=%d%s\n",
1367 cleanSubVer, pfrom->nVersion,
1368 pfrom->nStartingHeight, addrMe.ToString(), pfrom->GetId(),
1369 remoteAddr);
1371 int64_t nTimeOffset = nTime - GetTime();
1372 pfrom->nTimeOffset = nTimeOffset;
1373 AddTimeData(pfrom->addr, nTimeOffset);
1375 // If the peer is old enough to have the old alert system, send it the final alert.
1376 if (pfrom->nVersion <= 70012) {
1377 CDataStream finalAlert(ParseHex("60010000000000000000000000ffffff7f00000000ffffff7ffeffff7f01ffffff7f00000000ffffff7f00ffffff7f002f555247454e543a20416c657274206b657920636f6d70726f6d697365642c2075706772616465207265717569726564004630440220653febd6410f470f6bae11cad19c48413becb1ac2c17f908fd0fd53bdc3abd5202206d0e9c96fe88d4a0f01ed9dedae2b6f9e00da94cad0fecaae66ecf689bf71b50"), SER_NETWORK, PROTOCOL_VERSION);
1378 connman.PushMessage(pfrom, CNetMsgMaker(nSendVersion).Make("alert", finalAlert));
1381 // Feeler connections exist only to verify if address is online.
1382 if (pfrom->fFeeler) {
1383 assert(pfrom->fInbound == false);
1384 pfrom->fDisconnect = true;
1386 return true;
1390 else if (pfrom->nVersion == 0)
1392 // Must have a version message before anything else
1393 LOCK(cs_main);
1394 Misbehaving(pfrom->GetId(), 1);
1395 return false;
1398 // At this point, the outgoing message serialization version can't change.
1399 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
1401 if (strCommand == NetMsgType::VERACK)
1403 pfrom->SetRecvVersion(std::min(pfrom->nVersion.load(), PROTOCOL_VERSION));
1405 if (!pfrom->fInbound) {
1406 // Mark this node as currently connected, so we update its timestamp later.
1407 LOCK(cs_main);
1408 State(pfrom->GetId())->fCurrentlyConnected = true;
1411 if (pfrom->nVersion >= SENDHEADERS_VERSION) {
1412 // Tell our peer we prefer to receive headers rather than inv's
1413 // We send this to non-NODE NETWORK peers as well, because even
1414 // non-NODE NETWORK peers can announce blocks (such as pruning
1415 // nodes)
1416 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDHEADERS));
1418 if (pfrom->nVersion >= SHORT_IDS_BLOCKS_VERSION) {
1419 // Tell our peer we are willing to provide version 1 or 2 cmpctblocks
1420 // However, we do not request new block announcements using
1421 // cmpctblock messages.
1422 // We send this to non-NODE NETWORK peers as well, because
1423 // they may wish to request compact blocks from us
1424 bool fAnnounceUsingCMPCTBLOCK = false;
1425 uint64_t nCMPCTBLOCKVersion = 2;
1426 if (pfrom->GetLocalServices() & NODE_WITNESS)
1427 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
1428 nCMPCTBLOCKVersion = 1;
1429 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
1431 pfrom->fSuccessfullyConnected = true;
1434 else if (!pfrom->fSuccessfullyConnected)
1436 // Must have a verack message before anything else
1437 LOCK(cs_main);
1438 Misbehaving(pfrom->GetId(), 1);
1439 return false;
1442 else if (strCommand == NetMsgType::ADDR)
1444 std::vector<CAddress> vAddr;
1445 vRecv >> vAddr;
1447 // Don't want addr from older versions unless seeding
1448 if (pfrom->nVersion < CADDR_TIME_VERSION && connman.GetAddressCount() > 1000)
1449 return true;
1450 if (vAddr.size() > 1000)
1452 LOCK(cs_main);
1453 Misbehaving(pfrom->GetId(), 20);
1454 return error("message addr size() = %u", vAddr.size());
1457 // Store the new addresses
1458 std::vector<CAddress> vAddrOk;
1459 int64_t nNow = GetAdjustedTime();
1460 int64_t nSince = nNow - 10 * 60;
1461 for (CAddress& addr : vAddr)
1463 if (interruptMsgProc)
1464 return true;
1466 if ((addr.nServices & REQUIRED_SERVICES) != REQUIRED_SERVICES)
1467 continue;
1469 if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
1470 addr.nTime = nNow - 5 * 24 * 60 * 60;
1471 pfrom->AddAddressKnown(addr);
1472 bool fReachable = IsReachable(addr);
1473 if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
1475 // Relay to a limited number of other nodes
1476 RelayAddress(addr, fReachable, connman);
1478 // Do not store addresses outside our network
1479 if (fReachable)
1480 vAddrOk.push_back(addr);
1482 connman.AddNewAddresses(vAddrOk, pfrom->addr, 2 * 60 * 60);
1483 if (vAddr.size() < 1000)
1484 pfrom->fGetAddr = false;
1485 if (pfrom->fOneShot)
1486 pfrom->fDisconnect = true;
1489 else if (strCommand == NetMsgType::SENDHEADERS)
1491 LOCK(cs_main);
1492 State(pfrom->GetId())->fPreferHeaders = true;
1495 else if (strCommand == NetMsgType::SENDCMPCT)
1497 bool fAnnounceUsingCMPCTBLOCK = false;
1498 uint64_t nCMPCTBLOCKVersion = 0;
1499 vRecv >> fAnnounceUsingCMPCTBLOCK >> nCMPCTBLOCKVersion;
1500 if (nCMPCTBLOCKVersion == 1 || ((pfrom->GetLocalServices() & NODE_WITNESS) && nCMPCTBLOCKVersion == 2)) {
1501 LOCK(cs_main);
1502 // fProvidesHeaderAndIDs is used to "lock in" version of compact blocks we send (fWantsCmpctWitness)
1503 if (!State(pfrom->GetId())->fProvidesHeaderAndIDs) {
1504 State(pfrom->GetId())->fProvidesHeaderAndIDs = true;
1505 State(pfrom->GetId())->fWantsCmpctWitness = nCMPCTBLOCKVersion == 2;
1507 if (State(pfrom->GetId())->fWantsCmpctWitness == (nCMPCTBLOCKVersion == 2)) // ignore later version announces
1508 State(pfrom->GetId())->fPreferHeaderAndIDs = fAnnounceUsingCMPCTBLOCK;
1509 if (!State(pfrom->GetId())->fSupportsDesiredCmpctVersion) {
1510 if (pfrom->GetLocalServices() & NODE_WITNESS)
1511 State(pfrom->GetId())->fSupportsDesiredCmpctVersion = (nCMPCTBLOCKVersion == 2);
1512 else
1513 State(pfrom->GetId())->fSupportsDesiredCmpctVersion = (nCMPCTBLOCKVersion == 1);
1519 else if (strCommand == NetMsgType::INV)
1521 std::vector<CInv> vInv;
1522 vRecv >> vInv;
1523 if (vInv.size() > MAX_INV_SZ)
1525 LOCK(cs_main);
1526 Misbehaving(pfrom->GetId(), 20);
1527 return error("message inv size() = %u", vInv.size());
1530 bool fBlocksOnly = !fRelayTxes;
1532 // Allow whitelisted peers to send data other than blocks in blocks only mode if whitelistrelay is true
1533 if (pfrom->fWhitelisted && GetBoolArg("-whitelistrelay", DEFAULT_WHITELISTRELAY))
1534 fBlocksOnly = false;
1536 LOCK(cs_main);
1538 uint32_t nFetchFlags = GetFetchFlags(pfrom);
1540 for (CInv &inv : vInv)
1542 if (interruptMsgProc)
1543 return true;
1545 bool fAlreadyHave = AlreadyHave(inv);
1546 LogPrint(BCLog::NET, "got inv: %s %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom->GetId());
1548 if (inv.type == MSG_TX) {
1549 inv.type |= nFetchFlags;
1552 if (inv.type == MSG_BLOCK) {
1553 UpdateBlockAvailability(pfrom->GetId(), inv.hash);
1554 if (!fAlreadyHave && !fImporting && !fReindex && !mapBlocksInFlight.count(inv.hash)) {
1555 // We used to request the full block here, but since headers-announcements are now the
1556 // primary method of announcement on the network, and since, in the case that a node
1557 // fell back to inv we probably have a reorg which we should get the headers for first,
1558 // we now only provide a getheaders response here. When we receive the headers, we will
1559 // then ask for the blocks we need.
1560 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), inv.hash));
1561 LogPrint(BCLog::NET, "getheaders (%d) %s to peer=%d\n", pindexBestHeader->nHeight, inv.hash.ToString(), pfrom->GetId());
1564 else
1566 pfrom->AddInventoryKnown(inv);
1567 if (fBlocksOnly) {
1568 LogPrint(BCLog::NET, "transaction (%s) inv sent in violation of protocol peer=%d\n", inv.hash.ToString(), pfrom->GetId());
1569 } else if (!fAlreadyHave && !fImporting && !fReindex && !IsInitialBlockDownload()) {
1570 pfrom->AskFor(inv);
1574 // Track requests for our stuff
1575 GetMainSignals().Inventory(inv.hash);
1580 else if (strCommand == NetMsgType::GETDATA)
1582 std::vector<CInv> vInv;
1583 vRecv >> vInv;
1584 if (vInv.size() > MAX_INV_SZ)
1586 LOCK(cs_main);
1587 Misbehaving(pfrom->GetId(), 20);
1588 return error("message getdata size() = %u", vInv.size());
1591 LogPrint(BCLog::NET, "received getdata (%u invsz) peer=%d\n", vInv.size(), pfrom->GetId());
1593 if (vInv.size() > 0) {
1594 LogPrint(BCLog::NET, "received getdata for: %s peer=%d\n", vInv[0].ToString(), pfrom->GetId());
1597 pfrom->vRecvGetData.insert(pfrom->vRecvGetData.end(), vInv.begin(), vInv.end());
1598 ProcessGetData(pfrom, chainparams.GetConsensus(), connman, interruptMsgProc);
1602 else if (strCommand == NetMsgType::GETBLOCKS)
1604 CBlockLocator locator;
1605 uint256 hashStop;
1606 vRecv >> locator >> hashStop;
1608 // We might have announced the currently-being-connected tip using a
1609 // compact block, which resulted in the peer sending a getblocks
1610 // request, which we would otherwise respond to without the new block.
1611 // To avoid this situation we simply verify that we are on our best
1612 // known chain now. This is super overkill, but we handle it better
1613 // for getheaders requests, and there are no known nodes which support
1614 // compact blocks but still use getblocks to request blocks.
1616 std::shared_ptr<const CBlock> a_recent_block;
1618 LOCK(cs_most_recent_block);
1619 a_recent_block = most_recent_block;
1621 CValidationState dummy;
1622 ActivateBestChain(dummy, Params(), a_recent_block);
1625 LOCK(cs_main);
1627 // Find the last block the caller has in the main chain
1628 const CBlockIndex* pindex = FindForkInGlobalIndex(chainActive, locator);
1630 // Send the rest of the chain
1631 if (pindex)
1632 pindex = chainActive.Next(pindex);
1633 int nLimit = 500;
1634 LogPrint(BCLog::NET, "getblocks %d to %s limit %d from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), nLimit, pfrom->GetId());
1635 for (; pindex; pindex = chainActive.Next(pindex))
1637 if (pindex->GetBlockHash() == hashStop)
1639 LogPrint(BCLog::NET, " getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
1640 break;
1642 // If pruning, don't inv blocks unless we have on disk and are likely to still have
1643 // for some reasonable time window (1 hour) that block relay might require.
1644 const int nPrunedBlocksLikelyToHave = MIN_BLOCKS_TO_KEEP - 3600 / chainparams.GetConsensus().nPowTargetSpacing;
1645 if (fPruneMode && (!(pindex->nStatus & BLOCK_HAVE_DATA) || pindex->nHeight <= chainActive.Tip()->nHeight - nPrunedBlocksLikelyToHave))
1647 LogPrint(BCLog::NET, " getblocks stopping, pruned or too old block at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
1648 break;
1650 pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
1651 if (--nLimit <= 0)
1653 // When this block is requested, we'll send an inv that'll
1654 // trigger the peer to getblocks the next batch of inventory.
1655 LogPrint(BCLog::NET, " getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
1656 pfrom->hashContinue = pindex->GetBlockHash();
1657 break;
1663 else if (strCommand == NetMsgType::GETBLOCKTXN)
1665 BlockTransactionsRequest req;
1666 vRecv >> req;
1668 std::shared_ptr<const CBlock> recent_block;
1670 LOCK(cs_most_recent_block);
1671 if (most_recent_block_hash == req.blockhash)
1672 recent_block = most_recent_block;
1673 // Unlock cs_most_recent_block to avoid cs_main lock inversion
1675 if (recent_block) {
1676 SendBlockTransactions(*recent_block, req, pfrom, connman);
1677 return true;
1680 LOCK(cs_main);
1682 BlockMap::iterator it = mapBlockIndex.find(req.blockhash);
1683 if (it == mapBlockIndex.end() || !(it->second->nStatus & BLOCK_HAVE_DATA)) {
1684 LogPrintf("Peer %d sent us a getblocktxn for a block we don't have", pfrom->GetId());
1685 return true;
1688 if (it->second->nHeight < chainActive.Height() - MAX_BLOCKTXN_DEPTH) {
1689 // If an older block is requested (should never happen in practice,
1690 // but can happen in tests) send a block response instead of a
1691 // blocktxn response. Sending a full block response instead of a
1692 // small blocktxn response is preferable in the case where a peer
1693 // might maliciously send lots of getblocktxn requests to trigger
1694 // expensive disk reads, because it will require the peer to
1695 // actually receive all the data read from disk over the network.
1696 LogPrint(BCLog::NET, "Peer %d sent us a getblocktxn for a block > %i deep", pfrom->GetId(), MAX_BLOCKTXN_DEPTH);
1697 CInv inv;
1698 inv.type = State(pfrom->GetId())->fWantsCmpctWitness ? MSG_WITNESS_BLOCK : MSG_BLOCK;
1699 inv.hash = req.blockhash;
1700 pfrom->vRecvGetData.push_back(inv);
1701 ProcessGetData(pfrom, chainparams.GetConsensus(), connman, interruptMsgProc);
1702 return true;
1705 CBlock block;
1706 bool ret = ReadBlockFromDisk(block, it->second, chainparams.GetConsensus());
1707 assert(ret);
1709 SendBlockTransactions(block, req, pfrom, connman);
1713 else if (strCommand == NetMsgType::GETHEADERS)
1715 CBlockLocator locator;
1716 uint256 hashStop;
1717 vRecv >> locator >> hashStop;
1719 LOCK(cs_main);
1720 if (IsInitialBlockDownload() && !pfrom->fWhitelisted) {
1721 LogPrint(BCLog::NET, "Ignoring getheaders from peer=%d because node is in initial block download\n", pfrom->GetId());
1722 return true;
1725 CNodeState *nodestate = State(pfrom->GetId());
1726 const CBlockIndex* pindex = NULL;
1727 if (locator.IsNull())
1729 // If locator is null, return the hashStop block
1730 BlockMap::iterator mi = mapBlockIndex.find(hashStop);
1731 if (mi == mapBlockIndex.end())
1732 return true;
1733 pindex = (*mi).second;
1735 else
1737 // Find the last block the caller has in the main chain
1738 pindex = FindForkInGlobalIndex(chainActive, locator);
1739 if (pindex)
1740 pindex = chainActive.Next(pindex);
1743 // we must use CBlocks, as CBlockHeaders won't include the 0x00 nTx count at the end
1744 std::vector<CBlock> vHeaders;
1745 int nLimit = MAX_HEADERS_RESULTS;
1746 LogPrint(BCLog::NET, "getheaders %d to %s from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), pfrom->GetId());
1747 for (; pindex; pindex = chainActive.Next(pindex))
1749 vHeaders.push_back(pindex->GetBlockHeader());
1750 if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
1751 break;
1753 // pindex can be NULL either if we sent chainActive.Tip() OR
1754 // if our peer has chainActive.Tip() (and thus we are sending an empty
1755 // headers message). In both cases it's safe to update
1756 // pindexBestHeaderSent to be our tip.
1758 // It is important that we simply reset the BestHeaderSent value here,
1759 // and not max(BestHeaderSent, newHeaderSent). We might have announced
1760 // the currently-being-connected tip using a compact block, which
1761 // resulted in the peer sending a headers request, which we respond to
1762 // without the new block. By resetting the BestHeaderSent, we ensure we
1763 // will re-announce the new block via headers (or compact blocks again)
1764 // in the SendMessages logic.
1765 nodestate->pindexBestHeaderSent = pindex ? pindex : chainActive.Tip();
1766 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::HEADERS, vHeaders));
1770 else if (strCommand == NetMsgType::TX)
1772 // Stop processing the transaction early if
1773 // We are in blocks only mode and peer is either not whitelisted or whitelistrelay is off
1774 if (!fRelayTxes && (!pfrom->fWhitelisted || !GetBoolArg("-whitelistrelay", DEFAULT_WHITELISTRELAY)))
1776 LogPrint(BCLog::NET, "transaction sent in violation of protocol peer=%d\n", pfrom->GetId());
1777 return true;
1780 std::deque<COutPoint> vWorkQueue;
1781 std::vector<uint256> vEraseQueue;
1782 CTransactionRef ptx;
1783 vRecv >> ptx;
1784 const CTransaction& tx = *ptx;
1786 CInv inv(MSG_TX, tx.GetHash());
1787 pfrom->AddInventoryKnown(inv);
1789 LOCK(cs_main);
1791 bool fMissingInputs = false;
1792 CValidationState state;
1794 pfrom->setAskFor.erase(inv.hash);
1795 mapAlreadyAskedFor.erase(inv.hash);
1797 std::list<CTransactionRef> lRemovedTxn;
1799 if (!AlreadyHave(inv) && AcceptToMemoryPool(mempool, state, ptx, true, &fMissingInputs, &lRemovedTxn)) {
1800 mempool.check(pcoinsTip);
1801 RelayTransaction(tx, connman);
1802 for (unsigned int i = 0; i < tx.vout.size(); i++) {
1803 vWorkQueue.emplace_back(inv.hash, i);
1806 pfrom->nLastTXTime = GetTime();
1808 LogPrint(BCLog::MEMPOOL, "AcceptToMemoryPool: peer=%d: accepted %s (poolsz %u txn, %u kB)\n",
1809 pfrom->GetId(),
1810 tx.GetHash().ToString(),
1811 mempool.size(), mempool.DynamicMemoryUsage() / 1000);
1813 // Recursively process any orphan transactions that depended on this one
1814 std::set<NodeId> setMisbehaving;
1815 while (!vWorkQueue.empty()) {
1816 auto itByPrev = mapOrphanTransactionsByPrev.find(vWorkQueue.front());
1817 vWorkQueue.pop_front();
1818 if (itByPrev == mapOrphanTransactionsByPrev.end())
1819 continue;
1820 for (auto mi = itByPrev->second.begin();
1821 mi != itByPrev->second.end();
1822 ++mi)
1824 const CTransactionRef& porphanTx = (*mi)->second.tx;
1825 const CTransaction& orphanTx = *porphanTx;
1826 const uint256& orphanHash = orphanTx.GetHash();
1827 NodeId fromPeer = (*mi)->second.fromPeer;
1828 bool fMissingInputs2 = false;
1829 // Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan
1830 // resolution (that is, feeding people an invalid transaction based on LegitTxX in order to get
1831 // anyone relaying LegitTxX banned)
1832 CValidationState stateDummy;
1835 if (setMisbehaving.count(fromPeer))
1836 continue;
1837 if (AcceptToMemoryPool(mempool, stateDummy, porphanTx, true, &fMissingInputs2, &lRemovedTxn)) {
1838 LogPrint(BCLog::MEMPOOL, " accepted orphan tx %s\n", orphanHash.ToString());
1839 RelayTransaction(orphanTx, connman);
1840 for (unsigned int i = 0; i < orphanTx.vout.size(); i++) {
1841 vWorkQueue.emplace_back(orphanHash, i);
1843 vEraseQueue.push_back(orphanHash);
1845 else if (!fMissingInputs2)
1847 int nDos = 0;
1848 if (stateDummy.IsInvalid(nDos) && nDos > 0)
1850 // Punish peer that gave us an invalid orphan tx
1851 Misbehaving(fromPeer, nDos);
1852 setMisbehaving.insert(fromPeer);
1853 LogPrint(BCLog::MEMPOOL, " invalid orphan tx %s\n", orphanHash.ToString());
1855 // Has inputs but not accepted to mempool
1856 // Probably non-standard or insufficient fee
1857 LogPrint(BCLog::MEMPOOL, " removed orphan tx %s\n", orphanHash.ToString());
1858 vEraseQueue.push_back(orphanHash);
1859 if (!orphanTx.HasWitness() && !stateDummy.CorruptionPossible()) {
1860 // Do not use rejection cache for witness transactions or
1861 // witness-stripped transactions, as they can have been malleated.
1862 // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
1863 assert(recentRejects);
1864 recentRejects->insert(orphanHash);
1867 mempool.check(pcoinsTip);
1871 for (uint256 hash : vEraseQueue)
1872 EraseOrphanTx(hash);
1874 else if (fMissingInputs)
1876 bool fRejectedParents = false; // It may be the case that the orphans parents have all been rejected
1877 for (const CTxIn& txin : tx.vin) {
1878 if (recentRejects->contains(txin.prevout.hash)) {
1879 fRejectedParents = true;
1880 break;
1883 if (!fRejectedParents) {
1884 uint32_t nFetchFlags = GetFetchFlags(pfrom);
1885 for (const CTxIn& txin : tx.vin) {
1886 CInv _inv(MSG_TX | nFetchFlags, txin.prevout.hash);
1887 pfrom->AddInventoryKnown(_inv);
1888 if (!AlreadyHave(_inv)) pfrom->AskFor(_inv);
1890 AddOrphanTx(ptx, pfrom->GetId());
1892 // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
1893 unsigned int nMaxOrphanTx = (unsigned int)std::max((int64_t)0, GetArg("-maxorphantx", DEFAULT_MAX_ORPHAN_TRANSACTIONS));
1894 unsigned int nEvicted = LimitOrphanTxSize(nMaxOrphanTx);
1895 if (nEvicted > 0) {
1896 LogPrint(BCLog::MEMPOOL, "mapOrphan overflow, removed %u tx\n", nEvicted);
1898 } else {
1899 LogPrint(BCLog::MEMPOOL, "not keeping orphan with rejected parents %s\n",tx.GetHash().ToString());
1900 // We will continue to reject this tx since it has rejected
1901 // parents so avoid re-requesting it from other peers.
1902 recentRejects->insert(tx.GetHash());
1904 } else {
1905 if (!tx.HasWitness() && !state.CorruptionPossible()) {
1906 // Do not use rejection cache for witness transactions or
1907 // witness-stripped transactions, as they can have been malleated.
1908 // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
1909 assert(recentRejects);
1910 recentRejects->insert(tx.GetHash());
1911 if (RecursiveDynamicUsage(*ptx) < 100000) {
1912 AddToCompactExtraTransactions(ptx);
1914 } else if (tx.HasWitness() && RecursiveDynamicUsage(*ptx) < 100000) {
1915 AddToCompactExtraTransactions(ptx);
1918 if (pfrom->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY)) {
1919 // Always relay transactions received from whitelisted peers, even
1920 // if they were already in the mempool or rejected from it due
1921 // to policy, allowing the node to function as a gateway for
1922 // nodes hidden behind it.
1924 // Never relay transactions that we would assign a non-zero DoS
1925 // score for, as we expect peers to do the same with us in that
1926 // case.
1927 int nDoS = 0;
1928 if (!state.IsInvalid(nDoS) || nDoS == 0) {
1929 LogPrintf("Force relaying tx %s from whitelisted peer=%d\n", tx.GetHash().ToString(), pfrom->GetId());
1930 RelayTransaction(tx, connman);
1931 } else {
1932 LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s)\n", tx.GetHash().ToString(), pfrom->GetId(), FormatStateMessage(state));
1937 for (const CTransactionRef& removedTx : lRemovedTxn)
1938 AddToCompactExtraTransactions(removedTx);
1940 int nDoS = 0;
1941 if (state.IsInvalid(nDoS))
1943 LogPrint(BCLog::MEMPOOLREJ, "%s from peer=%d was not accepted: %s\n", tx.GetHash().ToString(),
1944 pfrom->GetId(),
1945 FormatStateMessage(state));
1946 if (state.GetRejectCode() > 0 && state.GetRejectCode() < REJECT_INTERNAL) // Never send AcceptToMemoryPool's internal codes over P2P
1947 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::REJECT, strCommand, (unsigned char)state.GetRejectCode(),
1948 state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), inv.hash));
1949 if (nDoS > 0) {
1950 Misbehaving(pfrom->GetId(), nDoS);
1956 else if (strCommand == NetMsgType::CMPCTBLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
1958 CBlockHeaderAndShortTxIDs cmpctblock;
1959 vRecv >> cmpctblock;
1962 LOCK(cs_main);
1964 if (mapBlockIndex.find(cmpctblock.header.hashPrevBlock) == mapBlockIndex.end()) {
1965 // Doesn't connect (or is genesis), instead of DoSing in AcceptBlockHeader, request deeper headers
1966 if (!IsInitialBlockDownload())
1967 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), uint256()));
1968 return true;
1972 const CBlockIndex *pindex = NULL;
1973 CValidationState state;
1974 if (!ProcessNewBlockHeaders({cmpctblock.header}, state, chainparams, &pindex)) {
1975 int nDoS;
1976 if (state.IsInvalid(nDoS)) {
1977 if (nDoS > 0) {
1978 LOCK(cs_main);
1979 Misbehaving(pfrom->GetId(), nDoS);
1981 LogPrintf("Peer %d sent us invalid header via cmpctblock\n", pfrom->GetId());
1982 return true;
1986 // When we succeed in decoding a block's txids from a cmpctblock
1987 // message we typically jump to the BLOCKTXN handling code, with a
1988 // dummy (empty) BLOCKTXN message, to re-use the logic there in
1989 // completing processing of the putative block (without cs_main).
1990 bool fProcessBLOCKTXN = false;
1991 CDataStream blockTxnMsg(SER_NETWORK, PROTOCOL_VERSION);
1993 // If we end up treating this as a plain headers message, call that as well
1994 // without cs_main.
1995 bool fRevertToHeaderProcessing = false;
1996 CDataStream vHeadersMsg(SER_NETWORK, PROTOCOL_VERSION);
1998 // Keep a CBlock for "optimistic" compactblock reconstructions (see
1999 // below)
2000 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2001 bool fBlockReconstructed = false;
2004 LOCK(cs_main);
2005 // If AcceptBlockHeader returned true, it set pindex
2006 assert(pindex);
2007 UpdateBlockAvailability(pfrom->GetId(), pindex->GetBlockHash());
2009 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator blockInFlightIt = mapBlocksInFlight.find(pindex->GetBlockHash());
2010 bool fAlreadyInFlight = blockInFlightIt != mapBlocksInFlight.end();
2012 if (pindex->nStatus & BLOCK_HAVE_DATA) // Nothing to do here
2013 return true;
2015 if (pindex->nChainWork <= chainActive.Tip()->nChainWork || // We know something better
2016 pindex->nTx != 0) { // We had this block at some point, but pruned it
2017 if (fAlreadyInFlight) {
2018 // We requested this block for some reason, but our mempool will probably be useless
2019 // so we just grab the block via normal getdata
2020 std::vector<CInv> vInv(1);
2021 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom), cmpctblock.header.GetHash());
2022 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2024 return true;
2027 // If we're not close to tip yet, give up and let parallel block fetch work its magic
2028 if (!fAlreadyInFlight && !CanDirectFetch(chainparams.GetConsensus()))
2029 return true;
2031 CNodeState *nodestate = State(pfrom->GetId());
2033 if (IsWitnessEnabled(pindex->pprev, chainparams.GetConsensus()) && !nodestate->fSupportsDesiredCmpctVersion) {
2034 // Don't bother trying to process compact blocks from v1 peers
2035 // after segwit activates.
2036 return true;
2039 // We want to be a bit conservative just to be extra careful about DoS
2040 // possibilities in compact block processing...
2041 if (pindex->nHeight <= chainActive.Height() + 2) {
2042 if ((!fAlreadyInFlight && nodestate->nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) ||
2043 (fAlreadyInFlight && blockInFlightIt->second.first == pfrom->GetId())) {
2044 std::list<QueuedBlock>::iterator* queuedBlockIt = NULL;
2045 if (!MarkBlockAsInFlight(pfrom->GetId(), pindex->GetBlockHash(), pindex, &queuedBlockIt)) {
2046 if (!(*queuedBlockIt)->partialBlock)
2047 (*queuedBlockIt)->partialBlock.reset(new PartiallyDownloadedBlock(&mempool));
2048 else {
2049 // The block was already in flight using compact blocks from the same peer
2050 LogPrint(BCLog::NET, "Peer sent us compact block we were already syncing!\n");
2051 return true;
2055 PartiallyDownloadedBlock& partialBlock = *(*queuedBlockIt)->partialBlock;
2056 ReadStatus status = partialBlock.InitData(cmpctblock, vExtraTxnForCompact);
2057 if (status == READ_STATUS_INVALID) {
2058 MarkBlockAsReceived(pindex->GetBlockHash()); // Reset in-flight state in case of whitelist
2059 Misbehaving(pfrom->GetId(), 100);
2060 LogPrintf("Peer %d sent us invalid compact block\n", pfrom->GetId());
2061 return true;
2062 } else if (status == READ_STATUS_FAILED) {
2063 // Duplicate txindexes, the block is now in-flight, so just request it
2064 std::vector<CInv> vInv(1);
2065 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom), cmpctblock.header.GetHash());
2066 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2067 return true;
2070 BlockTransactionsRequest req;
2071 for (size_t i = 0; i < cmpctblock.BlockTxCount(); i++) {
2072 if (!partialBlock.IsTxAvailable(i))
2073 req.indexes.push_back(i);
2075 if (req.indexes.empty()) {
2076 // Dirty hack to jump to BLOCKTXN code (TODO: move message handling into their own functions)
2077 BlockTransactions txn;
2078 txn.blockhash = cmpctblock.header.GetHash();
2079 blockTxnMsg << txn;
2080 fProcessBLOCKTXN = true;
2081 } else {
2082 req.blockhash = pindex->GetBlockHash();
2083 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETBLOCKTXN, req));
2085 } else {
2086 // This block is either already in flight from a different
2087 // peer, or this peer has too many blocks outstanding to
2088 // download from.
2089 // Optimistically try to reconstruct anyway since we might be
2090 // able to without any round trips.
2091 PartiallyDownloadedBlock tempBlock(&mempool);
2092 ReadStatus status = tempBlock.InitData(cmpctblock, vExtraTxnForCompact);
2093 if (status != READ_STATUS_OK) {
2094 // TODO: don't ignore failures
2095 return true;
2097 std::vector<CTransactionRef> dummy;
2098 status = tempBlock.FillBlock(*pblock, dummy);
2099 if (status == READ_STATUS_OK) {
2100 fBlockReconstructed = true;
2103 } else {
2104 if (fAlreadyInFlight) {
2105 // We requested this block, but its far into the future, so our
2106 // mempool will probably be useless - request the block normally
2107 std::vector<CInv> vInv(1);
2108 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom), cmpctblock.header.GetHash());
2109 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2110 return true;
2111 } else {
2112 // If this was an announce-cmpctblock, we want the same treatment as a header message
2113 // Dirty hack to process as if it were just a headers message (TODO: move message handling into their own functions)
2114 std::vector<CBlock> headers;
2115 headers.push_back(cmpctblock.header);
2116 vHeadersMsg << headers;
2117 fRevertToHeaderProcessing = true;
2120 } // cs_main
2122 if (fProcessBLOCKTXN)
2123 return ProcessMessage(pfrom, NetMsgType::BLOCKTXN, blockTxnMsg, nTimeReceived, chainparams, connman, interruptMsgProc);
2125 if (fRevertToHeaderProcessing)
2126 return ProcessMessage(pfrom, NetMsgType::HEADERS, vHeadersMsg, nTimeReceived, chainparams, connman, interruptMsgProc);
2128 if (fBlockReconstructed) {
2129 // If we got here, we were able to optimistically reconstruct a
2130 // block that is in flight from some other peer.
2132 LOCK(cs_main);
2133 mapBlockSource.emplace(pblock->GetHash(), std::make_pair(pfrom->GetId(), false));
2135 bool fNewBlock = false;
2136 ProcessNewBlock(chainparams, pblock, true, &fNewBlock);
2137 if (fNewBlock)
2138 pfrom->nLastBlockTime = GetTime();
2140 LOCK(cs_main); // hold cs_main for CBlockIndex::IsValid()
2141 if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS)) {
2142 // Clear download state for this block, which is in
2143 // process from some other peer. We do this after calling
2144 // ProcessNewBlock so that a malleated cmpctblock announcement
2145 // can't be used to interfere with block relay.
2146 MarkBlockAsReceived(pblock->GetHash());
2152 else if (strCommand == NetMsgType::BLOCKTXN && !fImporting && !fReindex) // Ignore blocks received while importing
2154 BlockTransactions resp;
2155 vRecv >> resp;
2157 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2158 bool fBlockRead = false;
2160 LOCK(cs_main);
2162 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator it = mapBlocksInFlight.find(resp.blockhash);
2163 if (it == mapBlocksInFlight.end() || !it->second.second->partialBlock ||
2164 it->second.first != pfrom->GetId()) {
2165 LogPrint(BCLog::NET, "Peer %d sent us block transactions for block we weren't expecting\n", pfrom->GetId());
2166 return true;
2169 PartiallyDownloadedBlock& partialBlock = *it->second.second->partialBlock;
2170 ReadStatus status = partialBlock.FillBlock(*pblock, resp.txn);
2171 if (status == READ_STATUS_INVALID) {
2172 MarkBlockAsReceived(resp.blockhash); // Reset in-flight state in case of whitelist
2173 Misbehaving(pfrom->GetId(), 100);
2174 LogPrintf("Peer %d sent us invalid compact block/non-matching block transactions\n", pfrom->GetId());
2175 return true;
2176 } else if (status == READ_STATUS_FAILED) {
2177 // Might have collided, fall back to getdata now :(
2178 std::vector<CInv> invs;
2179 invs.push_back(CInv(MSG_BLOCK | GetFetchFlags(pfrom), resp.blockhash));
2180 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, invs));
2181 } else {
2182 // Block is either okay, or possibly we received
2183 // READ_STATUS_CHECKBLOCK_FAILED.
2184 // Note that CheckBlock can only fail for one of a few reasons:
2185 // 1. bad-proof-of-work (impossible here, because we've already
2186 // accepted the header)
2187 // 2. merkleroot doesn't match the transactions given (already
2188 // caught in FillBlock with READ_STATUS_FAILED, so
2189 // impossible here)
2190 // 3. the block is otherwise invalid (eg invalid coinbase,
2191 // block is too big, too many legacy sigops, etc).
2192 // So if CheckBlock failed, #3 is the only possibility.
2193 // Under BIP 152, we don't DoS-ban unless proof of work is
2194 // invalid (we don't require all the stateless checks to have
2195 // been run). This is handled below, so just treat this as
2196 // though the block was successfully read, and rely on the
2197 // handling in ProcessNewBlock to ensure the block index is
2198 // updated, reject messages go out, etc.
2199 MarkBlockAsReceived(resp.blockhash); // it is now an empty pointer
2200 fBlockRead = true;
2201 // mapBlockSource is only used for sending reject messages and DoS scores,
2202 // so the race between here and cs_main in ProcessNewBlock is fine.
2203 // BIP 152 permits peers to relay compact blocks after validating
2204 // the header only; we should not punish peers if the block turns
2205 // out to be invalid.
2206 mapBlockSource.emplace(resp.blockhash, std::make_pair(pfrom->GetId(), false));
2208 } // Don't hold cs_main when we call into ProcessNewBlock
2209 if (fBlockRead) {
2210 bool fNewBlock = false;
2211 // Since we requested this block (it was in mapBlocksInFlight), force it to be processed,
2212 // even if it would not be a candidate for new tip (missing previous block, chain not long enough, etc)
2213 ProcessNewBlock(chainparams, pblock, true, &fNewBlock);
2214 if (fNewBlock)
2215 pfrom->nLastBlockTime = GetTime();
2220 else if (strCommand == NetMsgType::HEADERS && !fImporting && !fReindex) // Ignore headers received while importing
2222 std::vector<CBlockHeader> headers;
2224 // Bypass the normal CBlock deserialization, as we don't want to risk deserializing 2000 full blocks.
2225 unsigned int nCount = ReadCompactSize(vRecv);
2226 if (nCount > MAX_HEADERS_RESULTS) {
2227 LOCK(cs_main);
2228 Misbehaving(pfrom->GetId(), 20);
2229 return error("headers message size = %u", nCount);
2231 headers.resize(nCount);
2232 for (unsigned int n = 0; n < nCount; n++) {
2233 vRecv >> headers[n];
2234 ReadCompactSize(vRecv); // ignore tx count; assume it is 0.
2237 if (nCount == 0) {
2238 // Nothing interesting. Stop asking this peers for more headers.
2239 return true;
2242 const CBlockIndex *pindexLast = NULL;
2244 LOCK(cs_main);
2245 CNodeState *nodestate = State(pfrom->GetId());
2247 // If this looks like it could be a block announcement (nCount <
2248 // MAX_BLOCKS_TO_ANNOUNCE), use special logic for handling headers that
2249 // don't connect:
2250 // - Send a getheaders message in response to try to connect the chain.
2251 // - The peer can send up to MAX_UNCONNECTING_HEADERS in a row that
2252 // don't connect before giving DoS points
2253 // - Once a headers message is received that is valid and does connect,
2254 // nUnconnectingHeaders gets reset back to 0.
2255 if (mapBlockIndex.find(headers[0].hashPrevBlock) == mapBlockIndex.end() && nCount < MAX_BLOCKS_TO_ANNOUNCE) {
2256 nodestate->nUnconnectingHeaders++;
2257 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), uint256()));
2258 LogPrint(BCLog::NET, "received header %s: missing prev block %s, sending getheaders (%d) to end (peer=%d, nUnconnectingHeaders=%d)\n",
2259 headers[0].GetHash().ToString(),
2260 headers[0].hashPrevBlock.ToString(),
2261 pindexBestHeader->nHeight,
2262 pfrom->GetId(), nodestate->nUnconnectingHeaders);
2263 // Set hashLastUnknownBlock for this peer, so that if we
2264 // eventually get the headers - even from a different peer -
2265 // we can use this peer to download.
2266 UpdateBlockAvailability(pfrom->GetId(), headers.back().GetHash());
2268 if (nodestate->nUnconnectingHeaders % MAX_UNCONNECTING_HEADERS == 0) {
2269 Misbehaving(pfrom->GetId(), 20);
2271 return true;
2274 uint256 hashLastBlock;
2275 for (const CBlockHeader& header : headers) {
2276 if (!hashLastBlock.IsNull() && header.hashPrevBlock != hashLastBlock) {
2277 Misbehaving(pfrom->GetId(), 20);
2278 return error("non-continuous headers sequence");
2280 hashLastBlock = header.GetHash();
2284 CValidationState state;
2285 if (!ProcessNewBlockHeaders(headers, state, chainparams, &pindexLast)) {
2286 int nDoS;
2287 if (state.IsInvalid(nDoS)) {
2288 if (nDoS > 0) {
2289 LOCK(cs_main);
2290 Misbehaving(pfrom->GetId(), nDoS);
2292 return error("invalid header received");
2297 LOCK(cs_main);
2298 CNodeState *nodestate = State(pfrom->GetId());
2299 if (nodestate->nUnconnectingHeaders > 0) {
2300 LogPrint(BCLog::NET, "peer=%d: resetting nUnconnectingHeaders (%d -> 0)\n", pfrom->GetId(), nodestate->nUnconnectingHeaders);
2302 nodestate->nUnconnectingHeaders = 0;
2304 assert(pindexLast);
2305 UpdateBlockAvailability(pfrom->GetId(), pindexLast->GetBlockHash());
2307 if (nCount == MAX_HEADERS_RESULTS) {
2308 // Headers message had its maximum size; the peer may have more headers.
2309 // TODO: optimize: if pindexLast is an ancestor of chainActive.Tip or pindexBestHeader, continue
2310 // from there instead.
2311 LogPrint(BCLog::NET, "more getheaders (%d) to end to peer=%d (startheight:%d)\n", pindexLast->nHeight, pfrom->GetId(), pfrom->nStartingHeight);
2312 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexLast), uint256()));
2315 bool fCanDirectFetch = CanDirectFetch(chainparams.GetConsensus());
2316 // If this set of headers is valid and ends in a block with at least as
2317 // much work as our tip, download as much as possible.
2318 if (fCanDirectFetch && pindexLast->IsValid(BLOCK_VALID_TREE) && chainActive.Tip()->nChainWork <= pindexLast->nChainWork) {
2319 std::vector<const CBlockIndex*> vToFetch;
2320 const CBlockIndex *pindexWalk = pindexLast;
2321 // Calculate all the blocks we'd need to switch to pindexLast, up to a limit.
2322 while (pindexWalk && !chainActive.Contains(pindexWalk) && vToFetch.size() <= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
2323 if (!(pindexWalk->nStatus & BLOCK_HAVE_DATA) &&
2324 !mapBlocksInFlight.count(pindexWalk->GetBlockHash()) &&
2325 (!IsWitnessEnabled(pindexWalk->pprev, chainparams.GetConsensus()) || State(pfrom->GetId())->fHaveWitness)) {
2326 // We don't have this block, and it's not yet in flight.
2327 vToFetch.push_back(pindexWalk);
2329 pindexWalk = pindexWalk->pprev;
2331 // If pindexWalk still isn't on our main chain, we're looking at a
2332 // very large reorg at a time we think we're close to caught up to
2333 // the main chain -- this shouldn't really happen. Bail out on the
2334 // direct fetch and rely on parallel download instead.
2335 if (!chainActive.Contains(pindexWalk)) {
2336 LogPrint(BCLog::NET, "Large reorg, won't direct fetch to %s (%d)\n",
2337 pindexLast->GetBlockHash().ToString(),
2338 pindexLast->nHeight);
2339 } else {
2340 std::vector<CInv> vGetData;
2341 // Download as much as possible, from earliest to latest.
2342 for (const CBlockIndex *pindex : reverse_iterate(vToFetch)) {
2343 if (nodestate->nBlocksInFlight >= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
2344 // Can't download any more from this peer
2345 break;
2347 uint32_t nFetchFlags = GetFetchFlags(pfrom);
2348 vGetData.push_back(CInv(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash()));
2349 MarkBlockAsInFlight(pfrom->GetId(), pindex->GetBlockHash(), pindex);
2350 LogPrint(BCLog::NET, "Requesting block %s from peer=%d\n",
2351 pindex->GetBlockHash().ToString(), pfrom->GetId());
2353 if (vGetData.size() > 1) {
2354 LogPrint(BCLog::NET, "Downloading blocks toward %s (%d) via headers direct fetch\n",
2355 pindexLast->GetBlockHash().ToString(), pindexLast->nHeight);
2357 if (vGetData.size() > 0) {
2358 if (nodestate->fSupportsDesiredCmpctVersion && vGetData.size() == 1 && mapBlocksInFlight.size() == 1 && pindexLast->pprev->IsValid(BLOCK_VALID_CHAIN)) {
2359 // In any case, we want to download using a compact block, not a regular one
2360 vGetData[0] = CInv(MSG_CMPCT_BLOCK, vGetData[0].hash);
2362 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vGetData));
2369 else if (strCommand == NetMsgType::BLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
2371 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2372 vRecv >> *pblock;
2374 LogPrint(BCLog::NET, "received block %s peer=%d\n", pblock->GetHash().ToString(), pfrom->GetId());
2376 // Process all blocks from whitelisted peers, even if not requested,
2377 // unless we're still syncing with the network.
2378 // Such an unrequested block may still be processed, subject to the
2379 // conditions in AcceptBlock().
2380 bool forceProcessing = pfrom->fWhitelisted && !IsInitialBlockDownload();
2381 const uint256 hash(pblock->GetHash());
2383 LOCK(cs_main);
2384 // Also always process if we requested the block explicitly, as we may
2385 // need it even though it is not a candidate for a new best tip.
2386 forceProcessing |= MarkBlockAsReceived(hash);
2387 // mapBlockSource is only used for sending reject messages and DoS scores,
2388 // so the race between here and cs_main in ProcessNewBlock is fine.
2389 mapBlockSource.emplace(hash, std::make_pair(pfrom->GetId(), true));
2391 bool fNewBlock = false;
2392 ProcessNewBlock(chainparams, pblock, forceProcessing, &fNewBlock);
2393 if (fNewBlock)
2394 pfrom->nLastBlockTime = GetTime();
2398 else if (strCommand == NetMsgType::GETADDR)
2400 // This asymmetric behavior for inbound and outbound connections was introduced
2401 // to prevent a fingerprinting attack: an attacker can send specific fake addresses
2402 // to users' AddrMan and later request them by sending getaddr messages.
2403 // Making nodes which are behind NAT and can only make outgoing connections ignore
2404 // the getaddr message mitigates the attack.
2405 if (!pfrom->fInbound) {
2406 LogPrint(BCLog::NET, "Ignoring \"getaddr\" from outbound connection. peer=%d\n", pfrom->GetId());
2407 return true;
2410 // Only send one GetAddr response per connection to reduce resource waste
2411 // and discourage addr stamping of INV announcements.
2412 if (pfrom->fSentAddr) {
2413 LogPrint(BCLog::NET, "Ignoring repeated \"getaddr\". peer=%d\n", pfrom->GetId());
2414 return true;
2416 pfrom->fSentAddr = true;
2418 pfrom->vAddrToSend.clear();
2419 std::vector<CAddress> vAddr = connman.GetAddresses();
2420 FastRandomContext insecure_rand;
2421 for (const CAddress &addr : vAddr)
2422 pfrom->PushAddress(addr, insecure_rand);
2426 else if (strCommand == NetMsgType::MEMPOOL)
2428 if (!(pfrom->GetLocalServices() & NODE_BLOOM) && !pfrom->fWhitelisted)
2430 LogPrint(BCLog::NET, "mempool request with bloom filters disabled, disconnect peer=%d\n", pfrom->GetId());
2431 pfrom->fDisconnect = true;
2432 return true;
2435 if (connman.OutboundTargetReached(false) && !pfrom->fWhitelisted)
2437 LogPrint(BCLog::NET, "mempool request with bandwidth limit reached, disconnect peer=%d\n", pfrom->GetId());
2438 pfrom->fDisconnect = true;
2439 return true;
2442 LOCK(pfrom->cs_inventory);
2443 pfrom->fSendMempool = true;
2447 else if (strCommand == NetMsgType::PING)
2449 if (pfrom->nVersion > BIP0031_VERSION)
2451 uint64_t nonce = 0;
2452 vRecv >> nonce;
2453 // Echo the message back with the nonce. This allows for two useful features:
2455 // 1) A remote node can quickly check if the connection is operational
2456 // 2) Remote nodes can measure the latency of the network thread. If this node
2457 // is overloaded it won't respond to pings quickly and the remote node can
2458 // avoid sending us more work, like chain download requests.
2460 // The nonce stops the remote getting confused between different pings: without
2461 // it, if the remote node sends a ping once per second and this node takes 5
2462 // seconds to respond to each, the 5th ping the remote sends would appear to
2463 // return very quickly.
2464 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::PONG, nonce));
2469 else if (strCommand == NetMsgType::PONG)
2471 int64_t pingUsecEnd = nTimeReceived;
2472 uint64_t nonce = 0;
2473 size_t nAvail = vRecv.in_avail();
2474 bool bPingFinished = false;
2475 std::string sProblem;
2477 if (nAvail >= sizeof(nonce)) {
2478 vRecv >> nonce;
2480 // Only process pong message if there is an outstanding ping (old ping without nonce should never pong)
2481 if (pfrom->nPingNonceSent != 0) {
2482 if (nonce == pfrom->nPingNonceSent) {
2483 // Matching pong received, this ping is no longer outstanding
2484 bPingFinished = true;
2485 int64_t pingUsecTime = pingUsecEnd - pfrom->nPingUsecStart;
2486 if (pingUsecTime > 0) {
2487 // Successful ping time measurement, replace previous
2488 pfrom->nPingUsecTime = pingUsecTime;
2489 pfrom->nMinPingUsecTime = std::min(pfrom->nMinPingUsecTime.load(), pingUsecTime);
2490 } else {
2491 // This should never happen
2492 sProblem = "Timing mishap";
2494 } else {
2495 // Nonce mismatches are normal when pings are overlapping
2496 sProblem = "Nonce mismatch";
2497 if (nonce == 0) {
2498 // This is most likely a bug in another implementation somewhere; cancel this ping
2499 bPingFinished = true;
2500 sProblem = "Nonce zero";
2503 } else {
2504 sProblem = "Unsolicited pong without ping";
2506 } else {
2507 // This is most likely a bug in another implementation somewhere; cancel this ping
2508 bPingFinished = true;
2509 sProblem = "Short payload";
2512 if (!(sProblem.empty())) {
2513 LogPrint(BCLog::NET, "pong peer=%d: %s, %x expected, %x received, %u bytes\n",
2514 pfrom->GetId(),
2515 sProblem,
2516 pfrom->nPingNonceSent,
2517 nonce,
2518 nAvail);
2520 if (bPingFinished) {
2521 pfrom->nPingNonceSent = 0;
2526 else if (strCommand == NetMsgType::FILTERLOAD)
2528 CBloomFilter filter;
2529 vRecv >> filter;
2531 if (!filter.IsWithinSizeConstraints())
2533 // There is no excuse for sending a too-large filter
2534 LOCK(cs_main);
2535 Misbehaving(pfrom->GetId(), 100);
2537 else
2539 LOCK(pfrom->cs_filter);
2540 delete pfrom->pfilter;
2541 pfrom->pfilter = new CBloomFilter(filter);
2542 pfrom->pfilter->UpdateEmptyFull();
2543 pfrom->fRelayTxes = true;
2548 else if (strCommand == NetMsgType::FILTERADD)
2550 std::vector<unsigned char> vData;
2551 vRecv >> vData;
2553 // Nodes must NEVER send a data item > 520 bytes (the max size for a script data object,
2554 // and thus, the maximum size any matched object can have) in a filteradd message
2555 bool bad = false;
2556 if (vData.size() > MAX_SCRIPT_ELEMENT_SIZE) {
2557 bad = true;
2558 } else {
2559 LOCK(pfrom->cs_filter);
2560 if (pfrom->pfilter) {
2561 pfrom->pfilter->insert(vData);
2562 } else {
2563 bad = true;
2566 if (bad) {
2567 LOCK(cs_main);
2568 Misbehaving(pfrom->GetId(), 100);
2573 else if (strCommand == NetMsgType::FILTERCLEAR)
2575 LOCK(pfrom->cs_filter);
2576 if (pfrom->GetLocalServices() & NODE_BLOOM) {
2577 delete pfrom->pfilter;
2578 pfrom->pfilter = new CBloomFilter();
2580 pfrom->fRelayTxes = true;
2583 else if (strCommand == NetMsgType::FEEFILTER) {
2584 CAmount newFeeFilter = 0;
2585 vRecv >> newFeeFilter;
2586 if (MoneyRange(newFeeFilter)) {
2588 LOCK(pfrom->cs_feeFilter);
2589 pfrom->minFeeFilter = newFeeFilter;
2591 LogPrint(BCLog::NET, "received: feefilter of %s from peer=%d\n", CFeeRate(newFeeFilter).ToString(), pfrom->GetId());
2595 else if (strCommand == NetMsgType::NOTFOUND) {
2596 // We do not care about the NOTFOUND message, but logging an Unknown Command
2597 // message would be undesirable as we transmit it ourselves.
2600 else {
2601 // Ignore unknown commands for extensibility
2602 LogPrint(BCLog::NET, "Unknown command \"%s\" from peer=%d\n", SanitizeString(strCommand), pfrom->GetId());
2607 return true;
2610 static bool SendRejectsAndCheckIfBanned(CNode* pnode, CConnman& connman)
2612 AssertLockHeld(cs_main);
2613 CNodeState &state = *State(pnode->GetId());
2615 for (const CBlockReject& reject : state.rejects) {
2616 connman.PushMessage(pnode, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, (std::string)NetMsgType::BLOCK, reject.chRejectCode, reject.strRejectReason, reject.hashBlock));
2618 state.rejects.clear();
2620 if (state.fShouldBan) {
2621 state.fShouldBan = false;
2622 if (pnode->fWhitelisted)
2623 LogPrintf("Warning: not punishing whitelisted peer %s!\n", pnode->addr.ToString());
2624 else if (pnode->fAddnode)
2625 LogPrintf("Warning: not punishing addnoded peer %s!\n", pnode->addr.ToString());
2626 else {
2627 pnode->fDisconnect = true;
2628 if (pnode->addr.IsLocal())
2629 LogPrintf("Warning: not banning local peer %s!\n", pnode->addr.ToString());
2630 else
2632 connman.Ban(pnode->addr, BanReasonNodeMisbehaving);
2635 return true;
2637 return false;
2640 bool ProcessMessages(CNode* pfrom, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
2642 const CChainParams& chainparams = Params();
2644 // Message format
2645 // (4) message start
2646 // (12) command
2647 // (4) size
2648 // (4) checksum
2649 // (x) data
2651 bool fMoreWork = false;
2653 if (!pfrom->vRecvGetData.empty())
2654 ProcessGetData(pfrom, chainparams.GetConsensus(), connman, interruptMsgProc);
2656 if (pfrom->fDisconnect)
2657 return false;
2659 // this maintains the order of responses
2660 if (!pfrom->vRecvGetData.empty()) return true;
2662 // Don't bother if send buffer is too full to respond anyway
2663 if (pfrom->fPauseSend)
2664 return false;
2666 std::list<CNetMessage> msgs;
2668 LOCK(pfrom->cs_vProcessMsg);
2669 if (pfrom->vProcessMsg.empty())
2670 return false;
2671 // Just take one message
2672 msgs.splice(msgs.begin(), pfrom->vProcessMsg, pfrom->vProcessMsg.begin());
2673 pfrom->nProcessQueueSize -= msgs.front().vRecv.size() + CMessageHeader::HEADER_SIZE;
2674 pfrom->fPauseRecv = pfrom->nProcessQueueSize > connman.GetReceiveFloodSize();
2675 fMoreWork = !pfrom->vProcessMsg.empty();
2677 CNetMessage& msg(msgs.front());
2679 msg.SetVersion(pfrom->GetRecvVersion());
2680 // Scan for message start
2681 if (memcmp(msg.hdr.pchMessageStart, chainparams.MessageStart(), CMessageHeader::MESSAGE_START_SIZE) != 0) {
2682 LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg.hdr.GetCommand()), pfrom->GetId());
2683 pfrom->fDisconnect = true;
2684 return false;
2687 // Read header
2688 CMessageHeader& hdr = msg.hdr;
2689 if (!hdr.IsValid(chainparams.MessageStart()))
2691 LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", SanitizeString(hdr.GetCommand()), pfrom->GetId());
2692 return fMoreWork;
2694 std::string strCommand = hdr.GetCommand();
2696 // Message size
2697 unsigned int nMessageSize = hdr.nMessageSize;
2699 // Checksum
2700 CDataStream& vRecv = msg.vRecv;
2701 const uint256& hash = msg.GetMessageHash();
2702 if (memcmp(hash.begin(), hdr.pchChecksum, CMessageHeader::CHECKSUM_SIZE) != 0)
2704 LogPrintf("%s(%s, %u bytes): CHECKSUM ERROR expected %s was %s\n", __func__,
2705 SanitizeString(strCommand), nMessageSize,
2706 HexStr(hash.begin(), hash.begin()+CMessageHeader::CHECKSUM_SIZE),
2707 HexStr(hdr.pchChecksum, hdr.pchChecksum+CMessageHeader::CHECKSUM_SIZE));
2708 return fMoreWork;
2711 // Process message
2712 bool fRet = false;
2715 fRet = ProcessMessage(pfrom, strCommand, vRecv, msg.nTime, chainparams, connman, interruptMsgProc);
2716 if (interruptMsgProc)
2717 return false;
2718 if (!pfrom->vRecvGetData.empty())
2719 fMoreWork = true;
2721 catch (const std::ios_base::failure& e)
2723 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_MALFORMED, std::string("error parsing message")));
2724 if (strstr(e.what(), "end of data"))
2726 // Allow exceptions from under-length message on vRecv
2727 LogPrintf("%s(%s, %u bytes): Exception '%s' caught, normally caused by a message being shorter than its stated length\n", __func__, SanitizeString(strCommand), nMessageSize, e.what());
2729 else if (strstr(e.what(), "size too large"))
2731 // Allow exceptions from over-long size
2732 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__, SanitizeString(strCommand), nMessageSize, e.what());
2734 else if (strstr(e.what(), "non-canonical ReadCompactSize()"))
2736 // Allow exceptions from non-canonical encoding
2737 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__, SanitizeString(strCommand), nMessageSize, e.what());
2739 else
2741 PrintExceptionContinue(&e, "ProcessMessages()");
2744 catch (const std::exception& e) {
2745 PrintExceptionContinue(&e, "ProcessMessages()");
2746 } catch (...) {
2747 PrintExceptionContinue(NULL, "ProcessMessages()");
2750 if (!fRet) {
2751 LogPrintf("%s(%s, %u bytes) FAILED peer=%d\n", __func__, SanitizeString(strCommand), nMessageSize, pfrom->GetId());
2754 LOCK(cs_main);
2755 SendRejectsAndCheckIfBanned(pfrom, connman);
2757 return fMoreWork;
2760 class CompareInvMempoolOrder
2762 CTxMemPool *mp;
2763 public:
2764 CompareInvMempoolOrder(CTxMemPool *_mempool)
2766 mp = _mempool;
2769 bool operator()(std::set<uint256>::iterator a, std::set<uint256>::iterator b)
2771 /* As std::make_heap produces a max-heap, we want the entries with the
2772 * fewest ancestors/highest fee to sort later. */
2773 return mp->CompareDepthAndScore(*b, *a);
2777 bool SendMessages(CNode* pto, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
2779 const Consensus::Params& consensusParams = Params().GetConsensus();
2781 // Don't send anything until the version handshake is complete
2782 if (!pto->fSuccessfullyConnected || pto->fDisconnect)
2783 return true;
2785 // If we get here, the outgoing message serialization version is set and can't change.
2786 const CNetMsgMaker msgMaker(pto->GetSendVersion());
2789 // Message: ping
2791 bool pingSend = false;
2792 if (pto->fPingQueued) {
2793 // RPC ping request by user
2794 pingSend = true;
2796 if (pto->nPingNonceSent == 0 && pto->nPingUsecStart + PING_INTERVAL * 1000000 < GetTimeMicros()) {
2797 // Ping automatically sent as a latency probe & keepalive.
2798 pingSend = true;
2800 if (pingSend) {
2801 uint64_t nonce = 0;
2802 while (nonce == 0) {
2803 GetRandBytes((unsigned char*)&nonce, sizeof(nonce));
2805 pto->fPingQueued = false;
2806 pto->nPingUsecStart = GetTimeMicros();
2807 if (pto->nVersion > BIP0031_VERSION) {
2808 pto->nPingNonceSent = nonce;
2809 connman.PushMessage(pto, msgMaker.Make(NetMsgType::PING, nonce));
2810 } else {
2811 // Peer is too old to support ping command with nonce, pong will never arrive.
2812 pto->nPingNonceSent = 0;
2813 connman.PushMessage(pto, msgMaker.Make(NetMsgType::PING));
2817 TRY_LOCK(cs_main, lockMain); // Acquire cs_main for IsInitialBlockDownload() and CNodeState()
2818 if (!lockMain)
2819 return true;
2821 if (SendRejectsAndCheckIfBanned(pto, connman))
2822 return true;
2823 CNodeState &state = *State(pto->GetId());
2825 // Address refresh broadcast
2826 int64_t nNow = GetTimeMicros();
2827 if (!IsInitialBlockDownload() && pto->nNextLocalAddrSend < nNow) {
2828 AdvertiseLocal(pto);
2829 pto->nNextLocalAddrSend = PoissonNextSend(nNow, AVG_LOCAL_ADDRESS_BROADCAST_INTERVAL);
2833 // Message: addr
2835 if (pto->nNextAddrSend < nNow) {
2836 pto->nNextAddrSend = PoissonNextSend(nNow, AVG_ADDRESS_BROADCAST_INTERVAL);
2837 std::vector<CAddress> vAddr;
2838 vAddr.reserve(pto->vAddrToSend.size());
2839 for (const CAddress& addr : pto->vAddrToSend)
2841 if (!pto->addrKnown.contains(addr.GetKey()))
2843 pto->addrKnown.insert(addr.GetKey());
2844 vAddr.push_back(addr);
2845 // receiver rejects addr messages larger than 1000
2846 if (vAddr.size() >= 1000)
2848 connman.PushMessage(pto, msgMaker.Make(NetMsgType::ADDR, vAddr));
2849 vAddr.clear();
2853 pto->vAddrToSend.clear();
2854 if (!vAddr.empty())
2855 connman.PushMessage(pto, msgMaker.Make(NetMsgType::ADDR, vAddr));
2856 // we only send the big addr message once
2857 if (pto->vAddrToSend.capacity() > 40)
2858 pto->vAddrToSend.shrink_to_fit();
2861 // Start block sync
2862 if (pindexBestHeader == NULL)
2863 pindexBestHeader = chainActive.Tip();
2864 bool fFetch = state.fPreferredDownload || (nPreferredDownload == 0 && !pto->fClient && !pto->fOneShot); // Download if this is a nice peer, or we have no nice peers and this one might do.
2865 if (!state.fSyncStarted && !pto->fClient && !fImporting && !fReindex) {
2866 // Only actively request headers from a single peer, unless we're close to today.
2867 if ((nSyncStarted == 0 && fFetch) || pindexBestHeader->GetBlockTime() > GetAdjustedTime() - 24 * 60 * 60) {
2868 state.fSyncStarted = true;
2869 state.nHeadersSyncTimeout = GetTimeMicros() + HEADERS_DOWNLOAD_TIMEOUT_BASE + HEADERS_DOWNLOAD_TIMEOUT_PER_HEADER * (GetAdjustedTime() - pindexBestHeader->GetBlockTime())/(consensusParams.nPowTargetSpacing);
2870 nSyncStarted++;
2871 const CBlockIndex *pindexStart = pindexBestHeader;
2872 /* If possible, start at the block preceding the currently
2873 best known header. This ensures that we always get a
2874 non-empty list of headers back as long as the peer
2875 is up-to-date. With a non-empty response, we can initialise
2876 the peer's known best block. This wouldn't be possible
2877 if we requested starting at pindexBestHeader and
2878 got back an empty response. */
2879 if (pindexStart->pprev)
2880 pindexStart = pindexStart->pprev;
2881 LogPrint(BCLog::NET, "initial getheaders (%d) to peer=%d (startheight:%d)\n", pindexStart->nHeight, pto->GetId(), pto->nStartingHeight);
2882 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexStart), uint256()));
2886 // Resend wallet transactions that haven't gotten in a block yet
2887 // Except during reindex, importing and IBD, when old wallet
2888 // transactions become unconfirmed and spams other nodes.
2889 if (!fReindex && !fImporting && !IsInitialBlockDownload())
2891 GetMainSignals().Broadcast(nTimeBestReceived, &connman);
2895 // Try sending block announcements via headers
2898 // If we have less than MAX_BLOCKS_TO_ANNOUNCE in our
2899 // list of block hashes we're relaying, and our peer wants
2900 // headers announcements, then find the first header
2901 // not yet known to our peer but would connect, and send.
2902 // If no header would connect, or if we have too many
2903 // blocks, or if the peer doesn't want headers, just
2904 // add all to the inv queue.
2905 LOCK(pto->cs_inventory);
2906 std::vector<CBlock> vHeaders;
2907 bool fRevertToInv = ((!state.fPreferHeaders &&
2908 (!state.fPreferHeaderAndIDs || pto->vBlockHashesToAnnounce.size() > 1)) ||
2909 pto->vBlockHashesToAnnounce.size() > MAX_BLOCKS_TO_ANNOUNCE);
2910 const CBlockIndex *pBestIndex = NULL; // last header queued for delivery
2911 ProcessBlockAvailability(pto->GetId()); // ensure pindexBestKnownBlock is up-to-date
2913 if (!fRevertToInv) {
2914 bool fFoundStartingHeader = false;
2915 // Try to find first header that our peer doesn't have, and
2916 // then send all headers past that one. If we come across any
2917 // headers that aren't on chainActive, give up.
2918 for (const uint256 &hash : pto->vBlockHashesToAnnounce) {
2919 BlockMap::iterator mi = mapBlockIndex.find(hash);
2920 assert(mi != mapBlockIndex.end());
2921 const CBlockIndex *pindex = mi->second;
2922 if (chainActive[pindex->nHeight] != pindex) {
2923 // Bail out if we reorged away from this block
2924 fRevertToInv = true;
2925 break;
2927 if (pBestIndex != NULL && pindex->pprev != pBestIndex) {
2928 // This means that the list of blocks to announce don't
2929 // connect to each other.
2930 // This shouldn't really be possible to hit during
2931 // regular operation (because reorgs should take us to
2932 // a chain that has some block not on the prior chain,
2933 // which should be caught by the prior check), but one
2934 // way this could happen is by using invalidateblock /
2935 // reconsiderblock repeatedly on the tip, causing it to
2936 // be added multiple times to vBlockHashesToAnnounce.
2937 // Robustly deal with this rare situation by reverting
2938 // to an inv.
2939 fRevertToInv = true;
2940 break;
2942 pBestIndex = pindex;
2943 if (fFoundStartingHeader) {
2944 // add this to the headers message
2945 vHeaders.push_back(pindex->GetBlockHeader());
2946 } else if (PeerHasHeader(&state, pindex)) {
2947 continue; // keep looking for the first new block
2948 } else if (pindex->pprev == NULL || PeerHasHeader(&state, pindex->pprev)) {
2949 // Peer doesn't have this header but they do have the prior one.
2950 // Start sending headers.
2951 fFoundStartingHeader = true;
2952 vHeaders.push_back(pindex->GetBlockHeader());
2953 } else {
2954 // Peer doesn't have this header or the prior one -- nothing will
2955 // connect, so bail out.
2956 fRevertToInv = true;
2957 break;
2961 if (!fRevertToInv && !vHeaders.empty()) {
2962 if (vHeaders.size() == 1 && state.fPreferHeaderAndIDs) {
2963 // We only send up to 1 block as header-and-ids, as otherwise
2964 // probably means we're doing an initial-ish-sync or they're slow
2965 LogPrint(BCLog::NET, "%s sending header-and-ids %s to peer=%d\n", __func__,
2966 vHeaders.front().GetHash().ToString(), pto->GetId());
2968 int nSendFlags = state.fWantsCmpctWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
2970 bool fGotBlockFromCache = false;
2972 LOCK(cs_most_recent_block);
2973 if (most_recent_block_hash == pBestIndex->GetBlockHash()) {
2974 if (state.fWantsCmpctWitness || !fWitnessesPresentInMostRecentCompactBlock)
2975 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, *most_recent_compact_block));
2976 else {
2977 CBlockHeaderAndShortTxIDs cmpctblock(*most_recent_block, state.fWantsCmpctWitness);
2978 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
2980 fGotBlockFromCache = true;
2983 if (!fGotBlockFromCache) {
2984 CBlock block;
2985 bool ret = ReadBlockFromDisk(block, pBestIndex, consensusParams);
2986 assert(ret);
2987 CBlockHeaderAndShortTxIDs cmpctblock(block, state.fWantsCmpctWitness);
2988 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
2990 state.pindexBestHeaderSent = pBestIndex;
2991 } else if (state.fPreferHeaders) {
2992 if (vHeaders.size() > 1) {
2993 LogPrint(BCLog::NET, "%s: %u headers, range (%s, %s), to peer=%d\n", __func__,
2994 vHeaders.size(),
2995 vHeaders.front().GetHash().ToString(),
2996 vHeaders.back().GetHash().ToString(), pto->GetId());
2997 } else {
2998 LogPrint(BCLog::NET, "%s: sending header %s to peer=%d\n", __func__,
2999 vHeaders.front().GetHash().ToString(), pto->GetId());
3001 connman.PushMessage(pto, msgMaker.Make(NetMsgType::HEADERS, vHeaders));
3002 state.pindexBestHeaderSent = pBestIndex;
3003 } else
3004 fRevertToInv = true;
3006 if (fRevertToInv) {
3007 // If falling back to using an inv, just try to inv the tip.
3008 // The last entry in vBlockHashesToAnnounce was our tip at some point
3009 // in the past.
3010 if (!pto->vBlockHashesToAnnounce.empty()) {
3011 const uint256 &hashToAnnounce = pto->vBlockHashesToAnnounce.back();
3012 BlockMap::iterator mi = mapBlockIndex.find(hashToAnnounce);
3013 assert(mi != mapBlockIndex.end());
3014 const CBlockIndex *pindex = mi->second;
3016 // Warn if we're announcing a block that is not on the main chain.
3017 // This should be very rare and could be optimized out.
3018 // Just log for now.
3019 if (chainActive[pindex->nHeight] != pindex) {
3020 LogPrint(BCLog::NET, "Announcing block %s not on main chain (tip=%s)\n",
3021 hashToAnnounce.ToString(), chainActive.Tip()->GetBlockHash().ToString());
3024 // If the peer's chain has this block, don't inv it back.
3025 if (!PeerHasHeader(&state, pindex)) {
3026 pto->PushInventory(CInv(MSG_BLOCK, hashToAnnounce));
3027 LogPrint(BCLog::NET, "%s: sending inv peer=%d hash=%s\n", __func__,
3028 pto->GetId(), hashToAnnounce.ToString());
3032 pto->vBlockHashesToAnnounce.clear();
3036 // Message: inventory
3038 std::vector<CInv> vInv;
3040 LOCK(pto->cs_inventory);
3041 vInv.reserve(std::max<size_t>(pto->vInventoryBlockToSend.size(), INVENTORY_BROADCAST_MAX));
3043 // Add blocks
3044 for (const uint256& hash : pto->vInventoryBlockToSend) {
3045 vInv.push_back(CInv(MSG_BLOCK, hash));
3046 if (vInv.size() == MAX_INV_SZ) {
3047 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3048 vInv.clear();
3051 pto->vInventoryBlockToSend.clear();
3053 // Check whether periodic sends should happen
3054 bool fSendTrickle = pto->fWhitelisted;
3055 if (pto->nNextInvSend < nNow) {
3056 fSendTrickle = true;
3057 // Use half the delay for outbound peers, as there is less privacy concern for them.
3058 pto->nNextInvSend = PoissonNextSend(nNow, INVENTORY_BROADCAST_INTERVAL >> !pto->fInbound);
3061 // Time to send but the peer has requested we not relay transactions.
3062 if (fSendTrickle) {
3063 LOCK(pto->cs_filter);
3064 if (!pto->fRelayTxes) pto->setInventoryTxToSend.clear();
3067 // Respond to BIP35 mempool requests
3068 if (fSendTrickle && pto->fSendMempool) {
3069 auto vtxinfo = mempool.infoAll();
3070 pto->fSendMempool = false;
3071 CAmount filterrate = 0;
3073 LOCK(pto->cs_feeFilter);
3074 filterrate = pto->minFeeFilter;
3077 LOCK(pto->cs_filter);
3079 for (const auto& txinfo : vtxinfo) {
3080 const uint256& hash = txinfo.tx->GetHash();
3081 CInv inv(MSG_TX, hash);
3082 pto->setInventoryTxToSend.erase(hash);
3083 if (filterrate) {
3084 if (txinfo.feeRate.GetFeePerK() < filterrate)
3085 continue;
3087 if (pto->pfilter) {
3088 if (!pto->pfilter->IsRelevantAndUpdate(*txinfo.tx)) continue;
3090 pto->filterInventoryKnown.insert(hash);
3091 vInv.push_back(inv);
3092 if (vInv.size() == MAX_INV_SZ) {
3093 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3094 vInv.clear();
3097 pto->timeLastMempoolReq = GetTime();
3100 // Determine transactions to relay
3101 if (fSendTrickle) {
3102 // Produce a vector with all candidates for sending
3103 std::vector<std::set<uint256>::iterator> vInvTx;
3104 vInvTx.reserve(pto->setInventoryTxToSend.size());
3105 for (std::set<uint256>::iterator it = pto->setInventoryTxToSend.begin(); it != pto->setInventoryTxToSend.end(); it++) {
3106 vInvTx.push_back(it);
3108 CAmount filterrate = 0;
3110 LOCK(pto->cs_feeFilter);
3111 filterrate = pto->minFeeFilter;
3113 // Topologically and fee-rate sort the inventory we send for privacy and priority reasons.
3114 // A heap is used so that not all items need sorting if only a few are being sent.
3115 CompareInvMempoolOrder compareInvMempoolOrder(&mempool);
3116 std::make_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
3117 // No reason to drain out at many times the network's capacity,
3118 // especially since we have many peers and some will draw much shorter delays.
3119 unsigned int nRelayedTransactions = 0;
3120 LOCK(pto->cs_filter);
3121 while (!vInvTx.empty() && nRelayedTransactions < INVENTORY_BROADCAST_MAX) {
3122 // Fetch the top element from the heap
3123 std::pop_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
3124 std::set<uint256>::iterator it = vInvTx.back();
3125 vInvTx.pop_back();
3126 uint256 hash = *it;
3127 // Remove it from the to-be-sent set
3128 pto->setInventoryTxToSend.erase(it);
3129 // Check if not in the filter already
3130 if (pto->filterInventoryKnown.contains(hash)) {
3131 continue;
3133 // Not in the mempool anymore? don't bother sending it.
3134 auto txinfo = mempool.info(hash);
3135 if (!txinfo.tx) {
3136 continue;
3138 if (filterrate && txinfo.feeRate.GetFeePerK() < filterrate) {
3139 continue;
3141 if (pto->pfilter && !pto->pfilter->IsRelevantAndUpdate(*txinfo.tx)) continue;
3142 // Send
3143 vInv.push_back(CInv(MSG_TX, hash));
3144 nRelayedTransactions++;
3146 // Expire old relay messages
3147 while (!vRelayExpiration.empty() && vRelayExpiration.front().first < nNow)
3149 mapRelay.erase(vRelayExpiration.front().second);
3150 vRelayExpiration.pop_front();
3153 auto ret = mapRelay.insert(std::make_pair(hash, std::move(txinfo.tx)));
3154 if (ret.second) {
3155 vRelayExpiration.push_back(std::make_pair(nNow + 15 * 60 * 1000000, ret.first));
3158 if (vInv.size() == MAX_INV_SZ) {
3159 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3160 vInv.clear();
3162 pto->filterInventoryKnown.insert(hash);
3166 if (!vInv.empty())
3167 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3169 // Detect whether we're stalling
3170 nNow = GetTimeMicros();
3171 if (state.nStallingSince && state.nStallingSince < nNow - 1000000 * BLOCK_STALLING_TIMEOUT) {
3172 // Stalling only triggers when the block download window cannot move. During normal steady state,
3173 // the download window should be much larger than the to-be-downloaded set of blocks, so disconnection
3174 // should only happen during initial block download.
3175 LogPrintf("Peer=%d is stalling block download, disconnecting\n", pto->GetId());
3176 pto->fDisconnect = true;
3177 return true;
3179 // In case there is a block that has been in flight from this peer for 2 + 0.5 * N times the block interval
3180 // (with N the number of peers from which we're downloading validated blocks), disconnect due to timeout.
3181 // We compensate for other peers to prevent killing off peers due to our own downstream link
3182 // being saturated. We only count validated in-flight blocks so peers can't advertise non-existing block hashes
3183 // to unreasonably increase our timeout.
3184 if (state.vBlocksInFlight.size() > 0) {
3185 QueuedBlock &queuedBlock = state.vBlocksInFlight.front();
3186 int nOtherPeersWithValidatedDownloads = nPeersWithValidatedDownloads - (state.nBlocksInFlightValidHeaders > 0);
3187 if (nNow > state.nDownloadingSince + consensusParams.nPowTargetSpacing * (BLOCK_DOWNLOAD_TIMEOUT_BASE + BLOCK_DOWNLOAD_TIMEOUT_PER_PEER * nOtherPeersWithValidatedDownloads)) {
3188 LogPrintf("Timeout downloading block %s from peer=%d, disconnecting\n", queuedBlock.hash.ToString(), pto->GetId());
3189 pto->fDisconnect = true;
3190 return true;
3193 // Check for headers sync timeouts
3194 if (state.fSyncStarted && state.nHeadersSyncTimeout < std::numeric_limits<int64_t>::max()) {
3195 // Detect whether this is a stalling initial-headers-sync peer
3196 if (pindexBestHeader->GetBlockTime() <= GetAdjustedTime() - 24*60*60) {
3197 if (nNow > state.nHeadersSyncTimeout && nSyncStarted == 1 && (nPreferredDownload - state.fPreferredDownload >= 1)) {
3198 // Disconnect a (non-whitelisted) peer if it is our only sync peer,
3199 // and we have others we could be using instead.
3200 // Note: If all our peers are inbound, then we won't
3201 // disconnect our sync peer for stalling; we have bigger
3202 // problems if we can't get any outbound peers.
3203 if (!pto->fWhitelisted) {
3204 LogPrintf("Timeout downloading headers from peer=%d, disconnecting\n", pto->GetId());
3205 pto->fDisconnect = true;
3206 return true;
3207 } else {
3208 LogPrintf("Timeout downloading headers from whitelisted peer=%d, not disconnecting\n", pto->GetId());
3209 // Reset the headers sync state so that we have a
3210 // chance to try downloading from a different peer.
3211 // Note: this will also result in at least one more
3212 // getheaders message to be sent to
3213 // this peer (eventually).
3214 state.fSyncStarted = false;
3215 nSyncStarted--;
3216 state.nHeadersSyncTimeout = 0;
3219 } else {
3220 // After we've caught up once, reset the timeout so we can't trigger
3221 // disconnect later.
3222 state.nHeadersSyncTimeout = std::numeric_limits<int64_t>::max();
3228 // Message: getdata (blocks)
3230 std::vector<CInv> vGetData;
3231 if (!pto->fClient && (fFetch || !IsInitialBlockDownload()) && state.nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
3232 std::vector<const CBlockIndex*> vToDownload;
3233 NodeId staller = -1;
3234 FindNextBlocksToDownload(pto->GetId(), MAX_BLOCKS_IN_TRANSIT_PER_PEER - state.nBlocksInFlight, vToDownload, staller, consensusParams);
3235 for (const CBlockIndex *pindex : vToDownload) {
3236 uint32_t nFetchFlags = GetFetchFlags(pto);
3237 vGetData.push_back(CInv(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash()));
3238 MarkBlockAsInFlight(pto->GetId(), pindex->GetBlockHash(), pindex);
3239 LogPrint(BCLog::NET, "Requesting block %s (%d) peer=%d\n", pindex->GetBlockHash().ToString(),
3240 pindex->nHeight, pto->GetId());
3242 if (state.nBlocksInFlight == 0 && staller != -1) {
3243 if (State(staller)->nStallingSince == 0) {
3244 State(staller)->nStallingSince = nNow;
3245 LogPrint(BCLog::NET, "Stall started peer=%d\n", staller);
3251 // Message: getdata (non-blocks)
3253 while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
3255 const CInv& inv = (*pto->mapAskFor.begin()).second;
3256 if (!AlreadyHave(inv))
3258 LogPrint(BCLog::NET, "Requesting %s peer=%d\n", inv.ToString(), pto->GetId());
3259 vGetData.push_back(inv);
3260 if (vGetData.size() >= 1000)
3262 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETDATA, vGetData));
3263 vGetData.clear();
3265 } else {
3266 //If we're not going to ask, don't expect a response.
3267 pto->setAskFor.erase(inv.hash);
3269 pto->mapAskFor.erase(pto->mapAskFor.begin());
3271 if (!vGetData.empty())
3272 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETDATA, vGetData));
3275 // Message: feefilter
3277 // We don't want white listed peers to filter txs to us if we have -whitelistforcerelay
3278 if (pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
3279 !(pto->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY))) {
3280 CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
3281 int64_t timeNow = GetTimeMicros();
3282 if (timeNow > pto->nextSendTimeFeeFilter) {
3283 static CFeeRate default_feerate(DEFAULT_MIN_RELAY_TX_FEE);
3284 static FeeFilterRounder filterRounder(default_feerate);
3285 CAmount filterToSend = filterRounder.round(currentFilter);
3286 // We always have a fee filter of at least minRelayTxFee
3287 filterToSend = std::max(filterToSend, ::minRelayTxFee.GetFeePerK());
3288 if (filterToSend != pto->lastSentFeeFilter) {
3289 connman.PushMessage(pto, msgMaker.Make(NetMsgType::FEEFILTER, filterToSend));
3290 pto->lastSentFeeFilter = filterToSend;
3292 pto->nextSendTimeFeeFilter = PoissonNextSend(timeNow, AVG_FEEFILTER_BROADCAST_INTERVAL);
3294 // If the fee filter has changed substantially and it's still more than MAX_FEEFILTER_CHANGE_DELAY
3295 // until scheduled broadcast, then move the broadcast to within MAX_FEEFILTER_CHANGE_DELAY.
3296 else if (timeNow + MAX_FEEFILTER_CHANGE_DELAY * 1000000 < pto->nextSendTimeFeeFilter &&
3297 (currentFilter < 3 * pto->lastSentFeeFilter / 4 || currentFilter > 4 * pto->lastSentFeeFilter / 3)) {
3298 pto->nextSendTimeFeeFilter = timeNow + GetRandInt(MAX_FEEFILTER_CHANGE_DELAY) * 1000000;
3302 return true;
3305 class CNetProcessingCleanup
3307 public:
3308 CNetProcessingCleanup() {}
3309 ~CNetProcessingCleanup() {
3310 // orphan transactions
3311 mapOrphanTransactions.clear();
3312 mapOrphanTransactionsByPrev.clear();
3314 } instance_of_cnetprocessingcleanup;