2016-04-06 21:23:52 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! Tracing
|
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
mod block;
|
|
|
|
mod bloom;
|
|
|
|
mod config;
|
|
|
|
mod db;
|
2016-05-18 11:34:15 +02:00
|
|
|
mod error;
|
2016-04-30 17:41:24 +02:00
|
|
|
mod executive_tracer;
|
2016-05-16 18:33:32 +02:00
|
|
|
pub mod flat;
|
2016-04-30 17:41:24 +02:00
|
|
|
mod import;
|
|
|
|
mod noop_tracer;
|
|
|
|
|
2016-05-16 18:33:32 +02:00
|
|
|
pub use types::trace_types::*;
|
2016-04-30 17:41:24 +02:00
|
|
|
pub use self::block::BlockTraces;
|
|
|
|
pub use self::config::{Config, Switch};
|
|
|
|
pub use self::db::TraceDB;
|
2016-05-18 11:34:15 +02:00
|
|
|
pub use self::error::Error;
|
2016-06-02 12:40:31 +02:00
|
|
|
pub use types::trace_types::trace::{Trace, VMTrace, VMOperation, VMExecutedOperation, MemoryDiff, StorageDiff};
|
|
|
|
pub use self::noop_tracer::{NoopTracer, NoopVMTracer};
|
|
|
|
pub use self::executive_tracer::{ExecutiveTracer, ExecutiveVMTracer};
|
2016-05-16 18:33:32 +02:00
|
|
|
pub use types::trace_types::filter::{Filter, AddressesFilter};
|
2016-04-30 17:41:24 +02:00
|
|
|
pub use self::import::ImportRequest;
|
|
|
|
pub use self::localized::LocalizedTrace;
|
|
|
|
use util::{Bytes, Address, U256, H256};
|
|
|
|
use self::trace::{Call, Create};
|
2016-04-08 01:50:55 +02:00
|
|
|
use action_params::ActionParams;
|
2016-04-30 17:41:24 +02:00
|
|
|
use header::BlockNumber;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
|
|
|
/// This trait is used by executive to build traces.
|
|
|
|
pub trait Tracer: Send {
|
|
|
|
/// Prepares call trace for given params. Noop tracer should return None.
|
2016-04-30 17:41:24 +02:00
|
|
|
fn prepare_trace_call(&self, params: &ActionParams) -> Option<Call>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
|
|
|
/// Prepares create trace for given params. Noop tracer should return None.
|
2016-04-30 17:41:24 +02:00
|
|
|
fn prepare_trace_create(&self, params: &ActionParams) -> Option<Create>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
|
|
|
/// Prepare trace output. Noop tracer should return None.
|
|
|
|
fn prepare_trace_output(&self) -> Option<Bytes>;
|
|
|
|
|
|
|
|
/// Stores trace call info.
|
|
|
|
fn trace_call(
|
|
|
|
&mut self,
|
2016-04-30 17:41:24 +02:00
|
|
|
call: Option<Call>,
|
2016-04-08 01:50:55 +02:00
|
|
|
gas_used: U256,
|
|
|
|
output: Option<Bytes>,
|
|
|
|
depth: usize,
|
|
|
|
subs: Vec<Trace>,
|
|
|
|
delegate_call: bool
|
|
|
|
);
|
|
|
|
|
|
|
|
/// Stores trace create info.
|
|
|
|
fn trace_create(
|
|
|
|
&mut self,
|
2016-04-30 17:41:24 +02:00
|
|
|
create: Option<Create>,
|
2016-04-08 01:50:55 +02:00
|
|
|
gas_used: U256,
|
|
|
|
code: Option<Bytes>,
|
|
|
|
address: Address,
|
|
|
|
depth: usize,
|
|
|
|
subs: Vec<Trace>
|
|
|
|
);
|
|
|
|
|
|
|
|
/// Stores failed call trace.
|
2016-04-30 17:41:24 +02:00
|
|
|
fn trace_failed_call(&mut self, call: Option<Call>, depth: usize, subs: Vec<Trace>, delegate_call: bool);
|
2016-04-08 01:50:55 +02:00
|
|
|
|
|
|
|
/// Stores failed create trace.
|
2016-04-30 17:41:24 +02:00
|
|
|
fn trace_failed_create(&mut self, create: Option<Create>, depth: usize, subs: Vec<Trace>);
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-06-02 12:40:31 +02:00
|
|
|
/// Spawn subtracer which will be used to trace deeper levels of execution.
|
2016-04-08 01:50:55 +02:00
|
|
|
fn subtracer(&self) -> Self where Self: Sized;
|
|
|
|
|
|
|
|
/// Consumes self and returns all traces.
|
|
|
|
fn traces(self) -> Vec<Trace>;
|
|
|
|
}
|
|
|
|
|
2016-06-02 12:40:31 +02:00
|
|
|
/// Used by executive to build VM traces.
|
|
|
|
pub trait VMTracer: Send {
|
|
|
|
/// Trace the preparation to execute a single instruction.
|
|
|
|
/// @returns true if `trace_executed` should be called.
|
|
|
|
fn trace_prepare_execute(&mut self, _pc: usize, _instruction: u8, _gas_cost: &U256) -> bool { false }
|
|
|
|
|
|
|
|
/// 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)>) {}
|
|
|
|
|
|
|
|
/// Spawn subtracer which will be used to trace deeper levels of execution.
|
2016-06-03 11:36:30 +02:00
|
|
|
fn prepare_subtrace(&self, code: &[u8]) -> Self where Self: Sized;
|
2016-06-02 12:40:31 +02:00
|
|
|
|
|
|
|
/// Spawn subtracer which will be used to trace deeper levels of execution.
|
|
|
|
fn done_subtrace(&mut self, sub: Self) where Self: Sized;
|
|
|
|
|
|
|
|
/// Consumes self and returns the VM trace.
|
|
|
|
fn drain(self) -> Option<VMTrace>;
|
|
|
|
}
|
|
|
|
|
2016-05-02 13:13:12 +02:00
|
|
|
/// `DbExtras` provides an interface to query extra data which is not stored in tracesdb,
|
2016-04-30 17:41:24 +02:00
|
|
|
/// but necessary to work correctly.
|
|
|
|
pub trait DatabaseExtras {
|
|
|
|
/// Returns hash of given block number.
|
|
|
|
fn block_hash(&self, block_number: BlockNumber) -> Option<H256>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Returns hash of transaction at given position.
|
|
|
|
fn transaction_hash(&self, block_number: BlockNumber, tx_position: usize) -> Option<H256>;
|
|
|
|
}
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Db provides an interface to query tracesdb.
|
|
|
|
pub trait Database {
|
|
|
|
/// Returns true if tracing is enabled. Otherwise false.
|
|
|
|
fn tracing_enabled(&self) -> bool;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Imports new block traces.
|
|
|
|
fn import(&self, request: ImportRequest);
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Returns localized trace at given position.
|
|
|
|
fn trace(&self, block_number: BlockNumber, tx_position: usize, trace_position: Vec<usize>) -> Option<LocalizedTrace>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Returns localized traces created by a single transaction.
|
|
|
|
fn transaction_traces(&self, block_number: BlockNumber, tx_position: usize) -> Option<Vec<LocalizedTrace>>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Returns localized traces created in given block.
|
|
|
|
fn block_traces(&self, block_number: BlockNumber) -> Option<Vec<LocalizedTrace>>;
|
2016-04-08 01:50:55 +02:00
|
|
|
|
2016-04-30 17:41:24 +02:00
|
|
|
/// Filter traces matching given filter.
|
|
|
|
fn filter(&self, filter: &Filter) -> Vec<LocalizedTrace>;
|
2016-04-08 01:50:55 +02:00
|
|
|
}
|