2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-07-11 09:42:41 +02: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/>.
|
|
|
|
|
|
|
|
//! Parity EVM interpreter binary.
|
|
|
|
|
|
|
|
#![warn(missing_docs)]
|
2017-08-28 14:25:16 +02:00
|
|
|
|
2016-07-11 09:42:41 +02:00
|
|
|
extern crate ethcore;
|
2017-08-28 14:25:16 +02:00
|
|
|
extern crate ethjson;
|
2017-07-06 11:36:15 +02:00
|
|
|
extern crate rustc_hex;
|
|
|
|
extern crate serde;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2016-07-11 09:42:41 +02:00
|
|
|
extern crate docopt;
|
|
|
|
extern crate ethcore_util as util;
|
2017-09-04 16:36:49 +02:00
|
|
|
extern crate ethcore_bigint as bigint;
|
2017-09-06 20:47:45 +02:00
|
|
|
extern crate ethcore_bytes as bytes;
|
2017-08-01 16:41:33 +02:00
|
|
|
extern crate vm;
|
2017-07-12 13:09:17 +02:00
|
|
|
extern crate evm;
|
2017-07-03 07:31:29 +02:00
|
|
|
extern crate panic_hook;
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2016-10-17 11:55:47 +02:00
|
|
|
use std::sync::Arc;
|
2017-05-26 11:06:48 +02:00
|
|
|
use std::{fmt, fs};
|
2017-08-28 14:25:16 +02:00
|
|
|
use std::path::PathBuf;
|
2016-07-11 09:42:41 +02:00
|
|
|
use docopt::Docopt;
|
2017-07-06 11:36:15 +02:00
|
|
|
use rustc_hex::FromHex;
|
2017-09-04 16:36:49 +02:00
|
|
|
use bigint::prelude::U256;
|
2017-09-06 20:47:45 +02:00
|
|
|
use util::Address;
|
|
|
|
use bytes::Bytes;
|
2017-05-26 11:06:48 +02:00
|
|
|
use ethcore::spec;
|
2017-08-10 18:47:23 +02:00
|
|
|
use vm::{ActionParams, CallType};
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2017-08-01 16:41:33 +02:00
|
|
|
mod info;
|
2017-05-26 11:06:48 +02:00
|
|
|
mod display;
|
|
|
|
|
2017-08-01 16:41:33 +02:00
|
|
|
use info::Informant;
|
2017-05-26 11:06:48 +02:00
|
|
|
|
2016-07-11 09:42:41 +02:00
|
|
|
const USAGE: &'static str = r#"
|
|
|
|
EVM implementation for Parity.
|
2017-01-25 18:51:41 +01:00
|
|
|
Copyright 2016, 2017 Parity Technologies (UK) Ltd
|
2016-07-11 09:42:41 +02:00
|
|
|
|
|
|
|
Usage:
|
2017-08-28 14:25:16 +02:00
|
|
|
parity-evm state-test <file> [--json --only NAME --chain CHAIN]
|
2017-08-18 17:44:40 +02:00
|
|
|
parity-evm stats [options]
|
|
|
|
parity-evm [options]
|
|
|
|
parity-evm [-h | --help]
|
2016-07-11 09:42:41 +02:00
|
|
|
|
|
|
|
Transaction options:
|
2017-05-26 11:06:48 +02:00
|
|
|
--code CODE Contract code as hex (without 0x).
|
2017-08-10 18:47:23 +02:00
|
|
|
--to ADDRESS Recipient address (without 0x).
|
2017-05-26 11:06:48 +02:00
|
|
|
--from ADDRESS Sender address (without 0x).
|
|
|
|
--input DATA Input data as hex (without 0x).
|
|
|
|
--gas GAS Supplied gas as hex (without 0x).
|
2017-08-10 18:47:23 +02:00
|
|
|
--gas-price WEI Supplied gas price as hex (without 0x).
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2017-08-28 14:25:16 +02:00
|
|
|
State test options:
|
|
|
|
--only NAME Runs only a single test matching the name.
|
|
|
|
--chain CHAIN Run only tests from specific chain.
|
|
|
|
|
2016-07-11 09:42:41 +02:00
|
|
|
General options:
|
2017-05-26 11:06:48 +02:00
|
|
|
--json Display verbose results in JSON.
|
|
|
|
--chain CHAIN Chain spec file path.
|
2016-07-11 09:42:41 +02:00
|
|
|
-h, --help Display this message and exit.
|
|
|
|
"#;
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2017-07-03 07:31:29 +02:00
|
|
|
panic_hook::set();
|
|
|
|
|
2017-07-06 11:36:15 +02:00
|
|
|
let args: Args = Docopt::new(USAGE).and_then(|d| d.deserialize()).unwrap_or_else(|e| e.exit());
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2017-08-28 14:25:16 +02:00
|
|
|
if args.cmd_state_test {
|
|
|
|
run_state_test(args)
|
|
|
|
} else if args.flag_json {
|
|
|
|
run_call(args, display::json::Informant::default())
|
2017-05-26 11:06:48 +02:00
|
|
|
} else {
|
2017-08-28 14:25:16 +02:00
|
|
|
run_call(args, display::simple::Informant::default())
|
2016-10-18 12:13:49 +02:00
|
|
|
}
|
2016-07-12 09:49:16 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 14:25:16 +02:00
|
|
|
fn run_state_test(args: Args) {
|
|
|
|
use ethjson::state::test::Test;
|
|
|
|
|
|
|
|
let file = args.arg_file.expect("FILE is required");
|
|
|
|
let mut file = match fs::File::open(&file) {
|
|
|
|
Err(err) => die(format!("Unable to open: {:?}: {}", file, err)),
|
|
|
|
Ok(file) => file,
|
|
|
|
};
|
|
|
|
let state_test = match Test::load(&mut file) {
|
|
|
|
Err(err) => die(format!("Unable to load the test file: {}", err)),
|
|
|
|
Ok(test) => test,
|
|
|
|
};
|
|
|
|
let only_test = args.flag_only.map(|s| s.to_lowercase());
|
|
|
|
let only_chain = args.flag_chain.map(|s| s.to_lowercase());
|
|
|
|
|
|
|
|
for (name, test) in state_test {
|
|
|
|
if let Some(false) = only_test.as_ref().map(|only_test| &name.to_lowercase() == only_test) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let multitransaction = test.transaction;
|
|
|
|
let env_info = test.env.into();
|
|
|
|
let pre = test.pre_state.into();
|
|
|
|
|
|
|
|
for (spec, states) in test.post_states {
|
|
|
|
if let Some(false) = only_chain.as_ref().map(|only_chain| &format!("{:?}", spec).to_lowercase() == only_chain) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (idx, state) in states.into_iter().enumerate() {
|
|
|
|
let post_root = state.hash.into();
|
|
|
|
let transaction = multitransaction.select(&state.indexes).into();
|
|
|
|
|
|
|
|
if args.flag_json {
|
|
|
|
let i = display::json::Informant::default();
|
|
|
|
info::run_transaction(&name, idx, &spec, &pre, post_root, &env_info, transaction, i)
|
|
|
|
} else {
|
|
|
|
let i = display::simple::Informant::default();
|
|
|
|
info::run_transaction(&name, idx, &spec, &pre, post_root, &env_info, transaction, i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_call<T: Informant>(args: Args, mut informant: T) {
|
2017-05-26 11:06:48 +02:00
|
|
|
let from = arg(args.from(), "--from");
|
2017-08-10 18:47:23 +02:00
|
|
|
let to = arg(args.to(), "--to");
|
2017-05-26 11:06:48 +02:00
|
|
|
let code = arg(args.code(), "--code");
|
|
|
|
let spec = arg(args.spec(), "--chain");
|
|
|
|
let gas = arg(args.gas(), "--gas");
|
2017-08-28 14:25:16 +02:00
|
|
|
let gas_price = arg(args.gas_price(), "--gas-price");
|
2017-05-26 11:06:48 +02:00
|
|
|
let data = arg(args.data(), "--input");
|
2016-07-12 09:49:16 +02:00
|
|
|
|
2017-08-10 18:47:23 +02:00
|
|
|
if code.is_none() && to == Address::default() {
|
|
|
|
die("Either --code or --to is required.");
|
|
|
|
}
|
|
|
|
|
2017-05-26 11:06:48 +02:00
|
|
|
let mut params = ActionParams::default();
|
2017-08-10 18:47:23 +02:00
|
|
|
params.call_type = if code.is_none() { CallType::Call } else { CallType::None };
|
|
|
|
params.code_address = to;
|
|
|
|
params.address = to;
|
2017-05-26 11:06:48 +02:00
|
|
|
params.sender = from;
|
|
|
|
params.origin = from;
|
|
|
|
params.gas = gas;
|
2017-08-10 18:47:23 +02:00
|
|
|
params.gas_price = gas_price;
|
|
|
|
params.code = code.map(Arc::new);
|
2017-05-26 11:06:48 +02:00
|
|
|
params.data = data;
|
|
|
|
|
2017-06-09 12:31:03 +02:00
|
|
|
informant.set_gas(gas);
|
2017-08-28 14:25:16 +02:00
|
|
|
let result = info::run(&spec, gas, None, |mut client| {
|
2017-09-15 21:07:54 +02:00
|
|
|
client.call(params, &mut informant).map(|r| (r.gas_left, r.return_data.to_vec()))
|
2017-08-28 14:25:16 +02:00
|
|
|
});
|
|
|
|
T::finish(result);
|
2016-07-11 09:42:41 +02:00
|
|
|
}
|
|
|
|
|
2017-07-06 11:36:15 +02:00
|
|
|
#[derive(Debug, Deserialize)]
|
2016-07-11 09:42:41 +02:00
|
|
|
struct Args {
|
|
|
|
cmd_stats: bool,
|
2017-08-28 14:25:16 +02:00
|
|
|
cmd_state_test: bool,
|
|
|
|
arg_file: Option<PathBuf>,
|
|
|
|
flag_only: Option<String>,
|
2017-05-26 11:06:48 +02:00
|
|
|
flag_from: Option<String>,
|
2017-08-10 18:47:23 +02:00
|
|
|
flag_to: Option<String>,
|
2016-07-11 09:42:41 +02:00
|
|
|
flag_code: Option<String>,
|
|
|
|
flag_gas: Option<String>,
|
2017-08-10 18:47:23 +02:00
|
|
|
flag_gas_price: Option<String>,
|
2016-07-11 09:42:41 +02:00
|
|
|
flag_input: Option<String>,
|
2017-08-18 17:44:40 +02:00
|
|
|
flag_chain: Option<String>,
|
2017-05-26 11:06:48 +02:00
|
|
|
flag_json: bool,
|
2016-07-11 09:42:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Args {
|
2017-05-26 11:06:48 +02:00
|
|
|
pub fn gas(&self) -> Result<U256, String> {
|
|
|
|
match self.flag_gas {
|
|
|
|
Some(ref gas) => gas.parse().map_err(to_string),
|
|
|
|
None => Ok(!U256::zero()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-10 18:47:23 +02:00
|
|
|
pub fn gas_price(&self) -> Result<U256, String> {
|
|
|
|
match self.flag_gas_price {
|
|
|
|
Some(ref gas_price) => gas_price.parse().map_err(to_string),
|
|
|
|
None => Ok(U256::zero()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 11:06:48 +02:00
|
|
|
pub fn from(&self) -> Result<Address, String> {
|
|
|
|
match self.flag_from {
|
|
|
|
Some(ref from) => from.parse().map_err(to_string),
|
|
|
|
None => Ok(Address::default()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-10 18:47:23 +02:00
|
|
|
pub fn to(&self) -> Result<Address, String> {
|
|
|
|
match self.flag_to {
|
|
|
|
Some(ref to) => to.parse().map_err(to_string),
|
|
|
|
None => Ok(Address::default()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn code(&self) -> Result<Option<Bytes>, String> {
|
2017-05-26 11:06:48 +02:00
|
|
|
match self.flag_code {
|
2017-08-10 18:47:23 +02:00
|
|
|
Some(ref code) => code.from_hex().map(Some).map_err(to_string),
|
|
|
|
None => Ok(None),
|
2017-05-26 11:06:48 +02:00
|
|
|
}
|
2016-07-11 09:42:41 +02:00
|
|
|
}
|
|
|
|
|
2017-05-26 11:06:48 +02:00
|
|
|
pub fn data(&self) -> Result<Option<Bytes>, String> {
|
|
|
|
match self.flag_input {
|
|
|
|
Some(ref input) => input.from_hex().map_err(to_string).map(Some),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
2016-07-11 09:42:41 +02:00
|
|
|
}
|
|
|
|
|
2017-05-26 11:06:48 +02:00
|
|
|
pub fn spec(&self) -> Result<spec::Spec, String> {
|
2017-08-18 17:44:40 +02:00
|
|
|
Ok(match self.flag_chain {
|
2017-05-26 11:06:48 +02:00
|
|
|
Some(ref filename) => {
|
|
|
|
let file = fs::File::open(filename).map_err(|e| format!("{}", e))?;
|
2017-07-11 10:21:23 +02:00
|
|
|
spec::Spec::load(::std::env::temp_dir(), file)?
|
2017-05-26 11:06:48 +02:00
|
|
|
},
|
|
|
|
None => {
|
2017-07-11 10:21:23 +02:00
|
|
|
ethcore::ethereum::new_foundation(&::std::env::temp_dir())
|
2017-05-26 11:06:48 +02:00
|
|
|
},
|
|
|
|
})
|
2016-07-11 09:42:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 11:06:48 +02:00
|
|
|
fn arg<T>(v: Result<T, String>, param: &str) -> T {
|
|
|
|
v.unwrap_or_else(|e| die(format!("Invalid {}: {}", param, e)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_string<T: fmt::Display>(msg: T) -> String {
|
|
|
|
format!("{}", msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn die<T: fmt::Display>(msg: T) -> ! {
|
2016-07-11 09:42:41 +02:00
|
|
|
println!("{}", msg);
|
|
|
|
::std::process::exit(-1)
|
|
|
|
}
|
2017-08-18 17:44:40 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use docopt::Docopt;
|
|
|
|
use super::{Args, USAGE};
|
|
|
|
|
|
|
|
fn run<T: AsRef<str>>(args: &[T]) -> Args {
|
|
|
|
Docopt::new(USAGE).and_then(|d| d.argv(args.into_iter()).deserialize()).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_parse_all_the_options() {
|
|
|
|
let args = run(&[
|
|
|
|
"parity-evm",
|
|
|
|
"--json",
|
|
|
|
"--gas", "1",
|
|
|
|
"--gas-price", "2",
|
|
|
|
"--from", "0000000000000000000000000000000000000003",
|
|
|
|
"--to", "0000000000000000000000000000000000000004",
|
|
|
|
"--code", "05",
|
|
|
|
"--input", "06",
|
|
|
|
"--chain", "./testfile",
|
|
|
|
]);
|
|
|
|
|
|
|
|
assert_eq!(args.flag_json, true);
|
|
|
|
assert_eq!(args.gas(), Ok(1.into()));
|
|
|
|
assert_eq!(args.gas_price(), Ok(2.into()));
|
|
|
|
assert_eq!(args.from(), Ok(3.into()));
|
|
|
|
assert_eq!(args.to(), Ok(4.into()));
|
|
|
|
assert_eq!(args.code(), Ok(Some(vec![05])));
|
|
|
|
assert_eq!(args.data(), Ok(Some(vec![06])));
|
|
|
|
assert_eq!(args.flag_chain, Some("./testfile".to_owned()));
|
|
|
|
}
|
2017-08-28 14:25:16 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_parse_state_test_command() {
|
|
|
|
let args = run(&[
|
|
|
|
"parity-evm",
|
|
|
|
"state-test",
|
|
|
|
"./file.json",
|
|
|
|
"--chain", "homestead",
|
|
|
|
"--only=add11",
|
|
|
|
"--json",
|
|
|
|
]);
|
|
|
|
|
|
|
|
assert_eq!(args.cmd_state_test, true);
|
|
|
|
assert!(args.arg_file.is_some());
|
|
|
|
assert_eq!(args.flag_json, true);
|
|
|
|
assert_eq!(args.flag_chain, Some("homestead".to_owned()));
|
|
|
|
assert_eq!(args.flag_only, Some("add11".to_owned()));
|
|
|
|
}
|
2017-08-18 17:44:40 +02:00
|
|
|
}
|