mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 13:21:10 +00:00
pallet-mmr: move offchain logic to client-side gadget (#12753)
* Move MMR utils methods from pallet to primitives Signed-off-by: Serban Iorga <serban@parity.io> * Add method to MmrApi * Move forks expanding logic from babe to primitives * Implement MMR gadget * Remove prunning logic from the MMR pallet * Code review changes: 1st iteration * Replace MaybeCanonEngine with CanonEngineBuilder * fix mmr_leaves_count() for kitchen sink demo * Update client/merkle-mountain-range/src/canon_engine.rs Co-authored-by: Adrian Catangiu <adrian@parity.io> * Code review changes: 2nd iteration * fix INDEXING_PREFIX * impl review comments * add documentation and minor rename Signed-off-by: Serban Iorga <serban@parity.io> Co-authored-by: Adrian Catangiu <adrian@parity.io>
This commit is contained in:
@@ -0,0 +1,344 @@
|
||||
// This file is part of Substrate.
|
||||
|
||||
// Copyright (C) 2021-2022 Parity Technologies (UK) Ltd.
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
use futures::{executor::LocalPool, task::LocalSpawn, FutureExt};
|
||||
use std::{
|
||||
future::Future,
|
||||
sync::{Arc, Mutex},
|
||||
time::Duration,
|
||||
};
|
||||
|
||||
use sc_block_builder::BlockBuilderProvider;
|
||||
use sc_client_api::{
|
||||
Backend as BackendT, BlockchainEvents, FinalityNotifications, ImportNotifications,
|
||||
StorageEventStream, StorageKey,
|
||||
};
|
||||
use sc_offchain::OffchainDb;
|
||||
use sp_api::{ApiRef, ProvideRuntimeApi};
|
||||
use sp_blockchain::{BlockStatus, CachedHeaderMetadata, HeaderBackend, HeaderMetadata, Info};
|
||||
use sp_consensus::BlockOrigin;
|
||||
use sp_core::{
|
||||
offchain::{DbExternalities, StorageKind},
|
||||
H256,
|
||||
};
|
||||
use sp_mmr_primitives as mmr;
|
||||
use sp_mmr_primitives::{utils::NodesUtils, LeafIndex, NodeIndex};
|
||||
use sp_runtime::{
|
||||
generic::BlockId,
|
||||
traits::{Block as BlockT, Header as HeaderT},
|
||||
};
|
||||
use substrate_test_runtime_client::{
|
||||
runtime::{Block, BlockNumber, Hash, Header},
|
||||
Backend, BlockBuilderExt, Client, ClientBlockImportExt, ClientExt, DefaultTestClientBuilderExt,
|
||||
TestClientBuilder, TestClientBuilderExt,
|
||||
};
|
||||
|
||||
use crate::MmrGadget;
|
||||
|
||||
type MmrHash = H256;
|
||||
|
||||
struct MockRuntimeApiData {
|
||||
num_blocks: BlockNumber,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct MockRuntimeApi {
|
||||
data: Arc<Mutex<MockRuntimeApiData>>,
|
||||
}
|
||||
|
||||
impl MockRuntimeApi {
|
||||
pub const INDEXING_PREFIX: &'static [u8] = b"mmr_test";
|
||||
}
|
||||
|
||||
pub struct MmrBlock {
|
||||
block: Block,
|
||||
leaf_idx: Option<LeafIndex>,
|
||||
leaf_data: Vec<u8>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
pub enum OffchainKeyType {
|
||||
Temp,
|
||||
Canon,
|
||||
}
|
||||
|
||||
impl MmrBlock {
|
||||
pub fn hash(&self) -> Hash {
|
||||
self.block.hash()
|
||||
}
|
||||
|
||||
pub fn parent_hash(&self) -> Hash {
|
||||
*self.block.header.parent_hash()
|
||||
}
|
||||
|
||||
pub fn get_offchain_key(&self, node: NodeIndex, key_type: OffchainKeyType) -> Vec<u8> {
|
||||
match key_type {
|
||||
OffchainKeyType::Temp => NodesUtils::node_temp_offchain_key::<Header>(
|
||||
MockRuntimeApi::INDEXING_PREFIX,
|
||||
node,
|
||||
*self.block.header.parent_hash(),
|
||||
),
|
||||
OffchainKeyType::Canon =>
|
||||
NodesUtils::node_canon_offchain_key(MockRuntimeApi::INDEXING_PREFIX, node),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MockClient {
|
||||
client: Mutex<Client<Backend>>,
|
||||
backend: Arc<Backend>,
|
||||
runtime_api_params: Arc<Mutex<MockRuntimeApiData>>,
|
||||
}
|
||||
|
||||
impl MockClient {
|
||||
fn new() -> Self {
|
||||
let client_builder = TestClientBuilder::new().enable_offchain_indexing_api();
|
||||
let (client, backend) = client_builder.build_with_backend();
|
||||
MockClient {
|
||||
client: Mutex::new(client),
|
||||
backend,
|
||||
runtime_api_params: Arc::new(Mutex::new(MockRuntimeApiData { num_blocks: 0 })),
|
||||
}
|
||||
}
|
||||
|
||||
fn offchain_db(&self) -> OffchainDb<<Backend as BackendT<Block>>::OffchainStorage> {
|
||||
OffchainDb::new(self.backend.offchain_storage().unwrap())
|
||||
}
|
||||
|
||||
pub async fn import_block(
|
||||
&self,
|
||||
at: &BlockId<Block>,
|
||||
name: &[u8],
|
||||
maybe_leaf_idx: Option<LeafIndex>,
|
||||
) -> MmrBlock {
|
||||
let mut client = self.client.lock().unwrap();
|
||||
|
||||
let mut block_builder = client.new_block_at(at, Default::default(), false).unwrap();
|
||||
// Make sure the block has a different hash than its siblings
|
||||
block_builder
|
||||
.push_storage_change(b"name".to_vec(), Some(name.to_vec()))
|
||||
.unwrap();
|
||||
let block = block_builder.build().unwrap().block;
|
||||
client.import(BlockOrigin::Own, block.clone()).await.unwrap();
|
||||
|
||||
let parent_hash = *block.header.parent_hash();
|
||||
// Simulate writing MMR nodes in offchain storage
|
||||
if let Some(leaf_idx) = maybe_leaf_idx {
|
||||
let mut offchain_db = self.offchain_db();
|
||||
for node in NodesUtils::right_branch_ending_in_leaf(leaf_idx) {
|
||||
let temp_key = NodesUtils::node_temp_offchain_key::<Header>(
|
||||
MockRuntimeApi::INDEXING_PREFIX,
|
||||
node,
|
||||
parent_hash,
|
||||
);
|
||||
offchain_db.local_storage_set(
|
||||
StorageKind::PERSISTENT,
|
||||
&temp_key,
|
||||
parent_hash.as_ref(),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
MmrBlock { block, leaf_idx: maybe_leaf_idx, leaf_data: parent_hash.as_ref().to_vec() }
|
||||
}
|
||||
|
||||
pub fn finalize_block(&self, hash: Hash, maybe_num_mmr_blocks: Option<BlockNumber>) {
|
||||
let client = self.client.lock().unwrap();
|
||||
if let Some(num_mmr_blocks) = maybe_num_mmr_blocks {
|
||||
self.runtime_api_params.lock().unwrap().num_blocks = num_mmr_blocks;
|
||||
}
|
||||
|
||||
client.finalize_block(hash, None).unwrap();
|
||||
}
|
||||
|
||||
pub fn check_offchain_storage<F>(
|
||||
&self,
|
||||
key_type: OffchainKeyType,
|
||||
blocks: &[&MmrBlock],
|
||||
mut f: F,
|
||||
) where
|
||||
F: FnMut(Option<Vec<u8>>, &MmrBlock),
|
||||
{
|
||||
let mut offchain_db = self.offchain_db();
|
||||
for mmr_block in blocks {
|
||||
for node in NodesUtils::right_branch_ending_in_leaf(mmr_block.leaf_idx.unwrap()) {
|
||||
let temp_key = mmr_block.get_offchain_key(node, key_type);
|
||||
let val = offchain_db.local_storage_get(StorageKind::PERSISTENT, &temp_key);
|
||||
f(val, mmr_block);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn assert_pruned(&self, blocks: &[&MmrBlock]) {
|
||||
self.check_offchain_storage(OffchainKeyType::Temp, blocks, |val, _block| {
|
||||
assert!(val.is_none());
|
||||
})
|
||||
}
|
||||
|
||||
pub fn assert_not_pruned(&self, blocks: &[&MmrBlock]) {
|
||||
self.check_offchain_storage(OffchainKeyType::Temp, blocks, |val, block| {
|
||||
assert_eq!(val.as_ref(), Some(&block.leaf_data));
|
||||
})
|
||||
}
|
||||
|
||||
pub fn assert_canonicalized(&self, blocks: &[&MmrBlock]) {
|
||||
self.check_offchain_storage(OffchainKeyType::Canon, blocks, |val, block| {
|
||||
assert_eq!(val.as_ref(), Some(&block.leaf_data));
|
||||
});
|
||||
|
||||
self.assert_pruned(blocks);
|
||||
}
|
||||
|
||||
pub fn assert_not_canonicalized(&self, blocks: &[&MmrBlock]) {
|
||||
self.check_offchain_storage(OffchainKeyType::Canon, blocks, |val, _block| {
|
||||
assert!(val.is_none());
|
||||
});
|
||||
|
||||
self.assert_not_pruned(blocks);
|
||||
}
|
||||
}
|
||||
|
||||
impl HeaderMetadata<Block> for MockClient {
|
||||
type Error = <Client<Backend> as HeaderMetadata<Block>>::Error;
|
||||
|
||||
fn header_metadata(&self, hash: Hash) -> Result<CachedHeaderMetadata<Block>, Self::Error> {
|
||||
self.client.lock().unwrap().header_metadata(hash)
|
||||
}
|
||||
|
||||
fn insert_header_metadata(&self, _hash: Hash, _header_metadata: CachedHeaderMetadata<Block>) {
|
||||
todo!()
|
||||
}
|
||||
|
||||
fn remove_header_metadata(&self, _hash: Hash) {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
impl HeaderBackend<Block> for MockClient {
|
||||
fn header(&self, id: BlockId<Block>) -> sc_client_api::blockchain::Result<Option<Header>> {
|
||||
self.client.lock().unwrap().header(&id)
|
||||
}
|
||||
|
||||
fn info(&self) -> Info<Block> {
|
||||
self.client.lock().unwrap().info()
|
||||
}
|
||||
|
||||
fn status(&self, id: BlockId<Block>) -> sc_client_api::blockchain::Result<BlockStatus> {
|
||||
self.client.lock().unwrap().status(id)
|
||||
}
|
||||
|
||||
fn number(&self, hash: Hash) -> sc_client_api::blockchain::Result<Option<BlockNumber>> {
|
||||
self.client.lock().unwrap().number(hash)
|
||||
}
|
||||
|
||||
fn hash(&self, number: BlockNumber) -> sc_client_api::blockchain::Result<Option<Hash>> {
|
||||
self.client.lock().unwrap().hash(number)
|
||||
}
|
||||
}
|
||||
|
||||
impl BlockchainEvents<Block> for MockClient {
|
||||
fn import_notification_stream(&self) -> ImportNotifications<Block> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
fn finality_notification_stream(&self) -> FinalityNotifications<Block> {
|
||||
self.client.lock().unwrap().finality_notification_stream()
|
||||
}
|
||||
|
||||
fn storage_changes_notification_stream(
|
||||
&self,
|
||||
_filter_keys: Option<&[StorageKey]>,
|
||||
_child_filter_keys: Option<&[(StorageKey, Option<Vec<StorageKey>>)]>,
|
||||
) -> sc_client_api::blockchain::Result<StorageEventStream<Hash>> {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
impl ProvideRuntimeApi<Block> for MockClient {
|
||||
type Api = MockRuntimeApi;
|
||||
|
||||
fn runtime_api(&self) -> ApiRef<'_, Self::Api> {
|
||||
MockRuntimeApi { data: self.runtime_api_params.clone() }.into()
|
||||
}
|
||||
}
|
||||
|
||||
sp_api::mock_impl_runtime_apis! {
|
||||
impl mmr::MmrApi<Block, MmrHash, BlockNumber> for MockRuntimeApi {
|
||||
fn mmr_root() -> Result<MmrHash, mmr::Error> {
|
||||
Err(mmr::Error::PalletNotIncluded)
|
||||
}
|
||||
|
||||
fn mmr_leaf_count(&self) -> Result<LeafIndex, mmr::Error> {
|
||||
Ok(self.data.lock().unwrap().num_blocks)
|
||||
}
|
||||
|
||||
fn generate_proof(
|
||||
&self,
|
||||
_block_numbers: Vec<u64>,
|
||||
_best_known_block_number: Option<u64>,
|
||||
) -> Result<(Vec<mmr::EncodableOpaqueLeaf>, mmr::Proof<MmrHash>), mmr::Error> {
|
||||
Err(mmr::Error::PalletNotIncluded)
|
||||
}
|
||||
|
||||
fn verify_proof(_leaves: Vec<mmr::EncodableOpaqueLeaf>, _proof: mmr::Proof<MmrHash>)
|
||||
-> Result<(), mmr::Error>
|
||||
{
|
||||
Err(mmr::Error::PalletNotIncluded)
|
||||
}
|
||||
|
||||
fn verify_proof_stateless(
|
||||
_root: MmrHash,
|
||||
_leaves: Vec<mmr::EncodableOpaqueLeaf>,
|
||||
_proof: mmr::Proof<MmrHash>
|
||||
) -> Result<(), mmr::Error> {
|
||||
Err(mmr::Error::PalletNotIncluded)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run_test_with_mmr_gadget<F, Fut>(f: F)
|
||||
where
|
||||
F: FnOnce(Arc<MockClient>) -> Fut + 'static,
|
||||
Fut: Future<Output = ()>,
|
||||
{
|
||||
let mut pool = LocalPool::new();
|
||||
let client = Arc::new(MockClient::new());
|
||||
|
||||
let client_clone = client.clone();
|
||||
pool.spawner()
|
||||
.spawn_local_obj(
|
||||
async move {
|
||||
let backend = client_clone.backend.clone();
|
||||
MmrGadget::start(
|
||||
client_clone.clone(),
|
||||
backend,
|
||||
MockRuntimeApi::INDEXING_PREFIX.to_vec(),
|
||||
)
|
||||
.await
|
||||
}
|
||||
.boxed_local()
|
||||
.into(),
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
pool.run_until(async move {
|
||||
async_std::task::sleep(Duration::from_millis(200)).await;
|
||||
|
||||
f(client).await
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user