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
use crate::consts::*;
use crate::contract::Contract;
use crate::crypto;
use crate::error::InterpreterError;
use crate::interpreter::{Interpreter, MemoryRange};
use crate::prelude::*;
use crate::state::{ExecuteState, ProgramState, StateTransitionRef};
use crate::storage::InterpreterStorage;
use fuel_asm::{InstructionResult, PanicReason};
use fuel_tx::{Input, Output, Receipt, Transaction};
use fuel_types::bytes::SerializableVec;
use fuel_types::Word;
impl<S> Interpreter<S>
where
S: InterpreterStorage,
{
pub(crate) fn run(&mut self) -> Result<ProgramState, InterpreterError> {
let mut state: ProgramState;
match &self.tx {
Transaction::Create {
salt, static_contracts, ..
} => {
if static_contracts
.iter()
.any(|id| !self.check_contract_exists(id).unwrap_or(false))
{
Err(InterpreterError::Panic(PanicReason::ContractNotFound))?
}
let contract = Contract::try_from(&self.tx)?;
let root = contract.root();
let id = contract.id(salt, &root);
if !&self
.tx
.outputs()
.iter()
.any(|output| matches!(output, Output::ContractCreated { contract_id } if contract_id == &id))
{
Err(InterpreterError::Panic(PanicReason::ContractNotInInputs))?;
}
self.storage
.storage_contract_insert(&id, &contract)
.map_err(InterpreterError::from_io)?;
self.storage
.storage_contract_root_insert(&id, salt, &root)
.map_err(InterpreterError::from_io)?;
let predicates: Vec<MemoryRange> = self
.tx
.inputs()
.iter()
.enumerate()
.filter_map(|(i, input)| match input {
Input::Coin { predicate, .. } if !predicate.is_empty() => self
.tx
.input_coin_predicate_offset(i)
.map(|ofs| (ofs as Word, predicate.len() as Word)),
_ => None,
})
.map(|(ofs, len)| (ofs + VM_TX_MEMORY as Word, len))
.map(|(ofs, len)| MemoryRange::new(ofs, len))
.collect();
state = ProgramState::Return(1);
for predicate in predicates {
state = self.verify_predicate(&predicate)?;
#[cfg(feature = "debug")]
if state.is_debug() {
return Ok(state);
}
}
}
Transaction::Script { .. } => {
let offset = (VM_TX_MEMORY + Transaction::script_offset()) as Word;
self.registers[REG_PC] = offset;
self.registers[REG_IS] = offset;
self.registers[REG_GGAS] = self.tx.gas_limit();
self.registers[REG_CGAS] = self.tx.gas_limit();
let program = self.run_program();
let gas_used = self.tx.gas_limit() - self.registers[REG_GGAS];
let (status, program) = match program {
Ok(s) => (InstructionResult::success(), s),
Err(e) => match e.instruction_result() {
Some(result) => {
self.append_panic_receipt(*result);
self.apply_revert();
(*result, ProgramState::Revert(0))
}
None => {
return Err(e);
}
},
};
let receipt = Receipt::script_result(status, gas_used);
self.receipts.push(receipt);
state = program;
}
}
#[cfg(feature = "debug")]
if state.is_debug() {
self.debugger_set_last_state(state.clone());
}
if self.tx.receipts_root().is_some() {
let receipts_root = if self.receipts().is_empty() {
EMPTY_RECEIPTS_MERKLE_ROOT.into()
} else {
crypto::ephemeral_merkle_root(self.receipts().iter().map(|r| r.clone().to_bytes()))
};
self.tx.set_receipts_root(receipts_root);
}
Ok(state)
}
pub(crate) fn run_call(&mut self) -> Result<ProgramState, RuntimeError> {
loop {
if self.registers[REG_PC] >= VM_MAX_RAM {
return Err(PanicReason::MemoryOverflow.into());
}
let state = self
.execute()
.map_err(|e| e.panic_reason().expect("Call routine should return only VM panic"))?;
match state {
ExecuteState::Return(r) => {
return Ok(ProgramState::Return(r));
}
ExecuteState::ReturnData(d) => {
return Ok(ProgramState::ReturnData(d));
}
ExecuteState::Revert(r) => {
return Ok(ProgramState::Revert(r));
}
ExecuteState::Proceed => (),
#[cfg(feature = "debug")]
ExecuteState::DebugEvent(d) => {
return Ok(ProgramState::RunProgram(d));
}
}
}
}
pub(crate) fn run_program(&mut self) -> Result<ProgramState, InterpreterError> {
loop {
if self.registers[REG_PC] >= VM_MAX_RAM {
return Err(InterpreterError::Panic(PanicReason::MemoryOverflow));
}
match self.execute()? {
ExecuteState::Return(r) => {
return Ok(ProgramState::Return(r));
}
ExecuteState::ReturnData(d) => {
return Ok(ProgramState::ReturnData(d));
}
ExecuteState::Revert(r) => {
return Ok(ProgramState::Revert(r));
}
ExecuteState::Proceed => (),
#[cfg(feature = "debug")]
ExecuteState::DebugEvent(d) => {
return Ok(ProgramState::RunProgram(d));
}
}
}
}
pub fn transact_owned(storage: S, tx: Transaction) -> Result<StateTransition, InterpreterError> {
Interpreter::with_storage(storage)
.transact(tx)
.map(|st| st.into_owned())
}
pub fn transact(&mut self, tx: Transaction) -> Result<StateTransitionRef<'_>, InterpreterError> {
let state_result = self.init(tx).and_then(|_| self.run());
#[cfg(feature = "profile-any")]
self.profiler.on_transaction(&state_result);
let state = state_result?;
let transition = StateTransitionRef::new(state, self.transaction(), self.receipts());
Ok(transition)
}
}