mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-12 00:39:29 +00:00
309 lines
13 KiB
Rust
309 lines
13 KiB
Rust
use std::{pin::Pin, sync::Arc, time::Duration};
|
|
|
|
use anyhow::{Context as _, Result, anyhow};
|
|
use common::block::Block;
|
|
use log::{info, warn};
|
|
pub use logos_blockchain_core::mantle::ops::channel::MsgId;
|
|
use logos_blockchain_core::mantle::ops::channel::{ChannelId, inscribe::Inscription};
|
|
pub use logos_blockchain_key_management_system_service::keys::{Ed25519Key, ZkKey};
|
|
pub use logos_blockchain_zone_sdk::sequencer::SequencerCheckpoint;
|
|
use logos_blockchain_zone_sdk::{
|
|
CommonHttpClient,
|
|
adapter::NodeHttpClient,
|
|
sequencer::{
|
|
DepositInfo, Event, FinalizedOp, InscriptionInfo, OrphanedTx,
|
|
SequencerConfig as ZoneSdkSequencerConfig, TurnNotification, WithdrawArg, WithdrawInfo,
|
|
ZoneSequencer,
|
|
},
|
|
};
|
|
use tokio::{
|
|
sync::{mpsc, oneshot, watch},
|
|
task::JoinHandle,
|
|
};
|
|
|
|
use crate::config::BedrockConfig;
|
|
|
|
/// Channel capacity for the publish inbox. One publish per produced block, drained
|
|
/// in microseconds by the drive task — 32 is huge headroom and just provides
|
|
/// backpressure if the drive task stalls (reconnect, long backfill).
|
|
const PUBLISH_INBOX_CAPACITY: usize = 32;
|
|
|
|
/// Sink for `Event::Published` checkpoints emitted by the drive task.
|
|
/// Caller is responsible for persistence (e.g. writing to rocksdb).
|
|
pub type CheckpointSink = Box<dyn Fn(SequencerCheckpoint) + Send + 'static>;
|
|
|
|
/// Sink for finalized L2 block ids derived from `Event::TxsFinalized` and
|
|
/// `Event::FinalizedInscriptions`. Caller is responsible for cleanup
|
|
/// (e.g. marking pending blocks as finalized in storage).
|
|
pub type FinalizedBlockSink = Box<dyn Fn(u64) + Send + 'static>;
|
|
|
|
/// Sink for finalized Bedrock deposit events.
|
|
pub type OnDepositEventSink =
|
|
Box<dyn Fn(DepositInfo) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + 'static>;
|
|
|
|
/// Sink for finalized Bedrock withdraw events.
|
|
pub type OnWithdrawEventSink =
|
|
Box<dyn Fn(WithdrawInfo) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + 'static>;
|
|
|
|
/// The channel delta the follow path consumes from one `Event::BlocksProcessed`,
|
|
/// with inscription payloads decoded into `(MsgId, Block)` pairs.
|
|
pub struct FollowUpdate {
|
|
pub adopted: Vec<(MsgId, Block)>,
|
|
pub orphaned: Vec<(MsgId, Block)>,
|
|
pub finalized: Vec<(MsgId, Block)>,
|
|
}
|
|
|
|
/// Sink for the follow path: apply adopted/finalized blocks to chain state and
|
|
/// revert orphaned ones.
|
|
pub type OnFollowSink =
|
|
Box<dyn Fn(FollowUpdate) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + 'static>;
|
|
|
|
/// Publish request channel: the inscription, its bridge withdrawals, and a
|
|
/// oneshot for the `MsgId` zone-sdk assigns.
|
|
type PublishSender = mpsc::Sender<(
|
|
Inscription,
|
|
Vec<WithdrawArg>,
|
|
oneshot::Sender<Result<MsgId>>,
|
|
)>;
|
|
|
|
#[expect(async_fn_in_trait, reason = "We don't care about Send/Sync here")]
|
|
pub trait BlockPublisherTrait: Clone {
|
|
#[expect(
|
|
clippy::too_many_arguments,
|
|
reason = "Looks better than bundling all those callbacks into a struct"
|
|
)]
|
|
async fn new(
|
|
config: &BedrockConfig,
|
|
bedrock_signing_key: Ed25519Key,
|
|
resubmit_interval: Duration,
|
|
initial_checkpoint: Option<SequencerCheckpoint>,
|
|
on_checkpoint: CheckpointSink,
|
|
on_finalized_block: FinalizedBlockSink,
|
|
on_deposit_event: OnDepositEventSink,
|
|
on_withdraw_event: OnWithdrawEventSink,
|
|
on_follow: OnFollowSink,
|
|
) -> Result<Self>;
|
|
|
|
/// Publish a block and return the `MsgId` zone-sdk assigned its inscription.
|
|
/// Zone-sdk drives the actual submission and retries internally.
|
|
async fn publish_block(&self, block: &Block, withdrawals: Vec<WithdrawArg>) -> Result<MsgId>;
|
|
|
|
fn channel_id(&self) -> ChannelId;
|
|
|
|
/// Whether this sequencer is currently authorized to write to the channel.
|
|
fn is_our_turn(&self) -> bool;
|
|
}
|
|
|
|
/// Real block publisher backed by zone-sdk's `ZoneSequencer`.
|
|
#[derive(Clone)]
|
|
pub struct ZoneSdkPublisher {
|
|
channel_id: ChannelId,
|
|
publish_tx: PublishSender,
|
|
turn_rx: watch::Receiver<TurnNotification>,
|
|
// Aborts the drive task when the last clone is dropped.
|
|
_drive_task: Arc<DriveTaskGuard>,
|
|
}
|
|
|
|
struct DriveTaskGuard(JoinHandle<()>);
|
|
|
|
impl Drop for DriveTaskGuard {
|
|
fn drop(&mut self) {
|
|
self.0.abort();
|
|
}
|
|
}
|
|
|
|
impl BlockPublisherTrait for ZoneSdkPublisher {
|
|
async fn new(
|
|
config: &BedrockConfig,
|
|
bedrock_signing_key: Ed25519Key,
|
|
resubmit_interval: Duration,
|
|
initial_checkpoint: Option<SequencerCheckpoint>,
|
|
on_checkpoint: CheckpointSink,
|
|
on_finalized_block: FinalizedBlockSink,
|
|
on_deposit_event: OnDepositEventSink,
|
|
on_withdraw_event: OnWithdrawEventSink,
|
|
on_follow: OnFollowSink,
|
|
) -> Result<Self> {
|
|
let basic_auth = config.auth.clone().map(Into::into);
|
|
let node = NodeHttpClient::new(CommonHttpClient::new(basic_auth), config.node_url.clone());
|
|
|
|
let zone_sdk_config = ZoneSdkSequencerConfig {
|
|
resubmit_interval,
|
|
..ZoneSdkSequencerConfig::default()
|
|
};
|
|
|
|
let mut sequencer = ZoneSequencer::init_with_config(
|
|
config.channel_id,
|
|
bedrock_signing_key,
|
|
node,
|
|
zone_sdk_config,
|
|
initial_checkpoint,
|
|
);
|
|
|
|
// Grab readiness receiver before moving the sequencer into the drive
|
|
// task so we can await cold-start completion below.
|
|
let mut ready_rx = sequencer.subscribe_ready();
|
|
// Grab the turn watch before the move; the sdk actor keeps it current.
|
|
let turn_rx = sequencer.subscribe_turn_to_write();
|
|
|
|
let (publish_tx, mut publish_rx): (PublishSender, _) =
|
|
mpsc::channel(PUBLISH_INBOX_CAPACITY);
|
|
|
|
let drive_task = tokio::spawn(async move {
|
|
loop {
|
|
#[expect(
|
|
clippy::integer_division_remainder_used,
|
|
reason = "tokio::select! expansion uses `%` for random branch selection"
|
|
)]
|
|
{
|
|
tokio::select! {
|
|
// Drain external publish requests by calling the
|
|
// borrowing handle — `&mut sequencer` is only
|
|
// available here.
|
|
Some((data_bounded, withdrawals, resp_tx)) = publish_rx.recv() => {
|
|
let data_byte_size = data_bounded.len();
|
|
let withdraw_count = withdrawals.len();
|
|
let published = if withdrawals.is_empty() {
|
|
sequencer.handle()
|
|
.publish(data_bounded)
|
|
.context("Failed to publish block")
|
|
} else {
|
|
sequencer.handle()
|
|
.publish_atomic_withdraw(data_bounded, withdrawals)
|
|
.context("Failed to publish block with withdrawals")
|
|
};
|
|
|
|
let msg_result = published
|
|
.map(|(result, _checkpoint)| result.tx.inscription().this_msg);
|
|
match &msg_result {
|
|
Ok(_) if withdraw_count == 0 => {
|
|
info!("Published block with the size of {data_byte_size} bytes");
|
|
}
|
|
Ok(_) => {
|
|
info!(
|
|
"Published block with the size of {data_byte_size} bytes and {withdraw_count} bridge withdrawals",
|
|
);
|
|
}
|
|
Err(e) => warn!("zone-sdk publish failed: {e:?}"),
|
|
}
|
|
let _dontcare = resp_tx.send(msg_result);
|
|
}
|
|
event = sequencer.next_event() => {
|
|
let Some(event) = event else {
|
|
continue;
|
|
};
|
|
match event {
|
|
Event::BlocksProcessed {
|
|
checkpoint,
|
|
channel_update,
|
|
finalized,
|
|
} => {
|
|
on_checkpoint(checkpoint);
|
|
|
|
let adopted = channel_update
|
|
.adopted
|
|
.iter()
|
|
.filter_map(block_from_inscription)
|
|
.collect();
|
|
let orphaned = channel_update
|
|
.orphaned
|
|
.iter()
|
|
.map(orphan_inscription)
|
|
.filter_map(block_from_inscription)
|
|
.collect();
|
|
|
|
let mut finalized_blocks = Vec::new();
|
|
for op in finalized.into_iter().flat_map(|item| item.ops) {
|
|
match op {
|
|
FinalizedOp::Inscription(inscription) => {
|
|
if let Some((msg, block)) =
|
|
block_from_inscription(&inscription)
|
|
{
|
|
on_finalized_block(block.header.block_id);
|
|
finalized_blocks.push((msg, block));
|
|
}
|
|
}
|
|
FinalizedOp::Deposit(deposit) => {
|
|
on_deposit_event(deposit).await;
|
|
}
|
|
FinalizedOp::Withdraw(withdraw) => {
|
|
on_withdraw_event(withdraw).await;
|
|
}
|
|
}
|
|
}
|
|
|
|
on_follow(FollowUpdate {
|
|
adopted,
|
|
orphaned,
|
|
finalized: finalized_blocks,
|
|
})
|
|
.await;
|
|
}
|
|
Event::Ready | Event::TurnNotification { .. } => {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// Wait for cold-start backfill to complete before returning so callers
|
|
// can publish immediately (e.g. genesis block) without racing readiness.
|
|
ready_rx
|
|
.wait_for(|v| *v)
|
|
.await
|
|
.context("Zone-sdk readiness channel closed before becoming ready")?;
|
|
|
|
Ok(Self {
|
|
channel_id: config.channel_id,
|
|
publish_tx,
|
|
turn_rx,
|
|
_drive_task: Arc::new(DriveTaskGuard(drive_task)),
|
|
})
|
|
}
|
|
|
|
async fn publish_block(&self, block: &Block, withdrawals: Vec<WithdrawArg>) -> Result<MsgId> {
|
|
let data = borsh::to_vec(block).context("Failed to serialize block")?;
|
|
let data_bounded: Inscription = data
|
|
.try_into()
|
|
.context("Block data exceeds maximum allowed size")?;
|
|
|
|
let (resp_tx, resp_rx) = oneshot::channel();
|
|
self.publish_tx
|
|
.send((data_bounded, withdrawals, resp_tx))
|
|
.await
|
|
.map_err(|_closed| anyhow!("Drive task is no longer running"))?;
|
|
|
|
resp_rx
|
|
.await
|
|
.map_err(|_closed| anyhow!("Drive task dropped the publish response"))?
|
|
}
|
|
|
|
fn channel_id(&self) -> ChannelId {
|
|
self.channel_id
|
|
}
|
|
|
|
fn is_our_turn(&self) -> bool {
|
|
self.turn_rx.borrow().our_turn_to_write
|
|
}
|
|
}
|
|
|
|
/// Deserialize an inscription payload into `(this_msg, Block)`. Bad payloads are
|
|
/// logged and skipped.
|
|
fn block_from_inscription(inscription: &InscriptionInfo) -> Option<(MsgId, Block)> {
|
|
borsh::from_slice::<Block>(&inscription.payload)
|
|
.inspect_err(|err| {
|
|
warn!("Failed to deserialize block from inscription: {err:?}");
|
|
})
|
|
.ok()
|
|
.map(|block| (inscription.this_msg, block))
|
|
}
|
|
|
|
/// The inscription carried by an orphaned tx (plain or atomic-withdraw bundle).
|
|
const fn orphan_inscription(orphan: &OrphanedTx) -> &InscriptionInfo {
|
|
match orphan {
|
|
OrphanedTx::Inscription(info) => info,
|
|
OrphanedTx::AtomicWithdraw(bundle) => &bundle.inscription,
|
|
}
|
|
}
|