mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 07:07:59 +00:00
1cd6acdff3
This PR moves syncing-related code from `sc-network-common` to `sc-network-sync`. Unfortunately, some parts are tightly integrated with networking, so they were left in `sc-network-common` for now: 1. `SyncMode` in `common/src/sync.rs` (used in `NetworkConfiguration`). 2. `BlockAnnouncesHandshake`, `BlockRequest`, `BlockResponse`, etc. in `common/src/sync/message.rs` (used in `src/protocol.rs` and `src/protocol/message.rs`). More substantial refactoring is needed to decouple syncing and networking completely, including getting rid of the hardcoded sync protocol. ## Release notes Move syncing-related code from `sc-network-common` to `sc-network-sync`. Delete `ChainSync` trait as it's never used (the only implementation is accessed directly from `SyncingEngine` and exposes a lot of public methods that are not part of the trait). Some new trait(s) for syncing will likely be introduced as part of Sync 2.0 refactoring to represent syncing strategies.
270 lines
7.8 KiB
Rust
270 lines
7.8 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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/>.
|
|
|
|
//! State sync support.
|
|
|
|
use crate::{
|
|
schema::v1::{StateEntry, StateRequest, StateResponse},
|
|
types::StateDownloadProgress,
|
|
};
|
|
use codec::{Decode, Encode};
|
|
use log::debug;
|
|
use sc_client_api::{CompactProof, ProofProvider};
|
|
use sc_consensus::ImportedState;
|
|
use smallvec::SmallVec;
|
|
use sp_core::storage::well_known_keys;
|
|
use sp_runtime::{
|
|
traits::{Block as BlockT, Header, NumberFor},
|
|
Justifications,
|
|
};
|
|
use std::{collections::HashMap, sync::Arc};
|
|
|
|
/// State sync state machine. Accumulates partial state data until it
|
|
/// is ready to be imported.
|
|
pub struct StateSync<B: BlockT, Client> {
|
|
target_block: B::Hash,
|
|
target_header: B::Header,
|
|
target_root: B::Hash,
|
|
target_body: Option<Vec<B::Extrinsic>>,
|
|
target_justifications: Option<Justifications>,
|
|
last_key: SmallVec<[Vec<u8>; 2]>,
|
|
state: HashMap<Vec<u8>, (Vec<(Vec<u8>, Vec<u8>)>, Vec<Vec<u8>>)>,
|
|
complete: bool,
|
|
client: Arc<Client>,
|
|
imported_bytes: u64,
|
|
skip_proof: bool,
|
|
}
|
|
|
|
/// Import state chunk result.
|
|
pub enum ImportResult<B: BlockT> {
|
|
/// State is complete and ready for import.
|
|
Import(B::Hash, B::Header, ImportedState<B>, Option<Vec<B::Extrinsic>>, Option<Justifications>),
|
|
/// Continue downloading.
|
|
Continue,
|
|
/// Bad state chunk.
|
|
BadResponse,
|
|
}
|
|
|
|
impl<B, Client> StateSync<B, Client>
|
|
where
|
|
B: BlockT,
|
|
Client: ProofProvider<B> + Send + Sync + 'static,
|
|
{
|
|
/// Create a new instance.
|
|
pub fn new(
|
|
client: Arc<Client>,
|
|
target_header: B::Header,
|
|
target_body: Option<Vec<B::Extrinsic>>,
|
|
target_justifications: Option<Justifications>,
|
|
skip_proof: bool,
|
|
) -> Self {
|
|
Self {
|
|
client,
|
|
target_block: target_header.hash(),
|
|
target_root: *target_header.state_root(),
|
|
target_header,
|
|
target_body,
|
|
target_justifications,
|
|
last_key: SmallVec::default(),
|
|
state: HashMap::default(),
|
|
complete: false,
|
|
imported_bytes: 0,
|
|
skip_proof,
|
|
}
|
|
}
|
|
|
|
/// Validate and import a state response.
|
|
pub fn import(&mut self, response: StateResponse) -> ImportResult<B> {
|
|
if response.entries.is_empty() && response.proof.is_empty() {
|
|
debug!(target: "sync", "Bad state response");
|
|
return ImportResult::BadResponse
|
|
}
|
|
if !self.skip_proof && response.proof.is_empty() {
|
|
debug!(target: "sync", "Missing proof");
|
|
return ImportResult::BadResponse
|
|
}
|
|
let complete = if !self.skip_proof {
|
|
debug!(target: "sync", "Importing state from {} trie nodes", response.proof.len());
|
|
let proof_size = response.proof.len() as u64;
|
|
let proof = match CompactProof::decode(&mut response.proof.as_ref()) {
|
|
Ok(proof) => proof,
|
|
Err(e) => {
|
|
debug!(target: "sync", "Error decoding proof: {:?}", e);
|
|
return ImportResult::BadResponse
|
|
},
|
|
};
|
|
let (values, completed) = match self.client.verify_range_proof(
|
|
self.target_root,
|
|
proof,
|
|
self.last_key.as_slice(),
|
|
) {
|
|
Err(e) => {
|
|
debug!(
|
|
target: "sync",
|
|
"StateResponse failed proof verification: {}",
|
|
e,
|
|
);
|
|
return ImportResult::BadResponse
|
|
},
|
|
Ok(values) => values,
|
|
};
|
|
debug!(target: "sync", "Imported with {} keys", values.len());
|
|
|
|
let complete = completed == 0;
|
|
if !complete && !values.update_last_key(completed, &mut self.last_key) {
|
|
debug!(target: "sync", "Error updating key cursor, depth: {}", completed);
|
|
};
|
|
|
|
for values in values.0 {
|
|
let key_values = if values.state_root.is_empty() {
|
|
// Read child trie roots.
|
|
values
|
|
.key_values
|
|
.into_iter()
|
|
.filter(|key_value| {
|
|
if well_known_keys::is_child_storage_key(key_value.0.as_slice()) {
|
|
self.state
|
|
.entry(key_value.1.clone())
|
|
.or_default()
|
|
.1
|
|
.push(key_value.0.clone());
|
|
false
|
|
} else {
|
|
true
|
|
}
|
|
})
|
|
.collect()
|
|
} else {
|
|
values.key_values
|
|
};
|
|
let entry = self.state.entry(values.state_root).or_default();
|
|
if entry.0.len() > 0 && entry.1.len() > 1 {
|
|
// Already imported child_trie with same root.
|
|
// Warning this will not work with parallel download.
|
|
} else if entry.0.is_empty() {
|
|
for (key, _value) in key_values.iter() {
|
|
self.imported_bytes += key.len() as u64;
|
|
}
|
|
|
|
entry.0 = key_values;
|
|
} else {
|
|
for (key, value) in key_values {
|
|
self.imported_bytes += key.len() as u64;
|
|
entry.0.push((key, value))
|
|
}
|
|
}
|
|
}
|
|
self.imported_bytes += proof_size;
|
|
complete
|
|
} else {
|
|
let mut complete = true;
|
|
// if the trie is a child trie and one of its parent trie is empty,
|
|
// the parent cursor stays valid.
|
|
// Empty parent trie content only happens when all the response content
|
|
// is part of a single child trie.
|
|
if self.last_key.len() == 2 && response.entries[0].entries.is_empty() {
|
|
// Do not remove the parent trie position.
|
|
self.last_key.pop();
|
|
} else {
|
|
self.last_key.clear();
|
|
}
|
|
for state in response.entries {
|
|
debug!(
|
|
target: "sync",
|
|
"Importing state from {:?} to {:?}",
|
|
state.entries.last().map(|e| sp_core::hexdisplay::HexDisplay::from(&e.key)),
|
|
state.entries.first().map(|e| sp_core::hexdisplay::HexDisplay::from(&e.key)),
|
|
);
|
|
|
|
if !state.complete {
|
|
if let Some(e) = state.entries.last() {
|
|
self.last_key.push(e.key.clone());
|
|
}
|
|
complete = false;
|
|
}
|
|
let is_top = state.state_root.is_empty();
|
|
let entry = self.state.entry(state.state_root).or_default();
|
|
if entry.0.len() > 0 && entry.1.len() > 1 {
|
|
// Already imported child trie with same root.
|
|
} else {
|
|
let mut child_roots = Vec::new();
|
|
for StateEntry { key, value } in state.entries {
|
|
// Skip all child key root (will be recalculated on import).
|
|
if is_top && well_known_keys::is_child_storage_key(key.as_slice()) {
|
|
child_roots.push((value, key));
|
|
} else {
|
|
self.imported_bytes += key.len() as u64;
|
|
entry.0.push((key, value))
|
|
}
|
|
}
|
|
for (root, storage_key) in child_roots {
|
|
self.state.entry(root).or_default().1.push(storage_key);
|
|
}
|
|
}
|
|
}
|
|
complete
|
|
};
|
|
if complete {
|
|
self.complete = true;
|
|
ImportResult::Import(
|
|
self.target_block,
|
|
self.target_header.clone(),
|
|
ImportedState {
|
|
block: self.target_block,
|
|
state: std::mem::take(&mut self.state).into(),
|
|
},
|
|
self.target_body.clone(),
|
|
self.target_justifications.clone(),
|
|
)
|
|
} else {
|
|
ImportResult::Continue
|
|
}
|
|
}
|
|
|
|
/// Produce next state request.
|
|
pub fn next_request(&self) -> StateRequest {
|
|
StateRequest {
|
|
block: self.target_block.encode(),
|
|
start: self.last_key.clone().into_vec(),
|
|
no_proof: self.skip_proof,
|
|
}
|
|
}
|
|
|
|
/// Check if the state is complete.
|
|
pub fn is_complete(&self) -> bool {
|
|
self.complete
|
|
}
|
|
|
|
/// Returns target block number.
|
|
pub fn target_block_num(&self) -> NumberFor<B> {
|
|
*self.target_header.number()
|
|
}
|
|
|
|
/// Returns target block hash.
|
|
pub fn target(&self) -> B::Hash {
|
|
self.target_block
|
|
}
|
|
|
|
/// Returns state sync estimated progress.
|
|
pub fn progress(&self) -> StateDownloadProgress {
|
|
let cursor = *self.last_key.get(0).and_then(|last| last.get(0)).unwrap_or(&0u8);
|
|
let percent_done = cursor as u32 * 100 / 256;
|
|
StateDownloadProgress { percentage: percent_done, size: self.imported_bytes }
|
|
}
|
|
}
|