fixed ethcore tx_filter (#8200)

This commit is contained in:
Marek Kotewicz 2018-03-28 18:59:16 +09:00 committed by André Silva
parent 2632310b6a
commit 23ea4798e0

View File

@ -16,11 +16,10 @@
//! Smart contract based transaction filter. //! Smart contract based transaction filter.
use std::collections::HashMap;
use std::collections::hash_map::Entry;
use ethereum_types::{H256, Address}; use ethereum_types::{H256, Address};
use client::{BlockInfo, CallContract, BlockId, ChainNotify}; use lru_cache::LruCache;
use bytes::Bytes;
use client::{BlockInfo, CallContract, BlockId};
use parking_lot::Mutex; use parking_lot::Mutex;
use spec::CommonParams; use spec::CommonParams;
use transaction::{Action, SignedTransaction}; use transaction::{Action, SignedTransaction};
@ -43,7 +42,7 @@ mod tx_permissions {
pub struct TransactionFilter { pub struct TransactionFilter {
contract: transact_acl::TransactAcl, contract: transact_acl::TransactAcl,
contract_address: Address, contract_address: Address,
permission_cache: Mutex<HashMap<(H256, Address), u32>>, permission_cache: Mutex<LruCache<(H256, Address), u32>>,
} }
impl TransactionFilter { impl TransactionFilter {
@ -53,19 +52,14 @@ impl TransactionFilter {
TransactionFilter { TransactionFilter {
contract: transact_acl::TransactAcl::default(), contract: transact_acl::TransactAcl::default(),
contract_address: address, contract_address: address,
permission_cache: Mutex::new(HashMap::new()), permission_cache: Mutex::new(LruCache::new(MAX_CACHE_SIZE)),
} }
) )
} }
/// Clear cached permissions.
pub fn clear_cache(&self) {
self.permission_cache.lock().clear();
}
/// Check if transaction is allowed at given block. /// Check if transaction is allowed at given block.
pub fn transaction_allowed<C: BlockInfo + CallContract>(&self, parent_hash: &H256, transaction: &SignedTransaction, client: &C) -> bool { pub fn transaction_allowed<C: BlockInfo + CallContract>(&self, parent_hash: &H256, transaction: &SignedTransaction, client: &C) -> bool {
let mut cache = self.permission_cache.lock(); let len = cache.len(); let mut cache = self.permission_cache.lock();
let tx_type = match transaction.action { let tx_type = match transaction.action {
Action::Create => tx_permissions::CREATE, Action::Create => tx_permissions::CREATE,
@ -75,10 +69,14 @@ impl TransactionFilter {
tx_permissions::BASIC tx_permissions::BASIC
} }
}; };
let sender = transaction.sender(); let sender = transaction.sender();
match cache.entry((*parent_hash, sender)) { let key = (*parent_hash, sender);
Entry::Occupied(entry) => *entry.get() & tx_type != 0,
Entry::Vacant(entry) => { if let Some(permissions) = cache.get_mut(&key) {
return *permissions & tx_type != 0;
}
let contract_address = self.contract_address; let contract_address = self.contract_address;
let permissions = self.contract.functions() let permissions = self.contract.functions()
.allowed_tx_types() .allowed_tx_types()
@ -89,22 +87,11 @@ impl TransactionFilter {
tx_permissions::NONE tx_permissions::NONE
}); });
if len < MAX_CACHE_SIZE { cache.insert((*parent_hash, sender), permissions);
entry.insert(permissions);
}
trace!("Permissions required: {}, got: {}", tx_type, permissions); trace!("Permissions required: {}, got: {}", tx_type, permissions);
permissions & tx_type != 0 permissions & tx_type != 0
} }
}
}
}
impl ChainNotify for TransactionFilter {
fn new_blocks(&self, imported: Vec<H256>, _invalid: Vec<H256>, _enacted: Vec<H256>, _retracted: Vec<H256>, _sealed: Vec<H256>, _proposed: Vec<Bytes>, _duration: u64) {
if !imported.is_empty() {
self.clear_cache();
}
}
} }
#[cfg(test)] #[cfg(test)]