chore: extract witness recorder helper type (#12566)

This commit is contained in:
Matthias Seitz
2024-11-15 11:31:14 +01:00
committed by GitHub
parent 44964ac171
commit cd9da550da
5 changed files with 87 additions and 49 deletions

View File

@ -44,6 +44,7 @@ std = [
"alloy-consensus/std",
"reth-primitives-traits/std",
]
witness = ["dep:reth-trie"]
test-utils = [
"dep:reth-trie",
"reth-primitives/test-utils",

View File

@ -29,3 +29,7 @@ pub use revm::{self, *};
/// Either type for flexible usage of different database types in the same context.
pub mod either;
/// Helper types for execution witness generation.
#[cfg(feature = "witness")]
pub mod witness;

View File

@ -0,0 +1,76 @@
use alloy_primitives::{keccak256, map::B256HashMap, Bytes, B256};
use reth_trie::{HashedPostState, HashedStorage};
use revm::State;
/// Tracks state changes during execution.
#[derive(Debug, Clone, Default)]
pub struct ExecutionWitnessRecord {
/// Records all state changes
pub hashed_state: HashedPostState,
/// Map of all contract codes (created / accessed) to their preimages that were required during
/// the execution of the block, including during state root recomputation.
///
/// `keccak(bytecodes) => bytecodes`
pub codes: B256HashMap<Bytes>,
/// Map of all hashed account and storage keys (addresses and slots) to their preimages
/// (unhashed account addresses and storage slots, respectively) that were required during
/// the execution of the block. during the execution of the block.
///
/// `keccak(address|slot) => address|slot`
pub keys: B256HashMap<Bytes>,
}
impl ExecutionWitnessRecord {
/// Records the state after execution.
pub fn record_executed_state<DB>(&mut self, statedb: &State<DB>) {
self.codes = statedb
.cache
.contracts
.iter()
.map(|(hash, code)| (*hash, code.original_bytes()))
.chain(
// cache state does not have all the contracts, especially when
// a contract is created within the block
// the contract only exists in bundle state, therefore we need
// to include them as well
statedb
.bundle_state
.contracts
.iter()
.map(|(hash, code)| (*hash, code.original_bytes())),
)
.collect();
for (address, account) in &statedb.cache.accounts {
let hashed_address = keccak256(address);
self.hashed_state
.accounts
.insert(hashed_address, account.account.as_ref().map(|a| a.info.clone().into()));
let storage = self
.hashed_state
.storages
.entry(hashed_address)
.or_insert_with(|| HashedStorage::new(account.status.was_destroyed()));
if let Some(account) = &account.account {
self.keys.insert(hashed_address, address.to_vec().into());
for (slot, value) in &account.storage {
let slot = B256::from(*slot);
let hashed_slot = keccak256(slot);
storage.storage.insert(hashed_slot, *value);
self.keys.insert(hashed_slot, slot.into());
}
}
}
}
/// Creates the record from the state after execution.
pub fn from_executed_state<DB>(state: &State<DB>) -> Self {
let mut record = Self::default();
record.record_executed_state(state);
record
}
}