// This file is part of Substrate. // Copyright (C) 2020-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 . //! A RPC handler to create sync states for light clients. //! //! Currently only usable with BABE + GRANDPA. //! //! # Usage //! //! To use the light sync state, it needs to be added as an extension to the chain spec: //! //! ``` //! use sc_sync_state_rpc::LightSyncStateExtension; //! //! #[derive(Default, Clone, serde::Serialize, serde::Deserialize, sc_chain_spec::ChainSpecExtension)] //! #[serde(rename_all = "camelCase")] //! pub struct Extensions { //! light_sync_state: LightSyncStateExtension, //! } //! //! type ChainSpec = sc_chain_spec::GenericChainSpec<(), Extensions>; //! ``` //! //! If the [`LightSyncStateExtension`] is not added as an extension to the chain spec, //! the [`SyncStateRpcHandler`] will fail at instantiation. #![deny(unused_crate_dependencies)] use sc_client_api::StorageData; use sp_blockchain::HeaderBackend; use sp_runtime::{ generic::BlockId, traits::{Block as BlockT, NumberFor}, }; use std::sync::Arc; use jsonrpc_derive::rpc; type SharedAuthoritySet = sc_finality_grandpa::SharedAuthoritySet<::Hash, NumberFor>; type SharedEpochChanges = sc_consensus_epochs::SharedEpochChanges; /// Error type used by this crate. #[derive(Debug, thiserror::Error)] #[allow(missing_docs)] pub enum Error { #[error(transparent)] Blockchain(#[from] sp_blockchain::Error), #[error("Failed to load the block weight for block {0:?}")] LoadingBlockWeightFailed(Block::Hash), #[error("JsonRpc error: {0}")] JsonRpc(String), #[error( "The light sync state extension is not provided by the chain spec. \ Read the `sc-sync-state-rpc` crate docs on how to do this!" )] LightSyncStateExtensionNotFound, } impl From> for jsonrpc_core::Error { fn from(error: Error) -> Self { let message = match error { Error::JsonRpc(s) => s, _ => error.to_string(), }; jsonrpc_core::Error { message, code: jsonrpc_core::ErrorCode::ServerError(1), data: None } } } /// Serialize the given `val` by encoding it with SCALE codec and serializing it as hex. fn serialize_encoded( val: &T, s: S, ) -> Result { let encoded = StorageData(val.encode()); serde::Serialize::serialize(&encoded, s) } /// The light sync state extension. /// /// This represents a JSON serialized [`LightSyncState`]. It is required to be added to the /// chain-spec as an extension. pub type LightSyncStateExtension = Option; /// Hardcoded infomation that allows light clients to sync quickly. #[derive(serde::Serialize, Clone)] #[serde(rename_all = "camelCase")] #[serde(deny_unknown_fields)] pub struct LightSyncState { /// The header of the best finalized block. #[serde(serialize_with = "serialize_encoded")] pub finalized_block_header: ::Header, /// The epoch changes tree for babe. #[serde(serialize_with = "serialize_encoded")] pub babe_epoch_changes: sc_consensus_epochs::EpochChangesFor, /// The babe weight of the finalized block. pub babe_finalized_block_weight: sc_consensus_babe::BabeBlockWeight, /// The authority set for grandpa. #[serde(serialize_with = "serialize_encoded")] pub grandpa_authority_set: sc_finality_grandpa::AuthoritySet<::Hash, NumberFor>, } /// An api for sync state RPC calls. #[rpc] pub trait SyncStateRpcApi { /// Returns the json-serialized chainspec running the node, with a sync state. #[rpc(name = "sync_state_genSyncSpec", returns = "jsonrpc_core::Value")] fn system_gen_sync_spec(&self, raw: bool) -> jsonrpc_core::Result; } /// The handler for sync state RPC calls. pub struct SyncStateRpcHandler { chain_spec: Box, client: Arc, shared_authority_set: SharedAuthoritySet, shared_epoch_changes: SharedEpochChanges, } impl SyncStateRpcHandler where Block: BlockT, Backend: HeaderBackend + sc_client_api::AuxStore + 'static, { /// Create a new handler. pub fn new( chain_spec: Box, client: Arc, shared_authority_set: SharedAuthoritySet, shared_epoch_changes: SharedEpochChanges, ) -> Result> { if sc_chain_spec::get_extension::(chain_spec.extensions()) .is_some() { Ok(Self { chain_spec, client, shared_authority_set, shared_epoch_changes }) } else { Err(Error::::LightSyncStateExtensionNotFound) } } fn build_sync_state(&self) -> Result, Error> { let finalized_hash = self.client.info().finalized_hash; let finalized_header = self .client .header(BlockId::Hash(finalized_hash))? .ok_or_else(|| sp_blockchain::Error::MissingHeader(finalized_hash.to_string()))?; let finalized_block_weight = sc_consensus_babe::aux_schema::load_block_weight(&*self.client, finalized_hash)? .ok_or_else(|| Error::LoadingBlockWeightFailed(finalized_hash))?; Ok(LightSyncState { finalized_block_header: finalized_header, babe_epoch_changes: self.shared_epoch_changes.shared_data().clone(), babe_finalized_block_weight: finalized_block_weight, grandpa_authority_set: self.shared_authority_set.clone_inner(), }) } } impl SyncStateRpcApi for SyncStateRpcHandler where Block: BlockT, Backend: HeaderBackend + sc_client_api::AuxStore + 'static, { fn system_gen_sync_spec(&self, raw: bool) -> jsonrpc_core::Result { let mut chain_spec = self.chain_spec.cloned_box(); let sync_state = self.build_sync_state().map_err(map_error::>)?; let extension = sc_chain_spec::get_extension_mut::( chain_spec.extensions_mut(), ) .ok_or_else(|| { Error::::JsonRpc("Could not find `LightSyncState` chain-spec extension!".into()) })?; *extension = Some(serde_json::to_value(&sync_state).map_err(|err| map_error::(err))?); let json_string = chain_spec.as_json(raw).map_err(map_error::)?; serde_json::from_str(&json_string).map_err(|err| map_error::(err)) } } fn map_error(error: S) -> jsonrpc_core::Error { Error::::JsonRpc(error.to_string()).into() }