LCOV - code coverage report
Current view: top level - src - net_processing.cpp (source / functions) Coverage Total Hit
Test: total_coverage.info Lines: 94.4 % 2485 2346
Test Date: 2025-01-19 05:08:01 Functions: 97.3 % 148 144
Branches: 60.6 % 4525 2740

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2022 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.
       5                 :             : 
       6                 :             : #include <net_processing.h>
       7                 :             : 
       8                 :             : #include <addrman.h>
       9                 :             : #include <banman.h>
      10                 :             : #include <blockencodings.h>
      11                 :             : #include <blockfilter.h>
      12                 :             : #include <chainparams.h>
      13                 :             : #include <consensus/amount.h>
      14                 :             : #include <consensus/validation.h>
      15                 :             : #include <deploymentstatus.h>
      16                 :             : #include <hash.h>
      17                 :             : #include <headerssync.h>
      18                 :             : #include <index/blockfilterindex.h>
      19                 :             : #include <kernel/chain.h>
      20                 :             : #include <kernel/mempool_entry.h>
      21                 :             : #include <logging.h>
      22                 :             : #include <merkleblock.h>
      23                 :             : #include <netbase.h>
      24                 :             : #include <netmessagemaker.h>
      25                 :             : #include <node/blockstorage.h>
      26                 :             : #include <node/timeoffsets.h>
      27                 :             : #include <node/txdownloadman.h>
      28                 :             : #include <node/txreconciliation.h>
      29                 :             : #include <node/warnings.h>
      30                 :             : #include <policy/fees.h>
      31                 :             : #include <policy/policy.h>
      32                 :             : #include <policy/settings.h>
      33                 :             : #include <primitives/block.h>
      34                 :             : #include <primitives/transaction.h>
      35                 :             : #include <random.h>
      36                 :             : #include <scheduler.h>
      37                 :             : #include <streams.h>
      38                 :             : #include <sync.h>
      39                 :             : #include <tinyformat.h>
      40                 :             : #include <txmempool.h>
      41                 :             : #include <txorphanage.h>
      42                 :             : #include <txrequest.h>
      43                 :             : #include <util/check.h>
      44                 :             : #include <util/strencodings.h>
      45                 :             : #include <util/time.h>
      46                 :             : #include <util/trace.h>
      47                 :             : #include <validation.h>
      48                 :             : 
      49                 :             : #include <algorithm>
      50                 :             : #include <atomic>
      51                 :             : #include <future>
      52                 :             : #include <memory>
      53                 :             : #include <optional>
      54                 :             : #include <ranges>
      55                 :             : #include <typeinfo>
      56                 :             : #include <utility>
      57                 :             : 
      58                 :             : using namespace util::hex_literals;
      59                 :             : 
      60                 :             : TRACEPOINT_SEMAPHORE(net, inbound_message);
      61                 :             : 
      62                 :             : /** Headers download timeout.
      63                 :             :  *  Timeout = base + per_header * (expected number of headers) */
      64                 :             : static constexpr auto HEADERS_DOWNLOAD_TIMEOUT_BASE = 15min;
      65                 :             : static constexpr auto HEADERS_DOWNLOAD_TIMEOUT_PER_HEADER = 1ms;
      66                 :             : /** How long to wait for a peer to respond to a getheaders request */
      67                 :             : static constexpr auto HEADERS_RESPONSE_TIME{2min};
      68                 :             : /** Protect at least this many outbound peers from disconnection due to slow/
      69                 :             :  * behind headers chain.
      70                 :             :  */
      71                 :             : static constexpr int32_t MAX_OUTBOUND_PEERS_TO_PROTECT_FROM_DISCONNECT = 4;
      72                 :             : /** Timeout for (unprotected) outbound peers to sync to our chainwork */
      73                 :             : static constexpr auto CHAIN_SYNC_TIMEOUT{20min};
      74                 :             : /** How frequently to check for stale tips */
      75                 :             : static constexpr auto STALE_CHECK_INTERVAL{10min};
      76                 :             : /** How frequently to check for extra outbound peers and disconnect */
      77                 :             : static constexpr auto EXTRA_PEER_CHECK_INTERVAL{45s};
      78                 :             : /** Minimum time an outbound-peer-eviction candidate must be connected for, in order to evict */
      79                 :             : static constexpr auto MINIMUM_CONNECT_TIME{30s};
      80                 :             : /** SHA256("main address relay")[0:8] */
      81                 :             : static constexpr uint64_t RANDOMIZER_ID_ADDRESS_RELAY = 0x3cac0035b5866b90ULL;
      82                 :             : /// Age after which a stale block will no longer be served if requested as
      83                 :             : /// protection against fingerprinting. Set to one month, denominated in seconds.
      84                 :             : static constexpr int STALE_RELAY_AGE_LIMIT = 30 * 24 * 60 * 60;
      85                 :             : /// Age after which a block is considered historical for purposes of rate
      86                 :             : /// limiting block relay. Set to one week, denominated in seconds.
      87                 :             : static constexpr int HISTORICAL_BLOCK_AGE = 7 * 24 * 60 * 60;
      88                 :             : /** Time between pings automatically sent out for latency probing and keepalive */
      89                 :             : static constexpr auto PING_INTERVAL{2min};
      90                 :             : /** The maximum number of entries in a locator */
      91                 :             : static const unsigned int MAX_LOCATOR_SZ = 101;
      92                 :             : /** The maximum number of entries in an 'inv' protocol message */
      93                 :             : static const unsigned int MAX_INV_SZ = 50000;
      94                 :             : /** Limit to avoid sending big packets. Not used in processing incoming GETDATA for compatibility */
      95                 :             : static const unsigned int MAX_GETDATA_SZ = 1000;
      96                 :             : /** Number of blocks that can be requested at any given time from a single peer. */
      97                 :             : static const int MAX_BLOCKS_IN_TRANSIT_PER_PEER = 16;
      98                 :             : /** Default time during which a peer must stall block download progress before being disconnected.
      99                 :             :  * the actual timeout is increased temporarily if peers are disconnected for hitting the timeout */
     100                 :             : static constexpr auto BLOCK_STALLING_TIMEOUT_DEFAULT{2s};
     101                 :             : /** Maximum timeout for stalling block download. */
     102                 :             : static constexpr auto BLOCK_STALLING_TIMEOUT_MAX{64s};
     103                 :             : /** Maximum depth of blocks we're willing to serve as compact blocks to peers
     104                 :             :  *  when requested. For older blocks, a regular BLOCK response will be sent. */
     105                 :             : static const int MAX_CMPCTBLOCK_DEPTH = 5;
     106                 :             : /** Maximum depth of blocks we're willing to respond to GETBLOCKTXN requests for. */
     107                 :             : static const int MAX_BLOCKTXN_DEPTH = 10;
     108                 :             : static_assert(MAX_BLOCKTXN_DEPTH <= MIN_BLOCKS_TO_KEEP, "MAX_BLOCKTXN_DEPTH too high");
     109                 :             : /** Size of the "block download window": how far ahead of our current height do we fetch?
     110                 :             :  *  Larger windows tolerate larger download speed differences between peer, but increase the potential
     111                 :             :  *  degree of disordering of blocks on disk (which make reindexing and pruning harder). We'll probably
     112                 :             :  *  want to make this a per-peer adaptive value at some point. */
     113                 :             : static const unsigned int BLOCK_DOWNLOAD_WINDOW = 1024;
     114                 :             : /** Block download timeout base, expressed in multiples of the block interval (i.e. 10 min) */
     115                 :             : static constexpr double BLOCK_DOWNLOAD_TIMEOUT_BASE = 1;
     116                 :             : /** Additional block download timeout per parallel downloading peer (i.e. 5 min) */
     117                 :             : static constexpr double BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 0.5;
     118                 :             : /** Maximum number of headers to announce when relaying blocks with headers message.*/
     119                 :             : static const unsigned int MAX_BLOCKS_TO_ANNOUNCE = 8;
     120                 :             : /** Minimum blocks required to signal NODE_NETWORK_LIMITED */
     121                 :             : static const unsigned int NODE_NETWORK_LIMITED_MIN_BLOCKS = 288;
     122                 :             : /** Window, in blocks, for connecting to NODE_NETWORK_LIMITED peers */
     123                 :             : static const unsigned int NODE_NETWORK_LIMITED_ALLOW_CONN_BLOCKS = 144;
     124                 :             : /** Average delay between local address broadcasts */
     125                 :             : static constexpr auto AVG_LOCAL_ADDRESS_BROADCAST_INTERVAL{24h};
     126                 :             : /** Average delay between peer address broadcasts */
     127                 :             : static constexpr auto AVG_ADDRESS_BROADCAST_INTERVAL{30s};
     128                 :             : /** Delay between rotating the peers we relay a particular address to */
     129                 :             : static constexpr auto ROTATE_ADDR_RELAY_DEST_INTERVAL{24h};
     130                 :             : /** Average delay between trickled inventory transmissions for inbound peers.
     131                 :             :  *  Blocks and peers with NetPermissionFlags::NoBan permission bypass this. */
     132                 :             : static constexpr auto INBOUND_INVENTORY_BROADCAST_INTERVAL{5s};
     133                 :             : /** Average delay between trickled inventory transmissions for outbound peers.
     134                 :             :  *  Use a smaller delay as there is less privacy concern for them.
     135                 :             :  *  Blocks and peers with NetPermissionFlags::NoBan permission bypass this. */
     136                 :             : static constexpr auto OUTBOUND_INVENTORY_BROADCAST_INTERVAL{2s};
     137                 :             : /** Maximum rate of inventory items to send per second.
     138                 :             :  *  Limits the impact of low-fee transaction floods. */
     139                 :             : static constexpr unsigned int INVENTORY_BROADCAST_PER_SECOND = 7;
     140                 :             : /** Target number of tx inventory items to send per transmission. */
     141                 :             : static constexpr unsigned int INVENTORY_BROADCAST_TARGET = INVENTORY_BROADCAST_PER_SECOND * count_seconds(INBOUND_INVENTORY_BROADCAST_INTERVAL);
     142                 :             : /** Maximum number of inventory items to send per transmission. */
     143                 :             : static constexpr unsigned int INVENTORY_BROADCAST_MAX = 1000;
     144                 :             : static_assert(INVENTORY_BROADCAST_MAX >= INVENTORY_BROADCAST_TARGET, "INVENTORY_BROADCAST_MAX too low");
     145                 :             : static_assert(INVENTORY_BROADCAST_MAX <= node::MAX_PEER_TX_ANNOUNCEMENTS, "INVENTORY_BROADCAST_MAX too high");
     146                 :             : /** Average delay between feefilter broadcasts in seconds. */
     147                 :             : static constexpr auto AVG_FEEFILTER_BROADCAST_INTERVAL{10min};
     148                 :             : /** Maximum feefilter broadcast delay after significant change. */
     149                 :             : static constexpr auto MAX_FEEFILTER_CHANGE_DELAY{5min};
     150                 :             : /** Maximum number of compact filters that may be requested with one getcfilters. See BIP 157. */
     151                 :             : static constexpr uint32_t MAX_GETCFILTERS_SIZE = 1000;
     152                 :             : /** Maximum number of cf hashes that may be requested with one getcfheaders. See BIP 157. */
     153                 :             : static constexpr uint32_t MAX_GETCFHEADERS_SIZE = 2000;
     154                 :             : /** the maximum percentage of addresses from our addrman to return in response to a getaddr message. */
     155                 :             : static constexpr size_t MAX_PCT_ADDR_TO_SEND = 23;
     156                 :             : /** The maximum number of address records permitted in an ADDR message. */
     157                 :             : static constexpr size_t MAX_ADDR_TO_SEND{1000};
     158                 :             : /** The maximum rate of address records we're willing to process on average. Can be bypassed using
     159                 :             :  *  the NetPermissionFlags::Addr permission. */
     160                 :             : static constexpr double MAX_ADDR_RATE_PER_SECOND{0.1};
     161                 :             : /** The soft limit of the address processing token bucket (the regular MAX_ADDR_RATE_PER_SECOND
     162                 :             :  *  based increments won't go above this, but the MAX_ADDR_TO_SEND increment following GETADDR
     163                 :             :  *  is exempt from this limit). */
     164                 :             : static constexpr size_t MAX_ADDR_PROCESSING_TOKEN_BUCKET{MAX_ADDR_TO_SEND};
     165                 :             : /** The compactblocks version we support. See BIP 152. */
     166                 :             : static constexpr uint64_t CMPCTBLOCKS_VERSION{2};
     167                 :             : 
     168                 :             : // Internal stuff
     169                 :             : namespace {
     170                 :             : /** Blocks that are in flight, and that are in the queue to be downloaded. */
     171                 :      114564 : struct QueuedBlock {
     172                 :             :     /** BlockIndex. We must have this since we only request blocks when we've already validated the header. */
     173                 :             :     const CBlockIndex* pindex;
     174                 :             :     /** Optional, used for CMPCTBLOCK downloads */
     175                 :             :     std::unique_ptr<PartiallyDownloadedBlock> partialBlock;
     176                 :             : };
     177                 :             : 
     178                 :             : /**
     179                 :             :  * Data structure for an individual peer. This struct is not protected by
     180                 :             :  * cs_main since it does not contain validation-critical data.
     181                 :             :  *
     182                 :             :  * Memory is owned by shared pointers and this object is destructed when
     183                 :             :  * the refcount drops to zero.
     184                 :             :  *
     185                 :             :  * Mutexes inside this struct must not be held when locking m_peer_mutex.
     186                 :             :  *
     187                 :             :  * TODO: move most members from CNodeState to this structure.
     188                 :             :  * TODO: move remaining application-layer data members from CNode to this structure.
     189                 :             :  */
     190                 :             : struct Peer {
     191                 :             :     /** Same id as the CNode object for this peer */
     192                 :             :     const NodeId m_id{0};
     193                 :             : 
     194                 :             :     /** Services we offered to this peer.
     195                 :             :      *
     196                 :             :      *  This is supplied by CConnman during peer initialization. It's const
     197                 :             :      *  because there is no protocol defined for renegotiating services
     198                 :             :      *  initially offered to a peer. The set of local services we offer should
     199                 :             :      *  not change after initialization.
     200                 :             :      *
     201                 :             :      *  An interesting example of this is NODE_NETWORK and initial block
     202                 :             :      *  download: a node which starts up from scratch doesn't have any blocks
     203                 :             :      *  to serve, but still advertises NODE_NETWORK because it will eventually
     204                 :             :      *  fulfill this role after IBD completes. P2P code is written in such a
     205                 :             :      *  way that it can gracefully handle peers who don't make good on their
     206                 :             :      *  service advertisements. */
     207                 :             :     const ServiceFlags m_our_services;
     208                 :             :     /** Services this peer offered to us. */
     209                 :             :     std::atomic<ServiceFlags> m_their_services{NODE_NONE};
     210                 :             : 
     211                 :             :     //! Whether this peer is an inbound connection
     212                 :             :     const bool m_is_inbound;
     213                 :             : 
     214                 :             :     /** Protects misbehavior data members */
     215                 :             :     Mutex m_misbehavior_mutex;
     216                 :             :     /** Whether this peer should be disconnected and marked as discouraged (unless it has NetPermissionFlags::NoBan permission). */
     217                 :             :     bool m_should_discourage GUARDED_BY(m_misbehavior_mutex){false};
     218                 :             : 
     219                 :             :     /** Protects block inventory data members */
     220                 :             :     Mutex m_block_inv_mutex;
     221                 :             :     /** List of blocks that we'll announce via an `inv` message.
     222                 :             :      * There is no final sorting before sending, as they are always sent
     223                 :             :      * immediately and in the order requested. */
     224                 :             :     std::vector<uint256> m_blocks_for_inv_relay GUARDED_BY(m_block_inv_mutex);
     225                 :             :     /** Unfiltered list of blocks that we'd like to announce via a `headers`
     226                 :             :      * message. If we can't announce via a `headers` message, we'll fall back to
     227                 :             :      * announcing via `inv`. */
     228                 :             :     std::vector<uint256> m_blocks_for_headers_relay GUARDED_BY(m_block_inv_mutex);
     229                 :             :     /** The final block hash that we sent in an `inv` message to this peer.
     230                 :             :      * When the peer requests this block, we send an `inv` message to trigger
     231                 :             :      * the peer to request the next sequence of block hashes.
     232                 :             :      * Most peers use headers-first syncing, which doesn't use this mechanism */
     233                 :             :     uint256 m_continuation_block GUARDED_BY(m_block_inv_mutex) {};
     234                 :             : 
     235                 :             :     /** Set to true once initial VERSION message was sent (only relevant for outbound peers). */
     236                 :             :     bool m_outbound_version_message_sent GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false};
     237                 :             : 
     238                 :             :     /** This peer's reported block height when we connected */
     239                 :             :     std::atomic<int> m_starting_height{-1};
     240                 :             : 
     241                 :             :     /** The pong reply we're expecting, or 0 if no pong expected. */
     242                 :             :     std::atomic<uint64_t> m_ping_nonce_sent{0};
     243                 :             :     /** When the last ping was sent, or 0 if no ping was ever sent */
     244                 :             :     std::atomic<std::chrono::microseconds> m_ping_start{0us};
     245                 :             :     /** Whether a ping has been requested by the user */
     246                 :             :     std::atomic<bool> m_ping_queued{false};
     247                 :             : 
     248                 :             :     /** Whether this peer relays txs via wtxid */
     249                 :             :     std::atomic<bool> m_wtxid_relay{false};
     250                 :             :     /** The feerate in the most recent BIP133 `feefilter` message sent to the peer.
     251                 :             :      *  It is *not* a p2p protocol violation for the peer to send us
     252                 :             :      *  transactions with a lower fee rate than this. See BIP133. */
     253                 :             :     CAmount m_fee_filter_sent GUARDED_BY(NetEventsInterface::g_msgproc_mutex){0};
     254                 :             :     /** Timestamp after which we will send the next BIP133 `feefilter` message
     255                 :             :       * to the peer. */
     256                 :             :     std::chrono::microseconds m_next_send_feefilter GUARDED_BY(NetEventsInterface::g_msgproc_mutex){0};
     257                 :             : 
     258                 :             :     struct TxRelay {
     259                 :             :         mutable RecursiveMutex m_bloom_filter_mutex;
     260                 :             :         /** Whether we relay transactions to this peer. */
     261                 :             :         bool m_relay_txs GUARDED_BY(m_bloom_filter_mutex){false};
     262                 :             :         /** A bloom filter for which transactions to announce to the peer. See BIP37. */
     263                 :             :         std::unique_ptr<CBloomFilter> m_bloom_filter PT_GUARDED_BY(m_bloom_filter_mutex) GUARDED_BY(m_bloom_filter_mutex){nullptr};
     264                 :             : 
     265                 :             :         mutable RecursiveMutex m_tx_inventory_mutex;
     266                 :             :         /** A filter of all the (w)txids that the peer has announced to
     267                 :             :          *  us or we have announced to the peer. We use this to avoid announcing
     268                 :             :          *  the same (w)txid to a peer that already has the transaction. */
     269                 :             :         CRollingBloomFilter m_tx_inventory_known_filter GUARDED_BY(m_tx_inventory_mutex){50000, 0.000001};
     270                 :             :         /** Set of transaction ids we still have to announce (txid for
     271                 :             :          *  non-wtxid-relay peers, wtxid for wtxid-relay peers). We use the
     272                 :             :          *  mempool to sort transactions in dependency order before relay, so
     273                 :             :          *  this does not have to be sorted. */
     274                 :             :         std::set<uint256> m_tx_inventory_to_send GUARDED_BY(m_tx_inventory_mutex);
     275                 :             :         /** Whether the peer has requested us to send our complete mempool. Only
     276                 :             :          *  permitted if the peer has NetPermissionFlags::Mempool or we advertise
     277                 :             :          *  NODE_BLOOM. See BIP35. */
     278                 :             :         bool m_send_mempool GUARDED_BY(m_tx_inventory_mutex){false};
     279                 :             :         /** The next time after which we will send an `inv` message containing
     280                 :             :          *  transaction announcements to this peer. */
     281                 :             :         std::chrono::microseconds m_next_inv_send_time GUARDED_BY(m_tx_inventory_mutex){0};
     282                 :             :         /** The mempool sequence num at which we sent the last `inv` message to this peer.
     283                 :             :          *  Can relay txs with lower sequence numbers than this (see CTxMempool::info_for_relay). */
     284                 :             :         uint64_t m_last_inv_sequence GUARDED_BY(NetEventsInterface::g_msgproc_mutex){1};
     285                 :             : 
     286                 :             :         /** Minimum fee rate with which to filter transaction announcements to this node. See BIP133. */
     287                 :             :         std::atomic<CAmount> m_fee_filter_received{0};
     288                 :             :     };
     289                 :             : 
     290                 :             :     /* Initializes a TxRelay struct for this peer. Can be called at most once for a peer. */
     291                 :        1439 :     TxRelay* SetTxRelay() EXCLUSIVE_LOCKS_REQUIRED(!m_tx_relay_mutex)
     292                 :             :     {
     293                 :        1439 :         LOCK(m_tx_relay_mutex);
     294         [ +  - ]:        1439 :         Assume(!m_tx_relay);
     295         [ +  - ]:        1439 :         m_tx_relay = std::make_unique<Peer::TxRelay>();
     296         [ +  - ]:        1439 :         return m_tx_relay.get();
     297                 :        1439 :     };
     298                 :             : 
     299                 :      548678 :     TxRelay* GetTxRelay() EXCLUSIVE_LOCKS_REQUIRED(!m_tx_relay_mutex)
     300                 :             :     {
     301   [ +  -  +  -  :      960588 :         return WITH_LOCK(m_tx_relay_mutex, return m_tx_relay.get());
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
     302                 :             :     };
     303                 :             : 
     304                 :             :     /** A vector of addresses to send to the peer, limited to MAX_ADDR_TO_SEND. */
     305                 :             :     std::vector<CAddress> m_addrs_to_send GUARDED_BY(NetEventsInterface::g_msgproc_mutex);
     306                 :             :     /** Probabilistic filter to track recent addr messages relayed with this
     307                 :             :      *  peer. Used to avoid relaying redundant addresses to this peer.
     308                 :             :      *
     309                 :             :      *  We initialize this filter for outbound peers (other than
     310                 :             :      *  block-relay-only connections) or when an inbound peer sends us an
     311                 :             :      *  address related message (ADDR, ADDRV2, GETADDR).
     312                 :             :      *
     313                 :             :      *  Presence of this filter must correlate with m_addr_relay_enabled.
     314                 :             :      **/
     315                 :             :     std::unique_ptr<CRollingBloomFilter> m_addr_known GUARDED_BY(NetEventsInterface::g_msgproc_mutex);
     316                 :             :     /** Whether we are participating in address relay with this connection.
     317                 :             :      *
     318                 :             :      *  We set this bool to true for outbound peers (other than
     319                 :             :      *  block-relay-only connections), or when an inbound peer sends us an
     320                 :             :      *  address related message (ADDR, ADDRV2, GETADDR).
     321                 :             :      *
     322                 :             :      *  We use this bool to decide whether a peer is eligible for gossiping
     323                 :             :      *  addr messages. This avoids relaying to peers that are unlikely to
     324                 :             :      *  forward them, effectively blackholing self announcements. Reasons
     325                 :             :      *  peers might support addr relay on the link include that they connected
     326                 :             :      *  to us as a block-relay-only peer or they are a light client.
     327                 :             :      *
     328                 :             :      *  This field must correlate with whether m_addr_known has been
     329                 :             :      *  initialized.*/
     330                 :             :     std::atomic_bool m_addr_relay_enabled{false};
     331                 :             :     /** Whether a getaddr request to this peer is outstanding. */
     332                 :             :     bool m_getaddr_sent GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false};
     333                 :             :     /** Guards address sending timers. */
     334                 :             :     mutable Mutex m_addr_send_times_mutex;
     335                 :             :     /** Time point to send the next ADDR message to this peer. */
     336                 :             :     std::chrono::microseconds m_next_addr_send GUARDED_BY(m_addr_send_times_mutex){0};
     337                 :             :     /** Time point to possibly re-announce our local address to this peer. */
     338                 :             :     std::chrono::microseconds m_next_local_addr_send GUARDED_BY(m_addr_send_times_mutex){0};
     339                 :             :     /** Whether the peer has signaled support for receiving ADDRv2 (BIP155)
     340                 :             :      *  messages, indicating a preference to receive ADDRv2 instead of ADDR ones. */
     341                 :             :     std::atomic_bool m_wants_addrv2{false};
     342                 :             :     /** Whether this peer has already sent us a getaddr message. */
     343                 :             :     bool m_getaddr_recvd GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false};
     344                 :             :     /** Number of addresses that can be processed from this peer. Start at 1 to
     345                 :             :      *  permit self-announcement. */
     346                 :             :     double m_addr_token_bucket GUARDED_BY(NetEventsInterface::g_msgproc_mutex){1.0};
     347                 :             :     /** When m_addr_token_bucket was last updated */
     348                 :             :     std::chrono::microseconds m_addr_token_timestamp GUARDED_BY(NetEventsInterface::g_msgproc_mutex){GetTime<std::chrono::microseconds>()};
     349                 :             :     /** Total number of addresses that were dropped due to rate limiting. */
     350                 :             :     std::atomic<uint64_t> m_addr_rate_limited{0};
     351                 :             :     /** Total number of addresses that were processed (excludes rate-limited ones). */
     352                 :             :     std::atomic<uint64_t> m_addr_processed{0};
     353                 :             : 
     354                 :             :     /** Whether we've sent this peer a getheaders in response to an inv prior to initial-headers-sync completing */
     355                 :             :     bool m_inv_triggered_getheaders_before_sync GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false};
     356                 :             : 
     357                 :             :     /** Protects m_getdata_requests **/
     358                 :             :     Mutex m_getdata_requests_mutex;
     359                 :             :     /** Work queue of items requested by this peer **/
     360                 :             :     std::deque<CInv> m_getdata_requests GUARDED_BY(m_getdata_requests_mutex);
     361                 :             : 
     362                 :             :     /** Time of the last getheaders message to this peer */
     363                 :             :     NodeClock::time_point m_last_getheaders_timestamp GUARDED_BY(NetEventsInterface::g_msgproc_mutex){};
     364                 :             : 
     365                 :             :     /** Protects m_headers_sync **/
     366                 :             :     Mutex m_headers_sync_mutex;
     367                 :             :     /** Headers-sync state for this peer (eg for initial sync, or syncing large
     368                 :             :      * reorgs) **/
     369                 :             :     std::unique_ptr<HeadersSyncState> m_headers_sync PT_GUARDED_BY(m_headers_sync_mutex) GUARDED_BY(m_headers_sync_mutex) {};
     370                 :             : 
     371                 :             :     /** Whether we've sent our peer a sendheaders message. **/
     372                 :             :     std::atomic<bool> m_sent_sendheaders{false};
     373                 :             : 
     374                 :             :     /** When to potentially disconnect peer for stalling headers download */
     375                 :             :     std::chrono::microseconds m_headers_sync_timeout GUARDED_BY(NetEventsInterface::g_msgproc_mutex){0us};
     376                 :             : 
     377                 :             :     /** Whether this peer wants invs or headers (when possible) for block announcements */
     378                 :             :     bool m_prefers_headers GUARDED_BY(NetEventsInterface::g_msgproc_mutex){false};
     379                 :             : 
     380                 :             :     /** Time offset computed during the version handshake based on the
     381                 :             :      * timestamp the peer sent in the version message. */
     382                 :             :     std::atomic<std::chrono::seconds> m_time_offset{0s};
     383                 :             : 
     384                 :        1561 :     explicit Peer(NodeId id, ServiceFlags our_services, bool is_inbound)
     385                 :        1561 :         : m_id{id}
     386                 :        1561 :         , m_our_services{our_services}
     387         [ +  - ]:        1561 :         , m_is_inbound{is_inbound}
     388                 :        1561 :     {}
     389                 :             : 
     390                 :             : private:
     391                 :             :     mutable Mutex m_tx_relay_mutex;
     392                 :             : 
     393                 :             :     /** Transaction relay data. May be a nullptr. */
     394                 :             :     std::unique_ptr<TxRelay> m_tx_relay GUARDED_BY(m_tx_relay_mutex);
     395                 :             : };
     396                 :             : 
     397                 :             : using PeerRef = std::shared_ptr<Peer>;
     398                 :             : 
     399                 :             : /**
     400                 :             :  * Maintain validation-specific state about nodes, protected by cs_main, instead
     401                 :             :  * by CNode's own locks. This simplifies asynchronous operation, where
     402                 :             :  * processing of incoming data is done after the ProcessMessage call returns,
     403                 :             :  * and we're no longer holding the node's locks.
     404                 :             :  */
     405                 :        1561 : struct CNodeState {
     406                 :             :     //! The best known block we know this peer has announced.
     407                 :             :     const CBlockIndex* pindexBestKnownBlock{nullptr};
     408                 :             :     //! The hash of the last unknown block this peer has announced.
     409                 :             :     uint256 hashLastUnknownBlock{};
     410                 :             :     //! The last full block we both have.
     411                 :             :     const CBlockIndex* pindexLastCommonBlock{nullptr};
     412                 :             :     //! The best header we have sent our peer.
     413                 :             :     const CBlockIndex* pindexBestHeaderSent{nullptr};
     414                 :             :     //! Whether we've started headers synchronization with this peer.
     415                 :             :     bool fSyncStarted{false};
     416                 :             :     //! Since when we're stalling block download progress (in microseconds), or 0.
     417                 :             :     std::chrono::microseconds m_stalling_since{0us};
     418                 :             :     std::list<QueuedBlock> vBlocksInFlight;
     419                 :             :     //! When the first entry in vBlocksInFlight started downloading. Don't care when vBlocksInFlight is empty.
     420                 :             :     std::chrono::microseconds m_downloading_since{0us};
     421                 :             :     //! Whether we consider this a preferred download peer.
     422                 :             :     bool fPreferredDownload{false};
     423                 :             :     /** Whether this peer wants invs or cmpctblocks (when possible) for block announcements. */
     424                 :             :     bool m_requested_hb_cmpctblocks{false};
     425                 :             :     /** Whether this peer will send us cmpctblocks if we request them. */
     426                 :             :     bool m_provides_cmpctblocks{false};
     427                 :             : 
     428                 :             :     /** State used to enforce CHAIN_SYNC_TIMEOUT and EXTRA_PEER_CHECK_INTERVAL logic.
     429                 :             :       *
     430                 :             :       * Both are only in effect for outbound, non-manual, non-protected connections.
     431                 :             :       * Any peer protected (m_protect = true) is not chosen for eviction. A peer is
     432                 :             :       * marked as protected if all of these are true:
     433                 :             :       *   - its connection type is IsBlockOnlyConn() == false
     434                 :             :       *   - it gave us a valid connecting header
     435                 :             :       *   - we haven't reached MAX_OUTBOUND_PEERS_TO_PROTECT_FROM_DISCONNECT yet
     436                 :             :       *   - its chain tip has at least as much work as ours
     437                 :             :       *
     438                 :             :       * CHAIN_SYNC_TIMEOUT: if a peer's best known block has less work than our tip,
     439                 :             :       * set a timeout CHAIN_SYNC_TIMEOUT in the future:
     440                 :             :       *   - If at timeout their best known block now has more work than our tip
     441                 :             :       *     when the timeout was set, then either reset the timeout or clear it
     442                 :             :       *     (after comparing against our current tip's work)
     443                 :             :       *   - If at timeout their best known block still has less work than our
     444                 :             :       *     tip did when the timeout was set, then send a getheaders message,
     445                 :             :       *     and set a shorter timeout, HEADERS_RESPONSE_TIME seconds in future.
     446                 :             :       *     If their best known block is still behind when that new timeout is
     447                 :             :       *     reached, disconnect.
     448                 :             :       *
     449                 :             :       * EXTRA_PEER_CHECK_INTERVAL: after each interval, if we have too many outbound peers,
     450                 :             :       * drop the outbound one that least recently announced us a new block.
     451                 :             :       */
     452                 :             :     struct ChainSyncTimeoutState {
     453                 :             :         //! A timeout used for checking whether our peer has sufficiently synced
     454                 :             :         std::chrono::seconds m_timeout{0s};
     455                 :             :         //! A header with the work we require on our peer's chain
     456                 :             :         const CBlockIndex* m_work_header{nullptr};
     457                 :             :         //! After timeout is reached, set to true after sending getheaders
     458                 :             :         bool m_sent_getheaders{false};
     459                 :             :         //! Whether this peer is protected from disconnection due to a bad/slow chain
     460                 :             :         bool m_protect{false};
     461                 :             :     };
     462                 :             : 
     463                 :             :     ChainSyncTimeoutState m_chain_sync;
     464                 :             : 
     465                 :             :     //! Time of last new block announcement
     466                 :             :     int64_t m_last_block_announcement{0};
     467                 :             : };
     468                 :             : 
     469                 :             : class PeerManagerImpl final : public PeerManager
     470                 :             : {
     471                 :             : public:
     472                 :             :     PeerManagerImpl(CConnman& connman, AddrMan& addrman,
     473                 :             :                     BanMan* banman, ChainstateManager& chainman,
     474                 :             :                     CTxMemPool& pool, node::Warnings& warnings, Options opts);
     475                 :             : 
     476                 :             :     /** Overridden from CValidationInterface. */
     477                 :             :     void ActiveTipChange(const CBlockIndex& new_tip, bool) override
     478                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_tx_download_mutex);
     479                 :             :     void BlockConnected(ChainstateRole role, const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected) override
     480                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_tx_download_mutex);
     481                 :             :     void BlockDisconnected(const std::shared_ptr<const CBlock> &block, const CBlockIndex* pindex) override
     482                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_tx_download_mutex);
     483                 :             :     void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override
     484                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     485                 :             :     void BlockChecked(const CBlock& block, const BlockValidationState& state) override
     486                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     487                 :             :     void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock) override
     488                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_most_recent_block_mutex);
     489                 :             : 
     490                 :             :     /** Implement NetEventsInterface */
     491                 :             :     void InitializeNode(const CNode& node, ServiceFlags our_services) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_tx_download_mutex);
     492                 :             :     void FinalizeNode(const CNode& node) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_headers_presync_mutex, !m_tx_download_mutex);
     493                 :             :     bool HasAllDesirableServiceFlags(ServiceFlags services) const override;
     494                 :             :     bool ProcessMessages(CNode* pfrom, std::atomic<bool>& interrupt) override
     495                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_most_recent_block_mutex, !m_headers_presync_mutex, g_msgproc_mutex, !m_tx_download_mutex);
     496                 :             :     bool SendMessages(CNode* pto) override
     497                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_most_recent_block_mutex, g_msgproc_mutex, !m_tx_download_mutex);
     498                 :             : 
     499                 :             :     /** Implement PeerManager */
     500                 :             :     void StartScheduledTasks(CScheduler& scheduler) override;
     501                 :             :     void CheckForStaleTipAndEvictPeers() override;
     502                 :             :     std::optional<std::string> FetchBlock(NodeId peer_id, const CBlockIndex& block_index) override
     503                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     504                 :             :     bool GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats) const override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     505                 :             :     std::vector<TxOrphanage::OrphanTxBase> GetOrphanTransactions() override EXCLUSIVE_LOCKS_REQUIRED(!m_tx_download_mutex);
     506                 :             :     PeerManagerInfo GetInfo() const override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     507                 :             :     void SendPings() override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     508                 :             :     void RelayTransaction(const uint256& txid, const uint256& wtxid) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     509                 :      109576 :     void SetBestBlock(int height, std::chrono::seconds time) override
     510                 :             :     {
     511                 :      109576 :         m_best_height = height;
     512                 :      109576 :         m_best_block_time = time;
     513                 :      109576 :     };
     514   [ +  -  +  -  :           8 :     void UnitTestMisbehaving(NodeId peer_id) override EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex) { Misbehaving(*Assert(GetPeerRef(peer_id)), ""); };
                   +  - ]
     515                 :             :     void ProcessMessage(CNode& pfrom, const std::string& msg_type, DataStream& vRecv,
     516                 :             :                         const std::chrono::microseconds time_received, const std::atomic<bool>& interruptMsgProc) override
     517                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_most_recent_block_mutex, !m_headers_presync_mutex, g_msgproc_mutex, !m_tx_download_mutex);
     518                 :             :     void UpdateLastBlockAnnounceTime(NodeId node, int64_t time_in_seconds) override;
     519                 :             :     ServiceFlags GetDesirableServiceFlags(ServiceFlags services) const override;
     520                 :             : 
     521                 :             : private:
     522                 :             :     /** Consider evicting an outbound peer based on the amount of time they've been behind our tip */
     523                 :             :     void ConsiderEviction(CNode& pto, Peer& peer, std::chrono::seconds time_in_seconds) EXCLUSIVE_LOCKS_REQUIRED(cs_main, g_msgproc_mutex);
     524                 :             : 
     525                 :             :     /** If we have extra outbound peers, try to disconnect the one with the oldest block announcement */
     526                 :             :     void EvictExtraOutboundPeers(std::chrono::seconds now) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     527                 :             : 
     528                 :             :     /** Retrieve unbroadcast transactions from the mempool and reattempt sending to peers */
     529                 :             :     void ReattemptInitialBroadcast(CScheduler& scheduler) EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     530                 :             : 
     531                 :             :     /** Get a shared pointer to the Peer object.
     532                 :             :      *  May return an empty shared_ptr if the Peer object can't be found. */
     533                 :             :     PeerRef GetPeerRef(NodeId id) const EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     534                 :             : 
     535                 :             :     /** Get a shared pointer to the Peer object and remove it from m_peer_map.
     536                 :             :      *  May return an empty shared_ptr if the Peer object can't be found. */
     537                 :             :     PeerRef RemovePeer(NodeId id) EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     538                 :             : 
     539                 :             :     /** Mark a peer as misbehaving, which will cause it to be disconnected and its
     540                 :             :      *  address discouraged. */
     541                 :             :     void Misbehaving(Peer& peer, const std::string& message);
     542                 :             : 
     543                 :             :     /**
     544                 :             :      * Potentially mark a node discouraged based on the contents of a BlockValidationState object
     545                 :             :      *
     546                 :             :      * @param[in] via_compact_block this bool is passed in because net_processing should
     547                 :             :      * punish peers differently depending on whether the data was provided in a compact
     548                 :             :      * block message or not. If the compact block had a valid header, but contained invalid
     549                 :             :      * txs, the peer should not be punished. See BIP 152.
     550                 :             :      */
     551                 :             :     void MaybePunishNodeForBlock(NodeId nodeid, const BlockValidationState& state,
     552                 :             :                                  bool via_compact_block, const std::string& message = "")
     553                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     554                 :             : 
     555                 :             :     /**
     556                 :             :      * Potentially disconnect and discourage a node based on the contents of a TxValidationState object
     557                 :             :      */
     558                 :             :     void MaybePunishNodeForTx(NodeId nodeid, const TxValidationState& state)
     559                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex);
     560                 :             : 
     561                 :             :     /** Maybe disconnect a peer and discourage future connections from its address.
     562                 :             :      *
     563                 :             :      * @param[in]   pnode     The node to check.
     564                 :             :      * @param[in]   peer      The peer object to check.
     565                 :             :      * @return                True if the peer was marked for disconnection in this function
     566                 :             :      */
     567                 :             :     bool MaybeDiscourageAndDisconnect(CNode& pnode, Peer& peer);
     568                 :             : 
     569                 :             :     /** Handle a transaction whose result was not MempoolAcceptResult::ResultType::VALID.
     570                 :             :      * @param[in]   first_time_failure            Whether we should consider inserting into vExtraTxnForCompact, adding
     571                 :             :      *                                            a new orphan to resolve, or looking for a package to submit.
     572                 :             :      *                                            Set to true for transactions just received over p2p.
     573                 :             :      *                                            Set to false if the tx has already been rejected before,
     574                 :             :      *                                            e.g. is already in the orphanage, to avoid adding duplicate entries.
     575                 :             :      * Updates m_txrequest, m_lazy_recent_rejects, m_lazy_recent_rejects_reconsiderable, m_orphanage, and vExtraTxnForCompact.
     576                 :             :      *
     577                 :             :      * @returns a PackageToValidate if this transaction has a reconsiderable failure and an eligible package was found,
     578                 :             :      * or std::nullopt otherwise.
     579                 :             :      */
     580                 :             :     std::optional<node::PackageToValidate> ProcessInvalidTx(NodeId nodeid, const CTransactionRef& tx, const TxValidationState& result,
     581                 :             :                                                       bool first_time_failure)
     582                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, g_msgproc_mutex, m_tx_download_mutex);
     583                 :             : 
     584                 :             :     /** Handle a transaction whose result was MempoolAcceptResult::ResultType::VALID.
     585                 :             :      * Updates m_txrequest, m_orphanage, and vExtraTxnForCompact. Also queues the tx for relay. */
     586                 :             :     void ProcessValidTx(NodeId nodeid, const CTransactionRef& tx, const std::list<CTransactionRef>& replaced_transactions)
     587                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, g_msgproc_mutex, m_tx_download_mutex);
     588                 :             : 
     589                 :             :     /** Handle the results of package validation: calls ProcessValidTx and ProcessInvalidTx for
     590                 :             :      * individual transactions, and caches rejection for the package as a group.
     591                 :             :      */
     592                 :             :     void ProcessPackageResult(const node::PackageToValidate& package_to_validate, const PackageMempoolAcceptResult& package_result)
     593                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, g_msgproc_mutex, m_tx_download_mutex);
     594                 :             : 
     595                 :             :     /**
     596                 :             :      * Reconsider orphan transactions after a parent has been accepted to the mempool.
     597                 :             :      *
     598                 :             :      * @peer[in]  peer     The peer whose orphan transactions we will reconsider. Generally only
     599                 :             :      *                     one orphan will be reconsidered on each call of this function. If an
     600                 :             :      *                     accepted orphan has orphaned children, those will need to be
     601                 :             :      *                     reconsidered, creating more work, possibly for other peers.
     602                 :             :      * @return             True if meaningful work was done (an orphan was accepted/rejected).
     603                 :             :      *                     If no meaningful work was done, then the work set for this peer
     604                 :             :      *                     will be empty.
     605                 :             :      */
     606                 :             :     bool ProcessOrphanTx(Peer& peer)
     607                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, g_msgproc_mutex, !m_tx_download_mutex);
     608                 :             : 
     609                 :             :     /** Process a single headers message from a peer.
     610                 :             :      *
     611                 :             :      * @param[in]   pfrom     CNode of the peer
     612                 :             :      * @param[in]   peer      The peer sending us the headers
     613                 :             :      * @param[in]   headers   The headers received. Note that this may be modified within ProcessHeadersMessage.
     614                 :             :      * @param[in]   via_compact_block   Whether this header came in via compact block handling.
     615                 :             :     */
     616                 :             :     void ProcessHeadersMessage(CNode& pfrom, Peer& peer,
     617                 :             :                                std::vector<CBlockHeader>&& headers,
     618                 :             :                                bool via_compact_block)
     619                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, !m_headers_presync_mutex, g_msgproc_mutex);
     620                 :             :     /** Various helpers for headers processing, invoked by ProcessHeadersMessage() */
     621                 :             :     /** Return true if headers are continuous and have valid proof-of-work (DoS points assigned on failure) */
     622                 :             :     bool CheckHeadersPoW(const std::vector<CBlockHeader>& headers, const Consensus::Params& consensusParams, Peer& peer);
     623                 :             :     /** Calculate an anti-DoS work threshold for headers chains */
     624                 :             :     arith_uint256 GetAntiDoSWorkThreshold();
     625                 :             :     /** Deal with state tracking and headers sync for peers that send
     626                 :             :      * non-connecting headers (this can happen due to BIP 130 headers
     627                 :             :      * announcements for blocks interacting with the 2hr (MAX_FUTURE_BLOCK_TIME) rule). */
     628                 :             :     void HandleUnconnectingHeaders(CNode& pfrom, Peer& peer, const std::vector<CBlockHeader>& headers) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     629                 :             :     /** Return true if the headers connect to each other, false otherwise */
     630                 :             :     bool CheckHeadersAreContinuous(const std::vector<CBlockHeader>& headers) const;
     631                 :             :     /** Try to continue a low-work headers sync that has already begun.
     632                 :             :      * Assumes the caller has already verified the headers connect, and has
     633                 :             :      * checked that each header satisfies the proof-of-work target included in
     634                 :             :      * the header.
     635                 :             :      *  @param[in]  peer                            The peer we're syncing with.
     636                 :             :      *  @param[in]  pfrom                           CNode of the peer
     637                 :             :      *  @param[in,out] headers                      The headers to be processed.
     638                 :             :      *  @return     True if the passed in headers were successfully processed
     639                 :             :      *              as the continuation of a low-work headers sync in progress;
     640                 :             :      *              false otherwise.
     641                 :             :      *              If false, the passed in headers will be returned back to
     642                 :             :      *              the caller.
     643                 :             :      *              If true, the returned headers may be empty, indicating
     644                 :             :      *              there is no more work for the caller to do; or the headers
     645                 :             :      *              may be populated with entries that have passed anti-DoS
     646                 :             :      *              checks (and therefore may be validated for block index
     647                 :             :      *              acceptance by the caller).
     648                 :             :      */
     649                 :             :     bool IsContinuationOfLowWorkHeadersSync(Peer& peer, CNode& pfrom,
     650                 :             :             std::vector<CBlockHeader>& headers)
     651                 :             :         EXCLUSIVE_LOCKS_REQUIRED(peer.m_headers_sync_mutex, !m_headers_presync_mutex, g_msgproc_mutex);
     652                 :             :     /** Check work on a headers chain to be processed, and if insufficient,
     653                 :             :      * initiate our anti-DoS headers sync mechanism.
     654                 :             :      *
     655                 :             :      * @param[in]   peer                The peer whose headers we're processing.
     656                 :             :      * @param[in]   pfrom               CNode of the peer
     657                 :             :      * @param[in]   chain_start_header  Where these headers connect in our index.
     658                 :             :      * @param[in,out]   headers             The headers to be processed.
     659                 :             :      *
     660                 :             :      * @return      True if chain was low work (headers will be empty after
     661                 :             :      *              calling); false otherwise.
     662                 :             :      */
     663                 :             :     bool TryLowWorkHeadersSync(Peer& peer, CNode& pfrom,
     664                 :             :                                   const CBlockIndex* chain_start_header,
     665                 :             :                                   std::vector<CBlockHeader>& headers)
     666                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!peer.m_headers_sync_mutex, !m_peer_mutex, !m_headers_presync_mutex, g_msgproc_mutex);
     667                 :             : 
     668                 :             :     /** Return true if the given header is an ancestor of
     669                 :             :      *  m_chainman.m_best_header or our current tip */
     670                 :             :     bool IsAncestorOfBestHeaderOrTip(const CBlockIndex* header) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     671                 :             : 
     672                 :             :     /** Request further headers from this peer with a given locator.
     673                 :             :      * We don't issue a getheaders message if we have a recent one outstanding.
     674                 :             :      * This returns true if a getheaders is actually sent, and false otherwise.
     675                 :             :      */
     676                 :             :     bool MaybeSendGetHeaders(CNode& pfrom, const CBlockLocator& locator, Peer& peer) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     677                 :             :     /** Potentially fetch blocks from this peer upon receipt of a new headers tip */
     678                 :             :     void HeadersDirectFetchBlocks(CNode& pfrom, const Peer& peer, const CBlockIndex& last_header);
     679                 :             :     /** Update peer state based on received headers message */
     680                 :             :     void UpdatePeerStateForReceivedHeaders(CNode& pfrom, Peer& peer, const CBlockIndex& last_header, bool received_new_header, bool may_have_more_headers)
     681                 :             :         EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     682                 :             : 
     683                 :             :     void SendBlockTransactions(CNode& pfrom, Peer& peer, const CBlock& block, const BlockTransactionsRequest& req);
     684                 :             : 
     685                 :             :     /** Send a message to a peer */
     686         [ +  - ]:          57 :     void PushMessage(CNode& node, CSerializedNetMsg&& msg) const { m_connman.PushMessage(&node, std::move(msg)); }
     687                 :             :     template <typename... Args>
     688                 :      148622 :     void MakeAndPushMessage(CNode& node, std::string msg_type, Args&&... args) const
     689                 :             :     {
     690   [ +  -  +  - ]:      297244 :         m_connman.PushMessage(&node, NetMsg::Make(std::move(msg_type), std::forward<Args>(args)...));
     691                 :      148622 :     }
     692                 :             : 
     693                 :             :     /** Send a version message to a peer */
     694                 :             :     void PushNodeVersion(CNode& pnode, const Peer& peer);
     695                 :             : 
     696                 :             :     /** Send a ping message every PING_INTERVAL or if requested via RPC. May
     697                 :             :      *  mark the peer to be disconnected if a ping has timed out.
     698                 :             :      *  We use mockable time for ping timeouts, so setmocktime may cause pings
     699                 :             :      *  to time out. */
     700                 :             :     void MaybeSendPing(CNode& node_to, Peer& peer, std::chrono::microseconds now);
     701                 :             : 
     702                 :             :     /** Send `addr` messages on a regular schedule. */
     703                 :             :     void MaybeSendAddr(CNode& node, Peer& peer, std::chrono::microseconds current_time) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     704                 :             : 
     705                 :             :     /** Send a single `sendheaders` message, after we have completed headers sync with a peer. */
     706                 :             :     void MaybeSendSendHeaders(CNode& node, Peer& peer) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     707                 :             : 
     708                 :             :     /** Relay (gossip) an address to a few randomly chosen nodes.
     709                 :             :      *
     710                 :             :      * @param[in] originator   The id of the peer that sent us the address. We don't want to relay it back.
     711                 :             :      * @param[in] addr         Address to relay.
     712                 :             :      * @param[in] fReachable   Whether the address' network is reachable. We relay unreachable
     713                 :             :      *                         addresses less.
     714                 :             :      */
     715                 :             :     void RelayAddress(NodeId originator, const CAddress& addr, bool fReachable) EXCLUSIVE_LOCKS_REQUIRED(!m_peer_mutex, g_msgproc_mutex);
     716                 :             : 
     717                 :             :     /** Send `feefilter` message. */
     718                 :             :     void MaybeSendFeefilter(CNode& node, Peer& peer, std::chrono::microseconds current_time) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     719                 :             : 
     720                 :             :     FastRandomContext m_rng GUARDED_BY(NetEventsInterface::g_msgproc_mutex);
     721                 :             : 
     722                 :             :     FeeFilterRounder m_fee_filter_rounder GUARDED_BY(NetEventsInterface::g_msgproc_mutex);
     723                 :             : 
     724                 :             :     const CChainParams& m_chainparams;
     725                 :             :     CConnman& m_connman;
     726                 :             :     AddrMan& m_addrman;
     727                 :             :     /** Pointer to this node's banman. May be nullptr - check existence before dereferencing. */
     728                 :             :     BanMan* const m_banman;
     729                 :             :     ChainstateManager& m_chainman;
     730                 :             :     CTxMemPool& m_mempool;
     731                 :             : 
     732                 :             :     /** Synchronizes tx download including TxRequestTracker, rejection filters, and TxOrphanage.
     733                 :             :      * Lock invariants:
     734                 :             :      * - A txhash (txid or wtxid) in m_txrequest is not also in m_orphanage.
     735                 :             :      * - A txhash (txid or wtxid) in m_txrequest is not also in m_lazy_recent_rejects.
     736                 :             :      * - A txhash (txid or wtxid) in m_txrequest is not also in m_lazy_recent_rejects_reconsiderable.
     737                 :             :      * - A txhash (txid or wtxid) in m_txrequest is not also in m_lazy_recent_confirmed_transactions.
     738                 :             :      * - Each data structure's limits hold (m_orphanage max size, m_txrequest per-peer limits, etc).
     739                 :             :      */
     740                 :             :     Mutex m_tx_download_mutex ACQUIRED_BEFORE(m_mempool.cs);
     741                 :             :     node::TxDownloadManager m_txdownloadman GUARDED_BY(m_tx_download_mutex);
     742                 :             : 
     743                 :             :     std::unique_ptr<TxReconciliationTracker> m_txreconciliation;
     744                 :             : 
     745                 :             :     /** The height of the best chain */
     746                 :             :     std::atomic<int> m_best_height{-1};
     747                 :             :     /** The time of the best chain tip block */
     748                 :             :     std::atomic<std::chrono::seconds> m_best_block_time{0s};
     749                 :             : 
     750                 :             :     /** Next time to check for stale tip */
     751                 :             :     std::chrono::seconds m_stale_tip_check_time GUARDED_BY(cs_main){0s};
     752                 :             : 
     753                 :             :     node::Warnings& m_warnings;
     754                 :             :     TimeOffsets m_outbound_time_offsets{m_warnings};
     755                 :             : 
     756                 :             :     const Options m_opts;
     757                 :             : 
     758                 :             :     bool RejectIncomingTxs(const CNode& peer) const;
     759                 :             : 
     760                 :             :     /** Whether we've completed initial sync yet, for determining when to turn
     761                 :             :       * on extra block-relay-only peers. */
     762                 :             :     bool m_initial_sync_finished GUARDED_BY(cs_main){false};
     763                 :             : 
     764                 :             :     /** Protects m_peer_map. This mutex must not be locked while holding a lock
     765                 :             :      *  on any of the mutexes inside a Peer object. */
     766                 :             :     mutable Mutex m_peer_mutex;
     767                 :             :     /**
     768                 :             :      * Map of all Peer objects, keyed by peer id. This map is protected
     769                 :             :      * by the m_peer_mutex. Once a shared pointer reference is
     770                 :             :      * taken, the lock may be released. Individual fields are protected by
     771                 :             :      * their own locks.
     772                 :             :      */
     773                 :             :     std::map<NodeId, PeerRef> m_peer_map GUARDED_BY(m_peer_mutex);
     774                 :             : 
     775                 :             :     /** Map maintaining per-node state. */
     776                 :             :     std::map<NodeId, CNodeState> m_node_states GUARDED_BY(cs_main);
     777                 :             : 
     778                 :             :     /** Get a pointer to a const CNodeState, used when not mutating the CNodeState object. */
     779                 :             :     const CNodeState* State(NodeId pnode) const EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     780                 :             :     /** Get a pointer to a mutable CNodeState. */
     781                 :             :     CNodeState* State(NodeId pnode) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     782                 :             : 
     783                 :             :     uint32_t GetFetchFlags(const Peer& peer) const;
     784                 :             : 
     785                 :             :     std::atomic<std::chrono::microseconds> m_next_inv_to_inbounds{0us};
     786                 :             : 
     787                 :             :     /** Number of nodes with fSyncStarted. */
     788                 :             :     int nSyncStarted GUARDED_BY(cs_main) = 0;
     789                 :             : 
     790                 :             :     /** Hash of the last block we received via INV */
     791                 :             :     uint256 m_last_block_inv_triggering_headers_sync GUARDED_BY(g_msgproc_mutex){};
     792                 :             : 
     793                 :             :     /**
     794                 :             :      * Sources of received blocks, saved to be able punish them when processing
     795                 :             :      * happens afterwards.
     796                 :             :      * Set mapBlockSource[hash].second to false if the node should not be
     797                 :             :      * punished if the block is invalid.
     798                 :             :      */
     799                 :             :     std::map<uint256, std::pair<NodeId, bool>> mapBlockSource GUARDED_BY(cs_main);
     800                 :             : 
     801                 :             :     /** Number of peers with wtxid relay. */
     802                 :             :     std::atomic<int> m_wtxid_relay_peers{0};
     803                 :             : 
     804                 :             :     /** Number of outbound peers with m_chain_sync.m_protect. */
     805                 :             :     int m_outbound_peers_with_protect_from_disconnect GUARDED_BY(cs_main) = 0;
     806                 :             : 
     807                 :             :     /** Number of preferable block download peers. */
     808                 :             :     int m_num_preferred_download_peers GUARDED_BY(cs_main){0};
     809                 :             : 
     810                 :             :     /** Stalling timeout for blocks in IBD */
     811                 :             :     std::atomic<std::chrono::seconds> m_block_stalling_timeout{BLOCK_STALLING_TIMEOUT_DEFAULT};
     812                 :             : 
     813                 :             :     /**
     814                 :             :      * For sending `inv`s to inbound peers, we use a single (exponentially
     815                 :             :      * distributed) timer for all peers. If we used a separate timer for each
     816                 :             :      * peer, a spy node could make multiple inbound connections to us to
     817                 :             :      * accurately determine when we received the transaction (and potentially
     818                 :             :      * determine the transaction's origin). */
     819                 :             :     std::chrono::microseconds NextInvToInbounds(std::chrono::microseconds now,
     820                 :             :                                                 std::chrono::seconds average_interval) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     821                 :             : 
     822                 :             : 
     823                 :             :     // All of the following cache a recent block, and are protected by m_most_recent_block_mutex
     824                 :             :     Mutex m_most_recent_block_mutex;
     825                 :             :     std::shared_ptr<const CBlock> m_most_recent_block GUARDED_BY(m_most_recent_block_mutex);
     826                 :             :     std::shared_ptr<const CBlockHeaderAndShortTxIDs> m_most_recent_compact_block GUARDED_BY(m_most_recent_block_mutex);
     827                 :             :     uint256 m_most_recent_block_hash GUARDED_BY(m_most_recent_block_mutex);
     828                 :             :     std::unique_ptr<const std::map<uint256, CTransactionRef>> m_most_recent_block_txs GUARDED_BY(m_most_recent_block_mutex);
     829                 :             : 
     830                 :             :     // Data about the low-work headers synchronization, aggregated from all peers' HeadersSyncStates.
     831                 :             :     /** Mutex guarding the other m_headers_presync_* variables. */
     832                 :             :     Mutex m_headers_presync_mutex;
     833                 :             :     /** A type to represent statistics about a peer's low-work headers sync.
     834                 :             :      *
     835                 :             :      * - The first field is the total verified amount of work in that synchronization.
     836                 :             :      * - The second is:
     837                 :             :      *   - nullopt: the sync is in REDOWNLOAD phase (phase 2).
     838                 :             :      *   - {height, timestamp}: the sync has the specified tip height and block timestamp (phase 1).
     839                 :             :      */
     840                 :             :     using HeadersPresyncStats = std::pair<arith_uint256, std::optional<std::pair<int64_t, uint32_t>>>;
     841                 :             :     /** Statistics for all peers in low-work headers sync. */
     842                 :             :     std::map<NodeId, HeadersPresyncStats> m_headers_presync_stats GUARDED_BY(m_headers_presync_mutex) {};
     843                 :             :     /** The peer with the most-work entry in m_headers_presync_stats. */
     844                 :             :     NodeId m_headers_presync_bestpeer GUARDED_BY(m_headers_presync_mutex) {-1};
     845                 :             :     /** The m_headers_presync_stats improved, and needs signalling. */
     846                 :             :     std::atomic_bool m_headers_presync_should_signal{false};
     847                 :             : 
     848                 :             :     /** Height of the highest block announced using BIP 152 high-bandwidth mode. */
     849                 :             :     int m_highest_fast_announce GUARDED_BY(::cs_main){0};
     850                 :             : 
     851                 :             :     /** Have we requested this block from a peer */
     852                 :             :     bool IsBlockRequested(const uint256& hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     853                 :             : 
     854                 :             :     /** Have we requested this block from an outbound peer */
     855                 :             :     bool IsBlockRequestedFromOutbound(const uint256& hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main, !m_peer_mutex);
     856                 :             : 
     857                 :             :     /** Remove this block from our tracked requested blocks. Called if:
     858                 :             :      *  - the block has been received from a peer
     859                 :             :      *  - the request for the block has timed out
     860                 :             :      * If "from_peer" is specified, then only remove the block if it is in
     861                 :             :      * flight from that peer (to avoid one peer's network traffic from
     862                 :             :      * affecting another's state).
     863                 :             :      */
     864                 :             :     void RemoveBlockRequest(const uint256& hash, std::optional<NodeId> from_peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     865                 :             : 
     866                 :             :     /* Mark a block as in flight
     867                 :             :      * Returns false, still setting pit, if the block was already in flight from the same peer
     868                 :             :      * pit will only be valid as long as the same cs_main lock is being held
     869                 :             :      */
     870                 :             :     bool BlockRequested(NodeId nodeid, const CBlockIndex& block, std::list<QueuedBlock>::iterator** pit = nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     871                 :             : 
     872                 :             :     bool TipMayBeStale() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     873                 :             : 
     874                 :             :     /** Update pindexLastCommonBlock and add not-in-flight missing successors to vBlocks, until it has
     875                 :             :      *  at most count entries.
     876                 :             :      */
     877                 :             :     void FindNextBlocksToDownload(const Peer& peer, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, NodeId& nodeStaller) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     878                 :             : 
     879                 :             :     /** Request blocks for the background chainstate, if one is in use. */
     880                 :             :     void TryDownloadingHistoricalBlocks(const Peer& peer, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, const CBlockIndex* from_tip, const CBlockIndex* target_block) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     881                 :             : 
     882                 :             :     /**
     883                 :             :     * \brief Find next blocks to download from a peer after a starting block.
     884                 :             :     *
     885                 :             :     * \param vBlocks      Vector of blocks to download which will be appended to.
     886                 :             :     * \param peer         Peer which blocks will be downloaded from.
     887                 :             :     * \param state        Pointer to the state of the peer.
     888                 :             :     * \param pindexWalk   Pointer to the starting block to add to vBlocks.
     889                 :             :     * \param count        Maximum number of blocks to allow in vBlocks. No more
     890                 :             :     *                     blocks will be added if it reaches this size.
     891                 :             :     * \param nWindowEnd   Maximum height of blocks to allow in vBlocks. No
     892                 :             :     *                     blocks will be added above this height.
     893                 :             :     * \param activeChain  Optional pointer to a chain to compare against. If
     894                 :             :     *                     provided, any next blocks which are already contained
     895                 :             :     *                     in this chain will not be appended to vBlocks, but
     896                 :             :     *                     instead will be used to update the
     897                 :             :     *                     state->pindexLastCommonBlock pointer.
     898                 :             :     * \param nodeStaller  Optional pointer to a NodeId variable that will receive
     899                 :             :     *                     the ID of another peer that might be causing this peer
     900                 :             :     *                     to stall. This is set to the ID of the peer which
     901                 :             :     *                     first requested the first in-flight block in the
     902                 :             :     *                     download window. It is only set if vBlocks is empty at
     903                 :             :     *                     the end of this function call and if increasing
     904                 :             :     *                     nWindowEnd by 1 would cause it to be non-empty (which
     905                 :             :     *                     indicates the download might be stalled because every
     906                 :             :     *                     block in the window is in flight and no other peer is
     907                 :             :     *                     trying to download the next block).
     908                 :             :     */
     909                 :             :     void FindNextBlocks(std::vector<const CBlockIndex*>& vBlocks, const Peer& peer, CNodeState *state, const CBlockIndex *pindexWalk, unsigned int count, int nWindowEnd, const CChain* activeChain=nullptr, NodeId* nodeStaller=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     910                 :             : 
     911                 :             :     /* Multimap used to preserve insertion order */
     912                 :             :     typedef std::multimap<uint256, std::pair<NodeId, std::list<QueuedBlock>::iterator>> BlockDownloadMap;
     913                 :             :     BlockDownloadMap mapBlocksInFlight GUARDED_BY(cs_main);
     914                 :             : 
     915                 :             :     /** When our tip was last updated. */
     916                 :             :     std::atomic<std::chrono::seconds> m_last_tip_update{0s};
     917                 :             : 
     918                 :             :     /** Determine whether or not a peer can request a transaction, and return it (or nullptr if not found or not allowed). */
     919                 :             :     CTransactionRef FindTxForGetData(const Peer::TxRelay& tx_relay, const GenTxid& gtxid)
     920                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_most_recent_block_mutex, NetEventsInterface::g_msgproc_mutex);
     921                 :             : 
     922                 :             :     void ProcessGetData(CNode& pfrom, Peer& peer, const std::atomic<bool>& interruptMsgProc)
     923                 :             :         EXCLUSIVE_LOCKS_REQUIRED(!m_most_recent_block_mutex, peer.m_getdata_requests_mutex, NetEventsInterface::g_msgproc_mutex)
     924                 :             :         LOCKS_EXCLUDED(::cs_main);
     925                 :             : 
     926                 :             :     /** Process a new block. Perform any post-processing housekeeping */
     927                 :             :     void ProcessBlock(CNode& node, const std::shared_ptr<const CBlock>& block, bool force_processing, bool min_pow_checked);
     928                 :             : 
     929                 :             :     /** Process compact block txns  */
     930                 :             :     void ProcessCompactBlockTxns(CNode& pfrom, Peer& peer, const BlockTransactions& block_transactions)
     931                 :             :         EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex, !m_most_recent_block_mutex);
     932                 :             : 
     933                 :             :     /**
     934                 :             :      * When a peer sends us a valid block, instruct it to announce blocks to us
     935                 :             :      * using CMPCTBLOCK if possible by adding its nodeid to the end of
     936                 :             :      * lNodesAnnouncingHeaderAndIDs, and keeping that list under a certain size by
     937                 :             :      * removing the first element if necessary.
     938                 :             :      */
     939                 :             :     void MaybeSetPeerAsAnnouncingHeaderAndIDs(NodeId nodeid) EXCLUSIVE_LOCKS_REQUIRED(cs_main, !m_peer_mutex);
     940                 :             : 
     941                 :             :     /** Stack of nodes which we have set to announce using compact blocks */
     942                 :             :     std::list<NodeId> lNodesAnnouncingHeaderAndIDs GUARDED_BY(cs_main);
     943                 :             : 
     944                 :             :     /** Number of peers from which we're downloading blocks. */
     945                 :             :     int m_peers_downloading_from GUARDED_BY(cs_main) = 0;
     946                 :             : 
     947                 :             :     void AddToCompactExtraTransactions(const CTransactionRef& tx) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
     948                 :             : 
     949                 :             :     /** Orphan/conflicted/etc transactions that are kept for compact block reconstruction.
     950                 :             :      *  The last -blockreconstructionextratxn/DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN of
     951                 :             :      *  these are kept in a ring buffer */
     952                 :             :     std::vector<CTransactionRef> vExtraTxnForCompact GUARDED_BY(g_msgproc_mutex);
     953                 :             :     /** Offset into vExtraTxnForCompact to insert the next tx */
     954                 :             :     size_t vExtraTxnForCompactIt GUARDED_BY(g_msgproc_mutex) = 0;
     955                 :             : 
     956                 :             :     /** Check whether the last unknown block a peer advertised is not yet known. */
     957                 :             :     void ProcessBlockAvailability(NodeId nodeid) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     958                 :             :     /** Update tracking information about which blocks a peer is assumed to have. */
     959                 :             :     void UpdateBlockAvailability(NodeId nodeid, const uint256& hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     960                 :             :     bool CanDirectFetch() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     961                 :             : 
     962                 :             :     /**
     963                 :             :      * Estimates the distance, in blocks, between the best-known block and the network chain tip.
     964                 :             :      * Utilizes the best-block time and the chainparams blocks spacing to approximate it.
     965                 :             :      */
     966                 :             :     int64_t ApproximateBestBlockDepth() const;
     967                 :             : 
     968                 :             :     /**
     969                 :             :      * To prevent fingerprinting attacks, only send blocks/headers outside of
     970                 :             :      * the active chain if they are no more than a month older (both in time,
     971                 :             :      * and in best equivalent proof of work) than the best header chain we know
     972                 :             :      * about and we fully-validated them at some point.
     973                 :             :      */
     974                 :             :     bool BlockRequestAllowed(const CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     975                 :             :     bool AlreadyHaveBlock(const uint256& block_hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
     976                 :             :     void ProcessGetBlockData(CNode& pfrom, Peer& peer, const CInv& inv)
     977                 :             :         EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex, !m_most_recent_block_mutex);
     978                 :             : 
     979                 :             :     /**
     980                 :             :      * Validation logic for compact filters request handling.
     981                 :             :      *
     982                 :             :      * May disconnect from the peer in the case of a bad request.
     983                 :             :      *
     984                 :             :      * @param[in]   node            The node that we received the request from
     985                 :             :      * @param[in]   peer            The peer that we received the request from
     986                 :             :      * @param[in]   filter_type     The filter type the request is for. Must be basic filters.
     987                 :             :      * @param[in]   start_height    The start height for the request
     988                 :             :      * @param[in]   stop_hash       The stop_hash for the request
     989                 :             :      * @param[in]   max_height_diff The maximum number of items permitted to request, as specified in BIP 157
     990                 :             :      * @param[out]  stop_index      The CBlockIndex for the stop_hash block, if the request can be serviced.
     991                 :             :      * @param[out]  filter_index    The filter index, if the request can be serviced.
     992                 :             :      * @return                      True if the request can be serviced.
     993                 :             :      */
     994                 :             :     bool PrepareBlockFilterRequest(CNode& node, Peer& peer,
     995                 :             :                                    BlockFilterType filter_type, uint32_t start_height,
     996                 :             :                                    const uint256& stop_hash, uint32_t max_height_diff,
     997                 :             :                                    const CBlockIndex*& stop_index,
     998                 :             :                                    BlockFilterIndex*& filter_index);
     999                 :             : 
    1000                 :             :     /**
    1001                 :             :      * Handle a cfilters request.
    1002                 :             :      *
    1003                 :             :      * May disconnect from the peer in the case of a bad request.
    1004                 :             :      *
    1005                 :             :      * @param[in]   node            The node that we received the request from
    1006                 :             :      * @param[in]   peer            The peer that we received the request from
    1007                 :             :      * @param[in]   vRecv           The raw message received
    1008                 :             :      */
    1009                 :             :     void ProcessGetCFilters(CNode& node, Peer& peer, DataStream& vRecv);
    1010                 :             : 
    1011                 :             :     /**
    1012                 :             :      * Handle a cfheaders request.
    1013                 :             :      *
    1014                 :             :      * May disconnect from the peer in the case of a bad request.
    1015                 :             :      *
    1016                 :             :      * @param[in]   node            The node that we received the request from
    1017                 :             :      * @param[in]   peer            The peer that we received the request from
    1018                 :             :      * @param[in]   vRecv           The raw message received
    1019                 :             :      */
    1020                 :             :     void ProcessGetCFHeaders(CNode& node, Peer& peer, DataStream& vRecv);
    1021                 :             : 
    1022                 :             :     /**
    1023                 :             :      * Handle a getcfcheckpt request.
    1024                 :             :      *
    1025                 :             :      * May disconnect from the peer in the case of a bad request.
    1026                 :             :      *
    1027                 :             :      * @param[in]   node            The node that we received the request from
    1028                 :             :      * @param[in]   peer            The peer that we received the request from
    1029                 :             :      * @param[in]   vRecv           The raw message received
    1030                 :             :      */
    1031                 :             :     void ProcessGetCFCheckPt(CNode& node, Peer& peer, DataStream& vRecv);
    1032                 :             : 
    1033                 :             :     /** Checks if address relay is permitted with peer. If needed, initializes
    1034                 :             :      * the m_addr_known bloom filter and sets m_addr_relay_enabled to true.
    1035                 :             :      *
    1036                 :             :      *  @return   True if address relay is enabled with peer
    1037                 :             :      *            False if address relay is disallowed
    1038                 :             :      */
    1039                 :             :     bool SetupAddressRelay(const CNode& node, Peer& peer) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
    1040                 :             : 
    1041                 :             :     void AddAddressKnown(Peer& peer, const CAddress& addr) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
    1042                 :             :     void PushAddress(Peer& peer, const CAddress& addr) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex);
    1043                 :             : };
    1044                 :             : 
    1045                 :     2523760 : const CNodeState* PeerManagerImpl::State(NodeId pnode) const
    1046                 :             : {
    1047                 :     2523760 :     std::map<NodeId, CNodeState>::const_iterator it = m_node_states.find(pnode);
    1048         [ +  + ]:     2523760 :     if (it == m_node_states.end())
    1049                 :             :         return nullptr;
    1050                 :     2523464 :     return &it->second;
    1051                 :             : }
    1052                 :             : 
    1053                 :     2513416 : CNodeState* PeerManagerImpl::State(NodeId pnode)
    1054                 :             : {
    1055                 :     2513416 :     return const_cast<CNodeState*>(std::as_const(*this).State(pnode));
    1056                 :             : }
    1057                 :             : 
    1058                 :             : /**
    1059                 :             :  * Whether the peer supports the address. For example, a peer that does not
    1060                 :             :  * implement BIP155 cannot receive Tor v3 addresses because it requires
    1061                 :             :  * ADDRv2 (BIP155) encoding.
    1062                 :             :  */
    1063                 :       19475 : static bool IsAddrCompatible(const Peer& peer, const CAddress& addr)
    1064                 :             : {
    1065   [ +  +  +  - ]:       19475 :     return peer.m_wants_addrv2 || addr.IsAddrV1Compatible();
    1066                 :             : }
    1067                 :             : 
    1068                 :        1279 : void PeerManagerImpl::AddAddressKnown(Peer& peer, const CAddress& addr)
    1069                 :             : {
    1070         [ -  + ]:        1279 :     assert(peer.m_addr_known);
    1071         [ +  - ]:        1279 :     peer.m_addr_known->insert(addr.GetKey());
    1072                 :        1279 : }
    1073                 :             : 
    1074                 :       18981 : void PeerManagerImpl::PushAddress(Peer& peer, const CAddress& addr)
    1075                 :             : {
    1076                 :             :     // Known checking here is only to save space from duplicates.
    1077                 :             :     // Before sending, we'll filter it again for known addresses that were
    1078                 :             :     // added after addresses were pushed.
    1079         [ -  + ]:       18981 :     assert(peer.m_addr_known);
    1080   [ +  -  +  -  :       37962 :     if (addr.IsValid() && !peer.m_addr_known->contains(addr.GetKey()) && IsAddrCompatible(peer, addr)) {
          +  +  +  -  +  
                -  +  + ]
    1081         [ -  + ]:       18963 :         if (peer.m_addrs_to_send.size() >= MAX_ADDR_TO_SEND) {
    1082                 :           0 :             peer.m_addrs_to_send[m_rng.randrange(peer.m_addrs_to_send.size())] = addr;
    1083                 :             :         } else {
    1084                 :       18963 :             peer.m_addrs_to_send.push_back(addr);
    1085                 :             :         }
    1086                 :             :     }
    1087                 :       18981 : }
    1088                 :             : 
    1089                 :       39073 : static void AddKnownTx(Peer& peer, const uint256& hash)
    1090                 :             : {
    1091                 :       39073 :     auto tx_relay = peer.GetTxRelay();
    1092         [ +  - ]:       39073 :     if (!tx_relay) return;
    1093                 :             : 
    1094                 :       39073 :     LOCK(tx_relay->m_tx_inventory_mutex);
    1095         [ +  - ]:       39073 :     tx_relay->m_tx_inventory_known_filter.insert(hash);
    1096                 :       39073 : }
    1097                 :             : 
    1098                 :             : /** Whether this peer can serve us blocks. */
    1099                 :      554642 : static bool CanServeBlocks(const Peer& peer)
    1100                 :             : {
    1101                 :      554642 :     return peer.m_their_services & (NODE_NETWORK|NODE_NETWORK_LIMITED);
    1102                 :             : }
    1103                 :             : 
    1104                 :             : /** Whether this peer can only serve limited recent blocks (e.g. because
    1105                 :             :  *  it prunes old blocks) */
    1106                 :      459102 : static bool IsLimitedPeer(const Peer& peer)
    1107                 :             : {
    1108   [ +  +  -  + ]:      459102 :     return (!(peer.m_their_services & NODE_NETWORK) &&
    1109         [ -  + ]:       33664 :              (peer.m_their_services & NODE_NETWORK_LIMITED));
    1110                 :             : }
    1111                 :             : 
    1112                 :             : /** Whether this peer can serve us witness data */
    1113                 :     2366615 : static bool CanServeWitnesses(const Peer& peer)
    1114                 :             : {
    1115                 :     2366615 :     return peer.m_their_services & NODE_WITNESS;
    1116                 :             : }
    1117                 :             : 
    1118                 :        3707 : std::chrono::microseconds PeerManagerImpl::NextInvToInbounds(std::chrono::microseconds now,
    1119                 :             :                                                              std::chrono::seconds average_interval)
    1120                 :             : {
    1121         [ +  + ]:        3707 :     if (m_next_inv_to_inbounds.load() < now) {
    1122                 :             :         // If this function were called from multiple threads simultaneously
    1123                 :             :         // it would possible that both update the next send variable, and return a different result to their caller.
    1124                 :             :         // This is not possible in practice as only the net processing thread invokes this function.
    1125                 :        1926 :         m_next_inv_to_inbounds = now + m_rng.rand_exp_duration(average_interval);
    1126                 :             :     }
    1127                 :        3707 :     return m_next_inv_to_inbounds;
    1128                 :             : }
    1129                 :             : 
    1130                 :      804030 : bool PeerManagerImpl::IsBlockRequested(const uint256& hash)
    1131                 :             : {
    1132                 :      804030 :     return mapBlocksInFlight.count(hash);
    1133                 :             : }
    1134                 :             : 
    1135                 :           6 : bool PeerManagerImpl::IsBlockRequestedFromOutbound(const uint256& hash)
    1136                 :             : {
    1137         [ +  + ]:          21 :     for (auto range = mapBlocksInFlight.equal_range(hash); range.first != range.second; range.first++) {
    1138                 :          15 :         auto [nodeid, block_it] = range.first->second;
    1139                 :          15 :         PeerRef peer{GetPeerRef(nodeid)};
    1140   [ +  -  -  +  :          15 :         if (peer && !peer->m_is_inbound) return true;
                   -  - ]
    1141                 :          15 :     }
    1142                 :             : 
    1143                 :             :     return false;
    1144                 :             : }
    1145                 :             : 
    1146                 :      171636 : void PeerManagerImpl::RemoveBlockRequest(const uint256& hash, std::optional<NodeId> from_peer)
    1147                 :             : {
    1148                 :      171636 :     auto range = mapBlocksInFlight.equal_range(hash);
    1149         [ +  + ]:      171636 :     if (range.first == range.second) {
    1150                 :             :         // Block was not requested from any peer
    1151                 :             :         return;
    1152                 :             :     }
    1153                 :             : 
    1154                 :             :     // We should not have requested too many of this block
    1155                 :       57239 :     Assume(mapBlocksInFlight.count(hash) <= MAX_CMPCTBLOCKS_INFLIGHT_PER_BLOCK);
    1156                 :             : 
    1157         [ +  + ]:      114579 :     while (range.first != range.second) {
    1158         [ +  + ]:       57340 :         auto [node_id, list_it] = range.first->second;
    1159                 :             : 
    1160   [ +  +  +  + ]:       57340 :         if (from_peer && *from_peer != node_id) {
    1161                 :         188 :             range.first++;
    1162                 :         188 :             continue;
    1163                 :             :         }
    1164                 :             : 
    1165                 :       57152 :         CNodeState& state = *Assert(State(node_id));
    1166                 :             : 
    1167         [ +  + ]:       57152 :         if (state.vBlocksInFlight.begin() == list_it) {
    1168                 :             :             // First block on the queue was received, update the start download time for the next one
    1169                 :       56244 :             state.m_downloading_since = std::max(state.m_downloading_since, GetTime<std::chrono::microseconds>());
    1170                 :             :         }
    1171                 :       57152 :         state.vBlocksInFlight.erase(list_it);
    1172                 :             : 
    1173         [ +  + ]:       57152 :         if (state.vBlocksInFlight.empty()) {
    1174                 :             :             // Last validated block on the queue for this peer was received.
    1175                 :       17313 :             m_peers_downloading_from--;
    1176                 :             :         }
    1177                 :       57152 :         state.m_stalling_since = 0us;
    1178                 :             : 
    1179                 :       57152 :         range.first = mapBlocksInFlight.erase(range.first);
    1180                 :             :     }
    1181                 :             : }
    1182                 :             : 
    1183                 :       57523 : bool PeerManagerImpl::BlockRequested(NodeId nodeid, const CBlockIndex& block, std::list<QueuedBlock>::iterator** pit)
    1184                 :             : {
    1185                 :       57523 :     const uint256& hash{block.GetBlockHash()};
    1186                 :             : 
    1187                 :       57523 :     CNodeState *state = State(nodeid);
    1188         [ -  + ]:       57523 :     assert(state != nullptr);
    1189                 :             : 
    1190                 :       57523 :     Assume(mapBlocksInFlight.count(hash) <= MAX_CMPCTBLOCKS_INFLIGHT_PER_BLOCK);
    1191                 :             : 
    1192                 :             :     // Short-circuit most stuff in case it is from the same node
    1193         [ +  + ]:       57618 :     for (auto range = mapBlocksInFlight.equal_range(hash); range.first != range.second; range.first++) {
    1194         [ +  + ]:         336 :         if (range.first->second.first == nodeid) {
    1195         [ +  - ]:         241 :             if (pit) {
    1196                 :         241 :                 *pit = &range.first->second.second;
    1197                 :             :             }
    1198                 :         241 :             return false;
    1199                 :             :         }
    1200                 :             :     }
    1201                 :             : 
    1202                 :             :     // Make sure it's not being fetched already from same peer.
    1203                 :       57282 :     RemoveBlockRequest(hash, nodeid);
    1204                 :             : 
    1205                 :       57282 :     std::list<QueuedBlock>::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(),
    1206                 :       15202 :             {&block, std::unique_ptr<PartiallyDownloadedBlock>(pit ? new PartiallyDownloadedBlock(&m_mempool) : nullptr)});
    1207         [ +  + ]:       57282 :     if (state->vBlocksInFlight.size() == 1) {
    1208                 :             :         // We're starting a block download (batch) from this peer.
    1209                 :       17340 :         state->m_downloading_since = GetTime<std::chrono::microseconds>();
    1210                 :       17340 :         m_peers_downloading_from++;
    1211                 :             :     }
    1212                 :       57282 :     auto itInFlight = mapBlocksInFlight.insert(std::make_pair(hash, std::make_pair(nodeid, it)));
    1213         [ +  + ]:       57282 :     if (pit) {
    1214                 :       15202 :         *pit = &itInFlight->second.second;
    1215                 :             :     }
    1216                 :             :     return true;
    1217   [ +  +  +  - ]:       72484 : }
    1218                 :             : 
    1219                 :       18302 : void PeerManagerImpl::MaybeSetPeerAsAnnouncingHeaderAndIDs(NodeId nodeid)
    1220                 :             : {
    1221                 :       18302 :     AssertLockHeld(cs_main);
    1222                 :             : 
    1223                 :             :     // When in -blocksonly mode, never request high-bandwidth mode from peers. Our
    1224                 :             :     // mempool will not contain the transactions necessary to reconstruct the
    1225                 :             :     // compact block.
    1226         [ +  + ]:       18302 :     if (m_opts.ignore_incoming_txs) return;
    1227                 :             : 
    1228                 :       18301 :     CNodeState* nodestate = State(nodeid);
    1229                 :       18301 :     PeerRef peer{GetPeerRef(nodeid)};
    1230   [ +  +  +  + ]:       18301 :     if (!nodestate || !nodestate->m_provides_cmpctblocks) {
    1231                 :             :         // Don't request compact blocks if the peer has not signalled support
    1232                 :             :         return;
    1233                 :             :     }
    1234                 :             : 
    1235                 :       16437 :     int num_outbound_hb_peers = 0;
    1236         [ +  + ]:       22770 :     for (std::list<NodeId>::iterator it = lNodesAnnouncingHeaderAndIDs.begin(); it != lNodesAnnouncingHeaderAndIDs.end(); it++) {
    1237         [ +  + ]:       22435 :         if (*it == nodeid) {
    1238                 :       16102 :             lNodesAnnouncingHeaderAndIDs.erase(it);
    1239         [ +  - ]:       16102 :             lNodesAnnouncingHeaderAndIDs.push_back(nodeid);
    1240                 :             :             return;
    1241                 :             :         }
    1242         [ +  - ]:        6333 :         PeerRef peer_ref{GetPeerRef(*it)};
    1243   [ +  +  +  + ]:        6333 :         if (peer_ref && !peer_ref->m_is_inbound) ++num_outbound_hb_peers;
    1244                 :        6333 :     }
    1245   [ +  -  +  + ]:         335 :     if (peer && peer->m_is_inbound) {
    1246                 :             :         // If we're adding an inbound HB peer, make sure we're not removing
    1247                 :             :         // our last outbound HB peer in the process.
    1248   [ +  +  +  + ]:         168 :         if (lNodesAnnouncingHeaderAndIDs.size() >= 3 && num_outbound_hb_peers == 1) {
    1249         [ +  - ]:           7 :             PeerRef remove_peer{GetPeerRef(lNodesAnnouncingHeaderAndIDs.front())};
    1250   [ +  -  +  + ]:           7 :             if (remove_peer && !remove_peer->m_is_inbound) {
    1251                 :             :                 // Put the HB outbound peer in the second slot, so that it
    1252                 :             :                 // doesn't get removed.
    1253                 :           4 :                 std::swap(lNodesAnnouncingHeaderAndIDs.front(), *std::next(lNodesAnnouncingHeaderAndIDs.begin()));
    1254                 :             :             }
    1255                 :           7 :         }
    1256                 :             :     }
    1257   [ +  -  +  - ]:         670 :     m_connman.ForNode(nodeid, [this](CNode* pfrom) EXCLUSIVE_LOCKS_REQUIRED(::cs_main) {
    1258                 :         335 :         AssertLockHeld(::cs_main);
    1259         [ +  + ]:         335 :         if (lNodesAnnouncingHeaderAndIDs.size() >= 3) {
    1260                 :             :             // As per BIP152, we only get 3 of our peers to announce
    1261                 :             :             // blocks using compact encodings.
    1262         [ +  - ]:          56 :             m_connman.ForNode(lNodesAnnouncingHeaderAndIDs.front(), [this](CNode* pnodeStop){
    1263         [ +  - ]:          10 :                 MakeAndPushMessage(*pnodeStop, NetMsgType::SENDCMPCT, /*high_bandwidth=*/false, /*version=*/CMPCTBLOCKS_VERSION);
    1264                 :             :                 // save BIP152 bandwidth state: we select peer to be low-bandwidth
    1265                 :          10 :                 pnodeStop->m_bip152_highbandwidth_to = false;
    1266                 :          10 :                 return true;
    1267                 :             :             });
    1268                 :          56 :             lNodesAnnouncingHeaderAndIDs.pop_front();
    1269                 :             :         }
    1270         [ +  - ]:         335 :         MakeAndPushMessage(*pfrom, NetMsgType::SENDCMPCT, /*high_bandwidth=*/true, /*version=*/CMPCTBLOCKS_VERSION);
    1271                 :             :         // save BIP152 bandwidth state: we select peer to be high-bandwidth
    1272                 :         335 :         pfrom->m_bip152_highbandwidth_to = true;
    1273                 :         335 :         lNodesAnnouncingHeaderAndIDs.push_back(pfrom->GetId());
    1274                 :         335 :         return true;
    1275                 :             :     });
    1276                 :       18301 : }
    1277                 :             : 
    1278                 :           3 : bool PeerManagerImpl::TipMayBeStale()
    1279                 :             : {
    1280                 :           3 :     AssertLockHeld(cs_main);
    1281                 :           3 :     const Consensus::Params& consensusParams = m_chainparams.GetConsensus();
    1282         [ +  + ]:           3 :     if (m_last_tip_update.load() == 0s) {
    1283                 :           2 :         m_last_tip_update = GetTime<std::chrono::seconds>();
    1284                 :             :     }
    1285   [ +  +  -  + ]:           3 :     return m_last_tip_update.load() < GetTime<std::chrono::seconds>() - std::chrono::seconds{consensusParams.nPowTargetSpacing * 3} && mapBlocksInFlight.empty();
    1286                 :             : }
    1287                 :             : 
    1288                 :         879 : int64_t PeerManagerImpl::ApproximateBestBlockDepth() const
    1289                 :             : {
    1290                 :         879 :     return (GetTime<std::chrono::seconds>() - m_best_block_time.load()).count() / m_chainparams.GetConsensus().nPowTargetSpacing;
    1291                 :             : }
    1292                 :             : 
    1293                 :       66674 : bool PeerManagerImpl::CanDirectFetch()
    1294                 :             : {
    1295         [ +  - ]:      133348 :     return m_chainman.ActiveChain().Tip()->Time() > NodeClock::now() - m_chainparams.GetConsensus().PowTargetSpacing() * 20;
    1296                 :             : }
    1297                 :             : 
    1298                 :      129237 : static bool PeerHasHeader(CNodeState *state, const CBlockIndex *pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
    1299                 :             : {
    1300   [ +  +  +  + ]:      129237 :     if (state->pindexBestKnownBlock && pindex == state->pindexBestKnownBlock->GetAncestor(pindex->nHeight))
    1301                 :             :         return true;
    1302   [ +  +  +  + ]:       83177 :     if (state->pindexBestHeaderSent && pindex == state->pindexBestHeaderSent->GetAncestor(pindex->nHeight))
    1303                 :       40269 :         return true;
    1304                 :             :     return false;
    1305                 :             : }
    1306                 :             : 
    1307                 :      902930 : void PeerManagerImpl::ProcessBlockAvailability(NodeId nodeid) {
    1308                 :      902930 :     CNodeState *state = State(nodeid);
    1309         [ -  + ]:      902930 :     assert(state != nullptr);
    1310                 :             : 
    1311         [ +  + ]:      902930 :     if (!state->hashLastUnknownBlock.IsNull()) {
    1312                 :        7404 :         const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(state->hashLastUnknownBlock);
    1313   [ +  +  +  - ]:        7729 :         if (pindex && pindex->nChainWork > 0) {
    1314   [ +  +  +  + ]:         325 :             if (state->pindexBestKnownBlock == nullptr || pindex->nChainWork >= state->pindexBestKnownBlock->nChainWork) {
    1315                 :         324 :                 state->pindexBestKnownBlock = pindex;
    1316                 :             :             }
    1317                 :         325 :             state->hashLastUnknownBlock.SetNull();
    1318                 :             :         }
    1319                 :             :     }
    1320                 :      902930 : }
    1321                 :             : 
    1322                 :       31498 : void PeerManagerImpl::UpdateBlockAvailability(NodeId nodeid, const uint256 &hash) {
    1323                 :       31498 :     CNodeState *state = State(nodeid);
    1324         [ -  + ]:       31498 :     assert(state != nullptr);
    1325                 :             : 
    1326                 :       31498 :     ProcessBlockAvailability(nodeid);
    1327                 :             : 
    1328                 :       31498 :     const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(hash);
    1329   [ +  +  +  - ]:       62292 :     if (pindex && pindex->nChainWork > 0) {
    1330                 :             :         // An actually better block was announced.
    1331   [ +  +  +  + ]:       30794 :         if (state->pindexBestKnownBlock == nullptr || pindex->nChainWork >= state->pindexBestKnownBlock->nChainWork) {
    1332                 :       29989 :             state->pindexBestKnownBlock = pindex;
    1333                 :             :         }
    1334                 :             :     } else {
    1335                 :             :         // An unknown block was announced; just assume that the latest one is the best one.
    1336                 :         704 :         state->hashLastUnknownBlock = hash;
    1337                 :             :     }
    1338                 :       31498 : }
    1339                 :             : 
    1340                 :             : // Logic for calculating which blocks to download from a given peer, given our current tip.
    1341                 :      391016 : void PeerManagerImpl::FindNextBlocksToDownload(const Peer& peer, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, NodeId& nodeStaller)
    1342                 :             : {
    1343         [ +  - ]:      391016 :     if (count == 0)
    1344                 :             :         return;
    1345                 :             : 
    1346                 :      391016 :     vBlocks.reserve(vBlocks.size() + count);
    1347                 :      391016 :     CNodeState *state = State(peer.m_id);
    1348         [ -  + ]:      391016 :     assert(state != nullptr);
    1349                 :             : 
    1350                 :             :     // Make sure pindexBestKnownBlock is up to date, we'll need it.
    1351                 :      391016 :     ProcessBlockAvailability(peer.m_id);
    1352                 :             : 
    1353   [ +  +  +  -  :      661969 :     if (state->pindexBestKnownBlock == nullptr || state->pindexBestKnownBlock->nChainWork < m_chainman.ActiveChain().Tip()->nChainWork || state->pindexBestKnownBlock->nChainWork < m_chainman.MinimumChainWork()) {
             +  +  +  + ]
    1354                 :             :         // This peer has nothing interesting.
    1355                 :      228859 :         return;
    1356                 :             :     }
    1357                 :             : 
    1358                 :             :     // When we sync with AssumeUtxo and discover the snapshot is not in the peer's best chain, abort:
    1359                 :             :     // We can't reorg to this chain due to missing undo data until the background sync has finished,
    1360                 :             :     // so downloading blocks from it would be futile.
    1361                 :      162157 :     const CBlockIndex* snap_base{m_chainman.GetSnapshotBaseBlock()};
    1362   [ +  +  +  - ]:      162157 :     if (snap_base && state->pindexBestKnownBlock->GetAncestor(snap_base->nHeight) != snap_base) {
    1363         [ #  # ]:           0 :         LogDebug(BCLog::NET, "Not downloading blocks from peer=%d, which doesn't have the snapshot block in its best chain.\n", peer.m_id);
    1364                 :           0 :         return;
    1365                 :             :     }
    1366                 :             : 
    1367                 :             :     // Bootstrap quickly by guessing a parent of our best tip is the forking point.
    1368                 :             :     // Guessing wrong in either direction is not a problem.
    1369                 :             :     // Also reset pindexLastCommonBlock after a snapshot was loaded, so that blocks after the snapshot will be prioritised for download.
    1370   [ +  +  +  + ]:      162157 :     if (state->pindexLastCommonBlock == nullptr ||
    1371         [ -  + ]:        2425 :         (snap_base && state->pindexLastCommonBlock->nHeight < snap_base->nHeight)) {
    1372   [ +  +  +  - ]:        1971 :         state->pindexLastCommonBlock = m_chainman.ActiveChain()[std::min(state->pindexBestKnownBlock->nHeight, m_chainman.ActiveChain().Height())];
    1373                 :             :     }
    1374                 :             : 
    1375                 :             :     // If the peer reorganized, our previous pindexLastCommonBlock may not be an ancestor
    1376                 :             :     // of its current tip anymore. Go back enough to fix that.
    1377                 :      162157 :     state->pindexLastCommonBlock = LastCommonAncestor(state->pindexLastCommonBlock, state->pindexBestKnownBlock);
    1378         [ +  + ]:      162157 :     if (state->pindexLastCommonBlock == state->pindexBestKnownBlock)
    1379                 :             :         return;
    1380                 :             : 
    1381                 :       65616 :     const CBlockIndex *pindexWalk = state->pindexLastCommonBlock;
    1382                 :             :     // Never fetch further than the best block we know the peer has, or more than BLOCK_DOWNLOAD_WINDOW + 1 beyond the last
    1383                 :             :     // linked block we have in common with this peer. The +1 is so we can detect stalling, namely if we would be able to
    1384                 :             :     // download that next block if the window were 1 larger.
    1385                 :       65616 :     int nWindowEnd = state->pindexLastCommonBlock->nHeight + BLOCK_DOWNLOAD_WINDOW;
    1386                 :             : 
    1387                 :       65616 :     FindNextBlocks(vBlocks, peer, state, pindexWalk, count, nWindowEnd, &m_chainman.ActiveChain(), &nodeStaller);
    1388                 :             : }
    1389                 :             : 
    1390                 :        1489 : void PeerManagerImpl::TryDownloadingHistoricalBlocks(const Peer& peer, unsigned int count, std::vector<const CBlockIndex*>& vBlocks, const CBlockIndex *from_tip, const CBlockIndex* target_block)
    1391                 :             : {
    1392                 :        1489 :     Assert(from_tip);
    1393                 :        1489 :     Assert(target_block);
    1394                 :             : 
    1395         [ +  + ]:        1489 :     if (vBlocks.size() >= count) {
    1396                 :             :         return;
    1397                 :             :     }
    1398                 :             : 
    1399                 :         978 :     vBlocks.reserve(count);
    1400                 :         978 :     CNodeState *state = Assert(State(peer.m_id));
    1401                 :             : 
    1402   [ +  +  -  + ]:         978 :     if (state->pindexBestKnownBlock == nullptr || state->pindexBestKnownBlock->GetAncestor(target_block->nHeight) != target_block) {
    1403                 :             :         // This peer can't provide us the complete series of blocks leading up to the
    1404                 :             :         // assumeutxo snapshot base.
    1405                 :             :         //
    1406                 :             :         // Presumably this peer's chain has less work than our ActiveChain()'s tip, or else we
    1407                 :             :         // will eventually crash when we try to reorg to it. Let other logic
    1408                 :             :         // deal with whether we disconnect this peer.
    1409                 :             :         //
    1410                 :             :         // TODO at some point in the future, we might choose to request what blocks
    1411                 :             :         // this peer does have from the historical chain, despite it not having a
    1412                 :             :         // complete history beneath the snapshot base.
    1413                 :          90 :         return;
    1414                 :             :     }
    1415                 :             : 
    1416         [ -  + ]:         888 :     FindNextBlocks(vBlocks, peer, state, from_tip, count, std::min<int>(from_tip->nHeight + BLOCK_DOWNLOAD_WINDOW, target_block->nHeight));
    1417                 :             : }
    1418                 :             : 
    1419                 :       66504 : void PeerManagerImpl::FindNextBlocks(std::vector<const CBlockIndex*>& vBlocks, const Peer& peer, CNodeState *state, const CBlockIndex *pindexWalk, unsigned int count, int nWindowEnd, const CChain* activeChain, NodeId* nodeStaller)
    1420                 :             : {
    1421                 :       66504 :     std::vector<const CBlockIndex*> vToFetch;
    1422         [ +  + ]:       66504 :     int nMaxHeight = std::min<int>(state->pindexBestKnownBlock->nHeight, nWindowEnd + 1);
    1423                 :       66504 :     bool is_limited_peer = IsLimitedPeer(peer);
    1424                 :       66504 :     NodeId waitingfor = -1;
    1425         [ +  + ]:      174355 :     while (pindexWalk->nHeight < nMaxHeight) {
    1426                 :             :         // Read up to 128 (or more, if more blocks than that are needed) successors of pindexWalk (towards
    1427                 :             :         // pindexBestKnownBlock) into vToFetch. We fetch 128, because CBlockIndex::GetAncestor may be as expensive
    1428                 :             :         // as iterating over ~100 CBlockIndex* entries anyway.
    1429   [ +  -  +  + ]:      155352 :         int nToFetch = std::min(nMaxHeight - pindexWalk->nHeight, std::max<int>(count - vBlocks.size(), 128));
    1430         [ +  - ]:       77676 :         vToFetch.resize(nToFetch);
    1431         [ +  - ]:       77676 :         pindexWalk = state->pindexBestKnownBlock->GetAncestor(pindexWalk->nHeight + nToFetch);
    1432                 :       77676 :         vToFetch[nToFetch - 1] = pindexWalk;
    1433         [ +  + ]:     5768808 :         for (unsigned int i = nToFetch - 1; i > 0; i--) {
    1434                 :     5691132 :             vToFetch[i - 1] = vToFetch[i]->pprev;
    1435                 :             :         }
    1436                 :             : 
    1437                 :             :         // Iterate over those blocks in vToFetch (in forward direction), adding the ones that
    1438                 :             :         // are not yet downloaded and not in flight to vBlocks. In the meantime, update
    1439                 :             :         // pindexLastCommonBlock as long as all ancestors are already downloaded, or if it's
    1440                 :             :         // already part of our chain (and therefore don't need it even if pruned).
    1441         [ +  + ]:     2321665 :         for (const CBlockIndex* pindex : vToFetch) {
    1442   [ +  +  +  - ]:     2316302 :             if (!pindex->IsValid(BLOCK_VALID_TREE)) {
    1443                 :             :                 // We consider the chain that this peer is on invalid.
    1444                 :             :                 return;
    1445                 :             :             }
    1446                 :             : 
    1447   [ +  +  -  + ]:     2279973 :             if (!CanServeWitnesses(peer) && DeploymentActiveAt(*pindex, m_chainman, Consensus::DEPLOYMENT_SEGWIT)) {
    1448                 :             :                 // We wouldn't download this block or its descendants from this peer.
    1449                 :             :                 return;
    1450                 :             :             }
    1451                 :             : 
    1452   [ +  +  +  +  :     2279813 :             if (pindex->nStatus & BLOCK_HAVE_DATA || (activeChain && activeChain->Contains(pindex))) {
                   -  + ]
    1453   [ +  +  +  + ]:     1578730 :                 if (activeChain && pindex->HaveNumChainTxs()) {
    1454                 :       67323 :                     state->pindexLastCommonBlock = pindex;
    1455                 :             :                 }
    1456                 :     1578730 :                 continue;
    1457                 :             :             }
    1458                 :             : 
    1459                 :             :             // Is block in-flight?
    1460         [ +  + ]:      701083 :             if (IsBlockRequested(pindex->GetBlockHash())) {
    1461         [ +  + ]:      654058 :                 if (waitingfor == -1) {
    1462                 :             :                     // This is the first already-in-flight block.
    1463                 :       46068 :                     waitingfor = mapBlocksInFlight.lower_bound(pindex->GetBlockHash())->second.first;
    1464                 :             :                 }
    1465                 :      654058 :                 continue;
    1466                 :             :             }
    1467                 :             : 
    1468                 :             :             // The block is not already downloaded, and not yet in flight.
    1469         [ +  + ]:       47025 :             if (pindex->nHeight > nWindowEnd) {
    1470                 :             :                 // We reached the end of the window.
    1471   [ +  +  +  + ]:         204 :                 if (vBlocks.size() == 0 && waitingfor != peer.m_id) {
    1472                 :             :                     // We aren't able to fetch anything, but we would be if the download window was one larger.
    1473         [ +  - ]:         136 :                     if (nodeStaller) *nodeStaller = waitingfor;
    1474                 :             :                 }
    1475                 :         204 :                 return;
    1476                 :             :             }
    1477                 :             : 
    1478                 :             :             // Don't request blocks that go further than what limited peers can provide
    1479   [ +  +  +  + ]:       46821 :             if (is_limited_peer && (state->pindexBestKnownBlock->nHeight - pindex->nHeight >= static_cast<int>(NODE_NETWORK_LIMITED_MIN_BLOCKS) - 2 /* two blocks buffer for possible races */)) {
    1480                 :        8526 :                 continue;
    1481                 :             :             }
    1482                 :             : 
    1483         [ +  - ]:       38295 :             vBlocks.push_back(pindex);
    1484         [ +  + ]:       38295 :             if (vBlocks.size() == count) {
    1485                 :             :                 return;
    1486                 :             :             }
    1487                 :             :         }
    1488                 :             :     }
    1489                 :       66504 : }
    1490                 :             : 
    1491                 :             : } // namespace
    1492                 :             : 
    1493                 :        1503 : void PeerManagerImpl::PushNodeVersion(CNode& pnode, const Peer& peer)
    1494                 :             : {
    1495                 :        1503 :     uint64_t my_services{peer.m_our_services};
    1496                 :        1503 :     const int64_t nTime{count_seconds(GetTime<std::chrono::seconds>())};
    1497                 :        1503 :     uint64_t nonce = pnode.GetLocalNonce();
    1498                 :        1503 :     const int nNodeStartingHeight{m_best_height};
    1499                 :        1503 :     NodeId nodeid = pnode.GetId();
    1500                 :        1503 :     CAddress addr = pnode.addr;
    1501                 :             : 
    1502   [ +  -  +  +  :        1507 :     CService addr_you = addr.IsRoutable() && !IsProxy(addr) && addr.IsAddrV1Compatible() ? addr : CService();
          +  -  +  -  +  
             -  +  +  +  
                      - ]
    1503                 :        1503 :     uint64_t your_services{addr.nServices};
    1504                 :             : 
    1505                 :        1503 :     const bool tx_relay{!RejectIncomingTxs(pnode)};
    1506   [ +  -  +  - ]:        3006 :     MakeAndPushMessage(pnode, NetMsgType::VERSION, PROTOCOL_VERSION, my_services, nTime,
    1507                 :        1503 :             your_services, CNetAddr::V1(addr_you), // Together the pre-version-31402 serialization of CAddress "addrYou" (without nTime)
    1508   [ +  -  +  - ]:        1503 :             my_services, CNetAddr::V1(CService{}), // Together the pre-version-31402 serialization of CAddress "addrMe" (without nTime)
    1509                 :             :             nonce, strSubVersion, nNodeStartingHeight, tx_relay);
    1510                 :             : 
    1511         [ +  + ]:        1503 :     if (fLogIPs) {
    1512   [ +  -  +  -  :           4 :         LogDebug(BCLog::NET, "send version message: version %d, blocks=%d, them=%s, txrelay=%d, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, addr_you.ToStringAddrPort(), tx_relay, nodeid);
             +  -  +  - ]
    1513                 :             :     } else {
    1514   [ +  -  +  -  :        1503 :         LogDebug(BCLog::NET, "send version message: version %d, blocks=%d, txrelay=%d, peer=%d\n", PROTOCOL_VERSION, nNodeStartingHeight, tx_relay, nodeid);
                   +  - ]
    1515                 :             :     }
    1516                 :        1503 : }
    1517                 :             : 
    1518                 :           1 : void PeerManagerImpl::UpdateLastBlockAnnounceTime(NodeId node, int64_t time_in_seconds)
    1519                 :             : {
    1520                 :           1 :     LOCK(cs_main);
    1521                 :           1 :     CNodeState *state = State(node);
    1522         [ +  - ]:           1 :     if (state) state->m_last_block_announcement = time_in_seconds;
    1523                 :           1 : }
    1524                 :             : 
    1525                 :        1561 : void PeerManagerImpl::InitializeNode(const CNode& node, ServiceFlags our_services)
    1526                 :             : {
    1527                 :        1561 :     NodeId nodeid = node.GetId();
    1528                 :        1561 :     {
    1529                 :        1561 :         LOCK(cs_main); // For m_node_states
    1530         [ +  - ]:        1561 :         m_node_states.try_emplace(m_node_states.end(), nodeid);
    1531                 :           0 :     }
    1532         [ +  - ]:        4683 :     WITH_LOCK(m_tx_download_mutex, m_txdownloadman.CheckIsEmpty(nodeid));
    1533                 :             : 
    1534         [ +  + ]:        1561 :     if (NetPermissions::HasFlag(node.m_permission_flags, NetPermissionFlags::BloomFilter)) {
    1535                 :           4 :         our_services = static_cast<ServiceFlags>(our_services | NODE_BLOOM);
    1536                 :             :     }
    1537                 :             : 
    1538                 :        1561 :     PeerRef peer = std::make_shared<Peer>(nodeid, our_services, node.IsInboundConn());
    1539                 :        1561 :     {
    1540         [ +  - ]:        1561 :         LOCK(m_peer_mutex);
    1541   [ +  -  +  - ]:        1561 :         m_peer_map.emplace_hint(m_peer_map.end(), nodeid, peer);
    1542         [ +  - ]:        1561 :     }
    1543                 :        1561 : }
    1544                 :             : 
    1545                 :          15 : void PeerManagerImpl::ReattemptInitialBroadcast(CScheduler& scheduler)
    1546                 :             : {
    1547                 :          15 :     std::set<uint256> unbroadcast_txids = m_mempool.GetUnbroadcastTxs();
    1548                 :             : 
    1549         [ +  + ]:          20 :     for (const auto& txid : unbroadcast_txids) {
    1550         [ +  - ]:           5 :         CTransactionRef tx = m_mempool.get(txid);
    1551                 :             : 
    1552         [ +  - ]:           5 :         if (tx != nullptr) {
    1553         [ +  - ]:           5 :             RelayTransaction(txid, tx->GetWitnessHash());
    1554                 :             :         } else {
    1555         [ #  # ]:           0 :             m_mempool.RemoveUnbroadcastTx(txid, true);
    1556                 :             :         }
    1557                 :           5 :     }
    1558                 :             : 
    1559                 :             :     // Schedule next run for 10-15 minutes in the future.
    1560                 :             :     // We add randomness on every cycle to avoid the possibility of P2P fingerprinting.
    1561                 :          15 :     const auto delta = 10min + FastRandomContext().randrange<std::chrono::milliseconds>(5min);
    1562         [ +  - ]:          34 :     scheduler.scheduleFromNow([&] { ReattemptInitialBroadcast(scheduler); }, delta);
    1563                 :          15 : }
    1564                 :             : 
    1565                 :        1560 : void PeerManagerImpl::FinalizeNode(const CNode& node)
    1566                 :             : {
    1567                 :        1560 :     NodeId nodeid = node.GetId();
    1568                 :        1560 :     {
    1569                 :        1560 :     LOCK(cs_main);
    1570                 :        1560 :     {
    1571                 :             :         // We remove the PeerRef from g_peer_map here, but we don't always
    1572                 :             :         // destruct the Peer. Sometimes another thread is still holding a
    1573                 :             :         // PeerRef, so the refcount is >= 1. Be careful not to do any
    1574                 :             :         // processing here that assumes Peer won't be changed before it's
    1575                 :             :         // destructed.
    1576         [ +  - ]:        1560 :         PeerRef peer = RemovePeer(nodeid);
    1577         [ -  + ]:        1560 :         assert(peer != nullptr);
    1578         [ -  + ]:        1560 :         m_wtxid_relay_peers -= peer->m_wtxid_relay;
    1579         [ -  + ]:        1560 :         assert(m_wtxid_relay_peers >= 0);
    1580                 :        1560 :     }
    1581                 :        1560 :     CNodeState *state = State(nodeid);
    1582         [ -  + ]:        1560 :     assert(state != nullptr);
    1583                 :             : 
    1584         [ +  + ]:        1560 :     if (state->fSyncStarted)
    1585                 :        1425 :         nSyncStarted--;
    1586                 :             : 
    1587         [ +  + ]:        1690 :     for (const QueuedBlock& entry : state->vBlocksInFlight) {
    1588                 :         130 :         auto range = mapBlocksInFlight.equal_range(entry.pindex->GetBlockHash());
    1589         [ +  + ]:         260 :         while (range.first != range.second) {
    1590         [ -  + ]:         130 :             auto [node_id, list_it] = range.first->second;
    1591         [ -  + ]:         130 :             if (node_id != nodeid) {
    1592                 :           0 :                 range.first++;
    1593                 :             :             } else {
    1594                 :         130 :                 range.first = mapBlocksInFlight.erase(range.first);
    1595                 :             :             }
    1596                 :             :         }
    1597                 :             :     }
    1598                 :        1560 :     {
    1599         [ +  - ]:        1560 :         LOCK(m_tx_download_mutex);
    1600         [ +  - ]:        1560 :         m_txdownloadman.DisconnectedPeer(nodeid);
    1601                 :           0 :     }
    1602   [ +  +  +  - ]:        1560 :     if (m_txreconciliation) m_txreconciliation->ForgetPeer(nodeid);
    1603                 :        1560 :     m_num_preferred_download_peers -= state->fPreferredDownload;
    1604         [ -  + ]:        1560 :     m_peers_downloading_from -= (!state->vBlocksInFlight.empty());
    1605         [ -  + ]:        1560 :     assert(m_peers_downloading_from >= 0);
    1606                 :        1560 :     m_outbound_peers_with_protect_from_disconnect -= state->m_chain_sync.m_protect;
    1607         [ -  + ]:        1560 :     assert(m_outbound_peers_with_protect_from_disconnect >= 0);
    1608                 :             : 
    1609                 :        1560 :     m_node_states.erase(nodeid);
    1610                 :             : 
    1611         [ +  + ]:        1560 :     if (m_node_states.empty()) {
    1612                 :             :         // Do a consistency check after the last peer is removed.
    1613         [ -  + ]:         881 :         assert(mapBlocksInFlight.empty());
    1614         [ -  + ]:         881 :         assert(m_num_preferred_download_peers == 0);
    1615         [ -  + ]:         881 :         assert(m_peers_downloading_from == 0);
    1616         [ -  + ]:         881 :         assert(m_outbound_peers_with_protect_from_disconnect == 0);
    1617         [ -  + ]:         881 :         assert(m_wtxid_relay_peers == 0);
    1618   [ +  -  +  - ]:        2643 :         WITH_LOCK(m_tx_download_mutex, m_txdownloadman.CheckIsEmpty());
    1619                 :             :     }
    1620                 :        1560 :     } // cs_main
    1621                 :        3039 :     if (node.fSuccessfullyConnected &&
    1622   [ +  +  +  +  :        1560 :         !node.IsBlockOnlyConn() && !node.IsInboundConn()) {
                   +  + ]
    1623                 :             :         // Only change visible addrman state for full outbound peers.  We don't
    1624                 :             :         // call Connected() for feeler connections since they don't have
    1625                 :             :         // fSuccessfullyConnected set.
    1626                 :         523 :         m_addrman.Connected(node.addr);
    1627                 :             :     }
    1628                 :        1560 :     {
    1629                 :        1560 :         LOCK(m_headers_presync_mutex);
    1630         [ +  - ]:        1560 :         m_headers_presync_stats.erase(nodeid);
    1631                 :        1560 :     }
    1632         [ +  - ]:        1560 :     LogDebug(BCLog::NET, "Cleared nodestate for peer=%d\n", nodeid);
    1633                 :        1560 : }
    1634                 :             : 
    1635                 :        1609 : bool PeerManagerImpl::HasAllDesirableServiceFlags(ServiceFlags services) const
    1636                 :             : {
    1637                 :             :     // Shortcut for (services & GetDesirableServiceFlags(services)) == GetDesirableServiceFlags(services)
    1638                 :        1609 :     return !(GetDesirableServiceFlags(services) & (~services));
    1639                 :             : }
    1640                 :             : 
    1641                 :        1640 : ServiceFlags PeerManagerImpl::GetDesirableServiceFlags(ServiceFlags services) const
    1642                 :             : {
    1643         [ +  + ]:        1640 :     if (services & NODE_NETWORK_LIMITED) {
    1644                 :             :         // Limited peers are desirable when we are close to the tip.
    1645         [ +  + ]:         879 :         if (ApproximateBestBlockDepth() < NODE_NETWORK_LIMITED_ALLOW_CONN_BLOCKS) {
    1646                 :         591 :             return ServiceFlags(NODE_NETWORK_LIMITED | NODE_WITNESS);
    1647                 :             :         }
    1648                 :             :     }
    1649                 :             :     return ServiceFlags(NODE_NETWORK | NODE_WITNESS);
    1650                 :             : }
    1651                 :             : 
    1652                 :     1004085 : PeerRef PeerManagerImpl::GetPeerRef(NodeId id) const
    1653                 :             : {
    1654                 :     1004085 :     LOCK(m_peer_mutex);
    1655                 :     1004085 :     auto it = m_peer_map.find(id);
    1656   [ +  +  +  -  :     2004806 :     return it != m_peer_map.end() ? it->second : nullptr;
                   +  - ]
    1657                 :     1004085 : }
    1658                 :             : 
    1659                 :        1560 : PeerRef PeerManagerImpl::RemovePeer(NodeId id)
    1660                 :             : {
    1661                 :        1560 :     PeerRef ret;
    1662         [ +  - ]:        1560 :     LOCK(m_peer_mutex);
    1663                 :        1560 :     auto it = m_peer_map.find(id);
    1664         [ +  - ]:        1560 :     if (it != m_peer_map.end()) {
    1665                 :        1560 :         ret = std::move(it->second);
    1666                 :        1560 :         m_peer_map.erase(it);
    1667                 :             :     }
    1668         [ +  - ]:        1560 :     return ret;
    1669                 :        1560 : }
    1670                 :             : 
    1671                 :       10344 : bool PeerManagerImpl::GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats) const
    1672                 :             : {
    1673                 :       10344 :     {
    1674                 :       10344 :         LOCK(cs_main);
    1675                 :       10344 :         const CNodeState* state = State(nodeid);
    1676         [ +  + ]:       10344 :         if (state == nullptr)
    1677         [ +  - ]:           7 :             return false;
    1678         [ +  + ]:       10337 :         stats.nSyncHeight = state->pindexBestKnownBlock ? state->pindexBestKnownBlock->nHeight : -1;
    1679         [ +  + ]:       10337 :         stats.nCommonHeight = state->pindexLastCommonBlock ? state->pindexLastCommonBlock->nHeight : -1;
    1680         [ +  + ]:       14771 :         for (const QueuedBlock& queue : state->vBlocksInFlight) {
    1681         [ +  - ]:        4434 :             if (queue.pindex)
    1682         [ +  - ]:        4434 :                 stats.vHeightInFlight.push_back(queue.pindex->nHeight);
    1683                 :             :         }
    1684                 :           7 :     }
    1685                 :             : 
    1686                 :       10337 :     PeerRef peer = GetPeerRef(nodeid);
    1687         [ +  - ]:       10337 :     if (peer == nullptr) return false;
    1688         [ +  + ]:       10337 :     stats.their_services = peer->m_their_services;
    1689         [ +  + ]:       10337 :     stats.m_starting_height = peer->m_starting_height;
    1690                 :             :     // It is common for nodes with good ping times to suddenly become lagged,
    1691                 :             :     // due to a new block arriving or other large transfer.
    1692                 :             :     // Merely reporting pingtime might fool the caller into thinking the node was still responsive,
    1693                 :             :     // since pingtime does not update until the ping is complete, which might take a while.
    1694                 :             :     // So, if a ping is taking an unusually long time in flight,
    1695                 :             :     // the caller can immediately detect that this is happening.
    1696                 :       10337 :     auto ping_wait{0us};
    1697   [ +  +  +  - ]:       10337 :     if ((0 != peer->m_ping_nonce_sent) && (0 != peer->m_ping_start.load().count())) {
    1698                 :          20 :         ping_wait = GetTime<std::chrono::microseconds>() - peer->m_ping_start.load();
    1699                 :             :     }
    1700                 :             : 
    1701   [ +  -  +  + ]:       10337 :     if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    1702   [ +  -  +  - ]:       19102 :         stats.m_relay_txs = WITH_LOCK(tx_relay->m_bloom_filter_mutex, return tx_relay->m_relay_txs);
    1703                 :        9551 :         stats.m_fee_filter_received = tx_relay->m_fee_filter_received.load();
    1704                 :             :     } else {
    1705                 :         786 :         stats.m_relay_txs = false;
    1706                 :         786 :         stats.m_fee_filter_received = 0;
    1707                 :             :     }
    1708                 :             : 
    1709                 :       10337 :     stats.m_ping_wait = ping_wait;
    1710         [ +  - ]:       10337 :     stats.m_addr_processed = peer->m_addr_processed.load();
    1711                 :       10337 :     stats.m_addr_rate_limited = peer->m_addr_rate_limited.load();
    1712         [ +  - ]:       10337 :     stats.m_addr_relay_enabled = peer->m_addr_relay_enabled.load();
    1713                 :       10337 :     {
    1714         [ +  - ]:       10337 :         LOCK(peer->m_headers_sync_mutex);
    1715         [ +  + ]:       10337 :         if (peer->m_headers_sync) {
    1716                 :           7 :             stats.presync_height = peer->m_headers_sync->GetPresyncHeight();
    1717                 :             :         }
    1718                 :       10337 :     }
    1719                 :       10337 :     stats.time_offset = peer->m_time_offset;
    1720                 :             : 
    1721                 :       10337 :     return true;
    1722                 :       10337 : }
    1723                 :             : 
    1724                 :         161 : std::vector<TxOrphanage::OrphanTxBase> PeerManagerImpl::GetOrphanTransactions()
    1725                 :             : {
    1726                 :         161 :     LOCK(m_tx_download_mutex);
    1727         [ +  - ]:         161 :     return m_txdownloadman.GetOrphanTransactions();
    1728                 :         161 : }
    1729                 :             : 
    1730                 :         961 : PeerManagerInfo PeerManagerImpl::GetInfo() const
    1731                 :             : {
    1732                 :         961 :     return PeerManagerInfo{
    1733                 :         961 :         .median_outbound_time_offset = m_outbound_time_offsets.Median(),
    1734                 :         961 :         .ignores_incoming_txs = m_opts.ignore_incoming_txs,
    1735                 :         961 :     };
    1736                 :             : }
    1737                 :             : 
    1738                 :        1057 : void PeerManagerImpl::AddToCompactExtraTransactions(const CTransactionRef& tx)
    1739                 :             : {
    1740         [ +  - ]:        1057 :     if (m_opts.max_extra_txs <= 0)
    1741                 :             :         return;
    1742         [ +  + ]:        1057 :     if (!vExtraTxnForCompact.size())
    1743                 :          34 :         vExtraTxnForCompact.resize(m_opts.max_extra_txs);
    1744                 :        1057 :     vExtraTxnForCompact[vExtraTxnForCompactIt] = tx;
    1745                 :        1057 :     vExtraTxnForCompactIt = (vExtraTxnForCompactIt + 1) % m_opts.max_extra_txs;
    1746                 :             : }
    1747                 :             : 
    1748                 :        1381 : void PeerManagerImpl::Misbehaving(Peer& peer, const std::string& message)
    1749                 :             : {
    1750                 :        1381 :     LOCK(peer.m_misbehavior_mutex);
    1751                 :             : 
    1752   [ +  +  +  -  :        1381 :     const std::string message_prefixed = message.empty() ? "" : (": " + message);
                   +  - ]
    1753                 :        1381 :     peer.m_should_discourage = true;
    1754   [ +  -  +  -  :        1381 :     LogDebug(BCLog::NET, "Misbehaving: peer=%d%s\n", peer.m_id, message_prefixed);
                   +  - ]
    1755         [ +  - ]:        2762 : }
    1756                 :             : 
    1757                 :        1024 : void PeerManagerImpl::MaybePunishNodeForBlock(NodeId nodeid, const BlockValidationState& state,
    1758                 :             :                                               bool via_compact_block, const std::string& message)
    1759                 :             : {
    1760                 :        1024 :     PeerRef peer{GetPeerRef(nodeid)};
    1761   [ +  +  +  +  :        1024 :     switch (state.GetResult()) {
                      + ]
    1762                 :             :     case BlockValidationResult::BLOCK_RESULT_UNSET:
    1763                 :             :         break;
    1764                 :             :     case BlockValidationResult::BLOCK_HEADER_LOW_WORK:
    1765                 :             :         // We didn't try to process the block because the header chain may have
    1766                 :             :         // too little work.
    1767                 :             :         break;
    1768                 :             :     // The node is providing invalid data:
    1769                 :         924 :     case BlockValidationResult::BLOCK_CONSENSUS:
    1770                 :         924 :     case BlockValidationResult::BLOCK_MUTATED:
    1771         [ +  + ]:         924 :         if (!via_compact_block) {
    1772   [ +  -  +  - ]:         908 :             if (peer) Misbehaving(*peer, message);
    1773                 :         908 :             return;
    1774                 :             :         }
    1775                 :             :         break;
    1776                 :          84 :     case BlockValidationResult::BLOCK_CACHED_INVALID:
    1777                 :          84 :         {
    1778                 :             :             // Discourage outbound (but not inbound) peers if on an invalid chain.
    1779                 :             :             // Exempt HB compact block peers. Manual connections are always protected from discouragement.
    1780   [ +  -  +  -  :          84 :             if (peer && !via_compact_block && !peer->m_is_inbound) {
                   +  + ]
    1781         [ +  - ]:          52 :                 if (peer) Misbehaving(*peer, message);
    1782                 :             :                 return;
    1783                 :             :             }
    1784                 :             :             break;
    1785                 :             :         }
    1786                 :          10 :     case BlockValidationResult::BLOCK_INVALID_HEADER:
    1787                 :          10 :     case BlockValidationResult::BLOCK_CHECKPOINT:
    1788                 :          10 :     case BlockValidationResult::BLOCK_INVALID_PREV:
    1789   [ +  -  +  - ]:          10 :         if (peer) Misbehaving(*peer, message);
    1790                 :             :         return;
    1791                 :             :     // Conflicting (but not necessarily invalid) data or different policy:
    1792                 :           2 :     case BlockValidationResult::BLOCK_MISSING_PREV:
    1793   [ +  -  +  - ]:           2 :         if (peer) Misbehaving(*peer, message);
    1794                 :             :         return;
    1795                 :             :     case BlockValidationResult::BLOCK_TIME_FUTURE:
    1796                 :             :         break;
    1797                 :             :     }
    1798         [ +  + ]:          52 :     if (message != "") {
    1799   [ +  -  +  -  :          32 :         LogDebug(BCLog::NET, "peer=%d: %s\n", nodeid, message);
                   +  - ]
    1800                 :             :     }
    1801                 :        1024 : }
    1802                 :             : 
    1803                 :         573 : void PeerManagerImpl::MaybePunishNodeForTx(NodeId nodeid, const TxValidationState& state)
    1804                 :             : {
    1805                 :         573 :     PeerRef peer{GetPeerRef(nodeid)};
    1806         [ +  + ]:         573 :     switch (state.GetResult()) {
    1807                 :             :     case TxValidationResult::TX_RESULT_UNSET:
    1808                 :             :         break;
    1809                 :             :     // The node is providing invalid data:
    1810                 :          60 :     case TxValidationResult::TX_CONSENSUS:
    1811   [ +  -  +  -  :         120 :         if (peer) Misbehaving(*peer, "");
                   +  - ]
    1812         [ +  - ]:          60 :         return;
    1813                 :             :     // Conflicting (but not necessarily invalid) data or different policy:
    1814                 :             :     case TxValidationResult::TX_INPUTS_NOT_STANDARD:
    1815                 :             :     case TxValidationResult::TX_NOT_STANDARD:
    1816                 :             :     case TxValidationResult::TX_MISSING_INPUTS:
    1817                 :             :     case TxValidationResult::TX_PREMATURE_SPEND:
    1818                 :             :     case TxValidationResult::TX_WITNESS_MUTATED:
    1819                 :             :     case TxValidationResult::TX_WITNESS_STRIPPED:
    1820                 :             :     case TxValidationResult::TX_CONFLICT:
    1821                 :             :     case TxValidationResult::TX_MEMPOOL_POLICY:
    1822                 :             :     case TxValidationResult::TX_NO_MEMPOOL:
    1823                 :             :     case TxValidationResult::TX_RECONSIDERABLE:
    1824                 :             :     case TxValidationResult::TX_UNKNOWN:
    1825                 :             :         break;
    1826                 :             :     }
    1827                 :         573 : }
    1828                 :             : 
    1829                 :       39530 : bool PeerManagerImpl::BlockRequestAllowed(const CBlockIndex* pindex)
    1830                 :             : {
    1831                 :       39530 :     AssertLockHeld(cs_main);
    1832         [ +  + ]:       39530 :     if (m_chainman.ActiveChain().Contains(pindex)) return true;
    1833   [ +  -  +  -  :         345 :     return pindex->IsValid(BLOCK_VALID_SCRIPTS) && (m_chainman.m_best_header != nullptr) &&
                   +  + ]
    1834   [ +  +  +  +  :         515 :            (m_chainman.m_best_header->GetBlockTime() - pindex->GetBlockTime() < STALE_RELAY_AGE_LIMIT) &&
                   -  + ]
    1835                 :         170 :            (GetBlockProofEquivalentTime(*m_chainman.m_best_header, *pindex, *m_chainman.m_best_header, m_chainparams.GetConsensus()) < STALE_RELAY_AGE_LIMIT);
    1836                 :             : }
    1837                 :             : 
    1838                 :           6 : std::optional<std::string> PeerManagerImpl::FetchBlock(NodeId peer_id, const CBlockIndex& block_index)
    1839                 :             : {
    1840         [ -  + ]:           6 :     if (m_chainman.m_blockman.LoadingBlocks()) return "Loading blocks ...";
    1841                 :             : 
    1842                 :             :     // Ensure this peer exists and hasn't been disconnected
    1843                 :           6 :     PeerRef peer = GetPeerRef(peer_id);
    1844   [ +  +  +  - ]:           6 :     if (peer == nullptr) return "Peer does not exist";
    1845                 :             : 
    1846                 :             :     // Ignore pre-segwit peers
    1847   [ +  +  +  - ]:           4 :     if (!CanServeWitnesses(*peer)) return "Pre-SegWit peer";
    1848                 :             : 
    1849         [ +  - ]:           3 :     LOCK(cs_main);
    1850                 :             : 
    1851                 :             :     // Forget about all prior requests
    1852         [ +  - ]:           3 :     RemoveBlockRequest(block_index.GetBlockHash(), std::nullopt);
    1853                 :             : 
    1854                 :             :     // Mark block as in-flight
    1855   [ +  -  -  +  :           3 :     if (!BlockRequested(peer_id, block_index)) return "Already requested from this peer";
                   -  - ]
    1856                 :             : 
    1857                 :             :     // Construct message to request the block
    1858                 :           3 :     const uint256& hash{block_index.GetBlockHash()};
    1859   [ +  -  +  - ]:           3 :     std::vector<CInv> invs{CInv(MSG_BLOCK | MSG_WITNESS_FLAG, hash)};
    1860                 :             : 
    1861                 :             :     // Send block request message to the peer
    1862         [ +  - ]:           3 :     bool success = m_connman.ForNode(peer_id, [this, &invs](CNode* node) {
    1863         [ +  - ]:           3 :         this->MakeAndPushMessage(*node, NetMsgType::GETDATA, invs);
    1864                 :           3 :         return true;
    1865                 :             :     });
    1866                 :             : 
    1867   [ -  +  -  - ]:           3 :     if (!success) return "Peer not fully connected";
    1868                 :             : 
    1869   [ +  -  +  -  :           6 :     LogDebug(BCLog::NET, "Requesting block %s from peer=%d\n",
             +  -  +  - ]
    1870                 :             :                  hash.ToString(), peer_id);
    1871                 :           3 :     return std::nullopt;
    1872                 :          12 : }
    1873                 :             : 
    1874                 :        1090 : std::unique_ptr<PeerManager> PeerManager::make(CConnman& connman, AddrMan& addrman,
    1875                 :             :                                                BanMan* banman, ChainstateManager& chainman,
    1876                 :             :                                                CTxMemPool& pool, node::Warnings& warnings, Options opts)
    1877                 :             : {
    1878         [ -  + ]:        1090 :     return std::make_unique<PeerManagerImpl>(connman, addrman, banman, chainman, pool, warnings, opts);
    1879                 :             : }
    1880                 :             : 
    1881                 :        1090 : PeerManagerImpl::PeerManagerImpl(CConnman& connman, AddrMan& addrman,
    1882                 :             :                                  BanMan* banman, ChainstateManager& chainman,
    1883                 :        1090 :                                  CTxMemPool& pool, node::Warnings& warnings, Options opts)
    1884                 :        1090 :     : m_rng{opts.deterministic_rng},
    1885         [ +  - ]:        1090 :       m_fee_filter_rounder{CFeeRate{DEFAULT_MIN_RELAY_TX_FEE}, m_rng},
    1886                 :        1090 :       m_chainparams(chainman.GetParams()),
    1887                 :        1090 :       m_connman(connman),
    1888                 :        1090 :       m_addrman(addrman),
    1889                 :        1090 :       m_banman(banman),
    1890                 :        1090 :       m_chainman(chainman),
    1891                 :        1090 :       m_mempool(pool),
    1892         [ +  - ]:        1090 :       m_txdownloadman(node::TxDownloadOptions{pool, m_rng, opts.max_orphan_txs, opts.deterministic_rng}),
    1893         [ +  - ]:        1090 :       m_warnings{warnings},
    1894   [ +  -  +  -  :        2180 :       m_opts{opts}
                   +  + ]
    1895                 :             : {
    1896                 :             :     // While Erlay support is incomplete, it must be enabled explicitly via -txreconciliation.
    1897                 :             :     // This argument can go away after Erlay support is complete.
    1898         [ +  + ]:        1090 :     if (opts.reconcile_txs) {
    1899         [ +  - ]:           5 :         m_txreconciliation = std::make_unique<TxReconciliationTracker>(TXRECONCILIATION_VERSION);
    1900                 :             :     }
    1901   [ -  -  -  - ]:        1090 : }
    1902                 :             : 
    1903                 :         908 : void PeerManagerImpl::StartScheduledTasks(CScheduler& scheduler)
    1904                 :             : {
    1905                 :             :     // Stale tip checking and peer eviction are on two different timers, but we
    1906                 :             :     // don't want them to get out of sync due to drift in the scheduler, so we
    1907                 :             :     // combine them in one function and schedule at the quicker (peer-eviction)
    1908                 :             :     // timer.
    1909                 :         908 :     static_assert(EXTRA_PEER_CHECK_INTERVAL < STALE_CHECK_INTERVAL, "peer eviction timer should be less than stale tip check timer");
    1910         [ +  - ]:        1248 :     scheduler.scheduleEvery([this] { this->CheckForStaleTipAndEvictPeers(); }, std::chrono::seconds{EXTRA_PEER_CHECK_INTERVAL});
    1911                 :             : 
    1912                 :             :     // schedule next run for 10-15 minutes in the future
    1913                 :         908 :     const auto delta = 10min + FastRandomContext().randrange<std::chrono::milliseconds>(5min);
    1914         [ +  - ]:         919 :     scheduler.scheduleFromNow([&] { ReattemptInitialBroadcast(scheduler); }, delta);
    1915                 :         908 : }
    1916                 :             : 
    1917                 :      111420 : void PeerManagerImpl::ActiveTipChange(const CBlockIndex& new_tip, bool is_ibd)
    1918                 :             : {
    1919                 :             :     // Ensure mempool mutex was released, otherwise deadlock may occur if another thread holding
    1920                 :             :     // m_tx_download_mutex waits on the mempool mutex.
    1921                 :      111420 :     AssertLockNotHeld(m_mempool.cs);
    1922                 :      111420 :     AssertLockNotHeld(m_tx_download_mutex);
    1923                 :             : 
    1924         [ +  + ]:      111420 :     if (!is_ibd) {
    1925                 :       96938 :         LOCK(m_tx_download_mutex);
    1926                 :             :         // If the chain tip has changed, previously rejected transactions might now be valid, e.g. due
    1927                 :             :         // to a timelock. Reset the rejection filters to give those transactions another chance if we
    1928                 :             :         // see them again.
    1929         [ +  - ]:       96938 :         m_txdownloadman.ActiveTipChange();
    1930                 :       96938 :     }
    1931                 :      111420 : }
    1932                 :             : 
    1933                 :             : /**
    1934                 :             :  * Evict orphan txn pool entries based on a newly connected
    1935                 :             :  * block, remember the recently confirmed transactions, and delete tracked
    1936                 :             :  * announcements for them. Also save the time of the last tip update and
    1937                 :             :  * possibly reduce dynamic block stalling timeout.
    1938                 :             :  */
    1939                 :      118671 : void PeerManagerImpl::BlockConnected(
    1940                 :             :     ChainstateRole role,
    1941                 :             :     const std::shared_ptr<const CBlock>& pblock,
    1942                 :             :     const CBlockIndex* pindex)
    1943                 :             : {
    1944                 :             :     // Update this for all chainstate roles so that we don't mistakenly see peers
    1945                 :             :     // helping us do background IBD as having a stale tip.
    1946                 :      118671 :     m_last_tip_update = GetTime<std::chrono::seconds>();
    1947                 :             : 
    1948                 :             :     // In case the dynamic timeout was doubled once or more, reduce it slowly back to its default value
    1949         [ +  + ]:      118671 :     auto stalling_timeout = m_block_stalling_timeout.load();
    1950         [ +  + ]:      118671 :     Assume(stalling_timeout >= BLOCK_STALLING_TIMEOUT_DEFAULT);
    1951         [ +  + ]:      118671 :     if (stalling_timeout != BLOCK_STALLING_TIMEOUT_DEFAULT) {
    1952                 :          16 :         const auto new_timeout = std::max(std::chrono::duration_cast<std::chrono::seconds>(stalling_timeout * 0.85), BLOCK_STALLING_TIMEOUT_DEFAULT);
    1953         [ +  - ]:          16 :         if (m_block_stalling_timeout.compare_exchange_strong(stalling_timeout, new_timeout)) {
    1954         [ +  - ]:          16 :             LogDebug(BCLog::NET, "Decreased stalling timeout to %d seconds\n", count_seconds(new_timeout));
    1955                 :             :         }
    1956                 :             :     }
    1957                 :             : 
    1958                 :             :     // The following task can be skipped since we don't maintain a mempool for
    1959                 :             :     // the ibd/background chainstate.
    1960         [ +  + ]:      118671 :     if (role == ChainstateRole::BACKGROUND) {
    1961                 :             :         return;
    1962                 :             :     }
    1963                 :      117872 :     LOCK(m_tx_download_mutex);
    1964         [ +  - ]:      117872 :     m_txdownloadman.BlockConnected(pblock);
    1965                 :      117872 : }
    1966                 :             : 
    1967                 :       12218 : void PeerManagerImpl::BlockDisconnected(const std::shared_ptr<const CBlock> &block, const CBlockIndex* pindex)
    1968                 :             : {
    1969                 :       12218 :     LOCK(m_tx_download_mutex);
    1970         [ +  - ]:       12218 :     m_txdownloadman.BlockDisconnected();
    1971                 :       12218 : }
    1972                 :             : 
    1973                 :             : /**
    1974                 :             :  * Maintain state about the best-seen block and fast-announce a compact block
    1975                 :             :  * to compatible peers.
    1976                 :             :  */
    1977                 :       94180 : void PeerManagerImpl::NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock)
    1978                 :             : {
    1979         [ +  - ]:       94180 :     auto pcmpctblock = std::make_shared<const CBlockHeaderAndShortTxIDs>(*pblock, FastRandomContext().rand64());
    1980                 :             : 
    1981         [ +  - ]:       94180 :     LOCK(cs_main);
    1982                 :             : 
    1983         [ +  + ]:       94180 :     if (pindex->nHeight <= m_highest_fast_announce)
    1984                 :             :         return;
    1985                 :       90520 :     m_highest_fast_announce = pindex->nHeight;
    1986                 :             : 
    1987         [ +  + ]:       90520 :     if (!DeploymentActiveAt(*pindex, m_chainman, Consensus::DEPLOYMENT_SEGWIT)) return;
    1988                 :             : 
    1989         [ +  - ]:       89207 :     uint256 hashBlock(pblock->GetHash());
    1990                 :       89207 :     const std::shared_future<CSerializedNetMsg> lazy_ser{
    1991   [ +  -  +  -  :      117601 :         std::async(std::launch::deferred, [&] { return NetMsg::Make(NetMsgType::CMPCTBLOCK, *pcmpctblock); })};
                   +  - ]
    1992                 :             : 
    1993                 :       89207 :     {
    1994         [ +  - ]:       89207 :         auto most_recent_block_txs = std::make_unique<std::map<uint256, CTransactionRef>>();
    1995         [ +  + ]:      206659 :         for (const auto& tx : pblock->vtx) {
    1996         [ +  - ]:      117452 :             most_recent_block_txs->emplace(tx->GetHash(), tx);
    1997         [ +  - ]:      117452 :             most_recent_block_txs->emplace(tx->GetWitnessHash(), tx);
    1998                 :             :         }
    1999                 :             : 
    2000         [ +  - ]:       89207 :         LOCK(m_most_recent_block_mutex);
    2001                 :       89207 :         m_most_recent_block_hash = hashBlock;
    2002                 :       89207 :         m_most_recent_block = pblock;
    2003                 :       89207 :         m_most_recent_compact_block = pcmpctblock;
    2004         [ +  - ]:       89207 :         m_most_recent_block_txs = std::move(most_recent_block_txs);
    2005                 :       89207 :     }
    2006                 :             : 
    2007   [ +  -  +  -  :      178414 :     m_connman.ForEachNode([this, pindex, &lazy_ser, &hashBlock](CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(::cs_main) {
                   +  - ]
    2008                 :       81380 :         AssertLockHeld(::cs_main);
    2009                 :             : 
    2010   [ +  -  -  + ]:       81380 :         if (pnode->GetCommonVersion() < INVALID_CB_NO_BAN_VERSION || pnode->fDisconnect)
    2011                 :           0 :             return;
    2012                 :       81380 :         ProcessBlockAvailability(pnode->GetId());
    2013                 :       81380 :         CNodeState &state = *State(pnode->GetId());
    2014                 :             :         // If the peer has, or we announced to them the previous block already,
    2015                 :             :         // but we don't think they have this one, go ahead and announce it
    2016   [ +  +  +  +  :       81380 :         if (state.m_requested_hb_cmpctblocks && !PeerHasHeader(&state, pindex) && PeerHasHeader(&state, pindex->pprev)) {
                   +  + ]
    2017                 :             : 
    2018   [ +  -  +  - ]:       36164 :             LogDebug(BCLog::NET, "%s sending header-and-ids %s to peer=%d\n", "PeerManager::NewPoWValidBlock",
    2019                 :             :                     hashBlock.ToString(), pnode->GetId());
    2020                 :             : 
    2021                 :       18082 :             const CSerializedNetMsg& ser_cmpctblock{lazy_ser.get()};
    2022         [ +  - ]:       18082 :             PushMessage(*pnode, ser_cmpctblock.Copy());
    2023                 :       18082 :             state.pindexBestHeaderSent = pindex;
    2024                 :             :         }
    2025                 :             :     });
    2026   [ +  -  +  -  :      277567 : }
                   +  - ]
    2027                 :             : 
    2028                 :             : /**
    2029                 :             :  * Update our best height and announce any block hashes which weren't previously
    2030                 :             :  * in m_chainman.ActiveChain() to our peers.
    2031                 :             :  */
    2032                 :      108661 : void PeerManagerImpl::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload)
    2033                 :             : {
    2034                 :      108661 :     SetBestBlock(pindexNew->nHeight, std::chrono::seconds{pindexNew->GetBlockTime()});
    2035                 :             : 
    2036                 :             :     // Don't relay inventory during initial block download.
    2037         [ +  + ]:      108661 :     if (fInitialDownload) return;
    2038                 :             : 
    2039                 :             :     // Find the hashes of all blocks that weren't previously in the best chain.
    2040                 :       94185 :     std::vector<uint256> vHashes;
    2041                 :       94185 :     const CBlockIndex *pindexToAnnounce = pindexNew;
    2042         [ +  + ]:      188639 :     while (pindexToAnnounce != pindexFork) {
    2043         [ +  - ]:       94477 :         vHashes.push_back(pindexToAnnounce->GetBlockHash());
    2044                 :       94477 :         pindexToAnnounce = pindexToAnnounce->pprev;
    2045         [ +  + ]:       94477 :         if (vHashes.size() == MAX_BLOCKS_TO_ANNOUNCE) {
    2046                 :             :             // Limit announcements in case of a huge reorganization.
    2047                 :             :             // Rely on the peer's synchronization mechanism in that case.
    2048                 :             :             break;
    2049                 :             :         }
    2050                 :             :     }
    2051                 :             : 
    2052                 :       94185 :     {
    2053         [ +  - ]:       94185 :         LOCK(m_peer_mutex);
    2054         [ +  + ]:      182112 :         for (auto& it : m_peer_map) {
    2055         [ +  - ]:       87927 :             Peer& peer = *it.second;
    2056         [ +  - ]:       87927 :             LOCK(peer.m_block_inv_mutex);
    2057         [ +  + ]:      176267 :             for (const uint256& hash : vHashes | std::views::reverse) {
    2058         [ +  - ]:       88340 :                 peer.m_blocks_for_headers_relay.push_back(hash);
    2059                 :             :             }
    2060                 :       87927 :         }
    2061                 :           0 :     }
    2062                 :             : 
    2063         [ +  - ]:       94185 :     m_connman.WakeMessageHandler();
    2064                 :       94185 : }
    2065                 :             : 
    2066                 :             : /**
    2067                 :             :  * Handle invalid block rejection and consequent peer discouragement, maintain which
    2068                 :             :  * peers announce compact blocks.
    2069                 :             :  */
    2070                 :      122123 : void PeerManagerImpl::BlockChecked(const CBlock& block, const BlockValidationState& state)
    2071                 :             : {
    2072                 :      122123 :     LOCK(cs_main);
    2073                 :             : 
    2074         [ +  - ]:      122123 :     const uint256 hash(block.GetHash());
    2075                 :      122123 :     std::map<uint256, std::pair<NodeId, bool>>::iterator it = mapBlockSource.find(hash);
    2076                 :             : 
    2077                 :             :     // If the block failed validation, we know where it came from and we're still connected
    2078                 :             :     // to that peer, maybe punish.
    2079   [ +  +  +  + ]:      122123 :     if (state.IsInvalid() &&
    2080   [ +  +  +  +  :      123059 :         it != mapBlockSource.end() &&
                   +  - ]
    2081                 :         936 :         State(it->second.first)) {
    2082   [ +  -  +  - ]:        1872 :             MaybePunishNodeForBlock(/*nodeid=*/ it->second.first, state, /*via_compact_block=*/ !it->second.second);
    2083                 :             :     }
    2084                 :             :     // Check that:
    2085                 :             :     // 1. The block is valid
    2086                 :             :     // 2. We're not in initial block download
    2087                 :             :     // 3. This is currently the best block we're aware of. We haven't updated
    2088                 :             :     //    the tip yet so we have no way to check this directly here. Instead we
    2089                 :             :     //    just check that there are currently no other blocks in flight.
    2090         [ +  + ]:      118675 :     else if (state.IsValid() &&
    2091   [ +  +  +  -  :      224395 :              !m_chainman.IsInitialBlockDownload() &&
                   +  + ]
    2092         [ +  + ]:      103208 :              mapBlocksInFlight.count(hash) == mapBlocksInFlight.size()) {
    2093         [ +  + ]:       75348 :         if (it != mapBlockSource.end()) {
    2094         [ +  - ]:       18302 :             MaybeSetPeerAsAnnouncingHeaderAndIDs(it->second.first);
    2095                 :             :         }
    2096                 :             :     }
    2097         [ +  + ]:      122123 :     if (it != mapBlockSource.end())
    2098                 :       57326 :         mapBlockSource.erase(it);
    2099                 :      122123 : }
    2100                 :             : 
    2101                 :             : //////////////////////////////////////////////////////////////////////////////
    2102                 :             : //
    2103                 :             : // Messages
    2104                 :             : //
    2105                 :             : 
    2106                 :         615 : bool PeerManagerImpl::AlreadyHaveBlock(const uint256& block_hash)
    2107                 :             : {
    2108                 :         615 :     return m_chainman.m_blockman.LookupBlockIndex(block_hash) != nullptr;
    2109                 :             : }
    2110                 :             : 
    2111                 :           3 : void PeerManagerImpl::SendPings()
    2112                 :             : {
    2113                 :           3 :     LOCK(m_peer_mutex);
    2114         [ +  + ]:           8 :     for(auto& it : m_peer_map) it.second->m_ping_queued = true;
    2115                 :           3 : }
    2116                 :             : 
    2117                 :       30620 : void PeerManagerImpl::RelayTransaction(const uint256& txid, const uint256& wtxid)
    2118                 :             : {
    2119                 :       30620 :     LOCK(m_peer_mutex);
    2120         [ +  + ]:       82489 :     for(auto& it : m_peer_map) {
    2121         [ +  - ]:       51869 :         Peer& peer = *it.second;
    2122         [ +  - ]:       51869 :         auto tx_relay = peer.GetTxRelay();
    2123         [ +  + ]:       51869 :         if (!tx_relay) continue;
    2124                 :             : 
    2125         [ +  - ]:       51865 :         LOCK(tx_relay->m_tx_inventory_mutex);
    2126                 :             :         // Only queue transactions for announcement once the version handshake
    2127                 :             :         // is completed. The time of arrival for these transactions is
    2128                 :             :         // otherwise at risk of leaking to a spy, if the spy is able to
    2129                 :             :         // distinguish transactions received during the handshake from the rest
    2130                 :             :         // in the announcement.
    2131   [ +  +  +  - ]:       51865 :         if (tx_relay->m_next_inv_send_time == 0s) continue;
    2132                 :             : 
    2133         [ +  + ]:       51864 :         const uint256& hash{peer.m_wtxid_relay ? wtxid : txid};
    2134   [ +  -  +  + ]:       51864 :         if (!tx_relay->m_tx_inventory_known_filter.contains(hash)) {
    2135         [ +  - ]:       20675 :             tx_relay->m_tx_inventory_to_send.insert(hash);
    2136                 :             :         }
    2137         [ +  - ]:       82485 :     };
    2138                 :       30620 : }
    2139                 :             : 
    2140                 :          53 : void PeerManagerImpl::RelayAddress(NodeId originator,
    2141                 :             :                                    const CAddress& addr,
    2142                 :             :                                    bool fReachable)
    2143                 :             : {
    2144                 :             :     // We choose the same nodes within a given 24h window (if the list of connected
    2145                 :             :     // nodes does not change) and we don't relay to nodes that already know an
    2146                 :             :     // address. So within 24h we will likely relay a given address once. This is to
    2147                 :             :     // prevent a peer from unjustly giving their address better propagation by sending
    2148                 :             :     // it to us repeatedly.
    2149                 :             : 
    2150   [ +  +  +  - ]:          53 :     if (!fReachable && !addr.IsRelayable()) return;
    2151                 :             : 
    2152                 :             :     // Relay to a limited number of other nodes
    2153                 :             :     // Use deterministic randomness to send to the same nodes for 24 hours
    2154                 :             :     // at a time so the m_addr_knowns of the chosen nodes prevent repeats
    2155                 :          53 :     const uint64_t hash_addr{CServiceHash(0, 0)(addr)};
    2156                 :          53 :     const auto current_time{GetTime<std::chrono::seconds>()};
    2157                 :             :     // Adding address hash makes exact rotation time different per address, while preserving periodicity.
    2158                 :          53 :     const uint64_t time_addr{(static_cast<uint64_t>(count_seconds(current_time)) + hash_addr) / count_seconds(ROTATE_ADDR_RELAY_DEST_INTERVAL)};
    2159                 :          53 :     const CSipHasher hasher{m_connman.GetDeterministicRandomizer(RANDOMIZER_ID_ADDRESS_RELAY)
    2160                 :          53 :                                 .Write(hash_addr)
    2161                 :          53 :                                 .Write(time_addr)};
    2162                 :             : 
    2163                 :             :     // Relay reachable addresses to 2 peers. Unreachable addresses are relayed randomly to 1 or 2 peers.
    2164   [ +  +  +  + ]:          53 :     unsigned int nRelayNodes = (fReachable || (hasher.Finalize() & 1)) ? 2 : 1;
    2165                 :             : 
    2166                 :          53 :     std::array<std::pair<uint64_t, Peer*>, 2> best{{{0, nullptr}, {0, nullptr}}};
    2167         [ -  + ]:          53 :     assert(nRelayNodes <= best.size());
    2168                 :             : 
    2169                 :          53 :     LOCK(m_peer_mutex);
    2170                 :             : 
    2171   [ +  +  +  + ]:         622 :     for (auto& [id, peer] : m_peer_map) {
    2172   [ +  +  +  +  :         569 :         if (peer->m_addr_relay_enabled && id != originator && IsAddrCompatible(*peer, addr)) {
             +  -  +  - ]
    2173   [ +  -  +  - ]:         512 :             uint64_t hashKey = CSipHasher(hasher).Write(id).Finalize();
    2174         [ +  + ]:        1203 :             for (unsigned int i = 0; i < nRelayNodes; i++) {
    2175         [ +  + ]:         889 :                  if (hashKey > best[i].first) {
    2176                 :         198 :                      std::copy(best.begin() + i, best.begin() + nRelayNodes - 1, best.begin() + i + 1);
    2177                 :         198 :                      best[i] = std::make_pair(hashKey, peer.get());
    2178                 :         198 :                      break;
    2179                 :             :                  }
    2180                 :             :             }
    2181                 :             :         }
    2182                 :             :     };
    2183                 :             : 
    2184   [ +  +  +  + ]:         135 :     for (unsigned int i = 0; i < nRelayNodes && best[i].first != 0; i++) {
    2185         [ +  - ]:          82 :         PushAddress(*best[i].second, addr);
    2186                 :             :     }
    2187                 :          53 : }
    2188                 :             : 
    2189                 :       39514 : void PeerManagerImpl::ProcessGetBlockData(CNode& pfrom, Peer& peer, const CInv& inv)
    2190                 :             : {
    2191                 :       39514 :     std::shared_ptr<const CBlock> a_recent_block;
    2192                 :       39514 :     std::shared_ptr<const CBlockHeaderAndShortTxIDs> a_recent_compact_block;
    2193                 :       39514 :     {
    2194         [ +  - ]:       39514 :         LOCK(m_most_recent_block_mutex);
    2195                 :       39514 :         a_recent_block = m_most_recent_block;
    2196         [ +  - ]:       39514 :         a_recent_compact_block = m_most_recent_compact_block;
    2197                 :       39514 :     }
    2198                 :             : 
    2199                 :       39514 :     bool need_activate_chain = false;
    2200                 :       39514 :     {
    2201         [ +  - ]:       39514 :         LOCK(cs_main);
    2202         [ +  - ]:       39514 :         const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(inv.hash);
    2203         [ +  - ]:       39514 :         if (pindex) {
    2204   [ +  -  +  +  :       79028 :             if (pindex->HaveNumChainTxs() && !pindex->IsValid(BLOCK_VALID_SCRIPTS) &&
                   +  - ]
    2205   [ -  +  +  - ]:       39514 :                     pindex->IsValid(BLOCK_VALID_TREE)) {
    2206                 :             :                 // If we have the block and all of its parents, but have not yet validated it,
    2207                 :             :                 // we might be in the middle of connecting it (ie in the unlock of cs_main
    2208                 :             :                 // before ActivateBestChain but after AcceptBlock).
    2209                 :             :                 // In this case, we need to run ActivateBestChain prior to checking the relay
    2210                 :             :                 // conditions below.
    2211                 :             :                 need_activate_chain = true;
    2212                 :             :             }
    2213                 :             :         }
    2214                 :           0 :     } // release cs_main before calling ActivateBestChain
    2215         [ +  + ]:       39514 :     if (need_activate_chain) {
    2216         [ +  - ]:          12 :         BlockValidationState state;
    2217   [ +  -  +  -  :          36 :         if (!m_chainman.ActiveChainstate().ActivateBestChain(state, a_recent_block)) {
          +  -  +  -  -  
                      + ]
    2218   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "failed to activate chain (%s)\n", state.ToString());
             #  #  #  # ]
    2219                 :             :         }
    2220                 :          12 :     }
    2221                 :             : 
    2222                 :       39514 :     const CBlockIndex* pindex{nullptr};
    2223                 :       39514 :     const CBlockIndex* tip{nullptr};
    2224                 :       39514 :     bool can_direct_fetch{false};
    2225                 :       39514 :     FlatFilePos block_pos{};
    2226                 :       39514 :     {
    2227         [ +  - ]:       39514 :         LOCK(cs_main);
    2228         [ +  - ]:       39514 :         pindex = m_chainman.m_blockman.LookupBlockIndex(inv.hash);
    2229         [ +  - ]:       39514 :         if (!pindex) {
    2230                 :             :             return;
    2231                 :             :         }
    2232   [ +  -  +  + ]:       39514 :         if (!BlockRequestAllowed(pindex)) {
    2233   [ +  -  +  -  :           1 :             LogDebug(BCLog::NET, "%s: ignoring request from peer=%i for old block that isn't in the main chain\n", __func__, pfrom.GetId());
                   +  - ]
    2234                 :           1 :             return;
    2235                 :             :         }
    2236                 :             :         // disconnect node in case we have reached the outbound limit for serving historical blocks
    2237         [ +  - ]:       39513 :         if (m_connman.OutboundTargetReached(true) &&
    2238   [ +  +  +  -  :       39513 :             (((m_chainman.m_best_header != nullptr) && (m_chainman.m_best_header->GetBlockTime() - pindex->GetBlockTime() > HISTORICAL_BLOCK_AGE)) || inv.IsMsgFilteredBlk()) &&
             +  +  -  + ]
    2239         [ +  + ]:           3 :             !pfrom.HasPermission(NetPermissionFlags::Download) // nodes with the download permission may exceed target
    2240                 :             :         ) {
    2241   [ +  -  +  -  :           4 :             LogDebug(BCLog::NET, "historical block serving limit reached, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    2242                 :           2 :             pfrom.fDisconnect = true;
    2243                 :           2 :             return;
    2244                 :             :         }
    2245   [ +  -  +  - ]:       39511 :         tip = m_chainman.ActiveChain().Tip();
    2246                 :             :         // Avoid leaking prune-height by never sending blocks below the NODE_NETWORK_LIMITED threshold
    2247         [ +  + ]:       39511 :         if (!pfrom.HasPermission(NetPermissionFlags::NoBan) && (
    2248   [ +  +  +  + ]:       37421 :                 (((peer.m_our_services & NODE_NETWORK_LIMITED) == NODE_NETWORK_LIMITED) && ((peer.m_our_services & NODE_NETWORK) != NODE_NETWORK) && (tip->nHeight - pindex->nHeight > (int)NODE_NETWORK_LIMITED_MIN_BLOCKS + 2 /* add two blocks buffer extension for possible races */) )
    2249                 :             :            )) {
    2250   [ +  -  +  -  :           4 :             LogDebug(BCLog::NET, "Ignore block request below NODE_NETWORK_LIMITED threshold, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    2251                 :             :             //disconnect node and prevent it from stalling (would otherwise wait for the missing block)
    2252                 :           2 :             pfrom.fDisconnect = true;
    2253                 :           2 :             return;
    2254                 :             :         }
    2255                 :             :         // Pruned nodes may have deleted the block, so check whether
    2256                 :             :         // it's available before trying to send.
    2257         [ +  - ]:       39509 :         if (!(pindex->nStatus & BLOCK_HAVE_DATA)) {
    2258                 :             :             return;
    2259                 :             :         }
    2260         [ +  - ]:       39509 :         can_direct_fetch = CanDirectFetch();
    2261         [ +  - ]:       39509 :         block_pos = pindex->GetBlockPos();
    2262                 :           5 :     }
    2263                 :             : 
    2264                 :       39509 :     std::shared_ptr<const CBlock> pblock;
    2265   [ +  +  +  -  :       39509 :     if (a_recent_block && a_recent_block->GetHash() == pindex->GetBlockHash()) {
                   +  + ]
    2266                 :        1663 :         pblock = a_recent_block;
    2267         [ +  + ]:       37846 :     } else if (inv.IsMsgWitnessBlk()) {
    2268                 :             :         // Fast-path: in this case it is possible to serve the block directly from disk,
    2269                 :             :         // as the network format matches the format on disk
    2270                 :       32527 :         std::vector<uint8_t> block_data;
    2271   [ +  -  -  + ]:       32527 :         if (!m_chainman.m_blockman.ReadRawBlockFromDisk(block_data, block_pos)) {
    2272   [ #  #  #  #  :           0 :             if (WITH_LOCK(m_chainman.GetMutex(), return m_chainman.m_blockman.IsBlockPruned(*pindex))) {
             #  #  #  # ]
    2273   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "Block was pruned before it could be read, %s\n", pfrom.DisconnectMsg(fLogIPs));
             #  #  #  # ]
    2274                 :             :             } else {
    2275   [ #  #  #  # ]:           0 :                 LogError("Cannot load block from disk, %s\n", pfrom.DisconnectMsg(fLogIPs));
    2276                 :             :             }
    2277                 :           0 :             pfrom.fDisconnect = true;
    2278                 :           0 :             return;
    2279                 :             :         }
    2280   [ +  -  +  - ]:       65054 :         MakeAndPushMessage(pfrom, NetMsgType::BLOCK, Span{block_data});
    2281                 :             :         // Don't set pblock as we've sent the block
    2282                 :       32527 :     } else {
    2283                 :             :         // Send block from disk
    2284         [ +  - ]:        5319 :         std::shared_ptr<CBlock> pblockRead = std::make_shared<CBlock>();
    2285   [ +  -  -  + ]:        5319 :         if (!m_chainman.m_blockman.ReadBlockFromDisk(*pblockRead, block_pos)) {
    2286   [ #  #  #  #  :           0 :             if (WITH_LOCK(m_chainman.GetMutex(), return m_chainman.m_blockman.IsBlockPruned(*pindex))) {
             #  #  #  # ]
    2287   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "Block was pruned before it could be read, %s\n", pfrom.DisconnectMsg(fLogIPs));
             #  #  #  # ]
    2288                 :             :             } else {
    2289   [ #  #  #  # ]:           0 :                 LogError("Cannot load block from disk, %s\n", pfrom.DisconnectMsg(fLogIPs));
    2290                 :             :             }
    2291         [ #  # ]:           0 :             pfrom.fDisconnect = true;
    2292         [ #  # ]:           0 :             return;
    2293                 :             :         }
    2294         [ +  - ]:        5319 :         pblock = pblockRead;
    2295                 :        5319 :     }
    2296         [ +  + ]:       39509 :     if (pblock) {
    2297         [ +  + ]:        6982 :         if (inv.IsMsgBlk()) {
    2298   [ +  -  +  - ]:       12602 :             MakeAndPushMessage(pfrom, NetMsgType::BLOCK, TX_NO_WITNESS(*pblock));
    2299         [ +  + ]:         681 :         } else if (inv.IsMsgWitnessBlk()) {
    2300   [ +  -  +  - ]:         770 :             MakeAndPushMessage(pfrom, NetMsgType::BLOCK, TX_WITH_WITNESS(*pblock));
    2301         [ +  + ]:         296 :         } else if (inv.IsMsgFilteredBlk()) {
    2302                 :           7 :             bool sendMerkleBlock = false;
    2303         [ +  - ]:           7 :             CMerkleBlock merkleBlock;
    2304   [ +  -  +  - ]:           7 :             if (auto tx_relay = peer.GetTxRelay(); tx_relay != nullptr) {
    2305         [ +  - ]:           7 :                 LOCK(tx_relay->m_bloom_filter_mutex);
    2306         [ +  + ]:           7 :                 if (tx_relay->m_bloom_filter) {
    2307                 :           4 :                     sendMerkleBlock = true;
    2308         [ +  - ]:           4 :                     merkleBlock = CMerkleBlock(*pblock, *tx_relay->m_bloom_filter);
    2309                 :             :                 }
    2310                 :           0 :             }
    2311         [ +  + ]:           7 :             if (sendMerkleBlock) {
    2312   [ +  -  +  - ]:           4 :                 MakeAndPushMessage(pfrom, NetMsgType::MERKLEBLOCK, merkleBlock);
    2313                 :             :                 // CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see
    2314                 :             :                 // This avoids hurting performance by pointlessly requiring a round-trip
    2315                 :             :                 // Note that there is currently no way for a node to request any single transactions we didn't send here -
    2316                 :             :                 // they must either disconnect and retry or request the full block.
    2317                 :             :                 // Thus, the protocol spec specified allows for us to provide duplicate txn here,
    2318                 :             :                 // however we MUST always provide at least what the remote peer needs
    2319                 :           4 :                 typedef std::pair<unsigned int, uint256> PairType;
    2320         [ +  + ]:           6 :                 for (PairType& pair : merkleBlock.vMatchedTxn)
    2321   [ +  -  +  - ]:           4 :                     MakeAndPushMessage(pfrom, NetMsgType::TX, TX_NO_WITNESS(*pblock->vtx[pair.first]));
    2322                 :             :             }
    2323                 :             :             // else
    2324                 :             :             // no response
    2325         [ +  - ]:         296 :         } else if (inv.IsMsgCmpctBlk()) {
    2326                 :             :             // If a peer is asking for old blocks, we're almost guaranteed
    2327                 :             :             // they won't have a useful mempool to match against a compact block,
    2328                 :             :             // and we don't feel like constructing the object for them, so
    2329                 :             :             // instead we respond with the full, non-compact block.
    2330   [ +  -  +  + ]:         289 :             if (can_direct_fetch && pindex->nHeight >= tip->nHeight - MAX_CMPCTBLOCK_DEPTH) {
    2331   [ +  +  +  -  :         271 :                 if (a_recent_compact_block && a_recent_compact_block->header.GetHash() == pindex->GetBlockHash()) {
                   +  + ]
    2332   [ +  -  +  - ]:         390 :                     MakeAndPushMessage(pfrom, NetMsgType::CMPCTBLOCK, *a_recent_compact_block);
    2333                 :             :                 } else {
    2334         [ +  - ]:          76 :                     CBlockHeaderAndShortTxIDs cmpctblock{*pblock, m_rng.rand64()};
    2335   [ +  -  +  - ]:         152 :                     MakeAndPushMessage(pfrom, NetMsgType::CMPCTBLOCK, cmpctblock);
    2336                 :          76 :                 }
    2337                 :             :             } else {
    2338   [ +  -  +  - ]:          36 :                 MakeAndPushMessage(pfrom, NetMsgType::BLOCK, TX_WITH_WITNESS(*pblock));
    2339                 :             :             }
    2340                 :             :         }
    2341                 :             :     }
    2342                 :             : 
    2343                 :       39509 :     {
    2344         [ +  - ]:       39509 :         LOCK(peer.m_block_inv_mutex);
    2345                 :             :         // Trigger the peer node to send a getblocks request for the next batch of inventory
    2346         [ -  + ]:       39509 :         if (inv.hash == peer.m_continuation_block) {
    2347                 :             :             // Send immediately. This must send even if redundant,
    2348                 :             :             // and we want it right after the last block so they don't
    2349                 :             :             // wait for other stuff first.
    2350                 :           0 :             std::vector<CInv> vInv;
    2351         [ #  # ]:           0 :             vInv.emplace_back(MSG_BLOCK, tip->GetBlockHash());
    2352   [ #  #  #  # ]:           0 :             MakeAndPushMessage(pfrom, NetMsgType::INV, vInv);
    2353                 :           0 :             peer.m_continuation_block.SetNull();
    2354                 :           0 :         }
    2355         [ +  + ]:       39509 :     }
    2356   [ +  +  +  +  :      114563 : }
                   +  - ]
    2357                 :             : 
    2358                 :       12239 : CTransactionRef PeerManagerImpl::FindTxForGetData(const Peer::TxRelay& tx_relay, const GenTxid& gtxid)
    2359                 :             : {
    2360                 :             :     // If a tx was in the mempool prior to the last INV for this peer, permit the request.
    2361                 :       12239 :     auto txinfo = m_mempool.info_for_relay(gtxid, tx_relay.m_last_inv_sequence);
    2362         [ +  + ]:       12239 :     if (txinfo.tx) {
    2363                 :       12217 :         return std::move(txinfo.tx);
    2364                 :             :     }
    2365                 :             : 
    2366                 :             :     // Or it might be from the most recent block
    2367                 :          22 :     {
    2368         [ +  - ]:          22 :         LOCK(m_most_recent_block_mutex);
    2369         [ +  - ]:          22 :         if (m_most_recent_block_txs != nullptr) {
    2370                 :          22 :             auto it = m_most_recent_block_txs->find(gtxid.GetHash());
    2371   [ +  +  +  -  :          31 :             if (it != m_most_recent_block_txs->end()) return it->second;
                   +  - ]
    2372                 :             :         }
    2373                 :           9 :     }
    2374                 :             : 
    2375                 :          13 :     return {};
    2376                 :       12239 : }
    2377                 :             : 
    2378                 :       45819 : void PeerManagerImpl::ProcessGetData(CNode& pfrom, Peer& peer, const std::atomic<bool>& interruptMsgProc)
    2379                 :             : {
    2380                 :       45819 :     AssertLockNotHeld(cs_main);
    2381                 :             : 
    2382                 :       45819 :     auto tx_relay = peer.GetTxRelay();
    2383                 :             : 
    2384                 :       45819 :     std::deque<CInv>::iterator it = peer.m_getdata_requests.begin();
    2385                 :       45819 :     std::vector<CInv> vNotFound;
    2386                 :             : 
    2387                 :             :     // Process as many TX items from the front of the getdata queue as
    2388                 :             :     // possible, since they're common and it's efficient to batch process
    2389                 :             :     // them.
    2390   [ +  +  +  + ]:       58058 :     while (it != peer.m_getdata_requests.end() && it->IsGenTxMsg()) {
    2391         [ -  + ]:       12239 :         if (interruptMsgProc) return;
    2392                 :             :         // The send buffer provides backpressure. If there's no space in
    2393                 :             :         // the buffer, pause processing until the next call.
    2394         [ +  - ]:       12239 :         if (pfrom.fPauseSend) break;
    2395                 :             : 
    2396                 :       12239 :         const CInv &inv = *it++;
    2397                 :             : 
    2398         [ -  + ]:       12239 :         if (tx_relay == nullptr) {
    2399                 :             :             // Ignore GETDATA requests for transactions from block-relay-only
    2400                 :             :             // peers and peers that asked us not to announce transactions.
    2401                 :           0 :             continue;
    2402                 :             :         }
    2403                 :             : 
    2404   [ +  -  +  - ]:       12239 :         CTransactionRef tx = FindTxForGetData(*tx_relay, ToGenTxid(inv));
    2405         [ +  + ]:       12239 :         if (tx) {
    2406                 :             :             // WTX and WITNESS_TX imply we serialize with witness
    2407         [ -  + ]:       12226 :             const auto maybe_with_witness = (inv.IsMsgTx() ? TX_NO_WITNESS : TX_WITH_WITNESS);
    2408   [ +  -  +  - ]:       12226 :             MakeAndPushMessage(pfrom, NetMsgType::TX, maybe_with_witness(*tx));
    2409         [ +  - ]:       12226 :             m_mempool.RemoveUnbroadcastTx(tx->GetHash());
    2410                 :             :         } else {
    2411         [ +  - ]:          13 :             vNotFound.push_back(inv);
    2412                 :             :         }
    2413                 :       12239 :     }
    2414                 :             : 
    2415                 :             :     // Only process one BLOCK item per call, since they're uncommon and can be
    2416                 :             :     // expensive to process.
    2417   [ +  +  +  - ]:       45819 :     if (it != peer.m_getdata_requests.end() && !pfrom.fPauseSend) {
    2418                 :       39515 :         const CInv &inv = *it++;
    2419         [ +  + ]:       39515 :         if (inv.IsGenBlkMsg()) {
    2420         [ +  - ]:       39514 :             ProcessGetBlockData(pfrom, peer, inv);
    2421                 :             :         }
    2422                 :             :         // else: If the first item on the queue is an unknown type, we erase it
    2423                 :             :         // and continue processing the queue on the next call.
    2424                 :             :     }
    2425                 :             : 
    2426                 :       45819 :     peer.m_getdata_requests.erase(peer.m_getdata_requests.begin(), it);
    2427                 :             : 
    2428         [ +  + ]:       45819 :     if (!vNotFound.empty()) {
    2429                 :             :         // Let the peer know that we didn't find what it asked for, so it doesn't
    2430                 :             :         // have to wait around forever.
    2431                 :             :         // SPV clients care about this message: it's needed when they are
    2432                 :             :         // recursively walking the dependencies of relevant unconfirmed
    2433                 :             :         // transactions. SPV clients want to do that because they want to know
    2434                 :             :         // about (and store and rebroadcast and risk analyze) the dependencies
    2435                 :             :         // of transactions relevant to them, without having to download the
    2436                 :             :         // entire memory pool.
    2437                 :             :         // Also, other nodes can use these messages to automatically request a
    2438                 :             :         // transaction from some other peer that announced it, and stop
    2439                 :             :         // waiting for us to respond.
    2440                 :             :         // In normal operation, we often send NOTFOUND messages for parents of
    2441                 :             :         // transactions that we relay; if a peer is missing a parent, they may
    2442                 :             :         // assume we have them and request the parents from us.
    2443   [ +  -  +  - ]:          20 :         MakeAndPushMessage(pfrom, NetMsgType::NOTFOUND, vNotFound);
    2444                 :             :     }
    2445                 :       45819 : }
    2446                 :             : 
    2447                 :       42144 : uint32_t PeerManagerImpl::GetFetchFlags(const Peer& peer) const
    2448                 :             : {
    2449                 :       42144 :     uint32_t nFetchFlags = 0;
    2450         [ +  + ]:       42144 :     if (CanServeWitnesses(peer)) {
    2451                 :       42142 :         nFetchFlags |= MSG_WITNESS_FLAG;
    2452                 :             :     }
    2453                 :       42144 :     return nFetchFlags;
    2454                 :             : }
    2455                 :             : 
    2456                 :         555 : void PeerManagerImpl::SendBlockTransactions(CNode& pfrom, Peer& peer, const CBlock& block, const BlockTransactionsRequest& req)
    2457                 :             : {
    2458                 :         555 :     BlockTransactions resp(req);
    2459         [ +  + ]:        2464 :     for (size_t i = 0; i < req.indexes.size(); i++) {
    2460         [ +  + ]:        1910 :         if (req.indexes[i] >= block.vtx.size()) {
    2461   [ +  -  +  - ]:           1 :             Misbehaving(peer, "getblocktxn with out-of-bounds tx indices");
    2462                 :           1 :             return;
    2463                 :             :         }
    2464                 :        1909 :         resp.txn[i] = block.vtx[req.indexes[i]];
    2465                 :             :     }
    2466                 :             : 
    2467   [ +  -  +  - ]:        1108 :     MakeAndPushMessage(pfrom, NetMsgType::BLOCKTXN, resp);
    2468                 :         555 : }
    2469                 :             : 
    2470                 :        8608 : bool PeerManagerImpl::CheckHeadersPoW(const std::vector<CBlockHeader>& headers, const Consensus::Params& consensusParams, Peer& peer)
    2471                 :             : {
    2472                 :             :     // Do these headers have proof-of-work matching what's claimed?
    2473         [ +  + ]:        8608 :     if (!HasValidProofOfWork(headers, consensusParams)) {
    2474         [ +  - ]:           1 :         Misbehaving(peer, "header with invalid proof of work");
    2475                 :           1 :         return false;
    2476                 :             :     }
    2477                 :             : 
    2478                 :             :     // Are these headers connected to each other?
    2479         [ +  + ]:        8607 :     if (!CheckHeadersAreContinuous(headers)) {
    2480         [ +  - ]:           1 :         Misbehaving(peer, "non-continuous headers sequence");
    2481                 :           1 :         return false;
    2482                 :             :     }
    2483                 :             :     return true;
    2484                 :             : }
    2485                 :             : 
    2486                 :       66273 : arith_uint256 PeerManagerImpl::GetAntiDoSWorkThreshold()
    2487                 :             : {
    2488                 :       66273 :     arith_uint256 near_chaintip_work = 0;
    2489                 :       66273 :     LOCK(cs_main);
    2490   [ +  -  +  -  :       66273 :     if (m_chainman.ActiveChain().Tip() != nullptr) {
                   +  - ]
    2491   [ +  -  +  - ]:       66273 :         const CBlockIndex *tip = m_chainman.ActiveChain().Tip();
    2492                 :             :         // Use a 144 block buffer, so that we'll accept headers that fork from
    2493                 :             :         // near our tip.
    2494   [ +  -  +  -  :      861549 :         near_chaintip_work = tip->nChainWork - std::min<arith_uint256>(144*GetBlockProof(*tip), tip->nChainWork);
             +  -  +  + ]
    2495                 :             :     }
    2496   [ +  -  +  -  :      198819 :     return std::max(near_chaintip_work, m_chainman.MinimumChainWork());
                   +  - ]
    2497                 :       66273 : }
    2498                 :             : 
    2499                 :             : /**
    2500                 :             :  * Special handling for unconnecting headers that might be part of a block
    2501                 :             :  * announcement.
    2502                 :             :  *
    2503                 :             :  * We'll send a getheaders message in response to try to connect the chain.
    2504                 :             :  */
    2505                 :         264 : void PeerManagerImpl::HandleUnconnectingHeaders(CNode& pfrom, Peer& peer,
    2506                 :             :         const std::vector<CBlockHeader>& headers)
    2507                 :             : {
    2508                 :             :     // Try to fill in the missing headers.
    2509         [ +  - ]:         528 :     const CBlockIndex* best_header{WITH_LOCK(cs_main, return m_chainman.m_best_header)};
    2510   [ +  -  +  + ]:         264 :     if (MaybeSendGetHeaders(pfrom, GetLocator(best_header), peer)) {
    2511   [ +  -  +  -  :         526 :         LogDebug(BCLog::NET, "received header %s: missing prev block %s, sending getheaders (%d) to end (peer=%d)\n",
             +  -  +  - ]
    2512                 :             :             headers[0].GetHash().ToString(),
    2513                 :             :             headers[0].hashPrevBlock.ToString(),
    2514                 :             :             best_header->nHeight,
    2515                 :             :             pfrom.GetId());
    2516                 :             :     }
    2517                 :             : 
    2518                 :             :     // Set hashLastUnknownBlock for this peer, so that if we
    2519                 :             :     // eventually get the headers - even from a different peer -
    2520                 :             :     // we can use this peer to download.
    2521   [ +  -  +  - ]:         792 :     WITH_LOCK(cs_main, UpdateBlockAvailability(pfrom.GetId(), headers.back().GetHash()));
    2522                 :         264 : }
    2523                 :             : 
    2524                 :        8607 : bool PeerManagerImpl::CheckHeadersAreContinuous(const std::vector<CBlockHeader>& headers) const
    2525                 :             : {
    2526                 :        8607 :     uint256 hashLastBlock;
    2527         [ +  + ]:      179776 :     for (const CBlockHeader& header : headers) {
    2528   [ +  +  +  + ]:      171170 :         if (!hashLastBlock.IsNull() && header.hashPrevBlock != hashLastBlock) {
    2529                 :             :             return false;
    2530                 :             :         }
    2531                 :      171169 :         hashLastBlock = header.GetHash();
    2532                 :             :     }
    2533                 :             :     return true;
    2534                 :             : }
    2535                 :             : 
    2536                 :        8610 : bool PeerManagerImpl::IsContinuationOfLowWorkHeadersSync(Peer& peer, CNode& pfrom, std::vector<CBlockHeader>& headers)
    2537                 :             : {
    2538         [ +  + ]:        8610 :     if (peer.m_headers_sync) {
    2539                 :          17 :         auto result = peer.m_headers_sync->ProcessNextHeaders(headers, headers.size() == m_opts.max_headers_result);
    2540                 :             :         // If it is a valid continuation, we should treat the existing getheaders request as responded to.
    2541         [ +  - ]:          17 :         if (result.success) peer.m_last_getheaders_timestamp = {};
    2542         [ +  + ]:          17 :         if (result.request_more) {
    2543         [ +  - ]:          14 :             auto locator = peer.m_headers_sync->NextHeadersRequestLocator();
    2544                 :             :             // If we were instructed to ask for a locator, it should not be empty.
    2545                 :          14 :             Assume(!locator.vHave.empty());
    2546                 :             :             // We can only be instructed to request more if processing was successful.
    2547                 :          14 :             Assume(result.success);
    2548         [ +  - ]:          14 :             if (!locator.vHave.empty()) {
    2549                 :             :                 // It should be impossible for the getheaders request to fail,
    2550                 :             :                 // because we just cleared the last getheaders timestamp.
    2551         [ +  - ]:          14 :                 bool sent_getheaders = MaybeSendGetHeaders(pfrom, locator, peer);
    2552                 :          14 :                 Assume(sent_getheaders);
    2553   [ +  -  +  -  :          28 :                 LogDebug(BCLog::NET, "more getheaders (from %s) to peer=%d\n",
             +  -  +  - ]
    2554                 :             :                     locator.vHave.front().ToString(), pfrom.GetId());
    2555                 :             :             }
    2556                 :          14 :         }
    2557                 :             : 
    2558         [ +  + ]:          17 :         if (peer.m_headers_sync->GetState() == HeadersSyncState::State::FINAL) {
    2559         [ +  - ]:           3 :             peer.m_headers_sync.reset(nullptr);
    2560                 :             : 
    2561                 :             :             // Delete this peer's entry in m_headers_presync_stats.
    2562                 :             :             // If this is m_headers_presync_bestpeer, it will be replaced later
    2563                 :             :             // by the next peer that triggers the else{} branch below.
    2564         [ +  - ]:           3 :             LOCK(m_headers_presync_mutex);
    2565         [ +  - ]:           3 :             m_headers_presync_stats.erase(pfrom.GetId());
    2566                 :           3 :         } else {
    2567                 :             :             // Build statistics for this peer's sync.
    2568                 :          14 :             HeadersPresyncStats stats;
    2569         [ +  + ]:         140 :             stats.first = peer.m_headers_sync->GetPresyncWork();
    2570         [ +  + ]:          14 :             if (peer.m_headers_sync->GetState() == HeadersSyncState::State::PRESYNC) {
    2571         [ -  + ]:           6 :                 stats.second = {peer.m_headers_sync->GetPresyncHeight(),
    2572         [ -  + ]:           6 :                                 peer.m_headers_sync->GetPresyncTime()};
    2573                 :             :             }
    2574                 :             : 
    2575                 :             :             // Update statistics in stats.
    2576         [ +  - ]:          14 :             LOCK(m_headers_presync_mutex);
    2577         [ +  - ]:          14 :             m_headers_presync_stats[pfrom.GetId()] = stats;
    2578                 :          14 :             auto best_it = m_headers_presync_stats.find(m_headers_presync_bestpeer);
    2579                 :          14 :             bool best_updated = false;
    2580         [ +  + ]:          14 :             if (best_it == m_headers_presync_stats.end()) {
    2581                 :             :                 // If the cached best peer is outdated, iterate over all remaining ones (including
    2582                 :             :                 // newly updated one) to find the best one.
    2583                 :           4 :                 NodeId peer_best{-1};
    2584                 :           4 :                 const HeadersPresyncStats* stat_best{nullptr};
    2585   [ -  +  +  + ]:           8 :                 for (const auto& [peer, stat] : m_headers_presync_stats) {
    2586   [ -  +  -  -  :           4 :                     if (!stat_best || stat > *stat_best) {
                   -  - ]
    2587                 :           4 :                         peer_best = peer;
    2588                 :           4 :                         stat_best = &stat;
    2589                 :             :                     }
    2590                 :             :                 }
    2591                 :           4 :                 m_headers_presync_bestpeer = peer_best;
    2592         [ +  - ]:           4 :                 best_updated = (peer_best == pfrom.GetId());
    2593   [ -  +  -  -  :          10 :             } else if (best_it->first == pfrom.GetId() || stats > best_it->second) {
                   -  - ]
    2594                 :             :                 // pfrom was and remains the best peer, or pfrom just became best.
    2595                 :          10 :                 m_headers_presync_bestpeer = pfrom.GetId();
    2596                 :          10 :                 best_updated = true;
    2597                 :             :             }
    2598   [ +  -  +  + ]:          14 :             if (best_updated && stats.second.has_value()) {
    2599                 :             :                 // If the best peer updated, and it is in its first phase, signal.
    2600                 :           6 :                 m_headers_presync_should_signal = true;
    2601                 :             :             }
    2602                 :          14 :         }
    2603                 :             : 
    2604         [ +  - ]:          17 :         if (result.success) {
    2605                 :             :             // We only overwrite the headers passed in if processing was
    2606                 :             :             // successful.
    2607                 :          17 :             headers.swap(result.pow_validated_headers);
    2608                 :             :         }
    2609                 :             : 
    2610                 :          17 :         return result.success;
    2611                 :          17 :     }
    2612                 :             :     // Either we didn't have a sync in progress, or something went wrong
    2613                 :             :     // processing these headers, or we are returning headers to the caller to
    2614                 :             :     // process.
    2615                 :             :     return false;
    2616                 :             : }
    2617                 :             : 
    2618                 :        1580 : bool PeerManagerImpl::TryLowWorkHeadersSync(Peer& peer, CNode& pfrom, const CBlockIndex* chain_start_header, std::vector<CBlockHeader>& headers)
    2619                 :             : {
    2620                 :             :     // Calculate the claimed total work on this chain.
    2621                 :        1580 :     arith_uint256 total_work = chain_start_header->nChainWork + CalculateClaimedHeadersWork(headers);
    2622                 :             : 
    2623                 :             :     // Our dynamic anti-DoS threshold (minimum work required on a headers chain
    2624                 :             :     // before we'll store it)
    2625                 :        1580 :     arith_uint256 minimum_chain_work = GetAntiDoSWorkThreshold();
    2626                 :             : 
    2627                 :             :     // Avoid DoS via low-difficulty-headers by only processing if the headers
    2628                 :             :     // are part of a chain with sufficient work.
    2629         [ +  + ]:        1580 :     if (total_work < minimum_chain_work) {
    2630                 :             :         // Only try to sync with this peer if their headers message was full;
    2631                 :             :         // otherwise they don't have more headers after this so no point in
    2632                 :             :         // trying to sync their too-little-work chain.
    2633         [ +  + ]:          84 :         if (headers.size() == m_opts.max_headers_result) {
    2634                 :             :             // Note: we could advance to the last header in this set that is
    2635                 :             :             // known to us, rather than starting at the first header (which we
    2636                 :             :             // may already have); however this is unlikely to matter much since
    2637                 :             :             // ProcessHeadersMessage() already handles the case where all
    2638                 :             :             // headers in a received message are already known and are
    2639                 :             :             // ancestors of m_best_header or chainActive.Tip(), by skipping
    2640                 :             :             // this logic in that case. So even if the first header in this set
    2641                 :             :             // of headers is known, some header in this set must be new, so
    2642                 :             :             // advancing to the first unknown header would be a small effect.
    2643                 :           4 :             LOCK(peer.m_headers_sync_mutex);
    2644   [ +  -  -  + ]:           4 :             peer.m_headers_sync.reset(new HeadersSyncState(peer.m_id, m_chainparams.GetConsensus(),
    2645   [ +  -  +  - ]:           4 :                 chain_start_header, minimum_chain_work));
    2646                 :             : 
    2647                 :             :             // Now a HeadersSyncState object for tracking this synchronization
    2648                 :             :             // is created, process the headers using it as normal. Failures are
    2649                 :             :             // handled inside of IsContinuationOfLowWorkHeadersSync.
    2650         [ +  - ]:           4 :             (void)IsContinuationOfLowWorkHeadersSync(peer, pfrom, headers);
    2651                 :           4 :         } else {
    2652         [ +  - ]:          80 :             LogDebug(BCLog::NET, "Ignoring low-work chain (height=%u) from peer=%d\n", chain_start_header->nHeight + headers.size(), pfrom.GetId());
    2653                 :             :         }
    2654                 :             : 
    2655                 :             :         // The peer has not yet given us a chain that meets our work threshold,
    2656                 :             :         // so we want to prevent further processing of the headers in any case.
    2657                 :          84 :         headers = {};
    2658                 :          84 :         return true;
    2659                 :             :     }
    2660                 :             : 
    2661                 :             :     return false;
    2662                 :             : }
    2663                 :             : 
    2664                 :        8332 : bool PeerManagerImpl::IsAncestorOfBestHeaderOrTip(const CBlockIndex* header)
    2665                 :             : {
    2666         [ +  + ]:        8332 :     if (header == nullptr) {
    2667                 :             :         return false;
    2668   [ +  -  +  + ]:        6106 :     } else if (m_chainman.m_best_header != nullptr && header == m_chainman.m_best_header->GetAncestor(header->nHeight)) {
    2669                 :             :         return true;
    2670         [ -  + ]:          14 :     } else if (m_chainman.ActiveChain().Contains(header)) {
    2671                 :           0 :         return true;
    2672                 :             :     }
    2673                 :             :     return false;
    2674                 :             : }
    2675                 :             : 
    2676                 :        2233 : bool PeerManagerImpl::MaybeSendGetHeaders(CNode& pfrom, const CBlockLocator& locator, Peer& peer)
    2677                 :             : {
    2678                 :        2233 :     const auto current_time = NodeClock::now();
    2679                 :             : 
    2680                 :             :     // Only allow a new getheaders message to go out if we don't have a recent
    2681                 :             :     // one already in-flight
    2682         [ +  + ]:        2233 :     if (current_time - peer.m_last_getheaders_timestamp > HEADERS_RESPONSE_TIME) {
    2683         [ +  - ]:        2007 :         MakeAndPushMessage(pfrom, NetMsgType::GETHEADERS, locator, uint256());
    2684                 :        2007 :         peer.m_last_getheaders_timestamp = current_time;
    2685                 :        2007 :         return true;
    2686                 :             :     }
    2687                 :             :     return false;
    2688                 :             : }
    2689                 :             : 
    2690                 :             : /*
    2691                 :             :  * Given a new headers tip ending in last_header, potentially request blocks towards that tip.
    2692                 :             :  * We require that the given tip have at least as much work as our tip, and for
    2693                 :             :  * our current tip to be "close to synced" (see CanDirectFetch()).
    2694                 :             :  */
    2695                 :        8160 : void PeerManagerImpl::HeadersDirectFetchBlocks(CNode& pfrom, const Peer& peer, const CBlockIndex& last_header)
    2696                 :             : {
    2697                 :        8160 :     LOCK(cs_main);
    2698                 :        8160 :     CNodeState *nodestate = State(pfrom.GetId());
    2699                 :             : 
    2700   [ +  -  +  +  :       30343 :     if (CanDirectFetch() && last_header.IsValid(BLOCK_VALID_TREE) && m_chainman.ActiveChain().Tip()->nChainWork <= last_header.nChainWork) {
          +  -  +  -  +  
          -  +  -  +  +  
                   +  - ]
    2701                 :        6959 :         std::vector<const CBlockIndex*> vToFetch;
    2702                 :        6959 :         const CBlockIndex* pindexWalk{&last_header};
    2703                 :             :         // Calculate all the blocks we'd need to switch to last_header, up to a limit.
    2704   [ +  -  +  -  :       74847 :         while (pindexWalk && !m_chainman.ActiveChain().Contains(pindexWalk) && vToFetch.size() <= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
             +  +  +  + ]
    2705         [ +  + ]:       60517 :             if (!(pindexWalk->nStatus & BLOCK_HAVE_DATA) &&
    2706   [ +  +  +  + ]:      112714 :                     !IsBlockRequested(pindexWalk->GetBlockHash()) &&
    2707         [ +  + ]:       89320 :                     (!DeploymentActiveAt(*pindexWalk, m_chainman, Consensus::DEPLOYMENT_SEGWIT) || CanServeWitnesses(peer))) {
    2708                 :             :                 // We don't have this block, and it's not yet in flight.
    2709         [ +  - ]:       44825 :                 vToFetch.push_back(pindexWalk);
    2710                 :             :             }
    2711                 :       67888 :             pindexWalk = pindexWalk->pprev;
    2712                 :             :         }
    2713                 :             :         // If pindexWalk still isn't on our main chain, we're looking at a
    2714                 :             :         // very large reorg at a time we think we're close to caught up to
    2715                 :             :         // the main chain -- this shouldn't really happen.  Bail out on the
    2716                 :             :         // direct fetch and rely on parallel download instead.
    2717   [ +  -  +  + ]:        6959 :         if (!m_chainman.ActiveChain().Contains(pindexWalk)) {
    2718   [ +  -  +  -  :        4560 :             LogDebug(BCLog::NET, "Large reorg, won't direct fetch to %s (%d)\n",
             +  -  +  - ]
    2719                 :             :                      last_header.GetBlockHash().ToString(),
    2720                 :             :                      last_header.nHeight);
    2721                 :             :         } else {
    2722                 :        4679 :             std::vector<CInv> vGetData;
    2723                 :             :             // Download as much as possible, from earliest to latest.
    2724         [ +  + ]:        8461 :             for (const CBlockIndex* pindex : vToFetch | std::views::reverse) {
    2725         [ +  + ]:        4066 :                 if (nodestate->vBlocksInFlight.size() >= MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
    2726                 :             :                     // Can't download any more from this peer
    2727                 :             :                     break;
    2728                 :             :                 }
    2729                 :        3782 :                 uint32_t nFetchFlags = GetFetchFlags(peer);
    2730         [ +  - ]:        3782 :                 vGetData.emplace_back(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash());
    2731         [ +  - ]:        3782 :                 BlockRequested(pfrom.GetId(), *pindex);
    2732   [ +  -  +  -  :        7564 :                 LogDebug(BCLog::NET, "Requesting block %s from  peer=%d\n",
             +  -  +  - ]
    2733                 :             :                         pindex->GetBlockHash().ToString(), pfrom.GetId());
    2734                 :             :             }
    2735         [ +  + ]:        4679 :             if (vGetData.size() > 1) {
    2736   [ +  -  +  -  :        1092 :                 LogDebug(BCLog::NET, "Downloading blocks toward %s (%d) via headers direct fetch\n",
             +  -  +  - ]
    2737                 :             :                          last_header.GetBlockHash().ToString(),
    2738                 :             :                          last_header.nHeight);
    2739                 :             :             }
    2740         [ +  + ]:        4679 :             if (vGetData.size() > 0) {
    2741                 :        5457 :                 if (!m_opts.ignore_incoming_txs &&
    2742         [ +  + ]:        2728 :                         nodestate->m_provides_cmpctblocks &&
    2743   [ +  +  +  + ]:        2474 :                         vGetData.size() == 1 &&
    2744   [ +  +  +  + ]:        4790 :                         mapBlocksInFlight.size() == 1 &&
    2745   [ +  -  +  + ]:         292 :                         last_header.pprev->IsValid(BLOCK_VALID_CHAIN)) {
    2746                 :             :                     // In any case, we want to download using a compact block, not a regular one
    2747         [ +  - ]:         288 :                     vGetData[0] = CInv(MSG_CMPCT_BLOCK, vGetData[0].hash);
    2748                 :             :                 }
    2749   [ +  -  +  - ]:        5458 :                 MakeAndPushMessage(pfrom, NetMsgType::GETDATA, vGetData);
    2750                 :             :             }
    2751                 :        4679 :         }
    2752                 :        6959 :     }
    2753                 :        8160 : }
    2754                 :             : 
    2755                 :             : /**
    2756                 :             :  * Given receipt of headers from a peer ending in last_header, along with
    2757                 :             :  * whether that header was new and whether the headers message was full,
    2758                 :             :  * update the state we keep for the peer.
    2759                 :             :  */
    2760                 :        8160 : void PeerManagerImpl::UpdatePeerStateForReceivedHeaders(CNode& pfrom, Peer& peer,
    2761                 :             :         const CBlockIndex& last_header, bool received_new_header, bool may_have_more_headers)
    2762                 :             : {
    2763                 :        8160 :     LOCK(cs_main);
    2764                 :        8160 :     CNodeState *nodestate = State(pfrom.GetId());
    2765                 :             : 
    2766         [ +  - ]:        8160 :     UpdateBlockAvailability(pfrom.GetId(), last_header.GetBlockHash());
    2767                 :             : 
    2768                 :             :     // From here, pindexBestKnownBlock should be guaranteed to be non-null,
    2769                 :             :     // because it is set in UpdateBlockAvailability. Some nullptr checks
    2770                 :             :     // are still present, however, as belt-and-suspenders.
    2771                 :             : 
    2772   [ +  +  +  -  :       10218 :     if (received_new_header && last_header.nChainWork > m_chainman.ActiveChain().Tip()->nChainWork) {
          +  -  +  -  +  
                      + ]
    2773         [ +  - ]:        2009 :         nodestate->m_last_block_announcement = GetTime();
    2774                 :             :     }
    2775                 :             : 
    2776                 :             :     // If we're in IBD, we want outbound peers that will serve us a useful
    2777                 :             :     // chain. Disconnect peers that are on chains with insufficient work.
    2778   [ +  -  +  +  :        8160 :     if (m_chainman.IsInitialBlockDownload() && !may_have_more_headers) {
                   +  + ]
    2779                 :             :         // If the peer has no more headers to give us, then we know we have
    2780                 :             :         // their tip.
    2781   [ +  -  +  -  :         428 :         if (nodestate->pindexBestKnownBlock && nodestate->pindexBestKnownBlock->nChainWork < m_chainman.MinimumChainWork()) {
             +  -  +  + ]
    2782                 :             :             // This peer has too little work on their headers chain to help
    2783                 :             :             // us sync -- disconnect if it is an outbound disconnection
    2784                 :             :             // candidate.
    2785                 :             :             // Note: We compare their tip to the minimum chain work (rather than
    2786                 :             :             // m_chainman.ActiveChain().Tip()) because we won't start block download
    2787                 :             :             // until we have a headers chain that has at least
    2788                 :             :             // the minimum chain work, even if a peer has a chain past our tip,
    2789                 :             :             // as an anti-DoS measure.
    2790         [ -  + ]:          28 :             if (pfrom.IsOutboundOrBlockRelayConn()) {
    2791   [ #  #  #  # ]:           0 :                 LogInfo("outbound peer headers chain has insufficient work, %s\n", pfrom.DisconnectMsg(fLogIPs));
    2792                 :           0 :                 pfrom.fDisconnect = true;
    2793                 :             :             }
    2794                 :             :         }
    2795                 :             :     }
    2796                 :             : 
    2797                 :             :     // If this is an outbound full-relay peer, check to see if we should protect
    2798                 :             :     // it from the bad/lagging chain logic.
    2799                 :             :     // Note that outbound block-relay peers are excluded from this protection, and
    2800                 :             :     // thus always subject to eviction under the bad/lagging chain logic.
    2801                 :             :     // See ChainSyncTimeoutState.
    2802   [ +  -  +  +  :        8160 :     if (!pfrom.fDisconnect && pfrom.IsFullOutboundConn() && nodestate->pindexBestKnownBlock != nullptr) {
                   +  - ]
    2803   [ +  +  +  -  :          63 :         if (m_outbound_peers_with_protect_from_disconnect < MAX_OUTBOUND_PEERS_TO_PROTECT_FROM_DISCONNECT && nodestate->pindexBestKnownBlock->nChainWork >= m_chainman.ActiveChain().Tip()->nChainWork && !nodestate->m_chain_sync.m_protect) {
          +  -  +  -  +  
                +  +  - ]
    2804   [ +  -  +  -  :          14 :             LogDebug(BCLog::NET, "Protecting outbound peer=%d from eviction\n", pfrom.GetId());
                   +  - ]
    2805                 :          14 :             nodestate->m_chain_sync.m_protect = true;
    2806                 :          14 :             ++m_outbound_peers_with_protect_from_disconnect;
    2807                 :             :         }
    2808                 :             :     }
    2809                 :        8160 : }
    2810                 :             : 
    2811                 :        8982 : void PeerManagerImpl::ProcessHeadersMessage(CNode& pfrom, Peer& peer,
    2812                 :             :                                             std::vector<CBlockHeader>&& headers,
    2813                 :             :                                             bool via_compact_block)
    2814                 :             : {
    2815         [ +  + ]:        8982 :     size_t nCount = headers.size();
    2816                 :             : 
    2817         [ +  + ]:        8982 :     if (nCount == 0) {
    2818                 :             :         // Nothing interesting. Stop asking this peers for more headers.
    2819                 :             :         // If we were in the middle of headers sync, receiving an empty headers
    2820                 :             :         // message suggests that the peer suddenly has nothing to give us
    2821                 :             :         // (perhaps it reorged to our chain). Clear download state for this peer.
    2822                 :         374 :         LOCK(peer.m_headers_sync_mutex);
    2823         [ -  + ]:         374 :         if (peer.m_headers_sync) {
    2824                 :           0 :             peer.m_headers_sync.reset(nullptr);
    2825         [ #  # ]:           0 :             LOCK(m_headers_presync_mutex);
    2826         [ #  # ]:           0 :             m_headers_presync_stats.erase(pfrom.GetId());
    2827                 :           0 :         }
    2828                 :             :         // A headers message with no headers cannot be an announcement, so assume
    2829                 :             :         // it is a response to our last getheaders request, if there is one.
    2830         [ +  - ]:         374 :         peer.m_last_getheaders_timestamp = {};
    2831         [ +  - ]:         374 :         return;
    2832                 :         374 :     }
    2833                 :             : 
    2834                 :             :     // Before we do any processing, make sure these pass basic sanity checks.
    2835                 :             :     // We'll rely on headers having valid proof-of-work further down, as an
    2836                 :             :     // anti-DoS criteria (note: this check is required before passing any
    2837                 :             :     // headers into HeadersSyncState).
    2838         [ +  + ]:        8608 :     if (!CheckHeadersPoW(headers, m_chainparams.GetConsensus(), peer)) {
    2839                 :             :         // Misbehaving() calls are handled within CheckHeadersPoW(), so we can
    2840                 :             :         // just return. (Note that even if a header is announced via compact
    2841                 :             :         // block, the header itself should be valid, so this type of error can
    2842                 :             :         // always be punished.)
    2843                 :             :         return;
    2844                 :             :     }
    2845                 :             : 
    2846                 :        8606 :     const CBlockIndex *pindexLast = nullptr;
    2847                 :             : 
    2848                 :             :     // We'll set already_validated_work to true if these headers are
    2849                 :             :     // successfully processed as part of a low-work headers sync in progress
    2850                 :             :     // (either in PRESYNC or REDOWNLOAD phase).
    2851                 :             :     // If true, this will mean that any headers returned to us (ie during
    2852                 :             :     // REDOWNLOAD) can be validated without further anti-DoS checks.
    2853                 :        8606 :     bool already_validated_work = false;
    2854                 :             : 
    2855                 :             :     // If we're in the middle of headers sync, let it do its magic.
    2856                 :        8606 :     bool have_headers_sync = false;
    2857                 :        8606 :     {
    2858                 :        8606 :         LOCK(peer.m_headers_sync_mutex);
    2859                 :             : 
    2860         [ +  - ]:        8606 :         already_validated_work = IsContinuationOfLowWorkHeadersSync(peer, pfrom, headers);
    2861                 :             : 
    2862                 :             :         // The headers we passed in may have been:
    2863                 :             :         // - untouched, perhaps if no headers-sync was in progress, or some
    2864                 :             :         //   failure occurred
    2865                 :             :         // - erased, such as if the headers were successfully processed and no
    2866                 :             :         //   additional headers processing needs to take place (such as if we
    2867                 :             :         //   are still in PRESYNC)
    2868                 :             :         // - replaced with headers that are now ready for validation, such as
    2869                 :             :         //   during the REDOWNLOAD phase of a low-work headers sync.
    2870                 :             :         // So just check whether we still have headers that we need to process,
    2871                 :             :         // or not.
    2872         [ +  + ]:        8606 :         if (headers.empty()) {
    2873         [ +  - ]:          10 :             return;
    2874                 :             :         }
    2875                 :             : 
    2876         [ +  - ]:        8596 :         have_headers_sync = !!peer.m_headers_sync;
    2877                 :          10 :     }
    2878                 :             : 
    2879                 :             :     // Do these headers connect to something in our block index?
    2880   [ +  -  +  - ]:       25788 :     const CBlockIndex *chain_start_header{WITH_LOCK(::cs_main, return m_chainman.m_blockman.LookupBlockIndex(headers[0].hashPrevBlock))};
    2881                 :        8596 :     bool headers_connect_blockindex{chain_start_header != nullptr};
    2882                 :             : 
    2883         [ +  + ]:        8596 :     if (!headers_connect_blockindex) {
    2884                 :             :         // This could be a BIP 130 block announcement, use
    2885                 :             :         // special logic for handling headers that don't connect, as this
    2886                 :             :         // could be benign.
    2887                 :         264 :         HandleUnconnectingHeaders(pfrom, peer, headers);
    2888                 :         264 :         return;
    2889                 :             :     }
    2890                 :             : 
    2891                 :             :     // If headers connect, assume that this is in response to any outstanding getheaders
    2892                 :             :     // request we may have sent, and clear out the time of our last request. Non-connecting
    2893                 :             :     // headers cannot be a response to a getheaders request.
    2894                 :        8332 :     peer.m_last_getheaders_timestamp = {};
    2895                 :             : 
    2896                 :             :     // If the headers we received are already in memory and an ancestor of
    2897                 :             :     // m_best_header or our tip, skip anti-DoS checks. These headers will not
    2898                 :             :     // use any more memory (and we are not leaking information that could be
    2899                 :             :     // used to fingerprint us).
    2900                 :        8332 :     const CBlockIndex *last_received_header{nullptr};
    2901                 :        8332 :     {
    2902                 :        8332 :         LOCK(cs_main);
    2903   [ +  -  +  - ]:        8332 :         last_received_header = m_chainman.m_blockman.LookupBlockIndex(headers.back().GetHash());
    2904   [ +  -  +  + ]:        8332 :         if (IsAncestorOfBestHeaderOrTip(last_received_header)) {
    2905                 :        6092 :             already_validated_work = true;
    2906                 :             :         }
    2907                 :           0 :     }
    2908                 :             : 
    2909                 :             :     // If our peer has NetPermissionFlags::NoBan privileges, then bypass our
    2910                 :             :     // anti-DoS logic (this saves bandwidth when we connect to a trusted peer
    2911                 :             :     // on startup).
    2912         [ +  + ]:        8332 :     if (pfrom.HasPermission(NetPermissionFlags::NoBan)) {
    2913                 :             :         already_validated_work = true;
    2914                 :             :     }
    2915                 :             : 
    2916                 :             :     // At this point, the headers connect to something in our block index.
    2917                 :             :     // Do anti-DoS checks to determine if we should process or store for later
    2918                 :             :     // processing.
    2919   [ +  +  +  + ]:        5829 :     if (!already_validated_work && TryLowWorkHeadersSync(peer, pfrom,
    2920                 :             :                 chain_start_header, headers)) {
    2921                 :             :         // If we successfully started a low-work headers sync, then there
    2922                 :             :         // should be no headers to process any further.
    2923                 :             :         Assume(headers.empty());
    2924                 :             :         return;
    2925                 :             :     }
    2926                 :             : 
    2927                 :             :     // At this point, we have a set of headers with sufficient work on them
    2928                 :             :     // which can be processed.
    2929                 :             : 
    2930                 :             :     // If we don't have the last header, then this peer will have given us
    2931                 :             :     // something new (if these headers are valid).
    2932                 :        8248 :     bool received_new_header{last_received_header == nullptr};
    2933                 :             : 
    2934                 :             :     // Now process all the headers.
    2935         [ +  - ]:        8248 :     BlockValidationState state;
    2936   [ +  -  +  + ]:        8248 :     if (!m_chainman.ProcessNewBlockHeaders(headers, /*min_pow_checked=*/true, state, &pindexLast)) {
    2937         [ +  - ]:          88 :         if (state.IsInvalid()) {
    2938   [ +  -  +  - ]:          88 :             MaybePunishNodeForBlock(pfrom.GetId(), state, via_compact_block, "invalid header received");
    2939                 :          88 :             return;
    2940                 :             :         }
    2941                 :             :     }
    2942         [ -  + ]:        8160 :     assert(pindexLast);
    2943                 :             : 
    2944                 :             :     // Consider fetching more headers if we are not using our headers-sync mechanism.
    2945   [ +  +  +  - ]:        8160 :     if (nCount == m_opts.max_headers_result && !have_headers_sync) {
    2946                 :             :         // Headers message had its maximum size; the peer may have more headers.
    2947   [ +  -  +  -  :          16 :         if (MaybeSendGetHeaders(pfrom, GetLocator(pindexLast), peer)) {
                   +  - ]
    2948   [ +  -  +  -  :          16 :             LogDebug(BCLog::NET, "more getheaders (%d) to end to peer=%d (startheight:%d)\n",
                   +  - ]
    2949                 :             :                     pindexLast->nHeight, pfrom.GetId(), peer.m_starting_height);
    2950                 :             :         }
    2951                 :             :     }
    2952                 :             : 
    2953         [ +  - ]:        8160 :     UpdatePeerStateForReceivedHeaders(pfrom, peer, *pindexLast, received_new_header, nCount == m_opts.max_headers_result);
    2954                 :             : 
    2955                 :             :     // Consider immediately downloading blocks.
    2956         [ +  - ]:        8160 :     HeadersDirectFetchBlocks(pfrom, peer, *pindexLast);
    2957                 :             : 
    2958                 :             :     return;
    2959                 :        8248 : }
    2960                 :             : 
    2961                 :         573 : std::optional<node::PackageToValidate> PeerManagerImpl::ProcessInvalidTx(NodeId nodeid, const CTransactionRef& ptx, const TxValidationState& state,
    2962                 :             :                                        bool first_time_failure)
    2963                 :             : {
    2964                 :         573 :     AssertLockNotHeld(m_peer_mutex);
    2965                 :         573 :     AssertLockHeld(g_msgproc_mutex);
    2966                 :         573 :     AssertLockHeld(m_tx_download_mutex);
    2967                 :             : 
    2968                 :         573 :     PeerRef peer{GetPeerRef(nodeid)};
    2969                 :             : 
    2970   [ +  -  +  -  :        1146 :     LogDebug(BCLog::MEMPOOLREJ, "%s (wtxid=%s) from peer=%d was not accepted: %s\n",
          +  -  +  -  +  
                -  +  - ]
    2971                 :             :         ptx->GetHash().ToString(),
    2972                 :             :         ptx->GetWitnessHash().ToString(),
    2973                 :             :         nodeid,
    2974                 :             :         state.ToString());
    2975                 :             : 
    2976         [ +  - ]:         573 :     const auto& [add_extra_compact_tx, unique_parents, package_to_validate] = m_txdownloadman.MempoolRejectedTx(ptx, state, nodeid, first_time_failure);
    2977                 :             : 
    2978   [ +  +  +  + ]:         573 :     if (add_extra_compact_tx && RecursiveDynamicUsage(*ptx) < 100000) {
    2979         [ +  - ]:         557 :         AddToCompactExtraTransactions(ptx);
    2980                 :             :     }
    2981         [ +  + ]:         961 :     for (const Txid& parent_txid : unique_parents) {
    2982   [ +  -  +  - ]:         388 :         if (peer) AddKnownTx(*peer, parent_txid);
    2983                 :             :     }
    2984                 :             : 
    2985         [ +  - ]:         573 :     MaybePunishNodeForTx(nodeid, state);
    2986                 :             : 
    2987         [ +  - ]:         573 :     return package_to_validate;
    2988         [ +  - ]:        1146 : }
    2989                 :             : 
    2990                 :       11826 : void PeerManagerImpl::ProcessValidTx(NodeId nodeid, const CTransactionRef& tx, const std::list<CTransactionRef>& replaced_transactions)
    2991                 :             : {
    2992                 :       11826 :     AssertLockNotHeld(m_peer_mutex);
    2993                 :       11826 :     AssertLockHeld(g_msgproc_mutex);
    2994                 :       11826 :     AssertLockHeld(m_tx_download_mutex);
    2995                 :             : 
    2996                 :       11826 :     m_txdownloadman.MempoolAcceptedTx(tx);
    2997                 :             : 
    2998   [ +  -  +  -  :       23652 :     LogDebug(BCLog::MEMPOOL, "AcceptToMemoryPool: peer=%d: accepted %s (wtxid=%s) (poolsz %u txn, %u kB)\n",
                   +  - ]
    2999                 :             :              nodeid,
    3000                 :             :              tx->GetHash().ToString(),
    3001                 :             :              tx->GetWitnessHash().ToString(),
    3002                 :             :              m_mempool.size(), m_mempool.DynamicMemoryUsage() / 1000);
    3003                 :             : 
    3004                 :       11826 :     RelayTransaction(tx->GetHash(), tx->GetWitnessHash());
    3005                 :             : 
    3006         [ +  + ]:       12326 :     for (const CTransactionRef& removedTx : replaced_transactions) {
    3007                 :         500 :         AddToCompactExtraTransactions(removedTx);
    3008                 :             :     }
    3009                 :       11826 : }
    3010                 :             : 
    3011                 :          25 : void PeerManagerImpl::ProcessPackageResult(const node::PackageToValidate& package_to_validate, const PackageMempoolAcceptResult& package_result)
    3012                 :             : {
    3013                 :          25 :     AssertLockNotHeld(m_peer_mutex);
    3014                 :          25 :     AssertLockHeld(g_msgproc_mutex);
    3015                 :          25 :     AssertLockHeld(m_tx_download_mutex);
    3016                 :             : 
    3017                 :          25 :     const auto& package = package_to_validate.m_txns;
    3018                 :          25 :     const auto& senders = package_to_validate.m_senders;
    3019                 :             : 
    3020         [ +  + ]:          25 :     if (package_result.m_state.IsInvalid()) {
    3021                 :           4 :         m_txdownloadman.MempoolRejectedPackage(package);
    3022                 :             :     }
    3023                 :             :     // We currently only expect to process 1-parent-1-child packages. Remove if this changes.
    3024         [ +  - ]:          25 :     if (!Assume(package.size() == 2)) return;
    3025                 :             : 
    3026                 :             :     // Iterate backwards to erase in-package descendants from the orphanage before they become
    3027                 :             :     // relevant in AddChildrenToWorkSet.
    3028                 :          25 :     auto package_iter = package.rbegin();
    3029                 :          25 :     auto senders_iter = senders.rbegin();
    3030         [ +  + ]:          75 :     while (package_iter != package.rend()) {
    3031                 :          50 :         const auto& tx = *package_iter;
    3032                 :          50 :         const NodeId nodeid = *senders_iter;
    3033                 :          50 :         const auto it_result{package_result.m_tx_results.find(tx->GetWitnessHash())};
    3034                 :             : 
    3035                 :             :         // It is not guaranteed that a result exists for every transaction.
    3036         [ +  + ]:          50 :         if (it_result != package_result.m_tx_results.end()) {
    3037      [ +  +  - ]:          48 :             const auto& tx_result = it_result->second;
    3038      [ +  +  - ]:          48 :             switch (tx_result.m_result_type) {
    3039                 :          42 :                 case MempoolAcceptResult::ResultType::VALID:
    3040                 :          42 :                 {
    3041                 :          42 :                     ProcessValidTx(nodeid, tx, tx_result.m_replaced_transactions);
    3042                 :          42 :                     break;
    3043                 :             :                 }
    3044                 :           6 :                 case MempoolAcceptResult::ResultType::INVALID:
    3045                 :           6 :                 case MempoolAcceptResult::ResultType::DIFFERENT_WITNESS:
    3046                 :           6 :                 {
    3047                 :             :                     // Don't add to vExtraTxnForCompact, as these transactions should have already been
    3048                 :             :                     // added there when added to the orphanage or rejected for TX_RECONSIDERABLE.
    3049                 :             :                     // This should be updated if package submission is ever used for transactions
    3050                 :             :                     // that haven't already been validated before.
    3051         [ -  + ]:           6 :                     ProcessInvalidTx(nodeid, tx, tx_result.m_state, /*first_time_failure=*/false);
    3052                 :           6 :                     break;
    3053                 :             :                 }
    3054                 :             :                 case MempoolAcceptResult::ResultType::MEMPOOL_ENTRY:
    3055                 :             :                 {
    3056                 :             :                     // AlreadyHaveTx() should be catching transactions that are already in mempool.
    3057                 :             :                     Assume(false);
    3058                 :             :                     break;
    3059                 :             :                 }
    3060                 :             :             }
    3061                 :             :         }
    3062                 :          50 :         package_iter++;
    3063                 :          50 :         senders_iter++;
    3064                 :             :     }
    3065                 :             : }
    3066                 :             : 
    3067                 :      403519 : bool PeerManagerImpl::ProcessOrphanTx(Peer& peer)
    3068                 :             : {
    3069                 :      403519 :     AssertLockHeld(g_msgproc_mutex);
    3070         [ +  - ]:      403519 :     LOCK2(::cs_main, m_tx_download_mutex);
    3071                 :             : 
    3072                 :      403519 :     CTransactionRef porphanTx = nullptr;
    3073                 :             : 
    3074   [ +  -  +  + ]:      403520 :     while (CTransactionRef porphanTx = m_txdownloadman.GetTxToReconsider(peer.m_id)) {
    3075         [ +  - ]:         124 :         const MempoolAcceptResult result = m_chainman.ProcessTransaction(porphanTx);
    3076                 :         124 :         const TxValidationState& state = result.m_state;
    3077         [ +  + ]:         124 :         const Txid& orphanHash = porphanTx->GetHash();
    3078         [ +  + ]:         124 :         const Wtxid& orphan_wtxid = porphanTx->GetWitnessHash();
    3079                 :             : 
    3080         [ +  + ]:         124 :         if (result.m_result_type == MempoolAcceptResult::ResultType::VALID) {
    3081   [ +  -  +  -  :         232 :             LogDebug(BCLog::TXPACKAGES, "   accepted orphan tx %s (wtxid=%s)\n", orphanHash.ToString(), orphan_wtxid.ToString());
          +  -  +  -  +  
                      - ]
    3082         [ +  - ]:         116 :             ProcessValidTx(peer.m_id, porphanTx, result.m_replaced_transactions);
    3083                 :             :             return true;
    3084         [ +  + ]:           8 :         } else if (state.GetResult() != TxValidationResult::TX_MISSING_INPUTS) {
    3085   [ +  -  +  -  :          14 :             LogDebug(BCLog::TXPACKAGES, "   invalid orphan tx %s (wtxid=%s) from peer=%d. %s\n",
          +  -  +  -  +  
                -  +  - ]
    3086                 :             :                 orphanHash.ToString(),
    3087                 :             :                 orphan_wtxid.ToString(),
    3088                 :             :                 peer.m_id,
    3089                 :             :                 state.ToString());
    3090                 :             : 
    3091   [ +  -  +  -  :           7 :             if (Assume(state.IsInvalid() &&
             +  -  +  - ]
    3092                 :             :                        state.GetResult() != TxValidationResult::TX_UNKNOWN &&
    3093                 :             :                        state.GetResult() != TxValidationResult::TX_NO_MEMPOOL &&
    3094                 :             :                        state.GetResult() != TxValidationResult::TX_RESULT_UNSET)) {
    3095         [ +  - ]:          14 :                 ProcessInvalidTx(peer.m_id, porphanTx, state, /*first_time_failure=*/false);
    3096                 :             :             }
    3097                 :           7 :             return true;
    3098                 :             :         }
    3099   [ +  -  +  - ]:         248 :     }
    3100                 :             : 
    3101                 :      403396 :     return false;
    3102   [ +  -  +  -  :     1210557 : }
                   -  - ]
    3103                 :             : 
    3104                 :          15 : bool PeerManagerImpl::PrepareBlockFilterRequest(CNode& node, Peer& peer,
    3105                 :             :                                                 BlockFilterType filter_type, uint32_t start_height,
    3106                 :             :                                                 const uint256& stop_hash, uint32_t max_height_diff,
    3107                 :             :                                                 const CBlockIndex*& stop_index,
    3108                 :             :                                                 BlockFilterIndex*& filter_index)
    3109                 :             : {
    3110                 :          30 :     const bool supported_filter_type =
    3111         [ +  + ]:          15 :         (filter_type == BlockFilterType::BASIC &&
    3112         [ +  + ]:          14 :          (peer.m_our_services & NODE_COMPACT_FILTERS));
    3113                 :          15 :     if (!supported_filter_type) {
    3114   [ +  -  +  - ]:           8 :         LogDebug(BCLog::NET, "peer requested unsupported block filter type: %d, %s\n",
    3115                 :             :                  static_cast<uint8_t>(filter_type), node.DisconnectMsg(fLogIPs));
    3116                 :           4 :         node.fDisconnect = true;
    3117                 :           4 :         return false;
    3118                 :             :     }
    3119                 :             : 
    3120                 :          11 :     {
    3121                 :          11 :         LOCK(cs_main);
    3122         [ +  - ]:          11 :         stop_index = m_chainman.m_blockman.LookupBlockIndex(stop_hash);
    3123                 :             : 
    3124                 :             :         // Check that the stop block exists and the peer would be allowed to fetch it.
    3125   [ +  +  +  -  :          11 :         if (!stop_index || !BlockRequestAllowed(stop_index)) {
                   +  - ]
    3126   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "peer requested invalid block hash: %s, %s\n",
          +  -  +  -  +  
                      - ]
    3127                 :             :                      stop_hash.ToString(), node.DisconnectMsg(fLogIPs));
    3128         [ +  - ]:           1 :             node.fDisconnect = true;
    3129         [ +  - ]:           1 :             return false;
    3130                 :             :         }
    3131                 :           1 :     }
    3132                 :             : 
    3133                 :          10 :     uint32_t stop_height = stop_index->nHeight;
    3134         [ +  + ]:          10 :     if (start_height > stop_height) {
    3135   [ +  -  +  - ]:           2 :         LogDebug(BCLog::NET, "peer sent invalid getcfilters/getcfheaders with "
    3136                 :             :                  "start height %d and stop height %d, %s\n",
    3137                 :             :                  start_height, stop_height, node.DisconnectMsg(fLogIPs));
    3138                 :           1 :         node.fDisconnect = true;
    3139                 :           1 :         return false;
    3140                 :             :     }
    3141         [ +  + ]:           9 :     if (stop_height - start_height >= max_height_diff) {
    3142   [ +  -  +  - ]:           4 :         LogDebug(BCLog::NET, "peer requested too many cfilters/cfheaders: %d / %d, %s\n",
    3143                 :             :                  stop_height - start_height + 1, max_height_diff, node.DisconnectMsg(fLogIPs));
    3144                 :           2 :         node.fDisconnect = true;
    3145                 :           2 :         return false;
    3146                 :             :     }
    3147                 :             : 
    3148                 :           7 :     filter_index = GetBlockFilterIndex(filter_type);
    3149         [ -  + ]:           7 :     if (!filter_index) {
    3150         [ #  # ]:           0 :         LogDebug(BCLog::NET, "Filter index for supported type %s not found\n", BlockFilterTypeName(filter_type));
    3151                 :           0 :         return false;
    3152                 :             :     }
    3153                 :             : 
    3154                 :             :     return true;
    3155                 :             : }
    3156                 :             : 
    3157                 :           4 : void PeerManagerImpl::ProcessGetCFilters(CNode& node, Peer& peer, DataStream& vRecv)
    3158                 :             : {
    3159                 :           4 :     uint8_t filter_type_ser;
    3160                 :           4 :     uint32_t start_height;
    3161                 :           4 :     uint256 stop_hash;
    3162                 :             : 
    3163                 :           4 :     vRecv >> filter_type_ser >> start_height >> stop_hash;
    3164                 :             : 
    3165                 :           4 :     const BlockFilterType filter_type = static_cast<BlockFilterType>(filter_type_ser);
    3166                 :             : 
    3167                 :           4 :     const CBlockIndex* stop_index;
    3168                 :           4 :     BlockFilterIndex* filter_index;
    3169         [ +  + ]:           4 :     if (!PrepareBlockFilterRequest(node, peer, filter_type, start_height, stop_hash,
    3170                 :             :                                    MAX_GETCFILTERS_SIZE, stop_index, filter_index)) {
    3171                 :             :         return;
    3172                 :             :     }
    3173                 :             : 
    3174                 :           2 :     std::vector<BlockFilter> filters;
    3175   [ +  -  -  + ]:           2 :     if (!filter_index->LookupFilterRange(start_height, stop_index, filters)) {
    3176   [ #  #  #  #  :           0 :         LogDebug(BCLog::NET, "Failed to find block filter in index: filter_type=%s, start_height=%d, stop_hash=%s\n",
          #  #  #  #  #  
                      # ]
    3177                 :             :                      BlockFilterTypeName(filter_type), start_height, stop_hash.ToString());
    3178                 :           0 :         return;
    3179                 :             :     }
    3180                 :             : 
    3181         [ +  + ]:          13 :     for (const auto& filter : filters) {
    3182   [ +  -  +  - ]:          22 :         MakeAndPushMessage(node, NetMsgType::CFILTER, filter);
    3183                 :             :     }
    3184                 :           2 : }
    3185                 :             : 
    3186                 :           5 : void PeerManagerImpl::ProcessGetCFHeaders(CNode& node, Peer& peer, DataStream& vRecv)
    3187                 :             : {
    3188                 :           5 :     uint8_t filter_type_ser;
    3189                 :           5 :     uint32_t start_height;
    3190                 :           5 :     uint256 stop_hash;
    3191                 :             : 
    3192                 :           5 :     vRecv >> filter_type_ser >> start_height >> stop_hash;
    3193                 :             : 
    3194                 :           5 :     const BlockFilterType filter_type = static_cast<BlockFilterType>(filter_type_ser);
    3195                 :             : 
    3196                 :           5 :     const CBlockIndex* stop_index;
    3197                 :           5 :     BlockFilterIndex* filter_index;
    3198         [ +  + ]:           5 :     if (!PrepareBlockFilterRequest(node, peer, filter_type, start_height, stop_hash,
    3199                 :             :                                    MAX_GETCFHEADERS_SIZE, stop_index, filter_index)) {
    3200                 :             :         return;
    3201                 :             :     }
    3202                 :             : 
    3203                 :           2 :     uint256 prev_header;
    3204         [ +  - ]:           2 :     if (start_height > 0) {
    3205                 :           2 :         const CBlockIndex* const prev_block =
    3206                 :           2 :             stop_index->GetAncestor(static_cast<int>(start_height - 1));
    3207         [ -  + ]:           2 :         if (!filter_index->LookupFilterHeader(prev_block, prev_header)) {
    3208   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Failed to find block filter header in index: filter_type=%s, block_hash=%s\n",
                   #  # ]
    3209                 :             :                          BlockFilterTypeName(filter_type), prev_block->GetBlockHash().ToString());
    3210                 :           0 :             return;
    3211                 :             :         }
    3212                 :             :     }
    3213                 :             : 
    3214                 :           2 :     std::vector<uint256> filter_hashes;
    3215   [ +  -  -  + ]:           2 :     if (!filter_index->LookupFilterHashRange(start_height, stop_index, filter_hashes)) {
    3216   [ #  #  #  #  :           0 :         LogDebug(BCLog::NET, "Failed to find block filter hashes in index: filter_type=%s, start_height=%d, stop_hash=%s\n",
          #  #  #  #  #  
                      # ]
    3217                 :             :                      BlockFilterTypeName(filter_type), start_height, stop_hash.ToString());
    3218                 :           0 :         return;
    3219                 :             :     }
    3220                 :             : 
    3221   [ +  -  +  - ]:           4 :     MakeAndPushMessage(node, NetMsgType::CFHEADERS,
    3222                 :             :               filter_type_ser,
    3223         [ +  - ]:           2 :               stop_index->GetBlockHash(),
    3224                 :             :               prev_header,
    3225                 :             :               filter_hashes);
    3226                 :           2 : }
    3227                 :             : 
    3228                 :           6 : void PeerManagerImpl::ProcessGetCFCheckPt(CNode& node, Peer& peer, DataStream& vRecv)
    3229                 :             : {
    3230                 :           6 :     uint8_t filter_type_ser;
    3231                 :           6 :     uint256 stop_hash;
    3232                 :             : 
    3233                 :           6 :     vRecv >> filter_type_ser >> stop_hash;
    3234                 :             : 
    3235                 :           6 :     const BlockFilterType filter_type = static_cast<BlockFilterType>(filter_type_ser);
    3236                 :             : 
    3237                 :           6 :     const CBlockIndex* stop_index;
    3238                 :           6 :     BlockFilterIndex* filter_index;
    3239         [ +  + ]:           6 :     if (!PrepareBlockFilterRequest(node, peer, filter_type, /*start_height=*/0, stop_hash,
    3240                 :             :                                    /*max_height_diff=*/std::numeric_limits<uint32_t>::max(),
    3241                 :             :                                    stop_index, filter_index)) {
    3242                 :             :         return;
    3243                 :             :     }
    3244                 :             : 
    3245                 :           3 :     std::vector<uint256> headers(stop_index->nHeight / CFCHECKPT_INTERVAL);
    3246                 :             : 
    3247                 :             :     // Populate headers.
    3248                 :           3 :     const CBlockIndex* block_index = stop_index;
    3249         [ +  + ]:           7 :     for (int i = headers.size() - 1; i >= 0; i--) {
    3250                 :           4 :         int height = (i + 1) * CFCHECKPT_INTERVAL;
    3251         [ +  - ]:           4 :         block_index = block_index->GetAncestor(height);
    3252                 :             : 
    3253   [ +  -  -  + ]:           4 :         if (!filter_index->LookupFilterHeader(block_index, headers[i])) {
    3254   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Failed to find block filter header in index: filter_type=%s, block_hash=%s\n",
          #  #  #  #  #  
                      # ]
    3255                 :             :                          BlockFilterTypeName(filter_type), block_index->GetBlockHash().ToString());
    3256                 :           0 :             return;
    3257                 :             :         }
    3258                 :             :     }
    3259                 :             : 
    3260   [ +  -  +  - ]:           6 :     MakeAndPushMessage(node, NetMsgType::CFCHECKPT,
    3261                 :             :               filter_type_ser,
    3262         [ +  - ]:           3 :               stop_index->GetBlockHash(),
    3263                 :             :               headers);
    3264                 :           3 : }
    3265                 :             : 
    3266                 :       57420 : void PeerManagerImpl::ProcessBlock(CNode& node, const std::shared_ptr<const CBlock>& block, bool force_processing, bool min_pow_checked)
    3267                 :             : {
    3268                 :       57420 :     bool new_block{false};
    3269                 :       57420 :     m_chainman.ProcessNewBlock(block, force_processing, min_pow_checked, &new_block);
    3270         [ +  + ]:       57420 :     if (new_block) {
    3271                 :       56596 :         node.m_last_block_time = GetTime<std::chrono::seconds>();
    3272                 :             :         // In case this block came from a different peer than we requested
    3273                 :             :         // from, we can erase the block request now anyway (as we just stored
    3274                 :             :         // this block to disk).
    3275                 :       56596 :         LOCK(cs_main);
    3276   [ +  -  +  - ]:       56596 :         RemoveBlockRequest(block->GetHash(), std::nullopt);
    3277                 :       56596 :     } else {
    3278                 :         824 :         LOCK(cs_main);
    3279   [ +  -  +  - ]:        1648 :         mapBlockSource.erase(block->GetHash());
    3280                 :         824 :     }
    3281                 :       57420 : }
    3282                 :             : 
    3283                 :       15435 : void PeerManagerImpl::ProcessCompactBlockTxns(CNode& pfrom, Peer& peer, const BlockTransactions& block_transactions)
    3284                 :             : {
    3285                 :       15435 :     std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
    3286                 :       15435 :     bool fBlockRead{false};
    3287                 :       15435 :     {
    3288         [ +  - ]:       15435 :         LOCK(cs_main);
    3289                 :             : 
    3290                 :       15435 :         auto range_flight = mapBlocksInFlight.equal_range(block_transactions.blockhash);
    3291                 :       15435 :         size_t already_in_flight = std::distance(range_flight.first, range_flight.second);
    3292                 :       15435 :         bool requested_block_from_this_peer{false};
    3293                 :             : 
    3294                 :             :         // Multimap ensures ordering of outstanding requests. It's either empty or first in line.
    3295   [ +  +  +  + ]:       15435 :         bool first_in_flight = already_in_flight == 0 || (range_flight.first->second.first == pfrom.GetId());
    3296                 :             : 
    3297         [ +  + ]:       15516 :         while (range_flight.first != range_flight.second) {
    3298         [ +  + ]:       15511 :             auto [node_id, block_it] = range_flight.first->second;
    3299   [ +  +  -  + ]:       15511 :             if (node_id == pfrom.GetId() && block_it->partialBlock) {
    3300                 :             :                 requested_block_from_this_peer = true;
    3301                 :             :                 break;
    3302                 :             :             }
    3303                 :          81 :             range_flight.first++;
    3304                 :             :         }
    3305                 :             : 
    3306         [ +  + ]:       15435 :         if (!requested_block_from_this_peer) {
    3307   [ +  -  +  -  :           5 :             LogDebug(BCLog::NET, "Peer %d sent us block transactions for block we weren't expecting\n", pfrom.GetId());
                   +  - ]
    3308                 :           5 :             return;
    3309                 :             :         }
    3310                 :             : 
    3311         [ +  - ]:       15430 :         PartiallyDownloadedBlock& partialBlock = *range_flight.first->second.second->partialBlock;
    3312         [ +  - ]:       15430 :         ReadStatus status = partialBlock.FillBlock(*pblock, block_transactions.txn);
    3313         [ -  + ]:       15430 :         if (status == READ_STATUS_INVALID) {
    3314         [ #  # ]:           0 :             RemoveBlockRequest(block_transactions.blockhash, pfrom.GetId()); // Reset in-flight state in case Misbehaving does not result in a disconnect
    3315   [ #  #  #  # ]:           0 :             Misbehaving(peer, "invalid compact block/non-matching block transactions");
    3316                 :           0 :             return;
    3317         [ +  + ]:       15430 :         } else if (status == READ_STATUS_FAILED) {
    3318         [ +  - ]:           1 :             if (first_in_flight) {
    3319                 :             :                 // Might have collided, fall back to getdata now :(
    3320                 :           1 :                 std::vector<CInv> invs;
    3321         [ +  - ]:           1 :                 invs.emplace_back(MSG_BLOCK | GetFetchFlags(peer), block_transactions.blockhash);
    3322   [ +  -  +  - ]:           2 :                 MakeAndPushMessage(pfrom, NetMsgType::GETDATA, invs);
    3323                 :           1 :             } else {
    3324         [ #  # ]:           0 :                 RemoveBlockRequest(block_transactions.blockhash, pfrom.GetId());
    3325   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "Peer %d sent us a compact block but it failed to reconstruct, waiting on first download to complete\n", pfrom.GetId());
                   #  # ]
    3326                 :           0 :                 return;
    3327                 :             :             }
    3328                 :             :         } else {
    3329                 :             :             // Block is either okay, or possibly we received
    3330                 :             :             // READ_STATUS_CHECKBLOCK_FAILED.
    3331                 :             :             // Note that CheckBlock can only fail for one of a few reasons:
    3332                 :             :             // 1. bad-proof-of-work (impossible here, because we've already
    3333                 :             :             //    accepted the header)
    3334                 :             :             // 2. merkleroot doesn't match the transactions given (already
    3335                 :             :             //    caught in FillBlock with READ_STATUS_FAILED, so
    3336                 :             :             //    impossible here)
    3337                 :             :             // 3. the block is otherwise invalid (eg invalid coinbase,
    3338                 :             :             //    block is too big, too many legacy sigops, etc).
    3339                 :             :             // So if CheckBlock failed, #3 is the only possibility.
    3340                 :             :             // Under BIP 152, we don't discourage the peer unless proof of work is
    3341                 :             :             // invalid (we don't require all the stateless checks to have
    3342                 :             :             // been run).  This is handled below, so just treat this as
    3343                 :             :             // though the block was successfully read, and rely on the
    3344                 :             :             // handling in ProcessNewBlock to ensure the block index is
    3345                 :             :             // updated, etc.
    3346         [ +  - ]:       15429 :             RemoveBlockRequest(block_transactions.blockhash, pfrom.GetId()); // it is now an empty pointer
    3347                 :       15429 :             fBlockRead = true;
    3348                 :             :             // mapBlockSource is used for potentially punishing peers and
    3349                 :             :             // updating which peers send us compact blocks, so the race
    3350                 :             :             // between here and cs_main in ProcessNewBlock is fine.
    3351                 :             :             // BIP 152 permits peers to relay compact blocks after validating
    3352                 :             :             // the header only; we should not punish peers if the block turns
    3353                 :             :             // out to be invalid.
    3354         [ +  - ]:       15429 :             mapBlockSource.emplace(block_transactions.blockhash, std::make_pair(pfrom.GetId(), false));
    3355                 :             :         }
    3356                 :           5 :     } // Don't hold cs_main when we call into ProcessNewBlock
    3357         [ +  + ]:       15430 :     if (fBlockRead) {
    3358                 :             :         // Since we requested this block (it was in mapBlocksInFlight), force it to be processed,
    3359                 :             :         // even if it would not be a candidate for new tip (missing previous block, chain not long enough, etc)
    3360                 :             :         // This bypasses some anti-DoS logic in AcceptBlock (eg to prevent
    3361                 :             :         // disk-space attacks), but this should be safe due to the
    3362                 :             :         // protections in the compact block handler -- see related comment
    3363                 :             :         // in compact block optimistic reconstruction handling.
    3364   [ +  -  +  - ]:       46287 :         ProcessBlock(pfrom, pblock, /*force_processing=*/true, /*min_pow_checked=*/true);
    3365                 :             :     }
    3366                 :             :     return;
    3367                 :       15435 : }
    3368                 :             : 
    3369                 :      158732 : void PeerManagerImpl::ProcessMessage(CNode& pfrom, const std::string& msg_type, DataStream& vRecv,
    3370                 :             :                                      const std::chrono::microseconds time_received,
    3371                 :             :                                      const std::atomic<bool>& interruptMsgProc)
    3372                 :             : {
    3373                 :      158732 :     AssertLockHeld(g_msgproc_mutex);
    3374                 :             : 
    3375   [ +  -  +  - ]:      317464 :     LogDebug(BCLog::NET, "received: %s (%u bytes) peer=%d\n", SanitizeString(msg_type), vRecv.size(), pfrom.GetId());
    3376                 :             : 
    3377                 :      158732 :     PeerRef peer = GetPeerRef(pfrom.GetId());
    3378         [ +  - ]:      158732 :     if (peer == nullptr) return;
    3379                 :             : 
    3380         [ +  + ]:      158732 :     if (msg_type == NetMsgType::VERSION) {
    3381         [ +  + ]:        1498 :         if (pfrom.nVersion != 0) {
    3382   [ +  -  +  -  :           1 :             LogDebug(BCLog::NET, "redundant version message from peer=%d\n", pfrom.GetId());
                   +  - ]
    3383                 :           1 :             return;
    3384                 :             :         }
    3385                 :             : 
    3386                 :        1497 :         int64_t nTime;
    3387         [ +  - ]:        1497 :         CService addrMe;
    3388                 :        1497 :         uint64_t nNonce = 1;
    3389                 :        1497 :         ServiceFlags nServices;
    3390                 :        1497 :         int nVersion;
    3391         [ +  - ]:        1497 :         std::string cleanSubVer;
    3392                 :        1497 :         int starting_height = -1;
    3393                 :        1497 :         bool fRelay = true;
    3394                 :             : 
    3395   [ +  -  +  -  :        1497 :         vRecv >> nVersion >> Using<CustomUintFormatter<8>>(nServices) >> nTime;
                   +  - ]
    3396         [ -  + ]:        1497 :         if (nTime < 0) {
    3397                 :           0 :             nTime = 0;
    3398                 :             :         }
    3399         [ +  - ]:        1497 :         vRecv.ignore(8); // Ignore the addrMe service bits sent by the peer
    3400         [ +  - ]:        1497 :         vRecv >> CNetAddr::V1(addrMe);
    3401         [ +  + ]:        1497 :         if (!pfrom.IsInboundConn())
    3402                 :             :         {
    3403                 :             :             // Overwrites potentially existing services. In contrast to this,
    3404                 :             :             // unvalidated services received via gossip relay in ADDR/ADDRV2
    3405                 :             :             // messages are only ever added but cannot replace existing ones.
    3406         [ +  - ]:         563 :             m_addrman.SetServices(pfrom.addr, nServices);
    3407                 :             :         }
    3408   [ +  +  +  + ]:        1497 :         if (pfrom.ExpectServicesFromConn() && !HasAllDesirableServiceFlags(nServices))
    3409                 :             :         {
    3410   [ +  -  +  -  :          48 :             LogDebug(BCLog::NET, "peer does not offer the expected services (%08x offered, %08x expected), %s\n",
             +  -  +  - ]
    3411                 :             :                      nServices,
    3412                 :             :                      GetDesirableServiceFlags(nServices),
    3413                 :             :                      pfrom.DisconnectMsg(fLogIPs));
    3414                 :          24 :             pfrom.fDisconnect = true;
    3415                 :          24 :             return;
    3416                 :             :         }
    3417                 :             : 
    3418         [ +  + ]:        1473 :         if (nVersion < MIN_PEER_PROTO_VERSION) {
    3419                 :             :             // disconnect from peers older than this proto version
    3420   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "peer using obsolete version %i, %s\n", nVersion, pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3421                 :           1 :             pfrom.fDisconnect = true;
    3422                 :           1 :             return;
    3423                 :             :         }
    3424                 :             : 
    3425         [ +  + ]:        1472 :         if (!vRecv.empty()) {
    3426                 :             :             // The version message includes information about the sending node which we don't use:
    3427                 :             :             //   - 8 bytes (service bits)
    3428                 :             :             //   - 16 bytes (ipv6 address)
    3429                 :             :             //   - 2 bytes (port)
    3430         [ +  - ]:        1471 :             vRecv.ignore(26);
    3431         [ +  - ]:        1471 :             vRecv >> nNonce;
    3432                 :             :         }
    3433         [ +  + ]:        1472 :         if (!vRecv.empty()) {
    3434         [ +  - ]:        1471 :             std::string strSubVer;
    3435         [ +  - ]:        1471 :             vRecv >> LIMITED_STRING(strSubVer, MAX_SUBVERSION_LENGTH);
    3436         [ +  - ]:        1471 :             cleanSubVer = SanitizeString(strSubVer);
    3437                 :        1471 :         }
    3438         [ +  + ]:        1472 :         if (!vRecv.empty()) {
    3439         [ +  - ]:        1471 :             vRecv >> starting_height;
    3440                 :             :         }
    3441         [ +  + ]:        1472 :         if (!vRecv.empty())
    3442         [ +  - ]:        1471 :             vRecv >> fRelay;
    3443                 :             :         // Disconnect if we connected to ourself
    3444   [ +  +  +  -  :        1472 :         if (pfrom.IsInboundConn() && !m_connman.CheckIncomingNonce(nNonce))
                   +  + ]
    3445                 :             :         {
    3446   [ +  -  +  - ]:           2 :             LogPrintf("connected to self at %s, disconnecting\n", pfrom.addr.ToStringAddrPort());
    3447                 :           2 :             pfrom.fDisconnect = true;
    3448                 :           2 :             return;
    3449                 :             :         }
    3450                 :             : 
    3451   [ +  +  +  -  :        1470 :         if (pfrom.IsInboundConn() && addrMe.IsRoutable())
                   -  + ]
    3452                 :             :         {
    3453         [ #  # ]:           0 :             SeenLocal(addrMe);
    3454                 :             :         }
    3455                 :             : 
    3456                 :             :         // Inbound peers send us their version message when they connect.
    3457                 :             :         // We send our version message in response.
    3458         [ +  + ]:        1470 :         if (pfrom.IsInboundConn()) {
    3459         [ +  - ]:         931 :             PushNodeVersion(pfrom, *peer);
    3460                 :             :         }
    3461                 :             : 
    3462                 :             :         // Change version
    3463         [ +  - ]:        1470 :         const int greatest_common_version = std::min(nVersion, PROTOCOL_VERSION);
    3464                 :        1470 :         pfrom.SetCommonVersion(greatest_common_version);
    3465         [ +  + ]:        1470 :         pfrom.nVersion = nVersion;
    3466                 :             : 
    3467         [ +  + ]:        1470 :         if (greatest_common_version >= WTXID_RELAY_VERSION) {
    3468   [ +  -  +  - ]:        1466 :             MakeAndPushMessage(pfrom, NetMsgType::WTXIDRELAY);
    3469                 :             :         }
    3470                 :             : 
    3471                 :             :         // Signal ADDRv2 support (BIP155).
    3472                 :        1466 :         if (greatest_common_version >= 70016) {
    3473                 :             :             // BIP155 defines addrv2 and sendaddrv2 for all protocol versions, but some
    3474                 :             :             // implementations reject messages they don't know. As a courtesy, don't send
    3475                 :             :             // it to nodes with a version before 70016, as no software is known to support
    3476                 :             :             // BIP155 that doesn't announce at least that protocol version number.
    3477   [ +  -  +  - ]:        2932 :             MakeAndPushMessage(pfrom, NetMsgType::SENDADDRV2);
    3478                 :             :         }
    3479                 :             : 
    3480         [ +  - ]:        1470 :         pfrom.m_has_all_wanted_services = HasAllDesirableServiceFlags(nServices);
    3481         [ +  - ]:        1470 :         peer->m_their_services = nServices;
    3482         [ +  - ]:        1470 :         pfrom.SetAddrLocal(addrMe);
    3483                 :        1470 :         {
    3484         [ +  - ]:        1470 :             LOCK(pfrom.m_subver_mutex);
    3485   [ +  -  +  - ]:        2940 :             pfrom.cleanSubVer = cleanSubVer;
    3486                 :           0 :         }
    3487         [ +  + ]:        1470 :         peer->m_starting_height = starting_height;
    3488                 :             : 
    3489                 :             :         // Only initialize the Peer::TxRelay m_relay_txs data structure if:
    3490                 :             :         // - this isn't an outbound block-relay-only connection, and
    3491                 :             :         // - this isn't an outbound feeler connection, and
    3492                 :             :         // - fRelay=true (the peer wishes to receive transaction announcements)
    3493                 :             :         //   or we're offering NODE_BLOOM to this peer. NODE_BLOOM means that
    3494                 :             :         //   the peer may turn on transaction relay later.
    3495         [ +  + ]:        1470 :         if (!pfrom.IsBlockOnlyConn() &&
    3496   [ +  +  +  +  :        1470 :             !pfrom.IsFeelerConn() &&
                   +  + ]
    3497         [ +  + ]:           3 :             (fRelay || (peer->m_our_services & NODE_BLOOM))) {
    3498         [ +  - ]:        1439 :             auto* const tx_relay = peer->SetTxRelay();
    3499                 :        1439 :             {
    3500         [ +  - ]:        1439 :                 LOCK(tx_relay->m_bloom_filter_mutex);
    3501         [ +  - ]:        1439 :                 tx_relay->m_relay_txs = fRelay; // set to true after we get the first filter* message
    3502                 :        1439 :             }
    3503         [ +  + ]:        1439 :             if (fRelay) pfrom.m_relays_txs = true;
    3504                 :             :         }
    3505                 :             : 
    3506   [ +  +  +  + ]:        1470 :         if (greatest_common_version >= WTXID_RELAY_VERSION && m_txreconciliation) {
    3507                 :             :             // Per BIP-330, we announce txreconciliation support if:
    3508                 :             :             // - protocol version per the peer's VERSION message supports WTXID_RELAY;
    3509                 :             :             // - transaction relay is supported per the peer's VERSION message
    3510                 :             :             // - this is not a block-relay-only connection and not a feeler
    3511                 :             :             // - this is not an addr fetch connection;
    3512                 :             :             // - we are not in -blocksonly mode.
    3513         [ +  - ]:          15 :             const auto* tx_relay = peer->GetTxRelay();
    3514   [ +  -  +  +  :          22 :             if (tx_relay && WITH_LOCK(tx_relay->m_bloom_filter_mutex, return tx_relay->m_relay_txs) &&
                   +  - ]
    3515   [ +  +  +  +  :          25 :                 !pfrom.IsAddrFetchConn() && !m_opts.ignore_incoming_txs) {
                   +  + ]
    3516         [ +  - ]:           8 :                 const uint64_t recon_salt = m_txreconciliation->PreRegisterPeer(pfrom.GetId());
    3517   [ +  -  +  - ]:          16 :                 MakeAndPushMessage(pfrom, NetMsgType::SENDTXRCNCL,
    3518                 :             :                                    TXRECONCILIATION_VERSION, recon_salt);
    3519                 :             :             }
    3520                 :             :         }
    3521                 :             : 
    3522   [ +  -  +  - ]:        1470 :         MakeAndPushMessage(pfrom, NetMsgType::VERACK);
    3523                 :             : 
    3524                 :             :         // Potentially mark this peer as a preferred download peer.
    3525                 :        1470 :         {
    3526         [ +  - ]:        1470 :             LOCK(cs_main);
    3527                 :        1470 :             CNodeState* state = State(pfrom.GetId());
    3528   [ +  +  +  +  :        1470 :             state->fPreferredDownload = (!pfrom.IsInboundConn() || pfrom.HasPermission(NetPermissionFlags::NoBan)) && !pfrom.IsAddrFetchConn() && CanServeBlocks(*peer);
             +  +  +  + ]
    3529         [ +  - ]:        1470 :             m_num_preferred_download_peers += state->fPreferredDownload;
    3530                 :        1470 :         }
    3531                 :             : 
    3532                 :             :         // Attempt to initialize address relay for outbound peers and use result
    3533                 :             :         // to decide whether to send GETADDR, so that we don't send it to
    3534                 :             :         // inbound or outbound block-relay-only peers.
    3535                 :        1470 :         bool send_getaddr{false};
    3536         [ +  + ]:        1470 :         if (!pfrom.IsInboundConn()) {
    3537         [ +  - ]:         539 :             send_getaddr = SetupAddressRelay(pfrom, *peer);
    3538                 :             :         }
    3539         [ +  + ]:         539 :         if (send_getaddr) {
    3540                 :             :             // Do a one-time address fetch to help populate/update our addrman.
    3541                 :             :             // If we're starting up for the first time, our addrman may be pretty
    3542                 :             :             // empty, so this mechanism is important to help us connect to the network.
    3543                 :             :             // We skip this for block-relay-only peers. We want to avoid
    3544                 :             :             // potentially leaking addr information and we do not want to
    3545                 :             :             // indicate to the peer that we will participate in addr relay.
    3546   [ +  -  +  - ]:         513 :             MakeAndPushMessage(pfrom, NetMsgType::GETADDR);
    3547                 :         513 :             peer->m_getaddr_sent = true;
    3548                 :             :             // When requesting a getaddr, accept an additional MAX_ADDR_TO_SEND addresses in response
    3549                 :             :             // (bypassing the MAX_ADDR_PROCESSING_TOKEN_BUCKET limit).
    3550                 :         513 :             peer->m_addr_token_bucket += MAX_ADDR_TO_SEND;
    3551                 :             :         }
    3552                 :             : 
    3553         [ +  + ]:        1470 :         if (!pfrom.IsInboundConn()) {
    3554                 :             :             // For non-inbound connections, we update the addrman to record
    3555                 :             :             // connection success so that addrman will have an up-to-date
    3556                 :             :             // notion of which peers are online and available.
    3557                 :             :             //
    3558                 :             :             // While we strive to not leak information about block-relay-only
    3559                 :             :             // connections via the addrman, not moving an address to the tried
    3560                 :             :             // table is also potentially detrimental because new-table entries
    3561                 :             :             // are subject to eviction in the event of addrman collisions.  We
    3562                 :             :             // mitigate the information-leak by never calling
    3563                 :             :             // AddrMan::Connected() on block-relay-only peers; see
    3564                 :             :             // FinalizeNode().
    3565                 :             :             //
    3566                 :             :             // This moves an address from New to Tried table in Addrman,
    3567                 :             :             // resolves tried-table collisions, etc.
    3568         [ +  - ]:         539 :             m_addrman.Good(pfrom.addr);
    3569                 :             :         }
    3570                 :             : 
    3571         [ +  - ]:        1470 :         const auto mapped_as{m_connman.GetMappedAS(pfrom.addr)};
    3572   [ +  -  +  -  :        2940 :         LogDebug(BCLog::NET, "receive version message: %s: version %d, blocks=%d, us=%s, txrelay=%d, peer=%d%s%s\n",
          -  +  -  -  +  
          -  +  -  +  -  
                   +  - ]
    3573                 :             :                   cleanSubVer, pfrom.nVersion,
    3574                 :             :                   peer->m_starting_height, addrMe.ToStringAddrPort(), fRelay, pfrom.GetId(),
    3575                 :             :                   pfrom.LogIP(fLogIPs), (mapped_as ? strprintf(", mapped_as=%d", mapped_as) : ""));
    3576                 :             : 
    3577                 :        1470 :         peer->m_time_offset = NodeSeconds{std::chrono::seconds{nTime}} - Now<NodeSeconds>();
    3578         [ +  + ]:        1470 :         if (!pfrom.IsInboundConn()) {
    3579                 :             :             // Don't use timedata samples from inbound peers to make it
    3580                 :             :             // harder for others to create false warnings about our clock being out of sync.
    3581         [ +  - ]:         539 :             m_outbound_time_offsets.Add(peer->m_time_offset);
    3582         [ +  - ]:         539 :             m_outbound_time_offsets.WarnIfOutOfSync();
    3583                 :             :         }
    3584                 :             : 
    3585                 :             :         // If the peer is old enough to have the old alert system, send it the final alert.
    3586         [ -  + ]:        1470 :         if (greatest_common_version <= 70012) {
    3587                 :           0 :             constexpr auto finalAlert{"60010000000000000000000000ffffff7f00000000ffffff7ffeffff7f01ffffff7f00000000ffffff7f00ffffff7f002f555247454e543a20416c657274206b657920636f6d70726f6d697365642c2075706772616465207265717569726564004630440220653febd6410f470f6bae11cad19c48413becb1ac2c17f908fd0fd53bdc3abd5202206d0e9c96fe88d4a0f01ed9dedae2b6f9e00da94cad0fecaae66ecf689bf71b50"_hex};
    3588   [ #  #  #  # ]:           0 :             MakeAndPushMessage(pfrom, "alert", finalAlert);
    3589                 :             :         }
    3590                 :             : 
    3591                 :             :         // Feeler connections exist only to verify if address is online.
    3592         [ +  + ]:        1470 :         if (pfrom.IsFeelerConn()) {
    3593   [ +  -  +  -  :           8 :             LogDebug(BCLog::NET, "feeler connection completed, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3594                 :           4 :             pfrom.fDisconnect = true;
    3595                 :             :         }
    3596                 :        1470 :         return;
    3597                 :        1497 :     }
    3598                 :             : 
    3599         [ +  + ]:      157234 :     if (pfrom.nVersion == 0) {
    3600                 :             :         // Must have a version message before anything else
    3601   [ +  -  +  -  :           8 :         LogDebug(BCLog::NET, "non-version message before version handshake. Message \"%s\" from peer=%d\n", SanitizeString(msg_type), pfrom.GetId());
             +  -  +  - ]
    3602                 :           4 :         return;
    3603                 :             :     }
    3604                 :             : 
    3605         [ +  + ]:      157230 :     if (msg_type == NetMsgType::VERACK) {
    3606         [ -  + ]:        1456 :         if (pfrom.fSuccessfullyConnected) {
    3607   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "ignoring redundant verack message from peer=%d\n", pfrom.GetId());
                   #  # ]
    3608                 :           0 :             return;
    3609                 :             :         }
    3610                 :             : 
    3611                 :             :         // Log successful connections unconditionally for outbound, but not for inbound as those
    3612                 :             :         // can be triggered by an attacker at high rate.
    3613   [ +  +  +  -  :        1456 :         if (!pfrom.IsInboundConn() || LogAcceptCategory(BCLog::NET, BCLog::Level::Debug)) {
                   +  - ]
    3614         [ +  - ]:        1456 :             const auto mapped_as{m_connman.GetMappedAS(pfrom.addr)};
    3615   [ -  +  -  -  :        4368 :             LogPrintf("New %s %s peer connected: version: %d, blocks=%d, peer=%d%s%s\n",
          +  -  +  -  +  
                -  +  - ]
    3616                 :             :                       pfrom.ConnectionTypeAsString(),
    3617                 :             :                       TransportTypeAsString(pfrom.m_transport->GetInfo().transport_type),
    3618                 :             :                       pfrom.nVersion.load(), peer->m_starting_height,
    3619                 :             :                       pfrom.GetId(), pfrom.LogIP(fLogIPs),
    3620                 :             :                       (mapped_as ? strprintf(", mapped_as=%d", mapped_as) : ""));
    3621                 :             :         }
    3622                 :             : 
    3623         [ +  - ]:        1456 :         if (pfrom.GetCommonVersion() >= SHORT_IDS_BLOCKS_VERSION) {
    3624                 :             :             // Tell our peer we are willing to provide version 2 cmpctblocks.
    3625                 :             :             // However, we do not request new block announcements using
    3626                 :             :             // cmpctblock messages.
    3627                 :             :             // We send this to non-NODE NETWORK peers as well, because
    3628                 :             :             // they may wish to request compact blocks from us
    3629   [ +  -  +  - ]:        2912 :             MakeAndPushMessage(pfrom, NetMsgType::SENDCMPCT, /*high_bandwidth=*/false, /*version=*/CMPCTBLOCKS_VERSION);
    3630                 :             :         }
    3631                 :             : 
    3632         [ +  + ]:        1456 :         if (m_txreconciliation) {
    3633   [ +  +  +  -  :          11 :             if (!peer->m_wtxid_relay || !m_txreconciliation->IsPeerRegistered(pfrom.GetId())) {
                   +  - ]
    3634                 :             :                 // We could have optimistically pre-registered/registered the peer. In that case,
    3635                 :             :                 // we should forget about the reconciliation state here if this wasn't followed
    3636                 :             :                 // by WTXIDRELAY (since WTXIDRELAY can't be announced later).
    3637         [ +  - ]:          11 :                 m_txreconciliation->ForgetPeer(pfrom.GetId());
    3638                 :             :             }
    3639                 :             :         }
    3640                 :             : 
    3641   [ +  -  +  + ]:        1456 :         if (auto tx_relay = peer->GetTxRelay()) {
    3642                 :             :             // `TxRelay::m_tx_inventory_to_send` must be empty before the
    3643                 :             :             // version handshake is completed as
    3644                 :             :             // `TxRelay::m_next_inv_send_time` is first initialised in
    3645                 :             :             // `SendMessages` after the verack is received. Any transactions
    3646                 :             :             // received during the version handshake would otherwise
    3647                 :             :             // immediately be advertised without random delay, potentially
    3648                 :             :             // leaking the time of arrival to a spy.
    3649   [ +  -  +  -  :        2860 :             Assume(WITH_LOCK(
             -  +  +  - ]
    3650                 :             :                 tx_relay->m_tx_inventory_mutex,
    3651                 :             :                 return tx_relay->m_tx_inventory_to_send.empty() &&
    3652                 :             :                        tx_relay->m_next_inv_send_time == 0s));
    3653                 :             :         }
    3654                 :             : 
    3655                 :        1456 :         {
    3656   [ +  -  +  - ]:        1456 :             LOCK2(::cs_main, m_tx_download_mutex);
    3657                 :        1456 :             const CNodeState* state = State(pfrom.GetId());
    3658                 :        1456 :             m_txdownloadman.ConnectedPeer(pfrom.GetId(), node::TxDownloadConnectionInfo {
    3659         [ +  - ]:        1456 :                 .m_preferred = state->fPreferredDownload,
    3660         [ +  - ]:        1456 :                 .m_relay_permissions = pfrom.HasPermission(NetPermissionFlags::Relay),
    3661         [ +  - ]:        1456 :                 .m_wtxid_relay = peer->m_wtxid_relay,
    3662                 :             :             });
    3663         [ +  - ]:        1456 :         }
    3664                 :             : 
    3665                 :        1456 :         pfrom.fSuccessfullyConnected = true;
    3666                 :        1456 :         return;
    3667                 :             :     }
    3668                 :             : 
    3669         [ +  + ]:      155774 :     if (msg_type == NetMsgType::SENDHEADERS) {
    3670                 :         676 :         peer->m_prefers_headers = true;
    3671                 :         676 :         return;
    3672                 :             :     }
    3673                 :             : 
    3674         [ +  + ]:      155098 :     if (msg_type == NetMsgType::SENDCMPCT) {
    3675                 :        1223 :         bool sendcmpct_hb{false};
    3676                 :        1223 :         uint64_t sendcmpct_version{0};
    3677   [ +  -  +  - ]:        1223 :         vRecv >> sendcmpct_hb >> sendcmpct_version;
    3678                 :             : 
    3679                 :             :         // Only support compact block relay with witnesses
    3680         [ +  + ]:        1223 :         if (sendcmpct_version != CMPCTBLOCKS_VERSION) return;
    3681                 :             : 
    3682         [ +  - ]:        1210 :         LOCK(cs_main);
    3683                 :        1210 :         CNodeState* nodestate = State(pfrom.GetId());
    3684                 :        1210 :         nodestate->m_provides_cmpctblocks = true;
    3685                 :        1210 :         nodestate->m_requested_hb_cmpctblocks = sendcmpct_hb;
    3686                 :             :         // save whether peer selects us as BIP152 high-bandwidth peer
    3687                 :             :         // (receiving sendcmpct(1) signals high-bandwidth, sendcmpct(0) low-bandwidth)
    3688         [ +  - ]:        1210 :         pfrom.m_bip152_highbandwidth_from = sendcmpct_hb;
    3689         [ +  - ]:        1210 :         return;
    3690                 :        1210 :     }
    3691                 :             : 
    3692                 :             :     // BIP339 defines feature negotiation of wtxidrelay, which must happen between
    3693                 :             :     // VERSION and VERACK to avoid relay problems from switching after a connection is up.
    3694         [ +  + ]:      153875 :     if (msg_type == NetMsgType::WTXIDRELAY) {
    3695         [ -  + ]:        1390 :         if (pfrom.fSuccessfullyConnected) {
    3696                 :             :             // Disconnect peers that send a wtxidrelay message after VERACK.
    3697   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "wtxidrelay received after verack, %s\n", pfrom.DisconnectMsg(fLogIPs));
             #  #  #  # ]
    3698                 :           0 :             pfrom.fDisconnect = true;
    3699                 :           0 :             return;
    3700                 :             :         }
    3701         [ +  + ]:        1390 :         if (pfrom.GetCommonVersion() >= WTXID_RELAY_VERSION) {
    3702         [ +  - ]:        1388 :             if (!peer->m_wtxid_relay) {
    3703                 :        1388 :                 peer->m_wtxid_relay = true;
    3704                 :        1388 :                 m_wtxid_relay_peers++;
    3705                 :             :             } else {
    3706   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "ignoring duplicate wtxidrelay from peer=%d\n", pfrom.GetId());
                   #  # ]
    3707                 :             :             }
    3708                 :             :         } else {
    3709   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "ignoring wtxidrelay due to old common version=%d from peer=%d\n", pfrom.GetCommonVersion(), pfrom.GetId());
                   +  - ]
    3710                 :             :         }
    3711                 :        1390 :         return;
    3712                 :             :     }
    3713                 :             : 
    3714                 :             :     // BIP155 defines feature negotiation of addrv2 and sendaddrv2, which must happen
    3715                 :             :     // between VERSION and VERACK.
    3716         [ +  + ]:      152485 :     if (msg_type == NetMsgType::SENDADDRV2) {
    3717         [ +  + ]:         849 :         if (pfrom.fSuccessfullyConnected) {
    3718                 :             :             // Disconnect peers that send a SENDADDRV2 message after VERACK.
    3719   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "sendaddrv2 received after verack, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3720                 :           1 :             pfrom.fDisconnect = true;
    3721                 :           1 :             return;
    3722                 :             :         }
    3723                 :         848 :         peer->m_wants_addrv2 = true;
    3724                 :         848 :         return;
    3725                 :             :     }
    3726                 :             : 
    3727                 :             :     // Received from a peer demonstrating readiness to announce transactions via reconciliations.
    3728                 :             :     // This feature negotiation must happen between VERSION and VERACK to avoid relay problems
    3729                 :             :     // from switching announcement protocols after the connection is up.
    3730         [ +  + ]:      151636 :     if (msg_type == NetMsgType::SENDTXRCNCL) {
    3731         [ +  + ]:           9 :         if (!m_txreconciliation) {
    3732   [ +  -  +  -  :           1 :             LogDebug(BCLog::NET, "sendtxrcncl from peer=%d ignored, as our node does not have txreconciliation enabled\n", pfrom.GetId());
                   +  - ]
    3733                 :           1 :             return;
    3734                 :             :         }
    3735                 :             : 
    3736         [ +  + ]:           8 :         if (pfrom.fSuccessfullyConnected) {
    3737   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "sendtxrcncl received after verack, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3738                 :           1 :             pfrom.fDisconnect = true;
    3739                 :           1 :             return;
    3740                 :             :         }
    3741                 :             : 
    3742                 :             :         // Peer must not offer us reconciliations if we specified no tx relay support in VERSION.
    3743         [ +  + ]:           7 :         if (RejectIncomingTxs(pfrom)) {
    3744   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "sendtxrcncl received to which we indicated no tx relay, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3745                 :           1 :             pfrom.fDisconnect = true;
    3746                 :           1 :             return;
    3747                 :             :         }
    3748                 :             : 
    3749                 :             :         // Peer must not offer us reconciliations if they specified no tx relay support in VERSION.
    3750                 :             :         // This flag might also be false in other cases, but the RejectIncomingTxs check above
    3751                 :             :         // eliminates them, so that this flag fully represents what we are looking for.
    3752         [ +  - ]:           6 :         const auto* tx_relay = peer->GetTxRelay();
    3753   [ +  -  +  -  :          12 :         if (!tx_relay || !WITH_LOCK(tx_relay->m_bloom_filter_mutex, return tx_relay->m_relay_txs)) {
             +  -  +  - ]
    3754   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "sendtxrcncl received which indicated no tx relay to us, %s\n", pfrom.DisconnectMsg(fLogIPs));
             #  #  #  # ]
    3755                 :           0 :             pfrom.fDisconnect = true;
    3756                 :           0 :             return;
    3757                 :             :         }
    3758                 :             : 
    3759                 :           6 :         uint32_t peer_txreconcl_version;
    3760                 :           6 :         uint64_t remote_salt;
    3761   [ +  -  +  - ]:           6 :         vRecv >> peer_txreconcl_version >> remote_salt;
    3762                 :             : 
    3763         [ +  - ]:           6 :         const ReconciliationRegisterResult result = m_txreconciliation->RegisterPeer(pfrom.GetId(), pfrom.IsInboundConn(),
    3764                 :             :                                                                                      peer_txreconcl_version, remote_salt);
    3765   [ +  +  +  + ]:           6 :         switch (result) {
    3766                 :           1 :         case ReconciliationRegisterResult::NOT_FOUND:
    3767   [ +  -  +  -  :           1 :             LogDebug(BCLog::NET, "Ignore unexpected txreconciliation signal from peer=%d\n", pfrom.GetId());
                   +  - ]
    3768                 :             :             break;
    3769                 :             :         case ReconciliationRegisterResult::SUCCESS:
    3770                 :             :             break;
    3771                 :           1 :         case ReconciliationRegisterResult::ALREADY_REGISTERED:
    3772   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "txreconciliation protocol violation (sendtxrcncl received from already registered peer), %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3773                 :           1 :             pfrom.fDisconnect = true;
    3774                 :           1 :             return;
    3775                 :           1 :         case ReconciliationRegisterResult::PROTOCOL_VIOLATION:
    3776   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "txreconciliation protocol violation, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3777                 :           1 :             pfrom.fDisconnect = true;
    3778                 :           1 :             return;
    3779                 :             :         }
    3780                 :           4 :         return;
    3781                 :             :     }
    3782                 :             : 
    3783         [ +  + ]:      151627 :     if (!pfrom.fSuccessfullyConnected) {
    3784   [ +  -  +  -  :          16 :         LogDebug(BCLog::NET, "Unsupported message \"%s\" prior to verack from peer=%d\n", SanitizeString(msg_type), pfrom.GetId());
             +  -  +  - ]
    3785                 :           8 :         return;
    3786                 :             :     }
    3787                 :             : 
    3788   [ +  +  +  + ]:      151619 :     if (msg_type == NetMsgType::ADDR || msg_type == NetMsgType::ADDRV2) {
    3789                 :          59 :         const auto ser_params{
    3790         [ +  + ]:          59 :             msg_type == NetMsgType::ADDRV2 ?
    3791                 :             :             // Set V2 param so that the CNetAddr and CAddress
    3792                 :             :             // unserialize methods know that an address in v2 format is coming.
    3793                 :             :             CAddress::V2_NETWORK :
    3794                 :             :             CAddress::V1_NETWORK,
    3795                 :             :         };
    3796                 :             : 
    3797                 :          59 :         std::vector<CAddress> vAddr;
    3798                 :             : 
    3799         [ +  + ]:          59 :         vRecv >> ser_params(vAddr);
    3800                 :             : 
    3801   [ +  -  +  + ]:          51 :         if (!SetupAddressRelay(pfrom, *peer)) {
    3802   [ +  -  +  -  :          10 :             LogDebug(BCLog::NET, "ignoring %s message from %s peer=%d\n", msg_type, pfrom.ConnectionTypeAsString(), pfrom.GetId());
             +  -  +  - ]
    3803                 :           5 :             return;
    3804                 :             :         }
    3805                 :             : 
    3806         [ +  + ]:          46 :         if (vAddr.size() > MAX_ADDR_TO_SEND)
    3807                 :             :         {
    3808   [ +  -  +  - ]:           2 :             Misbehaving(*peer, strprintf("%s message size = %u", msg_type, vAddr.size()));
    3809                 :           2 :             return;
    3810                 :             :         }
    3811                 :             : 
    3812                 :             :         // Store the new addresses
    3813                 :          44 :         std::vector<CAddress> vAddrOk;
    3814                 :          44 :         const auto current_a_time{Now<NodeSeconds>()};
    3815                 :             : 
    3816                 :             :         // Update/increment addr rate limiting bucket.
    3817                 :          44 :         const auto current_time{GetTime<std::chrono::microseconds>()};
    3818         [ +  + ]:          44 :         if (peer->m_addr_token_bucket < MAX_ADDR_PROCESSING_TOKEN_BUCKET) {
    3819                 :             :             // Don't increment bucket if it's already full
    3820         [ +  + ]:          40 :             const auto time_diff = std::max(current_time - peer->m_addr_token_timestamp, 0us);
    3821                 :          40 :             const double increment = Ticks<SecondsDouble>(time_diff) * MAX_ADDR_RATE_PER_SECOND;
    3822         [ +  + ]:          61 :             peer->m_addr_token_bucket = std::min<double>(peer->m_addr_token_bucket + increment, MAX_ADDR_PROCESSING_TOKEN_BUCKET);
    3823                 :             :         }
    3824                 :          44 :         peer->m_addr_token_timestamp = current_time;
    3825                 :             : 
    3826                 :          44 :         const bool rate_limited = !pfrom.HasPermission(NetPermissionFlags::Addr);
    3827                 :          44 :         uint64_t num_proc = 0;
    3828                 :          44 :         uint64_t num_rate_limit = 0;
    3829                 :          44 :         std::shuffle(vAddr.begin(), vAddr.end(), m_rng);
    3830         [ +  + ]:        3321 :         for (CAddress& addr : vAddr)
    3831                 :             :         {
    3832         [ +  - ]:        3277 :             if (interruptMsgProc)
    3833                 :             :                 return;
    3834                 :             : 
    3835                 :             :             // Apply rate limiting.
    3836         [ +  + ]:        3277 :             if (peer->m_addr_token_bucket < 1.0) {
    3837         [ +  + ]:        2019 :                 if (rate_limited) {
    3838                 :        1998 :                     ++num_rate_limit;
    3839                 :        1998 :                     continue;
    3840                 :             :                 }
    3841                 :             :             } else {
    3842                 :        1258 :                 peer->m_addr_token_bucket -= 1.0;
    3843                 :             :             }
    3844                 :             :             // We only bother storing full nodes, though this may include
    3845                 :             :             // things which we would not make an outbound connection to, in
    3846                 :             :             // part because we may make feeler connections to them.
    3847   [ -  +  -  - ]:        1279 :             if (!MayHaveUsefulAddressDB(addr.nServices) && !HasAllDesirableServiceFlags(addr.nServices))
    3848                 :           0 :                 continue;
    3849                 :             : 
    3850   [ +  -  -  + ]:        1279 :             if (addr.nTime <= NodeSeconds{100000000s} || addr.nTime > current_a_time + 10min) {
    3851                 :           0 :                 addr.nTime = current_a_time - 5 * 24h;
    3852                 :             :             }
    3853         [ +  - ]:        1279 :             AddAddressKnown(*peer, addr);
    3854   [ +  -  +  -  :        1279 :             if (m_banman && (m_banman->IsDiscouraged(addr) || m_banman->IsBanned(addr))) {
          +  -  +  -  -  
                      + ]
    3855                 :             :                 // Do not process banned/discouraged addresses beyond remembering we received them
    3856                 :           0 :                 continue;
    3857                 :             :             }
    3858                 :        1279 :             ++num_proc;
    3859         [ +  - ]:        1279 :             const bool reachable{g_reachable_nets.Contains(addr)};
    3860   [ +  -  +  +  :        1279 :             if (addr.nTime > current_a_time - 10min && !peer->m_getaddr_sent && vAddr.size() <= 10 && addr.IsRoutable()) {
          +  +  +  -  +  
                      + ]
    3861                 :             :                 // Relay to a limited number of other nodes
    3862         [ +  - ]:          53 :                 RelayAddress(pfrom.GetId(), addr, reachable);
    3863                 :             :             }
    3864                 :             :             // Do not store addresses outside our network
    3865         [ +  + ]:        1279 :             if (reachable) {
    3866         [ +  - ]:        1277 :                 vAddrOk.push_back(addr);
    3867                 :             :             }
    3868                 :             :         }
    3869         [ +  - ]:          44 :         peer->m_addr_processed += num_proc;
    3870                 :          44 :         peer->m_addr_rate_limited += num_rate_limit;
    3871   [ +  -  +  -  :          44 :         LogDebug(BCLog::NET, "Received addr: %u addresses (%u processed, %u rate-limited) from peer=%d\n",
                   +  - ]
    3872                 :             :                  vAddr.size(), num_proc, num_rate_limit, pfrom.GetId());
    3873                 :             : 
    3874         [ +  - ]:          44 :         m_addrman.Add(vAddrOk, pfrom.addr, 2h);
    3875         [ +  - ]:          44 :         if (vAddr.size() < 1000) peer->m_getaddr_sent = false;
    3876                 :             : 
    3877                 :             :         // AddrFetch: Require multiple addresses to avoid disconnecting on self-announcements
    3878   [ +  +  +  + ]:          44 :         if (pfrom.IsAddrFetchConn() && vAddr.size() > 1) {
    3879   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "addrfetch connection completed, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    3880                 :           1 :             pfrom.fDisconnect = true;
    3881                 :             :         }
    3882                 :          44 :         return;
    3883                 :          59 :     }
    3884                 :             : 
    3885         [ +  + ]:      151560 :     if (msg_type == NetMsgType::INV) {
    3886                 :       11053 :         std::vector<CInv> vInv;
    3887         [ +  - ]:       11053 :         vRecv >> vInv;
    3888         [ +  + ]:       11053 :         if (vInv.size() > MAX_INV_SZ)
    3889                 :             :         {
    3890   [ +  -  +  - ]:           1 :             Misbehaving(*peer, strprintf("inv message size = %u", vInv.size()));
    3891                 :           1 :             return;
    3892                 :             :         }
    3893                 :             : 
    3894                 :       11052 :         const bool reject_tx_invs{RejectIncomingTxs(pfrom)};
    3895                 :             : 
    3896   [ +  -  +  - ]:       11052 :         LOCK2(cs_main, m_tx_download_mutex);
    3897                 :             : 
    3898                 :       11052 :         const auto current_time{GetTime<std::chrono::microseconds>()};
    3899                 :       11052 :         uint256* best_block{nullptr};
    3900                 :             : 
    3901         [ +  + ]:       38116 :         for (CInv& inv : vInv) {
    3902         [ +  - ]:       27066 :             if (interruptMsgProc) return;
    3903                 :             : 
    3904                 :             :             // Ignore INVs that don't match wtxidrelay setting.
    3905                 :             :             // Note that orphan parent fetching always uses MSG_TX GETDATAs regardless of the wtxidrelay setting.
    3906                 :             :             // This is fine as no INV messages are involved in that process.
    3907         [ +  + ]:       27066 :             if (peer->m_wtxid_relay) {
    3908         [ +  + ]:       27052 :                 if (inv.IsMsgTx()) continue;
    3909                 :             :             } else {
    3910         [ -  + ]:          14 :                 if (inv.IsMsgWtx()) continue;
    3911                 :             :             }
    3912                 :             : 
    3913         [ +  + ]:       27045 :             if (inv.IsMsgBlk()) {
    3914         [ +  - ]:         615 :                 const bool fAlreadyHave = AlreadyHaveBlock(inv.hash);
    3915   [ +  -  +  -  :        1670 :                 LogDebug(BCLog::NET, "got inv: %s  %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom.GetId());
          +  +  +  -  +  
                      - ]
    3916                 :             : 
    3917         [ +  - ]:         615 :                 UpdateBlockAvailability(pfrom.GetId(), inv.hash);
    3918   [ +  +  +  -  :         615 :                 if (!fAlreadyHave && !m_chainman.m_blockman.LoadingBlocks() && !IsBlockRequested(inv.hash)) {
                   -  + ]
    3919                 :             :                     // Headers-first is the primary method of announcement on
    3920                 :             :                     // the network. If a node fell back to sending blocks by
    3921                 :             :                     // inv, it may be for a re-org, or because we haven't
    3922                 :             :                     // completed initial headers sync. The final block hash
    3923                 :             :                     // provided should be the highest, so send a getheaders and
    3924                 :             :                     // then fetch the blocks we need to catch up.
    3925                 :             :                     best_block = &inv.hash;
    3926                 :             :                 }
    3927         [ -  + ]:       26430 :             } else if (inv.IsGenTxMsg()) {
    3928         [ +  + ]:       26430 :                 if (reject_tx_invs) {
    3929   [ +  -  +  -  :           4 :                     LogDebug(BCLog::NET, "transaction (%s) inv sent in violation of protocol, %s\n", inv.hash.ToString(), pfrom.DisconnectMsg(fLogIPs));
          +  -  +  -  +  
                      - ]
    3930                 :           2 :                     pfrom.fDisconnect = true;
    3931                 :           2 :                     return;
    3932                 :             :                 }
    3933         [ +  - ]:       26428 :                 const GenTxid gtxid = ToGenTxid(inv);
    3934         [ +  - ]:       26428 :                 AddKnownTx(*peer, inv.hash);
    3935                 :             : 
    3936   [ +  -  +  + ]:       26428 :                 if (!m_chainman.IsInitialBlockDownload()) {
    3937         [ +  - ]:       26427 :                     const bool fAlreadyHave{m_txdownloadman.AddTxAnnouncement(pfrom.GetId(), gtxid, current_time)};
    3938   [ +  -  +  -  :       77077 :                     LogDebug(BCLog::NET, "got inv: %s  %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom.GetId());
          +  +  +  -  +  
                      - ]
    3939                 :             :                 }
    3940                 :             :             } else {
    3941   [ -  -  -  -  :       27064 :                 LogDebug(BCLog::NET, "Unknown inv type \"%s\" received from peer=%d\n", inv.ToString(), pfrom.GetId());
             -  -  -  - ]
    3942                 :             :             }
    3943                 :             :         }
    3944                 :             : 
    3945         [ +  + ]:       11050 :         if (best_block != nullptr) {
    3946                 :             :             // If we haven't started initial headers-sync with this peer, then
    3947                 :             :             // consider sending a getheaders now. On initial startup, there's a
    3948                 :             :             // reliability vs bandwidth tradeoff, where we are only trying to do
    3949                 :             :             // initial headers sync with one peer at a time, with a long
    3950                 :             :             // timeout (at which point, if the sync hasn't completed, we will
    3951                 :             :             // disconnect the peer and then choose another). In the meantime,
    3952                 :             :             // as new blocks are found, we are willing to add one new peer per
    3953                 :             :             // block to sync with as well, to sync quicker in the case where
    3954                 :             :             // our initial peer is unresponsive (but less bandwidth than we'd
    3955                 :             :             // use if we turned on sync with all peers).
    3956         [ +  - ]:         440 :             CNodeState& state{*Assert(State(pfrom.GetId()))};
    3957   [ +  +  +  +  :         440 :             if (state.fSyncStarted || (!peer->m_inv_triggered_getheaders_before_sync && *best_block != m_last_block_inv_triggering_headers_sync)) {
                   +  + ]
    3958   [ +  -  +  -  :         427 :                 if (MaybeSendGetHeaders(pfrom, GetLocator(m_chainman.m_best_header), *peer)) {
                   +  + ]
    3959   [ +  -  +  -  :         424 :                     LogDebug(BCLog::NET, "getheaders (%d) %s to peer=%d\n",
             +  -  +  - ]
    3960                 :             :                             m_chainman.m_best_header->nHeight, best_block->ToString(),
    3961                 :             :                             pfrom.GetId());
    3962                 :             :                 }
    3963         [ +  + ]:         427 :                 if (!state.fSyncStarted) {
    3964                 :          15 :                     peer->m_inv_triggered_getheaders_before_sync = true;
    3965                 :             :                     // Update the last block hash that triggered a new headers
    3966                 :             :                     // sync, so that we don't turn on headers sync with more
    3967                 :             :                     // than 1 new peer every new block.
    3968                 :          15 :                     m_last_block_inv_triggering_headers_sync = *best_block;
    3969                 :             :                 }
    3970                 :             :             }
    3971                 :             :         }
    3972                 :             : 
    3973                 :       11050 :         return;
    3974         [ +  - ]:       33157 :     }
    3975                 :             : 
    3976         [ +  + ]:      140507 :     if (msg_type == NetMsgType::GETDATA) {
    3977                 :       44061 :         std::vector<CInv> vInv;
    3978         [ +  - ]:       44061 :         vRecv >> vInv;
    3979         [ +  + ]:       44061 :         if (vInv.size() > MAX_INV_SZ)
    3980                 :             :         {
    3981   [ +  -  +  - ]:           1 :             Misbehaving(*peer, strprintf("getdata message size = %u", vInv.size()));
    3982                 :           1 :             return;
    3983                 :             :         }
    3984                 :             : 
    3985   [ +  -  +  -  :       44060 :         LogDebug(BCLog::NET, "received getdata (%u invsz) peer=%d\n", vInv.size(), pfrom.GetId());
                   +  - ]
    3986                 :             : 
    3987         [ +  - ]:       44060 :         if (vInv.size() > 0) {
    3988   [ +  -  +  -  :       88120 :             LogDebug(BCLog::NET, "received getdata for: %s peer=%d\n", vInv[0].ToString(), pfrom.GetId());
             +  -  +  - ]
    3989                 :             :         }
    3990                 :             : 
    3991                 :       44060 :         {
    3992         [ +  - ]:       44060 :             LOCK(peer->m_getdata_requests_mutex);
    3993         [ +  - ]:       44060 :             peer->m_getdata_requests.insert(peer->m_getdata_requests.end(), vInv.begin(), vInv.end());
    3994         [ +  - ]:       44060 :             ProcessGetData(pfrom, *peer, interruptMsgProc);
    3995                 :           0 :         }
    3996                 :             : 
    3997                 :       44060 :         return;
    3998                 :       44061 :     }
    3999                 :             : 
    4000         [ +  + ]:       96446 :     if (msg_type == NetMsgType::GETBLOCKS) {
    4001                 :           4 :         CBlockLocator locator;
    4002                 :           4 :         uint256 hashStop;
    4003   [ +  -  +  - ]:           4 :         vRecv >> locator >> hashStop;
    4004                 :             : 
    4005         [ +  + ]:           4 :         if (locator.vHave.size() > MAX_LOCATOR_SZ) {
    4006   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "getblocks locator size %lld > %d, %s\n", locator.vHave.size(), MAX_LOCATOR_SZ, pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4007                 :           1 :             pfrom.fDisconnect = true;
    4008                 :           1 :             return;
    4009                 :             :         }
    4010                 :             : 
    4011                 :             :         // We might have announced the currently-being-connected tip using a
    4012                 :             :         // compact block, which resulted in the peer sending a getblocks
    4013                 :             :         // request, which we would otherwise respond to without the new block.
    4014                 :             :         // To avoid this situation we simply verify that we are on our best
    4015                 :             :         // known chain now. This is super overkill, but we handle it better
    4016                 :             :         // for getheaders requests, and there are no known nodes which support
    4017                 :             :         // compact blocks but still use getblocks to request blocks.
    4018                 :           3 :         {
    4019                 :           3 :             std::shared_ptr<const CBlock> a_recent_block;
    4020                 :           3 :             {
    4021         [ +  - ]:           3 :                 LOCK(m_most_recent_block_mutex);
    4022         [ +  - ]:           3 :                 a_recent_block = m_most_recent_block;
    4023                 :           3 :             }
    4024         [ +  - ]:           3 :             BlockValidationState state;
    4025   [ +  -  +  -  :           9 :             if (!m_chainman.ActiveChainstate().ActivateBestChain(state, a_recent_block)) {
          +  -  +  -  -  
                      + ]
    4026   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "failed to activate chain (%s)\n", state.ToString());
             #  #  #  # ]
    4027                 :             :             }
    4028         [ +  - ]:           3 :         }
    4029                 :             : 
    4030         [ +  - ]:           3 :         LOCK(cs_main);
    4031                 :             : 
    4032                 :             :         // Find the last block the caller has in the main chain
    4033   [ +  -  +  - ]:           3 :         const CBlockIndex* pindex = m_chainman.ActiveChainstate().FindForkInGlobalIndex(locator);
    4034                 :             : 
    4035                 :             :         // Send the rest of the chain
    4036         [ +  - ]:           3 :         if (pindex)
    4037         [ +  - ]:           3 :             pindex = m_chainman.ActiveChain().Next(pindex);
    4038                 :           3 :         int nLimit = 500;
    4039   [ +  -  +  -  :           6 :         LogDebug(BCLog::NET, "getblocks %d to %s limit %d from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), nLimit, pfrom.GetId());
          +  -  +  -  -  
             -  +  -  +  
                      - ]
    4040   [ +  -  +  + ]:          22 :         for (; pindex; pindex = m_chainman.ActiveChain().Next(pindex))
    4041                 :             :         {
    4042         [ -  + ]:          19 :             if (pindex->GetBlockHash() == hashStop)
    4043                 :             :             {
    4044   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
             #  #  #  # ]
    4045                 :             :                 break;
    4046                 :             :             }
    4047                 :             :             // If pruning, don't inv blocks unless we have on disk and are likely to still have
    4048                 :             :             // for some reasonable time window (1 hour) that block relay might require.
    4049                 :          19 :             const int nPrunedBlocksLikelyToHave = MIN_BLOCKS_TO_KEEP - 3600 / m_chainparams.GetConsensus().nPowTargetSpacing;
    4050   [ -  +  -  -  :          19 :             if (m_chainman.m_blockman.IsPruneMode() && (!(pindex->nStatus & BLOCK_HAVE_DATA) || pindex->nHeight <= m_chainman.ActiveChain().Tip()->nHeight - nPrunedBlocksLikelyToHave)) {
          -  -  -  -  -  
                      - ]
    4051   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, " getblocks stopping, pruned or too old block at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
             #  #  #  # ]
    4052                 :             :                 break;
    4053                 :             :             }
    4054   [ +  -  +  -  :          57 :             WITH_LOCK(peer->m_block_inv_mutex, peer->m_blocks_for_inv_relay.push_back(pindex->GetBlockHash()));
                   +  - ]
    4055         [ -  + ]:          19 :             if (--nLimit <= 0) {
    4056                 :             :                 // When this block is requested, we'll send an inv that'll
    4057                 :             :                 // trigger the peer to getblocks the next batch of inventory.
    4058   [ #  #  #  #  :           0 :                 LogDebug(BCLog::NET, "  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
             #  #  #  # ]
    4059   [ #  #  #  # ]:           0 :                 WITH_LOCK(peer->m_block_inv_mutex, {peer->m_continuation_block = pindex->GetBlockHash();});
    4060                 :             :                 break;
    4061                 :             :             }
    4062                 :             :         }
    4063         [ +  - ]:           3 :         return;
    4064                 :           7 :     }
    4065                 :             : 
    4066         [ +  + ]:       96442 :     if (msg_type == NetMsgType::GETBLOCKTXN) {
    4067                 :         557 :         BlockTransactionsRequest req;
    4068         [ +  - ]:         557 :         vRecv >> req;
    4069                 :             : 
    4070                 :         557 :         std::shared_ptr<const CBlock> recent_block;
    4071                 :         557 :         {
    4072         [ +  - ]:         557 :             LOCK(m_most_recent_block_mutex);
    4073         [ +  + ]:         557 :             if (m_most_recent_block_hash == req.blockhash)
    4074                 :         490 :                 recent_block = m_most_recent_block;
    4075                 :             :             // Unlock m_most_recent_block_mutex to avoid cs_main lock inversion
    4076                 :         557 :         }
    4077         [ +  + ]:         557 :         if (recent_block) {
    4078         [ +  - ]:         490 :             SendBlockTransactions(pfrom, *peer, *recent_block, req);
    4079                 :             :             return;
    4080                 :             :         }
    4081                 :             : 
    4082                 :          67 :         FlatFilePos block_pos{};
    4083                 :          67 :         {
    4084         [ +  - ]:          67 :             LOCK(cs_main);
    4085                 :             : 
    4086         [ +  - ]:          67 :             const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(req.blockhash);
    4087   [ +  -  +  + ]:          67 :             if (!pindex || !(pindex->nStatus & BLOCK_HAVE_DATA)) {
    4088   [ +  -  +  -  :           1 :                 LogDebug(BCLog::NET, "Peer %d sent us a getblocktxn for a block we don't have\n", pfrom.GetId());
                   +  - ]
    4089         [ +  - ]:           1 :                 return;
    4090                 :             :             }
    4091                 :             : 
    4092   [ +  -  +  + ]:          66 :             if (pindex->nHeight >= m_chainman.ActiveChain().Height() - MAX_BLOCKTXN_DEPTH) {
    4093                 :          65 :                 block_pos = pindex->GetBlockPos();
    4094                 :             :             }
    4095                 :           1 :         }
    4096                 :             : 
    4097         [ +  + ]:          66 :         if (!block_pos.IsNull()) {
    4098                 :          65 :             CBlock block;
    4099         [ +  - ]:          65 :             const bool ret{m_chainman.m_blockman.ReadBlockFromDisk(block, block_pos)};
    4100                 :             :             // If height is above MAX_BLOCKTXN_DEPTH then this block cannot get
    4101                 :             :             // pruned after we release cs_main above, so this read should never fail.
    4102         [ -  + ]:          65 :             assert(ret);
    4103                 :             : 
    4104         [ +  - ]:          65 :             SendBlockTransactions(pfrom, *peer, block, req);
    4105                 :          65 :             return;
    4106                 :          65 :         }
    4107                 :             : 
    4108                 :             :         // If an older block is requested (should never happen in practice,
    4109                 :             :         // but can happen in tests) send a block response instead of a
    4110                 :             :         // blocktxn response. Sending a full block response instead of a
    4111                 :             :         // small blocktxn response is preferable in the case where a peer
    4112                 :             :         // might maliciously send lots of getblocktxn requests to trigger
    4113                 :             :         // expensive disk reads, because it will require the peer to
    4114                 :             :         // actually receive all the data read from disk over the network.
    4115   [ +  -  +  -  :           1 :         LogDebug(BCLog::NET, "Peer %d sent us a getblocktxn for a block > %i deep\n", pfrom.GetId(), MAX_BLOCKTXN_DEPTH);
                   +  - ]
    4116         [ +  - ]:           1 :         CInv inv{MSG_WITNESS_BLOCK, req.blockhash};
    4117   [ +  -  +  - ]:           3 :         WITH_LOCK(peer->m_getdata_requests_mutex, peer->m_getdata_requests.push_back(inv));
    4118                 :             :         // The message processing loop will go around again (without pausing) and we'll respond then
    4119                 :             :         return;
    4120                 :         557 :     }
    4121                 :             : 
    4122         [ +  + ]:       95885 :     if (msg_type == NetMsgType::GETHEADERS) {
    4123                 :        1222 :         CBlockLocator locator;
    4124                 :        1222 :         uint256 hashStop;
    4125   [ +  -  +  - ]:        1222 :         vRecv >> locator >> hashStop;
    4126                 :             : 
    4127         [ +  + ]:        1222 :         if (locator.vHave.size() > MAX_LOCATOR_SZ) {
    4128   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "getheaders locator size %lld > %d, %s\n", locator.vHave.size(), MAX_LOCATOR_SZ, pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4129                 :           1 :             pfrom.fDisconnect = true;
    4130                 :           1 :             return;
    4131                 :             :         }
    4132                 :             : 
    4133         [ -  + ]:        1221 :         if (m_chainman.m_blockman.LoadingBlocks()) {
    4134   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Ignoring getheaders from peer=%d while importing/reindexing\n", pfrom.GetId());
                   #  # ]
    4135                 :           0 :             return;
    4136                 :             :         }
    4137                 :             : 
    4138         [ +  - ]:        1221 :         LOCK(cs_main);
    4139                 :             : 
    4140                 :             :         // Note that if we were to be on a chain that forks from the checkpointed
    4141                 :             :         // chain, then serving those headers to a peer that has seen the
    4142                 :             :         // checkpointed chain would cause that peer to disconnect us. Requiring
    4143                 :             :         // that our chainwork exceed the minimum chain work is a protection against
    4144                 :             :         // being fed a bogus chain when we started up for the first time and
    4145                 :             :         // getting partitioned off the honest network for serving that chain to
    4146                 :             :         // others.
    4147   [ +  -  +  - ]:        1221 :         if (m_chainman.ActiveTip() == nullptr ||
    4148   [ +  -  +  -  :        1221 :                 (m_chainman.ActiveTip()->nChainWork < m_chainman.MinimumChainWork() && !pfrom.HasPermission(NetPermissionFlags::Download))) {
          +  -  +  +  +  
                      + ]
    4149   [ +  -  +  -  :           9 :             LogDebug(BCLog::NET, "Ignoring getheaders from peer=%d because active chain has too little work; sending empty response\n", pfrom.GetId());
                   +  - ]
    4150                 :             :             // Just respond with an empty headers message, to tell the peer to
    4151                 :             :             // go away but not treat us as unresponsive.
    4152   [ +  -  +  - ]:          18 :             MakeAndPushMessage(pfrom, NetMsgType::HEADERS, std::vector<CBlockHeader>());
    4153                 :           9 :             return;
    4154                 :             :         }
    4155                 :             : 
    4156                 :        1212 :         CNodeState *nodestate = State(pfrom.GetId());
    4157                 :        1212 :         const CBlockIndex* pindex = nullptr;
    4158         [ +  + ]:        1212 :         if (locator.IsNull())
    4159                 :             :         {
    4160                 :             :             // If locator is null, return the hashStop block
    4161         [ +  - ]:           6 :             pindex = m_chainman.m_blockman.LookupBlockIndex(hashStop);
    4162         [ +  - ]:           6 :             if (!pindex) {
    4163                 :             :                 return;
    4164                 :             :             }
    4165                 :             : 
    4166   [ +  -  +  + ]:           6 :             if (!BlockRequestAllowed(pindex)) {
    4167   [ +  -  +  -  :           2 :                 LogDebug(BCLog::NET, "%s: ignoring request from peer=%i for old block header that isn't in the main chain\n", __func__, pfrom.GetId());
                   +  - ]
    4168                 :           2 :                 return;
    4169                 :             :             }
    4170                 :             :         }
    4171                 :             :         else
    4172                 :             :         {
    4173                 :             :             // Find the last block the caller has in the main chain
    4174   [ +  -  +  - ]:        1206 :             pindex = m_chainman.ActiveChainstate().FindForkInGlobalIndex(locator);
    4175         [ +  - ]:        1206 :             if (pindex)
    4176         [ +  - ]:        1206 :                 pindex = m_chainman.ActiveChain().Next(pindex);
    4177                 :             :         }
    4178                 :             : 
    4179                 :             :         // we must use CBlocks, as CBlockHeaders won't include the 0x00 nTx count at the end
    4180                 :        1210 :         std::vector<CBlock> vHeaders;
    4181                 :        1210 :         int nLimit = m_opts.max_headers_result;
    4182   [ +  -  +  -  :        2420 :         LogDebug(BCLog::NET, "getheaders %d to %s from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), pfrom.GetId());
          +  +  +  -  +  
             -  +  +  +  
                      - ]
    4183   [ +  -  +  + ]:      136803 :         for (; pindex; pindex = m_chainman.ActiveChain().Next(pindex))
    4184                 :             :         {
    4185         [ +  - ]:      135624 :             vHeaders.emplace_back(pindex->GetBlockHeader());
    4186   [ +  +  +  + ]:      135624 :             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
    4187                 :             :                 break;
    4188                 :             :         }
    4189                 :             :         // pindex can be nullptr either if we sent m_chainman.ActiveChain().Tip() OR
    4190                 :             :         // if our peer has m_chainman.ActiveChain().Tip() (and thus we are sending an empty
    4191                 :             :         // headers message). In both cases it's safe to update
    4192                 :             :         // pindexBestHeaderSent to be our tip.
    4193                 :             :         //
    4194                 :             :         // It is important that we simply reset the BestHeaderSent value here,
    4195                 :             :         // and not max(BestHeaderSent, newHeaderSent). We might have announced
    4196                 :             :         // the currently-being-connected tip using a compact block, which
    4197                 :             :         // resulted in the peer sending a headers request, which we respond to
    4198                 :             :         // without the new block. By resetting the BestHeaderSent, we ensure we
    4199                 :             :         // will re-announce the new block via headers (or compact blocks again)
    4200                 :             :         // in the SendMessages logic.
    4201   [ +  +  +  -  :        1210 :         nodestate->pindexBestHeaderSent = pindex ? pindex : m_chainman.ActiveChain().Tip();
                   +  - ]
    4202   [ +  -  +  - ]:        1210 :         MakeAndPushMessage(pfrom, NetMsgType::HEADERS, TX_WITH_WITNESS(vHeaders));
    4203                 :        1210 :         return;
    4204                 :        3653 :     }
    4205                 :             : 
    4206         [ +  + ]:       94663 :     if (msg_type == NetMsgType::TX) {
    4207         [ +  + ]:       12262 :         if (RejectIncomingTxs(pfrom)) {
    4208   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "transaction sent in violation of protocol peer=%d\n", pfrom.GetId());
                   +  - ]
    4209                 :           2 :             pfrom.fDisconnect = true;
    4210                 :           2 :             return;
    4211                 :             :         }
    4212                 :             : 
    4213                 :             :         // Stop processing the transaction early if we are still in IBD since we don't
    4214                 :             :         // have enough information to validate it yet. Sending unsolicited transactions
    4215                 :             :         // is not considered a protocol violation, so don't punish the peer.
    4216   [ +  -  +  + ]:       12260 :         if (m_chainman.IsInitialBlockDownload()) return;
    4217                 :             : 
    4218                 :       12259 :         CTransactionRef ptx;
    4219         [ +  + ]:       12259 :         vRecv >> TX_WITH_WITNESS(ptx);
    4220         [ +  + ]:       12257 :         const CTransaction& tx = *ptx;
    4221                 :             : 
    4222         [ +  + ]:       12257 :         const uint256& txid = ptx->GetHash();
    4223                 :       12257 :         const uint256& wtxid = ptx->GetWitnessHash();
    4224                 :             : 
    4225         [ +  + ]:       12257 :         const uint256& hash = peer->m_wtxid_relay ? wtxid : txid;
    4226         [ +  - ]:       12257 :         AddKnownTx(*peer, hash);
    4227                 :             : 
    4228   [ +  -  +  - ]:       12257 :         LOCK2(cs_main, m_tx_download_mutex);
    4229                 :             : 
    4230   [ +  -  +  + ]:       12257 :         const auto& [should_validate, package_to_validate] = m_txdownloadman.ReceivedTx(pfrom.GetId(), ptx);
    4231         [ +  + ]:       12257 :         if (!should_validate) {
    4232         [ +  + ]:          29 :             if (pfrom.HasPermission(NetPermissionFlags::ForceRelay)) {
    4233                 :             :                 // Always relay transactions received from peers with forcerelay
    4234                 :             :                 // permission, even if they were already in the mempool, allowing
    4235                 :             :                 // the node to function as a gateway for nodes hidden behind it.
    4236   [ +  -  +  + ]:           2 :                 if (!m_mempool.exists(GenTxid::Txid(tx.GetHash()))) {
    4237   [ +  -  +  -  :           2 :                     LogPrintf("Not relaying non-mempool transaction %s (wtxid=%s) from forcerelay peer=%d\n",
                   +  - ]
    4238                 :             :                               tx.GetHash().ToString(), tx.GetWitnessHash().ToString(), pfrom.GetId());
    4239                 :             :                 } else {
    4240   [ +  -  +  -  :           2 :                     LogPrintf("Force relaying tx %s (wtxid=%s) from peer=%d\n",
                   +  - ]
    4241                 :             :                               tx.GetHash().ToString(), tx.GetWitnessHash().ToString(), pfrom.GetId());
    4242         [ +  - ]:           1 :                     RelayTransaction(tx.GetHash(), tx.GetWitnessHash());
    4243                 :             :                 }
    4244                 :             :             }
    4245                 :             : 
    4246         [ +  + ]:          29 :             if (package_to_validate) {
    4247   [ +  -  +  - ]:          14 :                 const auto package_result{ProcessNewPackage(m_chainman.ActiveChainstate(), m_mempool, package_to_validate->m_txns, /*test_accept=*/false, /*client_maxfeerate=*/std::nullopt)};
    4248   [ +  -  +  -  :          31 :                 LogDebug(BCLog::TXPACKAGES, "package evaluation for %s: %s\n", package_to_validate->ToString(),
          +  +  +  -  +  
                      - ]
    4249                 :             :                          package_result.m_state.IsValid() ? "package accepted" : "package rejected");
    4250   [ +  -  +  - ]:          14 :                 ProcessPackageResult(package_to_validate.value(), package_result);
    4251                 :          14 :             }
    4252                 :          29 :             return;
    4253                 :             :         }
    4254                 :             : 
    4255                 :             :         // ReceivedTx should not be telling us to validate the tx and a package.
    4256         [ +  - ]:       12228 :         Assume(!package_to_validate.has_value());
    4257                 :             : 
    4258         [ +  - ]:       12228 :         const MempoolAcceptResult result = m_chainman.ProcessTransaction(ptx);
    4259                 :       12228 :         const TxValidationState& state = result.m_state;
    4260                 :             : 
    4261         [ +  + ]:       12228 :         if (result.m_result_type == MempoolAcceptResult::ResultType::VALID) {
    4262         [ +  - ]:       11668 :             ProcessValidTx(pfrom.GetId(), ptx, result.m_replaced_transactions);
    4263                 :       11668 :             pfrom.m_last_tx_time = GetTime<std::chrono::seconds>();
    4264                 :             :         }
    4265         [ +  + ]:       12228 :         if (state.IsInvalid()) {
    4266   [ +  -  +  + ]:         560 :             if (auto package_to_validate{ProcessInvalidTx(pfrom.GetId(), ptx, state, /*first_time_failure=*/true)}) {
    4267   [ +  -  +  - ]:          11 :                 const auto package_result{ProcessNewPackage(m_chainman.ActiveChainstate(), m_mempool, package_to_validate->m_txns, /*test_accept=*/false, /*client_maxfeerate=*/std::nullopt)};
    4268   [ +  -  +  -  :          23 :                 LogDebug(BCLog::TXPACKAGES, "package evaluation for %s: %s\n", package_to_validate->ToString(),
          +  +  +  -  +  
                      - ]
    4269                 :             :                          package_result.m_state.IsValid() ? "package accepted" : "package rejected");
    4270   [ +  -  +  - ]:          11 :                 ProcessPackageResult(package_to_validate.value(), package_result);
    4271                 :         571 :             }
    4272                 :             :         }
    4273                 :             : 
    4274                 :       12228 :         return;
    4275   [ +  -  +  -  :       61258 :     }
                   +  - ]
    4276                 :             : 
    4277         [ +  + ]:       82401 :     if (msg_type == NetMsgType::CMPCTBLOCK)
    4278                 :             :     {
    4279                 :             :         // Ignore cmpctblock received while importing
    4280         [ -  + ]:       22770 :         if (m_chainman.m_blockman.LoadingBlocks()) {
    4281   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Unexpected cmpctblock message received from peer %d\n", pfrom.GetId());
                   #  # ]
    4282                 :           0 :             return;
    4283                 :             :         }
    4284                 :             : 
    4285                 :       22770 :         CBlockHeaderAndShortTxIDs cmpctblock;
    4286         [ +  - ]:       22770 :         vRecv >> cmpctblock;
    4287                 :             : 
    4288                 :       22770 :         bool received_new_header = false;
    4289         [ +  - ]:       22770 :         const auto blockhash = cmpctblock.header.GetHash();
    4290                 :             : 
    4291                 :       22770 :         {
    4292         [ +  - ]:       22770 :         LOCK(cs_main);
    4293                 :             : 
    4294         [ +  - ]:       22770 :         const CBlockIndex* prev_block = m_chainman.m_blockman.LookupBlockIndex(cmpctblock.header.hashPrevBlock);
    4295         [ +  + ]:       22770 :         if (!prev_block) {
    4296                 :             :             // Doesn't connect (or is genesis), instead of DoSing in AcceptBlockHeader, request deeper headers
    4297   [ +  -  +  - ]:          65 :             if (!m_chainman.IsInitialBlockDownload()) {
    4298   [ +  -  +  - ]:         130 :                 MaybeSendGetHeaders(pfrom, GetLocator(m_chainman.m_best_header), *peer);
    4299                 :             :             }
    4300                 :          65 :             return;
    4301   [ +  -  +  -  :       22705 :         } else if (prev_block->nChainWork + CalculateClaimedHeadersWork({{cmpctblock.header}}) < GetAntiDoSWorkThreshold()) {
             +  -  +  + ]
    4302                 :             :             // If we get a low-work header in a compact block, we can ignore it.
    4303   [ +  -  +  -  :         246 :             LogDebug(BCLog::NET, "Ignoring low-work compact block from peer %d\n", pfrom.GetId());
                   +  - ]
    4304                 :         246 :             return;
    4305                 :             :         }
    4306                 :             : 
    4307   [ +  -  +  + ]:       22459 :         if (!m_chainman.m_blockman.LookupBlockIndex(blockhash)) {
    4308                 :       19036 :             received_new_header = true;
    4309                 :             :         }
    4310                 :         311 :         }
    4311                 :             : 
    4312                 :       22459 :         const CBlockIndex *pindex = nullptr;
    4313         [ +  - ]:       22459 :         BlockValidationState state;
    4314   [ +  -  -  + ]:       22459 :         if (!m_chainman.ProcessNewBlockHeaders({{cmpctblock.header}}, /*min_pow_checked=*/true, state, &pindex)) {
    4315         [ #  # ]:           0 :             if (state.IsInvalid()) {
    4316   [ #  #  #  # ]:           0 :                 MaybePunishNodeForBlock(pfrom.GetId(), state, /*via_compact_block=*/true, "invalid header via cmpctblock");
    4317                 :           0 :                 return;
    4318                 :             :             }
    4319                 :             :         }
    4320                 :             : 
    4321         [ +  + ]:       22459 :         if (received_new_header) {
    4322   [ +  -  +  - ]:       38072 :             LogInfo("Saw new cmpctblock header hash=%s peer=%d\n",
    4323                 :             :                 blockhash.ToString(), pfrom.GetId());
    4324                 :             :         }
    4325                 :             : 
    4326                 :       22459 :         bool fProcessBLOCKTXN = false;
    4327                 :             : 
    4328                 :             :         // If we end up treating this as a plain headers message, call that as well
    4329                 :             :         // without cs_main.
    4330                 :       22459 :         bool fRevertToHeaderProcessing = false;
    4331                 :             : 
    4332                 :             :         // Keep a CBlock for "optimistic" compactblock reconstructions (see
    4333                 :             :         // below)
    4334         [ +  - ]:       22459 :         std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
    4335                 :       22459 :         bool fBlockReconstructed = false;
    4336                 :             : 
    4337                 :       22459 :         {
    4338         [ +  - ]:       22459 :         LOCK(cs_main);
    4339                 :             :         // If AcceptBlockHeader returned true, it set pindex
    4340         [ -  + ]:       22459 :         assert(pindex);
    4341         [ +  - ]:       22459 :         UpdateBlockAvailability(pfrom.GetId(), pindex->GetBlockHash());
    4342                 :             : 
    4343                 :       22459 :         CNodeState *nodestate = State(pfrom.GetId());
    4344                 :             : 
    4345                 :             :         // If this was a new header with more work than our tip, update the
    4346                 :             :         // peer's last block announcement time
    4347   [ +  +  +  -  :       41495 :         if (received_new_header && pindex->nChainWork > m_chainman.ActiveChain().Tip()->nChainWork) {
          +  -  +  -  +  
                      + ]
    4348         [ +  - ]:       18888 :             nodestate->m_last_block_announcement = GetTime();
    4349                 :             :         }
    4350                 :             : 
    4351         [ +  + ]:       22459 :         if (pindex->nStatus & BLOCK_HAVE_DATA) // Nothing to do here
    4352                 :             :             return;
    4353                 :             : 
    4354                 :       19393 :         auto range_flight = mapBlocksInFlight.equal_range(pindex->GetBlockHash());
    4355                 :       19393 :         size_t already_in_flight = std::distance(range_flight.first, range_flight.second);
    4356                 :       19393 :         bool requested_block_from_this_peer{false};
    4357                 :             : 
    4358                 :             :         // Multimap ensures ordering of outstanding requests. It's either empty or first in line.
    4359   [ +  +  +  + ]:       19393 :         bool first_in_flight = already_in_flight == 0 || (range_flight.first->second.first == pfrom.GetId());
    4360                 :             : 
    4361         [ +  + ]:       19510 :         while (range_flight.first != range_flight.second) {
    4362         [ +  + ]:         363 :             if (range_flight.first->second.first == pfrom.GetId()) {
    4363                 :             :                 requested_block_from_this_peer = true;
    4364                 :             :                 break;
    4365                 :             :             }
    4366                 :         117 :             range_flight.first++;
    4367                 :             :         }
    4368                 :             : 
    4369   [ +  -  +  -  :       38786 :         if (pindex->nChainWork <= m_chainman.ActiveChain().Tip()->nChainWork || // We know something better
             +  -  +  + ]
    4370         [ +  - ]:       19240 :                 pindex->nTx != 0) { // We had this block at some point, but pruned it
    4371         [ +  + ]:         153 :             if (requested_block_from_this_peer) {
    4372                 :             :                 // We requested this block for some reason, but our mempool will probably be useless
    4373                 :             :                 // so we just grab the block via normal getdata
    4374         [ +  - ]:           5 :                 std::vector<CInv> vInv(1);
    4375         [ +  - ]:           5 :                 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(*peer), blockhash);
    4376   [ +  -  +  - ]:          10 :                 MakeAndPushMessage(pfrom, NetMsgType::GETDATA, vInv);
    4377                 :           5 :             }
    4378                 :         153 :             return;
    4379                 :             :         }
    4380                 :             : 
    4381                 :             :         // If we're not close to tip yet, give up and let parallel block fetch work its magic
    4382   [ +  +  +  -  :       19240 :         if (!already_in_flight && !CanDirectFetch()) {
                   +  + ]
    4383                 :             :             return;
    4384                 :             :         }
    4385                 :             : 
    4386                 :             :         // We want to be a bit conservative just to be extra careful about DoS
    4387                 :             :         // possibilities in compact block processing...
    4388   [ +  -  +  + ]:       19212 :         if (pindex->nHeight <= m_chainman.ActiveChain().Height() + 2) {
    4389   [ +  -  +  +  :       15444 :             if ((already_in_flight < MAX_CMPCTBLOCKS_INFLIGHT_PER_BLOCK && nodestate->vBlocksInFlight.size() < MAX_BLOCKS_IN_TRANSIT_PER_PEER) ||
                   +  - ]
    4390                 :             :                  requested_block_from_this_peer) {
    4391                 :       15443 :                 std::list<QueuedBlock>::iterator* queuedBlockIt = nullptr;
    4392   [ +  -  +  + ]:       15443 :                 if (!BlockRequested(pfrom.GetId(), *pindex, &queuedBlockIt)) {
    4393         [ +  - ]:         241 :                     if (!(*queuedBlockIt)->partialBlock)
    4394   [ +  -  -  + ]:         241 :                         (*queuedBlockIt)->partialBlock.reset(new PartiallyDownloadedBlock(&m_mempool));
    4395                 :             :                     else {
    4396                 :             :                         // The block was already in flight using compact blocks from the same peer
    4397   [ #  #  #  #  :           0 :                         LogDebug(BCLog::NET, "Peer sent us compact block we were already syncing!\n");
                   #  # ]
    4398                 :           0 :                         return;
    4399                 :             :                     }
    4400                 :             :                 }
    4401                 :             : 
    4402         [ +  - ]:       15443 :                 PartiallyDownloadedBlock& partialBlock = *(*queuedBlockIt)->partialBlock;
    4403         [ +  - ]:       15443 :                 ReadStatus status = partialBlock.InitData(cmpctblock, vExtraTxnForCompact);
    4404         [ +  + ]:       15443 :                 if (status == READ_STATUS_INVALID) {
    4405         [ +  - ]:           1 :                     RemoveBlockRequest(pindex->GetBlockHash(), pfrom.GetId()); // Reset in-flight state in case Misbehaving does not result in a disconnect
    4406   [ +  -  +  - ]:           1 :                     Misbehaving(*peer, "invalid compact block");
    4407                 :           1 :                     return;
    4408         [ -  + ]:       15442 :                 } else if (status == READ_STATUS_FAILED) {
    4409         [ #  # ]:           0 :                     if (first_in_flight)  {
    4410                 :             :                         // Duplicate txindexes, the block is now in-flight, so just request it
    4411         [ #  # ]:           0 :                         std::vector<CInv> vInv(1);
    4412         [ #  # ]:           0 :                         vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(*peer), blockhash);
    4413   [ #  #  #  # ]:           0 :                         MakeAndPushMessage(pfrom, NetMsgType::GETDATA, vInv);
    4414                 :           0 :                     } else {
    4415                 :             :                         // Give up for this peer and wait for other peer(s)
    4416         [ #  # ]:           0 :                         RemoveBlockRequest(pindex->GetBlockHash(), pfrom.GetId());
    4417                 :             :                     }
    4418                 :           0 :                     return;
    4419                 :             :                 }
    4420                 :             : 
    4421                 :       15442 :                 BlockTransactionsRequest req;
    4422         [ +  + ]:       43452 :                 for (size_t i = 0; i < cmpctblock.BlockTxCount(); i++) {
    4423   [ +  -  +  + ]:       28010 :                     if (!partialBlock.IsTxAvailable(i))
    4424         [ +  - ]:       28010 :                         req.indexes.push_back(i);
    4425                 :             :                 }
    4426         [ +  + ]:       15442 :                 if (req.indexes.empty()) {
    4427                 :             :                     fProcessBLOCKTXN = true;
    4428         [ +  + ]:         549 :                 } else if (first_in_flight) {
    4429                 :             :                     // We will try to round-trip any compact blocks we get on failure,
    4430                 :             :                     // as long as it's first...
    4431                 :         538 :                     req.blockhash = pindex->GetBlockHash();
    4432   [ +  -  +  - ]:        1076 :                     MakeAndPushMessage(pfrom, NetMsgType::GETBLOCKTXN, req);
    4433                 :          22 :                 } else if (pfrom.m_bip152_highbandwidth_to &&
    4434   [ +  +  +  - ]:          17 :                     (!pfrom.IsInboundConn() ||
    4435   [ +  -  +  + ]:          12 :                     IsBlockRequestedFromOutbound(blockhash) ||
    4436         [ +  - ]:          11 :                     already_in_flight < MAX_CMPCTBLOCKS_INFLIGHT_PER_BLOCK - 1)) {
    4437                 :             :                     // ... or it's a hb relay peer and:
    4438                 :             :                     // - peer is outbound, or
    4439                 :             :                     // - we already have an outbound attempt in flight(so we'll take what we can get), or
    4440                 :             :                     // - it's not the final parallel download slot (which we may reserve for first outbound)
    4441                 :           8 :                     req.blockhash = pindex->GetBlockHash();
    4442   [ +  -  +  - ]:          16 :                     MakeAndPushMessage(pfrom, NetMsgType::GETBLOCKTXN, req);
    4443                 :             :                 } else {
    4444                 :             :                     // Give up for this peer and wait for other peer(s)
    4445         [ +  - ]:           3 :                     RemoveBlockRequest(pindex->GetBlockHash(), pfrom.GetId());
    4446                 :             :                 }
    4447                 :       15442 :             } else {
    4448                 :             :                 // This block is either already in flight from a different
    4449                 :             :                 // peer, or this peer has too many blocks outstanding to
    4450                 :             :                 // download from.
    4451                 :             :                 // Optimistically try to reconstruct anyway since we might be
    4452                 :             :                 // able to without any round trips.
    4453                 :           1 :                 PartiallyDownloadedBlock tempBlock(&m_mempool);
    4454         [ +  - ]:           1 :                 ReadStatus status = tempBlock.InitData(cmpctblock, vExtraTxnForCompact);
    4455         [ -  + ]:           1 :                 if (status != READ_STATUS_OK) {
    4456                 :             :                     // TODO: don't ignore failures
    4457                 :           0 :                     return;
    4458                 :             :                 }
    4459                 :           1 :                 std::vector<CTransactionRef> dummy;
    4460         [ +  - ]:           1 :                 status = tempBlock.FillBlock(*pblock, dummy);
    4461         [ +  - ]:           1 :                 if (status == READ_STATUS_OK) {
    4462                 :           1 :                     fBlockReconstructed = true;
    4463                 :             :                 }
    4464                 :           2 :             }
    4465                 :             :         } else {
    4466         [ -  + ]:        3768 :             if (requested_block_from_this_peer) {
    4467                 :             :                 // We requested this block, but its far into the future, so our
    4468                 :             :                 // mempool will probably be useless - request the block normally
    4469         [ #  # ]:           0 :                 std::vector<CInv> vInv(1);
    4470         [ #  # ]:           0 :                 vInv[0] = CInv(MSG_BLOCK | GetFetchFlags(*peer), blockhash);
    4471   [ #  #  #  # ]:           0 :                 MakeAndPushMessage(pfrom, NetMsgType::GETDATA, vInv);
    4472                 :           0 :                 return;
    4473                 :           0 :             } else {
    4474                 :             :                 // If this was an announce-cmpctblock, we want the same treatment as a header message
    4475                 :             :                 fRevertToHeaderProcessing = true;
    4476                 :             :             }
    4477                 :             :         }
    4478                 :        3248 :         } // cs_main
    4479                 :             : 
    4480         [ +  + ]:       19211 :         if (fProcessBLOCKTXN) {
    4481                 :       14893 :             BlockTransactions txn;
    4482                 :       14893 :             txn.blockhash = blockhash;
    4483         [ +  - ]:       14893 :             return ProcessCompactBlockTxns(pfrom, *peer, txn);
    4484                 :       14893 :         }
    4485                 :             : 
    4486         [ +  + ]:        4318 :         if (fRevertToHeaderProcessing) {
    4487                 :             :             // Headers received from HB compact block peers are permitted to be
    4488                 :             :             // relayed before full validation (see BIP 152), so we don't want to disconnect
    4489                 :             :             // the peer if the header turns out to be for an invalid block.
    4490                 :             :             // Note that if a peer tries to build on an invalid chain, that
    4491                 :             :             // will be detected and the peer will be disconnected/discouraged.
    4492   [ +  -  +  - ]:        7536 :             return ProcessHeadersMessage(pfrom, *peer, {cmpctblock.header}, /*via_compact_block=*/true);
    4493                 :             :         }
    4494                 :             : 
    4495         [ +  + ]:         550 :         if (fBlockReconstructed) {
    4496                 :             :             // If we got here, we were able to optimistically reconstruct a
    4497                 :             :             // block that is in flight from some other peer.
    4498                 :           1 :             {
    4499         [ +  - ]:           1 :                 LOCK(cs_main);
    4500   [ +  -  +  - ]:           1 :                 mapBlockSource.emplace(pblock->GetHash(), std::make_pair(pfrom.GetId(), false));
    4501                 :           0 :             }
    4502                 :             :             // Setting force_processing to true means that we bypass some of
    4503                 :             :             // our anti-DoS protections in AcceptBlock, which filters
    4504                 :             :             // unrequested blocks that might be trying to waste our resources
    4505                 :             :             // (eg disk space). Because we only try to reconstruct blocks when
    4506                 :             :             // we're close to caught up (via the CanDirectFetch() requirement
    4507                 :             :             // above, combined with the behavior of not requesting blocks until
    4508                 :             :             // we have a chain with at least the minimum chain work), and we ignore
    4509                 :             :             // compact blocks with less work than our tip, it is safe to treat
    4510                 :             :             // reconstructed compact blocks as having been requested.
    4511   [ +  -  +  - ]:           2 :             ProcessBlock(pfrom, pblock, /*force_processing=*/true, /*min_pow_checked=*/true);
    4512         [ +  - ]:           1 :             LOCK(cs_main); // hold cs_main for CBlockIndex::IsValid()
    4513   [ +  -  +  -  :           2 :             if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS)) {
                   +  - ]
    4514                 :             :                 // Clear download state for this block, which is in
    4515                 :             :                 // process from some other peer.  We do this after calling
    4516                 :             :                 // ProcessNewBlock so that a malleated cmpctblock announcement
    4517                 :             :                 // can't be used to interfere with block relay.
    4518   [ +  -  +  - ]:           1 :                 RemoveBlockRequest(pblock->GetHash(), std::nullopt);
    4519                 :             :             }
    4520                 :           1 :         }
    4521                 :         550 :         return;
    4522                 :       67688 :     }
    4523                 :             : 
    4524         [ +  + ]:       59631 :     if (msg_type == NetMsgType::BLOCKTXN)
    4525                 :             :     {
    4526                 :             :         // Ignore blocktxn received while importing
    4527         [ -  + ]:         542 :         if (m_chainman.m_blockman.LoadingBlocks()) {
    4528   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Unexpected blocktxn message received from peer %d\n", pfrom.GetId());
                   #  # ]
    4529                 :           0 :             return;
    4530                 :             :         }
    4531                 :             : 
    4532                 :         542 :         BlockTransactions resp;
    4533         [ +  - ]:         542 :         vRecv >> resp;
    4534                 :             : 
    4535         [ +  - ]:         542 :         return ProcessCompactBlockTxns(pfrom, *peer, resp);
    4536                 :         542 :     }
    4537                 :             : 
    4538         [ +  + ]:       59089 :     if (msg_type == NetMsgType::HEADERS)
    4539                 :             :     {
    4540                 :             :         // Ignore headers received while importing
    4541         [ -  + ]:        5215 :         if (m_chainman.m_blockman.LoadingBlocks()) {
    4542   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Unexpected headers message received from peer %d\n", pfrom.GetId());
                   #  # ]
    4543                 :           0 :             return;
    4544                 :             :         }
    4545                 :             : 
    4546                 :        5215 :         std::vector<CBlockHeader> headers;
    4547                 :             : 
    4548                 :             :         // Bypass the normal CBlock deserialization, as we don't want to risk deserializing 2000 full blocks.
    4549         [ +  - ]:        5215 :         unsigned int nCount = ReadCompactSize(vRecv);
    4550         [ +  + ]:        5215 :         if (nCount > m_opts.max_headers_result) {
    4551   [ +  -  +  - ]:           1 :             Misbehaving(*peer, strprintf("headers message size = %u", nCount));
    4552                 :           1 :             return;
    4553                 :             :         }
    4554         [ +  - ]:        5214 :         headers.resize(nCount);
    4555         [ +  + ]:      172621 :         for (unsigned int n = 0; n < nCount; n++) {
    4556         [ +  - ]:      167407 :             vRecv >> headers[n];
    4557         [ +  - ]:      167407 :             ReadCompactSize(vRecv); // ignore tx count; assume it is 0.
    4558                 :             :         }
    4559                 :             : 
    4560         [ +  - ]:        5214 :         ProcessHeadersMessage(pfrom, *peer, std::move(headers), /*via_compact_block=*/false);
    4561                 :             : 
    4562                 :             :         // Check if the headers presync progress needs to be reported to validation.
    4563                 :             :         // This needs to be done without holding the m_headers_presync_mutex lock.
    4564         [ +  + ]:        5214 :         if (m_headers_presync_should_signal.exchange(false)) {
    4565                 :           6 :             HeadersPresyncStats stats;
    4566                 :           6 :             {
    4567         [ +  - ]:           6 :                 LOCK(m_headers_presync_mutex);
    4568                 :           6 :                 auto it = m_headers_presync_stats.find(m_headers_presync_bestpeer);
    4569         [ +  - ]:           6 :                 if (it != m_headers_presync_stats.end()) stats = it->second;
    4570                 :           6 :             }
    4571         [ +  - ]:           6 :             if (stats.second) {
    4572         [ +  - ]:           6 :                 m_chainman.ReportHeadersPresync(stats.first, stats.second->first, stats.second->second);
    4573                 :             :             }
    4574                 :             :         }
    4575                 :             : 
    4576                 :        5214 :         return;
    4577                 :        5215 :     }
    4578                 :             : 
    4579         [ +  + ]:       53874 :     if (msg_type == NetMsgType::BLOCK)
    4580                 :             :     {
    4581                 :             :         // Ignore block received while importing
    4582         [ -  + ]:       42323 :         if (m_chainman.m_blockman.LoadingBlocks()) {
    4583   [ #  #  #  #  :           0 :             LogDebug(BCLog::NET, "Unexpected block message received from peer %d\n", pfrom.GetId());
                   #  # ]
    4584                 :           0 :             return;
    4585                 :             :         }
    4586                 :             : 
    4587         [ +  - ]:       42323 :         std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
    4588         [ +  + ]:       42323 :         vRecv >> TX_WITH_WITNESS(*pblock);
    4589                 :             : 
    4590   [ +  -  +  -  :       84642 :         LogDebug(BCLog::NET, "received block %s peer=%d\n", pblock->GetHash().ToString(), pfrom.GetId());
          +  -  +  -  +  
                      - ]
    4591                 :             : 
    4592   [ +  -  +  -  :      126963 :         const CBlockIndex* prev_block{WITH_LOCK(m_chainman.GetMutex(), return m_chainman.m_blockman.LookupBlockIndex(pblock->hashPrevBlock))};
                   +  - ]
    4593                 :             : 
    4594                 :             :         // Check for possible mutation if it connects to something we know so we can check for DEPLOYMENT_SEGWIT being active
    4595   [ +  +  +  -  :       84640 :         if (prev_block && IsBlockMutated(/*block=*/*pblock,
                   +  + ]
    4596                 :       42319 :                            /*check_witness_root=*/DeploymentActiveAfter(prev_block, m_chainman, Consensus::DEPLOYMENT_SEGWIT))) {
    4597   [ +  -  +  -  :         331 :             LogDebug(BCLog::NET, "Received mutated block from peer=%d\n", peer->m_id);
                   +  - ]
    4598   [ +  -  +  - ]:         331 :             Misbehaving(*peer, "mutated block");
    4599   [ +  -  +  -  :         993 :             WITH_LOCK(cs_main, RemoveBlockRequest(pblock->GetHash(), peer->m_id));
                   +  - ]
    4600                 :             :             return;
    4601                 :             :         }
    4602                 :             : 
    4603                 :       41990 :         bool forceProcessing = false;
    4604         [ +  - ]:       41990 :         const uint256 hash(pblock->GetHash());
    4605                 :       41990 :         bool min_pow_checked = false;
    4606                 :       41990 :         {
    4607         [ +  - ]:       41990 :             LOCK(cs_main);
    4608                 :             :             // Always process the block if we requested it, since we may
    4609                 :             :             // need it even when it's not a candidate for a new best tip.
    4610                 :       41990 :             forceProcessing = IsBlockRequested(hash);
    4611         [ +  - ]:       41990 :             RemoveBlockRequest(hash, pfrom.GetId());
    4612                 :             :             // mapBlockSource is only used for punishing peers and setting
    4613                 :             :             // which peers send us compact blocks, so the race between here and
    4614                 :             :             // cs_main in ProcessNewBlock is fine.
    4615         [ +  - ]:       41990 :             mapBlockSource.emplace(hash, std::make_pair(pfrom.GetId(), true));
    4616                 :             : 
    4617                 :             :             // Check claimed work on this block against our anti-dos thresholds.
    4618   [ +  +  +  -  :       41990 :             if (prev_block && prev_block->nChainWork + CalculateClaimedHeadersWork({{pblock->GetBlockHeader()}}) >= GetAntiDoSWorkThreshold()) {
          +  -  +  -  +  
                      + ]
    4619                 :             :                 min_pow_checked = true;
    4620                 :             :             }
    4621                 :           0 :         }
    4622   [ +  -  +  - ]:       83980 :         ProcessBlock(pfrom, pblock, forceProcessing, min_pow_checked);
    4623                 :       41990 :         return;
    4624                 :       42323 :     }
    4625                 :             : 
    4626         [ +  + ]:       11551 :     if (msg_type == NetMsgType::GETADDR) {
    4627                 :             :         // This asymmetric behavior for inbound and outbound connections was introduced
    4628                 :             :         // to prevent a fingerprinting attack: an attacker can send specific fake addresses
    4629                 :             :         // to users' AddrMan and later request them by sending getaddr messages.
    4630                 :             :         // Making nodes which are behind NAT and can only make outgoing connections ignore
    4631                 :             :         // the getaddr message mitigates the attack.
    4632         [ +  + ]:         928 :         if (!pfrom.IsInboundConn()) {
    4633   [ +  -  +  -  :          18 :             LogDebug(BCLog::NET, "Ignoring \"getaddr\" from %s connection. peer=%d\n", pfrom.ConnectionTypeAsString(), pfrom.GetId());
             +  -  +  - ]
    4634                 :           9 :             return;
    4635                 :             :         }
    4636                 :             : 
    4637                 :             :         // Since this must be an inbound connection, SetupAddressRelay will
    4638                 :             :         // never fail.
    4639         [ +  - ]:         919 :         Assume(SetupAddressRelay(pfrom, *peer));
    4640                 :             : 
    4641                 :             :         // Only send one GetAddr response per connection to reduce resource waste
    4642                 :             :         // and discourage addr stamping of INV announcements.
    4643         [ +  + ]:         919 :         if (peer->m_getaddr_recvd) {
    4644   [ +  -  +  -  :           1 :             LogDebug(BCLog::NET, "Ignoring repeated \"getaddr\". peer=%d\n", pfrom.GetId());
                   +  - ]
    4645                 :           1 :             return;
    4646                 :             :         }
    4647                 :         918 :         peer->m_getaddr_recvd = true;
    4648                 :             : 
    4649                 :         918 :         peer->m_addrs_to_send.clear();
    4650                 :         918 :         std::vector<CAddress> vAddr;
    4651         [ +  + ]:         918 :         if (pfrom.HasPermission(NetPermissionFlags::Addr)) {
    4652         [ +  - ]:          72 :             vAddr = m_connman.GetAddresses(MAX_ADDR_TO_SEND, MAX_PCT_ADDR_TO_SEND, /*network=*/std::nullopt);
    4653                 :             :         } else {
    4654         [ +  - ]:        1764 :             vAddr = m_connman.GetAddresses(pfrom, MAX_ADDR_TO_SEND, MAX_PCT_ADDR_TO_SEND);
    4655                 :             :         }
    4656         [ +  + ]:       19816 :         for (const CAddress &addr : vAddr) {
    4657         [ +  - ]:       18898 :             PushAddress(*peer, addr);
    4658                 :             :         }
    4659                 :         918 :         return;
    4660                 :         918 :     }
    4661                 :             : 
    4662         [ +  + ]:       10623 :     if (msg_type == NetMsgType::MEMPOOL) {
    4663                 :             :         // Only process received mempool messages if we advertise NODE_BLOOM
    4664                 :             :         // or if the peer has mempool permissions.
    4665   [ +  +  -  + ]:           4 :         if (!(peer->m_our_services & NODE_BLOOM) && !pfrom.HasPermission(NetPermissionFlags::Mempool))
    4666                 :             :         {
    4667         [ +  - ]:           1 :             if (!pfrom.HasPermission(NetPermissionFlags::NoBan))
    4668                 :             :             {
    4669   [ +  -  +  -  :           2 :                 LogDebug(BCLog::NET, "mempool request with bloom filters disabled, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4670                 :           1 :                 pfrom.fDisconnect = true;
    4671                 :             :             }
    4672                 :           1 :             return;
    4673                 :             :         }
    4674                 :             : 
    4675   [ +  -  +  +  :           3 :         if (m_connman.OutboundTargetReached(false) && !pfrom.HasPermission(NetPermissionFlags::Mempool))
                   -  + ]
    4676                 :             :         {
    4677         [ +  - ]:           1 :             if (!pfrom.HasPermission(NetPermissionFlags::NoBan))
    4678                 :             :             {
    4679   [ +  -  +  -  :           2 :                 LogDebug(BCLog::NET, "mempool request with bandwidth limit reached, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4680                 :           1 :                 pfrom.fDisconnect = true;
    4681                 :             :             }
    4682                 :           1 :             return;
    4683                 :             :         }
    4684                 :             : 
    4685   [ +  -  +  - ]:           2 :         if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    4686         [ +  - ]:           2 :             LOCK(tx_relay->m_tx_inventory_mutex);
    4687         [ +  - ]:           2 :             tx_relay->m_send_mempool = true;
    4688                 :           2 :         }
    4689                 :           2 :         return;
    4690                 :             :     }
    4691                 :             : 
    4692         [ +  + ]:       10619 :     if (msg_type == NetMsgType::PING) {
    4693         [ +  - ]:        7110 :         if (pfrom.GetCommonVersion() > BIP0031_VERSION) {
    4694                 :        7110 :             uint64_t nonce = 0;
    4695         [ +  - ]:        7110 :             vRecv >> nonce;
    4696                 :             :             // Echo the message back with the nonce. This allows for two useful features:
    4697                 :             :             //
    4698                 :             :             // 1) A remote node can quickly check if the connection is operational
    4699                 :             :             // 2) Remote nodes can measure the latency of the network thread. If this node
    4700                 :             :             //    is overloaded it won't respond to pings quickly and the remote node can
    4701                 :             :             //    avoid sending us more work, like chain download requests.
    4702                 :             :             //
    4703                 :             :             // The nonce stops the remote getting confused between different pings: without
    4704                 :             :             // it, if the remote node sends a ping once per second and this node takes 5
    4705                 :             :             // seconds to respond to each, the 5th ping the remote sends would appear to
    4706                 :             :             // return very quickly.
    4707   [ +  -  +  - ]:       14220 :             MakeAndPushMessage(pfrom, NetMsgType::PONG, nonce);
    4708                 :             :         }
    4709                 :        7110 :         return;
    4710                 :             :     }
    4711                 :             : 
    4712         [ +  + ]:        3509 :     if (msg_type == NetMsgType::PONG) {
    4713                 :        2418 :         const auto ping_end = time_received;
    4714                 :        2418 :         uint64_t nonce = 0;
    4715         [ +  + ]:        2418 :         size_t nAvail = vRecv.in_avail();
    4716                 :        2418 :         bool bPingFinished = false;
    4717         [ +  + ]:        2418 :         std::string sProblem;
    4718                 :             : 
    4719         [ +  + ]:        2418 :         if (nAvail >= sizeof(nonce)) {
    4720         [ +  - ]:        2417 :             vRecv >> nonce;
    4721                 :             : 
    4722                 :             :             // Only process pong message if there is an outstanding ping (old ping without nonce should never pong)
    4723         [ +  + ]:        2417 :             if (peer->m_ping_nonce_sent != 0) {
    4724         [ +  + ]:        2416 :                 if (nonce == peer->m_ping_nonce_sent) {
    4725                 :             :                     // Matching pong received, this ping is no longer outstanding
    4726                 :        2414 :                     bPingFinished = true;
    4727         [ +  - ]:        2414 :                     const auto ping_time = ping_end - peer->m_ping_start.load();
    4728         [ +  - ]:        2414 :                     if (ping_time.count() >= 0) {
    4729                 :             :                         // Let connman know about this successful ping-pong
    4730                 :        2414 :                         pfrom.PongReceived(ping_time);
    4731                 :             :                     } else {
    4732                 :             :                         // This should never happen
    4733         [ #  # ]:           0 :                         sProblem = "Timing mishap";
    4734                 :             :                     }
    4735                 :             :                 } else {
    4736                 :             :                     // Nonce mismatches are normal when pings are overlapping
    4737         [ +  - ]:           2 :                     sProblem = "Nonce mismatch";
    4738         [ +  + ]:           2 :                     if (nonce == 0) {
    4739                 :             :                         // This is most likely a bug in another implementation somewhere; cancel this ping
    4740                 :           1 :                         bPingFinished = true;
    4741         [ +  - ]:           1 :                         sProblem = "Nonce zero";
    4742                 :             :                     }
    4743                 :             :                 }
    4744                 :             :             } else {
    4745         [ +  - ]:           1 :                 sProblem = "Unsolicited pong without ping";
    4746                 :             :             }
    4747                 :             :         } else {
    4748                 :             :             // This is most likely a bug in another implementation somewhere; cancel this ping
    4749                 :           1 :             bPingFinished = true;
    4750         [ +  - ]:           1 :             sProblem = "Short payload";
    4751                 :             :         }
    4752                 :             : 
    4753         [ +  + ]:        2418 :         if (!(sProblem.empty())) {
    4754   [ +  -  +  -  :           4 :             LogDebug(BCLog::NET, "pong peer=%d: %s, %x expected, %x received, %u bytes\n",
                   +  - ]
    4755                 :             :                 pfrom.GetId(),
    4756                 :             :                 sProblem,
    4757                 :             :                 peer->m_ping_nonce_sent,
    4758                 :             :                 nonce,
    4759                 :             :                 nAvail);
    4760                 :             :         }
    4761         [ +  + ]:        2418 :         if (bPingFinished) {
    4762                 :        2416 :             peer->m_ping_nonce_sent = 0;
    4763                 :             :         }
    4764                 :        2418 :         return;
    4765                 :        2418 :     }
    4766                 :             : 
    4767         [ +  + ]:        1091 :     if (msg_type == NetMsgType::FILTERLOAD) {
    4768         [ +  + ]:          10 :         if (!(peer->m_our_services & NODE_BLOOM)) {
    4769   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "filterload received despite not offering bloom services, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4770                 :           1 :             pfrom.fDisconnect = true;
    4771                 :           1 :             return;
    4772                 :             :         }
    4773         [ +  - ]:           9 :         CBloomFilter filter;
    4774         [ +  - ]:           9 :         vRecv >> filter;
    4775                 :             : 
    4776   [ +  -  +  + ]:           9 :         if (!filter.IsWithinSizeConstraints())
    4777                 :             :         {
    4778                 :             :             // There is no excuse for sending a too-large filter
    4779   [ +  -  +  - ]:           4 :             Misbehaving(*peer, "too-large bloom filter");
    4780   [ +  -  +  - ]:           7 :         } else if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    4781                 :           7 :             {
    4782         [ +  - ]:           7 :                 LOCK(tx_relay->m_bloom_filter_mutex);
    4783   [ +  -  +  -  :           7 :                 tx_relay->m_bloom_filter.reset(new CBloomFilter(filter));
                   -  + ]
    4784         [ +  - ]:           7 :                 tx_relay->m_relay_txs = true;
    4785                 :           0 :             }
    4786                 :           7 :             pfrom.m_bloom_filter_loaded = true;
    4787                 :           7 :             pfrom.m_relays_txs = true;
    4788                 :             :         }
    4789                 :           9 :         return;
    4790                 :           9 :     }
    4791                 :             : 
    4792         [ +  + ]:        1081 :     if (msg_type == NetMsgType::FILTERADD) {
    4793         [ +  + ]:           7 :         if (!(peer->m_our_services & NODE_BLOOM)) {
    4794   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "filteradd received despite not offering bloom services, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4795                 :           1 :             pfrom.fDisconnect = true;
    4796                 :           1 :             return;
    4797                 :             :         }
    4798                 :           6 :         std::vector<unsigned char> vData;
    4799         [ +  - ]:           6 :         vRecv >> vData;
    4800                 :             : 
    4801                 :             :         // Nodes must NEVER send a data item > MAX_SCRIPT_ELEMENT_SIZE bytes (the max size for a script data object,
    4802                 :             :         // and thus, the maximum size any matched object can have) in a filteradd message
    4803                 :           6 :         bool bad = false;
    4804         [ +  + ]:           6 :         if (vData.size() > MAX_SCRIPT_ELEMENT_SIZE) {
    4805                 :             :             bad = true;
    4806   [ +  -  +  - ]:           5 :         } else if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    4807         [ +  - ]:           5 :             LOCK(tx_relay->m_bloom_filter_mutex);
    4808         [ +  + ]:           5 :             if (tx_relay->m_bloom_filter) {
    4809         [ +  - ]:           3 :                 tx_relay->m_bloom_filter->insert(vData);
    4810                 :             :             } else {
    4811                 :             :                 bad = true;
    4812                 :             :             }
    4813                 :           0 :         }
    4814         [ +  + ]:           5 :         if (bad) {
    4815   [ +  -  +  - ]:           6 :             Misbehaving(*peer, "bad filteradd message");
    4816                 :             :         }
    4817                 :           6 :         return;
    4818                 :           6 :     }
    4819                 :             : 
    4820         [ +  + ]:        1074 :     if (msg_type == NetMsgType::FILTERCLEAR) {
    4821         [ +  + ]:           5 :         if (!(peer->m_our_services & NODE_BLOOM)) {
    4822   [ +  -  +  -  :           2 :             LogDebug(BCLog::NET, "filterclear received despite not offering bloom services, %s\n", pfrom.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    4823                 :           1 :             pfrom.fDisconnect = true;
    4824                 :           1 :             return;
    4825                 :             :         }
    4826         [ +  - ]:           4 :         auto tx_relay = peer->GetTxRelay();
    4827         [ +  - ]:           4 :         if (!tx_relay) return;
    4828                 :             : 
    4829                 :           4 :         {
    4830         [ +  - ]:           4 :             LOCK(tx_relay->m_bloom_filter_mutex);
    4831         [ +  - ]:           4 :             tx_relay->m_bloom_filter = nullptr;
    4832         [ +  - ]:           4 :             tx_relay->m_relay_txs = true;
    4833                 :           4 :         }
    4834                 :           4 :         pfrom.m_bloom_filter_loaded = false;
    4835                 :           4 :         pfrom.m_relays_txs = true;
    4836                 :           4 :         return;
    4837                 :             :     }
    4838                 :             : 
    4839         [ +  + ]:        1069 :     if (msg_type == NetMsgType::FEEFILTER) {
    4840                 :        1042 :         CAmount newFeeFilter = 0;
    4841         [ +  - ]:        1042 :         vRecv >> newFeeFilter;
    4842         [ +  - ]:        1042 :         if (MoneyRange(newFeeFilter)) {
    4843   [ +  -  +  - ]:        1042 :             if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    4844                 :        1042 :                 tx_relay->m_fee_filter_received = newFeeFilter;
    4845                 :             :             }
    4846   [ +  -  +  -  :        2084 :             LogDebug(BCLog::NET, "received: feefilter of %s from peer=%d\n", CFeeRate(newFeeFilter).ToString(), pfrom.GetId());
             +  -  +  - ]
    4847                 :             :         }
    4848                 :        1042 :         return;
    4849                 :             :     }
    4850                 :             : 
    4851         [ +  + ]:          27 :     if (msg_type == NetMsgType::GETCFILTERS) {
    4852         [ +  - ]:           4 :         ProcessGetCFilters(pfrom, *peer, vRecv);
    4853                 :             :         return;
    4854                 :             :     }
    4855                 :             : 
    4856         [ +  + ]:          23 :     if (msg_type == NetMsgType::GETCFHEADERS) {
    4857         [ +  - ]:           5 :         ProcessGetCFHeaders(pfrom, *peer, vRecv);
    4858                 :             :         return;
    4859                 :             :     }
    4860                 :             : 
    4861         [ +  + ]:          18 :     if (msg_type == NetMsgType::GETCFCHECKPT) {
    4862         [ +  - ]:           6 :         ProcessGetCFCheckPt(pfrom, *peer, vRecv);
    4863                 :             :         return;
    4864                 :             :     }
    4865                 :             : 
    4866         [ +  + ]:          12 :     if (msg_type == NetMsgType::NOTFOUND) {
    4867                 :           6 :         std::vector<CInv> vInv;
    4868         [ +  - ]:           6 :         vRecv >> vInv;
    4869                 :           6 :         std::vector<uint256> tx_invs;
    4870         [ +  - ]:           6 :         if (vInv.size() <= node::MAX_PEER_TX_ANNOUNCEMENTS + MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
    4871         [ +  + ]:          12 :             for (CInv &inv : vInv) {
    4872         [ +  + ]:          12 :                 if (inv.IsGenTxMsg()) {
    4873         [ +  - ]:           6 :                     tx_invs.emplace_back(inv.hash);
    4874                 :             :                 }
    4875                 :             :             }
    4876                 :             :         }
    4877         [ +  - ]:           6 :         LOCK(m_tx_download_mutex);
    4878         [ +  - ]:           6 :         m_txdownloadman.ReceivedNotFound(pfrom.GetId(), tx_invs);
    4879         [ +  - ]:           6 :         return;
    4880                 :           6 :     }
    4881                 :             : 
    4882                 :             :     // Ignore unknown commands for extensibility
    4883   [ +  -  +  -  :          12 :     LogDebug(BCLog::NET, "Unknown command \"%s\" from peer=%d\n", SanitizeString(msg_type), pfrom.GetId());
             +  -  +  - ]
    4884                 :             :     return;
    4885                 :      158720 : }
    4886                 :             : 
    4887                 :      404091 : bool PeerManagerImpl::MaybeDiscourageAndDisconnect(CNode& pnode, Peer& peer)
    4888                 :             : {
    4889                 :      404091 :     {
    4890                 :      404091 :         LOCK(peer.m_misbehavior_mutex);
    4891                 :             : 
    4892                 :             :         // There's nothing to do if the m_should_discourage flag isn't set
    4893   [ +  +  +  - ]:      404091 :         if (!peer.m_should_discourage) return false;
    4894                 :             : 
    4895         [ +  - ]:        1381 :         peer.m_should_discourage = false;
    4896                 :      402710 :     } // peer.m_misbehavior_mutex
    4897                 :             : 
    4898         [ +  + ]:        1381 :     if (pnode.HasPermission(NetPermissionFlags::NoBan)) {
    4899                 :             :         // We never disconnect or discourage peers for bad behavior if they have NetPermissionFlags::NoBan permission
    4900                 :        1195 :         LogPrintf("Warning: not punishing noban peer %d!\n", peer.m_id);
    4901                 :        1195 :         return false;
    4902                 :             :     }
    4903                 :             : 
    4904         [ +  + ]:         186 :     if (pnode.IsManualConn()) {
    4905                 :             :         // We never disconnect or discourage manual peers for bad behavior
    4906                 :          53 :         LogPrintf("Warning: not punishing manually connected peer %d!\n", peer.m_id);
    4907                 :          53 :         return false;
    4908                 :             :     }
    4909                 :             : 
    4910         [ +  + ]:         133 :     if (pnode.addr.IsLocal()) {
    4911                 :             :         // We disconnect local peers for bad behavior but don't discourage (since that would discourage
    4912                 :             :         // all peers on the same local address)
    4913   [ +  -  +  - ]:         258 :         LogDebug(BCLog::NET, "Warning: disconnecting but not discouraging %s peer %d!\n",
    4914                 :             :                  pnode.m_inbound_onion ? "inbound onion" : "local", peer.m_id);
    4915                 :         129 :         pnode.fDisconnect = true;
    4916                 :         129 :         return true;
    4917                 :             :     }
    4918                 :             : 
    4919                 :             :     // Normal case: Disconnect the peer and discourage all nodes sharing the address
    4920         [ +  - ]:           4 :     LogDebug(BCLog::NET, "Disconnecting and discouraging peer %d!\n", peer.m_id);
    4921         [ +  - ]:           4 :     if (m_banman) m_banman->Discourage(pnode.addr);
    4922                 :           4 :     m_connman.DisconnectNode(pnode.addr);
    4923                 :           4 :     return true;
    4924                 :             : }
    4925                 :             : 
    4926                 :      404089 : bool PeerManagerImpl::ProcessMessages(CNode* pfrom, std::atomic<bool>& interruptMsgProc)
    4927                 :             : {
    4928                 :      404089 :     AssertLockNotHeld(m_tx_download_mutex);
    4929                 :      404089 :     AssertLockHeld(g_msgproc_mutex);
    4930                 :             : 
    4931                 :      404089 :     PeerRef peer = GetPeerRef(pfrom->GetId());
    4932         [ +  - ]:      404089 :     if (peer == nullptr) return false;
    4933                 :             : 
    4934                 :             :     // For outbound connections, ensure that the initial VERSION message
    4935                 :             :     // has been sent first before processing any incoming messages
    4936   [ +  +  +  + ]:      404089 :     if (!pfrom->IsInboundConn() && !peer->m_outbound_version_message_sent) return false;
    4937                 :             : 
    4938                 :      403519 :     {
    4939         [ +  - ]:      403519 :         LOCK(peer->m_getdata_requests_mutex);
    4940         [ +  + ]:      403519 :         if (!peer->m_getdata_requests.empty()) {
    4941         [ +  - ]:        1759 :             ProcessGetData(*pfrom, *peer, interruptMsgProc);
    4942                 :             :         }
    4943                 :           0 :     }
    4944                 :             : 
    4945         [ +  - ]:      403519 :     const bool processed_orphan = ProcessOrphanTx(*peer);
    4946                 :             : 
    4947         [ +  + ]:      403519 :     if (pfrom->fDisconnect)
    4948                 :             :         return false;
    4949                 :             : 
    4950         [ +  + ]:      403518 :     if (processed_orphan) return true;
    4951                 :             : 
    4952                 :             :     // this maintains the order of responses
    4953                 :             :     // and prevents m_getdata_requests to grow unbounded
    4954                 :      403395 :     {
    4955         [ +  - ]:      403395 :         LOCK(peer->m_getdata_requests_mutex);
    4956   [ +  +  +  - ]:      403395 :         if (!peer->m_getdata_requests.empty()) return true;
    4957                 :        1225 :     }
    4958                 :             : 
    4959                 :             :     // Don't bother if send buffer is too full to respond anyway
    4960         [ +  + ]:      402170 :     if (pfrom->fPauseSend) return false;
    4961                 :             : 
    4962         [ +  - ]:      401935 :     auto poll_result{pfrom->PollMessage()};
    4963         [ +  + ]:      401935 :     if (!poll_result) {
    4964                 :             :         // No message to process
    4965                 :             :         return false;
    4966                 :             :     }
    4967                 :             : 
    4968         [ +  + ]:      158730 :     CNetMessage& msg{poll_result->first};
    4969                 :      158730 :     bool fMoreWork = poll_result->second;
    4970                 :             : 
    4971                 :             :     TRACEPOINT(net, inbound_message,
    4972                 :             :         pfrom->GetId(),
    4973                 :             :         pfrom->m_addr_name.c_str(),
    4974                 :             :         pfrom->ConnectionTypeAsString().c_str(),
    4975                 :             :         msg.m_type.c_str(),
    4976                 :             :         msg.m_recv.size(),
    4977                 :             :         msg.m_recv.data()
    4978                 :      158730 :     );
    4979                 :             : 
    4980         [ +  + ]:      158730 :     if (m_opts.capture_messages) {
    4981         [ +  - ]:           7 :         CaptureMessage(pfrom->addr, msg.m_type, MakeUCharSpan(msg.m_recv), /*is_incoming=*/true);
    4982                 :             :     }
    4983                 :             : 
    4984                 :      158730 :     try {
    4985         [ +  + ]:      158730 :         ProcessMessage(*pfrom, msg.m_type, msg.m_recv, msg.m_time, interruptMsgProc);
    4986         [ +  + ]:      158718 :         if (interruptMsgProc) return false;
    4987                 :      158710 :         {
    4988         [ +  - ]:      158710 :             LOCK(peer->m_getdata_requests_mutex);
    4989         [ +  + ]:      158710 :             if (!peer->m_getdata_requests.empty()) fMoreWork = true;
    4990                 :      158710 :         }
    4991                 :             :         // Does this peer has an orphan ready to reconsider?
    4992                 :             :         // (Note: we may have provided a parent for an orphan provided
    4993                 :             :         //  by another peer that was already processed; in that case,
    4994                 :             :         //  the extra work may not be noticed, possibly resulting in an
    4995                 :             :         //  unnecessary 100ms delay)
    4996         [ +  - ]:      158710 :         LOCK(m_tx_download_mutex);
    4997   [ +  -  +  + ]:      158710 :         if (m_txdownloadman.HaveMoreWork(peer->m_id)) fMoreWork = true;
    4998         [ +  - ]:      158722 :     } catch (const std::exception& e) {
    4999   [ +  -  +  -  :          24 :         LogDebug(BCLog::NET, "%s(%s, %u bytes): Exception '%s' (%s) caught\n", __func__, SanitizeString(msg.m_type), msg.m_message_size, e.what(), typeid(e).name());
          -  +  +  -  +  
                      - ]
    5000                 :          12 :     } catch (...) {
    5001   [ -  -  -  -  :           0 :         LogDebug(BCLog::NET, "%s(%s, %u bytes): Unknown exception caught\n", __func__, SanitizeString(msg.m_type), msg.m_message_size);
             -  -  -  - ]
    5002         [ -  - ]:           0 :     }
    5003                 :             : 
    5004                 :             :     return fMoreWork;
    5005                 :      806024 : }
    5006                 :             : 
    5007                 :      399030 : void PeerManagerImpl::ConsiderEviction(CNode& pto, Peer& peer, std::chrono::seconds time_in_seconds)
    5008                 :             : {
    5009                 :      399030 :     AssertLockHeld(cs_main);
    5010                 :             : 
    5011                 :      399030 :     CNodeState &state = *State(pto.GetId());
    5012                 :             : 
    5013   [ +  +  +  +  :      399030 :     if (!state.m_chain_sync.m_protect && pto.IsOutboundOrBlockRelayConn() && state.fSyncStarted) {
                   +  + ]
    5014                 :             :         // This is an outbound peer subject to disconnection if they don't
    5015                 :             :         // announce a block with as much work as the current tip within
    5016                 :             :         // CHAIN_SYNC_TIMEOUT + HEADERS_RESPONSE_TIME seconds (note: if
    5017                 :             :         // their chain has more work than ours, we should sync to it,
    5018                 :             :         // unless it's invalid, in which case we should find that out and
    5019                 :             :         // disconnect from them elsewhere).
    5020   [ +  +  +  -  :        6118 :         if (state.pindexBestKnownBlock != nullptr && state.pindexBestKnownBlock->nChainWork >= m_chainman.ActiveChain().Tip()->nChainWork) {
                   +  + ]
    5021                 :             :             // The outbound peer has sent us a block with at least as much work as our current tip, so reset the timeout if it was set
    5022         [ +  + ]:         122 :             if (state.m_chain_sync.m_timeout != 0s) {
    5023                 :           5 :                 state.m_chain_sync.m_timeout = 0s;
    5024                 :           5 :                 state.m_chain_sync.m_work_header = nullptr;
    5025                 :           5 :                 state.m_chain_sync.m_sent_getheaders = false;
    5026                 :             :             }
    5027   [ +  +  +  -  :        5610 :         } else if (state.m_chain_sync.m_timeout == 0s || (state.m_chain_sync.m_work_header != nullptr && state.pindexBestKnownBlock != nullptr && state.pindexBestKnownBlock->nChainWork >= state.m_chain_sync.m_work_header->nChainWork)) {
             +  +  +  + ]
    5028                 :             :             // At this point we know that the outbound peer has either never sent us a block/header or they have, but its tip is behind ours
    5029                 :             :             // AND
    5030                 :             :             // we are noticing this for the first time (m_timeout is 0)
    5031                 :             :             // OR we noticed this at some point within the last CHAIN_SYNC_TIMEOUT + HEADERS_RESPONSE_TIME seconds and set a timeout
    5032                 :             :             // for them, they caught up to our tip at the time of setting the timer but not to our current one (we've also advanced).
    5033                 :             :             // Either way, set a new timeout based on our current tip.
    5034                 :         108 :             state.m_chain_sync.m_timeout = time_in_seconds + CHAIN_SYNC_TIMEOUT;
    5035         [ +  - ]:         108 :             state.m_chain_sync.m_work_header = m_chainman.ActiveChain().Tip();
    5036                 :         108 :             state.m_chain_sync.m_sent_getheaders = false;
    5037   [ +  -  +  + ]:        5502 :         } else if (state.m_chain_sync.m_timeout > 0s && time_in_seconds > state.m_chain_sync.m_timeout) {
    5038                 :             :             // No evidence yet that our peer has synced to a chain with work equal to that
    5039                 :             :             // of our tip, when we first detected it was behind. Send a single getheaders
    5040                 :             :             // message to give the peer a chance to update us.
    5041         [ +  + ]:          29 :             if (state.m_chain_sync.m_sent_getheaders) {
    5042                 :             :                 // They've run out of time to catch up!
    5043   [ +  +  +  -  :          16 :                 LogInfo("Outbound peer has old chain, best known block = %s, %s\n", state.pindexBestKnownBlock != nullptr ? state.pindexBestKnownBlock->GetBlockHash().ToString() : "<none>", pto.DisconnectMsg(fLogIPs));
             +  -  +  - ]
    5044                 :           8 :                 pto.fDisconnect = true;
    5045                 :             :             } else {
    5046         [ -  + ]:          21 :                 assert(state.m_chain_sync.m_work_header);
    5047                 :             :                 // Here, we assume that the getheaders message goes out,
    5048                 :             :                 // because it'll either go out or be skipped because of a
    5049                 :             :                 // getheaders in-flight already, in which case the peer should
    5050                 :             :                 // still respond to us with a sufficiently high work chain tip.
    5051         [ +  - ]:          21 :                 MaybeSendGetHeaders(pto,
    5052                 :          21 :                         GetLocator(state.m_chain_sync.m_work_header->pprev),
    5053                 :             :                         peer);
    5054   [ +  -  +  +  :          42 :                 LogDebug(BCLog::NET, "sending getheaders to outbound peer=%d to verify chain work (current best known block:%s, benchmark blockhash: %s)\n", pto.GetId(), state.pindexBestKnownBlock != nullptr ? state.pindexBestKnownBlock->GetBlockHash().ToString() : "<none>", state.m_chain_sync.m_work_header->GetBlockHash().ToString());
          +  -  +  -  +  
                      - ]
    5055                 :          21 :                 state.m_chain_sync.m_sent_getheaders = true;
    5056                 :             :                 // Bump the timeout to allow a response, which could clear the timeout
    5057                 :             :                 // (if the response shows the peer has synced), reset the timeout (if
    5058                 :             :                 // the peer syncs to the required work but not to our tip), or result
    5059                 :             :                 // in disconnect (if we advance to the timeout and pindexBestKnownBlock
    5060                 :             :                 // has not sufficiently progressed)
    5061                 :          21 :                 state.m_chain_sync.m_timeout = time_in_seconds + HEADERS_RESPONSE_TIME;
    5062                 :             :             }
    5063                 :             :         }
    5064                 :             :     }
    5065                 :      399030 : }
    5066                 :             : 
    5067                 :         350 : void PeerManagerImpl::EvictExtraOutboundPeers(std::chrono::seconds now)
    5068                 :             : {
    5069                 :             :     // If we have any extra block-relay-only peers, disconnect the youngest unless
    5070                 :             :     // it's given us a block -- in which case, compare with the second-youngest, and
    5071                 :             :     // out of those two, disconnect the peer who least recently gave us a block.
    5072                 :             :     // The youngest block-relay-only peer would be the extra peer we connected
    5073                 :             :     // to temporarily in order to sync our tip; see net.cpp.
    5074                 :             :     // Note that we use higher nodeid as a measure for most recent connection.
    5075         [ +  + ]:         350 :     if (m_connman.GetExtraBlockRelayCount() > 0) {
    5076                 :           3 :         std::pair<NodeId, std::chrono::seconds> youngest_peer{-1, 0}, next_youngest_peer{-1, 0};
    5077                 :             : 
    5078         [ +  - ]:           3 :         m_connman.ForEachNode([&](CNode* pnode) {
    5079   [ +  -  -  + ]:           9 :             if (!pnode->IsBlockOnlyConn() || pnode->fDisconnect) return;
    5080         [ +  - ]:           9 :             if (pnode->GetId() > youngest_peer.first) {
    5081                 :           9 :                 next_youngest_peer = youngest_peer;
    5082                 :           9 :                 youngest_peer.first = pnode->GetId();
    5083                 :           9 :                 youngest_peer.second = pnode->m_last_block_time;
    5084                 :             :             }
    5085                 :             :         });
    5086                 :           3 :         NodeId to_disconnect = youngest_peer.first;
    5087         [ +  + ]:           3 :         if (youngest_peer.second > next_youngest_peer.second) {
    5088                 :             :             // Our newest block-relay-only peer gave us a block more recently;
    5089                 :             :             // disconnect our second youngest.
    5090                 :           1 :             to_disconnect = next_youngest_peer.first;
    5091                 :             :         }
    5092         [ +  - ]:           6 :         m_connman.ForNode(to_disconnect, [&](CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(::cs_main) {
    5093                 :           3 :             AssertLockHeld(::cs_main);
    5094                 :             :             // Make sure we're not getting a block right now, and that
    5095                 :             :             // we've been connected long enough for this eviction to happen
    5096                 :             :             // at all.
    5097                 :             :             // Note that we only request blocks from a peer if we learn of a
    5098                 :             :             // valid headers chain with at least as much work as our tip.
    5099                 :           3 :             CNodeState *node_state = State(pnode->GetId());
    5100   [ +  -  +  + ]:           3 :             if (node_state == nullptr ||
    5101   [ +  +  +  - ]:           3 :                 (now - pnode->m_connected >= MINIMUM_CONNECT_TIME && node_state->vBlocksInFlight.empty())) {
    5102                 :           2 :                 pnode->fDisconnect = true;
    5103         [ +  - ]:           2 :                 LogDebug(BCLog::NET, "disconnecting extra block-relay-only peer=%d (last block received at time %d)\n",
    5104                 :             :                          pnode->GetId(), count_seconds(pnode->m_last_block_time));
    5105                 :           2 :                 return true;
    5106                 :             :             } else {
    5107         [ +  - ]:           1 :                 LogDebug(BCLog::NET, "keeping block-relay-only peer=%d chosen for eviction (connect time: %d, blocks_in_flight: %d)\n",
    5108                 :             :                          pnode->GetId(), count_seconds(pnode->m_connected), node_state->vBlocksInFlight.size());
    5109                 :             :             }
    5110                 :             :             return false;
    5111                 :             :         });
    5112                 :             :     }
    5113                 :             : 
    5114                 :             :     // Check whether we have too many outbound-full-relay peers
    5115         [ +  + ]:         350 :     if (m_connman.GetExtraFullOutboundCount() > 0) {
    5116                 :             :         // If we have more outbound-full-relay peers than we target, disconnect one.
    5117                 :             :         // Pick the outbound-full-relay peer that least recently announced
    5118                 :             :         // us a new block, with ties broken by choosing the more recent
    5119                 :             :         // connection (higher node id)
    5120                 :             :         // Protect peers from eviction if we don't have another connection
    5121                 :             :         // to their network, counting both outbound-full-relay and manual peers.
    5122                 :           4 :         NodeId worst_peer = -1;
    5123                 :           4 :         int64_t oldest_block_announcement = std::numeric_limits<int64_t>::max();
    5124                 :             : 
    5125         [ +  - ]:           4 :         m_connman.ForEachNode([&](CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(::cs_main, m_connman.GetNodesMutex()) {
    5126                 :          38 :             AssertLockHeld(::cs_main);
    5127                 :             : 
    5128                 :             :             // Only consider outbound-full-relay peers that are not already
    5129                 :             :             // marked for disconnection
    5130   [ +  -  -  + ]:          38 :             if (!pnode->IsFullOutboundConn() || pnode->fDisconnect) return;
    5131                 :          38 :             CNodeState *state = State(pnode->GetId());
    5132         [ +  - ]:          38 :             if (state == nullptr) return; // shouldn't be possible, but just in case
    5133                 :             :             // Don't evict our protected peers
    5134         [ +  - ]:          38 :             if (state->m_chain_sync.m_protect) return;
    5135                 :             :             // If this is the only connection on a particular network that is
    5136                 :             :             // OUTBOUND_FULL_RELAY or MANUAL, protect it.
    5137         [ +  + ]:          38 :             if (!m_connman.MultipleManualOrFullOutboundConns(pnode->addr.GetNetwork())) return;
    5138   [ +  +  +  +  :          37 :             if (state->m_last_block_announcement < oldest_block_announcement || (state->m_last_block_announcement == oldest_block_announcement && pnode->GetId() > worst_peer)) {
                   +  - ]
    5139                 :          34 :                 worst_peer = pnode->GetId();
    5140                 :          34 :                 oldest_block_announcement = state->m_last_block_announcement;
    5141                 :             :             }
    5142                 :             :         });
    5143         [ +  - ]:           4 :         if (worst_peer != -1) {
    5144         [ +  - ]:           4 :             bool disconnected = m_connman.ForNode(worst_peer, [&](CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(::cs_main) {
    5145                 :           4 :                 AssertLockHeld(::cs_main);
    5146                 :             : 
    5147                 :             :                 // Only disconnect a peer that has been connected to us for
    5148                 :             :                 // some reasonable fraction of our check-frequency, to give
    5149                 :             :                 // it time for new information to have arrived.
    5150                 :             :                 // Also don't disconnect any peer we're trying to download a
    5151                 :             :                 // block from.
    5152                 :           4 :                 CNodeState &state = *State(pnode->GetId());
    5153   [ +  -  +  - ]:           4 :                 if (now - pnode->m_connected > MINIMUM_CONNECT_TIME && state.vBlocksInFlight.empty()) {
    5154         [ +  - ]:           4 :                     LogDebug(BCLog::NET, "disconnecting extra outbound peer=%d (last block announcement received at time %d)\n", pnode->GetId(), oldest_block_announcement);
    5155                 :           4 :                     pnode->fDisconnect = true;
    5156                 :           4 :                     return true;
    5157                 :             :                 } else {
    5158         [ #  # ]:           0 :                     LogDebug(BCLog::NET, "keeping outbound peer=%d chosen for eviction (connect time: %d, blocks_in_flight: %d)\n",
    5159                 :             :                              pnode->GetId(), count_seconds(pnode->m_connected), state.vBlocksInFlight.size());
    5160                 :           0 :                     return false;
    5161                 :             :                 }
    5162                 :             :             });
    5163         [ +  - ]:           4 :             if (disconnected) {
    5164                 :             :                 // If we disconnected an extra peer, that means we successfully
    5165                 :             :                 // connected to at least one peer after the last time we
    5166                 :             :                 // detected a stale tip. Don't try any more extra peers until
    5167                 :             :                 // we next detect a stale tip, to limit the load we put on the
    5168                 :             :                 // network from these extra connections.
    5169                 :           4 :                 m_connman.SetTryNewOutboundPeer(false);
    5170                 :             :             }
    5171                 :             :         }
    5172                 :             :     }
    5173                 :         350 : }
    5174                 :             : 
    5175                 :         350 : void PeerManagerImpl::CheckForStaleTipAndEvictPeers()
    5176                 :             : {
    5177                 :         350 :     LOCK(cs_main);
    5178                 :             : 
    5179                 :         350 :     auto now{GetTime<std::chrono::seconds>()};
    5180                 :             : 
    5181         [ +  - ]:         350 :     EvictExtraOutboundPeers(now);
    5182                 :             : 
    5183         [ +  + ]:         350 :     if (now > m_stale_tip_check_time) {
    5184                 :             :         // Check whether our tip is stale, and if so, allow using an extra
    5185                 :             :         // outbound peer
    5186   [ +  -  +  -  :          86 :         if (!m_chainman.m_blockman.LoadingBlocks() && m_connman.GetNetworkActive() && m_connman.GetUseAddrmanOutgoing() && TipMayBeStale()) {
             +  +  +  + ]
    5187         [ +  - ]:           1 :             LogPrintf("Potential stale tip detected, will try using extra outbound peer (last tip update: %d seconds ago)\n",
    5188                 :             :                       count_seconds(now - m_last_tip_update.load()));
    5189         [ +  - ]:           1 :             m_connman.SetTryNewOutboundPeer(true);
    5190   [ +  -  -  + ]:          85 :         } else if (m_connman.GetTryNewOutboundPeer()) {
    5191         [ #  # ]:           0 :             m_connman.SetTryNewOutboundPeer(false);
    5192                 :             :         }
    5193                 :          86 :         m_stale_tip_check_time = now + STALE_CHECK_INTERVAL;
    5194                 :             :     }
    5195                 :             : 
    5196   [ +  +  +  -  :         350 :     if (!m_initial_sync_finished && CanDirectFetch()) {
                   +  + ]
    5197         [ +  - ]:          59 :         m_connman.StartExtraBlockRelayPeers();
    5198                 :          59 :         m_initial_sync_finished = true;
    5199                 :             :     }
    5200                 :         350 : }
    5201                 :             : 
    5202                 :      399037 : void PeerManagerImpl::MaybeSendPing(CNode& node_to, Peer& peer, std::chrono::microseconds now)
    5203                 :             : {
    5204         [ +  + ]:      399096 :     if (m_connman.ShouldRunInactivityChecks(node_to, std::chrono::duration_cast<std::chrono::seconds>(now)) &&
    5205   [ +  +  +  +  :      399043 :         peer.m_ping_nonce_sent &&
                   +  + ]
    5206         [ +  + ]:           6 :         now > peer.m_ping_start.load() + TIMEOUT_INTERVAL)
    5207                 :             :     {
    5208                 :             :         // The ping timeout is using mocktime. To disable the check during
    5209                 :             :         // testing, increase -peertimeout.
    5210         [ +  - ]:           1 :         LogDebug(BCLog::NET, "ping timeout: %fs peer=%d\n", 0.000001 * count_microseconds(now - peer.m_ping_start.load()), peer.m_id);
    5211                 :           1 :         node_to.fDisconnect = true;
    5212                 :           1 :         return;
    5213                 :             :     }
    5214                 :             : 
    5215                 :      399036 :     bool pingSend = false;
    5216                 :             : 
    5217         [ +  + ]:      399036 :     if (peer.m_ping_queued) {
    5218                 :             :         // RPC ping request by user
    5219                 :           5 :         pingSend = true;
    5220                 :             :     }
    5221                 :             : 
    5222   [ +  +  +  + ]:      399036 :     if (peer.m_ping_nonce_sent == 0 && now > peer.m_ping_start.load() + PING_INTERVAL) {
    5223                 :             :         // Ping automatically sent as a latency probe & keepalive.
    5224                 :             :         pingSend = true;
    5225                 :             :     }
    5226                 :             : 
    5227         [ +  + ]:      399036 :     if (pingSend) {
    5228                 :        2445 :         uint64_t nonce;
    5229                 :        2445 :         do {
    5230                 :        2445 :             nonce = FastRandomContext().rand64();
    5231         [ -  + ]:        2445 :         } while (nonce == 0);
    5232                 :        2445 :         peer.m_ping_queued = false;
    5233                 :        2445 :         peer.m_ping_start = now;
    5234         [ +  - ]:        2445 :         if (node_to.GetCommonVersion() > BIP0031_VERSION) {
    5235                 :        2445 :             peer.m_ping_nonce_sent = nonce;
    5236         [ +  - ]:        4890 :             MakeAndPushMessage(node_to, NetMsgType::PING, nonce);
    5237                 :             :         } else {
    5238                 :             :             // Peer is too old to support ping command with nonce, pong will never arrive.
    5239                 :           0 :             peer.m_ping_nonce_sent = 0;
    5240         [ #  # ]:           0 :             MakeAndPushMessage(node_to, NetMsgType::PING);
    5241                 :             :         }
    5242                 :             :     }
    5243                 :             : }
    5244                 :             : 
    5245                 :      399036 : void PeerManagerImpl::MaybeSendAddr(CNode& node, Peer& peer, std::chrono::microseconds current_time)
    5246                 :             : {
    5247                 :             :     // Nothing to do for non-address-relay peers
    5248         [ +  + ]:      399036 :     if (!peer.m_addr_relay_enabled) return;
    5249                 :             : 
    5250                 :      397184 :     LOCK(peer.m_addr_send_times_mutex);
    5251                 :             :     // Periodically advertise our local address to the peer.
    5252   [ +  -  +  -  :      397184 :     if (fListen && !m_chainman.IsInitialBlockDownload() &&
             +  +  +  + ]
    5253         [ +  + ]:      374519 :         peer.m_next_local_addr_send < current_time) {
    5254                 :             :         // If we've sent before, clear the bloom filter for the peer, so that our
    5255                 :             :         // self-announcement will actually go out.
    5256                 :             :         // This might be unnecessary if the bloom filter has already rolled
    5257                 :             :         // over since our last self-announcement, but there is only a small
    5258                 :             :         // bandwidth cost that we can incur by doing this (which happens
    5259                 :             :         // once a day on average).
    5260         [ +  + ]:        1512 :         if (peer.m_next_local_addr_send != 0us) {
    5261         [ +  - ]:         210 :             peer.m_addr_known->reset();
    5262                 :             :         }
    5263   [ +  -  +  + ]:        1512 :         if (std::optional<CService> local_service = GetLocalAddrForPeer(node)) {
    5264                 :           1 :             CAddress local_addr{*local_service, peer.m_our_services, Now<NodeSeconds>()};
    5265         [ +  - ]:           1 :             PushAddress(peer, local_addr);
    5266                 :           1 :         }
    5267                 :        1512 :         peer.m_next_local_addr_send = current_time + m_rng.rand_exp_duration(AVG_LOCAL_ADDRESS_BROADCAST_INTERVAL);
    5268                 :             :     }
    5269                 :             : 
    5270                 :             :     // We sent an `addr` message to this peer recently. Nothing more to do.
    5271         [ +  + ]:      397184 :     if (current_time <= peer.m_next_addr_send) return;
    5272                 :             : 
    5273         [ -  + ]:        2997 :     peer.m_next_addr_send = current_time + m_rng.rand_exp_duration(AVG_ADDRESS_BROADCAST_INTERVAL);
    5274                 :             : 
    5275         [ -  + ]:        2997 :     if (!Assume(peer.m_addrs_to_send.size() <= MAX_ADDR_TO_SEND)) {
    5276                 :             :         // Should be impossible since we always check size before adding to
    5277                 :             :         // m_addrs_to_send. Recover by trimming the vector.
    5278         [ #  # ]:           0 :         peer.m_addrs_to_send.resize(MAX_ADDR_TO_SEND);
    5279                 :             :     }
    5280                 :             : 
    5281                 :             :     // Remove addr records that the peer already knows about, and add new
    5282                 :             :     // addrs to the m_addr_known filter on the same pass.
    5283                 :       21960 :     auto addr_already_known = [&peer](const CAddress& addr) EXCLUSIVE_LOCKS_REQUIRED(g_msgproc_mutex) {
    5284         [ +  - ]:       18963 :         bool ret = peer.m_addr_known->contains(addr.GetKey());
    5285   [ +  -  +  - ]:       37926 :         if (!ret) peer.m_addr_known->insert(addr.GetKey());
    5286                 :       18963 :         return ret;
    5287                 :        2997 :     };
    5288                 :        2997 :     peer.m_addrs_to_send.erase(std::remove_if(peer.m_addrs_to_send.begin(), peer.m_addrs_to_send.end(), addr_already_known),
    5289         [ +  - ]:        2997 :                            peer.m_addrs_to_send.end());
    5290                 :             : 
    5291                 :             :     // No addr messages to send
    5292         [ +  + ]:        2997 :     if (peer.m_addrs_to_send.empty()) return;
    5293                 :             : 
    5294         [ +  + ]:         104 :     if (peer.m_wants_addrv2) {
    5295   [ +  -  +  - ]:           2 :         MakeAndPushMessage(node, NetMsgType::ADDRV2, CAddress::V2_NETWORK(peer.m_addrs_to_send));
    5296                 :             :     } else {
    5297   [ +  -  +  - ]:         206 :         MakeAndPushMessage(node, NetMsgType::ADDR, CAddress::V1_NETWORK(peer.m_addrs_to_send));
    5298                 :             :     }
    5299                 :         104 :     peer.m_addrs_to_send.clear();
    5300                 :             : 
    5301                 :             :     // we only send the big addr message once
    5302         [ +  + ]:         104 :     if (peer.m_addrs_to_send.capacity() > 40) {
    5303                 :          21 :         peer.m_addrs_to_send.shrink_to_fit();
    5304                 :             :     }
    5305                 :      397184 : }
    5306                 :             : 
    5307                 :      399036 : void PeerManagerImpl::MaybeSendSendHeaders(CNode& node, Peer& peer)
    5308                 :             : {
    5309                 :             :     // Delay sending SENDHEADERS (BIP 130) until we're done with an
    5310                 :             :     // initial-headers-sync with this peer. Receiving headers announcements for
    5311                 :             :     // new blocks while trying to sync their headers chain is problematic,
    5312                 :             :     // because of the state tracking done.
    5313   [ +  +  +  - ]:      399036 :     if (!peer.m_sent_sendheaders && node.GetCommonVersion() >= SENDHEADERS_VERSION) {
    5314                 :      127323 :         LOCK(cs_main);
    5315                 :      127323 :         CNodeState &state = *State(node.GetId());
    5316         [ +  + ]:      127323 :         if (state.pindexBestKnownBlock != nullptr &&
    5317   [ +  -  +  -  :        5075 :                 state.pindexBestKnownBlock->nChainWork > m_chainman.MinimumChainWork()) {
                   +  + ]
    5318                 :             :             // Tell our peer we prefer to receive headers rather than inv's
    5319                 :             :             // We send this to non-NODE NETWORK peers as well, because even
    5320                 :             :             // non-NODE NETWORK peers can announce blocks (such as pruning
    5321                 :             :             // nodes)
    5322   [ +  -  +  - ]:         779 :             MakeAndPushMessage(node, NetMsgType::SENDHEADERS);
    5323                 :         779 :             peer.m_sent_sendheaders = true;
    5324                 :             :         }
    5325                 :      127323 :     }
    5326                 :      399036 : }
    5327                 :             : 
    5328                 :      399030 : void PeerManagerImpl::MaybeSendFeefilter(CNode& pto, Peer& peer, std::chrono::microseconds current_time)
    5329                 :             : {
    5330         [ +  + ]:      399030 :     if (m_opts.ignore_incoming_txs) return;
    5331         [ +  - ]:      398823 :     if (pto.GetCommonVersion() < FEEFILTER_VERSION) return;
    5332                 :             :     // peers with the forcerelay permission should not filter txs to us
    5333         [ +  + ]:      398823 :     if (pto.HasPermission(NetPermissionFlags::ForceRelay)) return;
    5334                 :             :     // Don't send feefilter messages to outbound block-relay-only peers since they should never announce
    5335                 :             :     // transactions to us, regardless of feefilter state.
    5336         [ +  + ]:      398654 :     if (pto.IsBlockOnlyConn()) return;
    5337                 :             : 
    5338                 :      397845 :     CAmount currentFilter = m_mempool.GetMinFee().GetFeePerK();
    5339                 :             : 
    5340         [ +  + ]:      397845 :     if (m_chainman.IsInitialBlockDownload()) {
    5341                 :             :         // Received tx-inv messages are discarded when the active
    5342                 :             :         // chainstate is in IBD, so tell the peer to not send them.
    5343                 :             :         currentFilter = MAX_MONEY;
    5344                 :             :     } else {
    5345   [ +  +  +  -  :      374973 :         static const CAmount MAX_FILTER{m_fee_filter_rounder.round(MAX_MONEY)};
                   +  - ]
    5346         [ +  + ]:      374973 :         if (peer.m_fee_filter_sent == MAX_FILTER) {
    5347                 :             :             // Send the current filter if we sent MAX_FILTER previously
    5348                 :             :             // and made it out of IBD.
    5349                 :         226 :             peer.m_next_send_feefilter = 0us;
    5350                 :             :         }
    5351                 :             :     }
    5352         [ +  + ]:      397845 :     if (current_time > peer.m_next_send_feefilter) {
    5353                 :        2836 :         CAmount filterToSend = m_fee_filter_rounder.round(currentFilter);
    5354                 :             :         // We always have a fee filter of at least the min relay fee
    5355         [ +  + ]:        2836 :         filterToSend = std::max(filterToSend, m_mempool.m_opts.min_relay_feerate.GetFeePerK());
    5356         [ +  + ]:        2836 :         if (filterToSend != peer.m_fee_filter_sent) {
    5357         [ +  - ]:        1640 :             MakeAndPushMessage(pto, NetMsgType::FEEFILTER, filterToSend);
    5358                 :        1640 :             peer.m_fee_filter_sent = filterToSend;
    5359                 :             :         }
    5360                 :        2836 :         peer.m_next_send_feefilter = current_time + m_rng.rand_exp_duration(AVG_FEEFILTER_BROADCAST_INTERVAL);
    5361                 :             :     }
    5362                 :             :     // If the fee filter has changed substantially and it's still more than MAX_FEEFILTER_CHANGE_DELAY
    5363                 :             :     // until scheduled broadcast, then move the broadcast to within MAX_FEEFILTER_CHANGE_DELAY.
    5364         [ +  + ]:      395009 :     else if (current_time + MAX_FEEFILTER_CHANGE_DELAY < peer.m_next_send_feefilter &&
    5365   [ +  +  +  + ]:        2855 :                 (currentFilter < 3 * peer.m_fee_filter_sent / 4 || currentFilter > 4 * peer.m_fee_filter_sent / 3)) {
    5366                 :        1658 :         peer.m_next_send_feefilter = current_time + m_rng.randrange<std::chrono::microseconds>(MAX_FEEFILTER_CHANGE_DELAY);
    5367                 :             :     }
    5368                 :             : }
    5369                 :             : 
    5370                 :             : namespace {
    5371                 :             : class CompareInvMempoolOrder
    5372                 :             : {
    5373                 :             :     CTxMemPool* mp;
    5374                 :             :     bool m_wtxid_relay;
    5375                 :             : public:
    5376                 :      117247 :     explicit CompareInvMempoolOrder(CTxMemPool *_mempool, bool use_wtxid)
    5377                 :      117247 :     {
    5378                 :      117247 :         mp = _mempool;
    5379                 :      117247 :         m_wtxid_relay = use_wtxid;
    5380                 :             :     }
    5381                 :             : 
    5382                 :       20768 :     bool operator()(std::set<uint256>::iterator a, std::set<uint256>::iterator b)
    5383                 :             :     {
    5384                 :             :         /* As std::make_heap produces a max-heap, we want the entries with the
    5385                 :             :          * fewest ancestors/highest fee to sort later. */
    5386                 :       20768 :         return mp->CompareDepthAndScore(*b, *a, m_wtxid_relay);
    5387                 :             :     }
    5388                 :             : };
    5389                 :             : } // namespace
    5390                 :             : 
    5391                 :       24824 : bool PeerManagerImpl::RejectIncomingTxs(const CNode& peer) const
    5392                 :             : {
    5393                 :             :     // block-relay-only peers may never send txs to us
    5394         [ +  + ]:       24824 :     if (peer.IsBlockOnlyConn()) return true;
    5395         [ +  + ]:       24787 :     if (peer.IsFeelerConn()) return true;
    5396                 :             :     // In -blocksonly mode, peers need the 'relay' permission to send txs to us
    5397   [ +  +  +  + ]:       24783 :     if (m_opts.ignore_incoming_txs && !peer.HasPermission(NetPermissionFlags::Relay)) return true;
    5398                 :             :     return false;
    5399                 :             : }
    5400                 :             : 
    5401                 :        1509 : bool PeerManagerImpl::SetupAddressRelay(const CNode& node, Peer& peer)
    5402                 :             : {
    5403                 :             :     // We don't participate in addr relay with outbound block-relay-only
    5404                 :             :     // connections to prevent providing adversaries with the additional
    5405                 :             :     // information of addr traffic to infer the link.
    5406         [ +  + ]:        1509 :     if (node.IsBlockOnlyConn()) return false;
    5407                 :             : 
    5408         [ +  + ]:        1478 :     if (!peer.m_addr_relay_enabled.exchange(true)) {
    5409                 :             :         // During version message processing (non-block-relay-only outbound peers)
    5410                 :             :         // or on first addr-related message we have received (inbound peers), initialize
    5411                 :             :         // m_addr_known.
    5412                 :        1433 :         peer.m_addr_known = std::make_unique<CRollingBloomFilter>(5000, 0.001);
    5413                 :             :     }
    5414                 :             : 
    5415                 :             :     return true;
    5416                 :             : }
    5417                 :             : 
    5418                 :      404091 : bool PeerManagerImpl::SendMessages(CNode* pto)
    5419                 :             : {
    5420                 :      404091 :     AssertLockNotHeld(m_tx_download_mutex);
    5421                 :      404091 :     AssertLockHeld(g_msgproc_mutex);
    5422                 :             : 
    5423                 :      404091 :     PeerRef peer = GetPeerRef(pto->GetId());
    5424         [ +  - ]:      404091 :     if (!peer) return false;
    5425                 :      404091 :     const Consensus::Params& consensusParams = m_chainparams.GetConsensus();
    5426                 :             : 
    5427                 :             :     // We must call MaybeDiscourageAndDisconnect first, to ensure that we'll
    5428                 :             :     // disconnect misbehaving peers even before the version handshake is complete.
    5429   [ +  -  +  + ]:      404091 :     if (MaybeDiscourageAndDisconnect(*pto, *peer)) return true;
    5430                 :             : 
    5431                 :             :     // Initiate version handshake for outbound connections
    5432   [ +  +  +  + ]:      403958 :     if (!pto->IsInboundConn() && !peer->m_outbound_version_message_sent) {
    5433         [ +  - ]:         572 :         PushNodeVersion(*pto, *peer);
    5434                 :         572 :         peer->m_outbound_version_message_sent = true;
    5435                 :             :     }
    5436                 :             : 
    5437                 :             :     // Don't send anything until the version handshake is complete
    5438   [ +  +  +  + ]:      403958 :     if (!pto->fSuccessfullyConnected || pto->fDisconnect)
    5439                 :        4920 :         return true;
    5440                 :             : 
    5441                 :      399038 :     const auto current_time{GetTime<std::chrono::microseconds>()};
    5442                 :             : 
    5443   [ +  +  +  + ]:      399038 :     if (pto->IsAddrFetchConn() && current_time - pto->m_connected > 10 * AVG_ADDRESS_BROADCAST_INTERVAL) {
    5444   [ +  -  +  -  :           2 :         LogDebug(BCLog::NET, "addrfetch connection timeout, %s\n", pto->DisconnectMsg(fLogIPs));
             +  -  +  - ]
    5445                 :           1 :         pto->fDisconnect = true;
    5446                 :           1 :         return true;
    5447                 :             :     }
    5448                 :             : 
    5449         [ +  - ]:      399037 :     MaybeSendPing(*pto, *peer, current_time);
    5450                 :             : 
    5451                 :             :     // MaybeSendPing may have marked peer for disconnection
    5452         [ +  + ]:      399037 :     if (pto->fDisconnect) return true;
    5453                 :             : 
    5454         [ +  - ]:      399036 :     MaybeSendAddr(*pto, *peer, current_time);
    5455                 :             : 
    5456         [ +  - ]:      399036 :     MaybeSendSendHeaders(*pto, *peer);
    5457                 :             : 
    5458                 :      399036 :     {
    5459         [ +  - ]:      399036 :         LOCK(cs_main);
    5460                 :             : 
    5461                 :      399036 :         CNodeState &state = *State(pto->GetId());
    5462                 :             : 
    5463                 :             :         // Start block sync
    5464         [ -  + ]:      399036 :         if (m_chainman.m_best_header == nullptr) {
    5465   [ #  #  #  # ]:           0 :             m_chainman.m_best_header = m_chainman.ActiveChain().Tip();
    5466                 :             :         }
    5467                 :             : 
    5468                 :             :         // Determine whether we might try initial headers sync or parallel
    5469                 :             :         // block download from this peer -- this mostly affects behavior while
    5470                 :             :         // in IBD (once out of IBD, we sync from all peers).
    5471                 :      399036 :         bool sync_blocks_and_headers_from_peer = false;
    5472         [ +  + ]:      399036 :         if (state.fPreferredDownload) {
    5473                 :             :             sync_blocks_and_headers_from_peer = true;
    5474   [ +  +  +  + ]:      147364 :         } else if (CanServeBlocks(*peer) && !pto->IsAddrFetchConn()) {
    5475                 :             :             // Typically this is an inbound peer. If we don't have any outbound
    5476                 :             :             // peers, or if we aren't downloading any blocks from such peers,
    5477                 :             :             // then allow block downloads from this peer, too.
    5478                 :             :             // We prefer downloading blocks from outbound peers to avoid
    5479                 :             :             // putting undue load on (say) some home user who is just making
    5480                 :             :             // outbound connections to the network, but if our only source of
    5481                 :             :             // the latest blocks is from an inbound peer, we have to be sure to
    5482                 :             :             // eventually download it (and not just wait indefinitely for an
    5483                 :             :             // outbound peer to have it).
    5484   [ +  +  +  + ]:      145920 :             if (m_num_preferred_download_peers == 0 || mapBlocksInFlight.empty()) {
    5485                 :             :                 sync_blocks_and_headers_from_peer = true;
    5486                 :             :             }
    5487                 :             :         }
    5488                 :             : 
    5489   [ +  +  +  +  :      399036 :         if (!state.fSyncStarted && CanServeBlocks(*peer) && !m_chainman.m_blockman.LoadingBlocks()) {
                   +  - ]
    5490                 :             :             // Only actively request headers from a single peer, unless we're close to today.
    5491   [ +  +  +  +  :        6160 :             if ((nSyncStarted == 0 && sync_blocks_and_headers_from_peer) || m_chainman.m_best_header->Time() > NodeClock::now() - 24h) {
                   +  + ]
    5492                 :        1426 :                 const CBlockIndex* pindexStart = m_chainman.m_best_header;
    5493                 :             :                 /* If possible, start at the block preceding the currently
    5494                 :             :                    best known header.  This ensures that we always get a
    5495                 :             :                    non-empty list of headers back as long as the peer
    5496                 :             :                    is up-to-date.  With a non-empty response, we can initialise
    5497                 :             :                    the peer's known best block.  This wouldn't be possible
    5498                 :             :                    if we requested starting at m_chainman.m_best_header and
    5499                 :             :                    got back an empty response.  */
    5500         [ +  + ]:        1426 :                 if (pindexStart->pprev)
    5501                 :        1195 :                     pindexStart = pindexStart->pprev;
    5502   [ +  -  +  -  :        1426 :                 if (MaybeSendGetHeaders(*pto, GetLocator(pindexStart), *peer)) {
                   +  - ]
    5503   [ +  -  +  -  :        1426 :                     LogDebug(BCLog::NET, "initial getheaders (%d) to peer=%d (startheight:%d)\n", pindexStart->nHeight, pto->GetId(), peer->m_starting_height);
                   +  - ]
    5504                 :             : 
    5505                 :        1426 :                     state.fSyncStarted = true;
    5506                 :        1426 :                     peer->m_headers_sync_timeout = current_time + HEADERS_DOWNLOAD_TIMEOUT_BASE +
    5507                 :             :                         (
    5508                 :             :                          // Convert HEADERS_DOWNLOAD_TIMEOUT_PER_HEADER to microseconds before scaling
    5509                 :             :                          // to maintain precision
    5510                 :        1426 :                          std::chrono::microseconds{HEADERS_DOWNLOAD_TIMEOUT_PER_HEADER} *
    5511                 :        1426 :                          Ticks<std::chrono::seconds>(NodeClock::now() - m_chainman.m_best_header->Time()) / consensusParams.nPowTargetSpacing
    5512                 :        1426 :                         );
    5513                 :        1426 :                     nSyncStarted++;
    5514                 :             :                 }
    5515                 :             :             }
    5516                 :             :         }
    5517                 :             : 
    5518                 :             :         //
    5519                 :             :         // Try sending block announcements via headers
    5520                 :             :         //
    5521                 :      399036 :         {
    5522                 :             :             // If we have no more than MAX_BLOCKS_TO_ANNOUNCE in our
    5523                 :             :             // list of block hashes we're relaying, and our peer wants
    5524                 :             :             // headers announcements, then find the first header
    5525                 :             :             // not yet known to our peer but would connect, and send.
    5526                 :             :             // If no header would connect, or if we have too many
    5527                 :             :             // blocks, or if the peer doesn't want headers, just
    5528                 :             :             // add all to the inv queue.
    5529         [ +  - ]:      399036 :             LOCK(peer->m_block_inv_mutex);
    5530                 :      399036 :             std::vector<CBlock> vHeaders;
    5531         [ +  + ]:      399036 :             bool fRevertToInv = ((!peer->m_prefers_headers &&
    5532   [ +  +  +  +  :      399036 :                                  (!state.m_requested_hb_cmpctblocks || peer->m_blocks_for_headers_relay.size() > 1)) ||
             +  -  +  + ]
    5533         [ +  + ]:      255372 :                                  peer->m_blocks_for_headers_relay.size() > MAX_BLOCKS_TO_ANNOUNCE);
    5534                 :      399036 :             const CBlockIndex *pBestIndex = nullptr; // last header queued for delivery
    5535         [ +  - ]:      399036 :             ProcessBlockAvailability(pto->GetId()); // ensure pindexBestKnownBlock is up-to-date
    5536                 :             : 
    5537         [ +  + ]:      399036 :             if (!fRevertToInv) {
    5538                 :      255140 :                 bool fFoundStartingHeader = false;
    5539                 :             :                 // Try to find first header that our peer doesn't have, and
    5540                 :             :                 // then send all headers past that one.  If we come across any
    5541                 :             :                 // headers that aren't on m_chainman.ActiveChain(), give up.
    5542         [ +  + ]:      301623 :                 for (const uint256& hash : peer->m_blocks_for_headers_relay) {
    5543         [ +  - ]:       46742 :                     const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(hash);
    5544         [ -  + ]:       46742 :                     assert(pindex);
    5545   [ +  -  +  -  :       93484 :                     if (m_chainman.ActiveChain()[pindex->nHeight] != pindex) {
                   +  - ]
    5546                 :             :                         // Bail out if we reorged away from this block
    5547                 :             :                         fRevertToInv = true;
    5548                 :             :                         break;
    5549                 :             :                     }
    5550   [ +  +  +  - ]:       46742 :                     if (pBestIndex != nullptr && pindex->pprev != pBestIndex) {
    5551                 :             :                         // This means that the list of blocks to announce don't
    5552                 :             :                         // connect to each other.
    5553                 :             :                         // This shouldn't really be possible to hit during
    5554                 :             :                         // regular operation (because reorgs should take us to
    5555                 :             :                         // a chain that has some block not on the prior chain,
    5556                 :             :                         // which should be caught by the prior check), but one
    5557                 :             :                         // way this could happen is by using invalidateblock /
    5558                 :             :                         // reconsiderblock repeatedly on the tip, causing it to
    5559                 :             :                         // be added multiple times to m_blocks_for_headers_relay.
    5560                 :             :                         // Robustly deal with this rare situation by reverting
    5561                 :             :                         // to an inv.
    5562                 :             :                         fRevertToInv = true;
    5563                 :             :                         break;
    5564                 :             :                     }
    5565                 :       46742 :                     pBestIndex = pindex;
    5566         [ +  + ]:       46742 :                     if (fFoundStartingHeader) {
    5567                 :             :                         // add this to the headers message
    5568         [ +  - ]:        1075 :                         vHeaders.emplace_back(pindex->GetBlockHeader());
    5569   [ +  -  +  + ]:       45667 :                     } else if (PeerHasHeader(&state, pindex)) {
    5570                 :       37187 :                         continue; // keep looking for the first new block
    5571   [ +  -  +  -  :        8480 :                     } else if (pindex->pprev == nullptr || PeerHasHeader(&state, pindex->pprev)) {
                   +  + ]
    5572                 :             :                         // Peer doesn't have this header but they do have the prior one.
    5573                 :             :                         // Start sending headers.
    5574                 :        8221 :                         fFoundStartingHeader = true;
    5575         [ +  - ]:        8221 :                         vHeaders.emplace_back(pindex->GetBlockHeader());
    5576                 :             :                     } else {
    5577                 :             :                         // Peer doesn't have this header or the prior one -- nothing will
    5578                 :             :                         // connect, so bail out.
    5579                 :             :                         fRevertToInv = true;
    5580                 :             :                         break;
    5581                 :             :                     }
    5582                 :             :                 }
    5583                 :             :             }
    5584   [ +  +  +  + ]:      255140 :             if (!fRevertToInv && !vHeaders.empty()) {
    5585   [ +  +  +  + ]:        8221 :                 if (vHeaders.size() == 1 && state.m_requested_hb_cmpctblocks) {
    5586                 :             :                     // We only send up to 1 block as header-and-ids, as otherwise
    5587                 :             :                     // probably means we're doing an initial-ish-sync or they're slow
    5588   [ +  -  +  -  :        9672 :                     LogDebug(BCLog::NET, "%s sending header-and-ids %s to peer=%d\n", __func__,
          +  -  +  -  +  
                      - ]
    5589                 :             :                             vHeaders.front().GetHash().ToString(), pto->GetId());
    5590                 :             : 
    5591                 :        4836 :                     std::optional<CSerializedNetMsg> cached_cmpctblock_msg;
    5592                 :        4836 :                     {
    5593         [ +  - ]:        4836 :                         LOCK(m_most_recent_block_mutex);
    5594         [ +  + ]:        4836 :                         if (m_most_recent_block_hash == pBestIndex->GetBlockHash()) {
    5595   [ +  -  +  - ]:         114 :                             cached_cmpctblock_msg = NetMsg::Make(NetMsgType::CMPCTBLOCK, *m_most_recent_compact_block);
    5596                 :             :                         }
    5597                 :           0 :                     }
    5598         [ +  + ]:        4836 :                     if (cached_cmpctblock_msg.has_value()) {
    5599         [ +  - ]:          57 :                         PushMessage(*pto, std::move(cached_cmpctblock_msg.value()));
    5600                 :             :                     } else {
    5601                 :        4779 :                         CBlock block;
    5602         [ +  - ]:        4779 :                         const bool ret{m_chainman.m_blockman.ReadBlockFromDisk(block, *pBestIndex)};
    5603         [ -  + ]:        4779 :                         assert(ret);
    5604         [ +  - ]:        4779 :                         CBlockHeaderAndShortTxIDs cmpctblock{block, m_rng.rand64()};
    5605   [ +  -  +  - ]:        9558 :                         MakeAndPushMessage(*pto, NetMsgType::CMPCTBLOCK, cmpctblock);
    5606                 :        4779 :                     }
    5607         [ +  + ]:        4836 :                     state.pindexBestHeaderSent = pBestIndex;
    5608         [ +  - ]:        8221 :                 } else if (peer->m_prefers_headers) {
    5609         [ +  + ]:        3385 :                     if (vHeaders.size() > 1) {
    5610   [ +  -  +  -  :        1422 :                         LogDebug(BCLog::NET, "%s: %u headers, range (%s, %s), to peer=%d\n", __func__,
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    5611                 :             :                                 vHeaders.size(),
    5612                 :             :                                 vHeaders.front().GetHash().ToString(),
    5613                 :             :                                 vHeaders.back().GetHash().ToString(), pto->GetId());
    5614                 :             :                     } else {
    5615   [ +  -  +  -  :        5348 :                         LogDebug(BCLog::NET, "%s: sending header %s to peer=%d\n", __func__,
          +  -  +  -  +  
                      - ]
    5616                 :             :                                 vHeaders.front().GetHash().ToString(), pto->GetId());
    5617                 :             :                     }
    5618   [ +  -  +  - ]:        3385 :                     MakeAndPushMessage(*pto, NetMsgType::HEADERS, TX_WITH_WITNESS(vHeaders));
    5619                 :        3385 :                     state.pindexBestHeaderSent = pBestIndex;
    5620                 :             :                 } else
    5621                 :             :                     fRevertToInv = true;
    5622                 :             :             }
    5623         [ +  + ]:      399036 :             if (fRevertToInv) {
    5624                 :             :                 // If falling back to using an inv, just try to inv the tip.
    5625                 :             :                 // The last entry in m_blocks_for_headers_relay was our tip at some point
    5626                 :             :                 // in the past.
    5627         [ +  + ]:      144155 :                 if (!peer->m_blocks_for_headers_relay.empty()) {
    5628         [ +  - ]:       25385 :                     const uint256& hashToAnnounce = peer->m_blocks_for_headers_relay.back();
    5629         [ +  - ]:       25385 :                     const CBlockIndex* pindex = m_chainman.m_blockman.LookupBlockIndex(hashToAnnounce);
    5630         [ -  + ]:       25385 :                     assert(pindex);
    5631                 :             : 
    5632                 :             :                     // Warn if we're announcing a block that is not on the main chain.
    5633                 :             :                     // This should be very rare and could be optimized out.
    5634                 :             :                     // Just log for now.
    5635   [ +  -  +  -  :       50770 :                     if (m_chainman.ActiveChain()[pindex->nHeight] != pindex) {
                   -  + ]
    5636   [ #  #  #  #  :           0 :                         LogDebug(BCLog::NET, "Announcing block %s not on main chain (tip=%s)\n",
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    5637                 :             :                             hashToAnnounce.ToString(), m_chainman.ActiveChain().Tip()->GetBlockHash().ToString());
    5638                 :             :                     }
    5639                 :             : 
    5640                 :             :                     // If the peer's chain has this block, don't inv it back.
    5641   [ +  -  +  + ]:       25385 :                     if (!PeerHasHeader(&state, pindex)) {
    5642         [ +  - ]:        7469 :                         peer->m_blocks_for_inv_relay.push_back(hashToAnnounce);
    5643   [ +  -  +  -  :       14938 :                         LogDebug(BCLog::NET, "%s: sending inv peer=%d hash=%s\n", __func__,
             +  -  +  - ]
    5644                 :             :                             pto->GetId(), hashToAnnounce.ToString());
    5645                 :             :                     }
    5646                 :             :                 }
    5647                 :             :             }
    5648         [ +  + ]:      399036 :             peer->m_blocks_for_headers_relay.clear();
    5649         [ +  - ]:      399036 :         }
    5650                 :             : 
    5651                 :             :         //
    5652                 :             :         // Message: inventory
    5653                 :             :         //
    5654                 :      399036 :         std::vector<CInv> vInv;
    5655                 :      399036 :         {
    5656         [ +  - ]:      399036 :             LOCK(peer->m_block_inv_mutex);
    5657   [ -  +  +  - ]:      399036 :             vInv.reserve(std::max<size_t>(peer->m_blocks_for_inv_relay.size(), INVENTORY_BROADCAST_TARGET));
    5658                 :             : 
    5659                 :             :             // Add blocks
    5660         [ +  + ]:      406524 :             for (const uint256& hash : peer->m_blocks_for_inv_relay) {
    5661         [ +  - ]:        7488 :                 vInv.emplace_back(MSG_BLOCK, hash);
    5662         [ -  + ]:        7488 :                 if (vInv.size() == MAX_INV_SZ) {
    5663   [ #  #  #  # ]:           0 :                     MakeAndPushMessage(*pto, NetMsgType::INV, vInv);
    5664         [ -  - ]:        7488 :                     vInv.clear();
    5665                 :             :                 }
    5666                 :             :             }
    5667   [ +  +  +  - ]:      406508 :             peer->m_blocks_for_inv_relay.clear();
    5668                 :           0 :         }
    5669                 :             : 
    5670   [ +  -  +  + ]:      399036 :         if (auto tx_relay = peer->GetTxRelay(); tx_relay != nullptr) {
    5671         [ +  - ]:      398223 :                 LOCK(tx_relay->m_tx_inventory_mutex);
    5672                 :             :                 // Check whether periodic sends should happen
    5673         [ +  + ]:      398223 :                 bool fSendTrickle = pto->HasPermission(NetPermissionFlags::NoBan);
    5674         [ +  + ]:      398223 :                 if (tx_relay->m_next_inv_send_time < current_time) {
    5675                 :        8035 :                     fSendTrickle = true;
    5676         [ +  + ]:        8035 :                     if (pto->IsInboundConn()) {
    5677                 :        3707 :                         tx_relay->m_next_inv_send_time = NextInvToInbounds(current_time, INBOUND_INVENTORY_BROADCAST_INTERVAL);
    5678                 :             :                     } else {
    5679                 :        4328 :                         tx_relay->m_next_inv_send_time = current_time + m_rng.rand_exp_duration(OUTBOUND_INVENTORY_BROADCAST_INTERVAL);
    5680                 :             :                     }
    5681                 :             :                 }
    5682                 :             : 
    5683                 :             :                 // Time to send but the peer has requested we not relay transactions.
    5684         [ +  + ]:      398223 :                 if (fSendTrickle) {
    5685         [ +  - ]:      117247 :                     LOCK(tx_relay->m_bloom_filter_mutex);
    5686         [ +  + ]:      117247 :                     if (!tx_relay->m_relay_txs) tx_relay->m_tx_inventory_to_send.clear();
    5687                 :      117247 :                 }
    5688                 :             : 
    5689                 :             :                 // Respond to BIP35 mempool requests
    5690   [ +  -  +  + ]:      117247 :                 if (fSendTrickle && tx_relay->m_send_mempool) {
    5691         [ +  - ]:           2 :                     auto vtxinfo = m_mempool.infoAll();
    5692                 :           2 :                     tx_relay->m_send_mempool = false;
    5693         [ +  - ]:           2 :                     const CFeeRate filterrate{tx_relay->m_fee_filter_received.load()};
    5694                 :             : 
    5695         [ +  - ]:           2 :                     LOCK(tx_relay->m_bloom_filter_mutex);
    5696                 :             : 
    5697         [ +  + ]:           4 :                     for (const auto& txinfo : vtxinfo) {
    5698         [ -  + ]:           2 :                         CInv inv{
    5699         [ -  + ]:           2 :                             peer->m_wtxid_relay ? MSG_WTX : MSG_TX,
    5700         [ +  - ]:           2 :                             peer->m_wtxid_relay ?
    5701                 :           2 :                                 txinfo.tx->GetWitnessHash().ToUint256() :
    5702                 :           0 :                                 txinfo.tx->GetHash().ToUint256(),
    5703   [ -  +  +  -  :           4 :                         };
                   +  - ]
    5704                 :           2 :                         tx_relay->m_tx_inventory_to_send.erase(inv.hash);
    5705                 :             : 
    5706                 :             :                         // Don't send transactions that peers will not put into their mempool
    5707   [ +  -  -  + ]:           2 :                         if (txinfo.fee < filterrate.GetFee(txinfo.vsize)) {
    5708                 :           0 :                             continue;
    5709                 :             :                         }
    5710         [ +  - ]:           2 :                         if (tx_relay->m_bloom_filter) {
    5711   [ +  -  +  + ]:           2 :                             if (!tx_relay->m_bloom_filter->IsRelevantAndUpdate(*txinfo.tx)) continue;
    5712                 :             :                         }
    5713         [ +  - ]:           1 :                         tx_relay->m_tx_inventory_known_filter.insert(inv.hash);
    5714         [ +  - ]:           1 :                         vInv.push_back(inv);
    5715         [ -  + ]:           1 :                         if (vInv.size() == MAX_INV_SZ) {
    5716   [ #  #  #  # ]:           0 :                             MakeAndPushMessage(*pto, NetMsgType::INV, vInv);
    5717         [ -  - ]:           2 :                             vInv.clear();
    5718                 :             :                         }
    5719                 :             :                     }
    5720                 :           2 :                 }
    5721                 :             : 
    5722                 :             :                 // Determine transactions to relay
    5723                 :      117247 :                 if (fSendTrickle) {
    5724                 :             :                     // Produce a vector with all candidates for sending
    5725                 :      117247 :                     std::vector<std::set<uint256>::iterator> vInvTx;
    5726         [ +  - ]:      117247 :                     vInvTx.reserve(tx_relay->m_tx_inventory_to_send.size());
    5727         [ +  + ]:      137387 :                     for (std::set<uint256>::iterator it = tx_relay->m_tx_inventory_to_send.begin(); it != tx_relay->m_tx_inventory_to_send.end(); it++) {
    5728         [ +  - ]:       20140 :                         vInvTx.push_back(it);
    5729                 :             :                     }
    5730         [ +  - ]:      117247 :                     const CFeeRate filterrate{tx_relay->m_fee_filter_received.load()};
    5731                 :             :                     // Topologically and fee-rate sort the inventory we send for privacy and priority reasons.
    5732                 :             :                     // A heap is used so that not all items need sorting if only a few are being sent.
    5733         [ +  - ]:      117247 :                     CompareInvMempoolOrder compareInvMempoolOrder(&m_mempool, peer->m_wtxid_relay);
    5734         [ +  - ]:      117247 :                     std::make_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
    5735                 :             :                     // No reason to drain out at many times the network's capacity,
    5736                 :             :                     // especially since we have many peers and some will draw much shorter delays.
    5737                 :      117247 :                     unsigned int nRelayedTransactions = 0;
    5738         [ +  - ]:      117247 :                     LOCK(tx_relay->m_bloom_filter_mutex);
    5739         [ -  + ]:      117247 :                     size_t broadcast_max{INVENTORY_BROADCAST_TARGET + (tx_relay->m_tx_inventory_to_send.size()/1000)*5};
    5740         [ -  + ]:      117247 :                     broadcast_max = std::min<size_t>(INVENTORY_BROADCAST_MAX, broadcast_max);
    5741   [ +  +  +  + ]:      137165 :                     while (!vInvTx.empty() && nRelayedTransactions < broadcast_max) {
    5742                 :             :                         // Fetch the top element from the heap
    5743         [ +  - ]:       19918 :                         std::pop_heap(vInvTx.begin(), vInvTx.end(), compareInvMempoolOrder);
    5744                 :       19918 :                         std::set<uint256>::iterator it = vInvTx.back();
    5745         [ +  + ]:       19918 :                         vInvTx.pop_back();
    5746         [ +  + ]:       19918 :                         uint256 hash = *it;
    5747   [ +  +  +  - ]:       19976 :                         CInv inv(peer->m_wtxid_relay ? MSG_WTX : MSG_TX, hash);
    5748                 :             :                         // Remove it from the to-be-sent set
    5749                 :       19918 :                         tx_relay->m_tx_inventory_to_send.erase(it);
    5750                 :             :                         // Check if not in the filter already
    5751   [ +  -  +  + ]:       19918 :                         if (tx_relay->m_tx_inventory_known_filter.contains(hash)) {
    5752                 :        1538 :                             continue;
    5753                 :             :                         }
    5754                 :             :                         // Not in the mempool anymore? don't bother sending it.
    5755   [ +  -  +  - ]:       18380 :                         auto txinfo = m_mempool.info(ToGenTxid(inv));
    5756         [ +  + ]:       18380 :                         if (!txinfo.tx) {
    5757                 :        1393 :                             continue;
    5758                 :             :                         }
    5759                 :             :                         // Peer told you to not send transactions at that feerate? Don't bother sending it.
    5760   [ +  -  +  + ]:       16987 :                         if (txinfo.fee < filterrate.GetFee(txinfo.vsize)) {
    5761                 :           8 :                             continue;
    5762                 :             :                         }
    5763   [ +  +  +  -  :       16979 :                         if (tx_relay->m_bloom_filter && !tx_relay->m_bloom_filter->IsRelevantAndUpdate(*txinfo.tx)) continue;
                   +  + ]
    5764                 :             :                         // Send
    5765         [ +  - ]:       16977 :                         vInv.push_back(inv);
    5766                 :       16977 :                         nRelayedTransactions++;
    5767         [ -  + ]:       16977 :                         if (vInv.size() == MAX_INV_SZ) {
    5768   [ #  #  #  # ]:           0 :                             MakeAndPushMessage(*pto, NetMsgType::INV, vInv);
    5769         [ #  # ]:           0 :                             vInv.clear();
    5770                 :             :                         }
    5771         [ +  - ]:       16977 :                         tx_relay->m_tx_inventory_known_filter.insert(hash);
    5772                 :       18380 :                     }
    5773                 :             : 
    5774                 :             :                     // Ensure we'll respond to GETDATA requests for anything we've just announced
    5775         [ +  - ]:      117247 :                     LOCK(m_mempool.cs);
    5776         [ +  - ]:      117247 :                     tx_relay->m_last_inv_sequence = m_mempool.GetSequence();
    5777         [ +  - ]:      234494 :                 }
    5778                 :      398223 :         }
    5779         [ +  + ]:      399036 :         if (!vInv.empty())
    5780   [ +  -  +  - ]:       36002 :             MakeAndPushMessage(*pto, NetMsgType::INV, vInv);
    5781                 :             : 
    5782                 :             :         // Detect whether we're stalling
    5783         [ +  + ]:      399036 :         auto stalling_timeout = m_block_stalling_timeout.load();
    5784   [ +  +  +  + ]:      399036 :         if (state.m_stalling_since.count() && state.m_stalling_since < current_time - stalling_timeout) {
    5785                 :             :             // Stalling only triggers when the block download window cannot move. During normal steady state,
    5786                 :             :             // the download window should be much larger than the to-be-downloaded set of blocks, so disconnection
    5787                 :             :             // should only happen during initial block download.
    5788   [ +  -  +  - ]:           6 :             LogInfo("Peer is stalling block download, %s\n", pto->DisconnectMsg(fLogIPs));
    5789         [ +  - ]:           6 :             pto->fDisconnect = true;
    5790                 :             :             // Increase timeout for the next peer so that we don't disconnect multiple peers if our own
    5791                 :             :             // bandwidth is insufficient.
    5792         [ +  - ]:           6 :             const auto new_timeout = std::min(2 * stalling_timeout, BLOCK_STALLING_TIMEOUT_MAX);
    5793   [ +  -  +  - ]:           6 :             if (stalling_timeout != new_timeout && m_block_stalling_timeout.compare_exchange_strong(stalling_timeout, new_timeout)) {
    5794   [ +  -  +  -  :           6 :                 LogDebug(BCLog::NET, "Increased stalling timeout temporarily to %d seconds\n", count_seconds(new_timeout));
                   +  - ]
    5795                 :             :             }
    5796                 :           6 :             return true;
    5797                 :             :         }
    5798                 :             :         // In case there is a block that has been in flight from this peer for block_interval * (1 + 0.5 * N)
    5799                 :             :         // (with N the number of peers from which we're downloading validated blocks), disconnect due to timeout.
    5800                 :             :         // We compensate for other peers to prevent killing off peers due to our own downstream link
    5801                 :             :         // being saturated. We only count validated in-flight blocks so peers can't advertise non-existing block hashes
    5802                 :             :         // to unreasonably increase our timeout.
    5803         [ +  + ]:      399030 :         if (state.vBlocksInFlight.size() > 0) {
    5804                 :       47592 :             QueuedBlock &queuedBlock = state.vBlocksInFlight.front();
    5805                 :       47592 :             int nOtherPeersWithValidatedDownloads = m_peers_downloading_from - 1;
    5806         [ -  + ]:       47592 :             if (current_time > state.m_downloading_since + std::chrono::seconds{consensusParams.nPowTargetSpacing} * (BLOCK_DOWNLOAD_TIMEOUT_BASE + BLOCK_DOWNLOAD_TIMEOUT_PER_PEER * nOtherPeersWithValidatedDownloads)) {
    5807   [ #  #  #  #  :           0 :                 LogInfo("Timeout downloading block %s, %s\n", queuedBlock.pindex->GetBlockHash().ToString(), pto->DisconnectMsg(fLogIPs));
                   #  # ]
    5808                 :           0 :                 pto->fDisconnect = true;
    5809                 :           0 :                 return true;
    5810                 :             :             }
    5811                 :             :         }
    5812                 :             :         // Check for headers sync timeouts
    5813   [ +  +  +  + ]:      399030 :         if (state.fSyncStarted && peer->m_headers_sync_timeout < std::chrono::microseconds::max()) {
    5814                 :             :             // Detect whether this is a stalling initial-headers-sync peer
    5815         [ +  + ]:       13869 :             if (m_chainman.m_best_header->Time() <= NodeClock::now() - 24h) {
    5816   [ +  +  +  -  :       12548 :                 if (current_time > peer->m_headers_sync_timeout && nSyncStarted == 1 && (m_num_preferred_download_peers - state.fPreferredDownload >= 1)) {
                   -  + ]
    5817                 :             :                     // Disconnect a peer (without NetPermissionFlags::NoBan permission) if it is our only sync peer,
    5818                 :             :                     // and we have others we could be using instead.
    5819                 :             :                     // Note: If all our peers are inbound, then we won't
    5820                 :             :                     // disconnect our sync peer for stalling; we have bigger
    5821                 :             :                     // problems if we can't get any outbound peers.
    5822         [ #  # ]:           0 :                     if (!pto->HasPermission(NetPermissionFlags::NoBan)) {
    5823   [ #  #  #  # ]:           0 :                         LogInfo("Timeout downloading headers, %s\n", pto->DisconnectMsg(fLogIPs));
    5824                 :           0 :                         pto->fDisconnect = true;
    5825                 :           0 :                         return true;
    5826                 :             :                     } else {
    5827   [ #  #  #  # ]:           0 :                         LogInfo("Timeout downloading headers from noban peer, not %s\n", pto->DisconnectMsg(fLogIPs));
    5828                 :             :                         // Reset the headers sync state so that we have a
    5829                 :             :                         // chance to try downloading from a different peer.
    5830                 :             :                         // Note: this will also result in at least one more
    5831                 :             :                         // getheaders message to be sent to
    5832                 :             :                         // this peer (eventually).
    5833                 :           0 :                         state.fSyncStarted = false;
    5834                 :           0 :                         nSyncStarted--;
    5835                 :           0 :                         peer->m_headers_sync_timeout = 0us;
    5836                 :             :                     }
    5837                 :             :                 }
    5838                 :             :             } else {
    5839                 :             :                 // After we've caught up once, reset the timeout so we can't trigger
    5840                 :             :                 // disconnect later.
    5841                 :        1321 :                 peer->m_headers_sync_timeout = std::chrono::microseconds::max();
    5842                 :             :             }
    5843                 :             :         }
    5844                 :             : 
    5845                 :             :         // Check that outbound peers have reasonable chains
    5846                 :             :         // GetTime() is used by this anti-DoS logic so we can test this using mocktime
    5847         [ +  - ]:      399030 :         ConsiderEviction(*pto, *peer, GetTime<std::chrono::seconds>());
    5848                 :             : 
    5849                 :             :         //
    5850                 :             :         // Message: getdata (blocks)
    5851                 :             :         //
    5852                 :      399030 :         std::vector<CInv> vGetData;
    5853   [ +  +  +  +  :      399030 :         if (CanServeBlocks(*peer) && ((sync_blocks_and_headers_from_peer && !IsLimitedPeer(*peer)) || !m_chainman.IsInitialBlockDownload()) && state.vBlocksInFlight.size() < MAX_BLOCKS_IN_TRANSIT_PER_PEER) {
          +  +  +  -  +  
                +  +  + ]
    5854                 :      391016 :             std::vector<const CBlockIndex*> vToDownload;
    5855                 :      391016 :             NodeId staller = -1;
    5856                 :      392505 :             auto get_inflight_budget = [&state]() {
    5857                 :      785010 :                 return std::max(0, MAX_BLOCKS_IN_TRANSIT_PER_PEER - static_cast<int>(state.vBlocksInFlight.size()));
    5858                 :      391016 :             };
    5859                 :             : 
    5860                 :             :             // If a snapshot chainstate is in use, we want to find its next blocks
    5861                 :             :             // before the background chainstate to prioritize getting to network tip.
    5862   [ -  +  +  - ]:      391016 :             FindNextBlocksToDownload(*peer, get_inflight_budget(), vToDownload, staller);
    5863   [ +  +  +  - ]:      391016 :             if (m_chainman.BackgroundSyncInProgress() && !IsLimitedPeer(*peer)) {
    5864                 :             :                 // If the background tip is not an ancestor of the snapshot block,
    5865                 :             :                 // we need to start requesting blocks from their last common ancestor.
    5866   [ +  -  +  - ]:        1489 :                 const CBlockIndex *from_tip = LastCommonAncestor(m_chainman.GetBackgroundSyncTip(), m_chainman.GetSnapshotBaseBlock());
    5867         [ -  + ]:        1489 :                 TryDownloadingHistoricalBlocks(
    5868         [ +  - ]:        1489 :                     *peer,
    5869         [ +  - ]:        1489 :                     get_inflight_budget(),
    5870                 :             :                     vToDownload, from_tip,
    5871   [ +  -  +  - ]:        1489 :                     Assert(m_chainman.GetSnapshotBaseBlock()));
    5872                 :             :             }
    5873         [ +  + ]:      429311 :             for (const CBlockIndex *pindex : vToDownload) {
    5874                 :       38295 :                 uint32_t nFetchFlags = GetFetchFlags(*peer);
    5875         [ +  - ]:       38295 :                 vGetData.emplace_back(MSG_BLOCK | nFetchFlags, pindex->GetBlockHash());
    5876         [ +  - ]:       38295 :                 BlockRequested(pto->GetId(), *pindex);
    5877   [ +  -  +  -  :       76590 :                 LogDebug(BCLog::NET, "Requesting block %s (%d) peer=%d\n", pindex->GetBlockHash().ToString(),
             +  -  +  - ]
    5878                 :             :                     pindex->nHeight, pto->GetId());
    5879                 :             :             }
    5880   [ +  +  +  + ]:      391016 :             if (state.vBlocksInFlight.empty() && staller != -1) {
    5881         [ +  + ]:         134 :                 if (State(staller)->m_stalling_since == 0us) {
    5882                 :           6 :                     State(staller)->m_stalling_since = current_time;
    5883   [ +  -  +  -  :           6 :                     LogDebug(BCLog::NET, "Stall started peer=%d\n", staller);
                   +  - ]
    5884                 :             :                 }
    5885                 :             :             }
    5886                 :      391016 :         }
    5887                 :             : 
    5888                 :             :         //
    5889                 :             :         // Message: getdata (transactions)
    5890                 :             :         //
    5891                 :      399030 :         {
    5892         [ +  - ]:      399030 :             LOCK(m_tx_download_mutex);
    5893   [ +  -  +  + ]:      420827 :             for (const GenTxid& gtxid : m_txdownloadman.GetRequestsToSend(pto->GetId(), current_time)) {
    5894   [ +  +  +  - ]:       21797 :                 vGetData.emplace_back(gtxid.IsWtxid() ? MSG_WTX : (MSG_TX | GetFetchFlags(*peer)), gtxid.GetHash());
    5895         [ +  + ]:       21797 :                 if (vGetData.size() >= MAX_GETDATA_SZ) {
    5896   [ +  -  +  - ]:          10 :                     MakeAndPushMessage(*pto, NetMsgType::GETDATA, vGetData);
    5897         [ +  - ]:       21807 :                     vGetData.clear();
    5898                 :             :                 }
    5899         [ +  - ]:      399030 :             }
    5900                 :           0 :         }
    5901                 :             : 
    5902         [ +  + ]:      399030 :         if (!vGetData.empty())
    5903   [ +  -  +  - ]:       86636 :             MakeAndPushMessage(*pto, NetMsgType::GETDATA, vGetData);
    5904   [ +  -  +  - ]:      399042 :     } // release cs_main
    5905         [ +  - ]:      399030 :     MaybeSendFeefilter(*pto, *peer, current_time);
    5906                 :             :     return true;
    5907                 :      404091 : }
        

Generated by: LCOV version 2.0-1