2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2018-04-13 17:34:27 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2018-04-13 17:34:27 +02:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2018-04-13 17:34:27 +02:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-13 17:34:27 +02:00
|
|
|
|
|
|
|
//! Blockchain access for transaction pool.
|
|
|
|
|
2018-07-13 12:23:57 +02:00
|
|
|
use std::{collections::HashMap, fmt, sync::Arc};
|
2018-04-13 17:34:27 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
use ethcore_miner::{
|
|
|
|
local_accounts::LocalAccounts, pool, pool::client::NonceClient,
|
2019-01-16 19:52:21 +01:00
|
|
|
service_transaction_checker::ServiceTransactionChecker,
|
2018-04-13 17:34:27 +02:00
|
|
|
};
|
2019-01-04 14:05:46 +01:00
|
|
|
use ethereum_types::{Address, H256, U256};
|
2018-04-13 17:34:27 +02:00
|
|
|
use parking_lot::RwLock;
|
2019-01-04 14:05:46 +01:00
|
|
|
use types::{
|
2018-04-13 17:34:27 +02:00
|
|
|
header::Header,
|
2019-12-16 14:53:34 +01:00
|
|
|
transaction::{self, SignedTransaction, UnverifiedTransaction},
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
2018-04-13 17:34:27 +02:00
|
|
|
|
2019-01-17 16:43:08 +01:00
|
|
|
use call_contract::CallContract;
|
|
|
|
use client::{BlockInfo, Nonce, TransactionId};
|
2018-04-13 17:34:27 +02:00
|
|
|
use engines::EthEngine;
|
|
|
|
use miner;
|
2019-01-04 14:05:46 +01:00
|
|
|
use transaction_ext::Transaction;
|
2018-04-13 17:34:27 +02:00
|
|
|
|
2018-07-05 17:27:48 +02:00
|
|
|
/// Cache for state nonces.
|
2018-07-13 12:23:57 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2018-07-05 17:27:48 +02:00
|
|
|
pub struct NonceCache {
|
2018-07-13 12:23:57 +02:00
|
|
|
nonces: Arc<RwLock<HashMap<Address, U256>>>,
|
2018-07-05 17:27:48 +02:00
|
|
|
limit: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NonceCache {
|
|
|
|
/// Create new cache with a limit of `limit` entries.
|
|
|
|
pub fn new(limit: usize) -> Self {
|
|
|
|
NonceCache {
|
2018-07-13 12:23:57 +02:00
|
|
|
nonces: Arc::new(RwLock::new(HashMap::with_capacity(limit / 2))),
|
2018-07-05 17:27:48 +02:00
|
|
|
limit,
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-07-05 17:27:48 +02:00
|
|
|
/// Retrieve a cached nonce for given sender.
|
|
|
|
pub fn get(&self, sender: &Address) -> Option<U256> {
|
|
|
|
self.nonces.read().get(sender).cloned()
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-07-05 17:27:48 +02:00
|
|
|
/// Clear all entries from the cache.
|
|
|
|
pub fn clear(&self) {
|
|
|
|
self.nonces.write().clear();
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:34:27 +02:00
|
|
|
|
|
|
|
/// Blockchain accesss for transaction pool.
|
|
|
|
pub struct PoolClient<'a, C: 'a> {
|
|
|
|
chain: &'a C,
|
|
|
|
cached_nonces: CachedNonceClient<'a, C>,
|
2020-07-29 10:36:15 +02:00
|
|
|
engine: &'a dyn EthEngine,
|
|
|
|
accounts: &'a dyn LocalAccounts,
|
2018-04-13 17:34:27 +02:00
|
|
|
best_block_header: Header,
|
2019-03-31 10:39:38 +02:00
|
|
|
service_transaction_checker: Option<&'a ServiceTransactionChecker>,
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2019-02-07 14:34:24 +01:00
|
|
|
C: BlockInfo + CallContract,
|
2018-04-13 17:34:27 +02:00
|
|
|
{
|
|
|
|
/// Creates new client given chain, nonce cache, accounts and service transaction verifier.
|
|
|
|
pub fn new(
|
|
|
|
chain: &'a C,
|
2018-07-05 17:27:48 +02:00
|
|
|
cache: &'a NonceCache,
|
2020-07-29 10:36:15 +02:00
|
|
|
engine: &'a dyn EthEngine,
|
|
|
|
accounts: &'a dyn LocalAccounts,
|
2019-03-31 10:39:38 +02:00
|
|
|
service_transaction_checker: Option<&'a ServiceTransactionChecker>,
|
2018-04-13 17:34:27 +02:00
|
|
|
) -> Self {
|
|
|
|
let best_block_header = chain.best_block_header();
|
|
|
|
PoolClient {
|
|
|
|
chain,
|
|
|
|
cached_nonces: CachedNonceClient::new(chain, cache),
|
|
|
|
engine,
|
|
|
|
accounts,
|
|
|
|
best_block_header,
|
2019-03-31 10:39:38 +02:00
|
|
|
service_transaction_checker,
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-09-12 18:43:53 +02:00
|
|
|
/// Verifies transaction against its block (before its import into this block)
|
|
|
|
/// Also Verifies if signed transaction is executable.
|
2018-04-13 17:34:27 +02:00
|
|
|
///
|
|
|
|
/// This should perform any verifications that rely on chain status.
|
2019-09-12 18:43:53 +02:00
|
|
|
pub fn verify_for_pending_block(
|
|
|
|
&self,
|
|
|
|
tx: &SignedTransaction,
|
|
|
|
header: &Header,
|
|
|
|
) -> Result<(), transaction::Error> {
|
|
|
|
self.engine.machine().verify_transaction_basic(tx, header)?;
|
|
|
|
self.engine
|
|
|
|
.machine()
|
|
|
|
.verify_transaction(tx, &self.best_block_header, self.chain)
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-12-16 14:53:34 +01:00
|
|
|
fn verify_transaction_basic(
|
|
|
|
&self,
|
|
|
|
tx: &UnverifiedTransaction,
|
|
|
|
) -> Result<(), transaction::Error> {
|
|
|
|
self.engine
|
|
|
|
.verify_transaction_basic(tx, &self.best_block_header)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-12-16 14:53:34 +01:00
|
|
|
fn verify_transaction(
|
|
|
|
&self,
|
|
|
|
tx: UnverifiedTransaction,
|
|
|
|
) -> Result<SignedTransaction, transaction::Error> {
|
2018-04-13 17:34:27 +02:00
|
|
|
self.engine
|
|
|
|
.verify_transaction_basic(&tx, &self.best_block_header)?;
|
|
|
|
let tx = self
|
|
|
|
.engine
|
|
|
|
.verify_transaction_unordered(tx, &self.best_block_header)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-09-12 18:43:53 +02:00
|
|
|
self.engine
|
|
|
|
.machine()
|
|
|
|
.verify_transaction(&tx, &self.best_block_header, self.chain)?;
|
2018-04-13 17:34:27 +02:00
|
|
|
Ok(tx)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
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),
|
2019-02-07 14:34:24 +01:00
|
|
|
is_local: self.accounts.is_local(address),
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
fn required_gas(&self, tx: &transaction::Transaction) -> U256 {
|
|
|
|
tx.gas_required(&self.chain.latest_schedule()).into()
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
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
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-04-13 17:34:27 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-27 15:02:45 +02:00
|
|
|
fn decode_transaction(
|
|
|
|
&self,
|
|
|
|
transaction: &[u8],
|
|
|
|
) -> Result<UnverifiedTransaction, transaction::Error> {
|
|
|
|
self.engine.decode_transaction(transaction)
|
|
|
|
}
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2018-07-05 17:27:48 +02:00
|
|
|
cache: &'a NonceCache,
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
2018-07-05 17:27:48 +02:00
|
|
|
.field("cache", &self.cache.nonces.read().len())
|
|
|
|
.field("limit", &self.cache.limit)
|
2018-04-13 17:34:27 +02:00
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, C: 'a> CachedNonceClient<'a, C> {
|
2018-07-05 17:27:48 +02:00
|
|
|
pub fn new(client: &'a C, cache: &'a NonceCache) -> Self {
|
2018-04-13 17:34:27 +02:00
|
|
|
CachedNonceClient { client, cache }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, C: 'a> NonceClient for CachedNonceClient<'a, C>
|
|
|
|
where
|
|
|
|
C: Nonce + Sync,
|
|
|
|
{
|
|
|
|
fn account_nonce(&self, address: &Address) -> U256 {
|
2018-07-05 17:27:48 +02:00
|
|
|
if let Some(nonce) = self.cache.nonces.read().get(address) {
|
2018-04-13 17:34:27 +02:00
|
|
|
return *nonce;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
// We don't check again if cache has been populated.
|
|
|
|
// It's not THAT expensive to fetch the nonce from state.
|
2018-07-05 17:27:48 +02:00
|
|
|
let mut cache = self.cache.nonces.write();
|
2018-04-13 17:34:27 +02:00
|
|
|
let nonce = self.client.latest_nonce(address);
|
|
|
|
cache.insert(*address, nonce);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-07-05 17:27:48 +02:00
|
|
|
if cache.len() < self.cache.limit {
|
2018-04-13 17:34:27 +02:00
|
|
|
return nonce;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-07-05 17:27:48 +02:00
|
|
|
debug!(target: "txpool", "NonceCache: reached limit.");
|
|
|
|
trace_time!("nonce_cache:clear");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
// Remove excessive amount of entries from the cache
|
2018-07-05 17:27:48 +02:00
|
|
|
let to_remove: Vec<_> = cache.keys().take(self.cache.limit / 2).cloned().collect();
|
|
|
|
for x in to_remove {
|
|
|
|
cache.remove(&x);
|
2018-04-13 17:34:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 17:34:27 +02:00
|
|
|
nonce
|
|
|
|
}
|
|
|
|
}
|