anvil_zksync_traces/decode/mod.rs
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
////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Attribution: File adapted from the Foundry `evm` crate for ZKsync usage //
// //
// Full credit goes to its authors. See the original implementation here: //
// https://github.com/foundry-rs/foundry/blob/master/crates/evm/traces/src/decoder/mod.rs. //
// //
// Note: These methods are used under the terms of the original project's license. //
////////////////////////////////////////////////////////////////////////////////////////////////////////////
use crate::identifier::SingleSignaturesIdentifier;
use alloy::dyn_abi::{DecodedEvent, DynSolValue, EventExt, FunctionExt, JsonAbiExt};
use alloy::json_abi::{Event, Function};
use alloy::primitives::{hex, LogData, Selector, B256};
use anvil_zksync_common::utils::format_token;
use anvil_zksync_console::{ds::abi as ds_abi, hh::abi};
use anvil_zksync_types::traces::{
CallTrace, CallTraceNode, DecodedCallData, DecodedCallEvent, DecodedCallTrace, KNOWN_ADDRESSES,
};
use itertools::Itertools;
use std::{
collections::{BTreeMap, HashMap},
sync::OnceLock,
};
use zksync_multivm::interface::VmEvent;
use zksync_types::{Address, H160};
pub mod revert_decoder;
use revert_decoder::RevertDecoder;
/// The first four bytes of the call data for a function call specifies the function to be called.
pub const SELECTOR_LEN: usize = 4;
/// Build a new [CallTraceDecoder].
#[derive(Default)]
#[must_use = "builders do nothing unless you call `build` on them"]
pub struct CallTraceDecoderBuilder {
decoder: CallTraceDecoder,
}
impl CallTraceDecoderBuilder {
/// Create a new builder.
#[inline]
pub fn new() -> Self {
Self {
decoder: CallTraceDecoder::new().clone(),
}
}
/// Add known labels to the decoder.
#[inline]
pub fn with_labels(mut self, labels: impl IntoIterator<Item = (Address, String)>) -> Self {
self.decoder.labels.extend(labels);
self
}
/// Sets the signature identifier for events and functions.
#[inline]
pub fn with_signature_identifier(mut self, identifier: SingleSignaturesIdentifier) -> Self {
self.decoder.signature_identifier = Some(identifier);
self
}
/// Build the decoder.
#[inline]
pub fn build(self) -> CallTraceDecoder {
self.decoder
}
}
/// The call trace decoder.
///
/// The decoder collects address labels which it
/// then uses to decode the call trace.
#[derive(Clone, Debug, Default)]
pub struct CallTraceDecoder {
/// Addresses identified to be a specific contract.
///
/// The values are in the form `"<artifact>:<contract>"`.
pub contracts: HashMap<Address, String>,
/// Address labels.
pub labels: HashMap<Address, String>,
/// Contract addresses that have a receive function.
pub receive_contracts: Vec<Address>,
/// Contract addresses that have fallback functions, mapped to function sigs.
pub fallback_contracts: HashMap<Address, Vec<String>>,
/// All known events.
pub events: BTreeMap<(B256, usize), Vec<Event>>,
/// Revert decoder. Contains all known custom errors.
pub revert_decoder: RevertDecoder,
/// All known functions.
pub functions: HashMap<Selector, Vec<Function>>,
/// A signature identifier for events and functions.
pub signature_identifier: Option<SingleSignaturesIdentifier>,
}
impl CallTraceDecoder {
/// Creates a new call trace decoder.
///
/// The call trace decoder always knows how to decode calls of DSTest-style logs
pub fn new() -> &'static Self {
// If you want to take arguments in this function, assign them to the fields of the cloned
// lazy instead of removing it
static INIT: OnceLock<CallTraceDecoder> = OnceLock::new();
INIT.get_or_init(Self::init)
}
fn init() -> Self {
// Add known addresses (system contracts, precompiles) to the labels
let labels: HashMap<H160, String> = KNOWN_ADDRESSES
.iter()
.map(|(address, known_address)| (*address, known_address.name.clone()))
.collect();
Self {
contracts: Default::default(),
labels,
receive_contracts: Default::default(),
fallback_contracts: Default::default(),
functions: abi::functions()
.into_values()
.flatten()
.map(|func| (func.selector(), vec![func]))
.collect(),
events: ds_abi::events()
.into_values()
.flatten()
.map(|event| ((event.selector(), indexed_inputs(&event)), vec![event]))
.collect(),
revert_decoder: Default::default(),
signature_identifier: None,
}
}
/// Populates the traces with decoded data by mutating the
/// [CallTrace] in place. See [CallTraceDecoder::decode_function] and
/// [CallTraceDecoder::decode_event] for more details.
pub async fn populate_traces(&self, traces: &mut Vec<CallTraceNode>) {
for node in traces {
node.trace.decoded = self.decode_function(&node.trace).await;
for log in node.logs.iter_mut() {
log.decoded = self.decode_event(&log.raw_log).await;
}
}
}
/// Decodes a call trace.
pub async fn decode_function(&self, trace: &CallTrace) -> DecodedCallTrace {
let label = self.labels.get(&trace.address).cloned();
let cdata = &trace.call.input;
if cdata.len() >= SELECTOR_LEN {
let selector = &cdata[..SELECTOR_LEN];
let mut functions = Vec::new();
let functions = match self.functions.get(selector) {
Some(fs) => fs,
None => {
if let Some(identifier) = &self.signature_identifier {
if let Some(function) =
identifier.write().await.identify_function(selector).await
{
functions.push(function);
}
}
&functions
}
};
let [func, ..] = &functions[..] else {
return DecodedCallTrace {
label,
call_data: None,
return_data: self.default_return_data(trace),
};
};
// If traced contract is a fallback contract, check if it has the decoded function.
// If not, then replace call data signature with `fallback`.
let mut call_data = self.decode_function_input(trace, func);
if let Some(fallback_functions) = self.fallback_contracts.get(&trace.address) {
if !fallback_functions.contains(&func.signature()) {
call_data.signature = "fallback()".into();
}
}
DecodedCallTrace {
label,
call_data: Some(call_data),
return_data: self.decode_function_output(trace, functions),
}
} else {
let has_receive = self.receive_contracts.contains(&trace.address);
let signature = if cdata.is_empty() && has_receive {
"receive()"
} else {
"fallback()"
}
.into();
let args = if cdata.is_empty() {
Vec::new()
} else {
vec![hex::encode(cdata)]
};
DecodedCallTrace {
label,
call_data: Some(DecodedCallData { signature, args }),
return_data: self.default_return_data(trace),
}
}
}
/// Decodes a function's input into the given trace.
fn decode_function_input(&self, trace: &CallTrace, func: &Function) -> DecodedCallData {
let mut args = None;
if trace.call.input.len() >= SELECTOR_LEN && args.is_none() {
if let Ok(v) = func.abi_decode_input(&trace.call.input[SELECTOR_LEN..], false) {
args = Some(v.iter().map(|value| self.format_value(value)).collect());
}
}
DecodedCallData {
signature: func.signature(),
args: args.unwrap_or_default(),
}
}
/// Decodes a function's output into the given trace.
fn decode_function_output(&self, trace: &CallTrace, funcs: &[Function]) -> Option<String> {
if !trace.success {
return self.default_return_data(trace);
}
if let Some(values) = funcs
.iter()
.find_map(|func| func.abi_decode_output(&trace.call.output, false).ok())
{
// Functions coming from an external database do not have any outputs specified,
// and will lead to returning an empty list of values.
if values.is_empty() {
return None;
}
return Some(
values
.iter()
.map(|value| self.format_value(value))
.format(", ")
.to_string(),
);
}
None
}
/// Decodes an event from ZKsync type VmEvent.
pub async fn decode_event(&self, vm_event: &VmEvent) -> DecodedCallEvent {
let Some(&t0) = vm_event.indexed_topics.first() else {
return DecodedCallEvent {
name: None,
params: None,
};
};
let mut events = Vec::new();
let b256_t0 = B256::from_slice(t0.as_bytes());
let key = (b256_t0, indexed_inputs_zksync(vm_event) - 1);
let events = match self.events.get(&key) {
Some(es) => es,
None => {
if let Some(identifier) = &self.signature_identifier {
if let Some(event) = identifier.write().await.identify_event(&t0[..]).await {
events.push(get_indexed_event_from_vm_event(event, vm_event));
}
}
&events
}
};
let log_data = vm_event_to_log_data(vm_event);
for event in events {
if let Ok(decoded) = event.decode_log(&log_data, false) {
let params = reconstruct_params(event, &decoded);
return DecodedCallEvent {
name: Some(event.name.clone()),
params: Some(
params
.into_iter()
.zip(event.inputs.iter())
.map(|(param, input)| {
// undo patched names
let name = input.name.clone();
(name, self.format_value(¶m))
})
.collect(),
),
};
}
}
DecodedCallEvent {
name: None,
params: None,
}
}
/// Prefetches function and event signatures into the identifier cache
pub async fn prefetch_signatures(&self, nodes: &[CallTraceNode]) {
let Some(identifier) = &self.signature_identifier else {
return;
};
let events: Vec<_> = nodes
.iter()
.flat_map(|node| {
node.logs
.iter()
.filter_map(|log| log.raw_log.indexed_topics.first().cloned())
})
.unique()
.collect();
identifier.write().await.identify_events(events).await;
let funcs: Vec<_> = nodes
.iter()
.filter_map(|n| n.trace.call.input.get(..SELECTOR_LEN).map(|s| s.to_vec()))
.filter(|s| !self.functions.contains_key(s.as_slice()))
.collect();
identifier.write().await.identify_functions(funcs).await;
// Need to decode revert reasons and errors as well
}
/// The default decoded return data for a trace.
fn default_return_data(&self, trace: &CallTrace) -> Option<String> {
(!trace.success).then(|| self.revert_decoder.decode(&trace.call.output))
}
/// Pretty-prints a value.
fn format_value(&self, value: &DynSolValue) -> String {
if let DynSolValue::Address(addr) = value {
match <[u8; 20]>::try_from(addr.0.as_slice()) {
Ok(raw_bytes_20) => {
let zksync_address = Address::from(raw_bytes_20);
if let Some(label) = self.labels.get(&zksync_address) {
return format!("{label}: [{addr}]");
}
}
Err(e) => {
return format!("Invalid address ({}): {:?}", e, addr);
}
}
}
format_token(value, false)
}
}
/// Restore the order of the params of a decoded event,
/// as Alloy returns the indexed and unindexed params separately.
fn reconstruct_params(event: &Event, decoded: &DecodedEvent) -> Vec<DynSolValue> {
let mut indexed = 0;
let mut unindexed = 0;
let mut inputs = vec![];
for input in event.inputs.iter() {
// Prevent panic of event `Transfer(from, to)` decoded with a signature
// `Transfer(address indexed from, address indexed to, uint256 indexed tokenId)` by making
// sure the event inputs is not higher than decoded indexed / un-indexed values.
if input.indexed && indexed < decoded.indexed.len() {
inputs.push(decoded.indexed[indexed].clone());
indexed += 1;
} else if unindexed < decoded.body.len() {
inputs.push(decoded.body[unindexed].clone());
unindexed += 1;
}
}
inputs
}
fn indexed_inputs_zksync(event: &VmEvent) -> usize {
event.indexed_topics.len()
}
fn indexed_inputs(event: &Event) -> usize {
event.inputs.iter().filter(|param| param.indexed).count()
}
/// Given an `Event` without indexed parameters and a `VmEvent`, it tries to
/// return the `Event` with the proper indexed parameters. Otherwise,
/// it returns the original `Event`.
pub fn get_indexed_event_from_vm_event(mut event: Event, vm_event: &VmEvent) -> Event {
if !event.anonymous && vm_event.indexed_topics.len() > 1 {
let indexed_params = vm_event.indexed_topics.len() - 1;
let num_inputs = event.inputs.len();
let num_address_params = event.inputs.iter().filter(|p| p.ty == "address").count();
event
.inputs
.iter_mut()
.enumerate()
.for_each(|(index, param)| {
if param.name.is_empty() {
param.name = format!("param{index}");
}
if num_inputs == indexed_params
|| (num_address_params == indexed_params && param.ty == "address")
{
param.indexed = true;
}
})
}
event
}
/// Converts a `VmEvent` to a `LogData`.
pub fn vm_event_to_log_data(event: &VmEvent) -> LogData {
LogData::new_unchecked(
event
.indexed_topics
.iter()
.map(|h| B256::from_slice(h.as_bytes()))
.collect(),
event.value.clone().into(),
)
}