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"
9 #include "arith_uint256.h"
10 #include "blockencodings.h"
11 #include "chainparams.h"
12 #include "consensus/validation.h"
15 #include "validation.h"
16 #include "merkleblock.h"
18 #include "netmessagemaker.h"
20 #include "policy/fees.h"
21 #include "policy/policy.h"
22 #include "primitives/block.h"
23 #include "primitives/transaction.h"
25 #include "tinyformat.h"
26 #include "txmempool.h"
27 #include "ui_interface.h"
29 #include "utilmoneystr.h"
30 #include "utilstrencodings.h"
31 #include "validationinterface.h"
33 #include <boost/thread.hpp>
36 # error "Bitcoin cannot be compiled without assertions."
39 std::atomic
<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of when we last received a block
41 struct IteratorComparator
44 bool operator()(const I
& a
, const I
& b
)
51 // When modifying, adapt the copy of this definition in tests/DoS_tests.
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]
67 /** Number of nodes with fSyncStarted. */
71 * Sources of received blocks, saved to be able to send them reject
72 * messages or ban them when processing happens afterwards. Protected by
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
;
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
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
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. */
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
;
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
;
127 //////////////////////////////////////////////////////////////////////////////
129 // Registration of network node signals.
134 struct CBlockReject
{
135 unsigned char chRejectCode
;
136 std::string strRejectReason
;
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.
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.
153 //! Whether this peer should be disconnected and banned (unless whitelisted).
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.
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
;
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.
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
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;
204 pindexBestKnownBlock
= NULL
;
205 hashLastUnknownBlock
.SetNull();
206 pindexLastCommonBlock
= NULL
;
207 pindexBestHeaderSent
= NULL
;
208 nUnconnectingHeaders
= 0;
209 fSyncStarted
= false;
211 nDownloadingSince
= 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
;
228 CNodeState
*State(NodeId pnode
) {
229 std::map
<NodeId
, CNodeState
>::iterator it
= mapNodeState
.find(pnode
);
230 if (it
== mapNodeState
.end())
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
));
260 LogPrint(BCLog::NET
, "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%d\n", PROTOCOL_VERSION
, nNodeStartingHeight
, addrMe
.ToString(), addrYou
.ToString(), nodeid
);
262 LogPrint(BCLog::NET
, "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION
, nNodeStartingHeight
, addrMe
.ToString(), nodeid
);
266 void InitializeNode(CNode
*pnode
, CConnman
& connman
) {
267 CAddress addr
= pnode
->addr
;
268 std::string addrName
= pnode
->GetAddrName();
269 NodeId nodeid
= pnode
->GetId();
272 mapNodeState
.emplace_hint(mapNodeState
.end(), std::piecewise_construct
, std::forward_as_tuple(nodeid
), std::forward_as_tuple(addr
, std::move(addrName
)));
275 PushNodeVersion(pnode
, connman
, GetTime());
278 void FinalizeNode(NodeId nodeid
, bool& fUpdateConnectionTime
) {
279 fUpdateConnectionTime
= false;
281 CNodeState
*state
= State(nodeid
);
283 if (state
->fSyncStarted
)
286 if (state
->nMisbehavior
== 0 && state
->fCurrentlyConnected
) {
287 fUpdateConnectionTime
= true;
290 BOOST_FOREACH(const QueuedBlock
& entry
, state
->vBlocksInFlight
) {
291 mapBlocksInFlight
.erase(entry
.hash
);
293 EraseOrphansFor(nodeid
);
294 nPreferredDownload
-= state
->fPreferredDownload
;
295 nPeersWithValidatedDownloads
-= (state
->nBlocksInFlightValidHeaders
!= 0);
296 assert(nPeersWithValidatedDownloads
>= 0);
298 mapNodeState
.erase(nodeid
);
300 if (mapNodeState
.empty()) {
301 // Do a consistency check after the last peer is removed.
302 assert(mapBlocksInFlight
.empty());
303 assert(nPreferredDownload
== 0);
304 assert(nPeersWithValidatedDownloads
== 0);
306 LogPrint(BCLog::NET
, "Cleared nodestate for peer=%d\n", nodeid
);
310 // Returns a bool indicating whether we requested this block.
311 // Also used if a block was /not/ received and timed out or started with another peer
312 bool MarkBlockAsReceived(const uint256
& hash
) {
313 std::map
<uint256
, std::pair
<NodeId
, std::list
<QueuedBlock
>::iterator
> >::iterator itInFlight
= mapBlocksInFlight
.find(hash
);
314 if (itInFlight
!= mapBlocksInFlight
.end()) {
315 CNodeState
*state
= State(itInFlight
->second
.first
);
316 state
->nBlocksInFlightValidHeaders
-= itInFlight
->second
.second
->fValidatedHeaders
;
317 if (state
->nBlocksInFlightValidHeaders
== 0 && itInFlight
->second
.second
->fValidatedHeaders
) {
318 // Last validated block on the queue was received.
319 nPeersWithValidatedDownloads
--;
321 if (state
->vBlocksInFlight
.begin() == itInFlight
->second
.second
) {
322 // First block on the queue was received, update the start download time for the next one
323 state
->nDownloadingSince
= std::max(state
->nDownloadingSince
, GetTimeMicros());
325 state
->vBlocksInFlight
.erase(itInFlight
->second
.second
);
326 state
->nBlocksInFlight
--;
327 state
->nStallingSince
= 0;
328 mapBlocksInFlight
.erase(itInFlight
);
335 // returns false, still setting pit, if the block was already in flight from the same peer
336 // pit will only be valid as long as the same cs_main lock is being held
337 bool MarkBlockAsInFlight(NodeId nodeid
, const uint256
& hash
, const CBlockIndex
* pindex
= NULL
, std::list
<QueuedBlock
>::iterator
** pit
= NULL
) {
338 CNodeState
*state
= State(nodeid
);
339 assert(state
!= NULL
);
341 // Short-circuit most stuff in case its from the same node
342 std::map
<uint256
, std::pair
<NodeId
, std::list
<QueuedBlock
>::iterator
> >::iterator itInFlight
= mapBlocksInFlight
.find(hash
);
343 if (itInFlight
!= mapBlocksInFlight
.end() && itInFlight
->second
.first
== nodeid
) {
344 *pit
= &itInFlight
->second
.second
;
348 // Make sure it's not listed somewhere already.
349 MarkBlockAsReceived(hash
);
351 std::list
<QueuedBlock
>::iterator it
= state
->vBlocksInFlight
.insert(state
->vBlocksInFlight
.end(),
352 {hash
, pindex
, pindex
!= NULL
, std::unique_ptr
<PartiallyDownloadedBlock
>(pit
? new PartiallyDownloadedBlock(&mempool
) : NULL
)});
353 state
->nBlocksInFlight
++;
354 state
->nBlocksInFlightValidHeaders
+= it
->fValidatedHeaders
;
355 if (state
->nBlocksInFlight
== 1) {
356 // We're starting a block download (batch) from this peer.
357 state
->nDownloadingSince
= GetTimeMicros();
359 if (state
->nBlocksInFlightValidHeaders
== 1 && pindex
!= NULL
) {
360 nPeersWithValidatedDownloads
++;
362 itInFlight
= mapBlocksInFlight
.insert(std::make_pair(hash
, std::make_pair(nodeid
, it
))).first
;
364 *pit
= &itInFlight
->second
.second
;
368 /** Check whether the last unknown block a peer advertised is not yet known. */
369 void ProcessBlockAvailability(NodeId nodeid
) {
370 CNodeState
*state
= State(nodeid
);
371 assert(state
!= NULL
);
373 if (!state
->hashLastUnknownBlock
.IsNull()) {
374 BlockMap::iterator itOld
= mapBlockIndex
.find(state
->hashLastUnknownBlock
);
375 if (itOld
!= mapBlockIndex
.end() && itOld
->second
->nChainWork
> 0) {
376 if (state
->pindexBestKnownBlock
== NULL
|| itOld
->second
->nChainWork
>= state
->pindexBestKnownBlock
->nChainWork
)
377 state
->pindexBestKnownBlock
= itOld
->second
;
378 state
->hashLastUnknownBlock
.SetNull();
383 /** Update tracking information about which blocks a peer is assumed to have. */
384 void UpdateBlockAvailability(NodeId nodeid
, const uint256
&hash
) {
385 CNodeState
*state
= State(nodeid
);
386 assert(state
!= NULL
);
388 ProcessBlockAvailability(nodeid
);
390 BlockMap::iterator it
= mapBlockIndex
.find(hash
);
391 if (it
!= mapBlockIndex
.end() && it
->second
->nChainWork
> 0) {
392 // An actually better block was announced.
393 if (state
->pindexBestKnownBlock
== NULL
|| it
->second
->nChainWork
>= state
->pindexBestKnownBlock
->nChainWork
)
394 state
->pindexBestKnownBlock
= it
->second
;
396 // An unknown block was announced; just assume that the latest one is the best one.
397 state
->hashLastUnknownBlock
= hash
;
401 void MaybeSetPeerAsAnnouncingHeaderAndIDs(NodeId nodeid
, CConnman
& connman
) {
402 AssertLockHeld(cs_main
);
403 CNodeState
* nodestate
= State(nodeid
);
404 if (!nodestate
|| !nodestate
->fSupportsDesiredCmpctVersion
) {
405 // Never ask from peers who can't provide witnesses.
408 if (nodestate
->fProvidesHeaderAndIDs
) {
409 for (std::list
<NodeId
>::iterator it
= lNodesAnnouncingHeaderAndIDs
.begin(); it
!= lNodesAnnouncingHeaderAndIDs
.end(); it
++) {
411 lNodesAnnouncingHeaderAndIDs
.erase(it
);
412 lNodesAnnouncingHeaderAndIDs
.push_back(nodeid
);
416 connman
.ForNode(nodeid
, [&connman
](CNode
* pfrom
){
417 bool fAnnounceUsingCMPCTBLOCK
= false;
418 uint64_t nCMPCTBLOCKVersion
= (pfrom
->GetLocalServices() & NODE_WITNESS
) ? 2 : 1;
419 if (lNodesAnnouncingHeaderAndIDs
.size() >= 3) {
420 // As per BIP152, we only get 3 of our peers to announce
421 // blocks using compact encodings.
422 connman
.ForNode(lNodesAnnouncingHeaderAndIDs
.front(), [&connman
, fAnnounceUsingCMPCTBLOCK
, nCMPCTBLOCKVersion
](CNode
* pnodeStop
){
423 connman
.PushMessage(pnodeStop
, CNetMsgMaker(pnodeStop
->GetSendVersion()).Make(NetMsgType::SENDCMPCT
, fAnnounceUsingCMPCTBLOCK
, nCMPCTBLOCKVersion
));
426 lNodesAnnouncingHeaderAndIDs
.pop_front();
428 fAnnounceUsingCMPCTBLOCK
= true;
429 connman
.PushMessage(pfrom
, CNetMsgMaker(pfrom
->GetSendVersion()).Make(NetMsgType::SENDCMPCT
, fAnnounceUsingCMPCTBLOCK
, nCMPCTBLOCKVersion
));
430 lNodesAnnouncingHeaderAndIDs
.push_back(pfrom
->GetId());
437 bool CanDirectFetch(const Consensus::Params
&consensusParams
)
439 return chainActive
.Tip()->GetBlockTime() > GetAdjustedTime() - consensusParams
.nPowTargetSpacing
* 20;
443 bool PeerHasHeader(CNodeState
*state
, const CBlockIndex
*pindex
)
445 if (state
->pindexBestKnownBlock
&& pindex
== state
->pindexBestKnownBlock
->GetAncestor(pindex
->nHeight
))
447 if (state
->pindexBestHeaderSent
&& pindex
== state
->pindexBestHeaderSent
->GetAncestor(pindex
->nHeight
))
452 /** Find the last common ancestor two blocks have.
453 * Both pa and pb must be non-NULL. */
454 const CBlockIndex
* LastCommonAncestor(const CBlockIndex
* pa
, const CBlockIndex
* pb
) {
455 if (pa
->nHeight
> pb
->nHeight
) {
456 pa
= pa
->GetAncestor(pb
->nHeight
);
457 } else if (pb
->nHeight
> pa
->nHeight
) {
458 pb
= pb
->GetAncestor(pa
->nHeight
);
461 while (pa
!= pb
&& pa
&& pb
) {
466 // Eventually all chain branches meet at the genesis block.
471 /** Update pindexLastCommonBlock and add not-in-flight missing successors to vBlocks, until it has
472 * at most count entries. */
473 void FindNextBlocksToDownload(NodeId nodeid
, unsigned int count
, std::vector
<const CBlockIndex
*>& vBlocks
, NodeId
& nodeStaller
, const Consensus::Params
& consensusParams
) {
477 vBlocks
.reserve(vBlocks
.size() + count
);
478 CNodeState
*state
= State(nodeid
);
479 assert(state
!= NULL
);
481 // Make sure pindexBestKnownBlock is up to date, we'll need it.
482 ProcessBlockAvailability(nodeid
);
484 if (state
->pindexBestKnownBlock
== NULL
|| state
->pindexBestKnownBlock
->nChainWork
< chainActive
.Tip()->nChainWork
) {
485 // This peer has nothing interesting.
489 if (state
->pindexLastCommonBlock
== NULL
) {
490 // Bootstrap quickly by guessing a parent of our best tip is the forking point.
491 // Guessing wrong in either direction is not a problem.
492 state
->pindexLastCommonBlock
= chainActive
[std::min(state
->pindexBestKnownBlock
->nHeight
, chainActive
.Height())];
495 // If the peer reorganized, our previous pindexLastCommonBlock may not be an ancestor
496 // of its current tip anymore. Go back enough to fix that.
497 state
->pindexLastCommonBlock
= LastCommonAncestor(state
->pindexLastCommonBlock
, state
->pindexBestKnownBlock
);
498 if (state
->pindexLastCommonBlock
== state
->pindexBestKnownBlock
)
501 std::vector
<const CBlockIndex
*> vToFetch
;
502 const CBlockIndex
*pindexWalk
= state
->pindexLastCommonBlock
;
503 // Never fetch further than the best block we know the peer has, or more than BLOCK_DOWNLOAD_WINDOW + 1 beyond the last
504 // linked block we have in common with this peer. The +1 is so we can detect stalling, namely if we would be able to
505 // download that next block if the window were 1 larger.
506 int nWindowEnd
= state
->pindexLastCommonBlock
->nHeight
+ BLOCK_DOWNLOAD_WINDOW
;
507 int nMaxHeight
= std::min
<int>(state
->pindexBestKnownBlock
->nHeight
, nWindowEnd
+ 1);
508 NodeId waitingfor
= -1;
509 while (pindexWalk
->nHeight
< nMaxHeight
) {
510 // Read up to 128 (or more, if more blocks than that are needed) successors of pindexWalk (towards
511 // pindexBestKnownBlock) into vToFetch. We fetch 128, because CBlockIndex::GetAncestor may be as expensive
512 // as iterating over ~100 CBlockIndex* entries anyway.
513 int nToFetch
= std::min(nMaxHeight
- pindexWalk
->nHeight
, std::max
<int>(count
- vBlocks
.size(), 128));
514 vToFetch
.resize(nToFetch
);
515 pindexWalk
= state
->pindexBestKnownBlock
->GetAncestor(pindexWalk
->nHeight
+ nToFetch
);
516 vToFetch
[nToFetch
- 1] = pindexWalk
;
517 for (unsigned int i
= nToFetch
- 1; i
> 0; i
--) {
518 vToFetch
[i
- 1] = vToFetch
[i
]->pprev
;
521 // Iterate over those blocks in vToFetch (in forward direction), adding the ones that
522 // are not yet downloaded and not in flight to vBlocks. In the mean time, update
523 // pindexLastCommonBlock as long as all ancestors are already downloaded, or if it's
524 // already part of our chain (and therefore don't need it even if pruned).
525 BOOST_FOREACH(const CBlockIndex
* pindex
, vToFetch
) {
526 if (!pindex
->IsValid(BLOCK_VALID_TREE
)) {
527 // We consider the chain that this peer is on invalid.
530 if (!State(nodeid
)->fHaveWitness
&& IsWitnessEnabled(pindex
->pprev
, consensusParams
)) {
531 // We wouldn't download this block or its descendants from this peer.
534 if (pindex
->nStatus
& BLOCK_HAVE_DATA
|| chainActive
.Contains(pindex
)) {
535 if (pindex
->nChainTx
)
536 state
->pindexLastCommonBlock
= pindex
;
537 } else if (mapBlocksInFlight
.count(pindex
->GetBlockHash()) == 0) {
538 // The block is not already downloaded, and not yet in flight.
539 if (pindex
->nHeight
> nWindowEnd
) {
540 // We reached the end of the window.
541 if (vBlocks
.size() == 0 && waitingfor
!= nodeid
) {
542 // We aren't able to fetch anything, but we would be if the download window was one larger.
543 nodeStaller
= waitingfor
;
547 vBlocks
.push_back(pindex
);
548 if (vBlocks
.size() == count
) {
551 } else if (waitingfor
== -1) {
552 // This is the first already-in-flight block.
553 waitingfor
= mapBlocksInFlight
[pindex
->GetBlockHash()].first
;
561 bool GetNodeStateStats(NodeId nodeid
, CNodeStateStats
&stats
) {
563 CNodeState
*state
= State(nodeid
);
566 stats
.nMisbehavior
= state
->nMisbehavior
;
567 stats
.nSyncHeight
= state
->pindexBestKnownBlock
? state
->pindexBestKnownBlock
->nHeight
: -1;
568 stats
.nCommonHeight
= state
->pindexLastCommonBlock
? state
->pindexLastCommonBlock
->nHeight
: -1;
569 BOOST_FOREACH(const QueuedBlock
& queue
, state
->vBlocksInFlight
) {
571 stats
.vHeightInFlight
.push_back(queue
.pindex
->nHeight
);
576 void RegisterNodeSignals(CNodeSignals
& nodeSignals
)
578 nodeSignals
.ProcessMessages
.connect(&ProcessMessages
);
579 nodeSignals
.SendMessages
.connect(&SendMessages
);
580 nodeSignals
.InitializeNode
.connect(&InitializeNode
);
581 nodeSignals
.FinalizeNode
.connect(&FinalizeNode
);
584 void UnregisterNodeSignals(CNodeSignals
& nodeSignals
)
586 nodeSignals
.ProcessMessages
.disconnect(&ProcessMessages
);
587 nodeSignals
.SendMessages
.disconnect(&SendMessages
);
588 nodeSignals
.InitializeNode
.disconnect(&InitializeNode
);
589 nodeSignals
.FinalizeNode
.disconnect(&FinalizeNode
);
592 //////////////////////////////////////////////////////////////////////////////
594 // mapOrphanTransactions
597 void AddToCompactExtraTransactions(const CTransactionRef
& tx
)
599 size_t max_extra_txn
= GetArg("-blockreconstructionextratxn", DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN
);
600 if (max_extra_txn
<= 0)
602 if (!vExtraTxnForCompact
.size())
603 vExtraTxnForCompact
.resize(max_extra_txn
);
604 vExtraTxnForCompact
[vExtraTxnForCompactIt
] = std::make_pair(tx
->GetWitnessHash(), tx
);
605 vExtraTxnForCompactIt
= (vExtraTxnForCompactIt
+ 1) % max_extra_txn
;
608 bool AddOrphanTx(const CTransactionRef
& tx
, NodeId peer
) EXCLUSIVE_LOCKS_REQUIRED(cs_main
)
610 const uint256
& hash
= tx
->GetHash();
611 if (mapOrphanTransactions
.count(hash
))
614 // Ignore big transactions, to avoid a
615 // send-big-orphans memory exhaustion attack. If a peer has a legitimate
616 // large transaction with a missing parent then we assume
617 // it will rebroadcast it later, after the parent transaction(s)
618 // have been mined or received.
619 // 100 orphans, each of which is at most 99,999 bytes big is
620 // at most 10 megabytes of orphans and somewhat more byprev index (in the worst case):
621 unsigned int sz
= GetTransactionWeight(*tx
);
622 if (sz
>= MAX_STANDARD_TX_WEIGHT
)
624 LogPrint(BCLog::MEMPOOL
, "ignoring large orphan tx (size: %u, hash: %s)\n", sz
, hash
.ToString());
628 auto ret
= mapOrphanTransactions
.emplace(hash
, COrphanTx
{tx
, peer
, GetTime() + ORPHAN_TX_EXPIRE_TIME
});
630 BOOST_FOREACH(const CTxIn
& txin
, tx
->vin
) {
631 mapOrphanTransactionsByPrev
[txin
.prevout
].insert(ret
.first
);
634 AddToCompactExtraTransactions(tx
);
636 LogPrint(BCLog::MEMPOOL
, "stored orphan tx %s (mapsz %u outsz %u)\n", hash
.ToString(),
637 mapOrphanTransactions
.size(), mapOrphanTransactionsByPrev
.size());
641 int static EraseOrphanTx(uint256 hash
) EXCLUSIVE_LOCKS_REQUIRED(cs_main
)
643 std::map
<uint256
, COrphanTx
>::iterator it
= mapOrphanTransactions
.find(hash
);
644 if (it
== mapOrphanTransactions
.end())
646 BOOST_FOREACH(const CTxIn
& txin
, it
->second
.tx
->vin
)
648 auto itPrev
= mapOrphanTransactionsByPrev
.find(txin
.prevout
);
649 if (itPrev
== mapOrphanTransactionsByPrev
.end())
651 itPrev
->second
.erase(it
);
652 if (itPrev
->second
.empty())
653 mapOrphanTransactionsByPrev
.erase(itPrev
);
655 mapOrphanTransactions
.erase(it
);
659 void EraseOrphansFor(NodeId peer
)
662 std::map
<uint256
, COrphanTx
>::iterator iter
= mapOrphanTransactions
.begin();
663 while (iter
!= mapOrphanTransactions
.end())
665 std::map
<uint256
, COrphanTx
>::iterator maybeErase
= iter
++; // increment to avoid iterator becoming invalid
666 if (maybeErase
->second
.fromPeer
== peer
)
668 nErased
+= EraseOrphanTx(maybeErase
->second
.tx
->GetHash());
671 if (nErased
> 0) LogPrint(BCLog::MEMPOOL
, "Erased %d orphan tx from peer=%d\n", nErased
, peer
);
675 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans
) EXCLUSIVE_LOCKS_REQUIRED(cs_main
)
677 unsigned int nEvicted
= 0;
678 static int64_t nNextSweep
;
679 int64_t nNow
= GetTime();
680 if (nNextSweep
<= nNow
) {
681 // Sweep out expired orphan pool entries:
683 int64_t nMinExpTime
= nNow
+ ORPHAN_TX_EXPIRE_TIME
- ORPHAN_TX_EXPIRE_INTERVAL
;
684 std::map
<uint256
, COrphanTx
>::iterator iter
= mapOrphanTransactions
.begin();
685 while (iter
!= mapOrphanTransactions
.end())
687 std::map
<uint256
, COrphanTx
>::iterator maybeErase
= iter
++;
688 if (maybeErase
->second
.nTimeExpire
<= nNow
) {
689 nErased
+= EraseOrphanTx(maybeErase
->second
.tx
->GetHash());
691 nMinExpTime
= std::min(maybeErase
->second
.nTimeExpire
, nMinExpTime
);
694 // Sweep again 5 minutes after the next entry that expires in order to batch the linear scan.
695 nNextSweep
= nMinExpTime
+ ORPHAN_TX_EXPIRE_INTERVAL
;
696 if (nErased
> 0) LogPrint(BCLog::MEMPOOL
, "Erased %d orphan tx due to expiration\n", nErased
);
698 while (mapOrphanTransactions
.size() > nMaxOrphans
)
700 // Evict a random orphan:
701 uint256 randomhash
= GetRandHash();
702 std::map
<uint256
, COrphanTx
>::iterator it
= mapOrphanTransactions
.lower_bound(randomhash
);
703 if (it
== mapOrphanTransactions
.end())
704 it
= mapOrphanTransactions
.begin();
705 EraseOrphanTx(it
->first
);
712 void Misbehaving(NodeId pnode
, int howmuch
)
717 CNodeState
*state
= State(pnode
);
721 state
->nMisbehavior
+= howmuch
;
722 int banscore
= GetArg("-banscore", DEFAULT_BANSCORE_THRESHOLD
);
723 if (state
->nMisbehavior
>= banscore
&& state
->nMisbehavior
- howmuch
< banscore
)
725 LogPrintf("%s: %s peer=%d (%d -> %d) BAN THRESHOLD EXCEEDED\n", __func__
, state
->name
, pnode
, state
->nMisbehavior
-howmuch
, state
->nMisbehavior
);
726 state
->fShouldBan
= true;
728 LogPrintf("%s: %s peer=%d (%d -> %d)\n", __func__
, state
->name
, pnode
, state
->nMisbehavior
-howmuch
, state
->nMisbehavior
);
738 //////////////////////////////////////////////////////////////////////////////
740 // blockchain -> download logic notification
743 PeerLogicValidation::PeerLogicValidation(CConnman
* connmanIn
) : connman(connmanIn
) {
744 // Initialize global variables that cannot be constructed at startup.
745 recentRejects
.reset(new CRollingBloomFilter(120000, 0.000001));
748 void PeerLogicValidation::BlockConnected(const std::shared_ptr
<const CBlock
>& pblock
, const CBlockIndex
* pindex
, const std::vector
<CTransactionRef
>& vtxConflicted
) {
751 std::vector
<uint256
> vOrphanErase
;
753 for (const CTransactionRef
& ptx
: pblock
->vtx
) {
754 const CTransaction
& tx
= *ptx
;
756 // Which orphan pool entries must we evict?
757 for (const auto& txin
: tx
.vin
) {
758 auto itByPrev
= mapOrphanTransactionsByPrev
.find(txin
.prevout
);
759 if (itByPrev
== mapOrphanTransactionsByPrev
.end()) continue;
760 for (auto mi
= itByPrev
->second
.begin(); mi
!= itByPrev
->second
.end(); ++mi
) {
761 const CTransaction
& orphanTx
= *(*mi
)->second
.tx
;
762 const uint256
& orphanHash
= orphanTx
.GetHash();
763 vOrphanErase
.push_back(orphanHash
);
768 // Erase orphan transactions include or precluded by this block
769 if (vOrphanErase
.size()) {
771 BOOST_FOREACH(uint256
&orphanHash
, vOrphanErase
) {
772 nErased
+= EraseOrphanTx(orphanHash
);
774 LogPrint(BCLog::MEMPOOL
, "Erased %d orphan tx included or conflicted by block\n", nErased
);
778 // All of the following cache a recent block, and are protected by cs_most_recent_block
779 static CCriticalSection cs_most_recent_block
;
780 static std::shared_ptr
<const CBlock
> most_recent_block
;
781 static std::shared_ptr
<const CBlockHeaderAndShortTxIDs
> most_recent_compact_block
;
782 static uint256 most_recent_block_hash
;
783 static bool fWitnessesPresentInMostRecentCompactBlock
;
785 void PeerLogicValidation::NewPoWValidBlock(const CBlockIndex
*pindex
, const std::shared_ptr
<const CBlock
>& pblock
) {
786 std::shared_ptr
<const CBlockHeaderAndShortTxIDs
> pcmpctblock
= std::make_shared
<const CBlockHeaderAndShortTxIDs
> (*pblock
, true);
787 const CNetMsgMaker
msgMaker(PROTOCOL_VERSION
);
791 static int nHighestFastAnnounce
= 0;
792 if (pindex
->nHeight
<= nHighestFastAnnounce
)
794 nHighestFastAnnounce
= pindex
->nHeight
;
796 bool fWitnessEnabled
= IsWitnessEnabled(pindex
->pprev
, Params().GetConsensus());
797 uint256
hashBlock(pblock
->GetHash());
800 LOCK(cs_most_recent_block
);
801 most_recent_block_hash
= hashBlock
;
802 most_recent_block
= pblock
;
803 most_recent_compact_block
= pcmpctblock
;
804 fWitnessesPresentInMostRecentCompactBlock
= fWitnessEnabled
;
807 connman
->ForEachNode([this, &pcmpctblock
, pindex
, &msgMaker
, fWitnessEnabled
, &hashBlock
](CNode
* pnode
) {
808 // TODO: Avoid the repeated-serialization here
809 if (pnode
->nVersion
< INVALID_CB_NO_BAN_VERSION
|| pnode
->fDisconnect
)
811 ProcessBlockAvailability(pnode
->GetId());
812 CNodeState
&state
= *State(pnode
->GetId());
813 // If the peer has, or we announced to them the previous block already,
814 // but we don't think they have this one, go ahead and announce it
815 if (state
.fPreferHeaderAndIDs
&& (!fWitnessEnabled
|| state
.fWantsCmpctWitness
) &&
816 !PeerHasHeader(&state
, pindex
) && PeerHasHeader(&state
, pindex
->pprev
)) {
818 LogPrint(BCLog::NET
, "%s sending header-and-ids %s to peer=%d\n", "PeerLogicValidation::NewPoWValidBlock",
819 hashBlock
.ToString(), pnode
->GetId());
820 connman
->PushMessage(pnode
, msgMaker
.Make(NetMsgType::CMPCTBLOCK
, *pcmpctblock
));
821 state
.pindexBestHeaderSent
= pindex
;
826 void PeerLogicValidation::UpdatedBlockTip(const CBlockIndex
*pindexNew
, const CBlockIndex
*pindexFork
, bool fInitialDownload
) {
827 const int nNewHeight
= pindexNew
->nHeight
;
828 connman
->SetBestHeight(nNewHeight
);
830 if (!fInitialDownload
) {
831 // Find the hashes of all blocks that weren't previously in the best chain.
832 std::vector
<uint256
> vHashes
;
833 const CBlockIndex
*pindexToAnnounce
= pindexNew
;
834 while (pindexToAnnounce
!= pindexFork
) {
835 vHashes
.push_back(pindexToAnnounce
->GetBlockHash());
836 pindexToAnnounce
= pindexToAnnounce
->pprev
;
837 if (vHashes
.size() == MAX_BLOCKS_TO_ANNOUNCE
) {
838 // Limit announcements in case of a huge reorganization.
839 // Rely on the peer's synchronization mechanism in that case.
843 // Relay inventory, but don't relay old inventory during initial block download.
844 connman
->ForEachNode([nNewHeight
, &vHashes
](CNode
* pnode
) {
845 if (nNewHeight
> (pnode
->nStartingHeight
!= -1 ? pnode
->nStartingHeight
- 2000 : 0)) {
846 BOOST_REVERSE_FOREACH(const uint256
& hash
, vHashes
) {
847 pnode
->PushBlockHash(hash
);
851 connman
->WakeMessageHandler();
854 nTimeBestReceived
= GetTime();
857 void PeerLogicValidation::BlockChecked(const CBlock
& block
, const CValidationState
& state
) {
860 const uint256
hash(block
.GetHash());
861 std::map
<uint256
, std::pair
<NodeId
, bool>>::iterator it
= mapBlockSource
.find(hash
);
864 if (state
.IsInvalid(nDoS
)) {
865 // Don't send reject message with code 0 or an internal reject code.
866 if (it
!= mapBlockSource
.end() && State(it
->second
.first
) && state
.GetRejectCode() > 0 && state
.GetRejectCode() < REJECT_INTERNAL
) {
867 CBlockReject reject
= {(unsigned char)state
.GetRejectCode(), state
.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH
), hash
};
868 State(it
->second
.first
)->rejects
.push_back(reject
);
869 if (nDoS
> 0 && it
->second
.second
)
870 Misbehaving(it
->second
.first
, nDoS
);
874 // 1. The block is valid
875 // 2. We're not in initial block download
876 // 3. This is currently the best block we're aware of. We haven't updated
877 // the tip yet so we have no way to check this directly here. Instead we
878 // just check that there are currently no other blocks in flight.
879 else if (state
.IsValid() &&
880 !IsInitialBlockDownload() &&
881 mapBlocksInFlight
.count(hash
) == mapBlocksInFlight
.size()) {
882 if (it
!= mapBlockSource
.end()) {
883 MaybeSetPeerAsAnnouncingHeaderAndIDs(it
->second
.first
, *connman
);
886 if (it
!= mapBlockSource
.end())
887 mapBlockSource
.erase(it
);
890 //////////////////////////////////////////////////////////////////////////////
896 bool static AlreadyHave(const CInv
& inv
) EXCLUSIVE_LOCKS_REQUIRED(cs_main
)
903 assert(recentRejects
);
904 if (chainActive
.Tip()->GetBlockHash() != hashRecentRejectsChainTip
)
906 // If the chain tip has changed previously rejected transactions
907 // might be now valid, e.g. due to a nLockTime'd tx becoming valid,
908 // or a double-spend. Reset the rejects filter and give those
909 // txs a second chance.
910 hashRecentRejectsChainTip
= chainActive
.Tip()->GetBlockHash();
911 recentRejects
->reset();
914 return recentRejects
->contains(inv
.hash
) ||
915 mempool
.exists(inv
.hash
) ||
916 mapOrphanTransactions
.count(inv
.hash
) ||
917 pcoinsTip
->HaveCoinInCache(COutPoint(inv
.hash
, 0)) || // Best effort: only try output 0 and 1
918 pcoinsTip
->HaveCoinInCache(COutPoint(inv
.hash
, 1));
921 case MSG_WITNESS_BLOCK
:
922 return mapBlockIndex
.count(inv
.hash
);
924 // Don't know what it is, just say we already got one
928 static void RelayTransaction(const CTransaction
& tx
, CConnman
& connman
)
930 CInv
inv(MSG_TX
, tx
.GetHash());
931 connman
.ForEachNode([&inv
](CNode
* pnode
)
933 pnode
->PushInventory(inv
);
937 static void RelayAddress(const CAddress
& addr
, bool fReachable
, CConnman
& connman
)
939 unsigned int nRelayNodes
= fReachable
? 2 : 1; // limited relaying of addresses outside our network(s)
941 // Relay to a limited number of other nodes
942 // Use deterministic randomness to send to the same nodes for 24 hours
943 // at a time so the addrKnowns of the chosen nodes prevent repeats
944 uint64_t hashAddr
= addr
.GetHash();
945 const CSipHasher hasher
= connman
.GetDeterministicRandomizer(RANDOMIZER_ID_ADDRESS_RELAY
).Write(hashAddr
<< 32).Write((GetTime() + hashAddr
) / (24*60*60));
946 FastRandomContext insecure_rand
;
948 std::array
<std::pair
<uint64_t, CNode
*>,2> best
{{{0, nullptr}, {0, nullptr}}};
949 assert(nRelayNodes
<= best
.size());
951 auto sortfunc
= [&best
, &hasher
, nRelayNodes
](CNode
* pnode
) {
952 if (pnode
->nVersion
>= CADDR_TIME_VERSION
) {
953 uint64_t hashKey
= CSipHasher(hasher
).Write(pnode
->GetId()).Finalize();
954 for (unsigned int i
= 0; i
< nRelayNodes
; i
++) {
955 if (hashKey
> best
[i
].first
) {
956 std::copy(best
.begin() + i
, best
.begin() + nRelayNodes
- 1, best
.begin() + i
+ 1);
957 best
[i
] = std::make_pair(hashKey
, pnode
);
964 auto pushfunc
= [&addr
, &best
, nRelayNodes
, &insecure_rand
] {
965 for (unsigned int i
= 0; i
< nRelayNodes
&& best
[i
].first
!= 0; i
++) {
966 best
[i
].second
->PushAddress(addr
, insecure_rand
);
970 connman
.ForEachNodeThen(std::move(sortfunc
), std::move(pushfunc
));
973 void static ProcessGetData(CNode
* pfrom
, const Consensus::Params
& consensusParams
, CConnman
& connman
, const std::atomic
<bool>& interruptMsgProc
)
975 std::deque
<CInv
>::iterator it
= pfrom
->vRecvGetData
.begin();
976 std::vector
<CInv
> vNotFound
;
977 const CNetMsgMaker
msgMaker(pfrom
->GetSendVersion());
980 while (it
!= pfrom
->vRecvGetData
.end()) {
981 // Don't bother if send buffer is too full to respond anyway
982 if (pfrom
->fPauseSend
)
985 const CInv
&inv
= *it
;
987 if (interruptMsgProc
)
992 if (inv
.type
== MSG_BLOCK
|| inv
.type
== MSG_FILTERED_BLOCK
|| inv
.type
== MSG_CMPCT_BLOCK
|| inv
.type
== MSG_WITNESS_BLOCK
)
995 BlockMap::iterator mi
= mapBlockIndex
.find(inv
.hash
);
996 std::shared_ptr
<const CBlock
> a_recent_block
;
997 std::shared_ptr
<const CBlockHeaderAndShortTxIDs
> a_recent_compact_block
;
998 bool fWitnessesPresentInARecentCompactBlock
;
1000 LOCK(cs_most_recent_block
);
1001 a_recent_block
= most_recent_block
;
1002 a_recent_compact_block
= most_recent_compact_block
;
1003 fWitnessesPresentInARecentCompactBlock
= fWitnessesPresentInMostRecentCompactBlock
;
1005 if (mi
!= mapBlockIndex
.end())
1007 if (mi
->second
->nChainTx
&& !mi
->second
->IsValid(BLOCK_VALID_SCRIPTS
) &&
1008 mi
->second
->IsValid(BLOCK_VALID_TREE
)) {
1009 // If we have the block and all of its parents, but have not yet validated it,
1010 // we might be in the middle of connecting it (ie in the unlock of cs_main
1011 // before ActivateBestChain but after AcceptBlock).
1012 // In this case, we need to run ActivateBestChain prior to checking the relay
1013 // conditions below.
1014 CValidationState dummy
;
1015 ActivateBestChain(dummy
, Params(), a_recent_block
);
1017 if (chainActive
.Contains(mi
->second
)) {
1020 static const int nOneMonth
= 30 * 24 * 60 * 60;
1021 // To prevent fingerprinting attacks, only send blocks outside of the active
1022 // chain if they are valid, and no more than a month older (both in time, and in
1023 // best equivalent proof of work) than the best header chain we know about.
1024 send
= mi
->second
->IsValid(BLOCK_VALID_SCRIPTS
) && (pindexBestHeader
!= NULL
) &&
1025 (pindexBestHeader
->GetBlockTime() - mi
->second
->GetBlockTime() < nOneMonth
) &&
1026 (GetBlockProofEquivalentTime(*pindexBestHeader
, *mi
->second
, *pindexBestHeader
, consensusParams
) < nOneMonth
);
1028 LogPrintf("%s: ignoring request from peer=%i for old block that isn't in the main chain\n", __func__
, pfrom
->GetId());
1032 // disconnect node in case we have reached the outbound limit for serving historical blocks
1033 // never disconnect whitelisted nodes
1034 static const int nOneWeek
= 7 * 24 * 60 * 60; // assume > 1 week = historical
1035 if (send
&& connman
.OutboundTargetReached(true) && ( ((pindexBestHeader
!= NULL
) && (pindexBestHeader
->GetBlockTime() - mi
->second
->GetBlockTime() > nOneWeek
)) || inv
.type
== MSG_FILTERED_BLOCK
) && !pfrom
->fWhitelisted
)
1037 LogPrint(BCLog::NET
, "historical block serving limit reached, disconnect peer=%d\n", pfrom
->GetId());
1040 pfrom
->fDisconnect
= true;
1043 // Pruned nodes may have deleted the block, so check whether
1044 // it's available before trying to send.
1045 if (send
&& (mi
->second
->nStatus
& BLOCK_HAVE_DATA
))
1047 std::shared_ptr
<const CBlock
> pblock
;
1048 if (a_recent_block
&& a_recent_block
->GetHash() == (*mi
).second
->GetBlockHash()) {
1049 pblock
= a_recent_block
;
1051 // Send block from disk
1052 std::shared_ptr
<CBlock
> pblockRead
= std::make_shared
<CBlock
>();
1053 if (!ReadBlockFromDisk(*pblockRead
, (*mi
).second
, consensusParams
))
1054 assert(!"cannot load block from disk");
1055 pblock
= pblockRead
;
1057 if (inv
.type
== MSG_BLOCK
)
1058 connman
.PushMessage(pfrom
, msgMaker
.Make(SERIALIZE_TRANSACTION_NO_WITNESS
, NetMsgType::BLOCK
, *pblock
));
1059 else if (inv
.type
== MSG_WITNESS_BLOCK
)
1060 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::BLOCK
, *pblock
));
1061 else if (inv
.type
== MSG_FILTERED_BLOCK
)
1063 bool sendMerkleBlock
= false;
1064 CMerkleBlock merkleBlock
;
1066 LOCK(pfrom
->cs_filter
);
1067 if (pfrom
->pfilter
) {
1068 sendMerkleBlock
= true;
1069 merkleBlock
= CMerkleBlock(*pblock
, *pfrom
->pfilter
);
1072 if (sendMerkleBlock
) {
1073 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::MERKLEBLOCK
, merkleBlock
));
1074 // CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see
1075 // This avoids hurting performance by pointlessly requiring a round-trip
1076 // Note that there is currently no way for a node to request any single transactions we didn't send here -
1077 // they must either disconnect and retry or request the full block.
1078 // Thus, the protocol spec specified allows for us to provide duplicate txn here,
1079 // however we MUST always provide at least what the remote peer needs
1080 typedef std::pair
<unsigned int, uint256
> PairType
;
1081 BOOST_FOREACH(PairType
& pair
, merkleBlock
.vMatchedTxn
)
1082 connman
.PushMessage(pfrom
, msgMaker
.Make(SERIALIZE_TRANSACTION_NO_WITNESS
, NetMsgType::TX
, *pblock
->vtx
[pair
.first
]));
1087 else if (inv
.type
== MSG_CMPCT_BLOCK
)
1089 // If a peer is asking for old blocks, we're almost guaranteed
1090 // they won't have a useful mempool to match against a compact block,
1091 // and we don't feel like constructing the object for them, so
1092 // instead we respond with the full, non-compact block.
1093 bool fPeerWantsWitness
= State(pfrom
->GetId())->fWantsCmpctWitness
;
1094 int nSendFlags
= fPeerWantsWitness
? 0 : SERIALIZE_TRANSACTION_NO_WITNESS
;
1095 if (CanDirectFetch(consensusParams
) && mi
->second
->nHeight
>= chainActive
.Height() - MAX_CMPCTBLOCK_DEPTH
) {
1096 if ((fPeerWantsWitness
|| !fWitnessesPresentInARecentCompactBlock
) && a_recent_compact_block
&& a_recent_compact_block
->header
.GetHash() == mi
->second
->GetBlockHash()) {
1097 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::CMPCTBLOCK
, *a_recent_compact_block
));
1099 CBlockHeaderAndShortTxIDs
cmpctblock(*pblock
, fPeerWantsWitness
);
1100 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::CMPCTBLOCK
, cmpctblock
));
1103 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::BLOCK
, *pblock
));
1107 // Trigger the peer node to send a getblocks request for the next batch of inventory
1108 if (inv
.hash
== pfrom
->hashContinue
)
1110 // Bypass PushInventory, this must send even if redundant,
1111 // and we want it right after the last block so they don't
1112 // wait for other stuff first.
1113 std::vector
<CInv
> vInv
;
1114 vInv
.push_back(CInv(MSG_BLOCK
, chainActive
.Tip()->GetBlockHash()));
1115 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::INV
, vInv
));
1116 pfrom
->hashContinue
.SetNull();
1120 else if (inv
.type
== MSG_TX
|| inv
.type
== MSG_WITNESS_TX
)
1122 // Send stream from relay memory
1124 auto mi
= mapRelay
.find(inv
.hash
);
1125 int nSendFlags
= (inv
.type
== MSG_TX
? SERIALIZE_TRANSACTION_NO_WITNESS
: 0);
1126 if (mi
!= mapRelay
.end()) {
1127 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::TX
, *mi
->second
));
1129 } else if (pfrom
->timeLastMempoolReq
) {
1130 auto txinfo
= mempool
.info(inv
.hash
);
1131 // To protect privacy, do not answer getdata using the mempool when
1132 // that TX couldn't have been INVed in reply to a MEMPOOL request.
1133 if (txinfo
.tx
&& txinfo
.nTime
<= pfrom
->timeLastMempoolReq
) {
1134 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::TX
, *txinfo
.tx
));
1139 vNotFound
.push_back(inv
);
1143 // Track requests for our stuff.
1144 GetMainSignals().Inventory(inv
.hash
);
1146 if (inv
.type
== MSG_BLOCK
|| inv
.type
== MSG_FILTERED_BLOCK
|| inv
.type
== MSG_CMPCT_BLOCK
|| inv
.type
== MSG_WITNESS_BLOCK
)
1151 pfrom
->vRecvGetData
.erase(pfrom
->vRecvGetData
.begin(), it
);
1153 if (!vNotFound
.empty()) {
1154 // Let the peer know that we didn't find what it asked for, so it doesn't
1155 // have to wait around forever. Currently only SPV clients actually care
1156 // about this message: it's needed when they are recursively walking the
1157 // dependencies of relevant unconfirmed transactions. SPV clients want to
1158 // do that because they want to know about (and store and rebroadcast and
1159 // risk analyze) the dependencies of transactions relevant to them, without
1160 // having to download the entire memory pool.
1161 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::NOTFOUND
, vNotFound
));
1165 uint32_t GetFetchFlags(CNode
* pfrom
) {
1166 uint32_t nFetchFlags
= 0;
1167 if ((pfrom
->GetLocalServices() & NODE_WITNESS
) && State(pfrom
->GetId())->fHaveWitness
) {
1168 nFetchFlags
|= MSG_WITNESS_FLAG
;
1173 inline void static SendBlockTransactions(const CBlock
& block
, const BlockTransactionsRequest
& req
, CNode
* pfrom
, CConnman
& connman
) {
1174 BlockTransactions
resp(req
);
1175 for (size_t i
= 0; i
< req
.indexes
.size(); i
++) {
1176 if (req
.indexes
[i
] >= block
.vtx
.size()) {
1178 Misbehaving(pfrom
->GetId(), 100);
1179 LogPrintf("Peer %d sent us a getblocktxn with out-of-bounds tx indices", pfrom
->GetId());
1182 resp
.txn
[i
] = block
.vtx
[req
.indexes
[i
]];
1185 const CNetMsgMaker
msgMaker(pfrom
->GetSendVersion());
1186 int nSendFlags
= State(pfrom
->GetId())->fWantsCmpctWitness
? 0 : SERIALIZE_TRANSACTION_NO_WITNESS
;
1187 connman
.PushMessage(pfrom
, msgMaker
.Make(nSendFlags
, NetMsgType::BLOCKTXN
, resp
));
1190 bool static ProcessMessage(CNode
* pfrom
, const std::string
& strCommand
, CDataStream
& vRecv
, int64_t nTimeReceived
, const CChainParams
& chainparams
, CConnman
& connman
, const std::atomic
<bool>& interruptMsgProc
)
1192 LogPrint(BCLog::NET
, "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand
), vRecv
.size(), pfrom
->GetId());
1193 if (IsArgSet("-dropmessagestest") && GetRand(GetArg("-dropmessagestest", 0)) == 0)
1195 LogPrintf("dropmessagestest DROPPING RECV MESSAGE\n");
1200 if (!(pfrom
->GetLocalServices() & NODE_BLOOM
) &&
1201 (strCommand
== NetMsgType::FILTERLOAD
||
1202 strCommand
== NetMsgType::FILTERADD
))
1204 if (pfrom
->nVersion
>= NO_BLOOM_VERSION
) {
1206 Misbehaving(pfrom
->GetId(), 100);
1209 pfrom
->fDisconnect
= true;
1214 if (strCommand
== NetMsgType::REJECT
)
1216 if (LogAcceptCategory(BCLog::NET
)) {
1218 std::string strMsg
; unsigned char ccode
; std::string strReason
;
1219 vRecv
>> LIMITED_STRING(strMsg
, CMessageHeader::COMMAND_SIZE
) >> ccode
>> LIMITED_STRING(strReason
, MAX_REJECT_MESSAGE_LENGTH
);
1221 std::ostringstream ss
;
1222 ss
<< strMsg
<< " code " << itostr(ccode
) << ": " << strReason
;
1224 if (strMsg
== NetMsgType::BLOCK
|| strMsg
== NetMsgType::TX
)
1228 ss
<< ": hash " << hash
.ToString();
1230 LogPrint(BCLog::NET
, "Reject %s\n", SanitizeString(ss
.str()));
1231 } catch (const std::ios_base::failure
&) {
1232 // Avoid feedback loops by preventing reject messages from triggering a new reject message.
1233 LogPrint(BCLog::NET
, "Unparseable reject message received\n");
1238 else if (strCommand
== NetMsgType::VERSION
)
1240 // Each connection can only send one version message
1241 if (pfrom
->nVersion
!= 0)
1243 connman
.PushMessage(pfrom
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::REJECT
, strCommand
, REJECT_DUPLICATE
, std::string("Duplicate version message")));
1245 Misbehaving(pfrom
->GetId(), 1);
1252 uint64_t nNonce
= 1;
1253 uint64_t nServiceInt
;
1254 ServiceFlags nServices
;
1257 std::string strSubVer
;
1258 std::string cleanSubVer
;
1259 int nStartingHeight
= -1;
1262 vRecv
>> nVersion
>> nServiceInt
>> nTime
>> addrMe
;
1263 nSendVersion
= std::min(nVersion
, PROTOCOL_VERSION
);
1264 nServices
= ServiceFlags(nServiceInt
);
1265 if (!pfrom
->fInbound
)
1267 connman
.SetServices(pfrom
->addr
, nServices
);
1269 if (pfrom
->nServicesExpected
& ~nServices
)
1271 LogPrint(BCLog::NET
, "peer=%d does not offer the expected services (%08x offered, %08x expected); disconnecting\n", pfrom
->GetId(), nServices
, pfrom
->nServicesExpected
);
1272 connman
.PushMessage(pfrom
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::REJECT
, strCommand
, REJECT_NONSTANDARD
,
1273 strprintf("Expected to offer services %08x", pfrom
->nServicesExpected
)));
1274 pfrom
->fDisconnect
= true;
1278 if (nVersion
< MIN_PEER_PROTO_VERSION
)
1280 // disconnect from peers older than this proto version
1281 LogPrintf("peer=%d using obsolete version %i; disconnecting\n", pfrom
->GetId(), nVersion
);
1282 connman
.PushMessage(pfrom
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::REJECT
, strCommand
, REJECT_OBSOLETE
,
1283 strprintf("Version must be %d or greater", MIN_PEER_PROTO_VERSION
)));
1284 pfrom
->fDisconnect
= true;
1288 if (nVersion
== 10300)
1291 vRecv
>> addrFrom
>> nNonce
;
1292 if (!vRecv
.empty()) {
1293 vRecv
>> LIMITED_STRING(strSubVer
, MAX_SUBVERSION_LENGTH
);
1294 cleanSubVer
= SanitizeString(strSubVer
);
1296 if (!vRecv
.empty()) {
1297 vRecv
>> nStartingHeight
;
1301 // Disconnect if we connected to ourself
1302 if (pfrom
->fInbound
&& !connman
.CheckIncomingNonce(nNonce
))
1304 LogPrintf("connected to self at %s, disconnecting\n", pfrom
->addr
.ToString());
1305 pfrom
->fDisconnect
= true;
1309 if (pfrom
->fInbound
&& addrMe
.IsRoutable())
1314 // Be shy and don't send version until we hear
1315 if (pfrom
->fInbound
)
1316 PushNodeVersion(pfrom
, connman
, GetAdjustedTime());
1318 connman
.PushMessage(pfrom
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::VERACK
));
1320 pfrom
->nServices
= nServices
;
1321 pfrom
->SetAddrLocal(addrMe
);
1323 LOCK(pfrom
->cs_SubVer
);
1324 pfrom
->strSubVer
= strSubVer
;
1325 pfrom
->cleanSubVer
= cleanSubVer
;
1327 pfrom
->nStartingHeight
= nStartingHeight
;
1328 pfrom
->fClient
= !(nServices
& NODE_NETWORK
);
1330 LOCK(pfrom
->cs_filter
);
1331 pfrom
->fRelayTxes
= fRelay
; // set to true after we get the first filter* message
1335 pfrom
->SetSendVersion(nSendVersion
);
1336 pfrom
->nVersion
= nVersion
;
1338 if((nServices
& NODE_WITNESS
))
1341 State(pfrom
->GetId())->fHaveWitness
= true;
1344 // Potentially mark this peer as a preferred download peer.
1347 UpdatePreferredDownload(pfrom
, State(pfrom
->GetId()));
1350 if (!pfrom
->fInbound
)
1352 // Advertise our address
1353 if (fListen
&& !IsInitialBlockDownload())
1355 CAddress addr
= GetLocalAddress(&pfrom
->addr
, pfrom
->GetLocalServices());
1356 FastRandomContext insecure_rand
;
1357 if (addr
.IsRoutable())
1359 LogPrint(BCLog::NET
, "ProcessMessages: advertising address %s\n", addr
.ToString());
1360 pfrom
->PushAddress(addr
, insecure_rand
);
1361 } else if (IsPeerAddrLocalGood(pfrom
)) {
1363 LogPrint(BCLog::NET
, "ProcessMessages: advertising address %s\n", addr
.ToString());
1364 pfrom
->PushAddress(addr
, insecure_rand
);
1368 // Get recent addresses
1369 if (pfrom
->fOneShot
|| pfrom
->nVersion
>= CADDR_TIME_VERSION
|| connman
.GetAddressCount() < 1000)
1371 connman
.PushMessage(pfrom
, CNetMsgMaker(nSendVersion
).Make(NetMsgType::GETADDR
));
1372 pfrom
->fGetAddr
= true;
1374 connman
.MarkAddressGood(pfrom
->addr
);
1377 std::string remoteAddr
;
1379 remoteAddr
= ", peeraddr=" + pfrom
->addr
.ToString();
1381 LogPrintf("receive version message: %s: version %d, blocks=%d, us=%s, peer=%d%s\n",
1382 cleanSubVer
, pfrom
->nVersion
,
1383 pfrom
->nStartingHeight
, addrMe
.ToString(), pfrom
->GetId(),
1386 int64_t nTimeOffset
= nTime
- GetTime();
1387 pfrom
->nTimeOffset
= nTimeOffset
;
1388 AddTimeData(pfrom
->addr
, nTimeOffset
);
1390 // If the peer is old enough to have the old alert system, send it the final alert.
1391 if (pfrom
->nVersion
<= 70012) {
1392 CDataStream
finalAlert(ParseHex("60010000000000000000000000ffffff7f00000000ffffff7ffeffff7f01ffffff7f00000000ffffff7f00ffffff7f002f555247454e543a20416c657274206b657920636f6d70726f6d697365642c2075706772616465207265717569726564004630440220653febd6410f470f6bae11cad19c48413becb1ac2c17f908fd0fd53bdc3abd5202206d0e9c96fe88d4a0f01ed9dedae2b6f9e00da94cad0fecaae66ecf689bf71b50"), SER_NETWORK
, PROTOCOL_VERSION
);
1393 connman
.PushMessage(pfrom
, CNetMsgMaker(nSendVersion
).Make("alert", finalAlert
));
1396 // Feeler connections exist only to verify if address is online.
1397 if (pfrom
->fFeeler
) {
1398 assert(pfrom
->fInbound
== false);
1399 pfrom
->fDisconnect
= true;
1405 else if (pfrom
->nVersion
== 0)
1407 // Must have a version message before anything else
1409 Misbehaving(pfrom
->GetId(), 1);
1413 // At this point, the outgoing message serialization version can't change.
1414 const CNetMsgMaker
msgMaker(pfrom
->GetSendVersion());
1416 if (strCommand
== NetMsgType::VERACK
)
1418 pfrom
->SetRecvVersion(std::min(pfrom
->nVersion
.load(), PROTOCOL_VERSION
));
1420 if (!pfrom
->fInbound
) {
1421 // Mark this node as currently connected, so we update its timestamp later.
1423 State(pfrom
->GetId())->fCurrentlyConnected
= true;
1426 if (pfrom
->nVersion
>= SENDHEADERS_VERSION
) {
1427 // Tell our peer we prefer to receive headers rather than inv's
1428 // We send this to non-NODE NETWORK peers as well, because even
1429 // non-NODE NETWORK peers can announce blocks (such as pruning
1431 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::SENDHEADERS
));
1433 if (pfrom
->nVersion
>= SHORT_IDS_BLOCKS_VERSION
) {
1434 // Tell our peer we are willing to provide version 1 or 2 cmpctblocks
1435 // However, we do not request new block announcements using
1436 // cmpctblock messages.
1437 // We send this to non-NODE NETWORK peers as well, because
1438 // they may wish to request compact blocks from us
1439 bool fAnnounceUsingCMPCTBLOCK
= false;
1440 uint64_t nCMPCTBLOCKVersion
= 2;
1441 if (pfrom
->GetLocalServices() & NODE_WITNESS
)
1442 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::SENDCMPCT
, fAnnounceUsingCMPCTBLOCK
, nCMPCTBLOCKVersion
));
1443 nCMPCTBLOCKVersion
= 1;
1444 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::SENDCMPCT
, fAnnounceUsingCMPCTBLOCK
, nCMPCTBLOCKVersion
));
1446 pfrom
->fSuccessfullyConnected
= true;
1449 else if (!pfrom
->fSuccessfullyConnected
)
1451 // Must have a verack message before anything else
1453 Misbehaving(pfrom
->GetId(), 1);
1457 else if (strCommand
== NetMsgType::ADDR
)
1459 std::vector
<CAddress
> vAddr
;
1462 // Don't want addr from older versions unless seeding
1463 if (pfrom
->nVersion
< CADDR_TIME_VERSION
&& connman
.GetAddressCount() > 1000)
1465 if (vAddr
.size() > 1000)
1468 Misbehaving(pfrom
->GetId(), 20);
1469 return error("message addr size() = %u", vAddr
.size());
1472 // Store the new addresses
1473 std::vector
<CAddress
> vAddrOk
;
1474 int64_t nNow
= GetAdjustedTime();
1475 int64_t nSince
= nNow
- 10 * 60;
1476 BOOST_FOREACH(CAddress
& addr
, vAddr
)
1478 if (interruptMsgProc
)
1481 if ((addr
.nServices
& REQUIRED_SERVICES
) != REQUIRED_SERVICES
)
1484 if (addr
.nTime
<= 100000000 || addr
.nTime
> nNow
+ 10 * 60)
1485 addr
.nTime
= nNow
- 5 * 24 * 60 * 60;
1486 pfrom
->AddAddressKnown(addr
);
1487 bool fReachable
= IsReachable(addr
);
1488 if (addr
.nTime
> nSince
&& !pfrom
->fGetAddr
&& vAddr
.size() <= 10 && addr
.IsRoutable())
1490 // Relay to a limited number of other nodes
1491 RelayAddress(addr
, fReachable
, connman
);
1493 // Do not store addresses outside our network
1495 vAddrOk
.push_back(addr
);
1497 connman
.AddNewAddresses(vAddrOk
, pfrom
->addr
, 2 * 60 * 60);
1498 if (vAddr
.size() < 1000)
1499 pfrom
->fGetAddr
= false;
1500 if (pfrom
->fOneShot
)
1501 pfrom
->fDisconnect
= true;
1504 else if (strCommand
== NetMsgType::SENDHEADERS
)
1507 State(pfrom
->GetId())->fPreferHeaders
= true;
1510 else if (strCommand
== NetMsgType::SENDCMPCT
)
1512 bool fAnnounceUsingCMPCTBLOCK
= false;
1513 uint64_t nCMPCTBLOCKVersion
= 0;
1514 vRecv
>> fAnnounceUsingCMPCTBLOCK
>> nCMPCTBLOCKVersion
;
1515 if (nCMPCTBLOCKVersion
== 1 || ((pfrom
->GetLocalServices() & NODE_WITNESS
) && nCMPCTBLOCKVersion
== 2)) {
1517 // fProvidesHeaderAndIDs is used to "lock in" version of compact blocks we send (fWantsCmpctWitness)
1518 if (!State(pfrom
->GetId())->fProvidesHeaderAndIDs
) {
1519 State(pfrom
->GetId())->fProvidesHeaderAndIDs
= true;
1520 State(pfrom
->GetId())->fWantsCmpctWitness
= nCMPCTBLOCKVersion
== 2;
1522 if (State(pfrom
->GetId())->fWantsCmpctWitness
== (nCMPCTBLOCKVersion
== 2)) // ignore later version announces
1523 State(pfrom
->GetId())->fPreferHeaderAndIDs
= fAnnounceUsingCMPCTBLOCK
;
1524 if (!State(pfrom
->GetId())->fSupportsDesiredCmpctVersion
) {
1525 if (pfrom
->GetLocalServices() & NODE_WITNESS
)
1526 State(pfrom
->GetId())->fSupportsDesiredCmpctVersion
= (nCMPCTBLOCKVersion
== 2);
1528 State(pfrom
->GetId())->fSupportsDesiredCmpctVersion
= (nCMPCTBLOCKVersion
== 1);
1534 else if (strCommand
== NetMsgType::INV
)
1536 std::vector
<CInv
> vInv
;
1538 if (vInv
.size() > MAX_INV_SZ
)
1541 Misbehaving(pfrom
->GetId(), 20);
1542 return error("message inv size() = %u", vInv
.size());
1545 bool fBlocksOnly
= !fRelayTxes
;
1547 // Allow whitelisted peers to send data other than blocks in blocks only mode if whitelistrelay is true
1548 if (pfrom
->fWhitelisted
&& GetBoolArg("-whitelistrelay", DEFAULT_WHITELISTRELAY
))
1549 fBlocksOnly
= false;
1553 uint32_t nFetchFlags
= GetFetchFlags(pfrom
);
1555 for (CInv
&inv
: vInv
)
1557 if (interruptMsgProc
)
1560 bool fAlreadyHave
= AlreadyHave(inv
);
1561 LogPrint(BCLog::NET
, "got inv: %s %s peer=%d\n", inv
.ToString(), fAlreadyHave
? "have" : "new", pfrom
->GetId());
1563 if (inv
.type
== MSG_TX
) {
1564 inv
.type
|= nFetchFlags
;
1567 if (inv
.type
== MSG_BLOCK
) {
1568 UpdateBlockAvailability(pfrom
->GetId(), inv
.hash
);
1569 if (!fAlreadyHave
&& !fImporting
&& !fReindex
&& !mapBlocksInFlight
.count(inv
.hash
)) {
1570 // We used to request the full block here, but since headers-announcements are now the
1571 // primary method of announcement on the network, and since, in the case that a node
1572 // fell back to inv we probably have a reorg which we should get the headers for first,
1573 // we now only provide a getheaders response here. When we receive the headers, we will
1574 // then ask for the blocks we need.
1575 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETHEADERS
, chainActive
.GetLocator(pindexBestHeader
), inv
.hash
));
1576 LogPrint(BCLog::NET
, "getheaders (%d) %s to peer=%d\n", pindexBestHeader
->nHeight
, inv
.hash
.ToString(), pfrom
->GetId());
1581 pfrom
->AddInventoryKnown(inv
);
1583 LogPrint(BCLog::NET
, "transaction (%s) inv sent in violation of protocol peer=%d\n", inv
.hash
.ToString(), pfrom
->GetId());
1584 } else if (!fAlreadyHave
&& !fImporting
&& !fReindex
&& !IsInitialBlockDownload()) {
1589 // Track requests for our stuff
1590 GetMainSignals().Inventory(inv
.hash
);
1595 else if (strCommand
== NetMsgType::GETDATA
)
1597 std::vector
<CInv
> vInv
;
1599 if (vInv
.size() > MAX_INV_SZ
)
1602 Misbehaving(pfrom
->GetId(), 20);
1603 return error("message getdata size() = %u", vInv
.size());
1606 LogPrint(BCLog::NET
, "received getdata (%u invsz) peer=%d\n", vInv
.size(), pfrom
->GetId());
1608 if (vInv
.size() > 0) {
1609 LogPrint(BCLog::NET
, "received getdata for: %s peer=%d\n", vInv
[0].ToString(), pfrom
->GetId());
1612 pfrom
->vRecvGetData
.insert(pfrom
->vRecvGetData
.end(), vInv
.begin(), vInv
.end());
1613 ProcessGetData(pfrom
, chainparams
.GetConsensus(), connman
, interruptMsgProc
);
1617 else if (strCommand
== NetMsgType::GETBLOCKS
)
1619 CBlockLocator locator
;
1621 vRecv
>> locator
>> hashStop
;
1623 // We might have announced the currently-being-connected tip using a
1624 // compact block, which resulted in the peer sending a getblocks
1625 // request, which we would otherwise respond to without the new block.
1626 // To avoid this situation we simply verify that we are on our best
1627 // known chain now. This is super overkill, but we handle it better
1628 // for getheaders requests, and there are no known nodes which support
1629 // compact blocks but still use getblocks to request blocks.
1631 std::shared_ptr
<const CBlock
> a_recent_block
;
1633 LOCK(cs_most_recent_block
);
1634 a_recent_block
= most_recent_block
;
1636 CValidationState dummy
;
1637 ActivateBestChain(dummy
, Params(), a_recent_block
);
1642 // Find the last block the caller has in the main chain
1643 const CBlockIndex
* pindex
= FindForkInGlobalIndex(chainActive
, locator
);
1645 // Send the rest of the chain
1647 pindex
= chainActive
.Next(pindex
);
1649 LogPrint(BCLog::NET
, "getblocks %d to %s limit %d from peer=%d\n", (pindex
? pindex
->nHeight
: -1), hashStop
.IsNull() ? "end" : hashStop
.ToString(), nLimit
, pfrom
->GetId());
1650 for (; pindex
; pindex
= chainActive
.Next(pindex
))
1652 if (pindex
->GetBlockHash() == hashStop
)
1654 LogPrint(BCLog::NET
, " getblocks stopping at %d %s\n", pindex
->nHeight
, pindex
->GetBlockHash().ToString());
1657 // If pruning, don't inv blocks unless we have on disk and are likely to still have
1658 // for some reasonable time window (1 hour) that block relay might require.
1659 const int nPrunedBlocksLikelyToHave
= MIN_BLOCKS_TO_KEEP
- 3600 / chainparams
.GetConsensus().nPowTargetSpacing
;
1660 if (fPruneMode
&& (!(pindex
->nStatus
& BLOCK_HAVE_DATA
) || pindex
->nHeight
<= chainActive
.Tip()->nHeight
- nPrunedBlocksLikelyToHave
))
1662 LogPrint(BCLog::NET
, " getblocks stopping, pruned or too old block at %d %s\n", pindex
->nHeight
, pindex
->GetBlockHash().ToString());
1665 pfrom
->PushInventory(CInv(MSG_BLOCK
, pindex
->GetBlockHash()));
1668 // When this block is requested, we'll send an inv that'll
1669 // trigger the peer to getblocks the next batch of inventory.
1670 LogPrint(BCLog::NET
, " getblocks stopping at limit %d %s\n", pindex
->nHeight
, pindex
->GetBlockHash().ToString());
1671 pfrom
->hashContinue
= pindex
->GetBlockHash();
1678 else if (strCommand
== NetMsgType::GETBLOCKTXN
)
1680 BlockTransactionsRequest req
;
1683 std::shared_ptr
<const CBlock
> recent_block
;
1685 LOCK(cs_most_recent_block
);
1686 if (most_recent_block_hash
== req
.blockhash
)
1687 recent_block
= most_recent_block
;
1688 // Unlock cs_most_recent_block to avoid cs_main lock inversion
1691 SendBlockTransactions(*recent_block
, req
, pfrom
, connman
);
1697 BlockMap::iterator it
= mapBlockIndex
.find(req
.blockhash
);
1698 if (it
== mapBlockIndex
.end() || !(it
->second
->nStatus
& BLOCK_HAVE_DATA
)) {
1699 LogPrintf("Peer %d sent us a getblocktxn for a block we don't have", pfrom
->GetId());
1703 if (it
->second
->nHeight
< chainActive
.Height() - MAX_BLOCKTXN_DEPTH
) {
1704 // If an older block is requested (should never happen in practice,
1705 // but can happen in tests) send a block response instead of a
1706 // blocktxn response. Sending a full block response instead of a
1707 // small blocktxn response is preferable in the case where a peer
1708 // might maliciously send lots of getblocktxn requests to trigger
1709 // expensive disk reads, because it will require the peer to
1710 // actually receive all the data read from disk over the network.
1711 LogPrint(BCLog::NET
, "Peer %d sent us a getblocktxn for a block > %i deep", pfrom
->GetId(), MAX_BLOCKTXN_DEPTH
);
1713 inv
.type
= State(pfrom
->GetId())->fWantsCmpctWitness
? MSG_WITNESS_BLOCK
: MSG_BLOCK
;
1714 inv
.hash
= req
.blockhash
;
1715 pfrom
->vRecvGetData
.push_back(inv
);
1716 ProcessGetData(pfrom
, chainparams
.GetConsensus(), connman
, interruptMsgProc
);
1721 bool ret
= ReadBlockFromDisk(block
, it
->second
, chainparams
.GetConsensus());
1724 SendBlockTransactions(block
, req
, pfrom
, connman
);
1728 else if (strCommand
== NetMsgType::GETHEADERS
)
1730 CBlockLocator locator
;
1732 vRecv
>> locator
>> hashStop
;
1735 if (IsInitialBlockDownload() && !pfrom
->fWhitelisted
) {
1736 LogPrint(BCLog::NET
, "Ignoring getheaders from peer=%d because node is in initial block download\n", pfrom
->GetId());
1740 CNodeState
*nodestate
= State(pfrom
->GetId());
1741 const CBlockIndex
* pindex
= NULL
;
1742 if (locator
.IsNull())
1744 // If locator is null, return the hashStop block
1745 BlockMap::iterator mi
= mapBlockIndex
.find(hashStop
);
1746 if (mi
== mapBlockIndex
.end())
1748 pindex
= (*mi
).second
;
1752 // Find the last block the caller has in the main chain
1753 pindex
= FindForkInGlobalIndex(chainActive
, locator
);
1755 pindex
= chainActive
.Next(pindex
);
1758 // we must use CBlocks, as CBlockHeaders won't include the 0x00 nTx count at the end
1759 std::vector
<CBlock
> vHeaders
;
1760 int nLimit
= MAX_HEADERS_RESULTS
;
1761 LogPrint(BCLog::NET
, "getheaders %d to %s from peer=%d\n", (pindex
? pindex
->nHeight
: -1), hashStop
.IsNull() ? "end" : hashStop
.ToString(), pfrom
->GetId());
1762 for (; pindex
; pindex
= chainActive
.Next(pindex
))
1764 vHeaders
.push_back(pindex
->GetBlockHeader());
1765 if (--nLimit
<= 0 || pindex
->GetBlockHash() == hashStop
)
1768 // pindex can be NULL either if we sent chainActive.Tip() OR
1769 // if our peer has chainActive.Tip() (and thus we are sending an empty
1770 // headers message). In both cases it's safe to update
1771 // pindexBestHeaderSent to be our tip.
1773 // It is important that we simply reset the BestHeaderSent value here,
1774 // and not max(BestHeaderSent, newHeaderSent). We might have announced
1775 // the currently-being-connected tip using a compact block, which
1776 // resulted in the peer sending a headers request, which we respond to
1777 // without the new block. By resetting the BestHeaderSent, we ensure we
1778 // will re-announce the new block via headers (or compact blocks again)
1779 // in the SendMessages logic.
1780 nodestate
->pindexBestHeaderSent
= pindex
? pindex
: chainActive
.Tip();
1781 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::HEADERS
, vHeaders
));
1785 else if (strCommand
== NetMsgType::TX
)
1787 // Stop processing the transaction early if
1788 // We are in blocks only mode and peer is either not whitelisted or whitelistrelay is off
1789 if (!fRelayTxes
&& (!pfrom
->fWhitelisted
|| !GetBoolArg("-whitelistrelay", DEFAULT_WHITELISTRELAY
)))
1791 LogPrint(BCLog::NET
, "transaction sent in violation of protocol peer=%d\n", pfrom
->GetId());
1795 std::deque
<COutPoint
> vWorkQueue
;
1796 std::vector
<uint256
> vEraseQueue
;
1797 CTransactionRef ptx
;
1799 const CTransaction
& tx
= *ptx
;
1801 CInv
inv(MSG_TX
, tx
.GetHash());
1802 pfrom
->AddInventoryKnown(inv
);
1806 bool fMissingInputs
= false;
1807 CValidationState state
;
1809 pfrom
->setAskFor
.erase(inv
.hash
);
1810 mapAlreadyAskedFor
.erase(inv
.hash
);
1812 std::list
<CTransactionRef
> lRemovedTxn
;
1814 if (!AlreadyHave(inv
) && AcceptToMemoryPool(mempool
, state
, ptx
, true, &fMissingInputs
, &lRemovedTxn
)) {
1815 mempool
.check(pcoinsTip
);
1816 RelayTransaction(tx
, connman
);
1817 for (unsigned int i
= 0; i
< tx
.vout
.size(); i
++) {
1818 vWorkQueue
.emplace_back(inv
.hash
, i
);
1821 pfrom
->nLastTXTime
= GetTime();
1823 LogPrint(BCLog::MEMPOOL
, "AcceptToMemoryPool: peer=%d: accepted %s (poolsz %u txn, %u kB)\n",
1825 tx
.GetHash().ToString(),
1826 mempool
.size(), mempool
.DynamicMemoryUsage() / 1000);
1828 // Recursively process any orphan transactions that depended on this one
1829 std::set
<NodeId
> setMisbehaving
;
1830 while (!vWorkQueue
.empty()) {
1831 auto itByPrev
= mapOrphanTransactionsByPrev
.find(vWorkQueue
.front());
1832 vWorkQueue
.pop_front();
1833 if (itByPrev
== mapOrphanTransactionsByPrev
.end())
1835 for (auto mi
= itByPrev
->second
.begin();
1836 mi
!= itByPrev
->second
.end();
1839 const CTransactionRef
& porphanTx
= (*mi
)->second
.tx
;
1840 const CTransaction
& orphanTx
= *porphanTx
;
1841 const uint256
& orphanHash
= orphanTx
.GetHash();
1842 NodeId fromPeer
= (*mi
)->second
.fromPeer
;
1843 bool fMissingInputs2
= false;
1844 // Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan
1845 // resolution (that is, feeding people an invalid transaction based on LegitTxX in order to get
1846 // anyone relaying LegitTxX banned)
1847 CValidationState stateDummy
;
1850 if (setMisbehaving
.count(fromPeer
))
1852 if (AcceptToMemoryPool(mempool
, stateDummy
, porphanTx
, true, &fMissingInputs2
, &lRemovedTxn
)) {
1853 LogPrint(BCLog::MEMPOOL
, " accepted orphan tx %s\n", orphanHash
.ToString());
1854 RelayTransaction(orphanTx
, connman
);
1855 for (unsigned int i
= 0; i
< orphanTx
.vout
.size(); i
++) {
1856 vWorkQueue
.emplace_back(orphanHash
, i
);
1858 vEraseQueue
.push_back(orphanHash
);
1860 else if (!fMissingInputs2
)
1863 if (stateDummy
.IsInvalid(nDos
) && nDos
> 0)
1865 // Punish peer that gave us an invalid orphan tx
1866 Misbehaving(fromPeer
, nDos
);
1867 setMisbehaving
.insert(fromPeer
);
1868 LogPrint(BCLog::MEMPOOL
, " invalid orphan tx %s\n", orphanHash
.ToString());
1870 // Has inputs but not accepted to mempool
1871 // Probably non-standard or insufficient fee
1872 LogPrint(BCLog::MEMPOOL
, " removed orphan tx %s\n", orphanHash
.ToString());
1873 vEraseQueue
.push_back(orphanHash
);
1874 if (!orphanTx
.HasWitness() && !stateDummy
.CorruptionPossible()) {
1875 // Do not use rejection cache for witness transactions or
1876 // witness-stripped transactions, as they can have been malleated.
1877 // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
1878 assert(recentRejects
);
1879 recentRejects
->insert(orphanHash
);
1882 mempool
.check(pcoinsTip
);
1886 BOOST_FOREACH(uint256 hash
, vEraseQueue
)
1887 EraseOrphanTx(hash
);
1889 else if (fMissingInputs
)
1891 bool fRejectedParents
= false; // It may be the case that the orphans parents have all been rejected
1892 BOOST_FOREACH(const CTxIn
& txin
, tx
.vin
) {
1893 if (recentRejects
->contains(txin
.prevout
.hash
)) {
1894 fRejectedParents
= true;
1898 if (!fRejectedParents
) {
1899 uint32_t nFetchFlags
= GetFetchFlags(pfrom
);
1900 BOOST_FOREACH(const CTxIn
& txin
, tx
.vin
) {
1901 CInv
_inv(MSG_TX
| nFetchFlags
, txin
.prevout
.hash
);
1902 pfrom
->AddInventoryKnown(_inv
);
1903 if (!AlreadyHave(_inv
)) pfrom
->AskFor(_inv
);
1905 AddOrphanTx(ptx
, pfrom
->GetId());
1907 // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
1908 unsigned int nMaxOrphanTx
= (unsigned int)std::max((int64_t)0, GetArg("-maxorphantx", DEFAULT_MAX_ORPHAN_TRANSACTIONS
));
1909 unsigned int nEvicted
= LimitOrphanTxSize(nMaxOrphanTx
);
1911 LogPrint(BCLog::MEMPOOL
, "mapOrphan overflow, removed %u tx\n", nEvicted
);
1914 LogPrint(BCLog::MEMPOOL
, "not keeping orphan with rejected parents %s\n",tx
.GetHash().ToString());
1915 // We will continue to reject this tx since it has rejected
1916 // parents so avoid re-requesting it from other peers.
1917 recentRejects
->insert(tx
.GetHash());
1920 if (!tx
.HasWitness() && !state
.CorruptionPossible()) {
1921 // Do not use rejection cache for witness transactions or
1922 // witness-stripped transactions, as they can have been malleated.
1923 // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
1924 assert(recentRejects
);
1925 recentRejects
->insert(tx
.GetHash());
1926 if (RecursiveDynamicUsage(*ptx
) < 100000) {
1927 AddToCompactExtraTransactions(ptx
);
1929 } else if (tx
.HasWitness() && RecursiveDynamicUsage(*ptx
) < 100000) {
1930 AddToCompactExtraTransactions(ptx
);
1933 if (pfrom
->fWhitelisted
&& GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY
)) {
1934 // Always relay transactions received from whitelisted peers, even
1935 // if they were already in the mempool or rejected from it due
1936 // to policy, allowing the node to function as a gateway for
1937 // nodes hidden behind it.
1939 // Never relay transactions that we would assign a non-zero DoS
1940 // score for, as we expect peers to do the same with us in that
1943 if (!state
.IsInvalid(nDoS
) || nDoS
== 0) {
1944 LogPrintf("Force relaying tx %s from whitelisted peer=%d\n", tx
.GetHash().ToString(), pfrom
->GetId());
1945 RelayTransaction(tx
, connman
);
1947 LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s)\n", tx
.GetHash().ToString(), pfrom
->GetId(), FormatStateMessage(state
));
1952 for (const CTransactionRef
& removedTx
: lRemovedTxn
)
1953 AddToCompactExtraTransactions(removedTx
);
1956 if (state
.IsInvalid(nDoS
))
1958 LogPrint(BCLog::MEMPOOLREJ
, "%s from peer=%d was not accepted: %s\n", tx
.GetHash().ToString(),
1960 FormatStateMessage(state
));
1961 if (state
.GetRejectCode() > 0 && state
.GetRejectCode() < REJECT_INTERNAL
) // Never send AcceptToMemoryPool's internal codes over P2P
1962 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::REJECT
, strCommand
, (unsigned char)state
.GetRejectCode(),
1963 state
.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH
), inv
.hash
));
1965 Misbehaving(pfrom
->GetId(), nDoS
);
1971 else if (strCommand
== NetMsgType::CMPCTBLOCK
&& !fImporting
&& !fReindex
) // Ignore blocks received while importing
1973 CBlockHeaderAndShortTxIDs cmpctblock
;
1974 vRecv
>> cmpctblock
;
1979 if (mapBlockIndex
.find(cmpctblock
.header
.hashPrevBlock
) == mapBlockIndex
.end()) {
1980 // Doesn't connect (or is genesis), instead of DoSing in AcceptBlockHeader, request deeper headers
1981 if (!IsInitialBlockDownload())
1982 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETHEADERS
, chainActive
.GetLocator(pindexBestHeader
), uint256()));
1987 const CBlockIndex
*pindex
= NULL
;
1988 CValidationState state
;
1989 if (!ProcessNewBlockHeaders({cmpctblock
.header
}, state
, chainparams
, &pindex
)) {
1991 if (state
.IsInvalid(nDoS
)) {
1994 Misbehaving(pfrom
->GetId(), nDoS
);
1996 LogPrintf("Peer %d sent us invalid header via cmpctblock\n", pfrom
->GetId());
2001 // When we succeed in decoding a block's txids from a cmpctblock
2002 // message we typically jump to the BLOCKTXN handling code, with a
2003 // dummy (empty) BLOCKTXN message, to re-use the logic there in
2004 // completing processing of the putative block (without cs_main).
2005 bool fProcessBLOCKTXN
= false;
2006 CDataStream
blockTxnMsg(SER_NETWORK
, PROTOCOL_VERSION
);
2008 // If we end up treating this as a plain headers message, call that as well
2010 bool fRevertToHeaderProcessing
= false;
2011 CDataStream
vHeadersMsg(SER_NETWORK
, PROTOCOL_VERSION
);
2013 // Keep a CBlock for "optimistic" compactblock reconstructions (see
2015 std::shared_ptr
<CBlock
> pblock
= std::make_shared
<CBlock
>();
2016 bool fBlockReconstructed
= false;
2020 // If AcceptBlockHeader returned true, it set pindex
2022 UpdateBlockAvailability(pfrom
->GetId(), pindex
->GetBlockHash());
2024 std::map
<uint256
, std::pair
<NodeId
, std::list
<QueuedBlock
>::iterator
> >::iterator blockInFlightIt
= mapBlocksInFlight
.find(pindex
->GetBlockHash());
2025 bool fAlreadyInFlight
= blockInFlightIt
!= mapBlocksInFlight
.end();
2027 if (pindex
->nStatus
& BLOCK_HAVE_DATA
) // Nothing to do here
2030 if (pindex
->nChainWork
<= chainActive
.Tip()->nChainWork
|| // We know something better
2031 pindex
->nTx
!= 0) { // We had this block at some point, but pruned it
2032 if (fAlreadyInFlight
) {
2033 // We requested this block for some reason, but our mempool will probably be useless
2034 // so we just grab the block via normal getdata
2035 std::vector
<CInv
> vInv(1);
2036 vInv
[0] = CInv(MSG_BLOCK
| GetFetchFlags(pfrom
), cmpctblock
.header
.GetHash());
2037 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETDATA
, vInv
));
2042 // If we're not close to tip yet, give up and let parallel block fetch work its magic
2043 if (!fAlreadyInFlight
&& !CanDirectFetch(chainparams
.GetConsensus()))
2046 CNodeState
*nodestate
= State(pfrom
->GetId());
2048 if (IsWitnessEnabled(pindex
->pprev
, chainparams
.GetConsensus()) && !nodestate
->fSupportsDesiredCmpctVersion
) {
2049 // Don't bother trying to process compact blocks from v1 peers
2050 // after segwit activates.
2054 // We want to be a bit conservative just to be extra careful about DoS
2055 // possibilities in compact block processing...
2056 if (pindex
->nHeight
<= chainActive
.Height() + 2) {
2057 if ((!fAlreadyInFlight
&& nodestate
->nBlocksInFlight
< MAX_BLOCKS_IN_TRANSIT_PER_PEER
) ||
2058 (fAlreadyInFlight
&& blockInFlightIt
->second
.first
== pfrom
->GetId())) {
2059 std::list
<QueuedBlock
>::iterator
* queuedBlockIt
= NULL
;
2060 if (!MarkBlockAsInFlight(pfrom
->GetId(), pindex
->GetBlockHash(), pindex
, &queuedBlockIt
)) {
2061 if (!(*queuedBlockIt
)->partialBlock
)
2062 (*queuedBlockIt
)->partialBlock
.reset(new PartiallyDownloadedBlock(&mempool
));
2064 // The block was already in flight using compact blocks from the same peer
2065 LogPrint(BCLog::NET
, "Peer sent us compact block we were already syncing!\n");
2070 PartiallyDownloadedBlock
& partialBlock
= *(*queuedBlockIt
)->partialBlock
;
2071 ReadStatus status
= partialBlock
.InitData(cmpctblock
, vExtraTxnForCompact
);
2072 if (status
== READ_STATUS_INVALID
) {
2073 MarkBlockAsReceived(pindex
->GetBlockHash()); // Reset in-flight state in case of whitelist
2074 Misbehaving(pfrom
->GetId(), 100);
2075 LogPrintf("Peer %d sent us invalid compact block\n", pfrom
->GetId());
2077 } else if (status
== READ_STATUS_FAILED
) {
2078 // Duplicate txindexes, the block is now in-flight, so just request it
2079 std::vector
<CInv
> vInv(1);
2080 vInv
[0] = CInv(MSG_BLOCK
| GetFetchFlags(pfrom
), cmpctblock
.header
.GetHash());
2081 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETDATA
, vInv
));
2085 BlockTransactionsRequest req
;
2086 for (size_t i
= 0; i
< cmpctblock
.BlockTxCount(); i
++) {
2087 if (!partialBlock
.IsTxAvailable(i
))
2088 req
.indexes
.push_back(i
);
2090 if (req
.indexes
.empty()) {
2091 // Dirty hack to jump to BLOCKTXN code (TODO: move message handling into their own functions)
2092 BlockTransactions txn
;
2093 txn
.blockhash
= cmpctblock
.header
.GetHash();
2095 fProcessBLOCKTXN
= true;
2097 req
.blockhash
= pindex
->GetBlockHash();
2098 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETBLOCKTXN
, req
));
2101 // This block is either already in flight from a different
2102 // peer, or this peer has too many blocks outstanding to
2104 // Optimistically try to reconstruct anyway since we might be
2105 // able to without any round trips.
2106 PartiallyDownloadedBlock
tempBlock(&mempool
);
2107 ReadStatus status
= tempBlock
.InitData(cmpctblock
, vExtraTxnForCompact
);
2108 if (status
!= READ_STATUS_OK
) {
2109 // TODO: don't ignore failures
2112 std::vector
<CTransactionRef
> dummy
;
2113 status
= tempBlock
.FillBlock(*pblock
, dummy
);
2114 if (status
== READ_STATUS_OK
) {
2115 fBlockReconstructed
= true;
2119 if (fAlreadyInFlight
) {
2120 // We requested this block, but its far into the future, so our
2121 // mempool will probably be useless - request the block normally
2122 std::vector
<CInv
> vInv(1);
2123 vInv
[0] = CInv(MSG_BLOCK
| GetFetchFlags(pfrom
), cmpctblock
.header
.GetHash());
2124 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETDATA
, vInv
));
2127 // If this was an announce-cmpctblock, we want the same treatment as a header message
2128 // Dirty hack to process as if it were just a headers message (TODO: move message handling into their own functions)
2129 std::vector
<CBlock
> headers
;
2130 headers
.push_back(cmpctblock
.header
);
2131 vHeadersMsg
<< headers
;
2132 fRevertToHeaderProcessing
= true;
2137 if (fProcessBLOCKTXN
)
2138 return ProcessMessage(pfrom
, NetMsgType::BLOCKTXN
, blockTxnMsg
, nTimeReceived
, chainparams
, connman
, interruptMsgProc
);
2140 if (fRevertToHeaderProcessing
)
2141 return ProcessMessage(pfrom
, NetMsgType::HEADERS
, vHeadersMsg
, nTimeReceived
, chainparams
, connman
, interruptMsgProc
);
2143 if (fBlockReconstructed
) {
2144 // If we got here, we were able to optimistically reconstruct a
2145 // block that is in flight from some other peer.
2148 mapBlockSource
.emplace(pblock
->GetHash(), std::make_pair(pfrom
->GetId(), false));
2150 bool fNewBlock
= false;
2151 ProcessNewBlock(chainparams
, pblock
, true, &fNewBlock
);
2153 pfrom
->nLastBlockTime
= GetTime();
2155 LOCK(cs_main
); // hold cs_main for CBlockIndex::IsValid()
2156 if (pindex
->IsValid(BLOCK_VALID_TRANSACTIONS
)) {
2157 // Clear download state for this block, which is in
2158 // process from some other peer. We do this after calling
2159 // ProcessNewBlock so that a malleated cmpctblock announcement
2160 // can't be used to interfere with block relay.
2161 MarkBlockAsReceived(pblock
->GetHash());
2167 else if (strCommand
== NetMsgType::BLOCKTXN
&& !fImporting
&& !fReindex
) // Ignore blocks received while importing
2169 BlockTransactions resp
;
2172 std::shared_ptr
<CBlock
> pblock
= std::make_shared
<CBlock
>();
2173 bool fBlockRead
= false;
2177 std::map
<uint256
, std::pair
<NodeId
, std::list
<QueuedBlock
>::iterator
> >::iterator it
= mapBlocksInFlight
.find(resp
.blockhash
);
2178 if (it
== mapBlocksInFlight
.end() || !it
->second
.second
->partialBlock
||
2179 it
->second
.first
!= pfrom
->GetId()) {
2180 LogPrint(BCLog::NET
, "Peer %d sent us block transactions for block we weren't expecting\n", pfrom
->GetId());
2184 PartiallyDownloadedBlock
& partialBlock
= *it
->second
.second
->partialBlock
;
2185 ReadStatus status
= partialBlock
.FillBlock(*pblock
, resp
.txn
);
2186 if (status
== READ_STATUS_INVALID
) {
2187 MarkBlockAsReceived(resp
.blockhash
); // Reset in-flight state in case of whitelist
2188 Misbehaving(pfrom
->GetId(), 100);
2189 LogPrintf("Peer %d sent us invalid compact block/non-matching block transactions\n", pfrom
->GetId());
2191 } else if (status
== READ_STATUS_FAILED
) {
2192 // Might have collided, fall back to getdata now :(
2193 std::vector
<CInv
> invs
;
2194 invs
.push_back(CInv(MSG_BLOCK
| GetFetchFlags(pfrom
), resp
.blockhash
));
2195 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETDATA
, invs
));
2197 // Block is either okay, or possibly we received
2198 // READ_STATUS_CHECKBLOCK_FAILED.
2199 // Note that CheckBlock can only fail for one of a few reasons:
2200 // 1. bad-proof-of-work (impossible here, because we've already
2201 // accepted the header)
2202 // 2. merkleroot doesn't match the transactions given (already
2203 // caught in FillBlock with READ_STATUS_FAILED, so
2205 // 3. the block is otherwise invalid (eg invalid coinbase,
2206 // block is too big, too many legacy sigops, etc).
2207 // So if CheckBlock failed, #3 is the only possibility.
2208 // Under BIP 152, we don't DoS-ban unless proof of work is
2209 // invalid (we don't require all the stateless checks to have
2210 // been run). This is handled below, so just treat this as
2211 // though the block was successfully read, and rely on the
2212 // handling in ProcessNewBlock to ensure the block index is
2213 // updated, reject messages go out, etc.
2214 MarkBlockAsReceived(resp
.blockhash
); // it is now an empty pointer
2216 // mapBlockSource is only used for sending reject messages and DoS scores,
2217 // so the race between here and cs_main in ProcessNewBlock is fine.
2218 // BIP 152 permits peers to relay compact blocks after validating
2219 // the header only; we should not punish peers if the block turns
2220 // out to be invalid.
2221 mapBlockSource
.emplace(resp
.blockhash
, std::make_pair(pfrom
->GetId(), false));
2223 } // Don't hold cs_main when we call into ProcessNewBlock
2225 bool fNewBlock
= false;
2226 // Since we requested this block (it was in mapBlocksInFlight), force it to be processed,
2227 // even if it would not be a candidate for new tip (missing previous block, chain not long enough, etc)
2228 ProcessNewBlock(chainparams
, pblock
, true, &fNewBlock
);
2230 pfrom
->nLastBlockTime
= GetTime();
2235 else if (strCommand
== NetMsgType::HEADERS
&& !fImporting
&& !fReindex
) // Ignore headers received while importing
2237 std::vector
<CBlockHeader
> headers
;
2239 // Bypass the normal CBlock deserialization, as we don't want to risk deserializing 2000 full blocks.
2240 unsigned int nCount
= ReadCompactSize(vRecv
);
2241 if (nCount
> MAX_HEADERS_RESULTS
) {
2243 Misbehaving(pfrom
->GetId(), 20);
2244 return error("headers message size = %u", nCount
);
2246 headers
.resize(nCount
);
2247 for (unsigned int n
= 0; n
< nCount
; n
++) {
2248 vRecv
>> headers
[n
];
2249 ReadCompactSize(vRecv
); // ignore tx count; assume it is 0.
2253 // Nothing interesting. Stop asking this peers for more headers.
2257 const CBlockIndex
*pindexLast
= NULL
;
2260 CNodeState
*nodestate
= State(pfrom
->GetId());
2262 // If this looks like it could be a block announcement (nCount <
2263 // MAX_BLOCKS_TO_ANNOUNCE), use special logic for handling headers that
2265 // - Send a getheaders message in response to try to connect the chain.
2266 // - The peer can send up to MAX_UNCONNECTING_HEADERS in a row that
2267 // don't connect before giving DoS points
2268 // - Once a headers message is received that is valid and does connect,
2269 // nUnconnectingHeaders gets reset back to 0.
2270 if (mapBlockIndex
.find(headers
[0].hashPrevBlock
) == mapBlockIndex
.end() && nCount
< MAX_BLOCKS_TO_ANNOUNCE
) {
2271 nodestate
->nUnconnectingHeaders
++;
2272 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETHEADERS
, chainActive
.GetLocator(pindexBestHeader
), uint256()));
2273 LogPrint(BCLog::NET
, "received header %s: missing prev block %s, sending getheaders (%d) to end (peer=%d, nUnconnectingHeaders=%d)\n",
2274 headers
[0].GetHash().ToString(),
2275 headers
[0].hashPrevBlock
.ToString(),
2276 pindexBestHeader
->nHeight
,
2277 pfrom
->GetId(), nodestate
->nUnconnectingHeaders
);
2278 // Set hashLastUnknownBlock for this peer, so that if we
2279 // eventually get the headers - even from a different peer -
2280 // we can use this peer to download.
2281 UpdateBlockAvailability(pfrom
->GetId(), headers
.back().GetHash());
2283 if (nodestate
->nUnconnectingHeaders
% MAX_UNCONNECTING_HEADERS
== 0) {
2284 Misbehaving(pfrom
->GetId(), 20);
2289 uint256 hashLastBlock
;
2290 for (const CBlockHeader
& header
: headers
) {
2291 if (!hashLastBlock
.IsNull() && header
.hashPrevBlock
!= hashLastBlock
) {
2292 Misbehaving(pfrom
->GetId(), 20);
2293 return error("non-continuous headers sequence");
2295 hashLastBlock
= header
.GetHash();
2299 CValidationState state
;
2300 if (!ProcessNewBlockHeaders(headers
, state
, chainparams
, &pindexLast
)) {
2302 if (state
.IsInvalid(nDoS
)) {
2305 Misbehaving(pfrom
->GetId(), nDoS
);
2307 return error("invalid header received");
2313 CNodeState
*nodestate
= State(pfrom
->GetId());
2314 if (nodestate
->nUnconnectingHeaders
> 0) {
2315 LogPrint(BCLog::NET
, "peer=%d: resetting nUnconnectingHeaders (%d -> 0)\n", pfrom
->GetId(), nodestate
->nUnconnectingHeaders
);
2317 nodestate
->nUnconnectingHeaders
= 0;
2320 UpdateBlockAvailability(pfrom
->GetId(), pindexLast
->GetBlockHash());
2322 if (nCount
== MAX_HEADERS_RESULTS
) {
2323 // Headers message had its maximum size; the peer may have more headers.
2324 // TODO: optimize: if pindexLast is an ancestor of chainActive.Tip or pindexBestHeader, continue
2325 // from there instead.
2326 LogPrint(BCLog::NET
, "more getheaders (%d) to end to peer=%d (startheight:%d)\n", pindexLast
->nHeight
, pfrom
->GetId(), pfrom
->nStartingHeight
);
2327 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETHEADERS
, chainActive
.GetLocator(pindexLast
), uint256()));
2330 bool fCanDirectFetch
= CanDirectFetch(chainparams
.GetConsensus());
2331 // If this set of headers is valid and ends in a block with at least as
2332 // much work as our tip, download as much as possible.
2333 if (fCanDirectFetch
&& pindexLast
->IsValid(BLOCK_VALID_TREE
) && chainActive
.Tip()->nChainWork
<= pindexLast
->nChainWork
) {
2334 std::vector
<const CBlockIndex
*> vToFetch
;
2335 const CBlockIndex
*pindexWalk
= pindexLast
;
2336 // Calculate all the blocks we'd need to switch to pindexLast, up to a limit.
2337 while (pindexWalk
&& !chainActive
.Contains(pindexWalk
) && vToFetch
.size() <= MAX_BLOCKS_IN_TRANSIT_PER_PEER
) {
2338 if (!(pindexWalk
->nStatus
& BLOCK_HAVE_DATA
) &&
2339 !mapBlocksInFlight
.count(pindexWalk
->GetBlockHash()) &&
2340 (!IsWitnessEnabled(pindexWalk
->pprev
, chainparams
.GetConsensus()) || State(pfrom
->GetId())->fHaveWitness
)) {
2341 // We don't have this block, and it's not yet in flight.
2342 vToFetch
.push_back(pindexWalk
);
2344 pindexWalk
= pindexWalk
->pprev
;
2346 // If pindexWalk still isn't on our main chain, we're looking at a
2347 // very large reorg at a time we think we're close to caught up to
2348 // the main chain -- this shouldn't really happen. Bail out on the
2349 // direct fetch and rely on parallel download instead.
2350 if (!chainActive
.Contains(pindexWalk
)) {
2351 LogPrint(BCLog::NET
, "Large reorg, won't direct fetch to %s (%d)\n",
2352 pindexLast
->GetBlockHash().ToString(),
2353 pindexLast
->nHeight
);
2355 std::vector
<CInv
> vGetData
;
2356 // Download as much as possible, from earliest to latest.
2357 BOOST_REVERSE_FOREACH(const CBlockIndex
*pindex
, vToFetch
) {
2358 if (nodestate
->nBlocksInFlight
>= MAX_BLOCKS_IN_TRANSIT_PER_PEER
) {
2359 // Can't download any more from this peer
2362 uint32_t nFetchFlags
= GetFetchFlags(pfrom
);
2363 vGetData
.push_back(CInv(MSG_BLOCK
| nFetchFlags
, pindex
->GetBlockHash()));
2364 MarkBlockAsInFlight(pfrom
->GetId(), pindex
->GetBlockHash(), pindex
);
2365 LogPrint(BCLog::NET
, "Requesting block %s from peer=%d\n",
2366 pindex
->GetBlockHash().ToString(), pfrom
->GetId());
2368 if (vGetData
.size() > 1) {
2369 LogPrint(BCLog::NET
, "Downloading blocks toward %s (%d) via headers direct fetch\n",
2370 pindexLast
->GetBlockHash().ToString(), pindexLast
->nHeight
);
2372 if (vGetData
.size() > 0) {
2373 if (nodestate
->fSupportsDesiredCmpctVersion
&& vGetData
.size() == 1 && mapBlocksInFlight
.size() == 1 && pindexLast
->pprev
->IsValid(BLOCK_VALID_CHAIN
)) {
2374 // In any case, we want to download using a compact block, not a regular one
2375 vGetData
[0] = CInv(MSG_CMPCT_BLOCK
, vGetData
[0].hash
);
2377 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::GETDATA
, vGetData
));
2384 else if (strCommand
== NetMsgType::BLOCK
&& !fImporting
&& !fReindex
) // Ignore blocks received while importing
2386 std::shared_ptr
<CBlock
> pblock
= std::make_shared
<CBlock
>();
2389 LogPrint(BCLog::NET
, "received block %s peer=%d\n", pblock
->GetHash().ToString(), pfrom
->GetId());
2391 // Process all blocks from whitelisted peers, even if not requested,
2392 // unless we're still syncing with the network.
2393 // Such an unrequested block may still be processed, subject to the
2394 // conditions in AcceptBlock().
2395 bool forceProcessing
= pfrom
->fWhitelisted
&& !IsInitialBlockDownload();
2396 const uint256
hash(pblock
->GetHash());
2399 // Also always process if we requested the block explicitly, as we may
2400 // need it even though it is not a candidate for a new best tip.
2401 forceProcessing
|= MarkBlockAsReceived(hash
);
2402 // mapBlockSource is only used for sending reject messages and DoS scores,
2403 // so the race between here and cs_main in ProcessNewBlock is fine.
2404 mapBlockSource
.emplace(hash
, std::make_pair(pfrom
->GetId(), true));
2406 bool fNewBlock
= false;
2407 ProcessNewBlock(chainparams
, pblock
, forceProcessing
, &fNewBlock
);
2409 pfrom
->nLastBlockTime
= GetTime();
2413 else if (strCommand
== NetMsgType::GETADDR
)
2415 // This asymmetric behavior for inbound and outbound connections was introduced
2416 // to prevent a fingerprinting attack: an attacker can send specific fake addresses
2417 // to users' AddrMan and later request them by sending getaddr messages.
2418 // Making nodes which are behind NAT and can only make outgoing connections ignore
2419 // the getaddr message mitigates the attack.
2420 if (!pfrom
->fInbound
) {
2421 LogPrint(BCLog::NET
, "Ignoring \"getaddr\" from outbound connection. peer=%d\n", pfrom
->GetId());
2425 // Only send one GetAddr response per connection to reduce resource waste
2426 // and discourage addr stamping of INV announcements.
2427 if (pfrom
->fSentAddr
) {
2428 LogPrint(BCLog::NET
, "Ignoring repeated \"getaddr\". peer=%d\n", pfrom
->GetId());
2431 pfrom
->fSentAddr
= true;
2433 pfrom
->vAddrToSend
.clear();
2434 std::vector
<CAddress
> vAddr
= connman
.GetAddresses();
2435 FastRandomContext insecure_rand
;
2436 BOOST_FOREACH(const CAddress
&addr
, vAddr
)
2437 pfrom
->PushAddress(addr
, insecure_rand
);
2441 else if (strCommand
== NetMsgType::MEMPOOL
)
2443 if (!(pfrom
->GetLocalServices() & NODE_BLOOM
) && !pfrom
->fWhitelisted
)
2445 LogPrint(BCLog::NET
, "mempool request with bloom filters disabled, disconnect peer=%d\n", pfrom
->GetId());
2446 pfrom
->fDisconnect
= true;
2450 if (connman
.OutboundTargetReached(false) && !pfrom
->fWhitelisted
)
2452 LogPrint(BCLog::NET
, "mempool request with bandwidth limit reached, disconnect peer=%d\n", pfrom
->GetId());
2453 pfrom
->fDisconnect
= true;
2457 LOCK(pfrom
->cs_inventory
);
2458 pfrom
->fSendMempool
= true;
2462 else if (strCommand
== NetMsgType::PING
)
2464 if (pfrom
->nVersion
> BIP0031_VERSION
)
2468 // Echo the message back with the nonce. This allows for two useful features:
2470 // 1) A remote node can quickly check if the connection is operational
2471 // 2) Remote nodes can measure the latency of the network thread. If this node
2472 // is overloaded it won't respond to pings quickly and the remote node can
2473 // avoid sending us more work, like chain download requests.
2475 // The nonce stops the remote getting confused between different pings: without
2476 // it, if the remote node sends a ping once per second and this node takes 5
2477 // seconds to respond to each, the 5th ping the remote sends would appear to
2478 // return very quickly.
2479 connman
.PushMessage(pfrom
, msgMaker
.Make(NetMsgType::PONG
, nonce
));
2484 else if (strCommand
== NetMsgType::PONG
)
2486 int64_t pingUsecEnd
= nTimeReceived
;
2488 size_t nAvail
= vRecv
.in_avail();
2489 bool bPingFinished
= false;
2490 std::string sProblem
;
2492 if (nAvail
>= sizeof(nonce
)) {
2495 // Only process pong message if there is an outstanding ping (old ping without nonce should never pong)
2496 if (pfrom
->nPingNonceSent
!= 0) {
2497 if (nonce
== pfrom
->nPingNonceSent
) {
2498 // Matching pong received, this ping is no longer outstanding
2499 bPingFinished
= true;
2500 int64_t pingUsecTime
= pingUsecEnd
- pfrom
->nPingUsecStart
;
2501 if (pingUsecTime
> 0) {
2502 // Successful ping time measurement, replace previous
2503 pfrom
->nPingUsecTime
= pingUsecTime
;
2504 pfrom
->nMinPingUsecTime
= std::min(pfrom
->nMinPingUsecTime
.load(), pingUsecTime
);
2506 // This should never happen
2507 sProblem
= "Timing mishap";
2510 // Nonce mismatches are normal when pings are overlapping
2511 sProblem
= "Nonce mismatch";
2513 // This is most likely a bug in another implementation somewhere; cancel this ping
2514 bPingFinished
= true;
2515 sProblem
= "Nonce zero";
2519 sProblem
= "Unsolicited pong without ping";
2522 // This is most likely a bug in another implementation somewhere; cancel this ping
2523 bPingFinished
= true;
2524 sProblem
= "Short payload";
2527 if (!(sProblem
.empty())) {
2528 LogPrint(BCLog::NET
, "pong peer=%d: %s, %x expected, %x received, %u bytes\n",
2531 pfrom
->nPingNonceSent
,
2535 if (bPingFinished
) {
2536 pfrom
->nPingNonceSent
= 0;
2541 else if (strCommand
== NetMsgType::FILTERLOAD
)
2543 CBloomFilter filter
;
2546 if (!filter
.IsWithinSizeConstraints())
2548 // There is no excuse for sending a too-large filter
2550 Misbehaving(pfrom
->GetId(), 100);
2554 LOCK(pfrom
->cs_filter
);
2555 delete pfrom
->pfilter
;
2556 pfrom
->pfilter
= new CBloomFilter(filter
);
2557 pfrom
->pfilter
->UpdateEmptyFull();
2558 pfrom
->fRelayTxes
= true;
2563 else if (strCommand
== NetMsgType::FILTERADD
)
2565 std::vector
<unsigned char> vData
;
2568 // Nodes must NEVER send a data item > 520 bytes (the max size for a script data object,
2569 // and thus, the maximum size any matched object can have) in a filteradd message
2571 if (vData
.size() > MAX_SCRIPT_ELEMENT_SIZE
) {
2574 LOCK(pfrom
->cs_filter
);
2575 if (pfrom
->pfilter
) {
2576 pfrom
->pfilter
->insert(vData
);
2583 Misbehaving(pfrom
->GetId(), 100);
2588 else if (strCommand
== NetMsgType::FILTERCLEAR
)
2590 LOCK(pfrom
->cs_filter
);
2591 if (pfrom
->GetLocalServices() & NODE_BLOOM
) {
2592 delete pfrom
->pfilter
;
2593 pfrom
->pfilter
= new CBloomFilter();
2595 pfrom
->fRelayTxes
= true;
2598 else if (strCommand
== NetMsgType::FEEFILTER
) {
2599 CAmount newFeeFilter
= 0;
2600 vRecv
>> newFeeFilter
;
2601 if (MoneyRange(newFeeFilter
)) {
2603 LOCK(pfrom
->cs_feeFilter
);
2604 pfrom
->minFeeFilter
= newFeeFilter
;
2606 LogPrint(BCLog::NET
, "received: feefilter of %s from peer=%d\n", CFeeRate(newFeeFilter
).ToString(), pfrom
->GetId());
2610 else if (strCommand
== NetMsgType::NOTFOUND
) {
2611 // We do not care about the NOTFOUND message, but logging an Unknown Command
2612 // message would be undesirable as we transmit it ourselves.
2616 // Ignore unknown commands for extensibility
2617 LogPrint(BCLog::NET
, "Unknown command \"%s\" from peer=%d\n", SanitizeString(strCommand
), pfrom
->GetId());
2625 static bool SendRejectsAndCheckIfBanned(CNode
* pnode
, CConnman
& connman
)
2627 AssertLockHeld(cs_main
);
2628 CNodeState
&state
= *State(pnode
->GetId());
2630 BOOST_FOREACH(const CBlockReject
& reject
, state
.rejects
) {
2631 connman
.PushMessage(pnode
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::REJECT
, (std::string
)NetMsgType::BLOCK
, reject
.chRejectCode
, reject
.strRejectReason
, reject
.hashBlock
));
2633 state
.rejects
.clear();
2635 if (state
.fShouldBan
) {
2636 state
.fShouldBan
= false;
2637 if (pnode
->fWhitelisted
)
2638 LogPrintf("Warning: not punishing whitelisted peer %s!\n", pnode
->addr
.ToString());
2639 else if (pnode
->fAddnode
)
2640 LogPrintf("Warning: not punishing addnoded peer %s!\n", pnode
->addr
.ToString());
2642 pnode
->fDisconnect
= true;
2643 if (pnode
->addr
.IsLocal())
2644 LogPrintf("Warning: not banning local peer %s!\n", pnode
->addr
.ToString());
2647 connman
.Ban(pnode
->addr
, BanReasonNodeMisbehaving
);
2655 bool ProcessMessages(CNode
* pfrom
, CConnman
& connman
, const std::atomic
<bool>& interruptMsgProc
)
2657 const CChainParams
& chainparams
= Params();
2660 // (4) message start
2666 bool fMoreWork
= false;
2668 if (!pfrom
->vRecvGetData
.empty())
2669 ProcessGetData(pfrom
, chainparams
.GetConsensus(), connman
, interruptMsgProc
);
2671 if (pfrom
->fDisconnect
)
2674 // this maintains the order of responses
2675 if (!pfrom
->vRecvGetData
.empty()) return true;
2677 // Don't bother if send buffer is too full to respond anyway
2678 if (pfrom
->fPauseSend
)
2681 std::list
<CNetMessage
> msgs
;
2683 LOCK(pfrom
->cs_vProcessMsg
);
2684 if (pfrom
->vProcessMsg
.empty())
2686 // Just take one message
2687 msgs
.splice(msgs
.begin(), pfrom
->vProcessMsg
, pfrom
->vProcessMsg
.begin());
2688 pfrom
->nProcessQueueSize
-= msgs
.front().vRecv
.size() + CMessageHeader::HEADER_SIZE
;
2689 pfrom
->fPauseRecv
= pfrom
->nProcessQueueSize
> connman
.GetReceiveFloodSize();
2690 fMoreWork
= !pfrom
->vProcessMsg
.empty();
2692 CNetMessage
& msg(msgs
.front());
2694 msg
.SetVersion(pfrom
->GetRecvVersion());
2695 // Scan for message start
2696 if (memcmp(msg
.hdr
.pchMessageStart
, chainparams
.MessageStart(), CMessageHeader::MESSAGE_START_SIZE
) != 0) {
2697 LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg
.hdr
.GetCommand()), pfrom
->GetId());
2698 pfrom
->fDisconnect
= true;
2703 CMessageHeader
& hdr
= msg
.hdr
;
2704 if (!hdr
.IsValid(chainparams
.MessageStart()))
2706 LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", SanitizeString(hdr
.GetCommand()), pfrom
->GetId());
2709 std::string strCommand
= hdr
.GetCommand();
2712 unsigned int nMessageSize
= hdr
.nMessageSize
;
2715 CDataStream
& vRecv
= msg
.vRecv
;
2716 const uint256
& hash
= msg
.GetMessageHash();
2717 if (memcmp(hash
.begin(), hdr
.pchChecksum
, CMessageHeader::CHECKSUM_SIZE
) != 0)
2719 LogPrintf("%s(%s, %u bytes): CHECKSUM ERROR expected %s was %s\n", __func__
,
2720 SanitizeString(strCommand
), nMessageSize
,
2721 HexStr(hash
.begin(), hash
.begin()+CMessageHeader::CHECKSUM_SIZE
),
2722 HexStr(hdr
.pchChecksum
, hdr
.pchChecksum
+CMessageHeader::CHECKSUM_SIZE
));
2730 fRet
= ProcessMessage(pfrom
, strCommand
, vRecv
, msg
.nTime
, chainparams
, connman
, interruptMsgProc
);
2731 if (interruptMsgProc
)
2733 if (!pfrom
->vRecvGetData
.empty())
2736 catch (const std::ios_base::failure
& e
)
2738 connman
.PushMessage(pfrom
, CNetMsgMaker(INIT_PROTO_VERSION
).Make(NetMsgType::REJECT
, strCommand
, REJECT_MALFORMED
, std::string("error parsing message")));
2739 if (strstr(e
.what(), "end of data"))
2741 // Allow exceptions from under-length message on vRecv
2742 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());
2744 else if (strstr(e
.what(), "size too large"))
2746 // Allow exceptions from over-long size
2747 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__
, SanitizeString(strCommand
), nMessageSize
, e
.what());
2749 else if (strstr(e
.what(), "non-canonical ReadCompactSize()"))
2751 // Allow exceptions from non-canonical encoding
2752 LogPrintf("%s(%s, %u bytes): Exception '%s' caught\n", __func__
, SanitizeString(strCommand
), nMessageSize
, e
.what());
2756 PrintExceptionContinue(&e
, "ProcessMessages()");
2759 catch (const std::exception
& e
) {
2760 PrintExceptionContinue(&e
, "ProcessMessages()");
2762 PrintExceptionContinue(NULL
, "ProcessMessages()");
2766 LogPrintf("%s(%s, %u bytes) FAILED peer=%d\n", __func__
, SanitizeString(strCommand
), nMessageSize
, pfrom
->GetId());
2770 SendRejectsAndCheckIfBanned(pfrom
, connman
);
2775 class CompareInvMempoolOrder
2779 CompareInvMempoolOrder(CTxMemPool
*_mempool
)
2784 bool operator()(std::set
<uint256
>::iterator a
, std::set
<uint256
>::iterator b
)
2786 /* As std::make_heap produces a max-heap, we want the entries with the
2787 * fewest ancestors/highest fee to sort later. */
2788 return mp
->CompareDepthAndScore(*b
, *a
);
2792 bool SendMessages(CNode
* pto
, CConnman
& connman
, const std::atomic
<bool>& interruptMsgProc
)
2794 const Consensus::Params
& consensusParams
= Params().GetConsensus();
2796 // Don't send anything until the version handshake is complete
2797 if (!pto
->fSuccessfullyConnected
|| pto
->fDisconnect
)
2800 // If we get here, the outgoing message serialization version is set and can't change.
2801 const CNetMsgMaker
msgMaker(pto
->GetSendVersion());
2806 bool pingSend
= false;
2807 if (pto
->fPingQueued
) {
2808 // RPC ping request by user
2811 if (pto
->nPingNonceSent
== 0 && pto
->nPingUsecStart
+ PING_INTERVAL
* 1000000 < GetTimeMicros()) {
2812 // Ping automatically sent as a latency probe & keepalive.
2817 while (nonce
== 0) {
2818 GetRandBytes((unsigned char*)&nonce
, sizeof(nonce
));
2820 pto
->fPingQueued
= false;
2821 pto
->nPingUsecStart
= GetTimeMicros();
2822 if (pto
->nVersion
> BIP0031_VERSION
) {
2823 pto
->nPingNonceSent
= nonce
;
2824 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::PING
, nonce
));
2826 // Peer is too old to support ping command with nonce, pong will never arrive.
2827 pto
->nPingNonceSent
= 0;
2828 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::PING
));
2832 TRY_LOCK(cs_main
, lockMain
); // Acquire cs_main for IsInitialBlockDownload() and CNodeState()
2836 if (SendRejectsAndCheckIfBanned(pto
, connman
))
2838 CNodeState
&state
= *State(pto
->GetId());
2840 // Address refresh broadcast
2841 int64_t nNow
= GetTimeMicros();
2842 if (!IsInitialBlockDownload() && pto
->nNextLocalAddrSend
< nNow
) {
2843 AdvertiseLocal(pto
);
2844 pto
->nNextLocalAddrSend
= PoissonNextSend(nNow
, AVG_LOCAL_ADDRESS_BROADCAST_INTERVAL
);
2850 if (pto
->nNextAddrSend
< nNow
) {
2851 pto
->nNextAddrSend
= PoissonNextSend(nNow
, AVG_ADDRESS_BROADCAST_INTERVAL
);
2852 std::vector
<CAddress
> vAddr
;
2853 vAddr
.reserve(pto
->vAddrToSend
.size());
2854 BOOST_FOREACH(const CAddress
& addr
, pto
->vAddrToSend
)
2856 if (!pto
->addrKnown
.contains(addr
.GetKey()))
2858 pto
->addrKnown
.insert(addr
.GetKey());
2859 vAddr
.push_back(addr
);
2860 // receiver rejects addr messages larger than 1000
2861 if (vAddr
.size() >= 1000)
2863 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::ADDR
, vAddr
));
2868 pto
->vAddrToSend
.clear();
2870 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::ADDR
, vAddr
));
2871 // we only send the big addr message once
2872 if (pto
->vAddrToSend
.capacity() > 40)
2873 pto
->vAddrToSend
.shrink_to_fit();
2877 if (pindexBestHeader
== NULL
)
2878 pindexBestHeader
= chainActive
.Tip();
2879 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.
2880 if (!state
.fSyncStarted
&& !pto
->fClient
&& !fImporting
&& !fReindex
) {
2881 // Only actively request headers from a single peer, unless we're close to today.
2882 if ((nSyncStarted
== 0 && fFetch
) || pindexBestHeader
->GetBlockTime() > GetAdjustedTime() - 24 * 60 * 60) {
2883 state
.fSyncStarted
= true;
2885 const CBlockIndex
*pindexStart
= pindexBestHeader
;
2886 /* If possible, start at the block preceding the currently
2887 best known header. This ensures that we always get a
2888 non-empty list of headers back as long as the peer
2889 is up-to-date. With a non-empty response, we can initialise
2890 the peer's known best block. This wouldn't be possible
2891 if we requested starting at pindexBestHeader and
2892 got back an empty response. */
2893 if (pindexStart
->pprev
)
2894 pindexStart
= pindexStart
->pprev
;
2895 LogPrint(BCLog::NET
, "initial getheaders (%d) to peer=%d (startheight:%d)\n", pindexStart
->nHeight
, pto
->GetId(), pto
->nStartingHeight
);
2896 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::GETHEADERS
, chainActive
.GetLocator(pindexStart
), uint256()));
2900 // Resend wallet transactions that haven't gotten in a block yet
2901 // Except during reindex, importing and IBD, when old wallet
2902 // transactions become unconfirmed and spams other nodes.
2903 if (!fReindex
&& !fImporting
&& !IsInitialBlockDownload())
2905 GetMainSignals().Broadcast(nTimeBestReceived
, &connman
);
2909 // Try sending block announcements via headers
2912 // If we have less than MAX_BLOCKS_TO_ANNOUNCE in our
2913 // list of block hashes we're relaying, and our peer wants
2914 // headers announcements, then find the first header
2915 // not yet known to our peer but would connect, and send.
2916 // If no header would connect, or if we have too many
2917 // blocks, or if the peer doesn't want headers, just
2918 // add all to the inv queue.
2919 LOCK(pto
->cs_inventory
);
2920 std::vector
<CBlock
> vHeaders
;
2921 bool fRevertToInv
= ((!state
.fPreferHeaders
&&
2922 (!state
.fPreferHeaderAndIDs
|| pto
->vBlockHashesToAnnounce
.size() > 1)) ||
2923 pto
->vBlockHashesToAnnounce
.size() > MAX_BLOCKS_TO_ANNOUNCE
);
2924 const CBlockIndex
*pBestIndex
= NULL
; // last header queued for delivery
2925 ProcessBlockAvailability(pto
->GetId()); // ensure pindexBestKnownBlock is up-to-date
2927 if (!fRevertToInv
) {
2928 bool fFoundStartingHeader
= false;
2929 // Try to find first header that our peer doesn't have, and
2930 // then send all headers past that one. If we come across any
2931 // headers that aren't on chainActive, give up.
2932 BOOST_FOREACH(const uint256
&hash
, pto
->vBlockHashesToAnnounce
) {
2933 BlockMap::iterator mi
= mapBlockIndex
.find(hash
);
2934 assert(mi
!= mapBlockIndex
.end());
2935 const CBlockIndex
*pindex
= mi
->second
;
2936 if (chainActive
[pindex
->nHeight
] != pindex
) {
2937 // Bail out if we reorged away from this block
2938 fRevertToInv
= true;
2941 if (pBestIndex
!= NULL
&& pindex
->pprev
!= pBestIndex
) {
2942 // This means that the list of blocks to announce don't
2943 // connect to each other.
2944 // This shouldn't really be possible to hit during
2945 // regular operation (because reorgs should take us to
2946 // a chain that has some block not on the prior chain,
2947 // which should be caught by the prior check), but one
2948 // way this could happen is by using invalidateblock /
2949 // reconsiderblock repeatedly on the tip, causing it to
2950 // be added multiple times to vBlockHashesToAnnounce.
2951 // Robustly deal with this rare situation by reverting
2953 fRevertToInv
= true;
2956 pBestIndex
= pindex
;
2957 if (fFoundStartingHeader
) {
2958 // add this to the headers message
2959 vHeaders
.push_back(pindex
->GetBlockHeader());
2960 } else if (PeerHasHeader(&state
, pindex
)) {
2961 continue; // keep looking for the first new block
2962 } else if (pindex
->pprev
== NULL
|| PeerHasHeader(&state
, pindex
->pprev
)) {
2963 // Peer doesn't have this header but they do have the prior one.
2964 // Start sending headers.
2965 fFoundStartingHeader
= true;
2966 vHeaders
.push_back(pindex
->GetBlockHeader());
2968 // Peer doesn't have this header or the prior one -- nothing will
2969 // connect, so bail out.
2970 fRevertToInv
= true;
2975 if (!fRevertToInv
&& !vHeaders
.empty()) {
2976 if (vHeaders
.size() == 1 && state
.fPreferHeaderAndIDs
) {
2977 // We only send up to 1 block as header-and-ids, as otherwise
2978 // probably means we're doing an initial-ish-sync or they're slow
2979 LogPrint(BCLog::NET
, "%s sending header-and-ids %s to peer=%d\n", __func__
,
2980 vHeaders
.front().GetHash().ToString(), pto
->GetId());
2982 int nSendFlags
= state
.fWantsCmpctWitness
? 0 : SERIALIZE_TRANSACTION_NO_WITNESS
;
2984 bool fGotBlockFromCache
= false;
2986 LOCK(cs_most_recent_block
);
2987 if (most_recent_block_hash
== pBestIndex
->GetBlockHash()) {
2988 if (state
.fWantsCmpctWitness
|| !fWitnessesPresentInMostRecentCompactBlock
)
2989 connman
.PushMessage(pto
, msgMaker
.Make(nSendFlags
, NetMsgType::CMPCTBLOCK
, *most_recent_compact_block
));
2991 CBlockHeaderAndShortTxIDs
cmpctblock(*most_recent_block
, state
.fWantsCmpctWitness
);
2992 connman
.PushMessage(pto
, msgMaker
.Make(nSendFlags
, NetMsgType::CMPCTBLOCK
, cmpctblock
));
2994 fGotBlockFromCache
= true;
2997 if (!fGotBlockFromCache
) {
2999 bool ret
= ReadBlockFromDisk(block
, pBestIndex
, consensusParams
);
3001 CBlockHeaderAndShortTxIDs
cmpctblock(block
, state
.fWantsCmpctWitness
);
3002 connman
.PushMessage(pto
, msgMaker
.Make(nSendFlags
, NetMsgType::CMPCTBLOCK
, cmpctblock
));
3004 state
.pindexBestHeaderSent
= pBestIndex
;
3005 } else if (state
.fPreferHeaders
) {
3006 if (vHeaders
.size() > 1) {
3007 LogPrint(BCLog::NET
, "%s: %u headers, range (%s, %s), to peer=%d\n", __func__
,
3009 vHeaders
.front().GetHash().ToString(),
3010 vHeaders
.back().GetHash().ToString(), pto
->GetId());
3012 LogPrint(BCLog::NET
, "%s: sending header %s to peer=%d\n", __func__
,
3013 vHeaders
.front().GetHash().ToString(), pto
->GetId());
3015 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::HEADERS
, vHeaders
));
3016 state
.pindexBestHeaderSent
= pBestIndex
;
3018 fRevertToInv
= true;
3021 // If falling back to using an inv, just try to inv the tip.
3022 // The last entry in vBlockHashesToAnnounce was our tip at some point
3024 if (!pto
->vBlockHashesToAnnounce
.empty()) {
3025 const uint256
&hashToAnnounce
= pto
->vBlockHashesToAnnounce
.back();
3026 BlockMap::iterator mi
= mapBlockIndex
.find(hashToAnnounce
);
3027 assert(mi
!= mapBlockIndex
.end());
3028 const CBlockIndex
*pindex
= mi
->second
;
3030 // Warn if we're announcing a block that is not on the main chain.
3031 // This should be very rare and could be optimized out.
3032 // Just log for now.
3033 if (chainActive
[pindex
->nHeight
] != pindex
) {
3034 LogPrint(BCLog::NET
, "Announcing block %s not on main chain (tip=%s)\n",
3035 hashToAnnounce
.ToString(), chainActive
.Tip()->GetBlockHash().ToString());
3038 // If the peer's chain has this block, don't inv it back.
3039 if (!PeerHasHeader(&state
, pindex
)) {
3040 pto
->PushInventory(CInv(MSG_BLOCK
, hashToAnnounce
));
3041 LogPrint(BCLog::NET
, "%s: sending inv peer=%d hash=%s\n", __func__
,
3042 pto
->GetId(), hashToAnnounce
.ToString());
3046 pto
->vBlockHashesToAnnounce
.clear();
3050 // Message: inventory
3052 std::vector
<CInv
> vInv
;
3054 LOCK(pto
->cs_inventory
);
3055 vInv
.reserve(std::max
<size_t>(pto
->vInventoryBlockToSend
.size(), INVENTORY_BROADCAST_MAX
));
3058 BOOST_FOREACH(const uint256
& hash
, pto
->vInventoryBlockToSend
) {
3059 vInv
.push_back(CInv(MSG_BLOCK
, hash
));
3060 if (vInv
.size() == MAX_INV_SZ
) {
3061 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::INV
, vInv
));
3065 pto
->vInventoryBlockToSend
.clear();
3067 // Check whether periodic sends should happen
3068 bool fSendTrickle
= pto
->fWhitelisted
;
3069 if (pto
->nNextInvSend
< nNow
) {
3070 fSendTrickle
= true;
3071 // Use half the delay for outbound peers, as there is less privacy concern for them.
3072 pto
->nNextInvSend
= PoissonNextSend(nNow
, INVENTORY_BROADCAST_INTERVAL
>> !pto
->fInbound
);
3075 // Time to send but the peer has requested we not relay transactions.
3077 LOCK(pto
->cs_filter
);
3078 if (!pto
->fRelayTxes
) pto
->setInventoryTxToSend
.clear();
3081 // Respond to BIP35 mempool requests
3082 if (fSendTrickle
&& pto
->fSendMempool
) {
3083 auto vtxinfo
= mempool
.infoAll();
3084 pto
->fSendMempool
= false;
3085 CAmount filterrate
= 0;
3087 LOCK(pto
->cs_feeFilter
);
3088 filterrate
= pto
->minFeeFilter
;
3091 LOCK(pto
->cs_filter
);
3093 for (const auto& txinfo
: vtxinfo
) {
3094 const uint256
& hash
= txinfo
.tx
->GetHash();
3095 CInv
inv(MSG_TX
, hash
);
3096 pto
->setInventoryTxToSend
.erase(hash
);
3098 if (txinfo
.feeRate
.GetFeePerK() < filterrate
)
3102 if (!pto
->pfilter
->IsRelevantAndUpdate(*txinfo
.tx
)) continue;
3104 pto
->filterInventoryKnown
.insert(hash
);
3105 vInv
.push_back(inv
);
3106 if (vInv
.size() == MAX_INV_SZ
) {
3107 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::INV
, vInv
));
3111 pto
->timeLastMempoolReq
= GetTime();
3114 // Determine transactions to relay
3116 // Produce a vector with all candidates for sending
3117 std::vector
<std::set
<uint256
>::iterator
> vInvTx
;
3118 vInvTx
.reserve(pto
->setInventoryTxToSend
.size());
3119 for (std::set
<uint256
>::iterator it
= pto
->setInventoryTxToSend
.begin(); it
!= pto
->setInventoryTxToSend
.end(); it
++) {
3120 vInvTx
.push_back(it
);
3122 CAmount filterrate
= 0;
3124 LOCK(pto
->cs_feeFilter
);
3125 filterrate
= pto
->minFeeFilter
;
3127 // Topologically and fee-rate sort the inventory we send for privacy and priority reasons.
3128 // A heap is used so that not all items need sorting if only a few are being sent.
3129 CompareInvMempoolOrder
compareInvMempoolOrder(&mempool
);
3130 std::make_heap(vInvTx
.begin(), vInvTx
.end(), compareInvMempoolOrder
);
3131 // No reason to drain out at many times the network's capacity,
3132 // especially since we have many peers and some will draw much shorter delays.
3133 unsigned int nRelayedTransactions
= 0;
3134 LOCK(pto
->cs_filter
);
3135 while (!vInvTx
.empty() && nRelayedTransactions
< INVENTORY_BROADCAST_MAX
) {
3136 // Fetch the top element from the heap
3137 std::pop_heap(vInvTx
.begin(), vInvTx
.end(), compareInvMempoolOrder
);
3138 std::set
<uint256
>::iterator it
= vInvTx
.back();
3141 // Remove it from the to-be-sent set
3142 pto
->setInventoryTxToSend
.erase(it
);
3143 // Check if not in the filter already
3144 if (pto
->filterInventoryKnown
.contains(hash
)) {
3147 // Not in the mempool anymore? don't bother sending it.
3148 auto txinfo
= mempool
.info(hash
);
3152 if (filterrate
&& txinfo
.feeRate
.GetFeePerK() < filterrate
) {
3155 if (pto
->pfilter
&& !pto
->pfilter
->IsRelevantAndUpdate(*txinfo
.tx
)) continue;
3157 vInv
.push_back(CInv(MSG_TX
, hash
));
3158 nRelayedTransactions
++;
3160 // Expire old relay messages
3161 while (!vRelayExpiration
.empty() && vRelayExpiration
.front().first
< nNow
)
3163 mapRelay
.erase(vRelayExpiration
.front().second
);
3164 vRelayExpiration
.pop_front();
3167 auto ret
= mapRelay
.insert(std::make_pair(hash
, std::move(txinfo
.tx
)));
3169 vRelayExpiration
.push_back(std::make_pair(nNow
+ 15 * 60 * 1000000, ret
.first
));
3172 if (vInv
.size() == MAX_INV_SZ
) {
3173 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::INV
, vInv
));
3176 pto
->filterInventoryKnown
.insert(hash
);
3181 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::INV
, vInv
));
3183 // Detect whether we're stalling
3184 nNow
= GetTimeMicros();
3185 if (state
.nStallingSince
&& state
.nStallingSince
< nNow
- 1000000 * BLOCK_STALLING_TIMEOUT
) {
3186 // Stalling only triggers when the block download window cannot move. During normal steady state,
3187 // the download window should be much larger than the to-be-downloaded set of blocks, so disconnection
3188 // should only happen during initial block download.
3189 LogPrintf("Peer=%d is stalling block download, disconnecting\n", pto
->GetId());
3190 pto
->fDisconnect
= true;
3193 // In case there is a block that has been in flight from this peer for 2 + 0.5 * N times the block interval
3194 // (with N the number of peers from which we're downloading validated blocks), disconnect due to timeout.
3195 // We compensate for other peers to prevent killing off peers due to our own downstream link
3196 // being saturated. We only count validated in-flight blocks so peers can't advertise non-existing block hashes
3197 // to unreasonably increase our timeout.
3198 if (state
.vBlocksInFlight
.size() > 0) {
3199 QueuedBlock
&queuedBlock
= state
.vBlocksInFlight
.front();
3200 int nOtherPeersWithValidatedDownloads
= nPeersWithValidatedDownloads
- (state
.nBlocksInFlightValidHeaders
> 0);
3201 if (nNow
> state
.nDownloadingSince
+ consensusParams
.nPowTargetSpacing
* (BLOCK_DOWNLOAD_TIMEOUT_BASE
+ BLOCK_DOWNLOAD_TIMEOUT_PER_PEER
* nOtherPeersWithValidatedDownloads
)) {
3202 LogPrintf("Timeout downloading block %s from peer=%d, disconnecting\n", queuedBlock
.hash
.ToString(), pto
->GetId());
3203 pto
->fDisconnect
= true;
3209 // Message: getdata (blocks)
3211 std::vector
<CInv
> vGetData
;
3212 if (!pto
->fClient
&& (fFetch
|| !IsInitialBlockDownload()) && state
.nBlocksInFlight
< MAX_BLOCKS_IN_TRANSIT_PER_PEER
) {
3213 std::vector
<const CBlockIndex
*> vToDownload
;
3214 NodeId staller
= -1;
3215 FindNextBlocksToDownload(pto
->GetId(), MAX_BLOCKS_IN_TRANSIT_PER_PEER
- state
.nBlocksInFlight
, vToDownload
, staller
, consensusParams
);
3216 BOOST_FOREACH(const CBlockIndex
*pindex
, vToDownload
) {
3217 uint32_t nFetchFlags
= GetFetchFlags(pto
);
3218 vGetData
.push_back(CInv(MSG_BLOCK
| nFetchFlags
, pindex
->GetBlockHash()));
3219 MarkBlockAsInFlight(pto
->GetId(), pindex
->GetBlockHash(), pindex
);
3220 LogPrint(BCLog::NET
, "Requesting block %s (%d) peer=%d\n", pindex
->GetBlockHash().ToString(),
3221 pindex
->nHeight
, pto
->GetId());
3223 if (state
.nBlocksInFlight
== 0 && staller
!= -1) {
3224 if (State(staller
)->nStallingSince
== 0) {
3225 State(staller
)->nStallingSince
= nNow
;
3226 LogPrint(BCLog::NET
, "Stall started peer=%d\n", staller
);
3232 // Message: getdata (non-blocks)
3234 while (!pto
->mapAskFor
.empty() && (*pto
->mapAskFor
.begin()).first
<= nNow
)
3236 const CInv
& inv
= (*pto
->mapAskFor
.begin()).second
;
3237 if (!AlreadyHave(inv
))
3239 LogPrint(BCLog::NET
, "Requesting %s peer=%d\n", inv
.ToString(), pto
->GetId());
3240 vGetData
.push_back(inv
);
3241 if (vGetData
.size() >= 1000)
3243 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::GETDATA
, vGetData
));
3247 //If we're not going to ask, don't expect a response.
3248 pto
->setAskFor
.erase(inv
.hash
);
3250 pto
->mapAskFor
.erase(pto
->mapAskFor
.begin());
3252 if (!vGetData
.empty())
3253 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::GETDATA
, vGetData
));
3256 // Message: feefilter
3258 // We don't want white listed peers to filter txs to us if we have -whitelistforcerelay
3259 if (pto
->nVersion
>= FEEFILTER_VERSION
&& GetBoolArg("-feefilter", DEFAULT_FEEFILTER
) &&
3260 !(pto
->fWhitelisted
&& GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY
))) {
3261 CAmount currentFilter
= mempool
.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE
) * 1000000).GetFeePerK();
3262 int64_t timeNow
= GetTimeMicros();
3263 if (timeNow
> pto
->nextSendTimeFeeFilter
) {
3264 static CFeeRate
default_feerate(DEFAULT_MIN_RELAY_TX_FEE
);
3265 static FeeFilterRounder
filterRounder(default_feerate
);
3266 CAmount filterToSend
= filterRounder
.round(currentFilter
);
3267 // We always have a fee filter of at least minRelayTxFee
3268 filterToSend
= std::max(filterToSend
, ::minRelayTxFee
.GetFeePerK());
3269 if (filterToSend
!= pto
->lastSentFeeFilter
) {
3270 connman
.PushMessage(pto
, msgMaker
.Make(NetMsgType::FEEFILTER
, filterToSend
));
3271 pto
->lastSentFeeFilter
= filterToSend
;
3273 pto
->nextSendTimeFeeFilter
= PoissonNextSend(timeNow
, AVG_FEEFILTER_BROADCAST_INTERVAL
);
3275 // If the fee filter has changed substantially and it's still more than MAX_FEEFILTER_CHANGE_DELAY
3276 // until scheduled broadcast, then move the broadcast to within MAX_FEEFILTER_CHANGE_DELAY.
3277 else if (timeNow
+ MAX_FEEFILTER_CHANGE_DELAY
* 1000000 < pto
->nextSendTimeFeeFilter
&&
3278 (currentFilter
< 3 * pto
->lastSentFeeFilter
/ 4 || currentFilter
> 4 * pto
->lastSentFeeFilter
/ 3)) {
3279 pto
->nextSendTimeFeeFilter
= timeNow
+ GetRandInt(MAX_FEEFILTER_CHANGE_DELAY
) * 1000000;
3286 class CNetProcessingCleanup
3289 CNetProcessingCleanup() {}
3290 ~CNetProcessingCleanup() {
3291 // orphan transactions
3292 mapOrphanTransactions
.clear();
3293 mapOrphanTransactionsByPrev
.clear();
3295 } instance_of_cnetprocessingcleanup
;