mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-16 03:12:41 +00:00
Use async code when interacting with EL (#3244)
## Overview
This rather extensive PR achieves two primary goals:
1. Uses the finalized/justified checkpoints of fork choice (FC), rather than that of the head state.
2. Refactors fork choice, block production and block processing to `async` functions.
Additionally, it achieves:
- Concurrent forkchoice updates to the EL and cache pruning after a new head is selected.
- Concurrent "block packing" (attestations, etc) and execution payload retrieval during block production.
- Concurrent per-block-processing and execution payload verification during block processing.
- The `Arc`-ification of `SignedBeaconBlock` during block processing (it's never mutated, so why not?):
- I had to do this to deal with sending blocks into spawned tasks.
- Previously we were cloning the beacon block at least 2 times during each block processing, these clones are either removed or turned into cheaper `Arc` clones.
- We were also `Box`-ing and un-`Box`-ing beacon blocks as they moved throughout the networking crate. This is not a big deal, but it's nice to avoid shifting things between the stack and heap.
- Avoids cloning *all the blocks* in *every chain segment* during sync.
- It also has the potential to clean up our code where we need to pass an *owned* block around so we can send it back in the case of an error (I didn't do much of this, my PR is already big enough 😅)
- The `BeaconChain::HeadSafetyStatus` struct was removed. It was an old relic from prior merge specs.
For motivation for this change, see https://github.com/sigp/lighthouse/pull/3244#issuecomment-1160963273
## Changes to `canonical_head` and `fork_choice`
Previously, the `BeaconChain` had two separate fields:
```
canonical_head: RwLock<Snapshot>,
fork_choice: RwLock<BeaconForkChoice>
```
Now, we have grouped these values under a single struct:
```
canonical_head: CanonicalHead {
cached_head: RwLock<Arc<Snapshot>>,
fork_choice: RwLock<BeaconForkChoice>
}
```
Apart from ergonomics, the only *actual* change here is wrapping the canonical head snapshot in an `Arc`. This means that we no longer need to hold the `cached_head` (`canonical_head`, in old terms) lock when we want to pull some values from it. This was done to avoid deadlock risks by preventing functions from acquiring (and holding) the `cached_head` and `fork_choice` locks simultaneously.
## Breaking Changes
### The `state` (root) field in the `finalized_checkpoint` SSE event
Consider the scenario where epoch `n` is just finalized, but `start_slot(n)` is skipped. There are two state roots we might in the `finalized_checkpoint` SSE event:
1. The state root of the finalized block, which is `get_block(finalized_checkpoint.root).state_root`.
4. The state root at slot of `start_slot(n)`, which would be the state from (1), but "skipped forward" through any skip slots.
Previously, Lighthouse would choose (2). However, we can see that when [Teku generates that event](de2b2801c8/data/beaconrestapi/src/main/java/tech/pegasys/teku/beaconrestapi/handlers/v1/events/EventSubscriptionManager.java (L171-L182)) it uses [`getStateRootFromBlockRoot`](de2b2801c8/data/provider/src/main/java/tech/pegasys/teku/api/ChainDataProvider.java (L336-L341)) which uses (1).
I have switched Lighthouse from (2) to (1). I think it's a somewhat arbitrary choice between the two, where (1) is easier to compute and is consistent with Teku.
## Notes for Reviewers
I've renamed `BeaconChain::fork_choice` to `BeaconChain::recompute_head`. Doing this helped ensure I broke all previous uses of fork choice and I also find it more descriptive. It describes an action and can't be confused with trying to get a reference to the `ForkChoice` struct.
I've changed the ordering of SSE events when a block is received. It used to be `[block, finalized, head]` and now it's `[block, head, finalized]`. It was easier this way and I don't think we were making any promises about SSE event ordering so it's not "breaking".
I've made it so fork choice will run when it's first constructed. I did this because I wanted to have a cached version of the last call to `get_head`. Ensuring `get_head` has been run *at least once* means that the cached values doesn't need to wrapped in an `Option`. This was fairly simple, it just involved passing a `slot` to the constructor so it knows *when* it's being run. When loading a fork choice from the store and a slot clock isn't handy I've just used the `slot` that was saved in the `fork_choice_store`. That seems like it would be a faithful representation of the slot when we saved it.
I added the `genesis_time: u64` to the `BeaconChain`. It's small, constant and nice to have around.
Since we're using FC for the fin/just checkpoints, we no longer get the `0x00..00` roots at genesis. You can see I had to remove a work-around in `ef-tests` here: b56be3bc2. I can't find any reason why this would be an issue, if anything I think it'll be better since the genesis-alias has caught us out a few times (0x00..00 isn't actually a real root). Edit: I did find a case where the `network` expected the 0x00..00 alias and patched it here: 3f26ac3e2.
You'll notice a lot of changes in tests. Generally, tests should be functionally equivalent. Here are the things creating the most diff-noise in tests:
- Changing tests to be `tokio::async` tests.
- Adding `.await` to fork choice, block processing and block production functions.
- Refactor of the `canonical_head` "API" provided by the `BeaconChain`. E.g., `chain.canonical_head.cached_head()` instead of `chain.canonical_head.read()`.
- Wrapping `SignedBeaconBlock` in an `Arc`.
- In the `beacon_chain/tests/block_verification`, we can't use the `lazy_static` `CHAIN_SEGMENT` variable anymore since it's generated with an async function. We just generate it in each test, not so efficient but hopefully insignificant.
I had to disable `rayon` concurrent tests in the `fork_choice` tests. This is because the use of `rayon` and `block_on` was causing a panic.
Co-authored-by: Mac L <mjladson@pm.me>
This commit is contained in:
@@ -52,6 +52,7 @@ use lighthouse_network::{
|
||||
use logging::TimeLatch;
|
||||
use slog::{crit, debug, error, trace, warn, Logger};
|
||||
use std::collections::VecDeque;
|
||||
use std::future::Future;
|
||||
use std::pin::Pin;
|
||||
use std::sync::{Arc, Weak};
|
||||
use std::task::Context;
|
||||
@@ -386,7 +387,7 @@ impl<T: BeaconChainTypes> WorkEvent<T> {
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
peer_client: Client,
|
||||
block: Box<SignedBeaconBlock<T::EthSpec>>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
seen_timestamp: Duration,
|
||||
) -> Self {
|
||||
Self {
|
||||
@@ -490,7 +491,7 @@ impl<T: BeaconChainTypes> WorkEvent<T> {
|
||||
/// Create a new `Work` event for some block, where the result from computation (if any) is
|
||||
/// sent to the other side of `result_tx`.
|
||||
pub fn rpc_beacon_block(
|
||||
block: Box<SignedBeaconBlock<T::EthSpec>>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
seen_timestamp: Duration,
|
||||
process_type: BlockProcessType,
|
||||
) -> Self {
|
||||
@@ -507,7 +508,7 @@ impl<T: BeaconChainTypes> WorkEvent<T> {
|
||||
/// Create a new work event to import `blocks` as a beacon chain segment.
|
||||
pub fn chain_segment(
|
||||
process_id: ChainSegmentProcessId,
|
||||
blocks: Vec<SignedBeaconBlock<T::EthSpec>>,
|
||||
blocks: Vec<Arc<SignedBeaconBlock<T::EthSpec>>>,
|
||||
) -> Self {
|
||||
Self {
|
||||
drop_during_sync: false,
|
||||
@@ -654,7 +655,7 @@ pub enum Work<T: BeaconChainTypes> {
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
peer_client: Client,
|
||||
block: Box<SignedBeaconBlock<T::EthSpec>>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
seen_timestamp: Duration,
|
||||
},
|
||||
DelayedImportBlock {
|
||||
@@ -691,13 +692,13 @@ pub enum Work<T: BeaconChainTypes> {
|
||||
seen_timestamp: Duration,
|
||||
},
|
||||
RpcBlock {
|
||||
block: Box<SignedBeaconBlock<T::EthSpec>>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
seen_timestamp: Duration,
|
||||
process_type: BlockProcessType,
|
||||
},
|
||||
ChainSegment {
|
||||
process_id: ChainSegmentProcessId,
|
||||
blocks: Vec<SignedBeaconBlock<T::EthSpec>>,
|
||||
blocks: Vec<Arc<SignedBeaconBlock<T::EthSpec>>>,
|
||||
},
|
||||
Status {
|
||||
peer_id: PeerId,
|
||||
@@ -1307,15 +1308,6 @@ impl<T: BeaconChainTypes> BeaconProcessor<T> {
|
||||
let idle_tx = toolbox.idle_tx;
|
||||
let work_reprocessing_tx = toolbox.work_reprocessing_tx;
|
||||
|
||||
// Wrap the `idle_tx` in a struct that will fire the idle message whenever it is dropped.
|
||||
//
|
||||
// This helps ensure that the worker is always freed in the case of an early exit or panic.
|
||||
// As such, this instantiation should happen as early in the function as possible.
|
||||
let send_idle_on_drop = SendOnDrop {
|
||||
tx: idle_tx,
|
||||
log: self.log.clone(),
|
||||
};
|
||||
|
||||
let work_id = work.str_id();
|
||||
let worker_timer =
|
||||
metrics::start_timer_vec(&metrics::BEACON_PROCESSOR_WORKER_TIME, &[work_id]);
|
||||
@@ -1325,6 +1317,16 @@ impl<T: BeaconChainTypes> BeaconProcessor<T> {
|
||||
&[work.str_id()],
|
||||
);
|
||||
|
||||
// Wrap the `idle_tx` in a struct that will fire the idle message whenever it is dropped.
|
||||
//
|
||||
// This helps ensure that the worker is always freed in the case of an early exit or panic.
|
||||
// As such, this instantiation should happen as early in the function as possible.
|
||||
let send_idle_on_drop = SendOnDrop {
|
||||
tx: idle_tx,
|
||||
_worker_timer: worker_timer,
|
||||
log: self.log.clone(),
|
||||
};
|
||||
|
||||
let worker_id = self.current_workers;
|
||||
self.current_workers = self.current_workers.saturating_add(1);
|
||||
|
||||
@@ -1338,7 +1340,6 @@ impl<T: BeaconChainTypes> BeaconProcessor<T> {
|
||||
return;
|
||||
};
|
||||
|
||||
let log = self.log.clone();
|
||||
let executor = self.executor.clone();
|
||||
|
||||
let worker = Worker {
|
||||
@@ -1357,252 +1358,308 @@ impl<T: BeaconChainTypes> BeaconProcessor<T> {
|
||||
"worker" => worker_id,
|
||||
);
|
||||
|
||||
let sub_executor = executor.clone();
|
||||
executor.spawn_blocking(
|
||||
move || {
|
||||
let _worker_timer = worker_timer;
|
||||
let task_spawner = TaskSpawner {
|
||||
executor: executor.clone(),
|
||||
send_idle_on_drop,
|
||||
};
|
||||
|
||||
match work {
|
||||
/*
|
||||
* Individual unaggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAttestation {
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_attestation(
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
Some(work_reprocessing_tx),
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Batched unaggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAttestationBatch { packages } => worker
|
||||
.process_gossip_attestation_batch(packages, Some(work_reprocessing_tx)),
|
||||
/*
|
||||
* Individual aggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAggregate {
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_aggregate(
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
Some(work_reprocessing_tx),
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Batched aggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAggregateBatch { packages } => {
|
||||
worker.process_gossip_aggregate_batch(packages, Some(work_reprocessing_tx))
|
||||
}
|
||||
/*
|
||||
* Verification for beacon blocks received on gossip.
|
||||
*/
|
||||
Work::GossipBlock {
|
||||
let sub_executor = executor;
|
||||
match work {
|
||||
/*
|
||||
* Individual unaggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAttestation {
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_attestation(
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
Some(work_reprocessing_tx),
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
/*
|
||||
* Batched unaggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAttestationBatch { packages } => task_spawner.spawn_blocking(|| {
|
||||
worker.process_gossip_attestation_batch(packages, Some(work_reprocessing_tx))
|
||||
}),
|
||||
/*
|
||||
* Individual aggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAggregate {
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_aggregate(
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
Some(work_reprocessing_tx),
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
/*
|
||||
* Batched aggregated attestation verification.
|
||||
*/
|
||||
Work::GossipAggregateBatch { packages } => task_spawner.spawn_blocking(|| {
|
||||
worker.process_gossip_aggregate_batch(packages, Some(work_reprocessing_tx))
|
||||
}),
|
||||
/*
|
||||
* Verification for beacon blocks received on gossip.
|
||||
*/
|
||||
Work::GossipBlock {
|
||||
message_id,
|
||||
peer_id,
|
||||
peer_client,
|
||||
block,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_async(async move {
|
||||
worker
|
||||
.process_gossip_block(
|
||||
message_id,
|
||||
peer_id,
|
||||
peer_client,
|
||||
block,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_block(
|
||||
message_id,
|
||||
peer_id,
|
||||
peer_client,
|
||||
*block,
|
||||
work_reprocessing_tx.clone(),
|
||||
work_reprocessing_tx,
|
||||
duplicate_cache,
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Import for blocks that we received earlier than their intended slot.
|
||||
*/
|
||||
Work::DelayedImportBlock {
|
||||
peer_id,
|
||||
block,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_verified_block(
|
||||
peer_id,
|
||||
*block,
|
||||
work_reprocessing_tx,
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Voluntary exits received on gossip.
|
||||
*/
|
||||
Work::GossipVoluntaryExit {
|
||||
message_id,
|
||||
peer_id,
|
||||
voluntary_exit,
|
||||
} => worker.process_gossip_voluntary_exit(message_id, peer_id, *voluntary_exit),
|
||||
/*
|
||||
* Proposer slashings received on gossip.
|
||||
*/
|
||||
Work::GossipProposerSlashing {
|
||||
message_id,
|
||||
peer_id,
|
||||
proposer_slashing,
|
||||
} => worker.process_gossip_proposer_slashing(
|
||||
message_id,
|
||||
peer_id,
|
||||
*proposer_slashing,
|
||||
),
|
||||
/*
|
||||
* Attester slashings received on gossip.
|
||||
*/
|
||||
Work::GossipAttesterSlashing {
|
||||
message_id,
|
||||
peer_id,
|
||||
attester_slashing,
|
||||
} => worker.process_gossip_attester_slashing(
|
||||
message_id,
|
||||
peer_id,
|
||||
*attester_slashing,
|
||||
),
|
||||
/*
|
||||
* Sync committee message verification.
|
||||
*/
|
||||
Work::GossipSyncSignature {
|
||||
message_id,
|
||||
peer_id,
|
||||
sync_signature,
|
||||
subnet_id,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_sync_committee_signature(
|
||||
message_id,
|
||||
peer_id,
|
||||
*sync_signature,
|
||||
subnet_id,
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Syn contribution verification.
|
||||
*/
|
||||
Work::GossipSyncContribution {
|
||||
message_id,
|
||||
peer_id,
|
||||
sync_contribution,
|
||||
seen_timestamp,
|
||||
} => worker.process_sync_committee_contribution(
|
||||
message_id,
|
||||
peer_id,
|
||||
*sync_contribution,
|
||||
seen_timestamp,
|
||||
),
|
||||
/*
|
||||
* Verification for beacon blocks received during syncing via RPC.
|
||||
*/
|
||||
Work::RpcBlock {
|
||||
block,
|
||||
seen_timestamp,
|
||||
process_type,
|
||||
} => {
|
||||
worker.process_rpc_block(
|
||||
*block,
|
||||
seen_timestamp,
|
||||
process_type,
|
||||
work_reprocessing_tx.clone(),
|
||||
duplicate_cache,
|
||||
);
|
||||
}
|
||||
/*
|
||||
* Verification for a chain segment (multiple blocks).
|
||||
*/
|
||||
Work::ChainSegment { process_id, blocks } => {
|
||||
worker.process_chain_segment(process_id, blocks)
|
||||
}
|
||||
/*
|
||||
* Processing of Status Messages.
|
||||
*/
|
||||
Work::Status { peer_id, message } => worker.process_status(peer_id, message),
|
||||
/*
|
||||
* Processing of range syncing requests from other peers.
|
||||
*/
|
||||
Work::BlocksByRangeRequest {
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
} => {
|
||||
return worker.handle_blocks_by_range_request(
|
||||
sub_executor,
|
||||
send_idle_on_drop,
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
)
|
||||
}
|
||||
/*
|
||||
* Processing of blocks by roots requests from other peers.
|
||||
*/
|
||||
Work::BlocksByRootsRequest {
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
} => {
|
||||
return worker.handle_blocks_by_root_request(
|
||||
sub_executor,
|
||||
send_idle_on_drop,
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
)
|
||||
}
|
||||
Work::UnknownBlockAttestation {
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_attestation(
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
None, // Do not allow this attestation to be re-processed beyond this point.
|
||||
seen_timestamp,
|
||||
),
|
||||
Work::UnknownBlockAggregate {
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
seen_timestamp,
|
||||
} => worker.process_gossip_aggregate(
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
None,
|
||||
seen_timestamp,
|
||||
),
|
||||
};
|
||||
)
|
||||
.await
|
||||
}),
|
||||
/*
|
||||
* Import for blocks that we received earlier than their intended slot.
|
||||
*/
|
||||
Work::DelayedImportBlock {
|
||||
peer_id,
|
||||
block,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_async(worker.process_gossip_verified_block(
|
||||
peer_id,
|
||||
*block,
|
||||
work_reprocessing_tx,
|
||||
seen_timestamp,
|
||||
)),
|
||||
/*
|
||||
* Voluntary exits received on gossip.
|
||||
*/
|
||||
Work::GossipVoluntaryExit {
|
||||
message_id,
|
||||
peer_id,
|
||||
voluntary_exit,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_voluntary_exit(message_id, peer_id, *voluntary_exit)
|
||||
}),
|
||||
/*
|
||||
* Proposer slashings received on gossip.
|
||||
*/
|
||||
Work::GossipProposerSlashing {
|
||||
message_id,
|
||||
peer_id,
|
||||
proposer_slashing,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_proposer_slashing(message_id, peer_id, *proposer_slashing)
|
||||
}),
|
||||
/*
|
||||
* Attester slashings received on gossip.
|
||||
*/
|
||||
Work::GossipAttesterSlashing {
|
||||
message_id,
|
||||
peer_id,
|
||||
attester_slashing,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_attester_slashing(message_id, peer_id, *attester_slashing)
|
||||
}),
|
||||
/*
|
||||
* Sync committee message verification.
|
||||
*/
|
||||
Work::GossipSyncSignature {
|
||||
message_id,
|
||||
peer_id,
|
||||
sync_signature,
|
||||
subnet_id,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_sync_committee_signature(
|
||||
message_id,
|
||||
peer_id,
|
||||
*sync_signature,
|
||||
subnet_id,
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
/*
|
||||
* Syn contribution verification.
|
||||
*/
|
||||
Work::GossipSyncContribution {
|
||||
message_id,
|
||||
peer_id,
|
||||
sync_contribution,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_sync_committee_contribution(
|
||||
message_id,
|
||||
peer_id,
|
||||
*sync_contribution,
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
/*
|
||||
* Verification for beacon blocks received during syncing via RPC.
|
||||
*/
|
||||
Work::RpcBlock {
|
||||
block,
|
||||
seen_timestamp,
|
||||
process_type,
|
||||
} => task_spawner.spawn_async(worker.process_rpc_block(
|
||||
block,
|
||||
seen_timestamp,
|
||||
process_type,
|
||||
work_reprocessing_tx,
|
||||
duplicate_cache,
|
||||
)),
|
||||
/*
|
||||
* Verification for a chain segment (multiple blocks).
|
||||
*/
|
||||
Work::ChainSegment { process_id, blocks } => task_spawner
|
||||
.spawn_async(async move { worker.process_chain_segment(process_id, blocks).await }),
|
||||
/*
|
||||
* Processing of Status Messages.
|
||||
*/
|
||||
Work::Status { peer_id, message } => {
|
||||
task_spawner.spawn_blocking(move || worker.process_status(peer_id, message))
|
||||
}
|
||||
/*
|
||||
* Processing of range syncing requests from other peers.
|
||||
*/
|
||||
Work::BlocksByRangeRequest {
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
} => task_spawner.spawn_blocking_with_manual_send_idle(move |send_idle_on_drop| {
|
||||
worker.handle_blocks_by_range_request(
|
||||
sub_executor,
|
||||
send_idle_on_drop,
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
)
|
||||
}),
|
||||
/*
|
||||
* Processing of blocks by roots requests from other peers.
|
||||
*/
|
||||
Work::BlocksByRootsRequest {
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
} => task_spawner.spawn_blocking_with_manual_send_idle(move |send_idle_on_drop| {
|
||||
worker.handle_blocks_by_root_request(
|
||||
sub_executor,
|
||||
send_idle_on_drop,
|
||||
peer_id,
|
||||
request_id,
|
||||
request,
|
||||
)
|
||||
}),
|
||||
Work::UnknownBlockAttestation {
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_attestation(
|
||||
message_id,
|
||||
peer_id,
|
||||
attestation,
|
||||
subnet_id,
|
||||
should_import,
|
||||
None, // Do not allow this attestation to be re-processed beyond this point.
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
Work::UnknownBlockAggregate {
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
seen_timestamp,
|
||||
} => task_spawner.spawn_blocking(move || {
|
||||
worker.process_gossip_aggregate(
|
||||
message_id,
|
||||
peer_id,
|
||||
aggregate,
|
||||
None,
|
||||
seen_timestamp,
|
||||
)
|
||||
}),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
trace!(
|
||||
log,
|
||||
"Beacon processor worker done";
|
||||
"work" => work_id,
|
||||
"worker" => worker_id,
|
||||
);
|
||||
/// Spawns tasks that are either:
|
||||
///
|
||||
/// - Blocking (i.e. intensive methods that shouldn't run on the core `tokio` executor)
|
||||
/// - Async (i.e. `async` methods)
|
||||
///
|
||||
/// Takes a `SendOnDrop` and ensures it is dropped after the task completes. This frees the beacon
|
||||
/// processor worker so a new task can be started.
|
||||
struct TaskSpawner {
|
||||
executor: TaskExecutor,
|
||||
send_idle_on_drop: SendOnDrop,
|
||||
}
|
||||
|
||||
// This explicit `drop` is used to remind the programmer that this variable must
|
||||
// not be dropped until the worker is complete. Dropping it early will cause the
|
||||
// worker to be marked as "free" and cause an over-spawning of workers.
|
||||
drop(send_idle_on_drop);
|
||||
impl TaskSpawner {
|
||||
/// Spawn an async task, dropping the `SendOnDrop` after the task has completed.
|
||||
fn spawn_async(self, task: impl Future<Output = ()> + Send + 'static) {
|
||||
self.executor.spawn(
|
||||
async {
|
||||
task.await;
|
||||
drop(self.send_idle_on_drop)
|
||||
},
|
||||
WORKER_TASK_NAME,
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
/// Spawn a blocking task, dropping the `SendOnDrop` after the task has completed.
|
||||
fn spawn_blocking<F>(self, task: F)
|
||||
where
|
||||
F: FnOnce() + Send + 'static,
|
||||
{
|
||||
self.executor.spawn_blocking(
|
||||
|| {
|
||||
task();
|
||||
drop(self.send_idle_on_drop)
|
||||
},
|
||||
WORKER_TASK_NAME,
|
||||
)
|
||||
}
|
||||
|
||||
/// Spawn a blocking task, passing the `SendOnDrop` into the task.
|
||||
///
|
||||
/// ## Notes
|
||||
///
|
||||
/// Users must ensure the `SendOnDrop` is dropped at the appropriate time!
|
||||
pub fn spawn_blocking_with_manual_send_idle<F>(self, task: F)
|
||||
where
|
||||
F: FnOnce(SendOnDrop) + Send + 'static,
|
||||
{
|
||||
self.executor.spawn_blocking(
|
||||
|| {
|
||||
task(self.send_idle_on_drop);
|
||||
},
|
||||
WORKER_TASK_NAME,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1618,6 +1675,8 @@ impl<T: BeaconChainTypes> BeaconProcessor<T> {
|
||||
/// https://doc.rust-lang.org/std/ops/trait.Drop.html#panics
|
||||
pub struct SendOnDrop {
|
||||
tx: mpsc::Sender<()>,
|
||||
// The field is unused, but it's here to ensure the timer is dropped once the task has finished.
|
||||
_worker_timer: Option<metrics::HistogramTimer>,
|
||||
log: Logger,
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@ use beacon_chain::test_utils::{
|
||||
AttestationStrategy, BeaconChainHarness, BlockStrategy, EphemeralHarnessType,
|
||||
};
|
||||
use beacon_chain::{BeaconChain, MAXIMUM_GOSSIP_CLOCK_DISPARITY};
|
||||
use environment::{null_logger, Environment, EnvironmentBuilder};
|
||||
use lighthouse_network::{
|
||||
discv5::enr::{CombinedKey, EnrBuilder},
|
||||
rpc::methods::{MetaData, MetaDataV2},
|
||||
@@ -20,7 +19,6 @@ use std::cmp;
|
||||
use std::iter::Iterator;
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
use tokio::runtime::Handle;
|
||||
use tokio::sync::mpsc;
|
||||
use types::{
|
||||
Attestation, AttesterSlashing, EthSpec, MainnetEthSpec, ProposerSlashing, SignedBeaconBlock,
|
||||
@@ -45,7 +43,7 @@ const STANDARD_TIMEOUT: Duration = Duration::from_secs(10);
|
||||
/// Provides utilities for testing the `BeaconProcessor`.
|
||||
struct TestRig {
|
||||
chain: Arc<BeaconChain<T>>,
|
||||
next_block: SignedBeaconBlock<E>,
|
||||
next_block: Arc<SignedBeaconBlock<E>>,
|
||||
attestations: Vec<(Attestation<E>, SubnetId)>,
|
||||
next_block_attestations: Vec<(Attestation<E>, SubnetId)>,
|
||||
next_block_aggregate_attestations: Vec<SignedAggregateAndProof<E>>,
|
||||
@@ -56,7 +54,7 @@ struct TestRig {
|
||||
work_journal_rx: mpsc::Receiver<&'static str>,
|
||||
_network_rx: mpsc::UnboundedReceiver<NetworkMessage<E>>,
|
||||
_sync_rx: mpsc::UnboundedReceiver<SyncMessage<E>>,
|
||||
environment: Option<Environment<E>>,
|
||||
_harness: BeaconChainHarness<T>,
|
||||
}
|
||||
|
||||
/// This custom drop implementation ensures that we shut down the tokio runtime gracefully. Without
|
||||
@@ -65,12 +63,11 @@ impl Drop for TestRig {
|
||||
fn drop(&mut self) {
|
||||
// Causes the beacon processor to shutdown.
|
||||
self.beacon_processor_tx = mpsc::channel(MAX_WORK_EVENT_QUEUE_LEN).0;
|
||||
self.environment.take().unwrap().shutdown_on_idle();
|
||||
}
|
||||
}
|
||||
|
||||
impl TestRig {
|
||||
pub fn new(chain_length: u64) -> Self {
|
||||
pub async fn new(chain_length: u64) -> Self {
|
||||
// This allows for testing voluntary exits without building out a massive chain.
|
||||
let mut spec = E::default_spec();
|
||||
spec.shard_committee_period = 2;
|
||||
@@ -84,16 +81,18 @@ impl TestRig {
|
||||
harness.advance_slot();
|
||||
|
||||
for _ in 0..chain_length {
|
||||
harness.extend_chain(
|
||||
1,
|
||||
BlockStrategy::OnCanonicalHead,
|
||||
AttestationStrategy::AllValidators,
|
||||
);
|
||||
harness
|
||||
.extend_chain(
|
||||
1,
|
||||
BlockStrategy::OnCanonicalHead,
|
||||
AttestationStrategy::AllValidators,
|
||||
)
|
||||
.await;
|
||||
|
||||
harness.advance_slot();
|
||||
}
|
||||
|
||||
let head = harness.chain.head().unwrap();
|
||||
let head = harness.chain.head_snapshot();
|
||||
|
||||
assert_eq!(
|
||||
harness.chain.slot().unwrap(),
|
||||
@@ -101,8 +100,9 @@ impl TestRig {
|
||||
"precondition: current slot is one after head"
|
||||
);
|
||||
|
||||
let (next_block, next_state) =
|
||||
harness.make_block(head.beacon_state.clone(), harness.chain.slot().unwrap());
|
||||
let (next_block, next_state) = harness
|
||||
.make_block(head.beacon_state.clone(), harness.chain.slot().unwrap())
|
||||
.await;
|
||||
|
||||
let head_state_root = head.beacon_state_root();
|
||||
let attestations = harness
|
||||
@@ -155,11 +155,11 @@ impl TestRig {
|
||||
let proposer_slashing = harness.make_proposer_slashing(2);
|
||||
let voluntary_exit = harness.make_voluntary_exit(3, harness.chain.epoch().unwrap());
|
||||
|
||||
let chain = harness.chain;
|
||||
let chain = harness.chain.clone();
|
||||
|
||||
let (network_tx, _network_rx) = mpsc::unbounded_channel();
|
||||
|
||||
let log = null_logger().unwrap();
|
||||
let log = harness.logger().clone();
|
||||
|
||||
let (beacon_processor_tx, beacon_processor_rx) = mpsc::channel(MAX_WORK_EVENT_QUEUE_LEN);
|
||||
let (sync_tx, _sync_rx) = mpsc::unbounded_channel();
|
||||
@@ -181,15 +181,7 @@ impl TestRig {
|
||||
&log,
|
||||
));
|
||||
|
||||
let mut environment = EnvironmentBuilder::mainnet()
|
||||
.null_logger()
|
||||
.unwrap()
|
||||
.multi_threaded_tokio_runtime()
|
||||
.unwrap()
|
||||
.build()
|
||||
.unwrap();
|
||||
|
||||
let executor = environment.core_context().executor;
|
||||
let executor = harness.runtime.task_executor.clone();
|
||||
|
||||
let (work_journal_tx, work_journal_rx) = mpsc::channel(16_364);
|
||||
|
||||
@@ -208,7 +200,7 @@ impl TestRig {
|
||||
|
||||
Self {
|
||||
chain,
|
||||
next_block,
|
||||
next_block: Arc::new(next_block),
|
||||
attestations,
|
||||
next_block_attestations,
|
||||
next_block_aggregate_attestations,
|
||||
@@ -219,12 +211,16 @@ impl TestRig {
|
||||
work_journal_rx,
|
||||
_network_rx,
|
||||
_sync_rx,
|
||||
environment: Some(environment),
|
||||
_harness: harness,
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn recompute_head(&self) {
|
||||
self.chain.recompute_head_at_current_slot().await.unwrap()
|
||||
}
|
||||
|
||||
pub fn head_root(&self) -> Hash256 {
|
||||
self.chain.head().unwrap().beacon_block_root
|
||||
self.chain.head_snapshot().beacon_block_root
|
||||
}
|
||||
|
||||
pub fn enqueue_gossip_block(&self) {
|
||||
@@ -233,7 +229,7 @@ impl TestRig {
|
||||
junk_message_id(),
|
||||
junk_peer_id(),
|
||||
Client::default(),
|
||||
Box::new(self.next_block.clone()),
|
||||
self.next_block.clone(),
|
||||
Duration::from_secs(0),
|
||||
))
|
||||
.unwrap();
|
||||
@@ -241,7 +237,7 @@ impl TestRig {
|
||||
|
||||
pub fn enqueue_rpc_block(&self) {
|
||||
let event = WorkEvent::rpc_beacon_block(
|
||||
Box::new(self.next_block.clone()),
|
||||
self.next_block.clone(),
|
||||
std::time::Duration::default(),
|
||||
BlockProcessType::ParentLookup {
|
||||
chain_hash: Hash256::random(),
|
||||
@@ -324,28 +320,16 @@ impl TestRig {
|
||||
.unwrap();
|
||||
}
|
||||
|
||||
fn handle(&mut self) -> Handle {
|
||||
self.environment
|
||||
.as_mut()
|
||||
.unwrap()
|
||||
.core_context()
|
||||
.executor
|
||||
.handle()
|
||||
.unwrap()
|
||||
}
|
||||
|
||||
/// Assert that the `BeaconProcessor` doesn't produce any events in the given `duration`.
|
||||
pub fn assert_no_events_for(&mut self, duration: Duration) {
|
||||
self.handle().block_on(async {
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(duration) => (),
|
||||
event = self.work_journal_rx.recv() => panic!(
|
||||
"received {:?} within {:?} when expecting no events",
|
||||
event,
|
||||
duration
|
||||
),
|
||||
}
|
||||
})
|
||||
pub async fn assert_no_events_for(&mut self, duration: Duration) {
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(duration) => (),
|
||||
event = self.work_journal_rx.recv() => panic!(
|
||||
"received {:?} within {:?} when expecting no events",
|
||||
event,
|
||||
duration
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
/// Checks that the `BeaconProcessor` event journal contains the `expected` events in the given
|
||||
@@ -354,57 +338,54 @@ impl TestRig {
|
||||
///
|
||||
/// Given the described logic, `expected` must not contain `WORKER_FREED` or `NOTHING_TO_DO`
|
||||
/// events.
|
||||
pub fn assert_event_journal_contains_ordered(&mut self, expected: &[&str]) {
|
||||
pub async fn assert_event_journal_contains_ordered(&mut self, expected: &[&str]) {
|
||||
assert!(expected
|
||||
.iter()
|
||||
.all(|ev| ev != &WORKER_FREED && ev != &NOTHING_TO_DO));
|
||||
|
||||
let (events, worker_freed_remaining) = self.handle().block_on(async {
|
||||
let mut events = Vec::with_capacity(expected.len());
|
||||
let mut worker_freed_remaining = expected.len();
|
||||
let mut events = Vec::with_capacity(expected.len());
|
||||
let mut worker_freed_remaining = expected.len();
|
||||
|
||||
let drain_future = async {
|
||||
loop {
|
||||
match self.work_journal_rx.recv().await {
|
||||
Some(event) if event == WORKER_FREED => {
|
||||
worker_freed_remaining -= 1;
|
||||
if worker_freed_remaining == 0 {
|
||||
// Break when all expected events are finished.
|
||||
break;
|
||||
}
|
||||
let drain_future = async {
|
||||
loop {
|
||||
match self.work_journal_rx.recv().await {
|
||||
Some(event) if event == WORKER_FREED => {
|
||||
worker_freed_remaining -= 1;
|
||||
if worker_freed_remaining == 0 {
|
||||
// Break when all expected events are finished.
|
||||
break;
|
||||
}
|
||||
Some(event) if event == NOTHING_TO_DO => {
|
||||
// Ignore these.
|
||||
}
|
||||
Some(event) => {
|
||||
events.push(event);
|
||||
}
|
||||
None => break,
|
||||
}
|
||||
Some(event) if event == NOTHING_TO_DO => {
|
||||
// Ignore these.
|
||||
}
|
||||
Some(event) => {
|
||||
events.push(event);
|
||||
}
|
||||
None => break,
|
||||
}
|
||||
};
|
||||
|
||||
// Drain the expected number of events from the channel, or time out and give up.
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(STANDARD_TIMEOUT) => panic!(
|
||||
"Timeout ({:?}) expired waiting for events. Expected {:?} but got {:?} waiting for {} `WORKER_FREED` events.",
|
||||
STANDARD_TIMEOUT,
|
||||
expected,
|
||||
events,
|
||||
worker_freed_remaining,
|
||||
),
|
||||
_ = drain_future => {},
|
||||
}
|
||||
};
|
||||
|
||||
(events, worker_freed_remaining)
|
||||
});
|
||||
// Drain the expected number of events from the channel, or time out and give up.
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(STANDARD_TIMEOUT) => panic!(
|
||||
"Timeout ({:?}) expired waiting for events. Expected {:?} but got {:?} waiting for {} `WORKER_FREED` events.",
|
||||
STANDARD_TIMEOUT,
|
||||
expected,
|
||||
events,
|
||||
worker_freed_remaining,
|
||||
),
|
||||
_ = drain_future => {},
|
||||
}
|
||||
|
||||
assert_eq!(events, expected);
|
||||
assert_eq!(worker_freed_remaining, 0);
|
||||
}
|
||||
|
||||
pub fn assert_event_journal(&mut self, expected: &[&str]) {
|
||||
self.assert_event_journal_with_timeout(expected, STANDARD_TIMEOUT);
|
||||
pub async fn assert_event_journal(&mut self, expected: &[&str]) {
|
||||
self.assert_event_journal_with_timeout(expected, STANDARD_TIMEOUT)
|
||||
.await
|
||||
}
|
||||
|
||||
/// Assert that the `BeaconProcessor` event journal is as `expected`.
|
||||
@@ -413,34 +394,34 @@ impl TestRig {
|
||||
///
|
||||
/// We won't attempt to listen for any more than `expected.len()` events. As such, it makes sense
|
||||
/// to use the `NOTHING_TO_DO` event to ensure that execution has completed.
|
||||
pub fn assert_event_journal_with_timeout(&mut self, expected: &[&str], timeout: Duration) {
|
||||
let events = self.handle().block_on(async {
|
||||
let mut events = Vec::with_capacity(expected.len());
|
||||
pub async fn assert_event_journal_with_timeout(
|
||||
&mut self,
|
||||
expected: &[&str],
|
||||
timeout: Duration,
|
||||
) {
|
||||
let mut events = Vec::with_capacity(expected.len());
|
||||
|
||||
let drain_future = async {
|
||||
while let Some(event) = self.work_journal_rx.recv().await {
|
||||
events.push(event);
|
||||
let drain_future = async {
|
||||
while let Some(event) = self.work_journal_rx.recv().await {
|
||||
events.push(event);
|
||||
|
||||
// Break as soon as we collect the desired number of events.
|
||||
if events.len() >= expected.len() {
|
||||
break;
|
||||
}
|
||||
// Break as soon as we collect the desired number of events.
|
||||
if events.len() >= expected.len() {
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
// Drain the expected number of events from the channel, or time out and give up.
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(timeout) => panic!(
|
||||
"Timeout ({:?}) expired waiting for events. Expected {:?} but got {:?}",
|
||||
timeout,
|
||||
expected,
|
||||
events
|
||||
),
|
||||
_ = drain_future => {},
|
||||
}
|
||||
};
|
||||
|
||||
events
|
||||
});
|
||||
// Drain the expected number of events from the channel, or time out and give up.
|
||||
tokio::select! {
|
||||
_ = tokio::time::sleep(timeout) => panic!(
|
||||
"Timeout ({:?}) expired waiting for events. Expected {:?} but got {:?}",
|
||||
timeout,
|
||||
expected,
|
||||
events
|
||||
),
|
||||
_ = drain_future => {},
|
||||
}
|
||||
|
||||
assert_eq!(events, expected);
|
||||
}
|
||||
@@ -455,9 +436,9 @@ fn junk_message_id() -> MessageId {
|
||||
}
|
||||
|
||||
/// Blocks that arrive early should be queued for later processing.
|
||||
#[test]
|
||||
fn import_gossip_block_acceptably_early() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn import_gossip_block_acceptably_early() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
let slot_start = rig
|
||||
.chain
|
||||
@@ -477,7 +458,8 @@ fn import_gossip_block_acceptably_early() {
|
||||
|
||||
rig.enqueue_gossip_block();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
// Note: this section of the code is a bit race-y. We're assuming that we can set the slot clock
|
||||
// and check the head in the time between the block arrived early and when its due for
|
||||
@@ -492,7 +474,8 @@ fn import_gossip_block_acceptably_early() {
|
||||
"block not yet imported"
|
||||
);
|
||||
|
||||
rig.assert_event_journal(&[DELAYED_IMPORT_BLOCK, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[DELAYED_IMPORT_BLOCK, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.head_root(),
|
||||
@@ -502,9 +485,9 @@ fn import_gossip_block_acceptably_early() {
|
||||
}
|
||||
|
||||
/// Blocks that are *too* early shouldn't get into the delay queue.
|
||||
#[test]
|
||||
fn import_gossip_block_unacceptably_early() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn import_gossip_block_unacceptably_early() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
let slot_start = rig
|
||||
.chain
|
||||
@@ -524,11 +507,12 @@ fn import_gossip_block_unacceptably_early() {
|
||||
|
||||
rig.enqueue_gossip_block();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
// Waiting for 5 seconds is a bit arbitrary, however it *should* be long enough to ensure the
|
||||
// block isn't imported.
|
||||
rig.assert_no_events_for(Duration::from_secs(5));
|
||||
rig.assert_no_events_for(Duration::from_secs(5)).await;
|
||||
|
||||
assert!(
|
||||
rig.head_root() != rig.next_block.canonical_root(),
|
||||
@@ -537,9 +521,9 @@ fn import_gossip_block_unacceptably_early() {
|
||||
}
|
||||
|
||||
/// Blocks that arrive on-time should be processed normally.
|
||||
#[test]
|
||||
fn import_gossip_block_at_current_slot() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn import_gossip_block_at_current_slot() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.slot().unwrap(),
|
||||
@@ -549,7 +533,8 @@ fn import_gossip_block_at_current_slot() {
|
||||
|
||||
rig.enqueue_gossip_block();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_BLOCK, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.head_root(),
|
||||
@@ -559,15 +544,16 @@ fn import_gossip_block_at_current_slot() {
|
||||
}
|
||||
|
||||
/// Ensure a valid attestation can be imported.
|
||||
#[test]
|
||||
fn import_gossip_attestation() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn import_gossip_attestation() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
let initial_attns = rig.chain.naive_aggregation_pool.read().num_items();
|
||||
|
||||
rig.enqueue_unaggregated_attestation();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.naive_aggregation_pool.read().num_items(),
|
||||
@@ -583,8 +569,8 @@ enum BlockImportMethod {
|
||||
|
||||
/// Ensure that attestations that reference an unknown block get properly re-queued and
|
||||
/// re-processed upon importing the block.
|
||||
fn attestation_to_unknown_block_processed(import_method: BlockImportMethod) {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
async fn attestation_to_unknown_block_processed(import_method: BlockImportMethod) {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
// Send the attestation but not the block, and check that it was not imported.
|
||||
|
||||
@@ -592,7 +578,8 @@ fn attestation_to_unknown_block_processed(import_method: BlockImportMethod) {
|
||||
|
||||
rig.enqueue_next_block_unaggregated_attestation();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.naive_aggregation_pool.read().num_items(),
|
||||
@@ -613,11 +600,12 @@ fn attestation_to_unknown_block_processed(import_method: BlockImportMethod) {
|
||||
}
|
||||
};
|
||||
|
||||
rig.assert_event_journal_contains_ordered(&[block_event, UNKNOWN_BLOCK_ATTESTATION]);
|
||||
rig.assert_event_journal_contains_ordered(&[block_event, UNKNOWN_BLOCK_ATTESTATION])
|
||||
.await;
|
||||
|
||||
// Run fork choice, since it isn't run when processing an RPC block. At runtime it is the
|
||||
// responsibility of the sync manager to do this.
|
||||
rig.chain.fork_choice().unwrap();
|
||||
rig.recompute_head().await;
|
||||
|
||||
assert_eq!(
|
||||
rig.head_root(),
|
||||
@@ -632,20 +620,20 @@ fn attestation_to_unknown_block_processed(import_method: BlockImportMethod) {
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn attestation_to_unknown_block_processed_after_gossip_block() {
|
||||
attestation_to_unknown_block_processed(BlockImportMethod::Gossip)
|
||||
#[tokio::test]
|
||||
async fn attestation_to_unknown_block_processed_after_gossip_block() {
|
||||
attestation_to_unknown_block_processed(BlockImportMethod::Gossip).await
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn attestation_to_unknown_block_processed_after_rpc_block() {
|
||||
attestation_to_unknown_block_processed(BlockImportMethod::Rpc)
|
||||
#[tokio::test]
|
||||
async fn attestation_to_unknown_block_processed_after_rpc_block() {
|
||||
attestation_to_unknown_block_processed(BlockImportMethod::Rpc).await
|
||||
}
|
||||
|
||||
/// Ensure that attestations that reference an unknown block get properly re-queued and
|
||||
/// re-processed upon importing the block.
|
||||
fn aggregate_attestation_to_unknown_block(import_method: BlockImportMethod) {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
async fn aggregate_attestation_to_unknown_block(import_method: BlockImportMethod) {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
// Empty the op pool.
|
||||
rig.chain
|
||||
@@ -659,7 +647,8 @@ fn aggregate_attestation_to_unknown_block(import_method: BlockImportMethod) {
|
||||
|
||||
rig.enqueue_next_block_aggregated_attestation();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_AGGREGATE, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_AGGREGATE, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.op_pool.num_attestations(),
|
||||
@@ -680,11 +669,12 @@ fn aggregate_attestation_to_unknown_block(import_method: BlockImportMethod) {
|
||||
}
|
||||
};
|
||||
|
||||
rig.assert_event_journal_contains_ordered(&[block_event, UNKNOWN_BLOCK_AGGREGATE]);
|
||||
rig.assert_event_journal_contains_ordered(&[block_event, UNKNOWN_BLOCK_AGGREGATE])
|
||||
.await;
|
||||
|
||||
// Run fork choice, since it isn't run when processing an RPC block. At runtime it is the
|
||||
// responsibility of the sync manager to do this.
|
||||
rig.chain.fork_choice().unwrap();
|
||||
rig.recompute_head().await;
|
||||
|
||||
assert_eq!(
|
||||
rig.head_root(),
|
||||
@@ -699,21 +689,21 @@ fn aggregate_attestation_to_unknown_block(import_method: BlockImportMethod) {
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn aggregate_attestation_to_unknown_block_processed_after_gossip_block() {
|
||||
aggregate_attestation_to_unknown_block(BlockImportMethod::Gossip)
|
||||
#[tokio::test]
|
||||
async fn aggregate_attestation_to_unknown_block_processed_after_gossip_block() {
|
||||
aggregate_attestation_to_unknown_block(BlockImportMethod::Gossip).await
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn aggregate_attestation_to_unknown_block_processed_after_rpc_block() {
|
||||
aggregate_attestation_to_unknown_block(BlockImportMethod::Rpc)
|
||||
#[tokio::test]
|
||||
async fn aggregate_attestation_to_unknown_block_processed_after_rpc_block() {
|
||||
aggregate_attestation_to_unknown_block(BlockImportMethod::Rpc).await
|
||||
}
|
||||
|
||||
/// Ensure that attestations that reference an unknown block get properly re-queued and re-processed
|
||||
/// when the block is not seen.
|
||||
#[test]
|
||||
fn requeue_unknown_block_gossip_attestation_without_import() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn requeue_unknown_block_gossip_attestation_without_import() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
// Send the attestation but not the block, and check that it was not imported.
|
||||
|
||||
@@ -721,7 +711,8 @@ fn requeue_unknown_block_gossip_attestation_without_import() {
|
||||
|
||||
rig.enqueue_next_block_unaggregated_attestation();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTATION, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.naive_aggregation_pool.read().num_items(),
|
||||
@@ -734,7 +725,8 @@ fn requeue_unknown_block_gossip_attestation_without_import() {
|
||||
rig.assert_event_journal_with_timeout(
|
||||
&[UNKNOWN_BLOCK_ATTESTATION, WORKER_FREED, NOTHING_TO_DO],
|
||||
Duration::from_secs(1) + QUEUED_ATTESTATION_DELAY,
|
||||
);
|
||||
)
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.naive_aggregation_pool.read().num_items(),
|
||||
@@ -745,9 +737,9 @@ fn requeue_unknown_block_gossip_attestation_without_import() {
|
||||
|
||||
/// Ensure that aggregate that reference an unknown block get properly re-queued and re-processed
|
||||
/// when the block is not seen.
|
||||
#[test]
|
||||
fn requeue_unknown_block_gossip_aggregated_attestation_without_import() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN);
|
||||
#[tokio::test]
|
||||
async fn requeue_unknown_block_gossip_aggregated_attestation_without_import() {
|
||||
let mut rig = TestRig::new(SMALL_CHAIN).await;
|
||||
|
||||
// Send the attestation but not the block, and check that it was not imported.
|
||||
|
||||
@@ -755,7 +747,8 @@ fn requeue_unknown_block_gossip_aggregated_attestation_without_import() {
|
||||
|
||||
rig.enqueue_next_block_aggregated_attestation();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_AGGREGATE, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_AGGREGATE, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.naive_aggregation_pool.read().num_items(),
|
||||
@@ -768,7 +761,8 @@ fn requeue_unknown_block_gossip_aggregated_attestation_without_import() {
|
||||
rig.assert_event_journal_with_timeout(
|
||||
&[UNKNOWN_BLOCK_AGGREGATE, WORKER_FREED, NOTHING_TO_DO],
|
||||
Duration::from_secs(1) + QUEUED_ATTESTATION_DELAY,
|
||||
);
|
||||
)
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.op_pool.num_attestations(),
|
||||
@@ -778,10 +772,10 @@ fn requeue_unknown_block_gossip_aggregated_attestation_without_import() {
|
||||
}
|
||||
|
||||
/// Ensure a bunch of valid operations can be imported.
|
||||
#[test]
|
||||
fn import_misc_gossip_ops() {
|
||||
#[tokio::test]
|
||||
async fn import_misc_gossip_ops() {
|
||||
// Exits need the long chain so validators aren't too young to exit.
|
||||
let mut rig = TestRig::new(LONG_CHAIN);
|
||||
let mut rig = TestRig::new(LONG_CHAIN).await;
|
||||
|
||||
/*
|
||||
* Attester slashing
|
||||
@@ -791,7 +785,8 @@ fn import_misc_gossip_ops() {
|
||||
|
||||
rig.enqueue_gossip_attester_slashing();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTER_SLASHING, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_ATTESTER_SLASHING, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.op_pool.num_attester_slashings(),
|
||||
@@ -807,7 +802,8 @@ fn import_misc_gossip_ops() {
|
||||
|
||||
rig.enqueue_gossip_proposer_slashing();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_PROPOSER_SLASHING, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_PROPOSER_SLASHING, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.op_pool.num_proposer_slashings(),
|
||||
@@ -823,7 +819,8 @@ fn import_misc_gossip_ops() {
|
||||
|
||||
rig.enqueue_gossip_voluntary_exit();
|
||||
|
||||
rig.assert_event_journal(&[GOSSIP_VOLUNTARY_EXIT, WORKER_FREED, NOTHING_TO_DO]);
|
||||
rig.assert_event_journal(&[GOSSIP_VOLUNTARY_EXIT, WORKER_FREED, NOTHING_TO_DO])
|
||||
.await;
|
||||
|
||||
assert_eq!(
|
||||
rig.chain.op_pool.num_voluntary_exits(),
|
||||
|
||||
@@ -13,6 +13,7 @@ use lighthouse_network::{Client, MessageAcceptance, MessageId, PeerAction, PeerI
|
||||
use slog::{crit, debug, error, info, trace, warn};
|
||||
use slot_clock::SlotClock;
|
||||
use ssz::Encode;
|
||||
use std::sync::Arc;
|
||||
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
||||
use store::hot_cold_store::HotColdDBError;
|
||||
use tokio::sync::mpsc;
|
||||
@@ -636,24 +637,27 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
///
|
||||
/// Raises a log if there are errors.
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn process_gossip_block(
|
||||
pub async fn process_gossip_block(
|
||||
self,
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
peer_client: Client,
|
||||
block: SignedBeaconBlock<T::EthSpec>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
reprocess_tx: mpsc::Sender<ReprocessQueueMessage<T>>,
|
||||
duplicate_cache: DuplicateCache,
|
||||
seen_duration: Duration,
|
||||
) {
|
||||
if let Some(gossip_verified_block) = self.process_gossip_unverified_block(
|
||||
message_id,
|
||||
peer_id,
|
||||
peer_client,
|
||||
block,
|
||||
reprocess_tx.clone(),
|
||||
seen_duration,
|
||||
) {
|
||||
if let Some(gossip_verified_block) = self
|
||||
.process_gossip_unverified_block(
|
||||
message_id,
|
||||
peer_id,
|
||||
peer_client,
|
||||
block,
|
||||
reprocess_tx.clone(),
|
||||
seen_duration,
|
||||
)
|
||||
.await
|
||||
{
|
||||
let block_root = gossip_verified_block.block_root;
|
||||
if let Some(handle) = duplicate_cache.check_and_insert(block_root) {
|
||||
self.process_gossip_verified_block(
|
||||
@@ -661,7 +665,8 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
gossip_verified_block,
|
||||
reprocess_tx,
|
||||
seen_duration,
|
||||
);
|
||||
)
|
||||
.await;
|
||||
// Drop the handle to remove the entry from the cache
|
||||
drop(handle);
|
||||
} else {
|
||||
@@ -678,12 +683,12 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
/// if it passes gossip propagation criteria, tell the network thread to forward it.
|
||||
///
|
||||
/// Returns the `GossipVerifiedBlock` if verification passes and raises a log if there are errors.
|
||||
pub fn process_gossip_unverified_block(
|
||||
pub async fn process_gossip_unverified_block(
|
||||
&self,
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
peer_client: Client,
|
||||
block: SignedBeaconBlock<T::EthSpec>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
reprocess_tx: mpsc::Sender<ReprocessQueueMessage<T>>,
|
||||
seen_duration: Duration,
|
||||
) -> Option<GossipVerifiedBlock<T>> {
|
||||
@@ -704,7 +709,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
Some(peer_client.to_string()),
|
||||
);
|
||||
|
||||
let verified_block = match self.chain.verify_block_for_gossip(block) {
|
||||
let verified_block = match self.chain.clone().verify_block_for_gossip(block).await {
|
||||
Ok(verified_block) => {
|
||||
if block_delay >= self.chain.slot_clock.unagg_attestation_production_delay() {
|
||||
metrics::inc_counter(&metrics::BEACON_BLOCK_GOSSIP_ARRIVED_LATE_TOTAL);
|
||||
@@ -887,7 +892,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
/// Process the beacon block that has already passed gossip verification.
|
||||
///
|
||||
/// Raises a log if there are errors.
|
||||
pub fn process_gossip_verified_block(
|
||||
pub async fn process_gossip_verified_block(
|
||||
self,
|
||||
peer_id: PeerId,
|
||||
verified_block: GossipVerifiedBlock<T>,
|
||||
@@ -895,9 +900,9 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
// This value is not used presently, but it might come in handy for debugging.
|
||||
_seen_duration: Duration,
|
||||
) {
|
||||
let block = Box::new(verified_block.block.clone());
|
||||
let block: Arc<_> = verified_block.block.clone();
|
||||
|
||||
match self.chain.process_block(verified_block) {
|
||||
match self.chain.process_block(verified_block).await {
|
||||
Ok(block_root) => {
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_GOSSIP_BLOCK_IMPORTED_TOTAL);
|
||||
|
||||
@@ -913,24 +918,27 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
)
|
||||
};
|
||||
|
||||
trace!(
|
||||
debug!(
|
||||
self.log,
|
||||
"Gossipsub block processed";
|
||||
"block" => ?block_root,
|
||||
"peer_id" => %peer_id
|
||||
);
|
||||
|
||||
match self.chain.fork_choice() {
|
||||
Ok(()) => trace!(
|
||||
self.log,
|
||||
"Fork choice success";
|
||||
"location" => "block gossip"
|
||||
),
|
||||
Err(e) => error!(
|
||||
if let Err(e) = self.chain.recompute_head_at_current_slot().await {
|
||||
error!(
|
||||
self.log,
|
||||
"Fork choice failed";
|
||||
"error" => ?e,
|
||||
"location" => "block gossip"
|
||||
),
|
||||
"location" => "block_gossip"
|
||||
)
|
||||
} else {
|
||||
debug!(
|
||||
self.log,
|
||||
"Fork choice success";
|
||||
"block" => ?block_root,
|
||||
"location" => "block_gossip"
|
||||
)
|
||||
}
|
||||
}
|
||||
Err(BlockError::ParentUnknown { .. }) => {
|
||||
@@ -1144,13 +1152,9 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
.read()
|
||||
.register_gossip_attester_slashing(slashing.as_inner());
|
||||
|
||||
if let Err(e) = self.chain.import_attester_slashing(slashing) {
|
||||
debug!(self.log, "Error importing attester slashing"; "error" => ?e);
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_ATTESTER_SLASHING_ERROR_TOTAL);
|
||||
} else {
|
||||
debug!(self.log, "Successfully imported attester slashing");
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_ATTESTER_SLASHING_IMPORTED_TOTAL);
|
||||
}
|
||||
self.chain.import_attester_slashing(slashing);
|
||||
debug!(self.log, "Successfully imported attester slashing");
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_ATTESTER_SLASHING_IMPORTED_TOTAL);
|
||||
}
|
||||
|
||||
/// Process the sync committee signature received from the gossip network and:
|
||||
|
||||
@@ -9,6 +9,7 @@ use lighthouse_network::rpc::*;
|
||||
use lighthouse_network::{PeerId, PeerRequestId, ReportSource, Response, SyncInfo};
|
||||
use slog::{debug, error};
|
||||
use slot_clock::SlotClock;
|
||||
use std::sync::Arc;
|
||||
use task_executor::TaskExecutor;
|
||||
use types::{Epoch, EthSpec, Hash256, Slot};
|
||||
|
||||
@@ -62,7 +63,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
&self,
|
||||
remote: &StatusMessage,
|
||||
) -> Result<Option<String>, BeaconChainError> {
|
||||
let local = self.chain.status_message()?;
|
||||
let local = self.chain.status_message();
|
||||
let start_slot = |epoch: Epoch| epoch.start_slot(T::EthSpec::slots_per_epoch());
|
||||
|
||||
let irrelevant_reason = if local.fork_digest != remote.fork_digest {
|
||||
@@ -143,7 +144,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
Ok(Some(block)) => {
|
||||
self.send_response(
|
||||
peer_id,
|
||||
Response::BlocksByRoot(Some(Box::new(block))),
|
||||
Response::BlocksByRoot(Some(block)),
|
||||
request_id,
|
||||
);
|
||||
send_block_count += 1;
|
||||
@@ -266,7 +267,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
blocks_sent += 1;
|
||||
self.send_network_message(NetworkMessage::SendResponse {
|
||||
peer_id,
|
||||
response: Response::BlocksByRange(Some(Box::new(block))),
|
||||
response: Response::BlocksByRange(Some(Arc::new(block))),
|
||||
id: request_id,
|
||||
});
|
||||
}
|
||||
|
||||
@@ -11,7 +11,8 @@ use beacon_chain::{
|
||||
BeaconChainError, BeaconChainTypes, BlockError, ChainSegmentResult, HistoricalBlockError,
|
||||
};
|
||||
use lighthouse_network::PeerAction;
|
||||
use slog::{debug, error, info, trace, warn};
|
||||
use slog::{debug, error, info, warn};
|
||||
use std::sync::Arc;
|
||||
use tokio::sync::mpsc;
|
||||
use types::{Epoch, Hash256, SignedBeaconBlock};
|
||||
|
||||
@@ -45,9 +46,9 @@ pub enum FailureMode {
|
||||
|
||||
impl<T: BeaconChainTypes> Worker<T> {
|
||||
/// Attempt to process a block received from a direct RPC request.
|
||||
pub fn process_rpc_block(
|
||||
pub async fn process_rpc_block(
|
||||
self,
|
||||
block: SignedBeaconBlock<T::EthSpec>,
|
||||
block: Arc<SignedBeaconBlock<T::EthSpec>>,
|
||||
seen_timestamp: Duration,
|
||||
process_type: BlockProcessType,
|
||||
reprocess_tx: mpsc::Sender<ReprocessQueueMessage<T>>,
|
||||
@@ -66,7 +67,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
}
|
||||
};
|
||||
let slot = block.slot();
|
||||
let result = self.chain.process_block(block);
|
||||
let result = self.chain.process_block(block).await;
|
||||
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_RPC_BLOCK_IMPORTED_TOTAL);
|
||||
|
||||
@@ -87,7 +88,8 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
None,
|
||||
None,
|
||||
);
|
||||
self.run_fork_choice()
|
||||
|
||||
self.recompute_head("process_rpc_block").await;
|
||||
}
|
||||
}
|
||||
// Sync handles these results
|
||||
@@ -102,10 +104,10 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
|
||||
/// Attempt to import the chain segment (`blocks`) to the beacon chain, informing the sync
|
||||
/// thread if more blocks are needed to process it.
|
||||
pub fn process_chain_segment(
|
||||
pub async fn process_chain_segment(
|
||||
&self,
|
||||
sync_type: ChainSegmentProcessId,
|
||||
downloaded_blocks: Vec<SignedBeaconBlock<T::EthSpec>>,
|
||||
downloaded_blocks: Vec<Arc<SignedBeaconBlock<T::EthSpec>>>,
|
||||
) {
|
||||
let result = match sync_type {
|
||||
// this a request from the range sync
|
||||
@@ -114,7 +116,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
let end_slot = downloaded_blocks.last().map(|b| b.slot().as_u64());
|
||||
let sent_blocks = downloaded_blocks.len();
|
||||
|
||||
match self.process_blocks(downloaded_blocks.iter()) {
|
||||
match self.process_blocks(downloaded_blocks.iter()).await {
|
||||
(_, Ok(_)) => {
|
||||
debug!(self.log, "Batch processed";
|
||||
"batch_epoch" => epoch,
|
||||
@@ -183,7 +185,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
);
|
||||
// parent blocks are ordered from highest slot to lowest, so we need to process in
|
||||
// reverse
|
||||
match self.process_blocks(downloaded_blocks.iter().rev()) {
|
||||
match self.process_blocks(downloaded_blocks.iter().rev()).await {
|
||||
(imported_blocks, Err(e)) => {
|
||||
debug!(self.log, "Parent lookup failed"; "error" => %e.message);
|
||||
BatchProcessResult::Failed {
|
||||
@@ -204,19 +206,17 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
}
|
||||
|
||||
/// Helper function to process blocks batches which only consumes the chain and blocks to process.
|
||||
fn process_blocks<'a>(
|
||||
async fn process_blocks<'a>(
|
||||
&self,
|
||||
downloaded_blocks: impl Iterator<Item = &'a SignedBeaconBlock<T::EthSpec>>,
|
||||
downloaded_blocks: impl Iterator<Item = &'a Arc<SignedBeaconBlock<T::EthSpec>>>,
|
||||
) -> (usize, Result<(), ChainSegmentFailed>) {
|
||||
let blocks = downloaded_blocks.cloned().collect::<Vec<_>>();
|
||||
match self.chain.process_chain_segment(blocks) {
|
||||
let blocks: Vec<Arc<_>> = downloaded_blocks.cloned().collect();
|
||||
match self.chain.process_chain_segment(blocks).await {
|
||||
ChainSegmentResult::Successful { imported_blocks } => {
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_CHAIN_SEGMENT_SUCCESS_TOTAL);
|
||||
if imported_blocks > 0 {
|
||||
// Batch completed successfully with at least one block, run fork choice.
|
||||
self.run_fork_choice();
|
||||
self.recompute_head("process_blocks_ok").await;
|
||||
}
|
||||
|
||||
(imported_blocks, Ok(()))
|
||||
}
|
||||
ChainSegmentResult::Failed {
|
||||
@@ -226,7 +226,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
metrics::inc_counter(&metrics::BEACON_PROCESSOR_CHAIN_SEGMENT_FAILED_TOTAL);
|
||||
let r = self.handle_failed_chain_segment(error);
|
||||
if imported_blocks > 0 {
|
||||
self.run_fork_choice();
|
||||
self.recompute_head("process_blocks_err").await;
|
||||
}
|
||||
(imported_blocks, r)
|
||||
}
|
||||
@@ -236,9 +236,13 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
/// Helper function to process backfill block batches which only consumes the chain and blocks to process.
|
||||
fn process_backfill_blocks(
|
||||
&self,
|
||||
blocks: Vec<SignedBeaconBlock<T::EthSpec>>,
|
||||
blocks: Vec<Arc<SignedBeaconBlock<T::EthSpec>>>,
|
||||
) -> (usize, Result<(), ChainSegmentFailed>) {
|
||||
let blinded_blocks = blocks.into_iter().map(Into::into).collect();
|
||||
let blinded_blocks = blocks
|
||||
.iter()
|
||||
.map(|full_block| full_block.clone_as_blinded())
|
||||
.map(Arc::new)
|
||||
.collect();
|
||||
match self.chain.import_historical_block_batch(blinded_blocks) {
|
||||
Ok(imported_blocks) => {
|
||||
metrics::inc_counter(
|
||||
@@ -357,18 +361,18 @@ impl<T: BeaconChainTypes> Worker<T> {
|
||||
|
||||
/// Runs fork-choice on a given chain. This is used during block processing after one successful
|
||||
/// block import.
|
||||
fn run_fork_choice(&self) {
|
||||
match self.chain.fork_choice() {
|
||||
Ok(()) => trace!(
|
||||
async fn recompute_head(&self, location: &str) {
|
||||
match self.chain.recompute_head_at_current_slot().await {
|
||||
Ok(()) => debug!(
|
||||
self.log,
|
||||
"Fork choice success";
|
||||
"location" => "batch processing"
|
||||
"location" => location
|
||||
),
|
||||
Err(e) => error!(
|
||||
self.log,
|
||||
"Fork choice failed";
|
||||
"error" => ?e,
|
||||
"location" => "batch import error"
|
||||
"location" => location
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user