1 //! Adapters that make one or more [`BlockSource`]s simpler to poll for new chain tip transitions.
3 use crate::{AsyncBlockSourceResult, BlockHeaderData, BlockSource, BlockSourceError, BlockSourceResult};
5 use bitcoin::blockdata::block::Block;
6 use bitcoin::hash_types::BlockHash;
7 use bitcoin::network::constants::Network;
11 /// The `Poll` trait defines behavior for polling block sources for a chain tip and retrieving
12 /// related chain data. It serves as an adapter for `BlockSource`.
14 /// [`ChainPoller`] adapts a single `BlockSource`, while any other implementations of `Poll` are
15 /// required to be built in terms of it to ensure chain data validity.
17 /// [`ChainPoller`]: ../struct.ChainPoller.html
19 /// Returns a chain tip in terms of its relationship to the provided chain tip.
20 fn poll_chain_tip<'a>(&'a self, best_known_chain_tip: ValidatedBlockHeader) ->
21 AsyncBlockSourceResult<'a, ChainTip>;
23 /// Returns the header that preceded the given header in the chain.
24 fn look_up_previous_header<'a>(&'a self, header: &'a ValidatedBlockHeader) ->
25 AsyncBlockSourceResult<'a, ValidatedBlockHeader>;
27 /// Returns the block associated with the given header.
28 fn fetch_block<'a>(&'a self, header: &'a ValidatedBlockHeader) ->
29 AsyncBlockSourceResult<'a, ValidatedBlock>;
32 /// A chain tip relative to another chain tip in terms of block hash and chainwork.
33 #[derive(Clone, Debug, PartialEq)]
35 /// A chain tip with the same hash as another chain's tip.
38 /// A chain tip with more chainwork than another chain's tip.
39 Better(ValidatedBlockHeader),
41 /// A chain tip with less or equal chainwork than another chain's tip. In either case, the
42 /// hashes of each tip will be different.
43 Worse(ValidatedBlockHeader),
46 /// The `Validate` trait defines behavior for validating chain data.
48 /// This trait is sealed and not meant to be implemented outside of this crate.
49 pub trait Validate: sealed::Validate {
50 /// The validated data wrapper which can be dereferenced to obtain the validated data.
51 type T: std::ops::Deref<Target = Self>;
53 /// Validates the chain data against the given block hash and any criteria needed to ensure that
54 /// it is internally consistent.
55 fn validate(self, block_hash: BlockHash) -> BlockSourceResult<Self::T>;
58 impl Validate for BlockHeaderData {
59 type T = ValidatedBlockHeader;
61 fn validate(self, block_hash: BlockHash) -> BlockSourceResult<Self::T> {
63 .validate_pow(&self.header.target())
64 .or_else(|e| Err(BlockSourceError::persistent(e)))?;
66 // TODO: Use the result of validate_pow instead of recomputing the block hash once upstream.
67 if self.header.block_hash() != block_hash {
68 return Err(BlockSourceError::persistent("invalid block hash"));
71 Ok(ValidatedBlockHeader { block_hash, inner: self })
75 impl Validate for Block {
76 type T = ValidatedBlock;
78 fn validate(self, block_hash: BlockHash) -> BlockSourceResult<Self::T> {
80 .validate_pow(&self.header.target())
81 .or_else(|e| Err(BlockSourceError::persistent(e)))?;
83 // TODO: Use the result of validate_pow instead of recomputing the block hash once upstream.
84 if self.block_hash() != block_hash {
85 return Err(BlockSourceError::persistent("invalid block hash"));
88 if !self.check_merkle_root() {
89 return Err(BlockSourceError::persistent("invalid merkle root"));
92 if !self.check_witness_commitment() {
93 return Err(BlockSourceError::persistent("invalid witness commitment"));
96 Ok(ValidatedBlock { block_hash, inner: self })
100 /// A block header with validated proof of work and corresponding block hash.
101 #[derive(Clone, Copy, Debug, PartialEq)]
102 pub struct ValidatedBlockHeader {
103 pub(crate) block_hash: BlockHash,
104 inner: BlockHeaderData,
107 impl std::ops::Deref for ValidatedBlockHeader {
108 type Target = BlockHeaderData;
110 fn deref(&self) -> &Self::Target {
115 impl ValidatedBlockHeader {
116 /// Checks that the header correctly builds on previous_header: the claimed work differential
117 /// matches the actual PoW and the difficulty transition is possible, i.e., within 4x.
118 fn check_builds_on(&self, previous_header: &ValidatedBlockHeader, network: Network) -> BlockSourceResult<()> {
119 if self.header.prev_blockhash != previous_header.block_hash {
120 return Err(BlockSourceError::persistent("invalid previous block hash"));
123 if self.height != previous_header.height + 1 {
124 return Err(BlockSourceError::persistent("invalid block height"));
127 let work = self.header.work();
128 if self.chainwork != previous_header.chainwork + work {
129 return Err(BlockSourceError::persistent("invalid chainwork"));
132 if let Network::Bitcoin = network {
133 if self.height % 2016 == 0 {
134 let previous_work = previous_header.header.work();
135 if work > (previous_work << 2) || work < (previous_work >> 2) {
136 return Err(BlockSourceError::persistent("invalid difficulty transition"))
138 } else if self.header.bits != previous_header.header.bits {
139 return Err(BlockSourceError::persistent("invalid difficulty"))
147 /// A block with validated data against its transaction list and corresponding block hash.
148 pub struct ValidatedBlock {
149 pub(crate) block_hash: BlockHash,
153 impl std::ops::Deref for ValidatedBlock {
156 fn deref(&self) -> &Self::Target {
162 /// Used to prevent implementing [`super::Validate`] outside the crate but still allow its use.
163 pub trait Validate {}
165 impl Validate for crate::BlockHeaderData {}
166 impl Validate for bitcoin::blockdata::block::Block {}
169 /// The canonical `Poll` implementation used for a single `BlockSource`.
171 /// Other `Poll` implementations should be built using `ChainPoller` as it provides the simplest way
172 /// of validating chain data and checking consistency.
173 pub struct ChainPoller<B: Deref<Target=T> + Sized, T: BlockSource> {
178 impl<B: Deref<Target=T> + Sized, T: BlockSource> ChainPoller<B, T> {
179 /// Creates a new poller for the given block source.
181 /// If the `network` parameter is mainnet, then the difficulty between blocks is checked for
183 pub fn new(block_source: B, network: Network) -> Self {
184 Self { block_source, network }
188 impl<B: Deref<Target=T> + Sized + Send + Sync, T: BlockSource> Poll for ChainPoller<B, T> {
189 fn poll_chain_tip<'a>(&'a self, best_known_chain_tip: ValidatedBlockHeader) ->
190 AsyncBlockSourceResult<'a, ChainTip>
192 Box::pin(async move {
193 let (block_hash, height) = self.block_source.get_best_block().await?;
194 if block_hash == best_known_chain_tip.header.block_hash() {
195 return Ok(ChainTip::Common);
198 let chain_tip = self.block_source
199 .get_header(&block_hash, height).await?
200 .validate(block_hash)?;
201 if chain_tip.chainwork > best_known_chain_tip.chainwork {
202 Ok(ChainTip::Better(chain_tip))
204 Ok(ChainTip::Worse(chain_tip))
209 fn look_up_previous_header<'a>(&'a self, header: &'a ValidatedBlockHeader) ->
210 AsyncBlockSourceResult<'a, ValidatedBlockHeader>
212 Box::pin(async move {
213 if header.height == 0 {
214 return Err(BlockSourceError::persistent("genesis block reached"));
217 let previous_hash = &header.header.prev_blockhash;
218 let height = header.height - 1;
219 let previous_header = self.block_source
220 .get_header(previous_hash, Some(height)).await?
221 .validate(*previous_hash)?;
222 header.check_builds_on(&previous_header, self.network)?;
228 fn fetch_block<'a>(&'a self, header: &'a ValidatedBlockHeader) ->
229 AsyncBlockSourceResult<'a, ValidatedBlock>
231 Box::pin(async move {
233 .get_block(&header.block_hash).await?
234 .validate(header.block_hash)
242 use crate::test_utils::Blockchain;
244 use bitcoin::util::uint::Uint256;
247 async fn poll_empty_chain() {
248 let mut chain = Blockchain::default().with_height(0);
249 let best_known_chain_tip = chain.tip();
250 chain.disconnect_tip();
252 let poller = ChainPoller::new(&chain, Network::Bitcoin);
253 match poller.poll_chain_tip(best_known_chain_tip).await {
255 assert_eq!(e.kind(), BlockSourceErrorKind::Transient);
256 assert_eq!(e.into_inner().as_ref().to_string(), "empty chain");
258 Ok(_) => panic!("Expected error"),
263 async fn poll_chain_without_headers() {
264 let chain = Blockchain::default().with_height(1).without_headers();
265 let best_known_chain_tip = chain.at_height(0);
267 let poller = ChainPoller::new(&chain, Network::Bitcoin);
268 match poller.poll_chain_tip(best_known_chain_tip).await {
270 assert_eq!(e.kind(), BlockSourceErrorKind::Persistent);
271 assert_eq!(e.into_inner().as_ref().to_string(), "header not found");
273 Ok(_) => panic!("Expected error"),
278 async fn poll_chain_with_invalid_pow() {
279 let mut chain = Blockchain::default().with_height(1);
280 let best_known_chain_tip = chain.at_height(0);
282 // Invalidate the tip by changing its target.
283 chain.blocks.last_mut().unwrap().header.bits =
284 BlockHeader::compact_target_from_u256(&Uint256::from_be_bytes([0; 32]));
286 let poller = ChainPoller::new(&chain, Network::Bitcoin);
287 match poller.poll_chain_tip(best_known_chain_tip).await {
289 assert_eq!(e.kind(), BlockSourceErrorKind::Persistent);
290 assert_eq!(e.into_inner().as_ref().to_string(), "block target correct but not attained");
292 Ok(_) => panic!("Expected error"),
297 async fn poll_chain_with_malformed_headers() {
298 let chain = Blockchain::default().with_height(1).malformed_headers();
299 let best_known_chain_tip = chain.at_height(0);
301 let poller = ChainPoller::new(&chain, Network::Bitcoin);
302 match poller.poll_chain_tip(best_known_chain_tip).await {
304 assert_eq!(e.kind(), BlockSourceErrorKind::Persistent);
305 assert_eq!(e.into_inner().as_ref().to_string(), "invalid block hash");
307 Ok(_) => panic!("Expected error"),
312 async fn poll_chain_with_common_tip() {
313 let chain = Blockchain::default().with_height(0);
314 let best_known_chain_tip = chain.tip();
316 let poller = ChainPoller::new(&chain, Network::Bitcoin);
317 match poller.poll_chain_tip(best_known_chain_tip).await {
318 Err(e) => panic!("Unexpected error: {:?}", e),
319 Ok(tip) => assert_eq!(tip, ChainTip::Common),
324 async fn poll_chain_with_uncommon_tip_but_equal_chainwork() {
325 let mut chain = Blockchain::default().with_height(1);
326 let best_known_chain_tip = chain.tip();
328 // Change the nonce to get a different block hash with the same chainwork.
329 chain.blocks.last_mut().unwrap().header.nonce += 1;
330 let worse_chain_tip = chain.tip();
331 assert_eq!(best_known_chain_tip.chainwork, worse_chain_tip.chainwork);
333 let poller = ChainPoller::new(&chain, Network::Bitcoin);
334 match poller.poll_chain_tip(best_known_chain_tip).await {
335 Err(e) => panic!("Unexpected error: {:?}", e),
336 Ok(tip) => assert_eq!(tip, ChainTip::Worse(worse_chain_tip)),
341 async fn poll_chain_with_worse_tip() {
342 let mut chain = Blockchain::default().with_height(1);
343 let best_known_chain_tip = chain.tip();
345 chain.disconnect_tip();
346 let worse_chain_tip = chain.tip();
348 let poller = ChainPoller::new(&chain, Network::Bitcoin);
349 match poller.poll_chain_tip(best_known_chain_tip).await {
350 Err(e) => panic!("Unexpected error: {:?}", e),
351 Ok(tip) => assert_eq!(tip, ChainTip::Worse(worse_chain_tip)),
356 async fn poll_chain_with_better_tip() {
357 let chain = Blockchain::default().with_height(1);
358 let best_known_chain_tip = chain.at_height(0);
360 let better_chain_tip = chain.tip();
362 let poller = ChainPoller::new(&chain, Network::Bitcoin);
363 match poller.poll_chain_tip(best_known_chain_tip).await {
364 Err(e) => panic!("Unexpected error: {:?}", e),
365 Ok(tip) => assert_eq!(tip, ChainTip::Better(better_chain_tip)),