e11353f94c
* Introducing ValidSignedTransaction * Verifiying transactions in engines * Widening use of VerifiedSignedTransaction * Renaming Transactions * Uncommenting banning queue & Fixing tests * Fixing json tests * Fixing pre-homestead test * Fixing imports * Addressing grumbles * Fixing test
473 lines
17 KiB
Rust
473 lines
17 KiB
Rust
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
|
// 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/>.
|
|
|
|
//! A blockchain engine that supports a non-instant BFT proof-of-authority.
|
|
|
|
use std::sync::atomic::{AtomicUsize, AtomicBool, Ordering as AtomicOrdering};
|
|
use std::sync::Weak;
|
|
use std::time::{UNIX_EPOCH, Duration};
|
|
use util::*;
|
|
use ethkey::{verify_address, Signature};
|
|
use rlp::{UntrustedRlp, Rlp, View, encode};
|
|
use account_provider::AccountProvider;
|
|
use block::*;
|
|
use spec::CommonParams;
|
|
use engines::{Engine, Seal, EngineError};
|
|
use header::Header;
|
|
use error::{Error, BlockError};
|
|
use blockchain::extras::BlockDetails;
|
|
use views::HeaderView;
|
|
use evm::Schedule;
|
|
use ethjson;
|
|
use io::{IoContext, IoHandler, TimerToken, IoService};
|
|
use env_info::EnvInfo;
|
|
use builtin::Builtin;
|
|
use client::{Client, EngineClient};
|
|
use super::validator_set::{ValidatorSet, new_validator_set};
|
|
use state::CleanupMode;
|
|
|
|
/// `AuthorityRound` params.
|
|
#[derive(Debug, PartialEq)]
|
|
pub struct AuthorityRoundParams {
|
|
/// Gas limit divisor.
|
|
pub gas_limit_bound_divisor: U256,
|
|
/// Time to wait before next block or authority switching.
|
|
pub step_duration: Duration,
|
|
/// Block reward.
|
|
pub block_reward: U256,
|
|
/// Starting step,
|
|
pub start_step: Option<u64>,
|
|
/// Valid validators.
|
|
pub validators: ethjson::spec::ValidatorSet,
|
|
}
|
|
|
|
impl From<ethjson::spec::AuthorityRoundParams> for AuthorityRoundParams {
|
|
fn from(p: ethjson::spec::AuthorityRoundParams) -> Self {
|
|
AuthorityRoundParams {
|
|
gas_limit_bound_divisor: p.gas_limit_bound_divisor.into(),
|
|
step_duration: Duration::from_secs(p.step_duration.into()),
|
|
validators: p.validators,
|
|
block_reward: p.block_reward.map_or_else(U256::zero, Into::into),
|
|
start_step: p.start_step.map(Into::into),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Engine using `AuthorityRound` proof-of-work consensus algorithm, suitable for Ethereum
|
|
/// mainnet chains in the Olympic, Frontier and Homestead eras.
|
|
pub struct AuthorityRound {
|
|
params: CommonParams,
|
|
gas_limit_bound_divisor: U256,
|
|
block_reward: U256,
|
|
step_duration: Duration,
|
|
builtins: BTreeMap<Address, Builtin>,
|
|
transition_service: IoService<()>,
|
|
step: AtomicUsize,
|
|
proposed: AtomicBool,
|
|
client: RwLock<Option<Weak<EngineClient>>>,
|
|
account_provider: Mutex<Arc<AccountProvider>>,
|
|
password: RwLock<Option<String>>,
|
|
validators: Box<ValidatorSet + Send + Sync>,
|
|
}
|
|
|
|
fn header_step(header: &Header) -> Result<usize, ::rlp::DecoderError> {
|
|
UntrustedRlp::new(&header.seal().get(0).expect("was either checked with verify_block_basic or is genesis; has 2 fields; qed (Make sure the spec file has a correct genesis seal)")).as_val()
|
|
}
|
|
|
|
fn header_signature(header: &Header) -> Result<Signature, ::rlp::DecoderError> {
|
|
UntrustedRlp::new(&header.seal().get(1).expect("was checked with verify_block_basic; has 2 fields; qed")).as_val::<H520>().map(Into::into)
|
|
}
|
|
|
|
trait AsMillis {
|
|
fn as_millis(&self) -> u64;
|
|
}
|
|
|
|
impl AsMillis for Duration {
|
|
fn as_millis(&self) -> u64 {
|
|
self.as_secs()*1_000 + (self.subsec_nanos()/1_000_000) as u64
|
|
}
|
|
}
|
|
|
|
impl AuthorityRound {
|
|
/// Create a new instance of AuthorityRound engine.
|
|
pub fn new(params: CommonParams, our_params: AuthorityRoundParams, builtins: BTreeMap<Address, Builtin>) -> Result<Arc<Self>, Error> {
|
|
let should_timeout = our_params.start_step.is_none();
|
|
let initial_step = our_params.start_step.unwrap_or_else(|| (unix_now().as_secs() / our_params.step_duration.as_secs())) as usize;
|
|
let engine = Arc::new(
|
|
AuthorityRound {
|
|
params: params,
|
|
gas_limit_bound_divisor: our_params.gas_limit_bound_divisor,
|
|
block_reward: our_params.block_reward,
|
|
step_duration: our_params.step_duration,
|
|
builtins: builtins,
|
|
transition_service: IoService::<()>::start()?,
|
|
step: AtomicUsize::new(initial_step),
|
|
proposed: AtomicBool::new(false),
|
|
client: RwLock::new(None),
|
|
account_provider: Mutex::new(Arc::new(AccountProvider::transient_provider())),
|
|
password: RwLock::new(None),
|
|
validators: new_validator_set(our_params.validators),
|
|
});
|
|
// Do not initialize timeouts for tests.
|
|
if should_timeout {
|
|
let handler = TransitionHandler { engine: Arc::downgrade(&engine) };
|
|
engine.transition_service.register_handler(Arc::new(handler))?;
|
|
}
|
|
Ok(engine)
|
|
}
|
|
|
|
fn remaining_step_duration(&self) -> Duration {
|
|
let now = unix_now();
|
|
let step_end = self.step_duration * (self.step.load(AtomicOrdering::SeqCst) as u32 + 1);
|
|
if step_end > now {
|
|
step_end - now
|
|
} else {
|
|
Duration::from_secs(0)
|
|
}
|
|
}
|
|
|
|
fn step_proposer(&self, step: usize) -> Address {
|
|
self.validators.get(step)
|
|
}
|
|
|
|
fn is_step_proposer(&self, step: usize, address: &Address) -> bool {
|
|
self.step_proposer(step) == *address
|
|
}
|
|
}
|
|
|
|
fn unix_now() -> Duration {
|
|
UNIX_EPOCH.elapsed().expect("Valid time has to be set in your system.")
|
|
}
|
|
|
|
struct TransitionHandler {
|
|
engine: Weak<AuthorityRound>,
|
|
}
|
|
|
|
const ENGINE_TIMEOUT_TOKEN: TimerToken = 23;
|
|
|
|
impl IoHandler<()> for TransitionHandler {
|
|
fn initialize(&self, io: &IoContext<()>) {
|
|
if let Some(engine) = self.engine.upgrade() {
|
|
io.register_timer_once(ENGINE_TIMEOUT_TOKEN, engine.remaining_step_duration().as_millis())
|
|
.unwrap_or_else(|e| warn!(target: "poa", "Failed to start consensus step timer: {}.", e))
|
|
}
|
|
}
|
|
|
|
fn timeout(&self, io: &IoContext<()>, timer: TimerToken) {
|
|
if timer == ENGINE_TIMEOUT_TOKEN {
|
|
if let Some(engine) = self.engine.upgrade() {
|
|
engine.step();
|
|
io.register_timer_once(ENGINE_TIMEOUT_TOKEN, engine.remaining_step_duration().as_millis())
|
|
.unwrap_or_else(|e| warn!(target: "poa", "Failed to restart consensus step timer: {}.", e))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Engine for AuthorityRound {
|
|
fn name(&self) -> &str { "AuthorityRound" }
|
|
fn version(&self) -> SemanticVersion { SemanticVersion::new(1, 0, 0) }
|
|
/// Two fields - consensus step and the corresponding proposer signature.
|
|
fn seal_fields(&self) -> usize { 2 }
|
|
|
|
fn params(&self) -> &CommonParams { &self.params }
|
|
fn builtins(&self) -> &BTreeMap<Address, Builtin> { &self.builtins }
|
|
|
|
fn step(&self) {
|
|
self.step.fetch_add(1, AtomicOrdering::SeqCst);
|
|
self.proposed.store(false, AtomicOrdering::SeqCst);
|
|
if let Some(ref weak) = *self.client.read() {
|
|
if let Some(c) = weak.upgrade() {
|
|
c.update_sealing();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Additional engine-specific information for the user/developer concerning `header`.
|
|
fn extra_info(&self, header: &Header) -> BTreeMap<String, String> {
|
|
map![
|
|
"step".into() => header_step(header).as_ref().map(ToString::to_string).unwrap_or("".into()),
|
|
"signature".into() => header_signature(header).as_ref().map(ToString::to_string).unwrap_or("".into())
|
|
]
|
|
}
|
|
|
|
fn schedule(&self, _env_info: &EnvInfo) -> Schedule {
|
|
Schedule::new_post_eip150(usize::max_value(), true, true, true)
|
|
}
|
|
|
|
fn populate_from_parent(&self, header: &mut Header, parent: &Header, gas_floor_target: U256, _gas_ceil_target: U256) {
|
|
header.set_difficulty(parent.difficulty().clone());
|
|
header.set_gas_limit({
|
|
let gas_limit = parent.gas_limit().clone();
|
|
let bound_divisor = self.gas_limit_bound_divisor;
|
|
if gas_limit < gas_floor_target {
|
|
min(gas_floor_target, gas_limit + gas_limit / bound_divisor - 1.into())
|
|
} else {
|
|
max(gas_floor_target, gas_limit - gas_limit / bound_divisor + 1.into())
|
|
}
|
|
});
|
|
}
|
|
|
|
fn is_sealer(&self, author: &Address) -> Option<bool> {
|
|
Some(self.validators.contains(author))
|
|
}
|
|
|
|
/// Attempt to seal the block internally.
|
|
///
|
|
/// This operation is synchronous and may (quite reasonably) not be available, in which `false` will
|
|
/// be returned.
|
|
fn generate_seal(&self, block: &ExecutedBlock) -> Seal {
|
|
if self.proposed.load(AtomicOrdering::SeqCst) { return Seal::None; }
|
|
let header = block.header();
|
|
let step = self.step.load(AtomicOrdering::SeqCst);
|
|
if self.is_step_proposer(step, header.author()) {
|
|
let ref ap = *self.account_provider.lock();
|
|
if let Ok(signature) = ap.sign(*header.author(), self.password.read().clone(), header.bare_hash()) {
|
|
trace!(target: "poa", "generate_seal: Issuing a block for step {}.", step);
|
|
self.proposed.store(true, AtomicOrdering::SeqCst);
|
|
return Seal::Regular(vec![encode(&step).to_vec(), encode(&(&*signature as &[u8])).to_vec()]);
|
|
} else {
|
|
warn!(target: "poa", "generate_seal: FAIL: Accounts secret key unavailable.");
|
|
}
|
|
} else {
|
|
trace!(target: "poa", "generate_seal: Not a proposer for step {}.", step);
|
|
}
|
|
Seal::None
|
|
}
|
|
|
|
/// Apply the block reward on finalisation of the block.
|
|
fn on_close_block(&self, block: &mut ExecutedBlock) {
|
|
let fields = block.fields_mut();
|
|
// Bestow block reward
|
|
fields.state.add_balance(fields.header.author(), &self.block_reward, CleanupMode::NoEmpty);
|
|
// Commit state so that we can actually figure out the state root.
|
|
if let Err(e) = fields.state.commit() {
|
|
warn!("Encountered error on state commit: {}", e);
|
|
}
|
|
}
|
|
|
|
/// Check the number of seal fields.
|
|
fn verify_block_basic(&self, header: &Header, _block: Option<&[u8]>) -> Result<(), Error> {
|
|
if header.seal().len() != self.seal_fields() {
|
|
trace!(target: "poa", "verify_block_basic: wrong number of seal fields");
|
|
Err(From::from(BlockError::InvalidSealArity(
|
|
Mismatch { expected: self.seal_fields(), found: header.seal().len() }
|
|
)))
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// Check if the signature belongs to the correct proposer.
|
|
fn verify_block_unordered(&self, header: &Header, _block: Option<&[u8]>) -> Result<(), Error> {
|
|
let header_step = header_step(header)?;
|
|
// Give one step slack if step is lagging, double vote is still not possible.
|
|
if header_step <= self.step.load(AtomicOrdering::SeqCst) + 1 {
|
|
let proposer_signature = header_signature(header)?;
|
|
let ok_sig = verify_address(&self.step_proposer(header_step), &proposer_signature, &header.bare_hash())?;
|
|
if ok_sig {
|
|
Ok(())
|
|
} else {
|
|
trace!(target: "poa", "verify_block_unordered: invalid seal signature");
|
|
Err(BlockError::InvalidSeal)?
|
|
}
|
|
} else {
|
|
trace!(target: "poa", "verify_block_unordered: block from the future");
|
|
Err(BlockError::InvalidSeal)?
|
|
}
|
|
}
|
|
|
|
fn verify_block_family(&self, header: &Header, parent: &Header, _block: Option<&[u8]>) -> Result<(), Error> {
|
|
if header.number() == 0 {
|
|
return Err(From::from(BlockError::RidiculousNumber(OutOfBounds { min: Some(1), max: None, found: header.number() })));
|
|
}
|
|
|
|
let step = header_step(header)?;
|
|
// Check if parent is from a previous step.
|
|
if step == header_step(parent)? {
|
|
trace!(target: "poa", "Multiple blocks proposed for step {}.", step);
|
|
Err(EngineError::DoubleVote(header.author().clone()))?;
|
|
}
|
|
|
|
let gas_limit_divisor = self.gas_limit_bound_divisor;
|
|
let min_gas = parent.gas_limit().clone() - parent.gas_limit().clone() / gas_limit_divisor;
|
|
let max_gas = parent.gas_limit().clone() + parent.gas_limit().clone() / 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() })));
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn is_new_best_block(&self, _best_total_difficulty: U256, best_header: HeaderView, _parent_details: &BlockDetails, new_header: &HeaderView) -> bool {
|
|
let new_number = new_header.number();
|
|
let best_number = best_header.number();
|
|
if new_number != best_number {
|
|
new_number > best_number
|
|
} else {
|
|
// Take the oldest step at given height.
|
|
let new_step: usize = Rlp::new(&new_header.seal()[0]).as_val();
|
|
let best_step: usize = Rlp::new(&best_header.seal()[0]).as_val();
|
|
new_step < best_step
|
|
}
|
|
}
|
|
|
|
fn register_client(&self, client: Weak<Client>) {
|
|
*self.client.write() = Some(client.clone());
|
|
self.validators.register_call_contract(client);
|
|
}
|
|
|
|
fn set_signer(&self, _address: Address, password: String) {
|
|
*self.password.write() = Some(password);
|
|
}
|
|
|
|
fn register_account_provider(&self, account_provider: Arc<AccountProvider>) {
|
|
*self.account_provider.lock() = account_provider;
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use util::*;
|
|
use env_info::EnvInfo;
|
|
use header::Header;
|
|
use error::{Error, BlockError};
|
|
use ethkey::Secret;
|
|
use rlp::encode;
|
|
use block::*;
|
|
use tests::helpers::*;
|
|
use account_provider::AccountProvider;
|
|
use spec::Spec;
|
|
use engines::Seal;
|
|
|
|
#[test]
|
|
fn has_valid_metadata() {
|
|
let engine = Spec::new_test_round().engine;
|
|
assert!(!engine.name().is_empty());
|
|
assert!(engine.version().major >= 1);
|
|
}
|
|
|
|
#[test]
|
|
fn can_return_schedule() {
|
|
let engine = Spec::new_test_round().engine;
|
|
let schedule = engine.schedule(&EnvInfo {
|
|
number: 10000000,
|
|
author: 0.into(),
|
|
timestamp: 0,
|
|
difficulty: 0.into(),
|
|
last_hashes: Arc::new(vec![]),
|
|
gas_used: 0.into(),
|
|
gas_limit: 0.into(),
|
|
});
|
|
|
|
assert!(schedule.stack_limit > 0);
|
|
}
|
|
|
|
#[test]
|
|
fn verification_fails_on_short_seal() {
|
|
let engine = Spec::new_test_round().engine;
|
|
let header: Header = Header::default();
|
|
|
|
let verify_result = engine.verify_block_basic(&header, None);
|
|
|
|
match verify_result {
|
|
Err(Error::Block(BlockError::InvalidSealArity(_))) => {},
|
|
Err(_) => { panic!("should be block seal-arity mismatch error (got {:?})", verify_result); },
|
|
_ => { panic!("Should be error, got Ok"); },
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn can_do_signature_verification_fail() {
|
|
let engine = Spec::new_test_round().engine;
|
|
let mut header: Header = Header::default();
|
|
header.set_seal(vec![encode(&H520::default()).to_vec()]);
|
|
|
|
let verify_result = engine.verify_block_unordered(&header, None);
|
|
assert!(verify_result.is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn generates_seal_and_does_not_double_propose() {
|
|
let tap = AccountProvider::transient_provider();
|
|
let addr1 = tap.insert_account(Secret::from_slice(&"1".sha3()).unwrap(), "1").unwrap();
|
|
let addr2 = tap.insert_account(Secret::from_slice(&"2".sha3()).unwrap(), "2").unwrap();
|
|
|
|
let spec = Spec::new_test_round();
|
|
let engine = &*spec.engine;
|
|
engine.register_account_provider(Arc::new(tap));
|
|
let genesis_header = spec.genesis_header();
|
|
let db1 = spec.ensure_db_good(get_temp_state_db().take(), &Default::default()).unwrap();
|
|
let db2 = spec.ensure_db_good(get_temp_state_db().take(), &Default::default()).unwrap();
|
|
let last_hashes = Arc::new(vec![genesis_header.hash()]);
|
|
let b1 = OpenBlock::new(engine, Default::default(), false, db1, &genesis_header, last_hashes.clone(), addr1, (3141562.into(), 31415620.into()), vec![]).unwrap();
|
|
let b1 = b1.close_and_lock();
|
|
let b2 = OpenBlock::new(engine, Default::default(), false, db2, &genesis_header, last_hashes, addr2, (3141562.into(), 31415620.into()), vec![]).unwrap();
|
|
let b2 = b2.close_and_lock();
|
|
|
|
engine.set_signer(addr1, "1".into());
|
|
if let Seal::Regular(seal) = engine.generate_seal(b1.block()) {
|
|
assert!(b1.clone().try_seal(engine, seal).is_ok());
|
|
// Second proposal is forbidden.
|
|
assert!(engine.generate_seal(b1.block()) == Seal::None);
|
|
}
|
|
|
|
engine.set_signer(addr2, "2".into());
|
|
if let Seal::Regular(seal) = engine.generate_seal(b2.block()) {
|
|
assert!(b2.clone().try_seal(engine, seal).is_ok());
|
|
// Second proposal is forbidden.
|
|
assert!(engine.generate_seal(b2.block()) == Seal::None);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn proposer_switching() {
|
|
let mut header: Header = Header::default();
|
|
let tap = AccountProvider::transient_provider();
|
|
let addr = tap.insert_account(Secret::from_slice(&"0".sha3()).unwrap(), "0").unwrap();
|
|
|
|
header.set_author(addr);
|
|
|
|
let engine = Spec::new_test_round().engine;
|
|
|
|
let signature = tap.sign(addr, Some("0".into()), header.bare_hash()).unwrap();
|
|
// Two validators.
|
|
// Spec starts with step 2.
|
|
header.set_seal(vec![encode(&2usize).to_vec(), encode(&(&*signature as &[u8])).to_vec()]);
|
|
assert!(engine.verify_block_seal(&header).is_err());
|
|
header.set_seal(vec![encode(&1usize).to_vec(), encode(&(&*signature as &[u8])).to_vec()]);
|
|
assert!(engine.verify_block_seal(&header).is_ok());
|
|
}
|
|
|
|
#[test]
|
|
fn rejects_future_block() {
|
|
let mut header: Header = Header::default();
|
|
let tap = AccountProvider::transient_provider();
|
|
let addr = tap.insert_account(Secret::from_slice(&"0".sha3()).unwrap(), "0").unwrap();
|
|
|
|
header.set_author(addr);
|
|
|
|
let engine = Spec::new_test_round().engine;
|
|
|
|
let signature = tap.sign(addr, Some("0".into()), header.bare_hash()).unwrap();
|
|
// Two validators.
|
|
// Spec starts with step 2.
|
|
header.set_seal(vec![encode(&1usize).to_vec(), encode(&(&*signature as &[u8])).to_vec()]);
|
|
assert!(engine.verify_block_seal(&header).is_ok());
|
|
header.set_seal(vec![encode(&5usize).to_vec(), encode(&(&*signature as &[u8])).to_vec()]);
|
|
assert!(engine.verify_block_seal(&header).is_err());
|
|
}
|
|
}
|