* version: bump beta to 2.3.3 * import rpc transactions sequentially (#10051) * import rpc transactions sequentially * use impl trait in argument position, renamed ProspectiveDispatcher to WithPostSign * grouped imports * integrates PostSign with ProspectiveSigner * fix spaces, removed unnecessary type cast and duplicate polling * clean up code style * Apply suggestions from code review * Fix Windows build (#10284) * Don't run the CPP example on CI (#10285) * Don't run the CPP example on CI * Add comment * CI optimizations (#10297) * CI optimizations * fix stripping * new dockerfile * no need n submodule upd * review * moved dockerfile * it becomes large * onchain update depends on s3 * fix dependency * fix cache status * fix cache status * new cache status * fix publish job (#10317) * fix publish job * dashes and colonels * Add Statetest support for Constantinople Fix (#10323) * Update Ethereum tests repo to v6.0.0-beta.3 tag * Add spec for St.Peter's / ConstantinopleFix statetests * Properly handle check_epoch_end_signal errors (#10015) * Make check_epoch_end_signal to only use immutable data * Move check_epoch_end_signals out of commit_block * Make check_epoch_end_signals possible to fail * Actually return the error from check_epoch_end_signals * Remove a clone * Fix import error * cargo: fix compilation * fix(add helper for timestamp overflows) (#10330) * fix(add helper timestamp overflows) * fix(simplify code) * fix(make helper private) * Remove CallContract and RegistryInfo re-exports from `ethcore/client` (#10205) * Remove re-export of `CallContract` and `RegistryInfo` from `ethcore/client` * Remove CallContract and RegistryInfo re-exports again This was missed while fixing merge conflicts * fix(docker): fix not receives SIGINT (#10059) * fix(docker): fix not receives SIGINT * fix: update with reviews * update with review * update * update * snap: official image / test (#10168) * official image / test * fix / test * bit more necromancy * fix paths * add source bin/df /test * add source bin/df /test2 * something w paths /test * something w paths /test * add source-type /test * show paths /test * copy plugin /test * plugin -> nil * install rhash * no questions while installing rhash * publish snap only for release * Don't add discovery initiators to the node table (#10305) * Don't add discovery initiators to the node table * Use enums for tracking state of the nodes in discovery * Dont try to ping ourselves * Fix minor nits * Update timeouts when observing an outdated node * Extracted update_bucket_record from update_node * Fixed typo * Fix two final nits from @todr * Extract CallContract and RegistryInfo traits into their own crate (#10178) * Create call-contract crate * Add license * First attempt at using extracted CallContract trait * Remove unneeded `extern crate` calls * Move RegistryInfo trait into call-contract crate * Move service-transaction-checker from ethcore to ethcore-miner * Update Cargo.lock file * Re-export call_contract * Merge CallContract and RegistryInfo imports * Remove commented code * Add documentation to call_contract crate * Add TODO for removal of re-exports * Update call-contract crate description Co-Authored-By: HCastano <HCastano@users.noreply.github.com> * Rename call-contract crate to ethcore-call-contract * Remove CallContract and RegistryInfo re-exports from `ethcore/client` (#10205) * Remove re-export of `CallContract` and `RegistryInfo` from `ethcore/client` * Remove CallContract and RegistryInfo re-exports again This was missed while fixing merge conflicts * fixed: types::transaction::SignedTransaction; (#10229) * fix daemonize dependency * fix build * change docker image based on debian instead of ubuntu due to the chan… (#10336) * change docker image based on debian instead of ubuntu due to the changes of the build container * role back docker build image and docker deploy image to ubuntu:xenial based (#10338) * perform stripping during build (#10208) * perform stripping during build (#10208) * perform stripping during build * var RUSTFLAGS
251 lines
6.9 KiB
Rust
251 lines
6.9 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/>.
|
|
|
|
//! Blockchain access for transaction pool.
|
|
|
|
use std::{
|
|
collections::HashMap,
|
|
fmt,
|
|
sync::Arc,
|
|
};
|
|
|
|
use ethereum_types::{H256, U256, Address};
|
|
use ethcore_miner::pool;
|
|
use ethcore_miner::pool::client::NonceClient;
|
|
use ethcore_miner::service_transaction_checker::ServiceTransactionChecker;
|
|
use types::transaction::{
|
|
self,
|
|
UnverifiedTransaction,
|
|
SignedTransaction,
|
|
};
|
|
use types::header::Header;
|
|
use parking_lot::RwLock;
|
|
|
|
use account_provider::AccountProvider;
|
|
use call_contract::CallContract;
|
|
use client::{TransactionId, BlockInfo, Nonce};
|
|
use engines::EthEngine;
|
|
use miner;
|
|
use transaction_ext::Transaction;
|
|
|
|
/// Cache for state nonces.
|
|
#[derive(Debug, Clone)]
|
|
pub struct NonceCache {
|
|
nonces: Arc<RwLock<HashMap<Address, U256>>>,
|
|
limit: usize
|
|
}
|
|
|
|
impl NonceCache {
|
|
/// Create new cache with a limit of `limit` entries.
|
|
pub fn new(limit: usize) -> Self {
|
|
NonceCache {
|
|
nonces: Arc::new(RwLock::new(HashMap::with_capacity(limit / 2))),
|
|
limit,
|
|
}
|
|
}
|
|
|
|
/// Retrieve a cached nonce for given sender.
|
|
pub fn get(&self, sender: &Address) -> Option<U256> {
|
|
self.nonces.read().get(sender).cloned()
|
|
}
|
|
|
|
/// Clear all entries from the cache.
|
|
pub fn clear(&self) {
|
|
self.nonces.write().clear();
|
|
}
|
|
}
|
|
|
|
/// Blockchain accesss for transaction pool.
|
|
pub struct PoolClient<'a, C: 'a> {
|
|
chain: &'a C,
|
|
cached_nonces: CachedNonceClient<'a, C>,
|
|
engine: &'a EthEngine,
|
|
accounts: Option<&'a AccountProvider>,
|
|
best_block_header: Header,
|
|
service_transaction_checker: Option<ServiceTransactionChecker>,
|
|
}
|
|
|
|
impl<'a, C: 'a> Clone for PoolClient<'a, C> {
|
|
fn clone(&self) -> Self {
|
|
PoolClient {
|
|
chain: self.chain,
|
|
cached_nonces: self.cached_nonces.clone(),
|
|
engine: self.engine,
|
|
accounts: self.accounts.clone(),
|
|
best_block_header: self.best_block_header.clone(),
|
|
service_transaction_checker: self.service_transaction_checker.clone(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> PoolClient<'a, C> where
|
|
C: BlockInfo + CallContract,
|
|
{
|
|
/// Creates new client given chain, nonce cache, accounts and service transaction verifier.
|
|
pub fn new(
|
|
chain: &'a C,
|
|
cache: &'a NonceCache,
|
|
engine: &'a EthEngine,
|
|
accounts: Option<&'a AccountProvider>,
|
|
refuse_service_transactions: bool,
|
|
) -> Self {
|
|
let best_block_header = chain.best_block_header();
|
|
PoolClient {
|
|
chain,
|
|
cached_nonces: CachedNonceClient::new(chain, cache),
|
|
engine,
|
|
accounts,
|
|
best_block_header,
|
|
service_transaction_checker: if refuse_service_transactions {
|
|
None
|
|
} else {
|
|
Some(Default::default())
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Verifies if signed transaction is executable.
|
|
///
|
|
/// This should perform any verifications that rely on chain status.
|
|
pub fn verify_signed(&self, tx: &SignedTransaction) -> Result<(), transaction::Error> {
|
|
self.engine.machine().verify_transaction(&tx, &self.best_block_header, self.chain)
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> fmt::Debug for PoolClient<'a, C> {
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(fmt, "PoolClient")
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> pool::client::Client for PoolClient<'a, C> where
|
|
C: miner::TransactionVerifierClient + Sync,
|
|
{
|
|
fn transaction_already_included(&self, hash: &H256) -> bool {
|
|
self.chain.transaction_block(TransactionId::Hash(*hash)).is_some()
|
|
}
|
|
|
|
fn verify_transaction(&self, tx: UnverifiedTransaction)-> Result<SignedTransaction, transaction::Error> {
|
|
self.engine.verify_transaction_basic(&tx, &self.best_block_header)?;
|
|
let tx = self.engine.verify_transaction_unordered(tx, &self.best_block_header)?;
|
|
|
|
self.verify_signed(&tx)?;
|
|
|
|
Ok(tx)
|
|
}
|
|
|
|
fn account_details(&self, address: &Address) -> pool::client::AccountDetails {
|
|
pool::client::AccountDetails {
|
|
nonce: self.cached_nonces.account_nonce(address),
|
|
balance: self.chain.latest_balance(address),
|
|
is_local: self.accounts.map_or(false, |accounts| accounts.has_account(*address)),
|
|
}
|
|
}
|
|
|
|
fn required_gas(&self, tx: &transaction::Transaction) -> U256 {
|
|
tx.gas_required(&self.chain.latest_schedule()).into()
|
|
}
|
|
|
|
fn transaction_type(&self, tx: &SignedTransaction) -> pool::client::TransactionType {
|
|
match self.service_transaction_checker {
|
|
None => pool::client::TransactionType::Regular,
|
|
Some(ref checker) => match checker.check(self.chain, &tx) {
|
|
Ok(true) => pool::client::TransactionType::Service,
|
|
Ok(false) => pool::client::TransactionType::Regular,
|
|
Err(e) => {
|
|
debug!(target: "txqueue", "Unable to verify service transaction: {:?}", e);
|
|
pool::client::TransactionType::Regular
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
fn decode_transaction(&self, transaction: &[u8]) -> Result<UnverifiedTransaction, transaction::Error> {
|
|
self.engine.decode_transaction(transaction)
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> NonceClient for PoolClient<'a, C> where
|
|
C: Nonce + Sync,
|
|
{
|
|
fn account_nonce(&self, address: &Address) -> U256 {
|
|
self.cached_nonces.account_nonce(address)
|
|
}
|
|
}
|
|
|
|
pub(crate) struct CachedNonceClient<'a, C: 'a> {
|
|
client: &'a C,
|
|
cache: &'a NonceCache,
|
|
}
|
|
|
|
impl<'a, C: 'a> Clone for CachedNonceClient<'a, C> {
|
|
fn clone(&self) -> Self {
|
|
CachedNonceClient {
|
|
client: self.client,
|
|
cache: self.cache,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> fmt::Debug for CachedNonceClient<'a, C> {
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
fmt.debug_struct("CachedNonceClient")
|
|
.field("cache", &self.cache.nonces.read().len())
|
|
.field("limit", &self.cache.limit)
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> CachedNonceClient<'a, C> {
|
|
pub fn new(client: &'a C, cache: &'a NonceCache) -> Self {
|
|
CachedNonceClient {
|
|
client,
|
|
cache,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a, C: 'a> NonceClient for CachedNonceClient<'a, C> where
|
|
C: Nonce + Sync,
|
|
{
|
|
fn account_nonce(&self, address: &Address) -> U256 {
|
|
if let Some(nonce) = self.cache.nonces.read().get(address) {
|
|
return *nonce;
|
|
}
|
|
|
|
// We don't check again if cache has been populated.
|
|
// It's not THAT expensive to fetch the nonce from state.
|
|
let mut cache = self.cache.nonces.write();
|
|
let nonce = self.client.latest_nonce(address);
|
|
cache.insert(*address, nonce);
|
|
|
|
if cache.len() < self.cache.limit {
|
|
return nonce
|
|
}
|
|
|
|
debug!(target: "txpool", "NonceCache: reached limit.");
|
|
trace_time!("nonce_cache:clear");
|
|
|
|
// Remove excessive amount of entries from the cache
|
|
let to_remove: Vec<_> = cache.keys().take(self.cache.limit / 2).cloned().collect();
|
|
for x in to_remove {
|
|
cache.remove(&x);
|
|
}
|
|
|
|
nonce
|
|
}
|
|
}
|