// Copyright 2018-2019 Parity Technologies (UK) Ltd. // This file is part of Substrate. // Substrate 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. // Substrate 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 Substrate. If not, see . //! Block evaluation and evaluation errors. use super::MAX_BLOCK_SIZE; use parity_codec::Encode; use runtime_primitives::traits::{Block as BlockT, Header as HeaderT, As}; use error_chain::{error_chain, error_chain_processing, impl_error_chain_processed, impl_extract_backtrace, impl_error_chain_kind, bail}; type BlockNumber = u64; error_chain! { errors { BadProposalFormat { description("Proposal provided not a block."), display("Proposal provided not a block."), } WrongParentHash(expected: String, got: String) { description("Proposal had wrong parent hash."), display("Proposal had wrong parent hash. Expected {:?}, got {:?}", expected, got), } WrongNumber(expected: BlockNumber, got: BlockNumber) { description("Proposal had wrong number."), display("Proposal had wrong number. Expected {}, got {}", expected, got), } ProposalTooLarge(size: usize) { description("Proposal exceeded the maximum size."), display( "Proposal exceeded the maximum size of {} by {} bytes.", MAX_BLOCK_SIZE, size.saturating_sub(MAX_BLOCK_SIZE) ), } } } /// Attempt to evaluate a substrate block as a node block, returning error /// upon any initial validity checks failing. pub fn evaluate_initial( proposal: &Block, parent_hash: &::Hash, parent_number: <::Header as HeaderT>::Number, ) -> Result<()> { let encoded = Encode::encode(proposal); let proposal = Block::decode(&mut &encoded[..]) .ok_or_else(|| ErrorKind::BadProposalFormat)?; if encoded.len() > MAX_BLOCK_SIZE { bail!(ErrorKind::ProposalTooLarge(encoded.len())) } if *parent_hash != *proposal.header().parent_hash() { bail!(ErrorKind::WrongParentHash( format!("{:?}", *parent_hash), format!("{:?}", proposal.header().parent_hash()) )); } if parent_number.as_() + 1 != proposal.header().number().as_() { bail!(ErrorKind::WrongNumber(parent_number.as_() + 1, proposal.header().number().as_())); } Ok(()) }