openethereum/ethcore/src/state.rs

441 lines
14 KiB
Rust
Raw Normal View History

2016-01-10 14:05:39 +01:00
use common::*;
use engine::Engine;
2016-01-11 17:37:22 +01:00
use executive::Executive;
use pod_account::*;
use pod_state::PodState;
2016-01-25 23:37:49 +01:00
//use state_diff::*; // TODO: uncomment once to_pod() works correctly.
2015-12-19 22:15:22 +01:00
2016-02-03 13:20:32 +01:00
/// Result type for the execution ("application") of a transaction.
2016-01-11 20:47:19 +01:00
pub type ApplyResult = Result<Receipt, Error>;
2015-12-13 21:36:17 +01:00
2015-12-13 23:12:22 +01:00
/// Representation of the entire state of all accounts in the system.
#[derive(Clone)]
2015-12-13 21:36:17 +01:00
pub struct State {
2016-01-18 13:54:46 +01:00
db: JournalDB,
2015-12-13 21:36:17 +01:00
root: H256,
2015-12-19 22:15:22 +01:00
cache: RefCell<HashMap<Address, Option<Account>>>,
2015-12-13 21:36:17 +01:00
2015-12-19 22:15:22 +01:00
account_start_nonce: U256,
2015-12-13 21:36:17 +01:00
}
impl State {
/// Creates new state with empty state root
#[cfg(test)]
2016-01-18 13:54:46 +01:00
pub fn new(mut db: JournalDB, account_start_nonce: U256) -> State {
2015-12-13 21:36:17 +01:00
let mut root = H256::new();
{
// init trie and reset root too null
let _ = SecTrieDBMut::new(&mut db, &mut root);
2015-12-13 21:36:17 +01:00
}
State {
db: db,
root: root,
2015-12-19 22:15:22 +01:00
cache: RefCell::new(HashMap::new()),
account_start_nonce: account_start_nonce,
2015-12-13 21:36:17 +01:00
}
}
/// Creates new state with existing state root
2016-01-18 13:54:46 +01:00
pub fn from_existing(db: JournalDB, root: H256, account_start_nonce: U256) -> State {
2015-12-13 21:36:17 +01:00
{
// trie should panic! if root does not exist
let _ = SecTrieDB::new(&db, &root);
2015-12-13 21:36:17 +01:00
}
State {
db: db,
root: root,
2015-12-19 22:15:22 +01:00
cache: RefCell::new(HashMap::new()),
account_start_nonce: account_start_nonce,
2015-12-13 21:36:17 +01:00
}
}
/// Destroy the current object and return root and database.
2016-01-18 13:54:46 +01:00
pub fn drop(self) -> (H256, JournalDB) {
2015-12-19 19:03:42 +01:00
(self.root, self.db)
}
2015-12-19 22:15:22 +01:00
/// Return reference to root
pub fn root(&self) -> &H256 {
&self.root
}
2016-01-09 14:19:35 +01:00
/// Create a new contract at address `contract`. If there is already an account at the address
/// it will have its code reset, ready for `init_code()`.
pub fn new_contract(&mut self, contract: &Address, balance: U256) {
self.cache.borrow_mut().insert(contract.clone(), Some(Account::new_contract(balance)));
2016-01-09 14:19:35 +01:00
}
/// Remove an existing account.
pub fn kill_account(&mut self, account: &Address) {
self.cache.borrow_mut().insert(account.clone(), None);
}
2016-01-12 12:34:14 +01:00
/// Determine whether an account exists.
pub fn exists(&self, a: &Address) -> bool {
self.cache.borrow().get(&a).unwrap_or(&None).is_some() || SecTrieDB::new(&self.db, &self.root).contains(&a)
}
/// Get the balance of account `a`.
2015-12-19 22:15:22 +01:00
pub fn balance(&self, a: &Address) -> U256 {
2016-01-17 15:56:09 +01:00
self.get(a, false).as_ref().map_or(U256::zero(), |account| account.balance().clone())
}
2015-12-19 22:15:22 +01:00
/// Get the nonce of account `a`.
pub fn nonce(&self, a: &Address) -> U256 {
2016-01-17 15:56:09 +01:00
self.get(a, false).as_ref().map_or(U256::zero(), |account| account.nonce().clone())
2015-12-19 22:15:22 +01:00
}
/// Mutate storage of account `a` so that it is `value` for `key`.
pub fn storage_at(&self, a: &Address, key: &H256) -> H256 {
2016-01-17 15:56:09 +01:00
self.get(a, false).as_ref().map_or(H256::new(), |a|a.storage_at(&self.db, key))
2015-12-19 22:15:22 +01:00
}
/// Mutate storage of account `a` so that it is `value` for `key`.
2016-01-16 17:17:43 +01:00
pub fn code(&self, a: &Address) -> Option<Bytes> {
2016-01-17 15:56:09 +01:00
self.get(a, true).as_ref().map_or(None, |a|a.code().map(|x|x.to_vec()))
2015-12-19 22:15:22 +01:00
}
/// Add `incr` to the balance of account `a`.
pub fn add_balance(&mut self, a: &Address, incr: &U256) {
2016-01-16 01:48:38 +01:00
let old = self.balance(a);
2016-01-15 22:55:04 +01:00
self.require(a, false).add_balance(incr);
2016-01-16 01:48:38 +01:00
trace!("state: add_balance({}, {}): {} -> {}\n", a, incr, old, self.balance(a));
}
/// Subtract `decr` from the balance of account `a`.
pub fn sub_balance(&mut self, a: &Address, decr: &U256) {
2016-01-16 01:48:38 +01:00
let old = self.balance(a);
2016-01-15 22:55:04 +01:00
self.require(a, false).sub_balance(decr);
2016-01-16 01:48:38 +01:00
trace!("state: sub_balance({}, {}): {} -> {}\n", a, decr, old, self.balance(a));
}
/// Subtracts `by` from the balance of `from` and adds it to that of `to`.
pub fn transfer_balance(&mut self, from: &Address, to: &Address, by: &U256) {
self.sub_balance(from, by);
self.add_balance(to, by);
}
/// Increment the nonce of account `a` by 1.
pub fn inc_nonce(&mut self, a: &Address) {
self.require(a, false).inc_nonce()
}
/// Mutate storage of account `a` so that it is `value` for `key`.
2015-12-19 22:15:22 +01:00
pub fn set_storage(&mut self, a: &Address, key: H256, value: H256) {
2016-01-14 23:52:26 +01:00
self.require(a, false).set_storage(key, value)
}
/// Initialise the code of account `a` so that it is `value` for `key`.
/// NOTE: Account should have been created with `new_contract`.
pub fn init_code(&mut self, a: &Address, code: Bytes) {
2016-01-09 14:19:35 +01:00
self.require_or_from(a, true, || Account::new_contract(U256::from(0u8)), |_|{}).init_code(code);
}
/// Execute a given transaction.
/// This will change the state accordingly.
pub fn apply(&mut self, env_info: &EnvInfo, engine: &Engine, t: &Transaction) -> ApplyResult {
2016-01-25 23:24:51 +01:00
// let old = self.to_pod();
2016-01-15 18:56:28 +01:00
2016-01-11 17:37:22 +01:00
let e = try!(Executive::new(self, env_info, engine).transact(t));
2016-01-15 18:56:28 +01:00
2016-01-25 23:37:49 +01:00
// TODO uncomment once to_pod() works correctly.
2016-01-25 23:24:51 +01:00
// trace!("Applied transaction. Diff:\n{}\n", StateDiff::diff_pod(&old, &self.to_pod()));
2016-01-11 17:37:22 +01:00
self.commit();
2016-01-15 02:52:37 +01:00
let receipt = Receipt::new(self.root().clone(), e.cumulative_gas_used, e.logs);
2016-01-25 23:24:51 +01:00
// trace!("Transaction receipt: {:?}", receipt);
2016-01-15 02:52:37 +01:00
Ok(receipt)
}
2016-02-02 23:06:34 +01:00
/// Reverts uncommited changed.
2016-01-14 14:36:07 +01:00
pub fn revert(&mut self, backup: State) {
self.cache = backup.cache;
}
/// Commit accounts to SecTrieDBMut. This is similar to cpp-ethereum's dev::eth::commit.
/// `accounts` is mutable because we may need to commit the code or storage and record that.
2016-01-17 15:56:09 +01:00
#[allow(match_ref_pats)]
2016-01-15 04:02:06 +01:00
pub fn commit_into(db: &mut HashDB, root: &mut H256, accounts: &mut HashMap<Address, Option<Account>>) {
2015-12-13 21:36:17 +01:00
// first, commit the sub trees.
2015-12-13 23:12:22 +01:00
// TODO: is this necessary or can we dispense with the `ref mut a` for just `a`?
for (_, ref mut a) in accounts.iter_mut() {
match a {
&mut&mut Some(ref mut account) => {
account.commit_storage(db);
account.commit_code(db);
}
&mut&mut None => {}
}
2015-12-13 21:36:17 +01:00
}
{
2016-01-15 04:02:06 +01:00
let mut trie = SecTrieDBMut::from_existing(db, root);
2015-12-13 23:12:22 +01:00
for (address, ref a) in accounts.iter() {
2016-01-17 15:56:09 +01:00
match **a {
Some(ref account) => trie.insert(address, &account.rlp()),
None => trie.remove(address),
2015-12-13 23:12:22 +01:00
}
2015-12-13 21:36:17 +01:00
}
}
}
2015-12-13 23:12:22 +01:00
/// Commits our cached account changes into the trie.
pub fn commit(&mut self) {
2016-01-15 04:02:06 +01:00
Self::commit_into(&mut self.db, &mut self.root, self.cache.borrow_mut().deref_mut());
2015-12-13 21:36:17 +01:00
}
/// Populate the state from `accounts`.
#[cfg(test)]
2016-01-14 12:27:35 +01:00
pub fn populate_from(&mut self, accounts: PodState) {
for (add, acc) in accounts.drain().into_iter() {
self.cache.borrow_mut().insert(add, Some(Account::from_pod(acc)));
}
}
/// Populate a PodAccount map from this state.
pub fn to_hashmap_pod(&self) -> HashMap<Address, PodAccount> {
// TODO: handle database rather than just the cache.
self.cache.borrow().iter().fold(HashMap::new(), |mut m, (add, opt)| {
2016-01-17 15:56:09 +01:00
if let Some(ref acc) = *opt {
m.insert(add.clone(), PodAccount::from_account(acc));
}
m
})
}
#[cfg(test)]
/// Populate a PodAccount map from this state.
2016-01-14 12:27:35 +01:00
pub fn to_pod(&self) -> PodState {
// TODO: handle database rather than just the cache.
2016-01-25 18:56:36 +01:00
PodState::from(self.cache.borrow().iter().fold(BTreeMap::new(), |mut m, (add, opt)| {
2016-01-17 15:56:09 +01:00
if let Some(ref acc) = *opt {
m.insert(add.clone(), PodAccount::from_account(acc));
}
m
2016-01-14 12:27:35 +01:00
}))
}
/// Pull account `a` in our cache from the trie DB and return it.
/// `require_code` requires that the code be cached, too.
2015-12-19 22:15:22 +01:00
fn get(&self, a: &Address, require_code: bool) -> Ref<Option<Account>> {
2016-01-15 22:55:04 +01:00
self.cache.borrow_mut().entry(a.clone()).or_insert_with(|| {
SecTrieDB::new(&self.db, &self.root).get(&a).map(|rlp| Account::from_rlp(rlp))
});
if require_code {
2015-12-19 22:15:22 +01:00
if let Some(ref mut account) = self.cache.borrow_mut().get_mut(a).unwrap().as_mut() {
account.cache_code(&self.db);
}
}
2015-12-19 22:15:22 +01:00
Ref::map(self.cache.borrow(), |m| m.get(a).unwrap())
}
/// Pull account `a` in our cache from the trie DB. `require_code` requires that the code be cached, too.
2015-12-19 22:15:22 +01:00
fn require(&self, a: &Address, require_code: bool) -> RefMut<Account> {
2016-01-09 14:19:35 +01:00
self.require_or_from(a, require_code, || Account::new_basic(U256::from(0u8), self.account_start_nonce), |_|{})
}
/// Pull account `a` in our cache from the trie DB. `require_code` requires that the code be cached, too.
2016-01-09 14:19:35 +01:00
/// If it doesn't exist, make account equal the evaluation of `default`.
fn require_or_from<F: FnOnce() -> Account, G: FnOnce(&mut Account)>(&self, a: &Address, require_code: bool, default: F, not_default: G) -> RefMut<Account> {
self.cache.borrow_mut().entry(a.clone()).or_insert_with(||
SecTrieDB::new(&self.db, &self.root).get(&a).map(|rlp| Account::from_rlp(rlp)));
2016-01-09 14:19:35 +01:00
let preexists = self.cache.borrow().get(a).unwrap().is_none();
if preexists {
2015-12-19 22:15:22 +01:00
self.cache.borrow_mut().insert(a.clone(), Some(default()));
2016-01-09 14:19:35 +01:00
} else {
not_default(self.cache.borrow_mut().get_mut(a).unwrap().as_mut().unwrap());
}
2015-12-19 22:15:22 +01:00
let b = self.cache.borrow_mut();
RefMut::map(b, |m| m.get_mut(a).unwrap().as_mut().map(|account| {
if require_code {
2015-12-19 22:15:22 +01:00
account.cache_code(&self.db);
}
account
2015-12-19 22:15:22 +01:00
}).unwrap())
}
}
impl fmt::Debug for State {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self.cache.borrow())
2016-01-11 14:47:50 +01:00
}
}
#[cfg(test)]
mod tests {
use super::*;
use util::hash::*;
use util::trie::*;
use util::rlp::*;
use util::uint::*;
use account::*;
use tests::helpers::*;
#[test]
fn code_from_database() {
let a = Address::zero();
let temp = RandomTempPath::new();
let (root, db) = {
let mut state = get_temp_state_in(temp.as_path());
state.require_or_from(&a, false, ||Account::new_contract(U256::from(42u32)), |_|{});
state.init_code(&a, vec![1, 2, 3]);
assert_eq!(state.code(&a), Some([1u8, 2, 3].to_vec()));
state.commit();
assert_eq!(state.code(&a), Some([1u8, 2, 3].to_vec()));
state.drop()
};
let state = State::from_existing(db, root, U256::from(0u8));
assert_eq!(state.code(&a), Some([1u8, 2, 3].to_vec()));
}
#[test]
fn storage_at_from_database() {
let a = Address::zero();
let temp = RandomTempPath::new();
let (root, db) = {
let mut state = get_temp_state_in(temp.as_path());
state.set_storage(&a, H256::from(&U256::from(01u64)), H256::from(&U256::from(69u64)));
state.commit();
state.drop()
};
let s = State::from_existing(db, root, U256::from(0u8));
assert_eq!(s.storage_at(&a, &H256::from(&U256::from(01u64))), H256::from(&U256::from(69u64)));
}
#[test]
2015-12-16 20:11:37 +01:00
fn get_from_database() {
let a = Address::zero();
let temp = RandomTempPath::new();
let (root, db) = {
let mut state = get_temp_state_in(temp.as_path());
state.inc_nonce(&a);
state.add_balance(&a, &U256::from(69u64));
state.commit();
assert_eq!(state.balance(&a), U256::from(69u64));
state.drop()
};
let state = State::from_existing(db, root, U256::from(0u8));
assert_eq!(state.balance(&a), U256::from(69u64));
assert_eq!(state.nonce(&a), U256::from(1u64));
}
#[test]
fn remove() {
let a = Address::zero();
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
assert_eq!(state.exists(&a), false);
state.inc_nonce(&a);
assert_eq!(state.exists(&a), true);
assert_eq!(state.nonce(&a), U256::from(1u64));
state.kill_account(&a);
assert_eq!(state.exists(&a), false);
assert_eq!(state.nonce(&a), U256::from(0u64));
}
#[test]
fn remove_from_database() {
let a = Address::zero();
let temp = RandomTempPath::new();
let (root, db) = {
let mut state = get_temp_state_in(temp.as_path());
state.inc_nonce(&a);
state.commit();
assert_eq!(state.exists(&a), true);
assert_eq!(state.nonce(&a), U256::from(1u64));
state.drop()
};
let (root, db) = {
let mut state = State::from_existing(db, root, U256::from(0u8));
assert_eq!(state.exists(&a), true);
assert_eq!(state.nonce(&a), U256::from(1u64));
state.kill_account(&a);
state.commit();
assert_eq!(state.exists(&a), false);
assert_eq!(state.nonce(&a), U256::from(0u64));
state.drop()
};
let state = State::from_existing(db, root, U256::from(0u8));
assert_eq!(state.exists(&a), false);
assert_eq!(state.nonce(&a), U256::from(0u64));
}
#[test]
2015-12-16 18:28:04 +01:00
fn alter_balance() {
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
let a = Address::zero();
let b = address_from_u64(1u64);
state.add_balance(&a, &U256::from(69u64));
assert_eq!(state.balance(&a), U256::from(69u64));
state.commit();
assert_eq!(state.balance(&a), U256::from(69u64));
state.sub_balance(&a, &U256::from(42u64));
assert_eq!(state.balance(&a), U256::from(27u64));
state.commit();
assert_eq!(state.balance(&a), U256::from(27u64));
state.transfer_balance(&a, &b, &U256::from(18u64));
assert_eq!(state.balance(&a), U256::from(9u64));
assert_eq!(state.balance(&b), U256::from(18u64));
state.commit();
assert_eq!(state.balance(&a), U256::from(9u64));
assert_eq!(state.balance(&b), U256::from(18u64));
2015-12-16 18:28:04 +01:00
}
#[test]
fn alter_nonce() {
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
let a = Address::zero();
state.inc_nonce(&a);
assert_eq!(state.nonce(&a), U256::from(1u64));
state.inc_nonce(&a);
assert_eq!(state.nonce(&a), U256::from(2u64));
state.commit();
assert_eq!(state.nonce(&a), U256::from(2u64));
state.inc_nonce(&a);
assert_eq!(state.nonce(&a), U256::from(3u64));
state.commit();
assert_eq!(state.nonce(&a), U256::from(3u64));
}
#[test]
2015-12-16 18:28:04 +01:00
fn balance_nonce() {
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
let a = Address::zero();
assert_eq!(state.balance(&a), U256::from(0u64));
assert_eq!(state.nonce(&a), U256::from(0u64));
state.commit();
assert_eq!(state.balance(&a), U256::from(0u64));
assert_eq!(state.nonce(&a), U256::from(0u64));
2015-12-13 21:36:17 +01:00
}
#[test]
fn ensure_cached() {
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
let a = Address::zero();
state.require(&a, false);
state.commit();
assert_eq!(state.root().hex(), "0ce23f3c809de377b008a4a3ee94a0834aac8bec1f86e28ffe4fdb5a15b0c785");
}
#[test]
fn create_empty() {
let mut state_result = get_temp_state();
let mut state = state_result.reference_mut();
state.commit();
assert_eq!(state.root().hex(), "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421");
}
2016-01-07 21:29:36 +01:00
}