Merge #10027: Set to nullptr after delete
[bitcoinplatinum.git] / src / net_processing.cpp
blob71a0a1de22d0916389daae3dd2195a05b6725e55
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 "tinyformat.h"
26 #include "txmempool.h"
27 #include "ui_interface.h"
28 #include "util.h"
29 #include "utilmoneystr.h"
30 #include "utilstrencodings.h"
31 #include "validationinterface.h"
33 #include <boost/thread.hpp>
35 #if defined(NDEBUG)
36 # error "Bitcoin cannot be compiled without assertions."
37 #endif
39 std::atomic<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of when we last received a block
41 struct IteratorComparator
43 template<typename I>
44 bool operator()(const I& a, const I& b)
46 return &(*a) < &(*b);
50 struct COrphanTx {
51 // When modifying, adapt the copy of this definition in tests/DoS_tests.
52 CTransactionRef tx;
53 NodeId fromPeer;
54 int64_t nTimeExpire;
56 std::map<uint256, COrphanTx> mapOrphanTransactions GUARDED_BY(cs_main);
57 std::map<COutPoint, std::set<std::map<uint256, COrphanTx>::iterator, IteratorComparator>> mapOrphanTransactionsByPrev GUARDED_BY(cs_main);
58 void EraseOrphansFor(NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
60 static size_t vExtraTxnForCompactIt = 0;
61 static std::vector<std::pair<uint256, CTransactionRef>> vExtraTxnForCompact GUARDED_BY(cs_main);
63 static const uint64_t RANDOMIZER_ID_ADDRESS_RELAY = 0x3cac0035b5866b90ULL; // SHA256("main address relay")[0:8]
65 // Internal stuff
66 namespace {
67 /** Number of nodes with fSyncStarted. */
68 int nSyncStarted = 0;
70 /**
71 * Sources of received blocks, saved to be able to send them reject
72 * messages or ban them when processing happens afterwards. Protected by
73 * cs_main.
74 * Set mapBlockSource[hash].second to false if the node should not be
75 * punished if the block is invalid.
77 std::map<uint256, std::pair<NodeId, bool>> mapBlockSource;
79 /**
80 * Filter for transactions that were recently rejected by
81 * AcceptToMemoryPool. These are not rerequested until the chain tip
82 * changes, at which point the entire filter is reset. Protected by
83 * cs_main.
85 * Without this filter we'd be re-requesting txs from each of our peers,
86 * increasing bandwidth consumption considerably. For instance, with 100
87 * peers, half of which relay a tx we don't accept, that might be a 50x
88 * bandwidth increase. A flooding attacker attempting to roll-over the
89 * filter using minimum-sized, 60byte, transactions might manage to send
90 * 1000/sec if we have fast peers, so we pick 120,000 to give our peers a
91 * two minute window to send invs to us.
93 * Decreasing the false positive rate is fairly cheap, so we pick one in a
94 * million to make it highly unlikely for users to have issues with this
95 * filter.
97 * Memory used: 1.3 MB
99 std::unique_ptr<CRollingBloomFilter> recentRejects;
100 uint256 hashRecentRejectsChainTip;
102 /** Blocks that are in flight, and that are in the queue to be downloaded. Protected by cs_main. */
103 struct QueuedBlock {
104 uint256 hash;
105 const CBlockIndex* pindex; //!< Optional.
106 bool fValidatedHeaders; //!< Whether this block has validated headers at the time of request.
107 std::unique_ptr<PartiallyDownloadedBlock> partialBlock; //!< Optional, used for CMPCTBLOCK downloads
109 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> > mapBlocksInFlight;
111 /** Stack of nodes which we have set to announce using compact blocks */
112 std::list<NodeId> lNodesAnnouncingHeaderAndIDs;
114 /** Number of preferable block download peers. */
115 int nPreferredDownload = 0;
117 /** Number of peers from which we're downloading blocks. */
118 int nPeersWithValidatedDownloads = 0;
120 /** Relay map, protected by cs_main. */
121 typedef std::map<uint256, CTransactionRef> MapRelay;
122 MapRelay mapRelay;
123 /** Expiration-time ordered list of (expire time, relay map entry) pairs, protected by cs_main). */
124 std::deque<std::pair<int64_t, MapRelay::iterator>> vRelayExpiration;
125 } // anon namespace
127 //////////////////////////////////////////////////////////////////////////////
129 // Registration of network node signals.
132 namespace {
134 struct CBlockReject {
135 unsigned char chRejectCode;
136 std::string strRejectReason;
137 uint256 hashBlock;
141 * Maintain validation-specific state about nodes, protected by cs_main, instead
142 * by CNode's own locks. This simplifies asynchronous operation, where
143 * processing of incoming data is done after the ProcessMessage call returns,
144 * and we're no longer holding the node's locks.
146 struct CNodeState {
147 //! The peer's address
148 const CService address;
149 //! Whether we have a fully established connection.
150 bool fCurrentlyConnected;
151 //! Accumulated misbehaviour score for this peer.
152 int nMisbehavior;
153 //! Whether this peer should be disconnected and banned (unless whitelisted).
154 bool fShouldBan;
155 //! String name of this peer (debugging/logging purposes).
156 const std::string name;
157 //! List of asynchronously-determined block rejections to notify this peer about.
158 std::vector<CBlockReject> rejects;
159 //! The best known block we know this peer has announced.
160 const CBlockIndex *pindexBestKnownBlock;
161 //! The hash of the last unknown block this peer has announced.
162 uint256 hashLastUnknownBlock;
163 //! The last full block we both have.
164 const CBlockIndex *pindexLastCommonBlock;
165 //! The best header we have sent our peer.
166 const CBlockIndex *pindexBestHeaderSent;
167 //! Length of current-streak of unconnecting headers announcements
168 int nUnconnectingHeaders;
169 //! Whether we've started headers synchronization with this peer.
170 bool fSyncStarted;
171 //! Since when we're stalling block download progress (in microseconds), or 0.
172 int64_t nStallingSince;
173 std::list<QueuedBlock> vBlocksInFlight;
174 //! When the first entry in vBlocksInFlight started downloading. Don't care when vBlocksInFlight is empty.
175 int64_t nDownloadingSince;
176 int nBlocksInFlight;
177 int nBlocksInFlightValidHeaders;
178 //! Whether we consider this a preferred download peer.
179 bool fPreferredDownload;
180 //! Whether this peer wants invs or headers (when possible) for block announcements.
181 bool fPreferHeaders;
182 //! Whether this peer wants invs or cmpctblocks (when possible) for block announcements.
183 bool fPreferHeaderAndIDs;
185 * Whether this peer will send us cmpctblocks if we request them.
186 * This is not used to gate request logic, as we really only care about fSupportsDesiredCmpctVersion,
187 * but is used as a flag to "lock in" the version of compact blocks (fWantsCmpctWitness) we send.
189 bool fProvidesHeaderAndIDs;
190 //! Whether this peer can give us witnesses
191 bool fHaveWitness;
192 //! Whether this peer wants witnesses in cmpctblocks/blocktxns
193 bool fWantsCmpctWitness;
195 * If we've announced NODE_WITNESS to this peer: whether the peer sends witnesses in cmpctblocks/blocktxns,
196 * otherwise: whether this peer sends non-witnesses in cmpctblocks/blocktxns.
198 bool fSupportsDesiredCmpctVersion;
200 CNodeState(CAddress addrIn, std::string addrNameIn) : address(addrIn), name(addrNameIn) {
201 fCurrentlyConnected = false;
202 nMisbehavior = 0;
203 fShouldBan = false;
204 pindexBestKnownBlock = NULL;
205 hashLastUnknownBlock.SetNull();
206 pindexLastCommonBlock = NULL;
207 pindexBestHeaderSent = NULL;
208 nUnconnectingHeaders = 0;
209 fSyncStarted = false;
210 nStallingSince = 0;
211 nDownloadingSince = 0;
212 nBlocksInFlight = 0;
213 nBlocksInFlightValidHeaders = 0;
214 fPreferredDownload = false;
215 fPreferHeaders = false;
216 fPreferHeaderAndIDs = false;
217 fProvidesHeaderAndIDs = false;
218 fHaveWitness = false;
219 fWantsCmpctWitness = false;
220 fSupportsDesiredCmpctVersion = false;
224 /** Map maintaining per-node state. Requires cs_main. */
225 std::map<NodeId, CNodeState> mapNodeState;
227 // Requires cs_main.
228 CNodeState *State(NodeId pnode) {
229 std::map<NodeId, CNodeState>::iterator it = mapNodeState.find(pnode);
230 if (it == mapNodeState.end())
231 return NULL;
232 return &it->second;
235 void UpdatePreferredDownload(CNode* node, CNodeState* state)
237 nPreferredDownload -= state->fPreferredDownload;
239 // Whether this node should be marked as a preferred download node.
240 state->fPreferredDownload = (!node->fInbound || node->fWhitelisted) && !node->fOneShot && !node->fClient;
242 nPreferredDownload += state->fPreferredDownload;
245 void PushNodeVersion(CNode *pnode, CConnman& connman, int64_t nTime)
247 ServiceFlags nLocalNodeServices = pnode->GetLocalServices();
248 uint64_t nonce = pnode->GetLocalNonce();
249 int nNodeStartingHeight = pnode->GetMyStartingHeight();
250 NodeId nodeid = pnode->GetId();
251 CAddress addr = pnode->addr;
253 CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService(), addr.nServices));
254 CAddress addrMe = CAddress(CService(), nLocalNodeServices);
256 connman.PushMessage(pnode, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::VERSION, PROTOCOL_VERSION, (uint64_t)nLocalNodeServices, nTime, addrYou, addrMe,
257 nonce, strSubVersion, nNodeStartingHeight, ::fRelayTxes));
259 if (fLogIPs)
260 LogPrint("net", "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, addrMe.ToString(), addrYou.ToString(), nodeid);
261 else
262 LogPrint("net", "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, addrMe.ToString(), nodeid);
265 void InitializeNode(CNode *pnode, CConnman& connman) {
266 CAddress addr = pnode->addr;
267 std::string addrName = pnode->GetAddrName();
268 NodeId nodeid = pnode->GetId();
270 LOCK(cs_main);
271 mapNodeState.emplace_hint(mapNodeState.end(), std::piecewise_construct, std::forward_as_tuple(nodeid), std::forward_as_tuple(addr, std::move(addrName)));
273 if(!pnode->fInbound)
274 PushNodeVersion(pnode, connman, GetTime());
277 void FinalizeNode(NodeId nodeid, bool& fUpdateConnectionTime) {
278 fUpdateConnectionTime = false;
279 LOCK(cs_main);
280 CNodeState *state = State(nodeid);
282 if (state->fSyncStarted)
283 nSyncStarted--;
285 if (state->nMisbehavior == 0 && state->fCurrentlyConnected) {
286 fUpdateConnectionTime = true;
289 BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight) {
290 mapBlocksInFlight.erase(entry.hash);
292 EraseOrphansFor(nodeid);
293 nPreferredDownload -= state->fPreferredDownload;
294 nPeersWithValidatedDownloads -= (state->nBlocksInFlightValidHeaders != 0);
295 assert(nPeersWithValidatedDownloads >= 0);
297 mapNodeState.erase(nodeid);
299 if (mapNodeState.empty()) {
300 // Do a consistency check after the last peer is removed.
301 assert(mapBlocksInFlight.empty());
302 assert(nPreferredDownload == 0);
303 assert(nPeersWithValidatedDownloads == 0);
307 // Requires cs_main.
308 // Returns a bool indicating whether we requested this block.
309 // Also used if a block was /not/ received and timed out or started with another peer
310 bool MarkBlockAsReceived(const uint256& hash) {
311 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash);
312 if (itInFlight != mapBlocksInFlight.end()) {
313 CNodeState *state = State(itInFlight->second.first);
314 state->nBlocksInFlightValidHeaders -= itInFlight->second.second->fValidatedHeaders;
315 if (state->nBlocksInFlightValidHeaders == 0 && itInFlight->second.second->fValidatedHeaders) {
316 // Last validated block on the queue was received.
317 nPeersWithValidatedDownloads--;
319 if (state->vBlocksInFlight.begin() == itInFlight->second.second) {
320 // First block on the queue was received, update the start download time for the next one
321 state->nDownloadingSince = std::max(state->nDownloadingSince, GetTimeMicros());
323 state->vBlocksInFlight.erase(itInFlight->second.second);
324 state->nBlocksInFlight--;
325 state->nStallingSince = 0;
326 mapBlocksInFlight.erase(itInFlight);
327 return true;
329 return false;
332 // Requires cs_main.
333 // returns false, still setting pit, if the block was already in flight from the same peer
334 // pit will only be valid as long as the same cs_main lock is being held
335 bool MarkBlockAsInFlight(NodeId nodeid, const uint256& hash, const Consensus::Params& consensusParams, const CBlockIndex* pindex = NULL, std::list<QueuedBlock>::iterator** pit = NULL) {
336 CNodeState *state = State(nodeid);
337 assert(state != NULL);
339 // Short-circuit most stuff in case its from the same node
340 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash);
341 if (itInFlight != mapBlocksInFlight.end() && itInFlight->second.first == nodeid) {
342 *pit = &itInFlight->second.second;
343 return false;
346 // Make sure it's not listed somewhere already.
347 MarkBlockAsReceived(hash);
349 std::list<QueuedBlock>::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(),
350 {hash, pindex, pindex != NULL, std::unique_ptr<PartiallyDownloadedBlock>(pit ? new PartiallyDownloadedBlock(&mempool) : NULL)});
351 state->nBlocksInFlight++;
352 state->nBlocksInFlightValidHeaders += it->fValidatedHeaders;
353 if (state->nBlocksInFlight == 1) {
354 // We're starting a block download (batch) from this peer.
355 state->nDownloadingSince = GetTimeMicros();
357 if (state->nBlocksInFlightValidHeaders == 1 && pindex != NULL) {
358 nPeersWithValidatedDownloads++;
360 itInFlight = mapBlocksInFlight.insert(std::make_pair(hash, std::make_pair(nodeid, it))).first;
361 if (pit)
362 *pit = &itInFlight->second.second;
363 return true;
366 /** Check whether the last unknown block a peer advertised is not yet known. */
367 void ProcessBlockAvailability(NodeId nodeid) {
368 CNodeState *state = State(nodeid);
369 assert(state != NULL);
371 if (!state->hashLastUnknownBlock.IsNull()) {
372 BlockMap::iterator itOld = mapBlockIndex.find(state->hashLastUnknownBlock);
373 if (itOld != mapBlockIndex.end() && itOld->second->nChainWork > 0) {
374 if (state->pindexBestKnownBlock == NULL || itOld->second->nChainWork >= state->pindexBestKnownBlock->nChainWork)
375 state->pindexBestKnownBlock = itOld->second;
376 state->hashLastUnknownBlock.SetNull();
381 /** Update tracking information about which blocks a peer is assumed to have. */
382 void UpdateBlockAvailability(NodeId nodeid, const uint256 &hash) {
383 CNodeState *state = State(nodeid);
384 assert(state != NULL);
386 ProcessBlockAvailability(nodeid);
388 BlockMap::iterator it = mapBlockIndex.find(hash);
389 if (it != mapBlockIndex.end() && it->second->nChainWork > 0) {
390 // An actually better block was announced.
391 if (state->pindexBestKnownBlock == NULL || it->second->nChainWork >= state->pindexBestKnownBlock->nChainWork)
392 state->pindexBestKnownBlock = it->second;
393 } else {
394 // An unknown block was announced; just assume that the latest one is the best one.
395 state->hashLastUnknownBlock = hash;
399 void MaybeSetPeerAsAnnouncingHeaderAndIDs(NodeId nodeid, CConnman& connman) {
400 AssertLockHeld(cs_main);
401 CNodeState* nodestate = State(nodeid);
402 if (!nodestate || !nodestate->fSupportsDesiredCmpctVersion) {
403 // Never ask from peers who can't provide witnesses.
404 return;
406 if (nodestate->fProvidesHeaderAndIDs) {
407 for (std::list<NodeId>::iterator it = lNodesAnnouncingHeaderAndIDs.begin(); it != lNodesAnnouncingHeaderAndIDs.end(); it++) {
408 if (*it == nodeid) {
409 lNodesAnnouncingHeaderAndIDs.erase(it);
410 lNodesAnnouncingHeaderAndIDs.push_back(nodeid);
411 return;
414 connman.ForNode(nodeid, [&connman](CNode* pfrom){
415 bool fAnnounceUsingCMPCTBLOCK = false;
416 uint64_t nCMPCTBLOCKVersion = (pfrom->GetLocalServices() & NODE_WITNESS) ? 2 : 1;
417 if (lNodesAnnouncingHeaderAndIDs.size() >= 3) {
418 // As per BIP152, we only get 3 of our peers to announce
419 // blocks using compact encodings.
420 connman.ForNode(lNodesAnnouncingHeaderAndIDs.front(), [&connman, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion](CNode* pnodeStop){
421 connman.PushMessage(pnodeStop, CNetMsgMaker(pnodeStop->GetSendVersion()).Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
422 return true;
424 lNodesAnnouncingHeaderAndIDs.pop_front();
426 fAnnounceUsingCMPCTBLOCK = true;
427 connman.PushMessage(pfrom, CNetMsgMaker(pfrom->GetSendVersion()).Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
428 lNodesAnnouncingHeaderAndIDs.push_back(pfrom->GetId());
429 return true;
434 // Requires cs_main
435 bool CanDirectFetch(const Consensus::Params &consensusParams)
437 return chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - consensusParams.nPowTargetSpacing * 20;
440 // Requires cs_main
441 bool PeerHasHeader(CNodeState *state, const CBlockIndex *pindex)
443 if (state->pindexBestKnownBlock && pindex == state->pindexBestKnownBlock->GetAncestor(pindex->nHeight))
444 return true;
445 if (state->pindexBestHeaderSent && pindex == state->pindexBestHeaderSent->GetAncestor(pindex->nHeight))
446 return true;
447 return false;
450 /** Find the last common ancestor two blocks have.
451 * Both pa and pb must be non-NULL. */
452 const CBlockIndex* LastCommonAncestor(const CBlockIndex* pa, const CBlockIndex* pb) {
453 if (pa->nHeight > pb->nHeight) {
454 pa = pa->GetAncestor(pb->nHeight);
455 } else if (pb->nHeight > pa->nHeight) {
456 pb = pb->GetAncestor(pa->nHeight);
459 while (pa != pb && pa && pb) {
460 pa = pa->pprev;
461 pb = pb->pprev;
464 // Eventually all chain branches meet at the genesis block.
465 assert(pa == pb);
466 return pa;
469 /** Update pindexLastCommonBlock and add not-in-flight missing successors to vBlocks, until it has
470 * at most count entries. */
471 void FindNextBlocksToDownload(NodeId nodeid, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, NodeId& nodeStaller, const Consensus::Params& consensusParams) {
472 if (count == 0)
473 return;
475 vBlocks.reserve(vBlocks.size() + count);
476 CNodeState *state = State(nodeid);
477 assert(state != NULL);
479 // Make sure pindexBestKnownBlock is up to date, we'll need it.
480 ProcessBlockAvailability(nodeid);
482 if (state->pindexBestKnownBlock == NULL || state->pindexBestKnownBlock->nChainWork < chainActive.Tip()->nChainWork) {
483 // This peer has nothing interesting.
484 return;
487 if (state->pindexLastCommonBlock == NULL) {
488 // Bootstrap quickly by guessing a parent of our best tip is the forking point.
489 // Guessing wrong in either direction is not a problem.
490 state->pindexLastCommonBlock = chainActive[std::min(state->pindexBestKnownBlock->nHeight, chainActive.Height())];
493 // If the peer reorganized, our previous pindexLastCommonBlock may not be an ancestor
494 // of its current tip anymore. Go back enough to fix that.
495 state->pindexLastCommonBlock = LastCommonAncestor(state->pindexLastCommonBlock, state->pindexBestKnownBlock);
496 if (state->pindexLastCommonBlock == state->pindexBestKnownBlock)
497 return;
499 std::vector<const CBlockIndex*> vToFetch;
500 const CBlockIndex *pindexWalk = state->pindexLastCommonBlock;
501 // Never fetch further than the best block we know the peer has, or more than BLOCK_DOWNLOAD_WINDOW + 1 beyond the last
502 // linked block we have in common with this peer. The +1 is so we can detect stalling, namely if we would be able to
503 // download that next block if the window were 1 larger.
504 int nWindowEnd = state->pindexLastCommonBlock->nHeight + BLOCK_DOWNLOAD_WINDOW;
505 int nMaxHeight = std::min<int>(state->pindexBestKnownBlock->nHeight, nWindowEnd + 1);
506 NodeId waitingfor = -1;
507 while (pindexWalk->nHeight < nMaxHeight) {
508 // Read up to 128 (or more, if more blocks than that are needed) successors of pindexWalk (towards
509 // pindexBestKnownBlock) into vToFetch. We fetch 128, because CBlockIndex::GetAncestor may be as expensive
510 // as iterating over ~100 CBlockIndex* entries anyway.
511 int nToFetch = std::min(nMaxHeight - pindexWalk->nHeight, std::max<int>(count - vBlocks.size(), 128));
512 vToFetch.resize(nToFetch);
513 pindexWalk = state->pindexBestKnownBlock->GetAncestor(pindexWalk->nHeight + nToFetch);
514 vToFetch[nToFetch - 1] = pindexWalk;
515 for (unsigned int i = nToFetch - 1; i > 0; i--) {
516 vToFetch[i - 1] = vToFetch[i]->pprev;
519 // Iterate over those blocks in vToFetch (in forward direction), adding the ones that
520 // are not yet downloaded and not in flight to vBlocks. In the mean time, update
521 // pindexLastCommonBlock as long as all ancestors are already downloaded, or if it's
522 // already part of our chain (and therefore don't need it even if pruned).
523 BOOST_FOREACH(const CBlockIndex* pindex, vToFetch) {
524 if (!pindex->IsValid(BLOCK_VALID_TREE)) {
525 // We consider the chain that this peer is on invalid.
526 return;
528 if (!State(nodeid)->fHaveWitness && IsWitnessEnabled(pindex->pprev, consensusParams)) {
529 // We wouldn't download this block or its descendants from this peer.
530 return;
532 if (pindex->nStatus & BLOCK_HAVE_DATA || chainActive.Contains(pindex)) {
533 if (pindex->nChainTx)
534 state->pindexLastCommonBlock = pindex;
535 } else if (mapBlocksInFlight.count(pindex->GetBlockHash()) == 0) {
536 // The block is not already downloaded, and not yet in flight.
537 if (pindex->nHeight > nWindowEnd) {
538 // We reached the end of the window.
539 if (vBlocks.size() == 0 && waitingfor != nodeid) {
540 // We aren't able to fetch anything, but we would be if the download window was one larger.
541 nodeStaller = waitingfor;
543 return;
545 vBlocks.push_back(pindex);
546 if (vBlocks.size() == count) {
547 return;
549 } else if (waitingfor == -1) {
550 // This is the first already-in-flight block.
551 waitingfor = mapBlocksInFlight[pindex->GetBlockHash()].first;
557 } // anon namespace
559 bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats) {
560 LOCK(cs_main);
561 CNodeState *state = State(nodeid);
562 if (state == NULL)
563 return false;
564 stats.nMisbehavior = state->nMisbehavior;
565 stats.nSyncHeight = state->pindexBestKnownBlock ? state->pindexBestKnownBlock->nHeight : -1;
566 stats.nCommonHeight = state->pindexLastCommonBlock ? state->pindexLastCommonBlock->nHeight : -1;
567 BOOST_FOREACH(const QueuedBlock& queue, state->vBlocksInFlight) {
568 if (queue.pindex)
569 stats.vHeightInFlight.push_back(queue.pindex->nHeight);
571 return true;
574 void RegisterNodeSignals(CNodeSignals& nodeSignals)
576 nodeSignals.ProcessMessages.connect(&ProcessMessages);
577 nodeSignals.SendMessages.connect(&SendMessages);
578 nodeSignals.InitializeNode.connect(&InitializeNode);
579 nodeSignals.FinalizeNode.connect(&FinalizeNode);
582 void UnregisterNodeSignals(CNodeSignals& nodeSignals)
584 nodeSignals.ProcessMessages.disconnect(&ProcessMessages);
585 nodeSignals.SendMessages.disconnect(&SendMessages);
586 nodeSignals.InitializeNode.disconnect(&InitializeNode);
587 nodeSignals.FinalizeNode.disconnect(&FinalizeNode);
590 //////////////////////////////////////////////////////////////////////////////
592 // mapOrphanTransactions
595 void AddToCompactExtraTransactions(const CTransactionRef& tx)
597 size_t max_extra_txn = GetArg("-blockreconstructionextratxn", DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN);
598 if (max_extra_txn <= 0)
599 return;
600 if (!vExtraTxnForCompact.size())
601 vExtraTxnForCompact.resize(max_extra_txn);
602 vExtraTxnForCompact[vExtraTxnForCompactIt] = std::make_pair(tx->GetWitnessHash(), tx);
603 vExtraTxnForCompactIt = (vExtraTxnForCompactIt + 1) % max_extra_txn;
606 bool AddOrphanTx(const CTransactionRef& tx, NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
608 const uint256& hash = tx->GetHash();
609 if (mapOrphanTransactions.count(hash))
610 return false;
612 // Ignore big transactions, to avoid a
613 // send-big-orphans memory exhaustion attack. If a peer has a legitimate
614 // large transaction with a missing parent then we assume
615 // it will rebroadcast it later, after the parent transaction(s)
616 // have been mined or received.
617 // 100 orphans, each of which is at most 99,999 bytes big is
618 // at most 10 megabytes of orphans and somewhat more byprev index (in the worst case):
619 unsigned int sz = GetTransactionWeight(*tx);
620 if (sz >= MAX_STANDARD_TX_WEIGHT)
622 LogPrint("mempool", "ignoring large orphan tx (size: %u, hash: %s)\n", sz, hash.ToString());
623 return false;
626 auto ret = mapOrphanTransactions.emplace(hash, COrphanTx{tx, peer, GetTime() + ORPHAN_TX_EXPIRE_TIME});
627 assert(ret.second);
628 BOOST_FOREACH(const CTxIn& txin, tx->vin) {
629 mapOrphanTransactionsByPrev[txin.prevout].insert(ret.first);
632 AddToCompactExtraTransactions(tx);
634 LogPrint("mempool", "stored orphan tx %s (mapsz %u outsz %u)\n", hash.ToString(),
635 mapOrphanTransactions.size(), mapOrphanTransactionsByPrev.size());
636 return true;
639 int static EraseOrphanTx(uint256 hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
641 std::map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.find(hash);
642 if (it == mapOrphanTransactions.end())
643 return 0;
644 BOOST_FOREACH(const CTxIn& txin, it->second.tx->vin)
646 auto itPrev = mapOrphanTransactionsByPrev.find(txin.prevout);
647 if (itPrev == mapOrphanTransactionsByPrev.end())
648 continue;
649 itPrev->second.erase(it);
650 if (itPrev->second.empty())
651 mapOrphanTransactionsByPrev.erase(itPrev);
653 mapOrphanTransactions.erase(it);
654 return 1;
657 void EraseOrphansFor(NodeId peer)
659 int nErased = 0;
660 std::map<uint256, COrphanTx>::iterator iter = mapOrphanTransactions.begin();
661 while (iter != mapOrphanTransactions.end())
663 std::map<uint256, COrphanTx>::iterator maybeErase = iter++; // increment to avoid iterator becoming invalid
664 if (maybeErase->second.fromPeer == peer)
666 nErased += EraseOrphanTx(maybeErase->second.tx->GetHash());
669 if (nErased > 0) LogPrint("mempool", "Erased %d orphan tx from peer=%d\n", nErased, peer);
673 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
675 unsigned int nEvicted = 0;
676 static int64_t nNextSweep;
677 int64_t nNow = GetTime();
678 if (nNextSweep <= nNow) {
679 // Sweep out expired orphan pool entries:
680 int nErased = 0;
681 int64_t nMinExpTime = nNow + ORPHAN_TX_EXPIRE_TIME - ORPHAN_TX_EXPIRE_INTERVAL;
682 std::map<uint256, COrphanTx>::iterator iter = mapOrphanTransactions.begin();
683 while (iter != mapOrphanTransactions.end())
685 std::map<uint256, COrphanTx>::iterator maybeErase = iter++;
686 if (maybeErase->second.nTimeExpire <= nNow) {
687 nErased += EraseOrphanTx(maybeErase->second.tx->GetHash());
688 } else {
689 nMinExpTime = std::min(maybeErase->second.nTimeExpire, nMinExpTime);
692 // Sweep again 5 minutes after the next entry that expires in order to batch the linear scan.
693 nNextSweep = nMinExpTime + ORPHAN_TX_EXPIRE_INTERVAL;
694 if (nErased > 0) LogPrint("mempool", "Erased %d orphan tx due to expiration\n", nErased);
696 while (mapOrphanTransactions.size() > nMaxOrphans)
698 // Evict a random orphan:
699 uint256 randomhash = GetRandHash();
700 std::map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
701 if (it == mapOrphanTransactions.end())
702 it = mapOrphanTransactions.begin();
703 EraseOrphanTx(it->first);
704 ++nEvicted;
706 return nEvicted;
709 // Requires cs_main.
710 void Misbehaving(NodeId pnode, int howmuch)
712 if (howmuch == 0)
713 return;
715 CNodeState *state = State(pnode);
716 if (state == NULL)
717 return;
719 state->nMisbehavior += howmuch;
720 int banscore = GetArg("-banscore", DEFAULT_BANSCORE_THRESHOLD);
721 if (state->nMisbehavior >= banscore && state->nMisbehavior - howmuch < banscore)
723 LogPrintf("%s: %s peer=%d (%d -> %d) BAN THRESHOLD EXCEEDED\n", __func__, state->name, pnode, state->nMisbehavior-howmuch, state->nMisbehavior);
724 state->fShouldBan = true;
725 } else
726 LogPrintf("%s: %s peer=%d (%d -> %d)\n", __func__, state->name, pnode, state->nMisbehavior-howmuch, state->nMisbehavior);
736 //////////////////////////////////////////////////////////////////////////////
738 // blockchain -> download logic notification
741 PeerLogicValidation::PeerLogicValidation(CConnman* connmanIn) : connman(connmanIn) {
742 // Initialize global variables that cannot be constructed at startup.
743 recentRejects.reset(new CRollingBloomFilter(120000, 0.000001));
746 void PeerLogicValidation::SyncTransaction(const CTransaction& tx, const CBlockIndex* pindex, int nPosInBlock) {
747 if (nPosInBlock == CMainSignals::SYNC_TRANSACTION_NOT_IN_BLOCK)
748 return;
750 LOCK(cs_main);
752 std::vector<uint256> vOrphanErase;
753 // Which orphan pool entries must we evict?
754 for (size_t j = 0; j < tx.vin.size(); j++) {
755 auto itByPrev = mapOrphanTransactionsByPrev.find(tx.vin[j].prevout);
756 if (itByPrev == mapOrphanTransactionsByPrev.end()) continue;
757 for (auto mi = itByPrev->second.begin(); mi != itByPrev->second.end(); ++mi) {
758 const CTransaction& orphanTx = *(*mi)->second.tx;
759 const uint256& orphanHash = orphanTx.GetHash();
760 vOrphanErase.push_back(orphanHash);
764 // Erase orphan transactions include or precluded by this block
765 if (vOrphanErase.size()) {
766 int nErased = 0;
767 BOOST_FOREACH(uint256 &orphanHash, vOrphanErase) {
768 nErased += EraseOrphanTx(orphanHash);
770 LogPrint("mempool", "Erased %d orphan tx included or conflicted by block\n", nErased);
774 static CCriticalSection cs_most_recent_block;
775 static std::shared_ptr<const CBlock> most_recent_block;
776 static std::shared_ptr<const CBlockHeaderAndShortTxIDs> most_recent_compact_block;
777 static uint256 most_recent_block_hash;
779 void PeerLogicValidation::NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock) {
780 std::shared_ptr<const CBlockHeaderAndShortTxIDs> pcmpctblock = std::make_shared<const CBlockHeaderAndShortTxIDs> (*pblock, true);
781 const CNetMsgMaker msgMaker(PROTOCOL_VERSION);
783 LOCK(cs_main);
785 static int nHighestFastAnnounce = 0;
786 if (pindex->nHeight <= nHighestFastAnnounce)
787 return;
788 nHighestFastAnnounce = pindex->nHeight;
790 bool fWitnessEnabled = IsWitnessEnabled(pindex->pprev, Params().GetConsensus());
791 uint256 hashBlock(pblock->GetHash());
794 LOCK(cs_most_recent_block);
795 most_recent_block_hash = hashBlock;
796 most_recent_block = pblock;
797 most_recent_compact_block = pcmpctblock;
800 connman->ForEachNode([this, &pcmpctblock, pindex, &msgMaker, fWitnessEnabled, &hashBlock](CNode* pnode) {
801 // TODO: Avoid the repeated-serialization here
802 if (pnode->nVersion < INVALID_CB_NO_BAN_VERSION || pnode->fDisconnect)
803 return;
804 ProcessBlockAvailability(pnode->GetId());
805 CNodeState &state = *State(pnode->GetId());
806 // If the peer has, or we announced to them the previous block already,
807 // but we don't think they have this one, go ahead and announce it
808 if (state.fPreferHeaderAndIDs && (!fWitnessEnabled || state.fWantsCmpctWitness) &&
809 !PeerHasHeader(&state, pindex) && PeerHasHeader(&state, pindex->pprev)) {
811 LogPrint("net", "%s sending header-and-ids %s to peer=%d\n", "PeerLogicValidation::NewPoWValidBlock",
812 hashBlock.ToString(), pnode->id);
813 connman->PushMessage(pnode, msgMaker.Make(NetMsgType::CMPCTBLOCK, *pcmpctblock));
814 state.pindexBestHeaderSent = pindex;
819 void PeerLogicValidation::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) {
820 const int nNewHeight = pindexNew->nHeight;
821 connman->SetBestHeight(nNewHeight);
823 if (!fInitialDownload) {
824 // Find the hashes of all blocks that weren't previously in the best chain.
825 std::vector<uint256> vHashes;
826 const CBlockIndex *pindexToAnnounce = pindexNew;
827 while (pindexToAnnounce != pindexFork) {
828 vHashes.push_back(pindexToAnnounce->GetBlockHash());
829 pindexToAnnounce = pindexToAnnounce->pprev;
830 if (vHashes.size() == MAX_BLOCKS_TO_ANNOUNCE) {
831 // Limit announcements in case of a huge reorganization.
832 // Rely on the peer's synchronization mechanism in that case.
833 break;
836 // Relay inventory, but don't relay old inventory during initial block download.
837 connman->ForEachNode([nNewHeight, &vHashes](CNode* pnode) {
838 if (nNewHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 0)) {
839 BOOST_REVERSE_FOREACH(const uint256& hash, vHashes) {
840 pnode->PushBlockHash(hash);
844 connman->WakeMessageHandler();
847 nTimeBestReceived = GetTime();
850 void PeerLogicValidation::BlockChecked(const CBlock& block, const CValidationState& state) {
851 LOCK(cs_main);
853 const uint256 hash(block.GetHash());
854 std::map<uint256, std::pair<NodeId, bool>>::iterator it = mapBlockSource.find(hash);
856 int nDoS = 0;
857 if (state.IsInvalid(nDoS)) {
858 if (it != mapBlockSource.end() && State(it->second.first)) {
859 assert (state.GetRejectCode() < REJECT_INTERNAL); // Blocks are never rejected with internal reject codes
860 CBlockReject reject = {(unsigned char)state.GetRejectCode(), state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), hash};
861 State(it->second.first)->rejects.push_back(reject);
862 if (nDoS > 0 && it->second.second)
863 Misbehaving(it->second.first, nDoS);
866 // Check that:
867 // 1. The block is valid
868 // 2. We're not in initial block download
869 // 3. This is currently the best block we're aware of. We haven't updated
870 // the tip yet so we have no way to check this directly here. Instead we
871 // just check that there are currently no other blocks in flight.
872 else if (state.IsValid() &&
873 !IsInitialBlockDownload() &&
874 mapBlocksInFlight.count(hash) == mapBlocksInFlight.size()) {
875 if (it != mapBlockSource.end()) {
876 MaybeSetPeerAsAnnouncingHeaderAndIDs(it->second.first, *connman);
879 if (it != mapBlockSource.end())
880 mapBlockSource.erase(it);
883 //////////////////////////////////////////////////////////////////////////////
885 // Messages
889 bool static AlreadyHave(const CInv& inv) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
891 switch (inv.type)
893 case MSG_TX:
894 case MSG_WITNESS_TX:
896 assert(recentRejects);
897 if (chainActive.Tip()->GetBlockHash() != hashRecentRejectsChainTip)
899 // If the chain tip has changed previously rejected transactions
900 // might be now valid, e.g. due to a nLockTime'd tx becoming valid,
901 // or a double-spend. Reset the rejects filter and give those
902 // txs a second chance.
903 hashRecentRejectsChainTip = chainActive.Tip()->GetBlockHash();
904 recentRejects->reset();
907 // Use pcoinsTip->HaveCoinsInCache as a quick approximation to exclude
908 // requesting or processing some txs which have already been included in a block
909 return recentRejects->contains(inv.hash) ||
910 mempool.exists(inv.hash) ||
911 mapOrphanTransactions.count(inv.hash) ||
912 pcoinsTip->HaveCoinsInCache(inv.hash);
914 case MSG_BLOCK:
915 case MSG_WITNESS_BLOCK:
916 return mapBlockIndex.count(inv.hash);
918 // Don't know what it is, just say we already got one
919 return true;
922 static void RelayTransaction(const CTransaction& tx, CConnman& connman)
924 CInv inv(MSG_TX, tx.GetHash());
925 connman.ForEachNode([&inv](CNode* pnode)
927 pnode->PushInventory(inv);
931 static void RelayAddress(const CAddress& addr, bool fReachable, CConnman& connman)
933 unsigned int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
935 // Relay to a limited number of other nodes
936 // Use deterministic randomness to send to the same nodes for 24 hours
937 // at a time so the addrKnowns of the chosen nodes prevent repeats
938 uint64_t hashAddr = addr.GetHash();
939 const CSipHasher hasher = connman.GetDeterministicRandomizer(RANDOMIZER_ID_ADDRESS_RELAY).Write(hashAddr << 32).Write((GetTime() + hashAddr) / (24*60*60));
940 FastRandomContext insecure_rand;
942 std::array<std::pair<uint64_t, CNode*>,2> best{{{0, nullptr}, {0, nullptr}}};
943 assert(nRelayNodes <= best.size());
945 auto sortfunc = [&best, &hasher, nRelayNodes](CNode* pnode) {
946 if (pnode->nVersion >= CADDR_TIME_VERSION) {
947 uint64_t hashKey = CSipHasher(hasher).Write(pnode->id).Finalize();
948 for (unsigned int i = 0; i < nRelayNodes; i++) {
949 if (hashKey > best[i].first) {
950 std::copy(best.begin() + i, best.begin() + nRelayNodes - 1, best.begin() + i + 1);
951 best[i] = std::make_pair(hashKey, pnode);
952 break;
958 auto pushfunc = [&addr, &best, nRelayNodes, &insecure_rand] {
959 for (unsigned int i = 0; i < nRelayNodes && best[i].first != 0; i++) {
960 best[i].second->PushAddress(addr, insecure_rand);
964 connman.ForEachNodeThen(std::move(sortfunc), std::move(pushfunc));
967 void static ProcessGetData(CNode* pfrom, const Consensus::Params& consensusParams, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
969 std::deque<CInv>::iterator it = pfrom->vRecvGetData.begin();
970 std::vector<CInv> vNotFound;
971 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
972 LOCK(cs_main);
974 while (it != pfrom->vRecvGetData.end()) {
975 // Don't bother if send buffer is too full to respond anyway
976 if (pfrom->fPauseSend)
977 break;
979 const CInv &inv = *it;
981 if (interruptMsgProc)
982 return;
984 it++;
986 if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK || inv.type == MSG_CMPCT_BLOCK || inv.type == MSG_WITNESS_BLOCK)
988 bool send = false;
989 BlockMap::iterator mi = mapBlockIndex.find(inv.hash);
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 std::shared_ptr<const CBlock> a_recent_block;
1001 LOCK(cs_most_recent_block);
1002 a_recent_block = most_recent_block;
1004 CValidationState dummy;
1005 ActivateBestChain(dummy, Params(), a_recent_block);
1007 if (chainActive.Contains(mi->second)) {
1008 send = true;
1009 } else {
1010 static const int nOneMonth = 30 * 24 * 60 * 60;
1011 // To prevent fingerprinting attacks, only send blocks outside of the active
1012 // chain if they are valid, and no more than a month older (both in time, and in
1013 // best equivalent proof of work) than the best header chain we know about.
1014 send = mi->second->IsValid(BLOCK_VALID_SCRIPTS) && (pindexBestHeader != NULL) &&
1015 (pindexBestHeader->GetBlockTime() - mi->second->GetBlockTime() < nOneMonth) &&
1016 (GetBlockProofEquivalentTime(*pindexBestHeader, *mi->second, *pindexBestHeader, consensusParams) < nOneMonth);
1017 if (!send) {
1018 LogPrintf("%s: ignoring request from peer=%i for old block that isn't in the main chain\n", __func__, pfrom->GetId());
1022 // disconnect node in case we have reached the outbound limit for serving historical blocks
1023 // never disconnect whitelisted nodes
1024 static const int nOneWeek = 7 * 24 * 60 * 60; // assume > 1 week = historical
1025 if (send && connman.OutboundTargetReached(true) && ( ((pindexBestHeader != NULL) && (pindexBestHeader->GetBlockTime() - mi->second->GetBlockTime() > nOneWeek)) || inv.type == MSG_FILTERED_BLOCK) && !pfrom->fWhitelisted)
1027 LogPrint("net", "historical block serving limit reached, disconnect peer=%d\n", pfrom->GetId());
1029 //disconnect node
1030 pfrom->fDisconnect = true;
1031 send = false;
1033 // Pruned nodes may have deleted the block, so check whether
1034 // it's available before trying to send.
1035 if (send && (mi->second->nStatus & BLOCK_HAVE_DATA))
1037 // Send block from disk
1038 CBlock block;
1039 if (!ReadBlockFromDisk(block, (*mi).second, consensusParams))
1040 assert(!"cannot load block from disk");
1041 if (inv.type == MSG_BLOCK)
1042 connman.PushMessage(pfrom, msgMaker.Make(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::BLOCK, block));
1043 else if (inv.type == MSG_WITNESS_BLOCK)
1044 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::BLOCK, block));
1045 else if (inv.type == MSG_FILTERED_BLOCK)
1047 bool sendMerkleBlock = false;
1048 CMerkleBlock merkleBlock;
1050 LOCK(pfrom->cs_filter);
1051 if (pfrom->pfilter) {
1052 sendMerkleBlock = true;
1053 merkleBlock = CMerkleBlock(block, *pfrom->pfilter);
1056 if (sendMerkleBlock) {
1057 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::MERKLEBLOCK, merkleBlock));
1058 // CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see
1059 // This avoids hurting performance by pointlessly requiring a round-trip
1060 // Note that there is currently no way for a node to request any single transactions we didn't send here -
1061 // they must either disconnect and retry or request the full block.
1062 // Thus, the protocol spec specified allows for us to provide duplicate txn here,
1063 // however we MUST always provide at least what the remote peer needs
1064 typedef std::pair<unsigned int, uint256> PairType;
1065 BOOST_FOREACH(PairType& pair, merkleBlock.vMatchedTxn)
1066 connman.PushMessage(pfrom, msgMaker.Make(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::TX, *block.vtx[pair.first]));
1068 // else
1069 // no response
1071 else if (inv.type == MSG_CMPCT_BLOCK)
1073 // If a peer is asking for old blocks, we're almost guaranteed
1074 // they won't have a useful mempool to match against a compact block,
1075 // and we don't feel like constructing the object for them, so
1076 // instead we respond with the full, non-compact block.
1077 bool fPeerWantsWitness = State(pfrom->GetId())->fWantsCmpctWitness;
1078 int nSendFlags = fPeerWantsWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
1079 if (CanDirectFetch(consensusParams) && mi->second->nHeight >= chainActive.Height() - MAX_CMPCTBLOCK_DEPTH) {
1080 CBlockHeaderAndShortTxIDs cmpctblock(block, fPeerWantsWitness);
1081 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
1082 } else
1083 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::BLOCK, block));
1086 // Trigger the peer node to send a getblocks request for the next batch of inventory
1087 if (inv.hash == pfrom->hashContinue)
1089 // Bypass PushInventory, this must send even if redundant,
1090 // and we want it right after the last block so they don't
1091 // wait for other stuff first.
1092 std::vector<CInv> vInv;
1093 vInv.push_back(CInv(MSG_BLOCK, chainActive.Tip()->GetBlockHash()));
1094 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::INV, vInv));
1095 pfrom->hashContinue.SetNull();
1099 else if (inv.type == MSG_TX || inv.type == MSG_WITNESS_TX)
1101 // Send stream from relay memory
1102 bool push = false;
1103 auto mi = mapRelay.find(inv.hash);
1104 int nSendFlags = (inv.type == MSG_TX ? SERIALIZE_TRANSACTION_NO_WITNESS : 0);
1105 if (mi != mapRelay.end()) {
1106 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::TX, *mi->second));
1107 push = true;
1108 } else if (pfrom->timeLastMempoolReq) {
1109 auto txinfo = mempool.info(inv.hash);
1110 // To protect privacy, do not answer getdata using the mempool when
1111 // that TX couldn't have been INVed in reply to a MEMPOOL request.
1112 if (txinfo.tx && txinfo.nTime <= pfrom->timeLastMempoolReq) {
1113 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::TX, *txinfo.tx));
1114 push = true;
1117 if (!push) {
1118 vNotFound.push_back(inv);
1122 // Track requests for our stuff.
1123 GetMainSignals().Inventory(inv.hash);
1125 if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK || inv.type == MSG_CMPCT_BLOCK || inv.type == MSG_WITNESS_BLOCK)
1126 break;
1130 pfrom->vRecvGetData.erase(pfrom->vRecvGetData.begin(), it);
1132 if (!vNotFound.empty()) {
1133 // Let the peer know that we didn't find what it asked for, so it doesn't
1134 // have to wait around forever. Currently only SPV clients actually care
1135 // about this message: it's needed when they are recursively walking the
1136 // dependencies of relevant unconfirmed transactions. SPV clients want to
1137 // do that because they want to know about (and store and rebroadcast and
1138 // risk analyze) the dependencies of transactions relevant to them, without
1139 // having to download the entire memory pool.
1140 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::NOTFOUND, vNotFound));
1144 uint32_t GetFetchFlags(CNode* pfrom, const CBlockIndex* pprev, const Consensus::Params& chainparams) {
1145 uint32_t nFetchFlags = 0;
1146 if ((pfrom->GetLocalServices() & NODE_WITNESS) && State(pfrom->GetId())->fHaveWitness) {
1147 nFetchFlags |= MSG_WITNESS_FLAG;
1149 return nFetchFlags;
1152 inline void static SendBlockTransactions(const CBlock& block, const BlockTransactionsRequest& req, CNode* pfrom, CConnman& connman) {
1153 BlockTransactions resp(req);
1154 for (size_t i = 0; i < req.indexes.size(); i++) {
1155 if (req.indexes[i] >= block.vtx.size()) {
1156 LOCK(cs_main);
1157 Misbehaving(pfrom->GetId(), 100);
1158 LogPrintf("Peer %d sent us a getblocktxn with out-of-bounds tx indices", pfrom->id);
1159 return;
1161 resp.txn[i] = block.vtx[req.indexes[i]];
1163 LOCK(cs_main);
1164 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
1165 int nSendFlags = State(pfrom->GetId())->fWantsCmpctWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
1166 connman.PushMessage(pfrom, msgMaker.Make(nSendFlags, NetMsgType::BLOCKTXN, resp));
1169 bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv, int64_t nTimeReceived, const CChainParams& chainparams, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
1171 LogPrint("net", "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand), vRecv.size(), pfrom->id);
1172 if (IsArgSet("-dropmessagestest") && GetRand(GetArg("-dropmessagestest", 0)) == 0)
1174 LogPrintf("dropmessagestest DROPPING RECV MESSAGE\n");
1175 return true;
1179 if (!(pfrom->GetLocalServices() & NODE_BLOOM) &&
1180 (strCommand == NetMsgType::FILTERLOAD ||
1181 strCommand == NetMsgType::FILTERADD))
1183 if (pfrom->nVersion >= NO_BLOOM_VERSION) {
1184 LOCK(cs_main);
1185 Misbehaving(pfrom->GetId(), 100);
1186 return false;
1187 } else {
1188 pfrom->fDisconnect = true;
1189 return false;
1193 if (strCommand == NetMsgType::REJECT)
1195 if (fDebug) {
1196 try {
1197 std::string strMsg; unsigned char ccode; std::string strReason;
1198 vRecv >> LIMITED_STRING(strMsg, CMessageHeader::COMMAND_SIZE) >> ccode >> LIMITED_STRING(strReason, MAX_REJECT_MESSAGE_LENGTH);
1200 std::ostringstream ss;
1201 ss << strMsg << " code " << itostr(ccode) << ": " << strReason;
1203 if (strMsg == NetMsgType::BLOCK || strMsg == NetMsgType::TX)
1205 uint256 hash;
1206 vRecv >> hash;
1207 ss << ": hash " << hash.ToString();
1209 LogPrint("net", "Reject %s\n", SanitizeString(ss.str()));
1210 } catch (const std::ios_base::failure&) {
1211 // Avoid feedback loops by preventing reject messages from triggering a new reject message.
1212 LogPrint("net", "Unparseable reject message received\n");
1217 else if (strCommand == NetMsgType::VERSION)
1219 // Each connection can only send one version message
1220 if (pfrom->nVersion != 0)
1222 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_DUPLICATE, std::string("Duplicate version message")));
1223 LOCK(cs_main);
1224 Misbehaving(pfrom->GetId(), 1);
1225 return false;
1228 int64_t nTime;
1229 CAddress addrMe;
1230 CAddress addrFrom;
1231 uint64_t nNonce = 1;
1232 uint64_t nServiceInt;
1233 ServiceFlags nServices;
1234 int nVersion;
1235 int nSendVersion;
1236 std::string strSubVer;
1237 std::string cleanSubVer;
1238 int nStartingHeight = -1;
1239 bool fRelay = true;
1241 vRecv >> nVersion >> nServiceInt >> nTime >> addrMe;
1242 nSendVersion = std::min(nVersion, PROTOCOL_VERSION);
1243 nServices = ServiceFlags(nServiceInt);
1244 if (!pfrom->fInbound)
1246 connman.SetServices(pfrom->addr, nServices);
1248 if (pfrom->nServicesExpected & ~nServices)
1250 LogPrint("net", "peer=%d does not offer the expected services (%08x offered, %08x expected); disconnecting\n", pfrom->id, nServices, pfrom->nServicesExpected);
1251 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_NONSTANDARD,
1252 strprintf("Expected to offer services %08x", pfrom->nServicesExpected)));
1253 pfrom->fDisconnect = true;
1254 return false;
1257 if (nVersion < MIN_PEER_PROTO_VERSION)
1259 // disconnect from peers older than this proto version
1260 LogPrintf("peer=%d using obsolete version %i; disconnecting\n", pfrom->id, nVersion);
1261 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_OBSOLETE,
1262 strprintf("Version must be %d or greater", MIN_PEER_PROTO_VERSION)));
1263 pfrom->fDisconnect = true;
1264 return false;
1267 if (nVersion == 10300)
1268 nVersion = 300;
1269 if (!vRecv.empty())
1270 vRecv >> addrFrom >> nNonce;
1271 if (!vRecv.empty()) {
1272 vRecv >> LIMITED_STRING(strSubVer, MAX_SUBVERSION_LENGTH);
1273 cleanSubVer = SanitizeString(strSubVer);
1275 if (!vRecv.empty()) {
1276 vRecv >> nStartingHeight;
1278 if (!vRecv.empty())
1279 vRecv >> fRelay;
1280 // Disconnect if we connected to ourself
1281 if (pfrom->fInbound && !connman.CheckIncomingNonce(nNonce))
1283 LogPrintf("connected to self at %s, disconnecting\n", pfrom->addr.ToString());
1284 pfrom->fDisconnect = true;
1285 return true;
1288 if (pfrom->fInbound && addrMe.IsRoutable())
1290 SeenLocal(addrMe);
1293 // Be shy and don't send version until we hear
1294 if (pfrom->fInbound)
1295 PushNodeVersion(pfrom, connman, GetAdjustedTime());
1297 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::VERACK));
1299 pfrom->nServices = nServices;
1300 pfrom->SetAddrLocal(addrMe);
1302 LOCK(pfrom->cs_SubVer);
1303 pfrom->strSubVer = strSubVer;
1304 pfrom->cleanSubVer = cleanSubVer;
1306 pfrom->nStartingHeight = nStartingHeight;
1307 pfrom->fClient = !(nServices & NODE_NETWORK);
1309 LOCK(pfrom->cs_filter);
1310 pfrom->fRelayTxes = fRelay; // set to true after we get the first filter* message
1313 // Change version
1314 pfrom->SetSendVersion(nSendVersion);
1315 pfrom->nVersion = nVersion;
1317 if((nServices & NODE_WITNESS))
1319 LOCK(cs_main);
1320 State(pfrom->GetId())->fHaveWitness = true;
1323 // Potentially mark this peer as a preferred download peer.
1325 LOCK(cs_main);
1326 UpdatePreferredDownload(pfrom, State(pfrom->GetId()));
1329 if (!pfrom->fInbound)
1331 // Advertise our address
1332 if (fListen && !IsInitialBlockDownload())
1334 CAddress addr = GetLocalAddress(&pfrom->addr, pfrom->GetLocalServices());
1335 FastRandomContext insecure_rand;
1336 if (addr.IsRoutable())
1338 LogPrint("net", "ProcessMessages: advertising address %s\n", addr.ToString());
1339 pfrom->PushAddress(addr, insecure_rand);
1340 } else if (IsPeerAddrLocalGood(pfrom)) {
1341 addr.SetIP(addrMe);
1342 LogPrint("net", "ProcessMessages: advertising address %s\n", addr.ToString());
1343 pfrom->PushAddress(addr, insecure_rand);
1347 // Get recent addresses
1348 if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || connman.GetAddressCount() < 1000)
1350 connman.PushMessage(pfrom, CNetMsgMaker(nSendVersion).Make(NetMsgType::GETADDR));
1351 pfrom->fGetAddr = true;
1353 connman.MarkAddressGood(pfrom->addr);
1356 std::string remoteAddr;
1357 if (fLogIPs)
1358 remoteAddr = ", peeraddr=" + pfrom->addr.ToString();
1360 LogPrintf("receive version message: %s: version %d, blocks=%d, us=%s, peer=%d%s\n",
1361 cleanSubVer, pfrom->nVersion,
1362 pfrom->nStartingHeight, addrMe.ToString(), pfrom->id,
1363 remoteAddr);
1365 int64_t nTimeOffset = nTime - GetTime();
1366 pfrom->nTimeOffset = nTimeOffset;
1367 AddTimeData(pfrom->addr, nTimeOffset);
1369 // If the peer is old enough to have the old alert system, send it the final alert.
1370 if (pfrom->nVersion <= 70012) {
1371 CDataStream finalAlert(ParseHex("60010000000000000000000000ffffff7f00000000ffffff7ffeffff7f01ffffff7f00000000ffffff7f00ffffff7f002f555247454e543a20416c657274206b657920636f6d70726f6d697365642c2075706772616465207265717569726564004630440220653febd6410f470f6bae11cad19c48413becb1ac2c17f908fd0fd53bdc3abd5202206d0e9c96fe88d4a0f01ed9dedae2b6f9e00da94cad0fecaae66ecf689bf71b50"), SER_NETWORK, PROTOCOL_VERSION);
1372 connman.PushMessage(pfrom, CNetMsgMaker(nSendVersion).Make("alert", finalAlert));
1375 // Feeler connections exist only to verify if address is online.
1376 if (pfrom->fFeeler) {
1377 assert(pfrom->fInbound == false);
1378 pfrom->fDisconnect = true;
1380 return true;
1384 else if (pfrom->nVersion == 0)
1386 // Must have a version message before anything else
1387 LOCK(cs_main);
1388 Misbehaving(pfrom->GetId(), 1);
1389 return false;
1392 // At this point, the outgoing message serialization version can't change.
1393 const CNetMsgMaker msgMaker(pfrom->GetSendVersion());
1395 if (strCommand == NetMsgType::VERACK)
1397 pfrom->SetRecvVersion(std::min(pfrom->nVersion.load(), PROTOCOL_VERSION));
1399 if (!pfrom->fInbound) {
1400 // Mark this node as currently connected, so we update its timestamp later.
1401 LOCK(cs_main);
1402 State(pfrom->GetId())->fCurrentlyConnected = true;
1405 if (pfrom->nVersion >= SENDHEADERS_VERSION) {
1406 // Tell our peer we prefer to receive headers rather than inv's
1407 // We send this to non-NODE NETWORK peers as well, because even
1408 // non-NODE NETWORK peers can announce blocks (such as pruning
1409 // nodes)
1410 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDHEADERS));
1412 if (pfrom->nVersion >= SHORT_IDS_BLOCKS_VERSION) {
1413 // Tell our peer we are willing to provide version 1 or 2 cmpctblocks
1414 // However, we do not request new block announcements using
1415 // cmpctblock messages.
1416 // We send this to non-NODE NETWORK peers as well, because
1417 // they may wish to request compact blocks from us
1418 bool fAnnounceUsingCMPCTBLOCK = false;
1419 uint64_t nCMPCTBLOCKVersion = 2;
1420 if (pfrom->GetLocalServices() & NODE_WITNESS)
1421 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
1422 nCMPCTBLOCKVersion = 1;
1423 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::SENDCMPCT, fAnnounceUsingCMPCTBLOCK, nCMPCTBLOCKVersion));
1425 pfrom->fSuccessfullyConnected = true;
1428 else if (!pfrom->fSuccessfullyConnected)
1430 // Must have a verack message before anything else
1431 LOCK(cs_main);
1432 Misbehaving(pfrom->GetId(), 1);
1433 return false;
1436 else if (strCommand == NetMsgType::ADDR)
1438 std::vector<CAddress> vAddr;
1439 vRecv >> vAddr;
1441 // Don't want addr from older versions unless seeding
1442 if (pfrom->nVersion < CADDR_TIME_VERSION && connman.GetAddressCount() > 1000)
1443 return true;
1444 if (vAddr.size() > 1000)
1446 LOCK(cs_main);
1447 Misbehaving(pfrom->GetId(), 20);
1448 return error("message addr size() = %u", vAddr.size());
1451 // Store the new addresses
1452 std::vector<CAddress> vAddrOk;
1453 int64_t nNow = GetAdjustedTime();
1454 int64_t nSince = nNow - 10 * 60;
1455 BOOST_FOREACH(CAddress& addr, vAddr)
1457 if (interruptMsgProc)
1458 return true;
1460 if ((addr.nServices & REQUIRED_SERVICES) != REQUIRED_SERVICES)
1461 continue;
1463 if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
1464 addr.nTime = nNow - 5 * 24 * 60 * 60;
1465 pfrom->AddAddressKnown(addr);
1466 bool fReachable = IsReachable(addr);
1467 if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
1469 // Relay to a limited number of other nodes
1470 RelayAddress(addr, fReachable, connman);
1472 // Do not store addresses outside our network
1473 if (fReachable)
1474 vAddrOk.push_back(addr);
1476 connman.AddNewAddresses(vAddrOk, pfrom->addr, 2 * 60 * 60);
1477 if (vAddr.size() < 1000)
1478 pfrom->fGetAddr = false;
1479 if (pfrom->fOneShot)
1480 pfrom->fDisconnect = true;
1483 else if (strCommand == NetMsgType::SENDHEADERS)
1485 LOCK(cs_main);
1486 State(pfrom->GetId())->fPreferHeaders = true;
1489 else if (strCommand == NetMsgType::SENDCMPCT)
1491 bool fAnnounceUsingCMPCTBLOCK = false;
1492 uint64_t nCMPCTBLOCKVersion = 0;
1493 vRecv >> fAnnounceUsingCMPCTBLOCK >> nCMPCTBLOCKVersion;
1494 if (nCMPCTBLOCKVersion == 1 || ((pfrom->GetLocalServices() & NODE_WITNESS) && nCMPCTBLOCKVersion == 2)) {
1495 LOCK(cs_main);
1496 // fProvidesHeaderAndIDs is used to "lock in" version of compact blocks we send (fWantsCmpctWitness)
1497 if (!State(pfrom->GetId())->fProvidesHeaderAndIDs) {
1498 State(pfrom->GetId())->fProvidesHeaderAndIDs = true;
1499 State(pfrom->GetId())->fWantsCmpctWitness = nCMPCTBLOCKVersion == 2;
1501 if (State(pfrom->GetId())->fWantsCmpctWitness == (nCMPCTBLOCKVersion == 2)) // ignore later version announces
1502 State(pfrom->GetId())->fPreferHeaderAndIDs = fAnnounceUsingCMPCTBLOCK;
1503 if (!State(pfrom->GetId())->fSupportsDesiredCmpctVersion) {
1504 if (pfrom->GetLocalServices() & NODE_WITNESS)
1505 State(pfrom->GetId())->fSupportsDesiredCmpctVersion = (nCMPCTBLOCKVersion == 2);
1506 else
1507 State(pfrom->GetId())->fSupportsDesiredCmpctVersion = (nCMPCTBLOCKVersion == 1);
1513 else if (strCommand == NetMsgType::INV)
1515 std::vector<CInv> vInv;
1516 vRecv >> vInv;
1517 if (vInv.size() > MAX_INV_SZ)
1519 LOCK(cs_main);
1520 Misbehaving(pfrom->GetId(), 20);
1521 return error("message inv size() = %u", vInv.size());
1524 bool fBlocksOnly = !fRelayTxes;
1526 // Allow whitelisted peers to send data other than blocks in blocks only mode if whitelistrelay is true
1527 if (pfrom->fWhitelisted && GetBoolArg("-whitelistrelay", DEFAULT_WHITELISTRELAY))
1528 fBlocksOnly = false;
1530 LOCK(cs_main);
1532 uint32_t nFetchFlags = GetFetchFlags(pfrom, chainActive.Tip(), chainparams.GetConsensus());
1534 std::vector<CInv> vToFetch;
1536 for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
1538 CInv &inv = vInv[nInv];
1540 if (interruptMsgProc)
1541 return true;
1543 bool fAlreadyHave = AlreadyHave(inv);
1544 LogPrint("net", "got inv: %s %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom->id);
1546 if (inv.type == MSG_TX) {
1547 inv.type |= nFetchFlags;
1550 if (inv.type == MSG_BLOCK) {
1551 UpdateBlockAvailability(pfrom->GetId(), inv.hash);
1552 if (!fAlreadyHave && !fImporting && !fReindex && !mapBlocksInFlight.count(inv.hash)) {
1553 // We used to request the full block here, but since headers-announcements are now the
1554 // primary method of announcement on the network, and since, in the case that a node
1555 // fell back to inv we probably have a reorg which we should get the headers for first,
1556 // we now only provide a getheaders response here. When we receive the headers, we will
1557 // then ask for the blocks we need.
1558 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), inv.hash));
1559 LogPrint("net", "getheaders (%d) %s to peer=%d\n", pindexBestHeader->nHeight, inv.hash.ToString(), pfrom->id);
1562 else
1564 pfrom->AddInventoryKnown(inv);
1565 if (fBlocksOnly)
1566 LogPrint("net", "transaction (%s) inv sent in violation of protocol peer=%d\n", inv.hash.ToString(), pfrom->id);
1567 else if (!fAlreadyHave && !fImporting && !fReindex && !IsInitialBlockDownload())
1568 pfrom->AskFor(inv);
1571 // Track requests for our stuff
1572 GetMainSignals().Inventory(inv.hash);
1575 if (!vToFetch.empty())
1576 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vToFetch));
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 if (fDebug || (vInv.size() != 1))
1592 LogPrint("net", "received getdata (%u invsz) peer=%d\n", vInv.size(), pfrom->id);
1594 if ((fDebug && vInv.size() > 0) || (vInv.size() == 1))
1595 LogPrint("net", "received getdata for: %s peer=%d\n", vInv[0].ToString(), pfrom->id);
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("net", "getblocks %d to %s limit %d from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), nLimit, pfrom->id);
1635 for (; pindex; pindex = chainActive.Next(pindex))
1637 if (pindex->GetBlockHash() == hashStop)
1639 LogPrint("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("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("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->id);
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("net", "Peer %d sent us a getblocktxn for a block > %i deep", pfrom->id, 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("net", "Ignoring getheaders from peer=%d because node is in initial block download\n", pfrom->id);
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("net", "getheaders %d to %s from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), pfrom->id);
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("net", "transaction sent in violation of protocol peer=%d\n", pfrom->id);
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("mempool", "AcceptToMemoryPool: peer=%d: accepted %s (poolsz %u txn, %u kB)\n",
1809 pfrom->id,
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("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("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("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 BOOST_FOREACH(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 BOOST_FOREACH(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, chainActive.Tip(), chainparams.GetConsensus());
1885 BOOST_FOREACH(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("mempool", "mapOrphan overflow, removed %u tx\n", nEvicted);
1897 } else {
1898 LogPrint("mempool", "not keeping orphan with rejected parents %s\n",tx.GetHash().ToString());
1899 // We will continue to reject this tx since it has rejected
1900 // parents so avoid re-requesting it from other peers.
1901 recentRejects->insert(tx.GetHash());
1903 } else {
1904 if (!tx.HasWitness() && !state.CorruptionPossible()) {
1905 // Do not use rejection cache for witness transactions or
1906 // witness-stripped transactions, as they can have been malleated.
1907 // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
1908 assert(recentRejects);
1909 recentRejects->insert(tx.GetHash());
1910 if (RecursiveDynamicUsage(*ptx) < 100000) {
1911 AddToCompactExtraTransactions(ptx);
1913 } else if (tx.HasWitness() && RecursiveDynamicUsage(*ptx) < 100000) {
1914 AddToCompactExtraTransactions(ptx);
1917 if (pfrom->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY)) {
1918 // Always relay transactions received from whitelisted peers, even
1919 // if they were already in the mempool or rejected from it due
1920 // to policy, allowing the node to function as a gateway for
1921 // nodes hidden behind it.
1923 // Never relay transactions that we would assign a non-zero DoS
1924 // score for, as we expect peers to do the same with us in that
1925 // case.
1926 int nDoS = 0;
1927 if (!state.IsInvalid(nDoS) || nDoS == 0) {
1928 LogPrintf("Force relaying tx %s from whitelisted peer=%d\n", tx.GetHash().ToString(), pfrom->id);
1929 RelayTransaction(tx, connman);
1930 } else {
1931 LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s)\n", tx.GetHash().ToString(), pfrom->id, FormatStateMessage(state));
1936 for (const CTransactionRef& removedTx : lRemovedTxn)
1937 AddToCompactExtraTransactions(removedTx);
1939 int nDoS = 0;
1940 if (state.IsInvalid(nDoS))
1942 LogPrint("mempoolrej", "%s from peer=%d was not accepted: %s\n", tx.GetHash().ToString(),
1943 pfrom->id,
1944 FormatStateMessage(state));
1945 if (state.GetRejectCode() < REJECT_INTERNAL) // Never send AcceptToMemoryPool's internal codes over P2P
1946 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::REJECT, strCommand, (unsigned char)state.GetRejectCode(),
1947 state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), inv.hash));
1948 if (nDoS > 0) {
1949 Misbehaving(pfrom->GetId(), nDoS);
1955 else if (strCommand == NetMsgType::CMPCTBLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
1957 CBlockHeaderAndShortTxIDs cmpctblock;
1958 vRecv >> cmpctblock;
1961 LOCK(cs_main);
1963 if (mapBlockIndex.find(cmpctblock.header.hashPrevBlock) == mapBlockIndex.end()) {
1964 // Doesn't connect (or is genesis), instead of DoSing in AcceptBlockHeader, request deeper headers
1965 if (!IsInitialBlockDownload())
1966 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), uint256()));
1967 return true;
1971 const CBlockIndex *pindex = NULL;
1972 CValidationState state;
1973 if (!ProcessNewBlockHeaders({cmpctblock.header}, state, chainparams, &pindex)) {
1974 int nDoS;
1975 if (state.IsInvalid(nDoS)) {
1976 if (nDoS > 0) {
1977 LOCK(cs_main);
1978 Misbehaving(pfrom->GetId(), nDoS);
1980 LogPrintf("Peer %d sent us invalid header via cmpctblock\n", pfrom->id);
1981 return true;
1985 // When we succeed in decoding a block's txids from a cmpctblock
1986 // message we typically jump to the BLOCKTXN handling code, with a
1987 // dummy (empty) BLOCKTXN message, to re-use the logic there in
1988 // completing processing of the putative block (without cs_main).
1989 bool fProcessBLOCKTXN = false;
1990 CDataStream blockTxnMsg(SER_NETWORK, PROTOCOL_VERSION);
1992 // If we end up treating this as a plain headers message, call that as well
1993 // without cs_main.
1994 bool fRevertToHeaderProcessing = false;
1995 CDataStream vHeadersMsg(SER_NETWORK, PROTOCOL_VERSION);
1997 // Keep a CBlock for "optimistic" compactblock reconstructions (see
1998 // below)
1999 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2000 bool fBlockReconstructed = false;
2003 LOCK(cs_main);
2004 // If AcceptBlockHeader returned true, it set pindex
2005 assert(pindex);
2006 UpdateBlockAvailability(pfrom->GetId(), pindex->GetBlockHash());
2008 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator blockInFlightIt = mapBlocksInFlight.find(pindex->GetBlockHash());
2009 bool fAlreadyInFlight = blockInFlightIt != mapBlocksInFlight.end();
2011 if (pindex->nStatus & BLOCK_HAVE_DATA) // Nothing to do here
2012 return true;
2014 if (pindex->nChainWork <= chainActive.Tip()->nChainWork || // We know something better
2015 pindex->nTx != 0) { // We had this block at some point, but pruned it
2016 if (fAlreadyInFlight) {
2017 // We requested this block for some reason, but our mempool will probably be useless
2018 // so we just grab the block via normal getdata
2019 std::vector<CInv> vInv(1);
2020 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom, pindex->pprev, chainparams.GetConsensus()), cmpctblock.header.GetHash());
2021 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2023 return true;
2026 // If we're not close to tip yet, give up and let parallel block fetch work its magic
2027 if (!fAlreadyInFlight && !CanDirectFetch(chainparams.GetConsensus()))
2028 return true;
2030 CNodeState *nodestate = State(pfrom->GetId());
2032 if (IsWitnessEnabled(pindex->pprev, chainparams.GetConsensus()) && !nodestate->fSupportsDesiredCmpctVersion) {
2033 // Don't bother trying to process compact blocks from v1 peers
2034 // after segwit activates.
2035 return true;
2038 // We want to be a bit conservative just to be extra careful about DoS
2039 // possibilities in compact block processing...
2040 if (pindex->nHeight <= chainActive.Height() + 2) {
2041 if ((!fAlreadyInFlight && nodestate->nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) ||
2042 (fAlreadyInFlight && blockInFlightIt->second.first == pfrom->GetId())) {
2043 std::list<QueuedBlock>::iterator* queuedBlockIt = NULL;
2044 if (!MarkBlockAsInFlight(pfrom->GetId(), pindex->GetBlockHash(), chainparams.GetConsensus(), pindex, &queuedBlockIt)) {
2045 if (!(*queuedBlockIt)->partialBlock)
2046 (*queuedBlockIt)->partialBlock.reset(new PartiallyDownloadedBlock(&mempool));
2047 else {
2048 // The block was already in flight using compact blocks from the same peer
2049 LogPrint("net", "Peer sent us compact block we were already syncing!\n");
2050 return true;
2054 PartiallyDownloadedBlock& partialBlock = *(*queuedBlockIt)->partialBlock;
2055 ReadStatus status = partialBlock.InitData(cmpctblock, vExtraTxnForCompact);
2056 if (status == READ_STATUS_INVALID) {
2057 MarkBlockAsReceived(pindex->GetBlockHash()); // Reset in-flight state in case of whitelist
2058 Misbehaving(pfrom->GetId(), 100);
2059 LogPrintf("Peer %d sent us invalid compact block\n", pfrom->id);
2060 return true;
2061 } else if (status == READ_STATUS_FAILED) {
2062 // Duplicate txindexes, the block is now in-flight, so just request it
2063 std::vector<CInv> vInv(1);
2064 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom, pindex->pprev, chainparams.GetConsensus()), cmpctblock.header.GetHash());
2065 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2066 return true;
2069 BlockTransactionsRequest req;
2070 for (size_t i = 0; i < cmpctblock.BlockTxCount(); i++) {
2071 if (!partialBlock.IsTxAvailable(i))
2072 req.indexes.push_back(i);
2074 if (req.indexes.empty()) {
2075 // Dirty hack to jump to BLOCKTXN code (TODO: move message handling into their own functions)
2076 BlockTransactions txn;
2077 txn.blockhash = cmpctblock.header.GetHash();
2078 blockTxnMsg << txn;
2079 fProcessBLOCKTXN = true;
2080 } else {
2081 req.blockhash = pindex->GetBlockHash();
2082 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETBLOCKTXN, req));
2084 } else {
2085 // This block is either already in flight from a different
2086 // peer, or this peer has too many blocks outstanding to
2087 // download from.
2088 // Optimistically try to reconstruct anyway since we might be
2089 // able to without any round trips.
2090 PartiallyDownloadedBlock tempBlock(&mempool);
2091 ReadStatus status = tempBlock.InitData(cmpctblock, vExtraTxnForCompact);
2092 if (status != READ_STATUS_OK) {
2093 // TODO: don't ignore failures
2094 return true;
2096 std::vector<CTransactionRef> dummy;
2097 status = tempBlock.FillBlock(*pblock, dummy);
2098 if (status == READ_STATUS_OK) {
2099 fBlockReconstructed = true;
2102 } else {
2103 if (fAlreadyInFlight) {
2104 // We requested this block, but its far into the future, so our
2105 // mempool will probably be useless - request the block normally
2106 std::vector<CInv> vInv(1);
2107 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(pfrom, pindex->pprev, chainparams.GetConsensus()), cmpctblock.header.GetHash());
2108 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vInv));
2109 return true;
2110 } else {
2111 // If this was an announce-cmpctblock, we want the same treatment as a header message
2112 // Dirty hack to process as if it were just a headers message (TODO: move message handling into their own functions)
2113 std::vector<CBlock> headers;
2114 headers.push_back(cmpctblock.header);
2115 vHeadersMsg << headers;
2116 fRevertToHeaderProcessing = true;
2119 } // cs_main
2121 if (fProcessBLOCKTXN)
2122 return ProcessMessage(pfrom, NetMsgType::BLOCKTXN, blockTxnMsg, nTimeReceived, chainparams, connman, interruptMsgProc);
2124 if (fRevertToHeaderProcessing)
2125 return ProcessMessage(pfrom, NetMsgType::HEADERS, vHeadersMsg, nTimeReceived, chainparams, connman, interruptMsgProc);
2127 if (fBlockReconstructed) {
2128 // If we got here, we were able to optimistically reconstruct a
2129 // block that is in flight from some other peer.
2131 LOCK(cs_main);
2132 mapBlockSource.emplace(pblock->GetHash(), std::make_pair(pfrom->GetId(), false));
2134 bool fNewBlock = false;
2135 ProcessNewBlock(chainparams, pblock, true, &fNewBlock);
2136 if (fNewBlock)
2137 pfrom->nLastBlockTime = GetTime();
2139 LOCK(cs_main); // hold cs_main for CBlockIndex::IsValid()
2140 if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS)) {
2141 // Clear download state for this block, which is in
2142 // process from some other peer. We do this after calling
2143 // ProcessNewBlock so that a malleated cmpctblock announcement
2144 // can't be used to interfere with block relay.
2145 MarkBlockAsReceived(pblock->GetHash());
2151 else if (strCommand == NetMsgType::BLOCKTXN && !fImporting && !fReindex) // Ignore blocks received while importing
2153 BlockTransactions resp;
2154 vRecv >> resp;
2156 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2157 bool fBlockRead = false;
2159 LOCK(cs_main);
2161 std::map<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator> >::iterator it = mapBlocksInFlight.find(resp.blockhash);
2162 if (it == mapBlocksInFlight.end() || !it->second.second->partialBlock ||
2163 it->second.first != pfrom->GetId()) {
2164 LogPrint("net", "Peer %d sent us block transactions for block we weren't expecting\n", pfrom->id);
2165 return true;
2168 PartiallyDownloadedBlock& partialBlock = *it->second.second->partialBlock;
2169 ReadStatus status = partialBlock.FillBlock(*pblock, resp.txn);
2170 if (status == READ_STATUS_INVALID) {
2171 MarkBlockAsReceived(resp.blockhash); // Reset in-flight state in case of whitelist
2172 Misbehaving(pfrom->GetId(), 100);
2173 LogPrintf("Peer %d sent us invalid compact block/non-matching block transactions\n", pfrom->id);
2174 return true;
2175 } else if (status == READ_STATUS_FAILED) {
2176 // Might have collided, fall back to getdata now :(
2177 std::vector<CInv> invs;
2178 invs.push_back(CInv(MSG_BLOCK | GetFetchFlags(pfrom, chainActive.Tip(), chainparams.GetConsensus()), resp.blockhash));
2179 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, invs));
2180 } else {
2181 // Block is either okay, or possibly we received
2182 // READ_STATUS_CHECKBLOCK_FAILED.
2183 // Note that CheckBlock can only fail for one of a few reasons:
2184 // 1. bad-proof-of-work (impossible here, because we've already
2185 // accepted the header)
2186 // 2. merkleroot doesn't match the transactions given (already
2187 // caught in FillBlock with READ_STATUS_FAILED, so
2188 // impossible here)
2189 // 3. the block is otherwise invalid (eg invalid coinbase,
2190 // block is too big, too many legacy sigops, etc).
2191 // So if CheckBlock failed, #3 is the only possibility.
2192 // Under BIP 152, we don't DoS-ban unless proof of work is
2193 // invalid (we don't require all the stateless checks to have
2194 // been run). This is handled below, so just treat this as
2195 // though the block was successfully read, and rely on the
2196 // handling in ProcessNewBlock to ensure the block index is
2197 // updated, reject messages go out, etc.
2198 MarkBlockAsReceived(resp.blockhash); // it is now an empty pointer
2199 fBlockRead = true;
2200 // mapBlockSource is only used for sending reject messages and DoS scores,
2201 // so the race between here and cs_main in ProcessNewBlock is fine.
2202 // BIP 152 permits peers to relay compact blocks after validating
2203 // the header only; we should not punish peers if the block turns
2204 // out to be invalid.
2205 mapBlockSource.emplace(resp.blockhash, std::make_pair(pfrom->GetId(), false));
2207 } // Don't hold cs_main when we call into ProcessNewBlock
2208 if (fBlockRead) {
2209 bool fNewBlock = false;
2210 // Since we requested this block (it was in mapBlocksInFlight), force it to be processed,
2211 // even if it would not be a candidate for new tip (missing previous block, chain not long enough, etc)
2212 ProcessNewBlock(chainparams, pblock, true, &fNewBlock);
2213 if (fNewBlock)
2214 pfrom->nLastBlockTime = GetTime();
2219 else if (strCommand == NetMsgType::HEADERS && !fImporting && !fReindex) // Ignore headers received while importing
2221 std::vector<CBlockHeader> headers;
2223 // Bypass the normal CBlock deserialization, as we don't want to risk deserializing 2000 full blocks.
2224 unsigned int nCount = ReadCompactSize(vRecv);
2225 if (nCount > MAX_HEADERS_RESULTS) {
2226 LOCK(cs_main);
2227 Misbehaving(pfrom->GetId(), 20);
2228 return error("headers message size = %u", nCount);
2230 headers.resize(nCount);
2231 for (unsigned int n = 0; n < nCount; n++) {
2232 vRecv >> headers[n];
2233 ReadCompactSize(vRecv); // ignore tx count; assume it is 0.
2236 if (nCount == 0) {
2237 // Nothing interesting. Stop asking this peers for more headers.
2238 return true;
2241 const CBlockIndex *pindexLast = NULL;
2243 LOCK(cs_main);
2244 CNodeState *nodestate = State(pfrom->GetId());
2246 // If this looks like it could be a block announcement (nCount <
2247 // MAX_BLOCKS_TO_ANNOUNCE), use special logic for handling headers that
2248 // don't connect:
2249 // - Send a getheaders message in response to try to connect the chain.
2250 // - The peer can send up to MAX_UNCONNECTING_HEADERS in a row that
2251 // don't connect before giving DoS points
2252 // - Once a headers message is received that is valid and does connect,
2253 // nUnconnectingHeaders gets reset back to 0.
2254 if (mapBlockIndex.find(headers[0].hashPrevBlock) == mapBlockIndex.end() && nCount < MAX_BLOCKS_TO_ANNOUNCE) {
2255 nodestate->nUnconnectingHeaders++;
2256 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexBestHeader), uint256()));
2257 LogPrint("net", "received header %s: missing prev block %s, sending getheaders (%d) to end (peer=%d, nUnconnectingHeaders=%d)\n",
2258 headers[0].GetHash().ToString(),
2259 headers[0].hashPrevBlock.ToString(),
2260 pindexBestHeader->nHeight,
2261 pfrom->id, nodestate->nUnconnectingHeaders);
2262 // Set hashLastUnknownBlock for this peer, so that if we
2263 // eventually get the headers - even from a different peer -
2264 // we can use this peer to download.
2265 UpdateBlockAvailability(pfrom->GetId(), headers.back().GetHash());
2267 if (nodestate->nUnconnectingHeaders % MAX_UNCONNECTING_HEADERS == 0) {
2268 Misbehaving(pfrom->GetId(), 20);
2270 return true;
2273 uint256 hashLastBlock;
2274 for (const CBlockHeader& header : headers) {
2275 if (!hashLastBlock.IsNull() && header.hashPrevBlock != hashLastBlock) {
2276 Misbehaving(pfrom->GetId(), 20);
2277 return error("non-continuous headers sequence");
2279 hashLastBlock = header.GetHash();
2283 CValidationState state;
2284 if (!ProcessNewBlockHeaders(headers, state, chainparams, &pindexLast)) {
2285 int nDoS;
2286 if (state.IsInvalid(nDoS)) {
2287 if (nDoS > 0) {
2288 LOCK(cs_main);
2289 Misbehaving(pfrom->GetId(), nDoS);
2291 return error("invalid header received");
2296 LOCK(cs_main);
2297 CNodeState *nodestate = State(pfrom->GetId());
2298 if (nodestate->nUnconnectingHeaders > 0) {
2299 LogPrint("net", "peer=%d: resetting nUnconnectingHeaders (%d -> 0)\n", pfrom->id, nodestate->nUnconnectingHeaders);
2301 nodestate->nUnconnectingHeaders = 0;
2303 assert(pindexLast);
2304 UpdateBlockAvailability(pfrom->GetId(), pindexLast->GetBlockHash());
2306 if (nCount == MAX_HEADERS_RESULTS) {
2307 // Headers message had its maximum size; the peer may have more headers.
2308 // TODO: optimize: if pindexLast is an ancestor of chainActive.Tip or pindexBestHeader, continue
2309 // from there instead.
2310 LogPrint("net", "more getheaders (%d) to end to peer=%d (startheight:%d)\n", pindexLast->nHeight, pfrom->id, pfrom->nStartingHeight);
2311 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexLast), uint256()));
2314 bool fCanDirectFetch = CanDirectFetch(chainparams.GetConsensus());
2315 // If this set of headers is valid and ends in a block with at least as
2316 // much work as our tip, download as much as possible.
2317 if (fCanDirectFetch && pindexLast->IsValid(BLOCK_VALID_TREE) && chainActive.Tip()->nChainWork <= pindexLast->nChainWork) {
2318 std::vector<const CBlockIndex*> vToFetch;
2319 const CBlockIndex *pindexWalk = pindexLast;
2320 // Calculate all the blocks we'd need to switch to pindexLast, up to a limit.
2321 while (pindexWalk && !chainActive.Contains(pindexWalk) && vToFetch.size() <= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
2322 if (!(pindexWalk->nStatus & BLOCK_HAVE_DATA) &&
2323 !mapBlocksInFlight.count(pindexWalk->GetBlockHash()) &&
2324 (!IsWitnessEnabled(pindexWalk->pprev, chainparams.GetConsensus()) || State(pfrom->GetId())->fHaveWitness)) {
2325 // We don't have this block, and it's not yet in flight.
2326 vToFetch.push_back(pindexWalk);
2328 pindexWalk = pindexWalk->pprev;
2330 // If pindexWalk still isn't on our main chain, we're looking at a
2331 // very large reorg at a time we think we're close to caught up to
2332 // the main chain -- this shouldn't really happen. Bail out on the
2333 // direct fetch and rely on parallel download instead.
2334 if (!chainActive.Contains(pindexWalk)) {
2335 LogPrint("net", "Large reorg, won't direct fetch to %s (%d)\n",
2336 pindexLast->GetBlockHash().ToString(),
2337 pindexLast->nHeight);
2338 } else {
2339 std::vector<CInv> vGetData;
2340 // Download as much as possible, from earliest to latest.
2341 BOOST_REVERSE_FOREACH(const CBlockIndex *pindex, vToFetch) {
2342 if (nodestate->nBlocksInFlight >= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
2343 // Can't download any more from this peer
2344 break;
2346 uint32_t nFetchFlags = GetFetchFlags(pfrom, pindex->pprev, chainparams.GetConsensus());
2347 vGetData.push_back(CInv(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash()));
2348 MarkBlockAsInFlight(pfrom->GetId(), pindex->GetBlockHash(), chainparams.GetConsensus(), pindex);
2349 LogPrint("net", "Requesting block %s from peer=%d\n",
2350 pindex->GetBlockHash().ToString(), pfrom->id);
2352 if (vGetData.size() > 1) {
2353 LogPrint("net", "Downloading blocks toward %s (%d) via headers direct fetch\n",
2354 pindexLast->GetBlockHash().ToString(), pindexLast->nHeight);
2356 if (vGetData.size() > 0) {
2357 if (nodestate->fSupportsDesiredCmpctVersion && vGetData.size() == 1 && mapBlocksInFlight.size() == 1 && pindexLast->pprev->IsValid(BLOCK_VALID_CHAIN)) {
2358 // In any case, we want to download using a compact block, not a regular one
2359 vGetData[0] = CInv(MSG_CMPCT_BLOCK, vGetData[0].hash);
2361 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::GETDATA, vGetData));
2368 else if (strCommand == NetMsgType::BLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
2370 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
2371 vRecv >> *pblock;
2373 LogPrint("net", "received block %s peer=%d\n", pblock->GetHash().ToString(), pfrom->id);
2375 // Process all blocks from whitelisted peers, even if not requested,
2376 // unless we're still syncing with the network.
2377 // Such an unrequested block may still be processed, subject to the
2378 // conditions in AcceptBlock().
2379 bool forceProcessing = pfrom->fWhitelisted && !IsInitialBlockDownload();
2380 const uint256 hash(pblock->GetHash());
2382 LOCK(cs_main);
2383 // Also always process if we requested the block explicitly, as we may
2384 // need it even though it is not a candidate for a new best tip.
2385 forceProcessing |= MarkBlockAsReceived(hash);
2386 // mapBlockSource is only used for sending reject messages and DoS scores,
2387 // so the race between here and cs_main in ProcessNewBlock is fine.
2388 mapBlockSource.emplace(hash, std::make_pair(pfrom->GetId(), true));
2390 bool fNewBlock = false;
2391 ProcessNewBlock(chainparams, pblock, forceProcessing, &fNewBlock);
2392 if (fNewBlock)
2393 pfrom->nLastBlockTime = GetTime();
2397 else if (strCommand == NetMsgType::GETADDR)
2399 // This asymmetric behavior for inbound and outbound connections was introduced
2400 // to prevent a fingerprinting attack: an attacker can send specific fake addresses
2401 // to users' AddrMan and later request them by sending getaddr messages.
2402 // Making nodes which are behind NAT and can only make outgoing connections ignore
2403 // the getaddr message mitigates the attack.
2404 if (!pfrom->fInbound) {
2405 LogPrint("net", "Ignoring \"getaddr\" from outbound connection. peer=%d\n", pfrom->id);
2406 return true;
2409 // Only send one GetAddr response per connection to reduce resource waste
2410 // and discourage addr stamping of INV announcements.
2411 if (pfrom->fSentAddr) {
2412 LogPrint("net", "Ignoring repeated \"getaddr\". peer=%d\n", pfrom->id);
2413 return true;
2415 pfrom->fSentAddr = true;
2417 pfrom->vAddrToSend.clear();
2418 std::vector<CAddress> vAddr = connman.GetAddresses();
2419 FastRandomContext insecure_rand;
2420 BOOST_FOREACH(const CAddress &addr, vAddr)
2421 pfrom->PushAddress(addr, insecure_rand);
2425 else if (strCommand == NetMsgType::MEMPOOL)
2427 if (!(pfrom->GetLocalServices() & NODE_BLOOM) && !pfrom->fWhitelisted)
2429 LogPrint("net", "mempool request with bloom filters disabled, disconnect peer=%d\n", pfrom->GetId());
2430 pfrom->fDisconnect = true;
2431 return true;
2434 if (connman.OutboundTargetReached(false) && !pfrom->fWhitelisted)
2436 LogPrint("net", "mempool request with bandwidth limit reached, disconnect peer=%d\n", pfrom->GetId());
2437 pfrom->fDisconnect = true;
2438 return true;
2441 LOCK(pfrom->cs_inventory);
2442 pfrom->fSendMempool = true;
2446 else if (strCommand == NetMsgType::PING)
2448 if (pfrom->nVersion > BIP0031_VERSION)
2450 uint64_t nonce = 0;
2451 vRecv >> nonce;
2452 // Echo the message back with the nonce. This allows for two useful features:
2454 // 1) A remote node can quickly check if the connection is operational
2455 // 2) Remote nodes can measure the latency of the network thread. If this node
2456 // is overloaded it won't respond to pings quickly and the remote node can
2457 // avoid sending us more work, like chain download requests.
2459 // The nonce stops the remote getting confused between different pings: without
2460 // it, if the remote node sends a ping once per second and this node takes 5
2461 // seconds to respond to each, the 5th ping the remote sends would appear to
2462 // return very quickly.
2463 connman.PushMessage(pfrom, msgMaker.Make(NetMsgType::PONG, nonce));
2468 else if (strCommand == NetMsgType::PONG)
2470 int64_t pingUsecEnd = nTimeReceived;
2471 uint64_t nonce = 0;
2472 size_t nAvail = vRecv.in_avail();
2473 bool bPingFinished = false;
2474 std::string sProblem;
2476 if (nAvail >= sizeof(nonce)) {
2477 vRecv >> nonce;
2479 // Only process pong message if there is an outstanding ping (old ping without nonce should never pong)
2480 if (pfrom->nPingNonceSent != 0) {
2481 if (nonce == pfrom->nPingNonceSent) {
2482 // Matching pong received, this ping is no longer outstanding
2483 bPingFinished = true;
2484 int64_t pingUsecTime = pingUsecEnd - pfrom->nPingUsecStart;
2485 if (pingUsecTime > 0) {
2486 // Successful ping time measurement, replace previous
2487 pfrom->nPingUsecTime = pingUsecTime;
2488 pfrom->nMinPingUsecTime = std::min(pfrom->nMinPingUsecTime.load(), pingUsecTime);
2489 } else {
2490 // This should never happen
2491 sProblem = "Timing mishap";
2493 } else {
2494 // Nonce mismatches are normal when pings are overlapping
2495 sProblem = "Nonce mismatch";
2496 if (nonce == 0) {
2497 // This is most likely a bug in another implementation somewhere; cancel this ping
2498 bPingFinished = true;
2499 sProblem = "Nonce zero";
2502 } else {
2503 sProblem = "Unsolicited pong without ping";
2505 } else {
2506 // This is most likely a bug in another implementation somewhere; cancel this ping
2507 bPingFinished = true;
2508 sProblem = "Short payload";
2511 if (!(sProblem.empty())) {
2512 LogPrint("net", "pong peer=%d: %s, %x expected, %x received, %u bytes\n",
2513 pfrom->id,
2514 sProblem,
2515 pfrom->nPingNonceSent,
2516 nonce,
2517 nAvail);
2519 if (bPingFinished) {
2520 pfrom->nPingNonceSent = 0;
2525 else if (strCommand == NetMsgType::FILTERLOAD)
2527 CBloomFilter filter;
2528 vRecv >> filter;
2530 if (!filter.IsWithinSizeConstraints())
2532 // There is no excuse for sending a too-large filter
2533 LOCK(cs_main);
2534 Misbehaving(pfrom->GetId(), 100);
2536 else
2538 LOCK(pfrom->cs_filter);
2539 delete pfrom->pfilter;
2540 pfrom->pfilter = new CBloomFilter(filter);
2541 pfrom->pfilter->UpdateEmptyFull();
2542 pfrom->fRelayTxes = true;
2547 else if (strCommand == NetMsgType::FILTERADD)
2549 std::vector<unsigned char> vData;
2550 vRecv >> vData;
2552 // Nodes must NEVER send a data item > 520 bytes (the max size for a script data object,
2553 // and thus, the maximum size any matched object can have) in a filteradd message
2554 bool bad = false;
2555 if (vData.size() > MAX_SCRIPT_ELEMENT_SIZE) {
2556 bad = true;
2557 } else {
2558 LOCK(pfrom->cs_filter);
2559 if (pfrom->pfilter) {
2560 pfrom->pfilter->insert(vData);
2561 } else {
2562 bad = true;
2565 if (bad) {
2566 LOCK(cs_main);
2567 Misbehaving(pfrom->GetId(), 100);
2572 else if (strCommand == NetMsgType::FILTERCLEAR)
2574 LOCK(pfrom->cs_filter);
2575 if (pfrom->GetLocalServices() & NODE_BLOOM) {
2576 delete pfrom->pfilter;
2577 pfrom->pfilter = new CBloomFilter();
2579 pfrom->fRelayTxes = true;
2582 else if (strCommand == NetMsgType::FEEFILTER) {
2583 CAmount newFeeFilter = 0;
2584 vRecv >> newFeeFilter;
2585 if (MoneyRange(newFeeFilter)) {
2587 LOCK(pfrom->cs_feeFilter);
2588 pfrom->minFeeFilter = newFeeFilter;
2590 LogPrint("net", "received: feefilter of %s from peer=%d\n", CFeeRate(newFeeFilter).ToString(), pfrom->id);
2594 else if (strCommand == NetMsgType::NOTFOUND) {
2595 // We do not care about the NOTFOUND message, but logging an Unknown Command
2596 // message would be undesirable as we transmit it ourselves.
2599 else {
2600 // Ignore unknown commands for extensibility
2601 LogPrint("net", "Unknown command \"%s\" from peer=%d\n", SanitizeString(strCommand), pfrom->id);
2606 return true;
2609 static bool SendRejectsAndCheckIfBanned(CNode* pnode, CConnman& connman)
2611 AssertLockHeld(cs_main);
2612 CNodeState &state = *State(pnode->GetId());
2614 BOOST_FOREACH(const CBlockReject& reject, state.rejects) {
2615 connman.PushMessage(pnode, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, (std::string)NetMsgType::BLOCK, reject.chRejectCode, reject.strRejectReason, reject.hashBlock));
2617 state.rejects.clear();
2619 if (state.fShouldBan) {
2620 state.fShouldBan = false;
2621 if (pnode->fWhitelisted)
2622 LogPrintf("Warning: not punishing whitelisted peer %s!\n", pnode->addr.ToString());
2623 else if (pnode->fAddnode)
2624 LogPrintf("Warning: not punishing addnoded peer %s!\n", pnode->addr.ToString());
2625 else {
2626 pnode->fDisconnect = true;
2627 if (pnode->addr.IsLocal())
2628 LogPrintf("Warning: not banning local peer %s!\n", pnode->addr.ToString());
2629 else
2631 connman.Ban(pnode->addr, BanReasonNodeMisbehaving);
2634 return true;
2636 return false;
2639 bool ProcessMessages(CNode* pfrom, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
2641 const CChainParams& chainparams = Params();
2643 // Message format
2644 // (4) message start
2645 // (12) command
2646 // (4) size
2647 // (4) checksum
2648 // (x) data
2650 bool fMoreWork = false;
2652 if (!pfrom->vRecvGetData.empty())
2653 ProcessGetData(pfrom, chainparams.GetConsensus(), connman, interruptMsgProc);
2655 if (pfrom->fDisconnect)
2656 return false;
2658 // this maintains the order of responses
2659 if (!pfrom->vRecvGetData.empty()) return true;
2661 // Don't bother if send buffer is too full to respond anyway
2662 if (pfrom->fPauseSend)
2663 return false;
2665 std::list<CNetMessage> msgs;
2667 LOCK(pfrom->cs_vProcessMsg);
2668 if (pfrom->vProcessMsg.empty())
2669 return false;
2670 // Just take one message
2671 msgs.splice(msgs.begin(), pfrom->vProcessMsg, pfrom->vProcessMsg.begin());
2672 pfrom->nProcessQueueSize -= msgs.front().vRecv.size() + CMessageHeader::HEADER_SIZE;
2673 pfrom->fPauseRecv = pfrom->nProcessQueueSize > connman.GetReceiveFloodSize();
2674 fMoreWork = !pfrom->vProcessMsg.empty();
2676 CNetMessage& msg(msgs.front());
2678 msg.SetVersion(pfrom->GetRecvVersion());
2679 // Scan for message start
2680 if (memcmp(msg.hdr.pchMessageStart, chainparams.MessageStart(), CMessageHeader::MESSAGE_START_SIZE) != 0) {
2681 LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg.hdr.GetCommand()), pfrom->id);
2682 pfrom->fDisconnect = true;
2683 return false;
2686 // Read header
2687 CMessageHeader& hdr = msg.hdr;
2688 if (!hdr.IsValid(chainparams.MessageStart()))
2690 LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", SanitizeString(hdr.GetCommand()), pfrom->id);
2691 return fMoreWork;
2693 std::string strCommand = hdr.GetCommand();
2695 // Message size
2696 unsigned int nMessageSize = hdr.nMessageSize;
2698 // Checksum
2699 CDataStream& vRecv = msg.vRecv;
2700 const uint256& hash = msg.GetMessageHash();
2701 if (memcmp(hash.begin(), hdr.pchChecksum, CMessageHeader::CHECKSUM_SIZE) != 0)
2703 LogPrintf("%s(%s, %u bytes): CHECKSUM ERROR expected %s was %s\n", __func__,
2704 SanitizeString(strCommand), nMessageSize,
2705 HexStr(hash.begin(), hash.begin()+CMessageHeader::CHECKSUM_SIZE),
2706 HexStr(hdr.pchChecksum, hdr.pchChecksum+CMessageHeader::CHECKSUM_SIZE));
2707 return fMoreWork;
2710 // Process message
2711 bool fRet = false;
2714 fRet = ProcessMessage(pfrom, strCommand, vRecv, msg.nTime, chainparams, connman, interruptMsgProc);
2715 if (interruptMsgProc)
2716 return false;
2717 if (!pfrom->vRecvGetData.empty())
2718 fMoreWork = true;
2720 catch (const std::ios_base::failure& e)
2722 connman.PushMessage(pfrom, CNetMsgMaker(INIT_PROTO_VERSION).Make(NetMsgType::REJECT, strCommand, REJECT_MALFORMED, std::string("error parsing message")));
2723 if (strstr(e.what(), "end of data"))
2725 // Allow exceptions from under-length message on vRecv
2726 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());
2728 else if (strstr(e.what(), "size too large"))
2730 // Allow exceptions from over-long size
2731 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__, SanitizeString(strCommand), nMessageSize, e.what());
2733 else if (strstr(e.what(), "non-canonical ReadCompactSize()"))
2735 // Allow exceptions from non-canonical encoding
2736 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__, SanitizeString(strCommand), nMessageSize, e.what());
2738 else
2740 PrintExceptionContinue(&e, "ProcessMessages()");
2743 catch (const std::exception& e) {
2744 PrintExceptionContinue(&e, "ProcessMessages()");
2745 } catch (...) {
2746 PrintExceptionContinue(NULL, "ProcessMessages()");
2749 if (!fRet) {
2750 LogPrintf("%s(%s, %u bytes) FAILED peer=%d\n", __func__, SanitizeString(strCommand), nMessageSize, pfrom->id);
2753 LOCK(cs_main);
2754 SendRejectsAndCheckIfBanned(pfrom, connman);
2756 return fMoreWork;
2759 class CompareInvMempoolOrder
2761 CTxMemPool *mp;
2762 public:
2763 CompareInvMempoolOrder(CTxMemPool *_mempool)
2765 mp = _mempool;
2768 bool operator()(std::set<uint256>::iterator a, std::set<uint256>::iterator b)
2770 /* As std::make_heap produces a max-heap, we want the entries with the
2771 * fewest ancestors/highest fee to sort later. */
2772 return mp->CompareDepthAndScore(*b, *a);
2776 bool SendMessages(CNode* pto, CConnman& connman, const std::atomic<bool>& interruptMsgProc)
2778 const Consensus::Params& consensusParams = Params().GetConsensus();
2780 // Don't send anything until the version handshake is complete
2781 if (!pto->fSuccessfullyConnected || pto->fDisconnect)
2782 return true;
2784 // If we get here, the outgoing message serialization version is set and can't change.
2785 const CNetMsgMaker msgMaker(pto->GetSendVersion());
2788 // Message: ping
2790 bool pingSend = false;
2791 if (pto->fPingQueued) {
2792 // RPC ping request by user
2793 pingSend = true;
2795 if (pto->nPingNonceSent == 0 && pto->nPingUsecStart + PING_INTERVAL * 1000000 < GetTimeMicros()) {
2796 // Ping automatically sent as a latency probe & keepalive.
2797 pingSend = true;
2799 if (pingSend) {
2800 uint64_t nonce = 0;
2801 while (nonce == 0) {
2802 GetRandBytes((unsigned char*)&nonce, sizeof(nonce));
2804 pto->fPingQueued = false;
2805 pto->nPingUsecStart = GetTimeMicros();
2806 if (pto->nVersion > BIP0031_VERSION) {
2807 pto->nPingNonceSent = nonce;
2808 connman.PushMessage(pto, msgMaker.Make(NetMsgType::PING, nonce));
2809 } else {
2810 // Peer is too old to support ping command with nonce, pong will never arrive.
2811 pto->nPingNonceSent = 0;
2812 connman.PushMessage(pto, msgMaker.Make(NetMsgType::PING));
2816 TRY_LOCK(cs_main, lockMain); // Acquire cs_main for IsInitialBlockDownload() and CNodeState()
2817 if (!lockMain)
2818 return true;
2820 if (SendRejectsAndCheckIfBanned(pto, connman))
2821 return true;
2822 CNodeState &state = *State(pto->GetId());
2824 // Address refresh broadcast
2825 int64_t nNow = GetTimeMicros();
2826 if (!IsInitialBlockDownload() && pto->nNextLocalAddrSend < nNow) {
2827 AdvertiseLocal(pto);
2828 pto->nNextLocalAddrSend = PoissonNextSend(nNow, AVG_LOCAL_ADDRESS_BROADCAST_INTERVAL);
2832 // Message: addr
2834 if (pto->nNextAddrSend < nNow) {
2835 pto->nNextAddrSend = PoissonNextSend(nNow, AVG_ADDRESS_BROADCAST_INTERVAL);
2836 std::vector<CAddress> vAddr;
2837 vAddr.reserve(pto->vAddrToSend.size());
2838 BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2840 if (!pto->addrKnown.contains(addr.GetKey()))
2842 pto->addrKnown.insert(addr.GetKey());
2843 vAddr.push_back(addr);
2844 // receiver rejects addr messages larger than 1000
2845 if (vAddr.size() >= 1000)
2847 connman.PushMessage(pto, msgMaker.Make(NetMsgType::ADDR, vAddr));
2848 vAddr.clear();
2852 pto->vAddrToSend.clear();
2853 if (!vAddr.empty())
2854 connman.PushMessage(pto, msgMaker.Make(NetMsgType::ADDR, vAddr));
2855 // we only send the big addr message once
2856 if (pto->vAddrToSend.capacity() > 40)
2857 pto->vAddrToSend.shrink_to_fit();
2860 // Start block sync
2861 if (pindexBestHeader == NULL)
2862 pindexBestHeader = chainActive.Tip();
2863 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.
2864 if (!state.fSyncStarted && !pto->fClient && !fImporting && !fReindex) {
2865 // Only actively request headers from a single peer, unless we're close to today.
2866 if ((nSyncStarted == 0 && fFetch) || pindexBestHeader->GetBlockTime() > GetAdjustedTime() - 24 * 60 * 60) {
2867 state.fSyncStarted = true;
2868 nSyncStarted++;
2869 const CBlockIndex *pindexStart = pindexBestHeader;
2870 /* If possible, start at the block preceding the currently
2871 best known header. This ensures that we always get a
2872 non-empty list of headers back as long as the peer
2873 is up-to-date. With a non-empty response, we can initialise
2874 the peer's known best block. This wouldn't be possible
2875 if we requested starting at pindexBestHeader and
2876 got back an empty response. */
2877 if (pindexStart->pprev)
2878 pindexStart = pindexStart->pprev;
2879 LogPrint("net", "initial getheaders (%d) to peer=%d (startheight:%d)\n", pindexStart->nHeight, pto->id, pto->nStartingHeight);
2880 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETHEADERS, chainActive.GetLocator(pindexStart), uint256()));
2884 // Resend wallet transactions that haven't gotten in a block yet
2885 // Except during reindex, importing and IBD, when old wallet
2886 // transactions become unconfirmed and spams other nodes.
2887 if (!fReindex && !fImporting && !IsInitialBlockDownload())
2889 GetMainSignals().Broadcast(nTimeBestReceived, &connman);
2893 // Try sending block announcements via headers
2896 // If we have less than MAX_BLOCKS_TO_ANNOUNCE in our
2897 // list of block hashes we're relaying, and our peer wants
2898 // headers announcements, then find the first header
2899 // not yet known to our peer but would connect, and send.
2900 // If no header would connect, or if we have too many
2901 // blocks, or if the peer doesn't want headers, just
2902 // add all to the inv queue.
2903 LOCK(pto->cs_inventory);
2904 std::vector<CBlock> vHeaders;
2905 bool fRevertToInv = ((!state.fPreferHeaders &&
2906 (!state.fPreferHeaderAndIDs || pto->vBlockHashesToAnnounce.size() > 1)) ||
2907 pto->vBlockHashesToAnnounce.size() > MAX_BLOCKS_TO_ANNOUNCE);
2908 const CBlockIndex *pBestIndex = NULL; // last header queued for delivery
2909 ProcessBlockAvailability(pto->id); // ensure pindexBestKnownBlock is up-to-date
2911 if (!fRevertToInv) {
2912 bool fFoundStartingHeader = false;
2913 // Try to find first header that our peer doesn't have, and
2914 // then send all headers past that one. If we come across any
2915 // headers that aren't on chainActive, give up.
2916 BOOST_FOREACH(const uint256 &hash, pto->vBlockHashesToAnnounce) {
2917 BlockMap::iterator mi = mapBlockIndex.find(hash);
2918 assert(mi != mapBlockIndex.end());
2919 const CBlockIndex *pindex = mi->second;
2920 if (chainActive[pindex->nHeight] != pindex) {
2921 // Bail out if we reorged away from this block
2922 fRevertToInv = true;
2923 break;
2925 if (pBestIndex != NULL && pindex->pprev != pBestIndex) {
2926 // This means that the list of blocks to announce don't
2927 // connect to each other.
2928 // This shouldn't really be possible to hit during
2929 // regular operation (because reorgs should take us to
2930 // a chain that has some block not on the prior chain,
2931 // which should be caught by the prior check), but one
2932 // way this could happen is by using invalidateblock /
2933 // reconsiderblock repeatedly on the tip, causing it to
2934 // be added multiple times to vBlockHashesToAnnounce.
2935 // Robustly deal with this rare situation by reverting
2936 // to an inv.
2937 fRevertToInv = true;
2938 break;
2940 pBestIndex = pindex;
2941 if (fFoundStartingHeader) {
2942 // add this to the headers message
2943 vHeaders.push_back(pindex->GetBlockHeader());
2944 } else if (PeerHasHeader(&state, pindex)) {
2945 continue; // keep looking for the first new block
2946 } else if (pindex->pprev == NULL || PeerHasHeader(&state, pindex->pprev)) {
2947 // Peer doesn't have this header but they do have the prior one.
2948 // Start sending headers.
2949 fFoundStartingHeader = true;
2950 vHeaders.push_back(pindex->GetBlockHeader());
2951 } else {
2952 // Peer doesn't have this header or the prior one -- nothing will
2953 // connect, so bail out.
2954 fRevertToInv = true;
2955 break;
2959 if (!fRevertToInv && !vHeaders.empty()) {
2960 if (vHeaders.size() == 1 && state.fPreferHeaderAndIDs) {
2961 // We only send up to 1 block as header-and-ids, as otherwise
2962 // probably means we're doing an initial-ish-sync or they're slow
2963 LogPrint("net", "%s sending header-and-ids %s to peer=%d\n", __func__,
2964 vHeaders.front().GetHash().ToString(), pto->id);
2966 int nSendFlags = state.fWantsCmpctWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS;
2968 bool fGotBlockFromCache = false;
2970 LOCK(cs_most_recent_block);
2971 if (most_recent_block_hash == pBestIndex->GetBlockHash()) {
2972 if (state.fWantsCmpctWitness)
2973 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, *most_recent_compact_block));
2974 else {
2975 CBlockHeaderAndShortTxIDs cmpctblock(*most_recent_block, state.fWantsCmpctWitness);
2976 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
2978 fGotBlockFromCache = true;
2981 if (!fGotBlockFromCache) {
2982 CBlock block;
2983 bool ret = ReadBlockFromDisk(block, pBestIndex, consensusParams);
2984 assert(ret);
2985 CBlockHeaderAndShortTxIDs cmpctblock(block, state.fWantsCmpctWitness);
2986 connman.PushMessage(pto, msgMaker.Make(nSendFlags, NetMsgType::CMPCTBLOCK, cmpctblock));
2988 state.pindexBestHeaderSent = pBestIndex;
2989 } else if (state.fPreferHeaders) {
2990 if (vHeaders.size() > 1) {
2991 LogPrint("net", "%s: %u headers, range (%s, %s), to peer=%d\n", __func__,
2992 vHeaders.size(),
2993 vHeaders.front().GetHash().ToString(),
2994 vHeaders.back().GetHash().ToString(), pto->id);
2995 } else {
2996 LogPrint("net", "%s: sending header %s to peer=%d\n", __func__,
2997 vHeaders.front().GetHash().ToString(), pto->id);
2999 connman.PushMessage(pto, msgMaker.Make(NetMsgType::HEADERS, vHeaders));
3000 state.pindexBestHeaderSent = pBestIndex;
3001 } else
3002 fRevertToInv = true;
3004 if (fRevertToInv) {
3005 // If falling back to using an inv, just try to inv the tip.
3006 // The last entry in vBlockHashesToAnnounce was our tip at some point
3007 // in the past.
3008 if (!pto->vBlockHashesToAnnounce.empty()) {
3009 const uint256 &hashToAnnounce = pto->vBlockHashesToAnnounce.back();
3010 BlockMap::iterator mi = mapBlockIndex.find(hashToAnnounce);
3011 assert(mi != mapBlockIndex.end());
3012 const CBlockIndex *pindex = mi->second;
3014 // Warn if we're announcing a block that is not on the main chain.
3015 // This should be very rare and could be optimized out.
3016 // Just log for now.
3017 if (chainActive[pindex->nHeight] != pindex) {
3018 LogPrint("net", "Announcing block %s not on main chain (tip=%s)\n",
3019 hashToAnnounce.ToString(), chainActive.Tip()->GetBlockHash().ToString());
3022 // If the peer's chain has this block, don't inv it back.
3023 if (!PeerHasHeader(&state, pindex)) {
3024 pto->PushInventory(CInv(MSG_BLOCK, hashToAnnounce));
3025 LogPrint("net", "%s: sending inv peer=%d hash=%s\n", __func__,
3026 pto->id, hashToAnnounce.ToString());
3030 pto->vBlockHashesToAnnounce.clear();
3034 // Message: inventory
3036 std::vector<CInv> vInv;
3038 LOCK(pto->cs_inventory);
3039 vInv.reserve(std::max<size_t>(pto->vInventoryBlockToSend.size(), INVENTORY_BROADCAST_MAX));
3041 // Add blocks
3042 BOOST_FOREACH(const uint256& hash, pto->vInventoryBlockToSend) {
3043 vInv.push_back(CInv(MSG_BLOCK, hash));
3044 if (vInv.size() == MAX_INV_SZ) {
3045 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3046 vInv.clear();
3049 pto->vInventoryBlockToSend.clear();
3051 // Check whether periodic sends should happen
3052 bool fSendTrickle = pto->fWhitelisted;
3053 if (pto->nNextInvSend < nNow) {
3054 fSendTrickle = true;
3055 // Use half the delay for outbound peers, as there is less privacy concern for them.
3056 pto->nNextInvSend = PoissonNextSend(nNow, INVENTORY_BROADCAST_INTERVAL >> !pto->fInbound);
3059 // Time to send but the peer has requested we not relay transactions.
3060 if (fSendTrickle) {
3061 LOCK(pto->cs_filter);
3062 if (!pto->fRelayTxes) pto->setInventoryTxToSend.clear();
3065 // Respond to BIP35 mempool requests
3066 if (fSendTrickle && pto->fSendMempool) {
3067 auto vtxinfo = mempool.infoAll();
3068 pto->fSendMempool = false;
3069 CAmount filterrate = 0;
3071 LOCK(pto->cs_feeFilter);
3072 filterrate = pto->minFeeFilter;
3075 LOCK(pto->cs_filter);
3077 for (const auto& txinfo : vtxinfo) {
3078 const uint256& hash = txinfo.tx->GetHash();
3079 CInv inv(MSG_TX, hash);
3080 pto->setInventoryTxToSend.erase(hash);
3081 if (filterrate) {
3082 if (txinfo.feeRate.GetFeePerK() < filterrate)
3083 continue;
3085 if (pto->pfilter) {
3086 if (!pto->pfilter->IsRelevantAndUpdate(*txinfo.tx)) continue;
3088 pto->filterInventoryKnown.insert(hash);
3089 vInv.push_back(inv);
3090 if (vInv.size() == MAX_INV_SZ) {
3091 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3092 vInv.clear();
3095 pto->timeLastMempoolReq = GetTime();
3098 // Determine transactions to relay
3099 if (fSendTrickle) {
3100 // Produce a vector with all candidates for sending
3101 std::vector<std::set<uint256>::iterator> vInvTx;
3102 vInvTx.reserve(pto->setInventoryTxToSend.size());
3103 for (std::set<uint256>::iterator it = pto->setInventoryTxToSend.begin(); it != pto->setInventoryTxToSend.end(); it++) {
3104 vInvTx.push_back(it);
3106 CAmount filterrate = 0;
3108 LOCK(pto->cs_feeFilter);
3109 filterrate = pto->minFeeFilter;
3111 // Topologically and fee-rate sort the inventory we send for privacy and priority reasons.
3112 // A heap is used so that not all items need sorting if only a few are being sent.
3113 CompareInvMempoolOrder compareInvMempoolOrder(&mempool);
3114 std::make_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
3115 // No reason to drain out at many times the network's capacity,
3116 // especially since we have many peers and some will draw much shorter delays.
3117 unsigned int nRelayedTransactions = 0;
3118 LOCK(pto->cs_filter);
3119 while (!vInvTx.empty() && nRelayedTransactions < INVENTORY_BROADCAST_MAX) {
3120 // Fetch the top element from the heap
3121 std::pop_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
3122 std::set<uint256>::iterator it = vInvTx.back();
3123 vInvTx.pop_back();
3124 uint256 hash = *it;
3125 // Remove it from the to-be-sent set
3126 pto->setInventoryTxToSend.erase(it);
3127 // Check if not in the filter already
3128 if (pto->filterInventoryKnown.contains(hash)) {
3129 continue;
3131 // Not in the mempool anymore? don't bother sending it.
3132 auto txinfo = mempool.info(hash);
3133 if (!txinfo.tx) {
3134 continue;
3136 if (filterrate && txinfo.feeRate.GetFeePerK() < filterrate) {
3137 continue;
3139 if (pto->pfilter && !pto->pfilter->IsRelevantAndUpdate(*txinfo.tx)) continue;
3140 // Send
3141 vInv.push_back(CInv(MSG_TX, hash));
3142 nRelayedTransactions++;
3144 // Expire old relay messages
3145 while (!vRelayExpiration.empty() && vRelayExpiration.front().first < nNow)
3147 mapRelay.erase(vRelayExpiration.front().second);
3148 vRelayExpiration.pop_front();
3151 auto ret = mapRelay.insert(std::make_pair(hash, std::move(txinfo.tx)));
3152 if (ret.second) {
3153 vRelayExpiration.push_back(std::make_pair(nNow + 15 * 60 * 1000000, ret.first));
3156 if (vInv.size() == MAX_INV_SZ) {
3157 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3158 vInv.clear();
3160 pto->filterInventoryKnown.insert(hash);
3164 if (!vInv.empty())
3165 connman.PushMessage(pto, msgMaker.Make(NetMsgType::INV, vInv));
3167 // Detect whether we're stalling
3168 nNow = GetTimeMicros();
3169 if (state.nStallingSince && state.nStallingSince < nNow - 1000000 * BLOCK_STALLING_TIMEOUT) {
3170 // Stalling only triggers when the block download window cannot move. During normal steady state,
3171 // the download window should be much larger than the to-be-downloaded set of blocks, so disconnection
3172 // should only happen during initial block download.
3173 LogPrintf("Peer=%d is stalling block download, disconnecting\n", pto->id);
3174 pto->fDisconnect = true;
3175 return true;
3177 // In case there is a block that has been in flight from this peer for 2 + 0.5 * N times the block interval
3178 // (with N the number of peers from which we're downloading validated blocks), disconnect due to timeout.
3179 // We compensate for other peers to prevent killing off peers due to our own downstream link
3180 // being saturated. We only count validated in-flight blocks so peers can't advertise non-existing block hashes
3181 // to unreasonably increase our timeout.
3182 if (state.vBlocksInFlight.size() > 0) {
3183 QueuedBlock &queuedBlock = state.vBlocksInFlight.front();
3184 int nOtherPeersWithValidatedDownloads = nPeersWithValidatedDownloads - (state.nBlocksInFlightValidHeaders > 0);
3185 if (nNow > state.nDownloadingSince + consensusParams.nPowTargetSpacing * (BLOCK_DOWNLOAD_TIMEOUT_BASE + BLOCK_DOWNLOAD_TIMEOUT_PER_PEER * nOtherPeersWithValidatedDownloads)) {
3186 LogPrintf("Timeout downloading block %s from peer=%d, disconnecting\n", queuedBlock.hash.ToString(), pto->id);
3187 pto->fDisconnect = true;
3188 return true;
3193 // Message: getdata (blocks)
3195 std::vector<CInv> vGetData;
3196 if (!pto->fClient && (fFetch || !IsInitialBlockDownload()) && state.nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
3197 std::vector<const CBlockIndex*> vToDownload;
3198 NodeId staller = -1;
3199 FindNextBlocksToDownload(pto->GetId(), MAX_BLOCKS_IN_TRANSIT_PER_PEER - state.nBlocksInFlight, vToDownload, staller, consensusParams);
3200 BOOST_FOREACH(const CBlockIndex *pindex, vToDownload) {
3201 uint32_t nFetchFlags = GetFetchFlags(pto, pindex->pprev, consensusParams);
3202 vGetData.push_back(CInv(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash()));
3203 MarkBlockAsInFlight(pto->GetId(), pindex->GetBlockHash(), consensusParams, pindex);
3204 LogPrint("net", "Requesting block %s (%d) peer=%d\n", pindex->GetBlockHash().ToString(),
3205 pindex->nHeight, pto->id);
3207 if (state.nBlocksInFlight == 0 && staller != -1) {
3208 if (State(staller)->nStallingSince == 0) {
3209 State(staller)->nStallingSince = nNow;
3210 LogPrint("net", "Stall started peer=%d\n", staller);
3216 // Message: getdata (non-blocks)
3218 while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
3220 const CInv& inv = (*pto->mapAskFor.begin()).second;
3221 if (!AlreadyHave(inv))
3223 if (fDebug)
3224 LogPrint("net", "Requesting %s peer=%d\n", inv.ToString(), pto->id);
3225 vGetData.push_back(inv);
3226 if (vGetData.size() >= 1000)
3228 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETDATA, vGetData));
3229 vGetData.clear();
3231 } else {
3232 //If we're not going to ask, don't expect a response.
3233 pto->setAskFor.erase(inv.hash);
3235 pto->mapAskFor.erase(pto->mapAskFor.begin());
3237 if (!vGetData.empty())
3238 connman.PushMessage(pto, msgMaker.Make(NetMsgType::GETDATA, vGetData));
3241 // Message: feefilter
3243 // We don't want white listed peers to filter txs to us if we have -whitelistforcerelay
3244 if (pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
3245 !(pto->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY))) {
3246 CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
3247 int64_t timeNow = GetTimeMicros();
3248 if (timeNow > pto->nextSendTimeFeeFilter) {
3249 static CFeeRate default_feerate(DEFAULT_MIN_RELAY_TX_FEE);
3250 static FeeFilterRounder filterRounder(default_feerate);
3251 CAmount filterToSend = filterRounder.round(currentFilter);
3252 // We always have a fee filter of at least minRelayTxFee
3253 filterToSend = std::max(filterToSend, ::minRelayTxFee.GetFeePerK());
3254 if (filterToSend != pto->lastSentFeeFilter) {
3255 connman.PushMessage(pto, msgMaker.Make(NetMsgType::FEEFILTER, filterToSend));
3256 pto->lastSentFeeFilter = filterToSend;
3258 pto->nextSendTimeFeeFilter = PoissonNextSend(timeNow, AVG_FEEFILTER_BROADCAST_INTERVAL);
3260 // If the fee filter has changed substantially and it's still more than MAX_FEEFILTER_CHANGE_DELAY
3261 // until scheduled broadcast, then move the broadcast to within MAX_FEEFILTER_CHANGE_DELAY.
3262 else if (timeNow + MAX_FEEFILTER_CHANGE_DELAY * 1000000 < pto->nextSendTimeFeeFilter &&
3263 (currentFilter < 3 * pto->lastSentFeeFilter / 4 || currentFilter > 4 * pto->lastSentFeeFilter / 3)) {
3264 pto->nextSendTimeFeeFilter = timeNow + GetRandInt(MAX_FEEFILTER_CHANGE_DELAY) * 1000000;
3268 return true;
3271 class CNetProcessingCleanup
3273 public:
3274 CNetProcessingCleanup() {}
3275 ~CNetProcessingCleanup() {
3276 // orphan transactions
3277 mapOrphanTransactions.clear();
3278 mapOrphanTransactionsByPrev.clear();
3280 } instance_of_cnetprocessingcleanup;