mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-25 15:13:22 +00:00
Decentralized-sequencing foundation: a shared chain_state crate (two-tier head/final ChainState, apply_block, AcceptOutcome, StallReason, and the absorbed channel-consistency machinery), turn-gated block production, the publisher follow path for adopted/orphaned/finalized peer blocks, and persistence that keeps disk order equal to apply order under the chain lock. Rebased onto dev after #600/#606: chain_consistency is absorbed into chain_state, the sequencer bootstrap's verify_and_reconstruct is re-wired onto the two-tier ChainState (reconstruction applies channel history through the final tier and persists via the follow-path primitives), and test fixtures adopt the SequencerSetup builder extended with with_bedrock_signing_key. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
540 lines
23 KiB
Rust
540 lines
23 KiB
Rust
use std::{path::Path, sync::Arc};
|
|
|
|
use anyhow::Result;
|
|
use arc_swap::ArcSwap;
|
|
pub use chain_state::{AcceptOutcome, BlockIngestError, StallReason};
|
|
use chain_state::{Anchor, ChainConsistency};
|
|
use common::block::Block;
|
|
// TODO: Remove after testnet
|
|
use futures::StreamExt as _;
|
|
use log::{error, info, warn};
|
|
use logos_blockchain_zone_sdk::{
|
|
CommonHttpClient, Slot, ZoneMessage, adapter::NodeHttpClient, indexer::ZoneIndexer,
|
|
};
|
|
use retry::ApplyRetryGate;
|
|
|
|
use crate::{
|
|
block_store::IndexerStore,
|
|
config::IndexerConfig,
|
|
cross_zone_verifier::CrossZoneVerifier,
|
|
status::{IndexerStatus, IndexerSyncStatus},
|
|
};
|
|
|
|
pub mod block_store;
|
|
pub mod config;
|
|
pub mod cross_zone_verifier;
|
|
mod retry;
|
|
pub mod status;
|
|
|
|
/// Consecutive failed apply attempts of the same block before parking.
|
|
const APPLY_RETRY_LIMIT: u32 = 3;
|
|
|
|
#[derive(Clone)]
|
|
pub struct IndexerCore {
|
|
pub zone_indexer: Arc<ZoneIndexer<NodeHttpClient>>,
|
|
/// Direct node handle for queries outside `ZoneIndexer`'s streaming API.
|
|
pub node: NodeHttpClient,
|
|
pub config: IndexerConfig,
|
|
pub store: IndexerStore,
|
|
/// Live ingestion status; updated by the ingest stream, read by `status`.
|
|
pub status: Arc<ArcSwap<IndexerSyncStatus>>,
|
|
/// Option B cross-zone verifier; `None` when cross-zone messaging is disabled.
|
|
pub verifier: Option<CrossZoneVerifier>,
|
|
}
|
|
|
|
impl IndexerCore {
|
|
/// Builds the core, then verifies the stored chain matches the channel's by
|
|
/// re-reading the channel at the stored tip's position.
|
|
///
|
|
/// On mismatch: refuse (error) unless `config.allow_chain_reset` is set, in which case wipe the
|
|
/// store and re-index from scratch.
|
|
pub async fn new(config: IndexerConfig, storage_dir: &Path) -> Result<Self> {
|
|
let home = storage_dir.join(format!("rocksdb-{}", config.channel_id));
|
|
let core = Self::open(config.clone(), storage_dir)?;
|
|
match core.verify_chain_consistency().await? {
|
|
// `Inconclusive` is deliberately treated the same as `Consistent`.
|
|
//
|
|
// We could not prove a reset, so proceed from the cursor without wiping
|
|
// a possibly-valid store. A genuinely divergent chain is still caught
|
|
// later when the ingest loop tries to apply and parks.
|
|
ChainConsistency::Consistent | ChainConsistency::Inconclusive => Ok(core),
|
|
ChainConsistency::Inconsistent(mismatch) if config.allow_chain_reset => {
|
|
warn!(
|
|
"Chain reset detected ({mismatch}). Wiping indexer store at {} and \
|
|
re-indexing.",
|
|
home.display()
|
|
);
|
|
drop(core); // sole owner before the ingest task is spawned → closes the DB
|
|
storage::indexer::RocksDBIO::destroy(&home)?;
|
|
Self::open(config, storage_dir)
|
|
}
|
|
ChainConsistency::Inconsistent(mismatch) => Err(anyhow::anyhow!(
|
|
"Indexer store at {} holds a different chain than the channel now serves \
|
|
({mismatch}). Delete the indexer storage directory, point at a fresh one, or \
|
|
set `allow_chain_reset` in the indexer config.",
|
|
home.display()
|
|
)),
|
|
}
|
|
}
|
|
|
|
/// Opens the store and builds the core without the chain-identity check.
|
|
fn open(config: IndexerConfig, storage_dir: &Path) -> Result<Self> {
|
|
// Namespace the DB by channel so indexers on different channels can
|
|
// share a storage dir without their RocksDB state colliding.
|
|
let home = storage_dir.join(format!("rocksdb-{}", config.channel_id));
|
|
|
|
let basic_auth = config.bedrock_config.auth.clone().map(Into::into);
|
|
let node = NodeHttpClient::new(
|
|
CommonHttpClient::new(basic_auth),
|
|
config.bedrock_config.addr.clone(),
|
|
);
|
|
let zone_indexer = ZoneIndexer::new(config.channel_id, node.clone());
|
|
|
|
// Genesis accounts the indexer must seed to match the sequencer's state,
|
|
// since none are produced by a transaction: the cross-zone inbox config
|
|
// and any bridge-lock holdings. Both go through the same builders the
|
|
// sequencer uses, so the states are byte-identical.
|
|
let mut genesis_seed = Vec::new();
|
|
if let Some(cross_zone) = config.cross_zone.as_ref() {
|
|
let self_zone: [u8; 32] = *config.channel_id.as_ref();
|
|
genesis_seed.push(cross_zone::build_inbox_config_account(
|
|
self_zone, cross_zone,
|
|
));
|
|
}
|
|
for holding in &config.bridge_lock_holdings {
|
|
genesis_seed.push(cross_zone::build_holding_account(
|
|
holding.holder,
|
|
holding.amount,
|
|
));
|
|
}
|
|
|
|
// Option B verifier: re-derives each cross-zone dispatch from the peer's
|
|
// finalized blocks. `None` when cross-zone messaging is disabled.
|
|
let verifier = CrossZoneVerifier::start(&config);
|
|
|
|
Ok(Self {
|
|
zone_indexer: Arc::new(zone_indexer),
|
|
store: IndexerStore::open_db(&home, genesis_seed)?,
|
|
node,
|
|
config,
|
|
status: Arc::new(ArcSwap::from_pointee(IndexerSyncStatus::starting())),
|
|
verifier,
|
|
})
|
|
}
|
|
|
|
/// Verifies whether the channel still serves the same chain the store was built from.
|
|
/// This may change frequently during development where we reset the chain from time to
|
|
/// time in devnet/testnet, but we do not expect [`ChainConsistency::Inconsistent`] in
|
|
/// production.
|
|
///
|
|
/// To compare the chains, we use an [`Anchor`] block that is either the parked L2 block
|
|
/// while stalled, or the tip L2 block at its own inscription L1 slot.
|
|
pub(crate) async fn verify_chain_consistency(&self) -> Result<ChainConsistency> {
|
|
let Some(anchor) = self.get_startup_anchor()? else {
|
|
// empty or cold store: nothing to compare
|
|
return Ok(ChainConsistency::Inconclusive);
|
|
};
|
|
|
|
chain_state::verify_chain_consistency(&self.node, self.config.channel_id, &anchor).await
|
|
}
|
|
|
|
/// Builds the anchor for the startup check.
|
|
///
|
|
/// - If stalled, returns the recorded _parked_ block
|
|
/// - If not stalled, returns the validated tip at its _own_ inscription slot.
|
|
/// - If the store is empty, returns `None`.
|
|
fn get_startup_anchor(&self) -> Result<Option<Anchor>> {
|
|
if let Some(stall) = self.store.get_stall_reason()? {
|
|
return Ok(Some(Anchor::new(
|
|
stall.l1_slot,
|
|
stall.block_id.zip(stall.block_hash),
|
|
)));
|
|
}
|
|
|
|
// not stalled, so anchor on the tip at its own inscription slot
|
|
let Some(slot) = self
|
|
.store
|
|
.get_tip_slot()?
|
|
.map_or_else(|| self.store.get_zone_cursor(), |slot| Ok(Some(slot)))?
|
|
else {
|
|
return Ok(None);
|
|
};
|
|
let Some(tip_id) = self.store.get_last_block_id()? else {
|
|
return Ok(None);
|
|
};
|
|
let Some(tip) = self.store.get_block_at_id(tip_id)? else {
|
|
return Ok(None);
|
|
};
|
|
Ok(Some(Anchor::new(slot, Some((tip_id, tip.header.hash)))))
|
|
}
|
|
|
|
/// Snapshot of the current ingestion status (sync state + indexed tip).
|
|
///
|
|
/// Combines the ingest loop's live status with the L2 tip read fresh from the
|
|
/// store, so callers (FFI/RPC) can tell "catching up" from "failed".
|
|
#[must_use]
|
|
pub fn status(&self) -> IndexerStatus {
|
|
let sync = IndexerSyncStatus::clone(&self.status.load());
|
|
// Log-and-fall-back rather than collapsing a store error into the same
|
|
// `None` as "legitimately absent": a DB read failure must not silently
|
|
// masquerade as "no tip yet" / "no stall recorded" in the snapshot.
|
|
let indexed_block_id = match self.store.get_last_block_id() {
|
|
Ok(id) => id,
|
|
Err(err) => {
|
|
warn!("Failed to read last indexed block id for status: {err:#}");
|
|
None
|
|
}
|
|
};
|
|
let stall_reason = match self.store.get_stall_reason() {
|
|
Ok(reason) => reason,
|
|
Err(err) => {
|
|
warn!("Failed to read stall reason for status: {err:#}");
|
|
None
|
|
}
|
|
};
|
|
IndexerStatus {
|
|
sync,
|
|
indexed_block_id,
|
|
stall_reason,
|
|
}
|
|
}
|
|
|
|
/// Atomically publish a new ingestion status for readers of `status`.
|
|
fn set_status(&self, status: IndexerSyncStatus) {
|
|
self.status.store(Arc::new(status));
|
|
}
|
|
|
|
/// Advances the in-memory L1 read cursor past `slot` and persists it.
|
|
/// A persist failure is only logged: the worst case is re-reading a batch
|
|
/// after a restart, which ingestion handles idempotently.
|
|
fn advance_cursor(&self, cursor: &mut Option<Slot>, slot: Slot) {
|
|
*cursor = Some(slot);
|
|
if let Err(err) = self.store.set_zone_cursor(&slot) {
|
|
warn!("Failed to persist indexer cursor: {err:#}");
|
|
}
|
|
}
|
|
|
|
/// Parks on an inscription that could not be parsed as an L2 block:
|
|
/// records the stall and flips the status. The validated tip stays frozen.
|
|
///
|
|
/// Returns `false` if the stall could not be recorded durably; the caller
|
|
/// must then hold the cursor and retry instead of advancing past the slot.
|
|
fn park_undeserializable(&self, slot: Slot, error: std::io::Error) -> bool {
|
|
let error = anyhow::Error::new(error);
|
|
|
|
// use `:#` to get the entire error chain
|
|
let reason = format!("{error:#}");
|
|
error!("Failed to deserialize L2 block from zone-sdk: {reason}");
|
|
if let Err(err) =
|
|
self.store
|
|
.record_stall(None, slot, BlockIngestError::Deserialize(reason.clone()))
|
|
{
|
|
error!("Failed to record stall reason: {err:#}");
|
|
self.set_status(IndexerSyncStatus::error(format!("store error: {err:#}")));
|
|
return false;
|
|
}
|
|
self.set_status(IndexerSyncStatus::stalled(format!(
|
|
"failed to deserialize L2 block: {reason}"
|
|
)));
|
|
true
|
|
}
|
|
|
|
pub fn subscribe_parse_block_stream(&self) -> impl futures::Stream<Item = Result<Block>> + '_ {
|
|
let poll_interval = self.config.consensus_info_polling_interval;
|
|
let initial_cursor = self
|
|
.store
|
|
.get_zone_cursor()
|
|
.expect("Failed to load zone-sdk indexer cursor");
|
|
|
|
async_stream::stream! {
|
|
let mut cursor = initial_cursor;
|
|
let mut retry_gate = ApplyRetryGate::new();
|
|
|
|
if let Some(slot) = &cursor {
|
|
info!("Resuming indexer from cursor {slot:?}");
|
|
} else {
|
|
info!("Starting indexer from beginning of channel");
|
|
}
|
|
|
|
loop {
|
|
let stream = match self.zone_indexer.next_messages(cursor).await {
|
|
Ok(s) => s,
|
|
Err(err) => {
|
|
error!("Failed to start zone-sdk next_messages stream: {err}");
|
|
self.set_status(IndexerSyncStatus::error(format!(
|
|
"cannot reach L1 / read channel: {err}"
|
|
)));
|
|
tokio::time::sleep(poll_interval).await;
|
|
continue;
|
|
}
|
|
};
|
|
let mut stream = std::pin::pin!(stream);
|
|
|
|
let mut announced_syncing = false;
|
|
let mut had_cycle_error = false;
|
|
|
|
while let Some((msg, slot)) = stream.next().await {
|
|
if !announced_syncing {
|
|
self.set_status(IndexerSyncStatus::syncing());
|
|
announced_syncing = true;
|
|
}
|
|
|
|
let zone_block = match msg {
|
|
ZoneMessage::Block(b) => b,
|
|
// FIXME: will be handled in prep of decentralized sequencers
|
|
ZoneMessage::Deposit(_) | ZoneMessage::Withdraw(_) => continue,
|
|
};
|
|
|
|
let block: Block = match borsh::from_slice(&zone_block.data) {
|
|
Ok(b) => b,
|
|
Err(error) => {
|
|
// The stall must be durable before the cursor moves.
|
|
if !self.park_undeserializable(slot, error) {
|
|
had_cycle_error = true;
|
|
break;
|
|
}
|
|
// L1 proceeds regardless
|
|
self.advance_cursor(&mut cursor, slot);
|
|
continue;
|
|
}
|
|
};
|
|
|
|
// Option B: re-derive and verify every cross-zone dispatch
|
|
// before applying the block. A forged or replayed dispatch
|
|
// halts ingestion rather than persisting an invalid state.
|
|
if let Some(verifier) = &self.verifier
|
|
&& let Err(err) = verifier.verify_block(&block).await
|
|
{
|
|
error!(
|
|
"Cross-zone verification failed for block {}: {err:#}. Halting indexer ingestion.",
|
|
block.header.block_id
|
|
);
|
|
self.set_status(IndexerSyncStatus::error(format!(
|
|
"cross-zone verification failed: {err:#}"
|
|
)));
|
|
return;
|
|
}
|
|
|
|
match self.store.accept_block(&block, slot).await {
|
|
Ok(AcceptOutcome::Applied) => {
|
|
retry_gate.reset();
|
|
info!("Indexed L2 block {}", block.header.block_id);
|
|
self.set_status(IndexerSyncStatus::syncing());
|
|
self.advance_cursor(&mut cursor, slot);
|
|
yield Ok(block);
|
|
}
|
|
Ok(AcceptOutcome::AlreadyApplied) => {
|
|
info!(
|
|
"Skipping already-applied block {}",
|
|
block.header.block_id
|
|
);
|
|
self.advance_cursor(&mut cursor, slot);
|
|
}
|
|
Ok(AcceptOutcome::Parked(ingest_err)) => {
|
|
error!(
|
|
"Parked at block {}: {ingest_err}",
|
|
block.header.block_id
|
|
);
|
|
self.set_status(IndexerSyncStatus::stalled(ingest_err.to_string()));
|
|
// L1 proceeds regardless
|
|
self.advance_cursor(&mut cursor, slot);
|
|
}
|
|
Ok(AcceptOutcome::RetryableFailure(ingest_err)) => {
|
|
let attempts = retry_gate.register_failure(block.header.block_id);
|
|
if attempts >= APPLY_RETRY_LIMIT {
|
|
error!(
|
|
"Parked at block {} after {attempts} failed apply attempts: {ingest_err}",
|
|
block.header.block_id
|
|
);
|
|
// The stall must be durable before the cursor moves.
|
|
if let Err(err) = self.store.record_stall(
|
|
Some(&block.header),
|
|
slot,
|
|
ingest_err.clone(),
|
|
) {
|
|
error!(
|
|
"Failed to record stall reason for block {}: {err:#}",
|
|
block.header.block_id
|
|
);
|
|
self.set_status(IndexerSyncStatus::error(format!(
|
|
"store error: {err:#}"
|
|
)));
|
|
had_cycle_error = true;
|
|
break;
|
|
}
|
|
self.set_status(IndexerSyncStatus::stalled(ingest_err.to_string()));
|
|
self.advance_cursor(&mut cursor, slot);
|
|
retry_gate.reset();
|
|
} else {
|
|
error!(
|
|
"Failed to apply block {} (attempt {attempts}/{APPLY_RETRY_LIMIT}), will retry: {ingest_err}",
|
|
block.header.block_id
|
|
);
|
|
self.set_status(IndexerSyncStatus::error(format!(
|
|
"apply failed, retrying: {ingest_err}"
|
|
)));
|
|
had_cycle_error = true;
|
|
break;
|
|
}
|
|
}
|
|
Err(err) => {
|
|
// Infrastructure error (DB read/write), not a bad block.
|
|
// will re-poll from the same cursor next cycle.
|
|
error!(
|
|
"Store error applying block {}: {err:#}",
|
|
block.header.block_id
|
|
);
|
|
self.set_status(IndexerSyncStatus::error(format!(
|
|
"store error: {err:#}"
|
|
)));
|
|
had_cycle_error = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if had_cycle_error {
|
|
tokio::time::sleep(poll_interval).await;
|
|
continue;
|
|
}
|
|
|
|
// Stream drained. Stay Stalled if parked; otherwise we are caught up.
|
|
// A store error here must not be collapsed to "no stall recorded":
|
|
// that would wrongly flip us to caught-up, so we log and hold state.
|
|
match self.store.get_stall_reason() {
|
|
Ok(None) => self.set_status(IndexerSyncStatus::caught_up()),
|
|
Ok(Some(_)) => {}
|
|
Err(err) => {
|
|
warn!("Failed to read stall reason after draining stream; not marking caught up: {err:#}");
|
|
}
|
|
}
|
|
tokio::time::sleep(poll_interval).await;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::time::Duration;
|
|
|
|
use common::{HashType, block::HashableBlockData};
|
|
use logos_blockchain_zone_sdk::Slot;
|
|
|
|
use super::*;
|
|
use crate::config::{ChannelId, ClientConfig, IndexerConfig};
|
|
|
|
fn unreachable_core(dir: &std::path::Path) -> IndexerCore {
|
|
let config = IndexerConfig {
|
|
consensus_info_polling_interval: Duration::from_secs(1),
|
|
bedrock_config: ClientConfig {
|
|
addr: "http://localhost:1".parse().expect("url"),
|
|
auth: None,
|
|
},
|
|
channel_id: ChannelId::from([1; 32]),
|
|
allow_chain_reset: false,
|
|
cross_zone: None,
|
|
bridge_lock_holdings: Vec::new(),
|
|
};
|
|
IndexerCore::open(config, dir).expect("open core")
|
|
}
|
|
|
|
fn test_block(block_id: u64, timestamp: u64) -> Block {
|
|
HashableBlockData {
|
|
block_id,
|
|
prev_block_hash: HashType([0; 32]),
|
|
timestamp,
|
|
transactions: vec![],
|
|
}
|
|
.into_pending_block(&lee::PrivateKey::try_new([7; 32]).expect("valid key"))
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn cold_store_is_inconclusive() {
|
|
// An empty store has no cursor, so there is nothing to compare: the check
|
|
// must be Inconclusive (not Consistent), and it returns before any L1 read.
|
|
let dir = tempfile::tempdir().expect("tempdir");
|
|
let core = unreachable_core(dir.path());
|
|
assert!(matches!(
|
|
core.verify_chain_consistency().await.expect("verify"),
|
|
ChainConsistency::Inconclusive
|
|
));
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn parked_store_with_unreachable_node_is_inconclusive() {
|
|
// Network failure is not evidence of a reset: a parked store must stay
|
|
// parked (Inconclusive), not error out or trip the wipe path.
|
|
let dir = tempfile::tempdir().expect("tempdir");
|
|
let core = unreachable_core(dir.path());
|
|
let parked = test_block(5, 42);
|
|
core.store
|
|
.record_stall(
|
|
Some(&parked.header),
|
|
Slot::from(1_000),
|
|
BlockIngestError::EmptyBlock,
|
|
)
|
|
.expect("record stall");
|
|
assert!(matches!(
|
|
core.verify_chain_consistency().await.expect("verify"),
|
|
ChainConsistency::Inconclusive
|
|
));
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn caught_up_store_with_unreachable_node_is_inconclusive() {
|
|
let dir = tempfile::tempdir().expect("tempdir");
|
|
let core = unreachable_core(dir.path());
|
|
let genesis = common::test_utils::produce_dummy_block(1, None, vec![]);
|
|
assert!(matches!(
|
|
core.store
|
|
.accept_block(&genesis, Slot::from(1_000))
|
|
.await
|
|
.expect("accept"),
|
|
AcceptOutcome::Applied
|
|
));
|
|
core.store
|
|
.set_zone_cursor(&Slot::from(1_000))
|
|
.expect("set cursor");
|
|
assert!(matches!(
|
|
core.verify_chain_consistency().await.expect("verify"),
|
|
ChainConsistency::Inconclusive
|
|
));
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn startup_anchor_prefers_tip_slot_over_lagging_cursor() {
|
|
// Cursor persist failures are warn-only, so the read cursor can lag the
|
|
// tip by several blocks. The anchor must pair the tip with its own
|
|
// inscription slot; pairing it with the stale cursor would make the scan
|
|
// misread the chain's intermediate blocks as re-inscriptions.
|
|
let dir = tempfile::tempdir().expect("tempdir");
|
|
let core = unreachable_core(dir.path());
|
|
|
|
let genesis = common::test_utils::produce_dummy_block(1, None, vec![]);
|
|
core.store
|
|
.accept_block(&genesis, Slot::from(1_000))
|
|
.await
|
|
.expect("accept");
|
|
let block2 = common::test_utils::produce_dummy_block(2, Some(genesis.header.hash), vec![]);
|
|
core.store
|
|
.accept_block(&block2, Slot::from(1_005))
|
|
.await
|
|
.expect("accept");
|
|
let block3 = common::test_utils::produce_dummy_block(3, Some(block2.header.hash), vec![]);
|
|
core.store
|
|
.accept_block(&block3, Slot::from(1_010))
|
|
.await
|
|
.expect("accept");
|
|
|
|
// Cursor last persisted at the genesis slot: two blocks behind the tip.
|
|
core.store
|
|
.set_zone_cursor(&Slot::from(1_000))
|
|
.expect("set cursor");
|
|
|
|
let anchor = core.get_startup_anchor().expect("anchor").expect("present");
|
|
let expected = Anchor::new(Slot::from(1_010), Some((3, block3.header.hash)));
|
|
assert_eq!(anchor, expected);
|
|
}
|
|
}
|