2018-02-05 20:59:27 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! ActionParams parser for wasm
|
|
|
|
|
|
|
|
use vm;
|
|
|
|
use wasm_utils::{self, rules};
|
|
|
|
use parity_wasm::elements::{self, Deserialize};
|
|
|
|
use parity_wasm::peek_size;
|
|
|
|
|
2018-02-19 12:27:42 +01:00
|
|
|
fn gas_rules(wasm_costs: &vm::WasmCosts) -> rules::Set {
|
2018-02-05 20:59:27 +01:00
|
|
|
rules::Set::new({
|
|
|
|
let mut vals = ::std::collections::HashMap::with_capacity(4);
|
2018-02-19 12:27:42 +01:00
|
|
|
vals.insert(rules::InstructionType::Load, wasm_costs.mem as u32);
|
|
|
|
vals.insert(rules::InstructionType::Store, wasm_costs.mem as u32);
|
|
|
|
vals.insert(rules::InstructionType::Div, wasm_costs.div as u32);
|
|
|
|
vals.insert(rules::InstructionType::Mul, wasm_costs.mul as u32);
|
2018-02-05 20:59:27 +01:00
|
|
|
vals
|
2018-02-19 12:27:42 +01:00
|
|
|
}).with_grow_cost(wasm_costs.grow_mem)
|
2018-02-05 20:59:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Splits payload to code and data according to params.params_type, also
|
|
|
|
/// loads the module instance from payload and injects gas counter according
|
|
|
|
/// to schedule.
|
2018-02-19 12:27:42 +01:00
|
|
|
pub fn payload<'a>(params: &'a vm::ActionParams, wasm_costs: &vm::WasmCosts)
|
2018-02-05 20:59:27 +01:00
|
|
|
-> Result<(elements::Module, &'a [u8]), vm::Error>
|
|
|
|
{
|
|
|
|
let code = match params.code {
|
|
|
|
Some(ref code) => &code[..],
|
|
|
|
None => { return Err(vm::Error::Wasm("Invalid wasm call".to_owned())); }
|
|
|
|
};
|
|
|
|
|
|
|
|
let (mut cursor, data_position) = match params.params_type {
|
|
|
|
vm::ParamsType::Embedded => {
|
|
|
|
let module_size = peek_size(&*code);
|
|
|
|
(
|
|
|
|
::std::io::Cursor::new(&code[..module_size]),
|
|
|
|
module_size
|
|
|
|
)
|
|
|
|
},
|
|
|
|
vm::ParamsType::Separate => {
|
|
|
|
(::std::io::Cursor::new(&code[..]), 0)
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-02-12 11:19:43 +01:00
|
|
|
let deserialized_module = elements::Module::deserialize(
|
2018-02-05 20:59:27 +01:00
|
|
|
&mut cursor
|
|
|
|
).map_err(|err| {
|
|
|
|
vm::Error::Wasm(format!("Error deserializing contract code ({:?})", err))
|
2018-02-12 11:19:43 +01:00
|
|
|
})?;
|
|
|
|
|
|
|
|
if deserialized_module.memory_section().map_or(false, |ms| ms.entries().len() > 0) {
|
|
|
|
// According to WebAssembly spec, internal memory is hidden from embedder and should not
|
|
|
|
// be interacted with. So we disable this kind of modules at decoding level.
|
|
|
|
return Err(vm::Error::Wasm(format!("Malformed wasm module: internal memory")));
|
|
|
|
}
|
|
|
|
|
|
|
|
let contract_module = wasm_utils::inject_gas_counter(
|
|
|
|
deserialized_module,
|
2018-02-19 12:27:42 +01:00
|
|
|
&gas_rules(wasm_costs),
|
2018-02-05 20:59:27 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
let data = match params.params_type {
|
|
|
|
vm::ParamsType::Embedded => {
|
|
|
|
if data_position < code.len() { &code[data_position..] } else { &[] }
|
|
|
|
},
|
|
|
|
vm::ParamsType::Separate => {
|
|
|
|
match params.data {
|
|
|
|
Some(ref s) => &s[..],
|
|
|
|
None => &[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((contract_module, data))
|
|
|
|
}
|