2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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.
|
|
|
|
|
|
|
|
// Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-11-10 18:30:17 +01:00
|
|
|
//! Block and transaction verification functions
|
|
|
|
//!
|
|
|
|
//! Block verification is done in 3 steps
|
|
|
|
//! 1. Quick verification upon adding to the block queue
|
|
|
|
//! 2. Signatures verification done in the queue.
|
|
|
|
//! 3. Final verification against the blockchain done before enactment.
|
2016-01-10 21:30:22 +01:00
|
|
|
|
2017-07-29 17:12:07 +02:00
|
|
|
use std::collections::HashSet;
|
2018-04-14 21:35:58 +02:00
|
|
|
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
2017-09-26 14:19:08 +02:00
|
|
|
|
|
|
|
use bytes::Bytes;
|
2018-04-05 10:11:21 +02:00
|
|
|
use ethereum_types::H256;
|
2017-09-26 14:19:08 +02:00
|
|
|
use hash::keccak;
|
|
|
|
use heapsize::HeapSizeOf;
|
2018-04-16 15:52:12 +02:00
|
|
|
use rlp::Rlp;
|
2017-09-26 14:19:08 +02:00
|
|
|
use triehash::ordered_trie_root;
|
|
|
|
use unexpected::{Mismatch, OutOfBounds};
|
2016-01-09 19:10:05 +01:00
|
|
|
|
2018-01-17 11:45:29 +01:00
|
|
|
use blockchain::*;
|
2018-03-03 18:42:13 +01:00
|
|
|
use client::{BlockInfo, CallContract};
|
2018-01-17 11:45:29 +01:00
|
|
|
use engines::EthEngine;
|
|
|
|
use error::{BlockError, Error};
|
|
|
|
use header::{BlockNumber, Header};
|
2018-03-01 19:55:24 +01:00
|
|
|
use transaction::{SignedTransaction, UnverifiedTransaction};
|
2018-01-17 11:45:29 +01:00
|
|
|
use views::BlockView;
|
|
|
|
|
2016-01-17 23:07:58 +01:00
|
|
|
/// Preprocessed block data gathered in `verify_block_unordered` call
|
2016-03-01 00:02:48 +01:00
|
|
|
pub struct PreverifiedBlock {
|
2016-01-17 23:07:58 +01:00
|
|
|
/// Populated block header
|
|
|
|
pub header: Header,
|
|
|
|
/// Populated block transactions
|
2016-02-04 17:23:53 +01:00
|
|
|
pub transactions: Vec<SignedTransaction>,
|
2016-01-17 23:07:58 +01:00
|
|
|
/// Block bytes
|
|
|
|
pub bytes: Bytes,
|
|
|
|
}
|
|
|
|
|
2016-09-27 16:50:24 +02:00
|
|
|
impl HeapSizeOf for PreverifiedBlock {
|
|
|
|
fn heap_size_of_children(&self) -> usize {
|
|
|
|
self.header.heap_size_of_children()
|
|
|
|
+ self.transactions.heap_size_of_children()
|
|
|
|
+ self.bytes.heap_size_of_children()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 21:30:22 +01:00
|
|
|
/// Phase 1 quick block verification. Only does checks that are cheap. Operates on a single block
|
2017-09-26 14:19:08 +02:00
|
|
|
pub fn verify_block_basic(header: &Header, bytes: &[u8], engine: &EthEngine) -> Result<(), Error> {
|
2017-02-22 18:24:22 +01:00
|
|
|
verify_header_params(&header, engine, true)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
verify_block_integrity(bytes, &header.transactions_root(), &header.uncles_hash())?;
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_basic(&header)?;
|
2018-04-16 15:52:12 +02:00
|
|
|
for u in Rlp::new(bytes).at(2)?.iter().map(|rlp| rlp.as_val::<Header>()) {
|
2016-12-27 12:53:56 +01:00
|
|
|
let u = u?;
|
2017-02-22 18:24:22 +01:00
|
|
|
verify_header_params(&u, engine, false)?;
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_basic(&u)?;
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
2018-03-01 19:55:24 +01:00
|
|
|
|
2018-04-16 15:52:12 +02:00
|
|
|
for t in Rlp::new(bytes).at(1)?.iter().map(|rlp| rlp.as_val::<UnverifiedTransaction>()) {
|
2018-03-01 19:55:24 +01:00
|
|
|
engine.verify_transaction_basic(&t?, &header)?;
|
2016-01-16 18:30:27 +01:00
|
|
|
}
|
2016-01-10 19:47:32 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2016-01-09 19:10:05 +01:00
|
|
|
|
2016-01-10 21:30:22 +01:00
|
|
|
/// Phase 2 verification. Perform costly checks such as transaction signatures and block nonce for ethash.
|
|
|
|
/// Still operates on a individual block
|
2016-04-06 10:07:24 +02:00
|
|
|
/// Returns a `PreverifiedBlock` structure populated with transactions
|
2017-09-26 14:19:08 +02:00
|
|
|
pub fn verify_block_unordered(header: Header, bytes: Bytes, engine: &EthEngine, check_seal: bool) -> Result<PreverifiedBlock, Error> {
|
2016-10-24 15:09:13 +02:00
|
|
|
if check_seal {
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_unordered(&header)?;
|
2018-04-16 15:52:12 +02:00
|
|
|
for u in Rlp::new(&bytes).at(2)?.iter().map(|rlp| rlp.as_val::<Header>()) {
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_unordered(&u?)?;
|
2016-10-24 15:09:13 +02:00
|
|
|
}
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
2016-03-04 11:56:04 +01:00
|
|
|
// Verify transactions.
|
2016-01-17 23:07:58 +01:00
|
|
|
let mut transactions = Vec::new();
|
2017-06-28 09:10:57 +02:00
|
|
|
let nonce_cap = if header.number() >= engine.params().dust_protection_transition {
|
|
|
|
Some((engine.params().nonce_cap_increment * header.number()).into())
|
|
|
|
} else { None };
|
2016-01-17 23:07:58 +01:00
|
|
|
{
|
2018-04-16 15:52:12 +02:00
|
|
|
let v = view!(BlockView, &bytes);
|
2016-01-17 23:07:58 +01:00
|
|
|
for t in v.transactions() {
|
2017-09-26 14:19:08 +02:00
|
|
|
let t = engine.verify_transaction_unordered(t, &header)?;
|
2017-06-28 09:10:57 +02:00
|
|
|
if let Some(max_nonce) = nonce_cap {
|
|
|
|
if t.nonce >= max_nonce {
|
|
|
|
return Err(BlockError::TooManyTransactions(t.sender()).into());
|
|
|
|
}
|
|
|
|
}
|
2016-01-17 23:07:58 +01:00
|
|
|
transactions.push(t);
|
|
|
|
}
|
2016-01-16 18:30:27 +01:00
|
|
|
}
|
2016-03-01 00:02:48 +01:00
|
|
|
Ok(PreverifiedBlock {
|
2016-01-17 23:07:58 +01:00
|
|
|
header: header,
|
|
|
|
transactions: transactions,
|
|
|
|
bytes: bytes,
|
|
|
|
})
|
2016-01-09 19:10:05 +01:00
|
|
|
}
|
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
/// Parameters for full verification of block family
|
|
|
|
pub struct FullFamilyParams<'a, C: BlockInfo + CallContract + 'a> {
|
|
|
|
/// Serialized block bytes
|
|
|
|
pub block_bytes: &'a [u8],
|
|
|
|
|
|
|
|
/// Signed transactions
|
|
|
|
pub transactions: &'a [SignedTransaction],
|
|
|
|
|
|
|
|
/// Block provider to use during verification
|
|
|
|
pub block_provider: &'a BlockProvider,
|
|
|
|
|
|
|
|
/// Engine client to use during verification
|
|
|
|
pub client: &'a C,
|
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
2016-01-11 13:51:58 +01:00
|
|
|
/// Phase 3 verification. Check block information against parent and uncles.
|
2018-03-03 18:42:13 +01:00
|
|
|
pub fn verify_block_family<C: BlockInfo + CallContract>(header: &Header, parent: &Header, engine: &EthEngine, do_full: Option<FullFamilyParams<C>>) -> Result<(), Error> {
|
2016-01-14 01:28:37 +01:00
|
|
|
// TODO: verify timestamp
|
2018-04-05 10:11:21 +02:00
|
|
|
verify_parent(&header, &parent, engine)?;
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_family(&header, &parent)?;
|
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
let params = match do_full {
|
2017-09-26 14:19:08 +02:00
|
|
|
Some(x) => x,
|
|
|
|
None => return Ok(()),
|
|
|
|
};
|
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
verify_uncles(header, params.block_bytes, params.block_provider, engine)?;
|
2017-09-26 14:19:08 +02:00
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
for transaction in params.transactions {
|
|
|
|
engine.machine().verify_transaction(transaction, header, params.client)?;
|
2017-09-26 14:19:08 +02:00
|
|
|
}
|
2016-01-10 19:47:32 +01:00
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn verify_uncles(header: &Header, bytes: &[u8], bc: &BlockProvider, engine: &EthEngine) -> Result<(), Error> {
|
2018-04-16 15:52:12 +02:00
|
|
|
let num_uncles = Rlp::new(bytes).at(2)?.item_count()?;
|
2017-12-05 15:57:45 +01:00
|
|
|
let max_uncles = engine.maximum_uncle_count(header.number());
|
2016-01-10 19:47:32 +01:00
|
|
|
if num_uncles != 0 {
|
2017-12-05 15:57:45 +01:00
|
|
|
if num_uncles > max_uncles {
|
|
|
|
return Err(From::from(BlockError::TooManyUncles(OutOfBounds {
|
|
|
|
min: None,
|
|
|
|
max: Some(max_uncles),
|
|
|
|
found: num_uncles,
|
|
|
|
})));
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut excluded = HashSet::new();
|
|
|
|
excluded.insert(header.hash());
|
2016-08-29 11:35:24 +02:00
|
|
|
let mut hash = header.parent_hash().clone();
|
2016-01-10 19:47:32 +01:00
|
|
|
excluded.insert(hash.clone());
|
2016-03-02 19:38:00 +01:00
|
|
|
for _ in 0..engine.maximum_uncle_age() {
|
2016-01-10 19:47:32 +01:00
|
|
|
match bc.block_details(&hash) {
|
|
|
|
Some(details) => {
|
|
|
|
excluded.insert(details.parent.clone());
|
2016-10-20 23:41:15 +02:00
|
|
|
let b = bc.block(&hash)
|
|
|
|
.expect("parent already known to be stored; qed");
|
2016-12-28 13:44:51 +01:00
|
|
|
excluded.extend(b.uncle_hashes());
|
2016-01-10 19:47:32 +01:00
|
|
|
hash = details.parent;
|
|
|
|
}
|
|
|
|
None => break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-10 13:36:42 +02:00
|
|
|
let mut verified = HashSet::new();
|
2018-04-16 15:52:12 +02:00
|
|
|
for uncle in Rlp::new(bytes).at(2)?.iter().map(|rlp| rlp.as_val::<Header>()) {
|
2016-12-27 12:53:56 +01:00
|
|
|
let uncle = uncle?;
|
2016-01-12 13:14:01 +01:00
|
|
|
if excluded.contains(&uncle.hash()) {
|
|
|
|
return Err(From::from(BlockError::UncleInChain(uncle.hash())))
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
|
|
|
|
2017-07-10 13:36:42 +02:00
|
|
|
if verified.contains(&uncle.hash()) {
|
|
|
|
return Err(From::from(BlockError::DuplicateUncle(uncle.hash())))
|
|
|
|
}
|
|
|
|
|
2016-01-10 19:47:32 +01:00
|
|
|
// m_currentBlock.number() - uncle.number() m_cB.n - uP.n()
|
|
|
|
// 1 2
|
|
|
|
// 2
|
|
|
|
// 3
|
|
|
|
// 4
|
|
|
|
// 5
|
|
|
|
// 6 7
|
|
|
|
// (8 Invalid)
|
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
let depth = if header.number() > uncle.number() { header.number() - uncle.number() } else { 0 };
|
2016-03-02 19:38:00 +01:00
|
|
|
if depth > engine.maximum_uncle_age() as u64 {
|
2016-08-29 11:35:24 +02:00
|
|
|
return Err(From::from(BlockError::UncleTooOld(OutOfBounds { min: Some(header.number() - depth), max: Some(header.number() - 1), found: uncle.number() })));
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
2016-01-11 12:45:35 +01:00
|
|
|
else if depth < 1 {
|
2016-08-29 11:35:24 +02:00
|
|
|
return Err(From::from(BlockError::UncleIsBrother(OutOfBounds { min: Some(header.number() - depth), max: Some(header.number() - 1), found: uncle.number() })));
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// cB
|
|
|
|
// cB.p^1 1 depth, valid uncle
|
|
|
|
// cB.p^2 ---/ 2
|
|
|
|
// cB.p^3 -----/ 3
|
|
|
|
// cB.p^4 -------/ 4
|
|
|
|
// cB.p^5 ---------/ 5
|
|
|
|
// cB.p^6 -----------/ 6
|
|
|
|
// cB.p^7 -------------/
|
|
|
|
// cB.p^8
|
2016-08-29 11:35:24 +02:00
|
|
|
let mut expected_uncle_parent = header.parent_hash().clone();
|
2018-04-03 10:01:28 +02:00
|
|
|
let uncle_parent = bc.block_header_data(&uncle.parent_hash()).ok_or_else(|| Error::from(BlockError::UnknownUncleParent(uncle.parent_hash().clone())))?;
|
2016-01-11 12:45:35 +01:00
|
|
|
for _ in 0..depth {
|
2016-01-12 13:14:01 +01:00
|
|
|
match bc.block_details(&expected_uncle_parent) {
|
2016-03-04 11:56:04 +01:00
|
|
|
Some(details) => {
|
2016-01-12 13:14:01 +01:00
|
|
|
expected_uncle_parent = details.parent;
|
|
|
|
},
|
|
|
|
None => break
|
|
|
|
}
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
|
|
|
if expected_uncle_parent != uncle_parent.hash() {
|
|
|
|
return Err(From::from(BlockError::UncleParentNotInChain(uncle_parent.hash())));
|
|
|
|
}
|
|
|
|
|
2018-05-09 12:05:56 +02:00
|
|
|
let uncle_parent = uncle_parent.decode()?;
|
2018-04-05 10:11:21 +02:00
|
|
|
verify_parent(&uncle, &uncle_parent, engine)?;
|
2017-09-26 14:19:08 +02:00
|
|
|
engine.verify_block_family(&uncle, &uncle_parent)?;
|
2017-07-10 13:36:42 +02:00
|
|
|
verified.insert(uncle.hash());
|
2016-01-10 19:47:32 +01:00
|
|
|
}
|
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
2016-01-09 19:10:05 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2016-01-10 21:30:22 +01:00
|
|
|
|
2016-01-14 19:03:48 +01:00
|
|
|
/// Phase 4 verification. Check block information against transaction enactment results,
|
2017-03-29 19:59:20 +02:00
|
|
|
pub fn verify_block_final(expected: &Header, got: &Header) -> Result<(), Error> {
|
2016-08-29 11:35:24 +02:00
|
|
|
if expected.gas_used() != got.gas_used() {
|
|
|
|
return Err(From::from(BlockError::InvalidGasUsed(Mismatch { expected: expected.gas_used().clone(), found: got.gas_used().clone() })))
|
2016-01-14 19:03:48 +01:00
|
|
|
}
|
2016-08-29 11:35:24 +02:00
|
|
|
if expected.log_bloom() != got.log_bloom() {
|
|
|
|
return Err(From::from(BlockError::InvalidLogBloom(Mismatch { expected: expected.log_bloom().clone(), found: got.log_bloom().clone() })))
|
2016-01-14 19:03:48 +01:00
|
|
|
}
|
2016-08-29 11:35:24 +02:00
|
|
|
if expected.state_root() != got.state_root() {
|
|
|
|
return Err(From::from(BlockError::InvalidStateRoot(Mismatch { expected: expected.state_root().clone(), found: got.state_root().clone() })))
|
2016-01-16 01:44:07 +01:00
|
|
|
}
|
2017-03-29 19:59:20 +02:00
|
|
|
if expected.receipts_root() != got.receipts_root() {
|
2016-08-29 11:35:24 +02:00
|
|
|
return Err(From::from(BlockError::InvalidReceiptsRoot(Mismatch { expected: expected.receipts_root().clone(), found: got.receipts_root().clone() })))
|
2016-01-14 19:03:48 +01:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-01-10 21:30:22 +01:00
|
|
|
/// Check basic header parameters.
|
2017-09-26 14:19:08 +02:00
|
|
|
pub fn verify_header_params(header: &Header, engine: &EthEngine, is_full: bool) -> Result<(), Error> {
|
2018-02-15 01:39:29 +01:00
|
|
|
let expected_seal_fields = engine.seal_fields(header);
|
|
|
|
if header.seal().len() != expected_seal_fields {
|
2017-09-26 14:19:08 +02:00
|
|
|
return Err(From::from(BlockError::InvalidSealArity(
|
2018-02-15 01:39:29 +01:00
|
|
|
Mismatch { expected: expected_seal_fields, found: header.seal().len() }
|
2017-09-26 14:19:08 +02:00
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
if header.number() >= From::from(BlockNumber::max_value()) {
|
|
|
|
return Err(From::from(BlockError::RidiculousNumber(OutOfBounds { max: Some(From::from(BlockNumber::max_value())), min: None, found: header.number() })))
|
2016-01-10 21:30:22 +01:00
|
|
|
}
|
2016-08-29 11:35:24 +02:00
|
|
|
if header.gas_used() > header.gas_limit() {
|
|
|
|
return Err(From::from(BlockError::TooMuchGasUsed(OutOfBounds { max: Some(header.gas_limit().clone()), min: None, found: header.gas_used().clone() })));
|
2016-01-10 21:30:22 +01:00
|
|
|
}
|
2016-04-09 19:20:35 +02:00
|
|
|
let min_gas_limit = engine.params().min_gas_limit;
|
2016-08-29 11:35:24 +02:00
|
|
|
if header.gas_limit() < &min_gas_limit {
|
|
|
|
return Err(From::from(BlockError::InvalidGasLimit(OutOfBounds { min: Some(min_gas_limit), max: None, found: header.gas_limit().clone() })));
|
2016-01-11 15:19:43 +01:00
|
|
|
}
|
|
|
|
let maximum_extra_data_size = engine.maximum_extra_data_size();
|
2016-08-29 11:35:24 +02:00
|
|
|
if header.number() != 0 && header.extra_data().len() > maximum_extra_data_size {
|
|
|
|
return Err(From::from(BlockError::ExtraDataOutOfBounds(OutOfBounds { min: None, max: Some(maximum_extra_data_size), found: header.extra_data().len() })));
|
2016-01-11 15:19:43 +01:00
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
|
|
|
if let Some(ref ext) = engine.machine().ethash_extensions() {
|
|
|
|
if header.number() >= ext.dao_hardfork_transition &&
|
|
|
|
header.number() <= ext.dao_hardfork_transition + 9 &&
|
|
|
|
header.extra_data()[..] != b"dao-hard-fork"[..] {
|
|
|
|
return Err(From::from(BlockError::ExtraDataOutOfBounds(OutOfBounds { min: None, max: None, found: 0 })));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-22 18:24:22 +01:00
|
|
|
if is_full {
|
2018-04-14 21:35:58 +02:00
|
|
|
const ACCEPTABLE_DRIFT: Duration = Duration::from_secs(15);
|
|
|
|
let max_time = SystemTime::now() + ACCEPTABLE_DRIFT;
|
|
|
|
let invalid_threshold = max_time + ACCEPTABLE_DRIFT * 9;
|
|
|
|
let timestamp = UNIX_EPOCH + Duration::from_secs(header.timestamp());
|
2017-12-21 15:01:05 +01:00
|
|
|
|
|
|
|
if timestamp > invalid_threshold {
|
|
|
|
return Err(From::from(BlockError::InvalidTimestamp(OutOfBounds { max: Some(max_time), min: None, found: timestamp })))
|
|
|
|
}
|
|
|
|
|
|
|
|
if timestamp > max_time {
|
|
|
|
return Err(From::from(BlockError::TemporarilyInvalid(OutOfBounds { max: Some(max_time), min: None, found: timestamp })))
|
2017-02-22 18:24:22 +01:00
|
|
|
}
|
2016-11-28 15:14:43 +01:00
|
|
|
}
|
2017-12-21 15:01:05 +01:00
|
|
|
|
2016-01-10 21:30:22 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check header parameters agains parent header.
|
2018-04-05 10:11:21 +02:00
|
|
|
fn verify_parent(header: &Header, parent: &Header, engine: &EthEngine) -> Result<(), Error> {
|
2018-04-05 11:03:25 +02:00
|
|
|
assert!(header.parent_hash().is_zero() || &parent.hash() == header.parent_hash(),
|
|
|
|
"Parent hash should already have been verified; qed");
|
|
|
|
|
2018-04-05 10:11:21 +02:00
|
|
|
let gas_limit_divisor = engine.params().gas_limit_bound_divisor;
|
|
|
|
|
|
|
|
if !engine.is_timestamp_valid(header.timestamp(), parent.timestamp()) {
|
2018-04-14 21:35:58 +02:00
|
|
|
let min = SystemTime::now() + Duration::from_secs(parent.timestamp() + 1);
|
|
|
|
let found = SystemTime::now() + Duration::from_secs(header.timestamp());
|
|
|
|
return Err(From::from(BlockError::InvalidTimestamp(OutOfBounds { max: None, min: Some(min), found })))
|
2016-01-10 21:30:22 +01:00
|
|
|
}
|
2016-08-29 11:35:24 +02:00
|
|
|
if header.number() != parent.number() + 1 {
|
|
|
|
return Err(From::from(BlockError::InvalidNumber(Mismatch { expected: parent.number() + 1, found: header.number() })));
|
2016-01-10 21:30:22 +01:00
|
|
|
}
|
2017-09-26 14:19:08 +02:00
|
|
|
|
|
|
|
if header.number() == 0 {
|
|
|
|
return Err(BlockError::RidiculousNumber(OutOfBounds { min: Some(1), max: None, found: header.number() }).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
let parent_gas_limit = *parent.gas_limit();
|
|
|
|
let min_gas = parent_gas_limit - parent_gas_limit / gas_limit_divisor;
|
|
|
|
let max_gas = parent_gas_limit + parent_gas_limit / gas_limit_divisor;
|
|
|
|
if header.gas_limit() <= &min_gas || header.gas_limit() >= &max_gas {
|
|
|
|
return Err(From::from(BlockError::InvalidGasLimit(OutOfBounds { min: Some(min_gas), max: Some(max_gas), found: header.gas_limit().clone() })));
|
|
|
|
}
|
|
|
|
|
2016-01-10 21:30:22 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify block data against header: transactions root and uncles hash.
|
|
|
|
fn verify_block_integrity(block: &[u8], transactions_root: &H256, uncles_hash: &H256) -> Result<(), Error> {
|
2018-04-16 15:52:12 +02:00
|
|
|
let block = Rlp::new(block);
|
2016-12-27 12:53:56 +01:00
|
|
|
let tx = block.at(1)?;
|
2018-02-16 20:24:16 +01:00
|
|
|
let expected_root = &ordered_trie_root(tx.iter().map(|r| r.as_raw()));
|
2016-01-10 21:30:22 +01:00
|
|
|
if expected_root != transactions_root {
|
|
|
|
return Err(From::from(BlockError::InvalidTransactionsRoot(Mismatch { expected: expected_root.clone(), found: transactions_root.clone() })))
|
|
|
|
}
|
2017-08-30 19:18:28 +02:00
|
|
|
let expected_uncles = &keccak(block.at(2)?.as_raw());
|
2016-01-10 21:30:22 +01:00
|
|
|
if expected_uncles != uncles_hash {
|
|
|
|
return Err(From::from(BlockError::InvalidUnclesHash(Mismatch { expected: expected_uncles.clone(), found: uncles_hash.clone() })))
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2018-01-11 17:49:10 +01:00
|
|
|
use super::*;
|
|
|
|
|
2017-07-29 17:12:07 +02:00
|
|
|
use std::collections::{BTreeMap, HashMap};
|
2018-03-14 12:29:52 +01:00
|
|
|
use std::time::{SystemTime, UNIX_EPOCH};
|
2018-01-14 22:43:28 +01:00
|
|
|
use ethereum_types::{H256, Bloom, U256};
|
2018-02-19 10:52:33 +01:00
|
|
|
use blockchain::{BlockDetails, TransactionAddress, BlockReceipts};
|
2018-01-11 17:49:10 +01:00
|
|
|
use encoded;
|
|
|
|
use hash::keccak;
|
2017-09-26 14:19:08 +02:00
|
|
|
use engines::EthEngine;
|
2018-01-11 17:49:10 +01:00
|
|
|
use error::BlockError::*;
|
2018-04-19 11:52:54 +02:00
|
|
|
use error::ErrorKind;
|
2018-01-11 17:49:10 +01:00
|
|
|
use ethkey::{Random, Generator};
|
|
|
|
use spec::{CommonParams, Spec};
|
2018-04-09 16:14:33 +02:00
|
|
|
use test_helpers::{create_test_block_with_data, create_test_block};
|
2018-01-11 17:49:10 +01:00
|
|
|
use transaction::{SignedTransaction, Transaction, UnverifiedTransaction, Action};
|
|
|
|
use types::log_entry::{LogEntry, LocalizedLogEntry};
|
2018-03-01 19:55:24 +01:00
|
|
|
use rlp;
|
|
|
|
use triehash::ordered_trie_root;
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
fn check_ok(result: Result<(), Error>) {
|
|
|
|
result.unwrap_or_else(|e| panic!("Block verification failed: {:?}", e));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_fail(result: Result<(), Error>, e: BlockError) {
|
|
|
|
match result {
|
2018-04-19 11:52:54 +02:00
|
|
|
Err(Error(ErrorKind::Block(ref error), _)) if *error == e => (),
|
2016-01-12 13:14:01 +01:00
|
|
|
Err(other) => panic!("Block verification failed.\nExpected: {:?}\nGot: {:?}", e, other),
|
|
|
|
Ok(_) => panic!("Block verification failed.\nExpected: {:?}\nGot: Ok", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-21 15:01:05 +01:00
|
|
|
fn check_fail_timestamp(result: Result<(), Error>, temp: bool) {
|
|
|
|
let name = if temp { "TemporarilyInvalid" } else { "InvalidTimestamp" };
|
2016-11-29 12:18:33 +01:00
|
|
|
match result {
|
2018-04-19 11:52:54 +02:00
|
|
|
Err(Error(ErrorKind::Block(BlockError::InvalidTimestamp(_)), _)) if !temp => (),
|
|
|
|
Err(Error(ErrorKind::Block(BlockError::TemporarilyInvalid(_)), _)) if temp => (),
|
2017-12-21 15:01:05 +01:00
|
|
|
Err(other) => panic!("Block verification failed.\nExpected: {}\nGot: {:?}", name, other),
|
|
|
|
Ok(_) => panic!("Block verification failed.\nExpected: {}\nGot: Ok", name),
|
2016-11-29 12:18:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
struct TestBlockChain {
|
|
|
|
blocks: HashMap<H256, Bytes>,
|
|
|
|
numbers: HashMap<BlockNumber, H256>,
|
|
|
|
}
|
|
|
|
|
2016-03-12 10:07:55 +01:00
|
|
|
impl Default for TestBlockChain {
|
|
|
|
fn default() -> Self {
|
|
|
|
TestBlockChain::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
impl TestBlockChain {
|
2016-03-12 10:07:55 +01:00
|
|
|
pub fn new() -> Self {
|
2016-01-12 13:14:01 +01:00
|
|
|
TestBlockChain {
|
|
|
|
blocks: HashMap::new(),
|
|
|
|
numbers: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn insert(&mut self, bytes: Bytes) {
|
2018-04-16 15:52:12 +02:00
|
|
|
let number = view!(BlockView, &bytes).header_view().number();
|
|
|
|
let hash = view!(BlockView, &bytes).header_view().hash();
|
2016-01-12 13:14:01 +01:00
|
|
|
self.blocks.insert(hash.clone(), bytes);
|
|
|
|
self.numbers.insert(number, hash.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BlockProvider for TestBlockChain {
|
|
|
|
fn is_known(&self, hash: &H256) -> bool {
|
|
|
|
self.blocks.contains_key(hash)
|
|
|
|
}
|
|
|
|
|
2016-10-18 18:16:00 +02:00
|
|
|
fn first_block(&self) -> Option<H256> {
|
2016-08-18 22:01:57 +02:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
/// Get raw block data
|
2016-12-28 13:44:51 +01:00
|
|
|
fn block(&self, hash: &H256) -> Option<encoded::Block> {
|
|
|
|
self.blocks.get(hash).cloned().map(encoded::Block::new)
|
2016-01-12 13:14:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-28 13:44:51 +01:00
|
|
|
fn block_header_data(&self, hash: &H256) -> Option<encoded::Header> {
|
|
|
|
self.block(hash)
|
2017-06-28 16:41:08 +02:00
|
|
|
.map(|b| b.header_view().rlp().as_raw().to_vec())
|
2016-12-28 13:44:51 +01:00
|
|
|
.map(encoded::Header::new)
|
2016-07-28 23:46:24 +02:00
|
|
|
}
|
|
|
|
|
2016-12-28 13:44:51 +01:00
|
|
|
fn block_body(&self, hash: &H256) -> Option<encoded::Body> {
|
|
|
|
self.block(hash)
|
|
|
|
.map(|b| BlockChain::block_to_body(&b.into_inner()))
|
|
|
|
.map(encoded::Body::new)
|
2016-07-28 23:46:24 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 18:16:00 +02:00
|
|
|
fn best_ancient_block(&self) -> Option<H256> {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
/// Get the familial details concerning a block.
|
|
|
|
fn block_details(&self, hash: &H256) -> Option<BlockDetails> {
|
|
|
|
self.blocks.get(hash).map(|bytes| {
|
2018-04-16 15:52:12 +02:00
|
|
|
let header = view!(BlockView, bytes).header();
|
2016-01-12 13:14:01 +01:00
|
|
|
BlockDetails {
|
2016-08-29 11:35:24 +02:00
|
|
|
number: header.number(),
|
|
|
|
total_difficulty: header.difficulty().clone(),
|
|
|
|
parent: header.parent_hash().clone(),
|
2016-01-12 13:14:01 +01:00
|
|
|
children: Vec::new(),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-08 15:53:22 +01:00
|
|
|
fn transaction_address(&self, _hash: &H256) -> Option<TransactionAddress> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
/// Get the hash of given block's number.
|
|
|
|
fn block_hash(&self, index: BlockNumber) -> Option<H256> {
|
2016-01-19 13:47:30 +01:00
|
|
|
self.numbers.get(&index).cloned()
|
2016-01-12 13:14:01 +01:00
|
|
|
}
|
2016-02-12 00:40:45 +01:00
|
|
|
|
2017-09-10 18:03:35 +02:00
|
|
|
fn block_receipts(&self, _hash: &H256) -> Option<BlockReceipts> {
|
2016-02-12 00:40:45 +01:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2016-02-17 12:35:37 +01:00
|
|
|
|
2018-03-12 21:15:55 +01:00
|
|
|
fn blocks_with_bloom(&self, _bloom: &Bloom, _from_block: BlockNumber, _to_block: BlockNumber) -> Vec<BlockNumber> {
|
2016-02-17 12:35:37 +01:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2016-09-14 12:02:30 +02:00
|
|
|
|
2018-05-02 09:40:27 +02:00
|
|
|
fn logs<F>(&self, _blocks: Vec<H256>, _matches: F, _limit: Option<usize>) -> Vec<LocalizedLogEntry>
|
2016-09-14 12:02:30 +02:00
|
|
|
where F: Fn(&LogEntry) -> bool, Self: Sized {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2016-01-12 13:14:01 +01:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn basic_test(bytes: &[u8], engine: &EthEngine) -> Result<(), Error> {
|
2018-04-16 15:52:12 +02:00
|
|
|
let header = view!(BlockView, bytes).header();
|
2016-01-15 12:26:04 +01:00
|
|
|
verify_block_basic(&header, bytes, engine)
|
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn family_test<BC>(bytes: &[u8], engine: &EthEngine, bc: &BC) -> Result<(), Error> where BC: BlockProvider {
|
2018-04-16 15:52:12 +02:00
|
|
|
let view = view!(BlockView, bytes);
|
2017-09-26 14:19:08 +02:00
|
|
|
let header = view.header();
|
|
|
|
let transactions: Vec<_> = view.transactions()
|
|
|
|
.into_iter()
|
|
|
|
.map(SignedTransaction::new)
|
|
|
|
.collect::<Result<_,_>>()?;
|
|
|
|
|
|
|
|
// TODO: client is really meant to be used for state query here by machine
|
|
|
|
// additions that need access to state (tx filter in specific)
|
|
|
|
// no existing tests need access to test, so having this not function
|
|
|
|
// is fine.
|
|
|
|
let client = ::client::TestBlockChainClient::default();
|
2018-04-03 10:01:28 +02:00
|
|
|
let parent = bc.block_header_data(header.parent_hash())
|
|
|
|
.ok_or(BlockError::UnknownParent(header.parent_hash().clone()))?
|
2018-05-09 12:05:56 +02:00
|
|
|
.decode()?;
|
2017-09-26 14:19:08 +02:00
|
|
|
|
2018-03-03 18:42:13 +01:00
|
|
|
let full_params = FullFamilyParams {
|
|
|
|
block_bytes: bytes,
|
|
|
|
transactions: &transactions[..],
|
|
|
|
block_provider: bc as &BlockProvider,
|
|
|
|
client: &client,
|
|
|
|
};
|
2017-09-26 14:19:08 +02:00
|
|
|
verify_block_family(&header, &parent, engine, Some(full_params))
|
2016-01-15 12:26:04 +01:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
fn unordered_test(bytes: &[u8], engine: &EthEngine) -> Result<(), Error> {
|
2018-04-16 15:52:12 +02:00
|
|
|
let header = view!(BlockView, bytes).header();
|
2017-06-28 09:10:57 +02:00
|
|
|
verify_block_unordered(header, bytes.to_vec(), engine, false)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-03-01 19:55:24 +01:00
|
|
|
#[test]
|
|
|
|
fn test_verify_block_basic_with_invalid_transactions() {
|
|
|
|
let spec = Spec::new_test();
|
|
|
|
let engine = &*spec.engine;
|
|
|
|
|
|
|
|
let block = {
|
|
|
|
let mut rlp = rlp::RlpStream::new_list(3);
|
|
|
|
let mut header = Header::default();
|
|
|
|
// that's an invalid transaction list rlp
|
|
|
|
let invalid_transactions = vec![vec![0u8]];
|
|
|
|
header.set_transactions_root(ordered_trie_root(&invalid_transactions));
|
|
|
|
header.set_gas_limit(engine.params().min_gas_limit);
|
|
|
|
rlp.append(&header);
|
|
|
|
rlp.append_list::<Vec<u8>, _>(&invalid_transactions);
|
|
|
|
rlp.append_raw(&rlp::EMPTY_LIST_RLP, 1);
|
|
|
|
rlp.out()
|
|
|
|
};
|
|
|
|
|
|
|
|
assert!(basic_test(&block, engine).is_err());
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
#[test]
|
|
|
|
fn test_verify_block() {
|
2017-03-20 19:14:29 +01:00
|
|
|
use rlp::RlpStream;
|
2016-09-01 14:29:59 +02:00
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
// Test against morden
|
|
|
|
let mut good = Header::new();
|
2016-01-17 12:55:00 +01:00
|
|
|
let spec = Spec::new_test();
|
2016-08-10 16:29:40 +02:00
|
|
|
let engine = &*spec.engine;
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-04-09 19:20:35 +02:00
|
|
|
let min_gas_limit = engine.params().min_gas_limit;
|
2016-08-29 11:35:24 +02:00
|
|
|
good.set_gas_limit(min_gas_limit);
|
|
|
|
good.set_timestamp(40);
|
|
|
|
good.set_number(10);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-08-24 18:35:21 +02:00
|
|
|
let keypair = Random.generate().unwrap();
|
2016-02-04 23:48:29 +01:00
|
|
|
|
|
|
|
let tr1 = Transaction {
|
|
|
|
action: Action::Create,
|
|
|
|
value: U256::from(0),
|
|
|
|
data: Bytes::new(),
|
|
|
|
gas: U256::from(30_000),
|
|
|
|
gas_price: U256::from(40_000),
|
|
|
|
nonce: U256::one()
|
2016-11-03 22:22:25 +01:00
|
|
|
}.sign(keypair.secret(), None);
|
2016-02-04 23:48:29 +01:00
|
|
|
|
|
|
|
let tr2 = Transaction {
|
|
|
|
action: Action::Create,
|
|
|
|
value: U256::from(0),
|
|
|
|
data: Bytes::new(),
|
|
|
|
gas: U256::from(30_000),
|
|
|
|
gas_price: U256::from(40_000),
|
|
|
|
nonce: U256::from(2)
|
2016-11-03 22:22:25 +01:00
|
|
|
}.sign(keypair.secret(), None);
|
2016-02-04 23:48:29 +01:00
|
|
|
|
2016-06-16 12:44:08 +02:00
|
|
|
let good_transactions = [ tr1.clone(), tr2.clone() ];
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let diff_inc = U256::from(0x40);
|
|
|
|
|
|
|
|
let mut parent6 = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
parent6.set_number(6);
|
2016-01-12 13:14:01 +01:00
|
|
|
let mut parent7 = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
parent7.set_number(7);
|
|
|
|
parent7.set_parent_hash(parent6.hash());
|
|
|
|
parent7.set_difficulty(parent6.difficulty().clone() + diff_inc);
|
|
|
|
parent7.set_timestamp(parent6.timestamp() + 10);
|
2016-01-12 13:14:01 +01:00
|
|
|
let mut parent8 = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
parent8.set_number(8);
|
|
|
|
parent8.set_parent_hash(parent7.hash());
|
|
|
|
parent8.set_difficulty(parent7.difficulty().clone() + diff_inc);
|
|
|
|
parent8.set_timestamp(parent7.timestamp() + 10);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let mut good_uncle1 = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
good_uncle1.set_number(9);
|
|
|
|
good_uncle1.set_parent_hash(parent8.hash());
|
|
|
|
good_uncle1.set_difficulty(parent8.difficulty().clone() + diff_inc);
|
|
|
|
good_uncle1.set_timestamp(parent8.timestamp() + 10);
|
|
|
|
good_uncle1.extra_data_mut().push(1u8);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let mut good_uncle2 = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
good_uncle2.set_number(8);
|
|
|
|
good_uncle2.set_parent_hash(parent7.hash());
|
|
|
|
good_uncle2.set_difficulty(parent7.difficulty().clone() + diff_inc);
|
|
|
|
good_uncle2.set_timestamp(parent7.timestamp() + 10);
|
|
|
|
good_uncle2.extra_data_mut().push(2u8);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-01-12 13:43:43 +01:00
|
|
|
let good_uncles = vec![ good_uncle1.clone(), good_uncle2.clone() ];
|
2016-01-12 13:14:01 +01:00
|
|
|
let mut uncles_rlp = RlpStream::new();
|
2017-03-20 19:14:29 +01:00
|
|
|
uncles_rlp.append_list(&good_uncles);
|
2017-08-30 19:18:28 +02:00
|
|
|
let good_uncles_hash = keccak(uncles_rlp.as_raw());
|
2018-02-16 20:24:16 +01:00
|
|
|
let good_transactions_root = ordered_trie_root(good_transactions.iter().map(|t| ::rlp::encode::<UnverifiedTransaction>(t)));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let mut parent = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
parent.set_number(9);
|
|
|
|
parent.set_timestamp(parent8.timestamp() + 10);
|
|
|
|
parent.set_parent_hash(parent8.hash());
|
|
|
|
parent.set_difficulty(parent8.difficulty().clone() + diff_inc);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
good.set_parent_hash(parent.hash());
|
|
|
|
good.set_difficulty(parent.difficulty().clone() + diff_inc);
|
|
|
|
good.set_timestamp(parent.timestamp() + 10);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let mut bc = TestBlockChain::new();
|
|
|
|
bc.insert(create_test_block(&good));
|
|
|
|
bc.insert(create_test_block(&parent));
|
|
|
|
bc.insert(create_test_block(&parent6));
|
|
|
|
bc.insert(create_test_block(&parent7));
|
|
|
|
bc.insert(create_test_block(&parent8));
|
|
|
|
|
2016-08-10 16:29:40 +02:00
|
|
|
check_ok(basic_test(&create_test_block(&good), engine));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
let mut header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_transactions_root(good_transactions_root.clone());
|
|
|
|
header.set_uncles_hash(good_uncles_hash.clone());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_ok(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_gas_limit(min_gas_limit - From::from(1));
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block(&header), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
InvalidGasLimit(OutOfBounds { min: Some(min_gas_limit), max: None, found: header.gas_limit().clone() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_number(BlockNumber::max_value());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block(&header), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
RidiculousNumber(OutOfBounds { max: Some(BlockNumber::max_value()), min: None, found: header.number() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
let gas_used = header.gas_limit().clone() + 1.into();
|
|
|
|
header.set_gas_used(gas_used);
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block(&header), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
TooMuchGasUsed(OutOfBounds { max: Some(header.gas_limit().clone()), min: None, found: header.gas_used().clone() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.extra_data_mut().resize(engine.maximum_extra_data_size() + 1, 0u8);
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block(&header), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
ExtraDataOutOfBounds(OutOfBounds { max: Some(engine.maximum_extra_data_size()), min: None, found: header.extra_data().len() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.extra_data_mut().resize(engine.maximum_extra_data_size() + 1, 0u8);
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block(&header), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
ExtraDataOutOfBounds(OutOfBounds { max: Some(engine.maximum_extra_data_size()), min: None, found: header.extra_data().len() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_uncles_hash(good_uncles_hash.clone());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
InvalidTransactionsRoot(Mismatch { expected: good_transactions_root.clone(), found: header.transactions_root().clone() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_transactions_root(good_transactions_root.clone());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine),
|
2016-08-29 11:35:24 +02:00
|
|
|
InvalidUnclesHash(Mismatch { expected: good_uncles_hash.clone(), found: header.uncles_hash().clone() }));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-08-10 16:29:40 +02:00
|
|
|
check_ok(family_test(&create_test_block(&good), engine, &bc));
|
|
|
|
check_ok(family_test(&create_test_block_with_data(&good, &good_transactions, &good_uncles), engine, &bc));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_parent_hash(H256::random());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(family_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine, &bc),
|
2016-08-29 11:35:24 +02:00
|
|
|
UnknownParent(header.parent_hash().clone()));
|
2016-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_timestamp(10);
|
2018-04-14 21:35:58 +02:00
|
|
|
check_fail_timestamp(family_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine, &bc), false);
|
2016-01-12 13:14:01 +01:00
|
|
|
|
2016-11-28 15:14:43 +01:00
|
|
|
header = good.clone();
|
|
|
|
header.set_timestamp(2450000000);
|
2017-12-21 15:01:05 +01:00
|
|
|
check_fail_timestamp(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine), false);
|
2016-11-28 15:14:43 +01:00
|
|
|
|
|
|
|
header = good.clone();
|
2018-03-14 12:29:52 +01:00
|
|
|
header.set_timestamp(SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs() + 20);
|
2017-12-21 15:01:05 +01:00
|
|
|
check_fail_timestamp(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine), true);
|
2016-11-28 15:14:43 +01:00
|
|
|
|
2017-12-08 11:43:31 +01:00
|
|
|
header = good.clone();
|
2018-03-14 12:29:52 +01:00
|
|
|
header.set_timestamp(SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs() + 10);
|
2017-12-08 11:43:31 +01:00
|
|
|
header.set_uncles_hash(good_uncles_hash.clone());
|
|
|
|
header.set_transactions_root(good_transactions_root.clone());
|
|
|
|
check_ok(basic_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine));
|
|
|
|
|
2016-01-12 13:14:01 +01:00
|
|
|
header = good.clone();
|
2016-08-29 11:35:24 +02:00
|
|
|
header.set_number(9);
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(family_test(&create_test_block_with_data(&header, &good_transactions, &good_uncles), engine, &bc),
|
2016-08-29 11:35:24 +02:00
|
|
|
InvalidNumber(Mismatch { expected: parent.number() + 1, found: header.number() }));
|
2016-03-04 11:56:04 +01:00
|
|
|
|
2016-01-12 13:43:43 +01:00
|
|
|
header = good.clone();
|
|
|
|
let mut bad_uncles = good_uncles.clone();
|
|
|
|
bad_uncles.push(good_uncle1.clone());
|
2016-08-10 16:29:40 +02:00
|
|
|
check_fail(family_test(&create_test_block_with_data(&header, &good_transactions, &bad_uncles), engine, &bc),
|
2017-12-05 15:57:45 +01:00
|
|
|
TooManyUncles(OutOfBounds { max: Some(engine.maximum_uncle_count(header.number())), min: None, found: bad_uncles.len() }));
|
2016-01-12 13:43:43 +01:00
|
|
|
|
2017-07-10 13:36:42 +02:00
|
|
|
header = good.clone();
|
|
|
|
bad_uncles = vec![ good_uncle1.clone(), good_uncle1.clone() ];
|
|
|
|
check_fail(family_test(&create_test_block_with_data(&header, &good_transactions, &bad_uncles), engine, &bc),
|
|
|
|
DuplicateUncle(good_uncle1.hash()));
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
header = good.clone();
|
|
|
|
header.set_gas_limit(0.into());
|
|
|
|
header.set_difficulty("0000000000000000000000000000000000000000000000000000000000020000".parse::<U256>().unwrap());
|
|
|
|
match family_test(&create_test_block(&header), engine, &bc) {
|
2018-04-19 11:52:54 +02:00
|
|
|
Err(Error(ErrorKind::Block(InvalidGasLimit(_)), _)) => {},
|
2017-09-26 14:19:08 +02:00
|
|
|
Err(_) => { panic!("should be invalid difficulty fail"); },
|
|
|
|
_ => { panic!("Should be error, got Ok"); },
|
|
|
|
}
|
|
|
|
|
2016-01-12 13:43:43 +01:00
|
|
|
// TODO: some additional uncle checks
|
2016-01-12 13:14:01 +01:00
|
|
|
}
|
2017-06-28 09:10:57 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dust_protection() {
|
|
|
|
use ethkey::{Generator, Random};
|
2017-07-12 13:09:17 +02:00
|
|
|
use transaction::{Transaction, Action};
|
2017-09-26 14:19:08 +02:00
|
|
|
use machine::EthereumMachine;
|
2017-06-28 09:10:57 +02:00
|
|
|
use engines::NullEngine;
|
|
|
|
|
|
|
|
let mut params = CommonParams::default();
|
|
|
|
params.dust_protection_transition = 0;
|
|
|
|
params.nonce_cap_increment = 2;
|
|
|
|
|
|
|
|
let mut header = Header::default();
|
|
|
|
header.set_number(1);
|
|
|
|
|
|
|
|
let keypair = Random.generate().unwrap();
|
|
|
|
let bad_transactions: Vec<_> = (0..3).map(|i| Transaction {
|
|
|
|
action: Action::Create,
|
|
|
|
value: U256::zero(),
|
|
|
|
data: Vec::new(),
|
|
|
|
gas: 0.into(),
|
|
|
|
gas_price: U256::zero(),
|
|
|
|
nonce: i.into(),
|
|
|
|
}.sign(keypair.secret(), None)).collect();
|
|
|
|
|
|
|
|
let good_transactions = [bad_transactions[0].clone(), bad_transactions[1].clone()];
|
|
|
|
|
2017-09-26 14:19:08 +02:00
|
|
|
let machine = EthereumMachine::regular(params, BTreeMap::new());
|
|
|
|
let engine = NullEngine::new(Default::default(), machine);
|
2017-06-28 09:10:57 +02:00
|
|
|
check_fail(unordered_test(&create_test_block_with_data(&header, &bad_transactions, &[]), &engine), TooManyTransactions(keypair.address()));
|
|
|
|
unordered_test(&create_test_block_with_data(&header, &good_transactions, &[]), &engine).unwrap();
|
|
|
|
}
|
2016-01-12 13:14:01 +01:00
|
|
|
}
|