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
pub mod analysis;
mod contract;
mod shared_memory;
mod stack;
pub use analysis::BytecodeLocked;
pub use contract::Contract;
pub use shared_memory::{next_multiple_of_32, SharedMemory, EMPTY_SHARED_MEMORY};
pub use stack::{Stack, STACK_LIMIT};
use crate::{
primitives::Bytes, push, push_b256, return_ok, return_revert, CallInputs, CallOutcome,
CreateInputs, CreateOutcome, Gas, Host, InstructionResult,
};
use core::cmp::min;
use revm_primitives::U256;
use std::borrow::ToOwned;
use std::boxed::Box;
/// EVM bytecode interpreter.
#[derive(Debug)]
pub struct Interpreter {
/// Contract information and invoking data
pub contract: Contract,
/// The current instruction pointer.
pub instruction_pointer: *const u8,
/// The execution control flag. If this is not set to `Continue`, the interpreter will stop
/// execution.
pub instruction_result: InstructionResult,
/// The gas state.
pub gas: Gas,
/// Shared memory.
///
/// Note: This field is only set while running the interpreter loop.
/// Otherwise it is taken and replaced with empty shared memory.
pub shared_memory: SharedMemory,
/// Stack.
pub stack: Stack,
/// The return data buffer for internal calls.
/// It has multi usage:
///
/// * It contains the output bytes of call sub call.
/// * When this interpreter finishes execution it contains the output bytes of this contract.
pub return_data_buffer: Bytes,
/// Whether the interpreter is in "staticcall" mode, meaning no state changes can happen.
pub is_static: bool,
/// Actions that the EVM should do.
///
/// Set inside CALL or CREATE instructions and RETURN or REVERT instructions. Additionally those instructions will set
/// InstructionResult to CallOrCreate/Return/Revert so we know the reason.
pub next_action: InterpreterAction,
}
/// The result of an interpreter operation.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct InterpreterResult {
/// The result of the instruction execution.
pub result: InstructionResult,
/// The output of the instruction execution.
pub output: Bytes,
/// The gas usage information.
pub gas: Gas,
}
#[derive(Debug, Default, Clone)]
pub enum InterpreterAction {
/// CALL, CALLCODE, DELEGATECALL or STATICCALL instruction called.
Call {
/// Call inputs
inputs: Box<CallInputs>,
},
/// CREATE or CREATE2 instruction called.
Create { inputs: Box<CreateInputs> },
/// Interpreter finished execution.
Return { result: InterpreterResult },
/// No action
#[default]
None,
}
impl InterpreterAction {
/// Returns true if action is call.
pub fn is_call(&self) -> bool {
matches!(self, InterpreterAction::Call { .. })
}
/// Returns true if action is create.
pub fn is_create(&self) -> bool {
matches!(self, InterpreterAction::Create { .. })
}
/// Returns true if action is return.
pub fn is_return(&self) -> bool {
matches!(self, InterpreterAction::Return { .. })
}
/// Returns true if action is none.
pub fn is_none(&self) -> bool {
matches!(self, InterpreterAction::None)
}
/// Returns true if action is some.
pub fn is_some(&self) -> bool {
!self.is_none()
}
/// Returns result if action is return.
pub fn into_result_return(self) -> Option<InterpreterResult> {
match self {
InterpreterAction::Return { result } => Some(result),
_ => None,
}
}
}
impl Interpreter {
/// Create new interpreter
pub fn new(contract: Contract, gas_limit: u64, is_static: bool) -> Self {
Self {
instruction_pointer: contract.bytecode.as_ptr(),
contract,
gas: Gas::new(gas_limit),
instruction_result: InstructionResult::Continue,
is_static,
return_data_buffer: Bytes::new(),
shared_memory: EMPTY_SHARED_MEMORY,
stack: Stack::new(),
next_action: InterpreterAction::None,
}
}
/// Inserts the output of a `create` call into the interpreter.
///
/// This function is used after a `create` call has been executed. It processes the outcome
/// of that call and updates the state of the interpreter accordingly.
///
/// # Arguments
///
/// * `create_outcome` - A `CreateOutcome` struct containing the results of the `create` call.
///
/// # Behavior
///
/// The function updates the `return_data_buffer` with the data from `create_outcome`.
/// Depending on the `InstructionResult` indicated by `create_outcome`, it performs one of the following:
///
/// - `Ok`: Pushes the address from `create_outcome` to the stack, updates gas costs, and records any gas refunds.
/// - `Revert`: Pushes `U256::ZERO` to the stack and updates gas costs.
/// - `FatalExternalError`: Sets the `instruction_result` to `InstructionResult::FatalExternalError`.
/// - `Default`: Pushes `U256::ZERO` to the stack.
///
/// # Side Effects
///
/// - Updates `return_data_buffer` with the data from `create_outcome`.
/// - Modifies the stack by pushing values depending on the `InstructionResult`.
/// - Updates gas costs and records refunds in the interpreter's `gas` field.
/// - May alter `instruction_result` in case of external errors.
pub fn insert_create_outcome(&mut self, create_outcome: CreateOutcome) {
self.instruction_result = InstructionResult::Continue;
let instruction_result = create_outcome.instruction_result();
self.return_data_buffer = if instruction_result.is_revert() {
// Save data to return data buffer if the create reverted
create_outcome.output().to_owned()
} else {
// Otherwise clear it
Bytes::new()
};
match instruction_result {
return_ok!() => {
let address = create_outcome.address;
push_b256!(self, address.unwrap_or_default().into_word());
self.gas.erase_cost(create_outcome.gas().remaining());
self.gas.record_refund(create_outcome.gas().refunded());
}
return_revert!() => {
push!(self, U256::ZERO);
self.gas.erase_cost(create_outcome.gas().remaining());
}
InstructionResult::FatalExternalError => {
panic!("Fatal external error in insert_create_outcome");
}
_ => {
push!(self, U256::ZERO);
}
}
}
/// Inserts the outcome of a call into the virtual machine's state.
///
/// This function takes the result of a call, represented by `CallOutcome`,
/// and updates the virtual machine's state accordingly. It involves updating
/// the return data buffer, handling gas accounting, and setting the memory
/// in shared storage based on the outcome of the call.
///
/// # Arguments
///
/// * `shared_memory` - A mutable reference to the shared memory used by the virtual machine.
/// * `call_outcome` - The outcome of the call to be processed, containing details such as
/// instruction result, gas information, and output data.
///
/// # Behavior
///
/// The function first copies the output data from the call outcome to the virtual machine's
/// return data buffer. It then checks the instruction result from the call outcome:
///
/// - `return_ok!()`: Processes successful execution, refunds gas, and updates shared memory.
/// - `return_revert!()`: Handles a revert by only updating the gas usage and shared memory.
/// - `InstructionResult::FatalExternalError`: Sets the instruction result to a fatal external error.
/// - Any other result: No specific action is taken.
pub fn insert_call_outcome(
&mut self,
shared_memory: &mut SharedMemory,
call_outcome: CallOutcome,
) {
self.instruction_result = InstructionResult::Continue;
let out_offset = call_outcome.memory_start();
let out_len = call_outcome.memory_length();
self.return_data_buffer = call_outcome.output().to_owned();
let target_len = min(out_len, self.return_data_buffer.len());
match call_outcome.instruction_result() {
return_ok!() => {
// return unspend gas.
let remaining = call_outcome.gas().remaining();
let refunded = call_outcome.gas().refunded();
self.gas.erase_cost(remaining);
self.gas.record_refund(refunded);
shared_memory.set(out_offset, &self.return_data_buffer[..target_len]);
push!(self, U256::from(1));
}
return_revert!() => {
self.gas.erase_cost(call_outcome.gas().remaining());
shared_memory.set(out_offset, &self.return_data_buffer[..target_len]);
push!(self, U256::ZERO);
}
InstructionResult::FatalExternalError => {
panic!("Fatal external error in insert_call_outcome");
}
_ => {
push!(self, U256::ZERO);
}
}
}
/// Returns the opcode at the current instruction pointer.
#[inline]
pub fn current_opcode(&self) -> u8 {
unsafe { *self.instruction_pointer }
}
/// Returns a reference to the contract.
#[inline]
pub fn contract(&self) -> &Contract {
&self.contract
}
/// Returns a reference to the interpreter's gas state.
#[inline]
pub fn gas(&self) -> &Gas {
&self.gas
}
/// Returns a reference to the interpreter's stack.
#[inline]
pub fn stack(&self) -> &Stack {
&self.stack
}
/// Returns the current program counter.
#[inline]
pub fn program_counter(&self) -> usize {
// SAFETY: `instruction_pointer` should be at an offset from the start of the bytecode.
// In practice this is always true unless a caller modifies the `instruction_pointer` field manually.
unsafe {
self.instruction_pointer
.offset_from(self.contract.bytecode.as_ptr()) as usize
}
}
/// Executes the instruction at the current instruction pointer.
///
/// Internally it will increment instruction pointer by one.
#[inline(always)]
fn step<FN, H: Host>(&mut self, instruction_table: &[FN; 256], host: &mut H)
where
FN: Fn(&mut Interpreter, &mut H),
{
// Get current opcode.
let opcode = unsafe { *self.instruction_pointer };
// SAFETY: In analysis we are doing padding of bytecode so that we are sure that last
// byte instruction is STOP so we are safe to just increment program_counter bcs on last instruction
// it will do noop and just stop execution of this contract
self.instruction_pointer = unsafe { self.instruction_pointer.offset(1) };
// execute instruction.
(instruction_table[opcode as usize])(self, host)
}
/// Take memory and replace it with empty memory.
pub fn take_memory(&mut self) -> SharedMemory {
core::mem::replace(&mut self.shared_memory, EMPTY_SHARED_MEMORY)
}
/// Executes the interpreter until it returns or stops.
pub fn run<FN, H: Host>(
&mut self,
shared_memory: SharedMemory,
instruction_table: &[FN; 256],
host: &mut H,
) -> InterpreterAction
where
FN: Fn(&mut Interpreter, &mut H),
{
self.next_action = InterpreterAction::None;
self.shared_memory = shared_memory;
// main loop
while self.instruction_result == InstructionResult::Continue {
self.step(instruction_table, host);
}
// Return next action if it is some.
if self.next_action.is_some() {
return core::mem::take(&mut self.next_action);
}
// If not, return action without output as it is a halt.
InterpreterAction::Return {
result: InterpreterResult {
result: self.instruction_result,
// return empty bytecode
output: Bytes::new(),
gas: self.gas,
},
}
}
}
impl InterpreterResult {
/// Returns whether the instruction result is a success.
#[inline]
pub const fn is_ok(&self) -> bool {
self.result.is_ok()
}
/// Returns whether the instruction result is a revert.
#[inline]
pub const fn is_revert(&self) -> bool {
self.result.is_revert()
}
/// Returns whether the instruction result is an error.
#[inline]
pub const fn is_error(&self) -> bool {
self.result.is_error()
}
}