2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-09 21:39:38 +01:00
|
|
|
//! Interface for Evm externalities.
|
2015-12-30 12:46:10 +01:00
|
|
|
|
2016-08-15 15:09:00 +02:00
|
|
|
use util::*;
|
2017-06-06 17:47:12 +02:00
|
|
|
use evm::{self, Schedule, ReturnData};
|
2016-01-11 22:32:01 +01:00
|
|
|
use env_info::*;
|
2016-07-30 15:38:44 +02:00
|
|
|
use types::executed::CallType;
|
2016-01-06 13:00:14 +01:00
|
|
|
|
2016-01-16 20:11:12 +01:00
|
|
|
/// Result of externalities create function.
|
|
|
|
pub enum ContractCreateResult {
|
|
|
|
/// Returned when creation was successfull.
|
|
|
|
/// Contains an address of newly created contract and gas left.
|
|
|
|
Created(Address, U256),
|
|
|
|
/// Returned when contract creation failed.
|
|
|
|
/// VM doesn't have to know the reason.
|
|
|
|
Failed
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Result of externalities call function.
|
|
|
|
pub enum MessageCallResult {
|
|
|
|
/// Returned when message call was successfull.
|
2017-06-06 17:47:12 +02:00
|
|
|
/// Contains gas left and output data.
|
|
|
|
Success(U256, ReturnData),
|
2016-01-16 20:11:12 +01:00
|
|
|
/// Returned when message call failed.
|
|
|
|
/// VM doesn't have to know the reason.
|
|
|
|
Failed
|
|
|
|
}
|
|
|
|
|
2017-04-19 14:30:00 +02:00
|
|
|
/// Specifies how an address is calculated for a new contract.
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum CreateContractAddress {
|
|
|
|
/// Address is calculated from nonce and sender. Pre EIP-86 (Metropolis)
|
|
|
|
FromSenderAndNonce,
|
|
|
|
/// Address is calculated from code hash. Default since EIP-86
|
|
|
|
FromCodeHash,
|
|
|
|
/// Address is calculated from code hash and sender. Used by CREATE_P2SH instruction.
|
|
|
|
FromSenderAndCodeHash,
|
|
|
|
}
|
|
|
|
|
2016-01-20 16:52:22 +01:00
|
|
|
/// Externalities interface for EVMs
|
2016-01-09 00:51:09 +01:00
|
|
|
pub trait Ext {
|
2016-01-07 23:33:54 +01:00
|
|
|
/// Returns a value for given key.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn storage_at(&self, key: &H256) -> evm::Result<H256>;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
|
|
|
/// Stores a value for given key.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn set_storage(&mut self, key: H256, value: H256) -> evm::Result<()>;
|
2016-01-16 20:11:12 +01:00
|
|
|
|
|
|
|
/// Determine whether an account exists.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn exists(&self, address: &Address) -> evm::Result<bool>;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
2016-11-03 22:22:25 +01:00
|
|
|
/// Determine whether an account exists and is not null (zero balance/nonce, no code).
|
2017-06-19 11:41:46 +02:00
|
|
|
fn exists_and_not_null(&self, address: &Address) -> evm::Result<bool>;
|
2016-11-03 22:22:25 +01:00
|
|
|
|
|
|
|
/// Balance of the origin account.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn origin_balance(&self) -> evm::Result<U256>;
|
2016-11-03 22:22:25 +01:00
|
|
|
|
2016-01-07 23:33:54 +01:00
|
|
|
/// Returns address balance.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn balance(&self, address: &Address) -> evm::Result<U256>;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
|
|
|
/// Returns the hash of one of the 256 most recent complete blocks.
|
2017-05-30 11:52:33 +02:00
|
|
|
fn blockhash(&mut self, number: &U256) -> H256;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
|
|
|
/// Creates new contract.
|
2016-02-29 22:21:15 +01:00
|
|
|
///
|
2016-01-14 21:21:46 +01:00
|
|
|
/// Returns gas_left and contract address if contract creation was succesfull.
|
2017-04-19 14:30:00 +02:00
|
|
|
fn create(&mut self, gas: &U256, value: &U256, code: &[u8], address: CreateContractAddress) -> ContractCreateResult;
|
2016-01-09 23:24:01 +01:00
|
|
|
|
|
|
|
/// Message call.
|
2016-02-29 22:21:15 +01:00
|
|
|
///
|
2016-01-14 21:21:46 +01:00
|
|
|
/// Returns Err, if we run out of gas.
|
2016-02-29 22:21:15 +01:00
|
|
|
/// Otherwise returns call_result which contains gas left
|
2016-01-14 19:52:40 +01:00
|
|
|
/// and true if subcall was successfull.
|
2016-03-18 10:14:19 +01:00
|
|
|
#[cfg_attr(feature="dev", allow(too_many_arguments))]
|
2016-02-29 22:21:15 +01:00
|
|
|
fn call(&mut self,
|
2016-07-27 17:41:21 +02:00
|
|
|
gas: &U256,
|
|
|
|
sender_address: &Address,
|
|
|
|
receive_address: &Address,
|
|
|
|
value: Option<U256>,
|
|
|
|
data: &[u8],
|
|
|
|
code_address: &Address,
|
|
|
|
output: &mut [u8],
|
|
|
|
call_type: CallType
|
|
|
|
) -> MessageCallResult;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
|
|
|
/// Returns code at given address
|
2017-06-19 11:41:46 +02:00
|
|
|
fn extcode(&self, address: &Address) -> evm::Result<Arc<Bytes>>;
|
2016-01-07 23:33:54 +01:00
|
|
|
|
2016-09-22 19:58:42 +02:00
|
|
|
/// Returns code size at given address
|
2017-06-19 11:41:46 +02:00
|
|
|
fn extcodesize(&self, address: &Address) -> evm::Result<usize>;
|
2016-09-22 19:58:42 +02:00
|
|
|
|
2016-01-07 23:33:54 +01:00
|
|
|
/// Creates log entry with given topics and data
|
2017-06-19 11:41:46 +02:00
|
|
|
fn log(&mut self, topics: Vec<H256>, data: &[u8]) -> evm::Result<()>;
|
2016-01-11 02:17:29 +01:00
|
|
|
|
|
|
|
/// Should be called when transaction calls `RETURN` opcode.
|
|
|
|
/// Returns gas_left if cost of returning the data is not too high.
|
2017-06-06 17:47:12 +02:00
|
|
|
fn ret(self, gas: &U256, data: &ReturnData) -> evm::Result<U256>;
|
2016-01-11 02:17:29 +01:00
|
|
|
|
|
|
|
/// Should be called when contract commits suicide.
|
2016-01-13 16:16:21 +01:00
|
|
|
/// Address to which funds should be refunded.
|
2017-06-19 11:41:46 +02:00
|
|
|
fn suicide(&mut self, refund_address: &Address) -> evm::Result<()> ;
|
2016-01-11 02:17:29 +01:00
|
|
|
|
|
|
|
/// Returns schedule.
|
2016-01-11 16:28:30 +01:00
|
|
|
fn schedule(&self) -> &Schedule;
|
2016-01-11 22:32:01 +01:00
|
|
|
|
|
|
|
/// Returns environment info.
|
|
|
|
fn env_info(&self) -> &EnvInfo;
|
2016-01-16 20:11:12 +01:00
|
|
|
|
|
|
|
/// Returns current depth of execution.
|
2016-02-29 22:21:15 +01:00
|
|
|
///
|
2016-01-16 20:11:12 +01:00
|
|
|
/// If contract A calls contract B, and contract B calls C,
|
|
|
|
/// then A depth is 0, B is 1, C is 2 and so on.
|
|
|
|
fn depth(&self) -> usize;
|
|
|
|
|
|
|
|
/// Increments sstore refunds count by 1.
|
|
|
|
fn inc_sstore_clears(&mut self);
|
2016-06-02 12:40:31 +02:00
|
|
|
|
2017-07-10 13:23:40 +02:00
|
|
|
/// Decide if any more operations should be traced. Passthrough for the VM trace.
|
|
|
|
fn trace_next_instruction(&mut self, _pc: usize, _instruction: u8) -> bool { false }
|
|
|
|
|
2016-06-02 12:40:31 +02:00
|
|
|
/// Prepare to trace an operation. Passthrough for the VM trace.
|
2017-07-10 13:23:40 +02:00
|
|
|
fn trace_prepare_execute(&mut self, _pc: usize, _instruction: u8, _gas_cost: U256) {}
|
2016-06-02 12:40:31 +02:00
|
|
|
|
|
|
|
/// Trace the finalised execution of a single instruction.
|
|
|
|
fn trace_executed(&mut self, _gas_used: U256, _stack_push: &[U256], _mem_diff: Option<(usize, &[u8])>, _store_diff: Option<(U256, U256)>) {}
|
2016-01-07 23:33:54 +01:00
|
|
|
}
|