2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-03-23 18:36:05 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Vm execution env.
|
|
|
|
|
|
|
|
use bytes::Bytes;
|
|
|
|
use uint::Uint;
|
2017-09-15 21:07:54 +02:00
|
|
|
use hash::H256;
|
2016-03-23 18:36:05 +01:00
|
|
|
use blockchain::State;
|
2017-09-15 21:07:54 +02:00
|
|
|
use vm::{Transaction, Call, Env};
|
2016-03-23 18:36:05 +01:00
|
|
|
|
2018-04-24 14:25:27 +02:00
|
|
|
/// Represents vm execution environment before and after execution of transaction.
|
2016-03-23 18:36:05 +01:00
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
|
|
|
pub struct Vm {
|
|
|
|
/// Contract calls made internaly by executed transaction.
|
|
|
|
#[serde(rename="callcreates")]
|
|
|
|
pub calls: Option<Vec<Call>>,
|
2016-03-24 01:25:59 +01:00
|
|
|
/// Env info.
|
|
|
|
pub env: Env,
|
2016-03-23 18:36:05 +01:00
|
|
|
/// Executed transaction
|
|
|
|
#[serde(rename="exec")]
|
2016-03-24 01:25:59 +01:00
|
|
|
pub transaction: Transaction,
|
|
|
|
/// Gas left after transaction execution.
|
|
|
|
#[serde(rename="gas")]
|
|
|
|
pub gas_left: Option<Uint>,
|
2017-09-15 21:07:54 +02:00
|
|
|
/// Hash of logs created during execution of transaction.
|
|
|
|
pub logs: Option<H256>,
|
2016-03-23 18:36:05 +01:00
|
|
|
/// Transaction output.
|
2016-03-24 01:25:59 +01:00
|
|
|
#[serde(rename="out")]
|
|
|
|
pub output: Option<Bytes>,
|
2016-03-23 18:36:05 +01:00
|
|
|
/// Post execution vm state.
|
|
|
|
#[serde(rename="post")]
|
2016-03-24 01:25:59 +01:00
|
|
|
pub post_state: Option<State>,
|
2016-03-23 18:36:05 +01:00
|
|
|
/// Pre execution vm state.
|
|
|
|
#[serde(rename="pre")]
|
|
|
|
pub pre_state: State,
|
|
|
|
}
|
|
|
|
|
2016-03-24 01:25:59 +01:00
|
|
|
impl Vm {
|
|
|
|
/// Returns true if transaction execution run out of gas.
|
|
|
|
pub fn out_of_gas(&self) -> bool {
|
|
|
|
self.calls.is_none()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 18:36:05 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use serde_json;
|
|
|
|
use vm::Vm;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn vm_deserialization() {
|
|
|
|
let s = r#"{
|
|
|
|
"callcreates" : [
|
|
|
|
],
|
|
|
|
"env" : {
|
|
|
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
|
|
|
"currentDifficulty" : "0x0100",
|
|
|
|
"currentGasLimit" : "0x0f4240",
|
|
|
|
"currentNumber" : "0x00",
|
|
|
|
"currentTimestamp" : "0x01"
|
|
|
|
},
|
|
|
|
"exec" : {
|
|
|
|
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
|
|
|
"caller" : "cd1722f2947def4cf144679da39c4c32bdc35681",
|
|
|
|
"code" : "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055",
|
|
|
|
"data" : "0x",
|
|
|
|
"gas" : "0x0186a0",
|
|
|
|
"gasPrice" : "0x5af3107a4000",
|
|
|
|
"origin" : "cd1722f2947def4cf144679da39c4c32bdc35681",
|
|
|
|
"value" : "0x0de0b6b3a7640000"
|
|
|
|
},
|
|
|
|
"gas" : "0x013874",
|
2017-09-15 21:07:54 +02:00
|
|
|
"logs" : "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
|
2016-03-23 18:36:05 +01:00
|
|
|
"out" : "0x",
|
2017-09-15 21:07:54 +02:00
|
|
|
"network" : "Frontier",
|
2016-03-23 18:36:05 +01:00
|
|
|
"post" : {
|
|
|
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
|
|
|
"balance" : "0x0de0b6b3a7640000",
|
|
|
|
"code" : "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055",
|
|
|
|
"nonce" : "0x00",
|
|
|
|
"storage" : {
|
|
|
|
"0x00" : "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"pre" : {
|
|
|
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
|
|
|
"balance" : "0x0de0b6b3a7640000",
|
|
|
|
"code" : "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055",
|
|
|
|
"nonce" : "0x00",
|
|
|
|
"storage" : {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let _deserialized: Vm = serde_json::from_str(s).unwrap();
|
|
|
|
// TODO: validate all fields
|
|
|
|
}
|
|
|
|
}
|