2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2017-08-01 13:33:49 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2017-08-01 13:33:49 +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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2017-08-01 13:33:49 +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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-08-01 13:33:49 +02:00
|
|
|
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::collections::{HashMap, HashSet};
|
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::{U256, H256, Address};
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::Bytes;
|
2017-08-01 13:33:49 +02:00
|
|
|
use {
|
|
|
|
CallType, Schedule, EnvInfo,
|
|
|
|
ReturnData, Ext, ContractCreateResult, MessageCallResult,
|
|
|
|
CreateContractAddress, Result, GasLeft,
|
|
|
|
};
|
2018-07-31 07:27:57 +02:00
|
|
|
use hash::keccak;
|
2018-10-02 16:33:19 +02:00
|
|
|
use error::TrapKind;
|
2017-08-01 13:33:49 +02:00
|
|
|
|
|
|
|
pub struct FakeLogEntry {
|
|
|
|
pub topics: Vec<H256>,
|
|
|
|
pub data: Bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub enum FakeCallType {
|
|
|
|
Call, Create
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub struct FakeCall {
|
|
|
|
pub call_type: FakeCallType,
|
2018-08-06 17:15:52 +02:00
|
|
|
pub create_scheme: Option<CreateContractAddress>,
|
2017-08-01 13:33:49 +02:00
|
|
|
pub gas: U256,
|
|
|
|
pub sender_address: Option<Address>,
|
|
|
|
pub receive_address: Option<Address>,
|
|
|
|
pub value: Option<U256>,
|
|
|
|
pub data: Bytes,
|
|
|
|
pub code_address: Option<Address>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Fake externalities test structure.
|
|
|
|
///
|
|
|
|
/// Can't do recursive calls.
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct FakeExt {
|
|
|
|
pub store: HashMap<H256, H256>,
|
|
|
|
pub suicides: HashSet<Address>,
|
|
|
|
pub calls: HashSet<FakeCall>,
|
2018-10-15 11:09:55 +02:00
|
|
|
pub sstore_clears: i128,
|
2017-08-01 13:33:49 +02:00
|
|
|
pub depth: usize,
|
|
|
|
pub blockhashes: HashMap<U256, H256>,
|
|
|
|
pub codes: HashMap<Address, Arc<Bytes>>,
|
|
|
|
pub logs: Vec<FakeLogEntry>,
|
|
|
|
pub info: EnvInfo,
|
|
|
|
pub schedule: Schedule,
|
|
|
|
pub balances: HashMap<Address, U256>,
|
2017-08-28 12:32:19 +02:00
|
|
|
pub tracing: bool,
|
2017-10-25 11:27:18 +02:00
|
|
|
pub is_static: bool,
|
2019-09-12 18:04:58 +02:00
|
|
|
|
|
|
|
chain_id: u64,
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// similar to the normal `finalize` function, but ignoring NeedsReturn.
|
|
|
|
pub fn test_finalize(res: Result<GasLeft>) -> Result<U256> {
|
|
|
|
match res {
|
|
|
|
Ok(GasLeft::Known(gas)) => Ok(gas),
|
|
|
|
Ok(GasLeft::NeedsReturn{..}) => unimplemented!(), // since ret is unimplemented.
|
|
|
|
Err(e) => Err(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FakeExt {
|
2018-02-19 12:27:42 +01:00
|
|
|
/// New fake externalities
|
2017-08-01 13:33:49 +02:00
|
|
|
pub fn new() -> Self {
|
|
|
|
FakeExt::default()
|
|
|
|
}
|
2017-10-12 11:45:03 +02:00
|
|
|
|
2018-02-19 12:27:42 +01:00
|
|
|
/// New fake externalities with byzantium schedule rules
|
2017-10-12 11:45:03 +02:00
|
|
|
pub fn new_byzantium() -> Self {
|
|
|
|
let mut ext = FakeExt::default();
|
|
|
|
ext.schedule = Schedule::new_byzantium();
|
|
|
|
ext
|
|
|
|
}
|
2018-02-19 12:27:42 +01:00
|
|
|
|
2018-05-05 10:23:50 +02:00
|
|
|
/// New fake externalities with constantinople schedule rules
|
|
|
|
pub fn new_constantinople() -> Self {
|
|
|
|
let mut ext = FakeExt::default();
|
|
|
|
ext.schedule = Schedule::new_constantinople();
|
|
|
|
ext
|
|
|
|
}
|
|
|
|
|
2019-09-12 18:04:58 +02:00
|
|
|
/// New fake externalities with Istanbul schedule rules
|
|
|
|
pub fn new_istanbul() -> Self {
|
|
|
|
let mut ext = FakeExt::default();
|
|
|
|
ext.schedule = Schedule::new_istanbul();
|
|
|
|
ext
|
|
|
|
}
|
|
|
|
|
2018-02-19 12:27:42 +01:00
|
|
|
/// Alter fake externalities to allow wasm
|
|
|
|
pub fn with_wasm(mut self) -> Self {
|
|
|
|
self.schedule.wasm = Some(Default::default());
|
|
|
|
self
|
|
|
|
}
|
2019-09-12 18:04:58 +02:00
|
|
|
|
|
|
|
/// Set chain ID
|
|
|
|
pub fn with_chain_id(mut self, chain_id: u64) -> Self {
|
|
|
|
self.chain_id = chain_id;
|
|
|
|
self
|
|
|
|
}
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Ext for FakeExt {
|
2018-09-07 12:51:08 +02:00
|
|
|
fn initial_storage_at(&self, _key: &H256) -> Result<H256> {
|
2019-06-03 15:36:21 +02:00
|
|
|
Ok(H256::zero())
|
2018-09-07 12:51:08 +02:00
|
|
|
}
|
|
|
|
|
2017-08-01 13:33:49 +02:00
|
|
|
fn storage_at(&self, key: &H256) -> Result<H256> {
|
2019-06-03 15:36:21 +02:00
|
|
|
Ok(self.store.get(key).unwrap_or(&H256::zero()).clone())
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set_storage(&mut self, key: H256, value: H256) -> Result<()> {
|
|
|
|
self.store.insert(key, value);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn exists(&self, address: &Address) -> Result<bool> {
|
|
|
|
Ok(self.balances.contains_key(address))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn exists_and_not_null(&self, address: &Address) -> Result<bool> {
|
|
|
|
Ok(self.balances.get(address).map_or(false, |b| !b.is_zero()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn origin_balance(&self) -> Result<U256> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn balance(&self, address: &Address) -> Result<U256> {
|
|
|
|
Ok(self.balances[address])
|
|
|
|
}
|
|
|
|
|
|
|
|
fn blockhash(&mut self, number: &U256) -> H256 {
|
2019-06-03 15:36:21 +02:00
|
|
|
self.blockhashes.get(number).unwrap_or(&H256::zero()).clone()
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
2018-10-02 16:33:19 +02:00
|
|
|
fn create(
|
|
|
|
&mut self,
|
|
|
|
gas: &U256,
|
|
|
|
value: &U256,
|
|
|
|
code: &[u8],
|
|
|
|
address: CreateContractAddress,
|
|
|
|
_trap: bool,
|
|
|
|
) -> ::std::result::Result<ContractCreateResult, TrapKind> {
|
2017-08-01 13:33:49 +02:00
|
|
|
self.calls.insert(FakeCall {
|
|
|
|
call_type: FakeCallType::Create,
|
2018-08-06 17:15:52 +02:00
|
|
|
create_scheme: Some(address),
|
2017-08-01 13:33:49 +02:00
|
|
|
gas: *gas,
|
|
|
|
sender_address: None,
|
|
|
|
receive_address: None,
|
|
|
|
value: Some(*value),
|
|
|
|
data: code.to_vec(),
|
|
|
|
code_address: None
|
|
|
|
});
|
2018-10-02 16:33:19 +02:00
|
|
|
// TODO: support traps in testing.
|
|
|
|
Ok(ContractCreateResult::Failed)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(
|
|
|
|
&mut self,
|
|
|
|
gas: &U256,
|
|
|
|
sender_address: &Address,
|
|
|
|
receive_address: &Address,
|
|
|
|
value: Option<U256>,
|
|
|
|
data: &[u8],
|
|
|
|
code_address: &Address,
|
|
|
|
_call_type: CallType,
|
|
|
|
_trap: bool,
|
|
|
|
) -> ::std::result::Result<MessageCallResult, TrapKind> {
|
2017-08-01 13:33:49 +02:00
|
|
|
self.calls.insert(FakeCall {
|
|
|
|
call_type: FakeCallType::Call,
|
2018-08-06 17:15:52 +02:00
|
|
|
create_scheme: None,
|
2017-08-01 13:33:49 +02:00
|
|
|
gas: *gas,
|
|
|
|
sender_address: Some(sender_address.clone()),
|
|
|
|
receive_address: Some(receive_address.clone()),
|
|
|
|
value: value,
|
|
|
|
data: data.to_vec(),
|
|
|
|
code_address: Some(code_address.clone())
|
|
|
|
});
|
2018-10-02 16:33:19 +02:00
|
|
|
// TODO: support traps in testing.
|
|
|
|
Ok(MessageCallResult::Success(*gas, ReturnData::empty()))
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:27:57 +02:00
|
|
|
fn extcode(&self, address: &Address) -> Result<Option<Arc<Bytes>>> {
|
|
|
|
Ok(self.codes.get(address).cloned())
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:27:57 +02:00
|
|
|
fn extcodesize(&self, address: &Address) -> Result<Option<usize>> {
|
|
|
|
Ok(self.codes.get(address).map(|c| c.len()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extcodehash(&self, address: &Address) -> Result<Option<H256>> {
|
|
|
|
Ok(self.codes.get(address).map(|c| keccak(c.as_ref())))
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn log(&mut self, topics: Vec<H256>, data: &[u8]) -> Result<()> {
|
|
|
|
self.logs.push(FakeLogEntry {
|
2019-09-12 18:04:58 +02:00
|
|
|
topics,
|
2017-08-01 13:33:49 +02:00
|
|
|
data: data.to_vec()
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-09-15 21:07:54 +02:00
|
|
|
fn ret(self, _gas: &U256, _data: &ReturnData, _apply_state: bool) -> Result<U256> {
|
2017-08-01 13:33:49 +02:00
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn suicide(&mut self, refund_address: &Address) -> Result<()> {
|
|
|
|
self.suicides.insert(refund_address.clone());
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn schedule(&self) -> &Schedule {
|
|
|
|
&self.schedule
|
|
|
|
}
|
|
|
|
|
|
|
|
fn env_info(&self) -> &EnvInfo {
|
|
|
|
&self.info
|
|
|
|
}
|
|
|
|
|
2019-09-12 18:04:58 +02:00
|
|
|
fn chain_id(&self) -> u64 {
|
|
|
|
self.chain_id
|
|
|
|
}
|
|
|
|
|
2017-08-01 13:33:49 +02:00
|
|
|
fn depth(&self) -> usize {
|
|
|
|
self.depth
|
|
|
|
}
|
|
|
|
|
2017-09-15 21:07:54 +02:00
|
|
|
fn is_static(&self) -> bool {
|
2017-10-25 11:27:18 +02:00
|
|
|
self.is_static
|
2017-09-15 21:07:54 +02:00
|
|
|
}
|
|
|
|
|
2018-10-15 11:09:55 +02:00
|
|
|
fn add_sstore_refund(&mut self, value: usize) {
|
|
|
|
self.sstore_clears += value as i128;
|
2018-09-07 12:51:08 +02:00
|
|
|
}
|
|
|
|
|
2018-10-15 11:09:55 +02:00
|
|
|
fn sub_sstore_refund(&mut self, value: usize) {
|
|
|
|
self.sstore_clears -= value as i128;
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|
2017-08-28 12:32:19 +02:00
|
|
|
|
2018-01-18 10:32:22 +01:00
|
|
|
fn trace_next_instruction(&mut self, _pc: usize, _instruction: u8, _gas: U256) -> bool {
|
2017-08-28 12:32:19 +02:00
|
|
|
self.tracing
|
|
|
|
}
|
2017-08-01 13:33:49 +02:00
|
|
|
}
|