Bitcoin Core  27.99.0
P2P Digital Currency
Classes | Public Types | Public Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
HeadersSyncState Class Reference

HeadersSyncState: More...

#include <headerssync.h>

Inheritance diagram for HeadersSyncState:
[legend]
Collaboration diagram for HeadersSyncState:
[legend]

Classes

struct  ProcessingResult
 Result data structure for ProcessNextHeaders. More...
 

Public Types

enum class  State { PRESYNC , REDOWNLOAD , FINAL }
 

Public Member Functions

 ~HeadersSyncState ()
 
State GetState () const
 Return the current state of our download. More...
 
int64_t GetPresyncHeight () const
 Return the height reached during the PRESYNC phase. More...
 
uint32_t GetPresyncTime () const
 Return the block timestamp of the last header received during the PRESYNC phase. More...
 
arith_uint256 GetPresyncWork () const
 Return the amount of work in the chain received during the PRESYNC phase. More...
 
 HeadersSyncState (NodeId id, const Consensus::Params &consensus_params, const CBlockIndex *chain_start, const arith_uint256 &minimum_required_work)
 Construct a HeadersSyncState object representing a headers sync via this download-twice mechanism). More...
 
ProcessingResult ProcessNextHeaders (const std::vector< CBlockHeader > &received_headers, bool full_headers_message)
 Process a batch of headers, once a sync via this mechanism has started. More...
 
CBlockLocator NextHeadersRequestLocator () const
 Issue the next GETHEADERS message to our peer. More...
 

Protected Attributes

const unsigned m_commit_offset
 The (secret) offset on the heights for which to create commitments. More...
 

Private Member Functions

void Finalize ()
 Clear out all download state that might be in progress (freeing any used memory), and mark this object as no longer usable. More...
 
bool ValidateAndStoreHeadersCommitments (const std::vector< CBlockHeader > &headers)
 Only called in PRESYNC. More...
 
bool ValidateAndProcessSingleHeader (const CBlockHeader &current)
 In PRESYNC, process and update state for a single header. More...
 
bool ValidateAndStoreRedownloadedHeader (const CBlockHeader &header)
 In REDOWNLOAD, check a header's commitment (if applicable) and add to buffer for later processing. More...
 
std::vector< CBlockHeaderPopHeadersReadyForAcceptance ()
 Return a set of headers that satisfy our proof-of-work threshold. More...
 

Private Attributes

const NodeId m_id
 NodeId of the peer (used for log messages) More...
 
const Consensus::Paramsm_consensus_params
 We use the consensus params in our anti-DoS calculations. More...
 
const CBlockIndexm_chain_start {nullptr}
 Store the last block in our block index that the peer's chain builds from. More...
 
const arith_uint256 m_minimum_required_work
 Minimum work that we're looking for on this chain. More...
 
arith_uint256 m_current_chain_work
 Work that we've seen so far on the peer's chain. More...
 
const SaltedTxidHasher m_hasher
 m_hasher is a salted hasher for making our 1-bit commitments to headers we've seen. More...
 
bitdeque m_header_commitments
 A queue of commitment bits, created during the 1st phase, and verified during the 2nd. More...
 
uint64_t m_max_commitments {0}
 m_max_commitments is a bound we calculate on how long an honest peer's chain could be, given the MTP rule. More...
 
CBlockHeader m_last_header_received
 Store the latest header received while in PRESYNC (initialized to m_chain_start) More...
 
int64_t m_current_height {0}
 Height of m_last_header_received. More...
 
std::deque< CompressedHeaderm_redownloaded_headers
 During phase 2 (REDOWNLOAD), we buffer redownloaded headers in memory until enough commitments have been verified; those are stored in m_redownloaded_headers. More...
 
int64_t m_redownload_buffer_last_height {0}
 Height of last header in m_redownloaded_headers. More...
 
uint256 m_redownload_buffer_last_hash
 Hash of last header in m_redownloaded_headers (initialized to m_chain_start). More...
 
uint256 m_redownload_buffer_first_prev_hash
 The hashPrevBlock entry for the first header in m_redownloaded_headers We need this to reconstruct the full header when it's time for processing. More...
 
arith_uint256 m_redownload_chain_work
 The accumulated work on the redownloaded chain. More...
 
bool m_process_all_remaining_headers {false}
 Set this to true once we encounter the target blockheader during phase 2 (REDOWNLOAD). More...
 
State m_download_state {State::PRESYNC}
 Current state of our headers sync. More...
 

Detailed Description

HeadersSyncState:

We wish to download a peer's headers chain in a DoS-resistant way.

The Bitcoin protocol does not offer an easy way to determine the work on a peer's chain. Currently, we can query a peer's headers by using a GETHEADERS message, and our peer can return a set of up to 2000 headers that connect to something we know. If a peer's chain has more than 2000 blocks, then we need a way to verify that the chain actually has enough work on it to be useful to us – by being above our anti-DoS minimum-chain-work threshold – before we commit to storing those headers in memory. Otherwise, it would be cheap for an attacker to waste all our memory by serving us low-work headers (particularly for a new node coming online for the first time).

To prevent memory-DoS with low-work headers, while still always being able to reorg to whatever the most-work chain is, we require that a chain meet a work threshold before committing it to memory. We can do this by downloading a peer's headers twice, whenever we are not sure that the chain has sufficient work:

To prevent an attacker from using (eg) the honest chain to convince us that they have a high-work chain, but then feeding us an alternate set of low-difficulty headers in the second phase, we store commitments to the chain we see in the first download phase that we check in the second phase, as follows:

Definition at line 101 of file headerssync.h.

Member Enumeration Documentation

◆ State

Enumerator
PRESYNC 

PRESYNC means the peer has not yet demonstrated their chain has sufficient work and we're only building commitments to the chain they serve us.

REDOWNLOAD 

REDOWNLOAD means the peer has given us a high-enough-work chain, and now we're redownloading the headers we saw before and trying to accept them.

FINAL 

We're done syncing with this peer and can discard any remaining state.

Definition at line 105 of file headerssync.h.

Constructor & Destructor Documentation

◆ ~HeadersSyncState()

HeadersSyncState::~HeadersSyncState ( )
inline

Definition at line 103 of file headerssync.h.

◆ HeadersSyncState()

HeadersSyncState::HeadersSyncState ( NodeId  id,
const Consensus::Params consensus_params,
const CBlockIndex chain_start,
const arith_uint256 minimum_required_work 
)

Construct a HeadersSyncState object representing a headers sync via this download-twice mechanism).

id: node id (for logging) consensus_params: parameters needed for difficulty adjustment validation chain_start: best known fork point that the peer's headers branch from minimum_required_work: amount of chain work required to accept the chain

Definition at line 26 of file headerssync.cpp.

Here is the call graph for this function:

Member Function Documentation

◆ Finalize()

void HeadersSyncState::Finalize ( )
private

Clear out all download state that might be in progress (freeing any used memory), and mark this object as no longer usable.

Free any memory in use, and mark this object as no longer usable.

This is required to guarantee that we won't reuse this object with the same SaltedTxidHasher for another sync.

Definition at line 52 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetPresyncHeight()

int64_t HeadersSyncState::GetPresyncHeight ( ) const
inline

Return the height reached during the PRESYNC phase.

Definition at line 122 of file headerssync.h.

◆ GetPresyncTime()

uint32_t HeadersSyncState::GetPresyncTime ( ) const
inline

Return the block timestamp of the last header received during the PRESYNC phase.

Definition at line 125 of file headerssync.h.

◆ GetPresyncWork()

arith_uint256 HeadersSyncState::GetPresyncWork ( ) const
inline

Return the amount of work in the chain received during the PRESYNC phase.

Definition at line 128 of file headerssync.h.

◆ GetState()

State HeadersSyncState::GetState ( ) const
inline

Return the current state of our download.

Definition at line 119 of file headerssync.h.

Here is the caller graph for this function:

◆ NextHeadersRequestLocator()

CBlockLocator HeadersSyncState::NextHeadersRequestLocator ( ) const

Issue the next GETHEADERS message to our peer.

This will return a locator appropriate for the current sync object, to continue the synchronization phase it is in.

Definition at line 297 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PopHeadersReadyForAcceptance()

std::vector< CBlockHeader > HeadersSyncState::PopHeadersReadyForAcceptance ( )
private

Return a set of headers that satisfy our proof-of-work threshold.

Definition at line 281 of file headerssync.cpp.

Here is the caller graph for this function:

◆ ProcessNextHeaders()

HeadersSyncState::ProcessingResult HeadersSyncState::ProcessNextHeaders ( const std::vector< CBlockHeader > &  received_headers,
bool  full_headers_message 
)

Process a batch of headers, once a sync via this mechanism has started.

Process the next batch of headers received from our peer.

received_headers: headers that were received over the network for processing. Assumes the caller has already verified the headers are continuous, and has checked that each header satisfies the proof-of-work target included in the header (but not necessarily verified that the proof-of-work target is correct and passes consensus rules). full_headers_message: true if the message was at max capacity, indicating more headers may be available ProcessingResult.pow_validated_headers: will be filled in with any headers that the caller can fully process and validate now (because these returned headers are on a chain with sufficient work) ProcessingResult.success: set to false if an error is detected and the sync is aborted; true otherwise. ProcessingResult.request_more: if true, the caller is suggested to call NextHeadersRequestLocator and send a getheaders message using it.

Validate and store commitments, and compare total chainwork to our target to see if we can switch to REDOWNLOAD mode.

Definition at line 69 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ValidateAndProcessSingleHeader()

bool HeadersSyncState::ValidateAndProcessSingleHeader ( const CBlockHeader current)
private

In PRESYNC, process and update state for a single header.

Definition at line 178 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ValidateAndStoreHeadersCommitments()

bool HeadersSyncState::ValidateAndStoreHeadersCommitments ( const std::vector< CBlockHeader > &  headers)
private

Only called in PRESYNC.

Validate the work on the headers we received from the network, and store commitments for later. Update overall state with successfully processed headers. On failure, this invokes Finalize() and returns false.

Definition at line 140 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ValidateAndStoreRedownloadedHeader()

bool HeadersSyncState::ValidateAndStoreRedownloadedHeader ( const CBlockHeader header)
private

In REDOWNLOAD, check a header's commitment (if applicable) and add to buffer for later processing.

Definition at line 216 of file headerssync.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ m_chain_start

const CBlockIndex* HeadersSyncState::m_chain_start {nullptr}
private

Store the last block in our block index that the peer's chain builds from.

Definition at line 218 of file headerssync.h.

◆ m_commit_offset

const unsigned HeadersSyncState::m_commit_offset
protected

The (secret) offset on the heights for which to create commitments.

m_header_commitments entries are created at any height h for which (h % HEADER_COMMITMENT_PERIOD) == m_commit_offset.

Definition at line 183 of file headerssync.h.

◆ m_consensus_params

const Consensus::Params& HeadersSyncState::m_consensus_params
private

We use the consensus params in our anti-DoS calculations.

Definition at line 215 of file headerssync.h.

◆ m_current_chain_work

arith_uint256 HeadersSyncState::m_current_chain_work
private

Work that we've seen so far on the peer's chain.

Definition at line 224 of file headerssync.h.

◆ m_current_height

int64_t HeadersSyncState::m_current_height {0}
private

Height of m_last_header_received.

Definition at line 243 of file headerssync.h.

◆ m_download_state

State HeadersSyncState::m_download_state {State::PRESYNC}
private

Current state of our headers sync.

Definition at line 275 of file headerssync.h.

◆ m_hasher

const SaltedTxidHasher HeadersSyncState::m_hasher
private

m_hasher is a salted hasher for making our 1-bit commitments to headers we've seen.

Definition at line 227 of file headerssync.h.

◆ m_header_commitments

bitdeque HeadersSyncState::m_header_commitments
private

A queue of commitment bits, created during the 1st phase, and verified during the 2nd.

Definition at line 230 of file headerssync.h.

◆ m_id

const NodeId HeadersSyncState::m_id
private

NodeId of the peer (used for log messages)

Definition at line 212 of file headerssync.h.

◆ m_last_header_received

CBlockHeader HeadersSyncState::m_last_header_received
private

Store the latest header received while in PRESYNC (initialized to m_chain_start)

Definition at line 240 of file headerssync.h.

◆ m_max_commitments

uint64_t HeadersSyncState::m_max_commitments {0}
private

m_max_commitments is a bound we calculate on how long an honest peer's chain could be, given the MTP rule.

Any peer giving us more headers than this will have its sync aborted. This serves as a memory bound on m_header_commitments.

Definition at line 237 of file headerssync.h.

◆ m_minimum_required_work

const arith_uint256 HeadersSyncState::m_minimum_required_work
private

Minimum work that we're looking for on this chain.

Definition at line 221 of file headerssync.h.

◆ m_process_all_remaining_headers

bool HeadersSyncState::m_process_all_remaining_headers {false}
private

Set this to true once we encounter the target blockheader during phase 2 (REDOWNLOAD).

At this point, we can process and store all remaining headers still in m_redownloaded_headers.

Definition at line 272 of file headerssync.h.

◆ m_redownload_buffer_first_prev_hash

uint256 HeadersSyncState::m_redownload_buffer_first_prev_hash
private

The hashPrevBlock entry for the first header in m_redownloaded_headers We need this to reconstruct the full header when it's time for processing.

Definition at line 263 of file headerssync.h.

◆ m_redownload_buffer_last_hash

uint256 HeadersSyncState::m_redownload_buffer_last_hash
private

Hash of last header in m_redownloaded_headers (initialized to m_chain_start).

We have to cache it because we don't have hashPrevBlock available in a CompressedHeader.

Definition at line 257 of file headerssync.h.

◆ m_redownload_buffer_last_height

int64_t HeadersSyncState::m_redownload_buffer_last_height {0}
private

Height of last header in m_redownloaded_headers.

Definition at line 251 of file headerssync.h.

◆ m_redownload_chain_work

arith_uint256 HeadersSyncState::m_redownload_chain_work
private

The accumulated work on the redownloaded chain.

Definition at line 266 of file headerssync.h.

◆ m_redownloaded_headers

std::deque<CompressedHeader> HeadersSyncState::m_redownloaded_headers
private

During phase 2 (REDOWNLOAD), we buffer redownloaded headers in memory until enough commitments have been verified; those are stored in m_redownloaded_headers.

Definition at line 248 of file headerssync.h.


The documentation for this class was generated from the following files: