1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
// Copyright 2023-2024 Paradigm.xyz
// This file is part of reth.
// Reth is a modular, contributor-friendly and blazing-fast implementation of
// the Ethereum protocol
// Permission is hereby granted, free of charge, to any
// person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the
// Software without restriction, including without
// limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software
// is furnished to do so, subject to the following
// conditions:
// The above copyright notice and this permission notice
// shall be included in all copies or substantial portions
// of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
use crate::{
types::{CallTraceNode, CallTraceStepStackItem},
TracingInspectorConfig,
};
use alloy_primitives::{Address, Bytes, B256, U256};
use alloy_rpc_types_trace::geth::{
AccountChangeKind, AccountState, CallConfig, CallFrame, DefaultFrame,
DiffMode, GethDefaultTracingOptions, PreStateConfig, PreStateFrame,
PreStateMode, StructLog,
};
use revm::{
db::DatabaseRef,
primitives::{AccountInfo, State, KECCAK_EMPTY},
};
use std::collections::{BTreeMap, HashMap, VecDeque};
/// A type for creating geth style traces
#[derive(Clone, Debug)]
pub struct GethTraceBuilder {
/// Recorded trace nodes.
nodes: Vec<CallTraceNode>,
/// How the traces were recorded
_config: TracingInspectorConfig,
}
impl GethTraceBuilder {
/// Returns a new instance of the builder
pub fn new(
nodes: Vec<CallTraceNode>, _config: TracingInspectorConfig,
) -> Self {
Self { nodes, _config }
}
/// Fill in the geth trace with all steps of the trace and its children
/// traces in the order they appear in the transaction.
fn fill_geth_trace(
&self, main_trace_node: &CallTraceNode,
opts: &GethDefaultTracingOptions,
storage: &mut HashMap<Address, BTreeMap<B256, B256>>,
struct_logs: &mut Vec<StructLog>,
) {
// A stack with all the steps of the trace and all its children's steps.
// This is used to process the steps in the order they appear in the
// transactions. Steps are grouped by their Call Trace Node, in
// order to process them all in the order they appear in the
// transaction, we need to process steps of call nodes when they appear.
// When we find a call step, we push all the steps of the child trace on
// the stack, so they are processed next. The very next step is
// the last item on the stack
let mut step_stack =
VecDeque::with_capacity(main_trace_node.trace.steps.len());
main_trace_node.push_steps_on_stack(&mut step_stack);
// Iterate over the steps inside the given trace
while let Some(CallTraceStepStackItem {
trace_node,
step,
call_child_id,
}) = step_stack.pop_back()
{
let mut log = step.convert_to_geth_struct_log(opts);
// Fill in storage depending on the options
if opts.is_storage_enabled() {
let contract_storage =
storage.entry(step.contract).or_default();
if let Some(change) = step.storage_change {
contract_storage
.insert(change.key.into(), change.value.into());
log.storage = Some(contract_storage.clone());
}
}
if opts.is_return_data_enabled() {
log.return_data = Some(trace_node.trace.output.clone());
}
// Add step to geth trace
struct_logs.push(log);
// If the step is a call, we first push all the steps of the child
// trace on the stack, so they are processed next
if let Some(call_child_id) = call_child_id {
let child_trace = &self.nodes[call_child_id];
child_trace.push_steps_on_stack(&mut step_stack);
}
// if we reached the limit, we stop
if let Some(limit) = opts.limit {
if limit > 0 && struct_logs.len() >= limit as usize {
break;
}
}
}
}
/// Generate a geth-style trace e.g. for `debug_traceTransaction`
///
/// This expects the gas used and return value for the
/// [ExecutionResult](revm::primitives::ExecutionResult) of the executed
/// transaction.
pub fn geth_traces(
&self, receipt_gas_used: u64, return_value: Bytes,
opts: GethDefaultTracingOptions,
) -> DefaultFrame {
if self.nodes.is_empty() {
return Default::default();
}
// Fetch top-level trace
let main_trace_node = &self.nodes[0];
let main_trace = &main_trace_node.trace;
let mut struct_logs = Vec::new();
let mut storage = HashMap::new();
self.fill_geth_trace(
main_trace_node,
&opts,
&mut storage,
&mut struct_logs,
);
DefaultFrame {
// If the top-level trace succeeded, then it was a success
failed: !main_trace.success,
gas: receipt_gas_used,
return_value,
struct_logs,
}
}
/// Generate a geth-style traces for the call tracer.
///
/// This decodes all call frames from the recorded traces.
///
/// This expects the gas used for the
/// [ExecutionResult](revm::primitives::ExecutionResult) of the executed
/// transaction.
pub fn geth_call_traces(
&self, opts: CallConfig, gas_used: u64,
) -> CallFrame {
if self.nodes.is_empty() {
return Default::default();
}
let include_logs = opts.with_log.unwrap_or_default();
// first fill up the root
let main_trace_node = &self.nodes[0];
let mut root_call_frame =
main_trace_node.geth_empty_call_frame(include_logs);
root_call_frame.gas_used = U256::from(gas_used);
// selfdestructs are not recorded as individual call traces but are
// derived from the call trace and are added as additional
// `CallFrame` objects to the parent call
if let Some(selfdestruct) =
main_trace_node.geth_selfdestruct_call_trace()
{
root_call_frame.calls.push(selfdestruct);
}
if opts.only_top_call.unwrap_or_default() {
return root_call_frame;
}
// fill all the call frames in the root call frame with the recorded
// traces. traces are identified by their index in the arena
// so we can populate the call frame tree by walking up the call tree
let mut call_frames = Vec::with_capacity(self.nodes.len());
call_frames.push((0, root_call_frame));
for (idx, trace) in self.nodes.iter().enumerate().skip(1) {
// selfdestructs are not recorded as individual call traces but are
// derived from the call trace and are added as
// additional `CallFrame` objects to the parent call
if let Some(selfdestruct) = trace.geth_selfdestruct_call_trace() {
call_frames
.last_mut()
.expect("not empty")
.1
.calls
.push(selfdestruct);
}
// include logs only if call and all its parents were successful
let include_logs =
include_logs && !self.call_or_parent_failed(trace);
call_frames.push((idx, trace.geth_empty_call_frame(include_logs)));
}
// pop the _children_ calls frame and move it to the parent
// this will roll up the child frames to their parent; this works
// because `child idx > parent idx`
loop {
let (idx, call) = call_frames.pop().expect("call frames not empty");
let node = &self.nodes[idx];
if let Some(parent) = node.parent {
let parent_frame = &mut call_frames[parent];
// we need to ensure that calls are in order they are called:
// the last child node is the last call, but
// since we walk up the tree, we need to always
// insert at position 0
parent_frame.1.calls.insert(0, call);
} else {
debug_assert!(
call_frames.is_empty(),
"only one root node has no parent"
);
return call;
}
}
}
/// Returns true if the given trace or any of its parents failed.
fn call_or_parent_failed(&self, node: &CallTraceNode) -> bool {
if node.trace.is_error() {
return true;
}
let mut parent_idx = node.parent;
while let Some(idx) = parent_idx {
let next = &self.nodes[idx];
if next.trace.is_error() {
return true;
}
parent_idx = next.parent;
}
false
}
/// Returns the accounts necessary for transaction execution.
///
/// The prestate mode returns the accounts necessary to execute a given
/// transaction. diff_mode returns the differences between the
/// transaction's pre and post-state.
///
/// * `state` - The state post-transaction execution.
/// * `diff_mode` - if prestate is in diff or prestate mode.
/// * `db` - The database to fetch state pre-transaction execution.
pub fn geth_prestate_traces<DB: DatabaseRef>(
&self, state: State, prestate_config: PreStateConfig, db: DB,
) -> Result<PreStateFrame, DB::Error> {
let account_diffs = state.iter().map(|(addr, acc)| (*addr, acc));
if prestate_config.is_default_mode() {
let mut prestate = PreStateMode::default();
// we only want changed accounts for things like balance changes etc
for (addr, changed_acc) in account_diffs {
let db_acc = db.basic_ref(addr)?.unwrap_or_default();
let code = load_account_code(&db, &db_acc);
let mut acc_state = AccountState::from_account_info(
db_acc.nonce,
db_acc.balance,
code,
);
// insert the original value of all modified storage slots
for (key, slot) in changed_acc.storage.iter() {
acc_state.storage.insert(
(*key).into(),
slot.previous_or_original_value.into(),
);
}
prestate.0.insert(addr, acc_state);
}
Ok(PreStateFrame::Default(prestate))
} else {
let mut state_diff = DiffMode::default();
let mut account_change_kinds =
HashMap::with_capacity(account_diffs.len());
for (addr, changed_acc) in account_diffs {
let db_acc = db.basic_ref(addr)?.unwrap_or_default();
let pre_code = load_account_code(&db, &db_acc);
let mut pre_state = AccountState::from_account_info(
db_acc.nonce,
db_acc.balance,
pre_code,
);
let mut post_state = AccountState::from_account_info(
changed_acc.info.nonce,
changed_acc.info.balance,
changed_acc
.info
.code
.as_ref()
.map(|code| code.original_bytes()),
);
// handle storage changes
for (key, slot) in changed_acc
.storage
.iter()
.filter(|(_, slot)| slot.is_changed())
{
pre_state.storage.insert(
(*key).into(),
slot.previous_or_original_value.into(),
);
post_state
.storage
.insert((*key).into(), slot.present_value.into());
}
state_diff.pre.insert(addr, pre_state);
state_diff.post.insert(addr, post_state);
// determine the change type
let pre_change = if changed_acc.is_created() {
AccountChangeKind::Create
} else {
AccountChangeKind::Modify
};
let post_change = if changed_acc.is_selfdestructed() {
AccountChangeKind::SelfDestruct
} else {
AccountChangeKind::Modify
};
account_change_kinds.insert(addr, (pre_change, post_change));
}
// ensure we're only keeping changed entries
state_diff.retain_changed().remove_zero_storage_values();
self.diff_traces(
&mut state_diff.pre,
&mut state_diff.post,
account_change_kinds,
);
Ok(PreStateFrame::Diff(state_diff))
}
}
/// Returns the difference between the pre and post state of the transaction
/// depending on the kind of changes of that account (pre,post)
fn diff_traces(
&self, pre: &mut BTreeMap<Address, AccountState>,
post: &mut BTreeMap<Address, AccountState>,
change_type: HashMap<Address, (AccountChangeKind, AccountChangeKind)>,
) {
post.retain(|addr, post_state| {
// Don't keep destroyed accounts in the post state
if change_type
.get(addr)
.map(|ty| ty.1.is_selfdestruct())
.unwrap_or(false)
{
return false;
}
if let Some(pre_state) = pre.get(addr) {
// remove any unchanged account info
post_state.remove_matching_account_info(pre_state);
}
true
});
// Don't keep created accounts the pre state
pre.retain(|addr, _pre_state| {
// only keep accounts that are not created
change_type
.get(addr)
.map(|ty| !ty.0.is_created())
.unwrap_or(true)
});
}
}
/// Loads the code for the given account from the account itself or the database
///
/// Returns None if the code hash is the KECCAK_EMPTY hash
#[inline]
pub(crate) fn load_account_code<DB: DatabaseRef>(
db: DB, db_acc: &AccountInfo,
) -> Option<Bytes> {
db_acc
.code
.as_ref()
.map(|code| code.original_bytes())
.or_else(|| {
if db_acc.code_hash == KECCAK_EMPTY {
None
} else {
db.code_by_hash_ref(db_acc.code_hash)
.ok()
.map(|code| code.original_bytes())
}
})
.map(Into::into)
}