* Add client-traits crate Move the BlockInfo trait to new crate * New crate `machine` Contains code extracted from ethcore that defines `Machine`, `Externalities` and other execution related code. * Use new machine and client-traits crates in ethcore * Use new crates machine and client-traits instead of ethcore where appropriate * Fix tests * Don't re-export so many types from ethcore::client * Fixing more fallout from removing re-export * fix test * More fallout from not re-exporting types * Add some docs * cleanup * import the macro edition style * Tweak docs * Add missing import * remove unused ethabi_derive imports * Use latest ethabi-contract * Move many traits from ethcore/client/traits to client-traits crate Initial version of extracted Engine trait * Move snapshot related traits to the engine crate (eew) * Move a few snapshot related types to common_types Cleanup Executed as exported from machine crate * fix warning * Gradually introduce new engine crate: snapshot * ethcore typechecks with new engine crate * Sort out types outside ethcore * Add an EpochVerifier to ethash and use that in Engine.epoch_verifier() Cleanup * Document pub members * Sort out tests Sort out default impls for EpochVerifier * Add test-helpers feature and move EngineSigner impl to the right place * Sort out tests * Sort out tests and refactor verification types * Fix missing traits * More missing traits Fix Histogram * Fix tests and cleanup * cleanup * Put back needed logger import * Don't rexport common_types from ethcore/src/client Don't export ethcore::client::* * Remove files no longer used Use types from the engine crate Explicit exports from engine::engine * Get rid of itertools * Move a few more traits from ethcore to client-traits: BlockChainReset, ScheduleInfo, StateClient * Move ProvingBlockChainClient to client-traits * Don't re-export ForkChoice and Transition from ethcore * Address grumbles: sort imports, remove commented out code * Fix merge resolution error * Extract the Clique engine to own crate * Extract NullEngine and the block_reward module from ethcore * Extract InstantSeal engine to own crate * Extract remaining engines * Extract executive_state to own crate so it can be used by engine crates * Remove snapshot stuff from the engine crate * Put snapshot traits back in ethcore * cleanup * Remove stuff from ethcore * Don't use itertools * itertools in aura is legit-ish * More post-merge fixes * Re-export less types in client * cleanup * Update ethcore/block-reward/Cargo.toml Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update ethcore/engines/basic-authority/Cargo.toml Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update ethcore/engines/ethash/Cargo.toml Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update ethcore/engines/clique/src/lib.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * signers is already a ref * Add an EngineType enum to tighten up Engine.name() * Introduce Snapshotting enum to distinguish the type of snapshots a chain uses * Rename supports_warp to snapshot_mode * Missing import * Update ethcore/src/snapshot/consensus/mod.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * remove double-semicolons
152 lines
5.6 KiB
Rust
152 lines
5.6 KiB
Rust
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Ethereum.
|
|
|
|
// Parity Ethereum 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 Ethereum 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 Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/// Validator lists.
|
|
|
|
#[cfg(any(test, feature = "test-helpers"))]
|
|
mod test;
|
|
mod simple_list;
|
|
mod safe_contract;
|
|
mod contract;
|
|
mod multi;
|
|
|
|
use std::sync::Weak;
|
|
|
|
use client_traits::EngineClient;
|
|
use common_types::{
|
|
BlockNumber,
|
|
header::Header,
|
|
ids::BlockId,
|
|
errors::EthcoreError,
|
|
engines::machine::{Call, AuxiliaryData},
|
|
};
|
|
use engine::SystemCall;
|
|
use ethereum_types::{H256, Address};
|
|
use ethjson::spec::ValidatorSet as ValidatorSpec;
|
|
use machine::Machine;
|
|
// The MallocSizeOf derive looks for this in the root
|
|
use parity_util_mem as malloc_size_of;
|
|
use parity_bytes::Bytes;
|
|
|
|
#[cfg(any(test, feature = "test-helpers"))]
|
|
pub use self::test::TestSet;
|
|
pub use self::simple_list::SimpleList;
|
|
|
|
use self::contract::ValidatorContract;
|
|
use self::safe_contract::ValidatorSafeContract;
|
|
use self::multi::Multi;
|
|
|
|
/// Creates a validator set from spec.
|
|
pub fn new_validator_set(spec: ValidatorSpec) -> Box<dyn ValidatorSet> {
|
|
match spec {
|
|
ValidatorSpec::List(list) => Box::new(SimpleList::new(list.into_iter().map(Into::into).collect())),
|
|
ValidatorSpec::SafeContract(address) => Box::new(ValidatorSafeContract::new(address.into())),
|
|
ValidatorSpec::Contract(address) => Box::new(ValidatorContract::new(address.into())),
|
|
ValidatorSpec::Multi(sequence) => Box::new(
|
|
Multi::new(sequence.into_iter().map(|(block, set)| (block.into(), new_validator_set(set))).collect())
|
|
),
|
|
}
|
|
}
|
|
|
|
/// A validator set.
|
|
pub trait ValidatorSet: Send + Sync + 'static {
|
|
/// Get the default "Call" helper, for use in general operation.
|
|
// TODO [keorn]: this is a hack intended to migrate off of
|
|
// a strict dependency on state always being available.
|
|
fn default_caller(&self, block_id: BlockId) -> Box<Call>;
|
|
|
|
/// Checks if a given address is a validator,
|
|
/// using underlying, default call mechanism.
|
|
fn contains(&self, parent: &H256, address: &Address) -> bool {
|
|
let default = self.default_caller(BlockId::Hash(*parent));
|
|
self.contains_with_caller(parent, address, &*default)
|
|
}
|
|
|
|
/// Draws an validator nonce modulo number of validators.
|
|
fn get(&self, parent: &H256, nonce: usize) -> Address {
|
|
let default = self.default_caller(BlockId::Hash(*parent));
|
|
self.get_with_caller(parent, nonce, &*default)
|
|
}
|
|
|
|
/// Returns the current number of validators.
|
|
fn count(&self, parent: &H256) -> usize {
|
|
let default = self.default_caller(BlockId::Hash(*parent));
|
|
self.count_with_caller(parent, &*default)
|
|
}
|
|
|
|
/// Signalling that a new epoch has begun.
|
|
///
|
|
/// All calls here will be from the `SYSTEM_ADDRESS`: 2^160 - 2
|
|
/// and will have an effect on the block's state.
|
|
/// The caller provided here may not generate proofs.
|
|
///
|
|
/// `first` is true if this is the first block in the set.
|
|
fn on_epoch_begin(&self, _first: bool, _header: &Header, _call: &mut SystemCall) -> Result<(), EthcoreError> {
|
|
Ok(())
|
|
}
|
|
|
|
/// Extract genesis epoch data from the genesis state and header.
|
|
fn genesis_epoch_data(&self, _header: &Header, _call: &Call) -> Result<Vec<u8>, String> { Ok(Vec::new()) }
|
|
|
|
/// Whether this block is the last one in its epoch.
|
|
///
|
|
/// Indicates that the validator set changed at the given block in a manner
|
|
/// that doesn't require finality.
|
|
///
|
|
/// `first` is true if this is the first block in the set.
|
|
fn is_epoch_end(&self, first: bool, chain_head: &Header) -> Option<Vec<u8>>;
|
|
|
|
/// Whether the given block signals the end of an epoch, but change won't take effect
|
|
/// until finality.
|
|
///
|
|
/// Engine should set `first` only if the header is genesis. Multiplexing validator
|
|
/// sets can set `first` to internal changes.
|
|
fn signals_epoch_end(
|
|
&self,
|
|
first: bool,
|
|
header: &Header,
|
|
aux: AuxiliaryData,
|
|
) -> engine::EpochChange;
|
|
|
|
/// Recover the validator set from the given proof, the block number, and
|
|
/// whether this header is first in its set.
|
|
///
|
|
/// May fail if the given header doesn't kick off an epoch or
|
|
/// the proof is invalid.
|
|
///
|
|
/// Returns the set, along with a flag indicating whether finality of a specific
|
|
/// hash should be proven.
|
|
fn epoch_set(&self, first: bool, machine: &Machine, number: BlockNumber, proof: &[u8])
|
|
-> Result<(SimpleList, Option<H256>), EthcoreError>;
|
|
|
|
/// Checks if a given address is a validator, with the given function
|
|
/// for executing synchronous calls to contracts.
|
|
fn contains_with_caller(&self, parent_block_hash: &H256, address: &Address, caller: &Call) -> bool;
|
|
|
|
/// Draws an validator nonce modulo number of validators.
|
|
fn get_with_caller(&self, parent_block_hash: &H256, nonce: usize, caller: &Call) -> Address;
|
|
|
|
/// Returns the current number of validators.
|
|
fn count_with_caller(&self, parent_block_hash: &H256, caller: &Call) -> usize;
|
|
|
|
/// Notifies about malicious behaviour.
|
|
fn report_malicious(&self, _validator: &Address, _set_block: BlockNumber, _block: BlockNumber, _proof: Bytes) {}
|
|
/// Notifies about benign misbehaviour.
|
|
fn report_benign(&self, _validator: &Address, _set_block: BlockNumber, _block: BlockNumber) {}
|
|
/// Allows blockchain state access.
|
|
fn register_client(&self, _client: Weak<dyn EngineClient>) {}
|
|
}
|