2017-10-27 19:50:12 +03:00
|
|
|
use parity_wasm::{elements};
|
|
|
|
use self::elements::{ External, Section, Opcode, DataSegment, InitExpr, Internal };
|
2017-06-09 18:33:05 +03:00
|
|
|
|
2017-10-27 18:32:33 +03:00
|
|
|
use super::{CREATE_SYMBOL, CALL_SYMBOL};
|
2017-10-26 15:49:55 +03:00
|
|
|
|
|
|
|
/// If module has an exported "_create" function we want to pack it into "constructor".
|
|
|
|
/// `raw_module` is the actual contract code
|
|
|
|
/// `ctor_module` is the constructor which should return `raw_module`
|
2017-10-25 20:36:05 +03:00
|
|
|
pub fn pack_instance(raw_module: Vec<u8>, ctor_module: &mut elements::Module) {
|
2017-06-09 18:33:05 +03:00
|
|
|
|
2017-10-26 15:49:55 +03:00
|
|
|
// We need to find an internal ID of function witch is exported as "_create"
|
|
|
|
// in order to find it in the Code section of the module
|
2017-10-25 20:36:05 +03:00
|
|
|
let create_func_id = {
|
2017-10-26 15:49:55 +03:00
|
|
|
let found_entry = ctor_module.export_section().expect("No export section found").entries().iter()
|
|
|
|
.find(|entry| CREATE_SYMBOL == entry.field()).expect("No export with name _create found");
|
2017-10-25 20:36:05 +03:00
|
|
|
|
|
|
|
let function_index: usize = match found_entry.internal() {
|
|
|
|
&Internal::Function(index) => index as usize,
|
2017-10-26 15:49:55 +03:00
|
|
|
_ => panic!("export is not a function"),
|
2017-10-25 20:36:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
let import_section_len: usize = match ctor_module.import_section() {
|
|
|
|
Some(import) =>
|
|
|
|
import.entries().iter().filter(|entry| match entry.external() {
|
|
|
|
&External::Function(_) => true,
|
|
|
|
_ => false,
|
|
|
|
}).count(),
|
|
|
|
None => 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Calculates a function index within module's function section
|
|
|
|
function_index - import_section_len
|
|
|
|
};
|
|
|
|
|
2017-10-26 15:49:55 +03:00
|
|
|
// Code data address is an address where we put the contract's code (raw_module)
|
2017-10-25 20:36:05 +03:00
|
|
|
let mut code_data_address = 0i32;
|
2017-10-27 18:32:33 +03:00
|
|
|
|
2017-10-25 20:36:05 +03:00
|
|
|
for section in ctor_module.sections_mut() {
|
|
|
|
match section {
|
2017-10-27 18:32:33 +03:00
|
|
|
// TODO: add data section is there no one
|
2017-10-25 20:36:05 +03:00
|
|
|
&mut Section::Data(ref mut data_section) => {
|
|
|
|
let (index, offset) = if let Some(ref entry) = data_section.entries().iter().last() {
|
|
|
|
if let Opcode::I32Const(offst) = entry.offset().code()[0] {
|
|
|
|
let len = entry.value().len() as i32;
|
|
|
|
let offst = offst as i32;
|
2017-10-26 19:24:40 +03:00
|
|
|
(entry.index(), offst + (len + 4) - len % 4)
|
2017-10-25 20:36:05 +03:00
|
|
|
} else {
|
|
|
|
(0, 0)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(0, 0)
|
|
|
|
};
|
2017-10-26 15:49:55 +03:00
|
|
|
let code_data = DataSegment::new(
|
|
|
|
index,
|
|
|
|
InitExpr::new(vec![Opcode::I32Const(offset),Opcode::End]),
|
|
|
|
raw_module.clone()
|
|
|
|
);
|
2017-10-25 20:36:05 +03:00
|
|
|
data_section.entries_mut().push(code_data);
|
|
|
|
code_data_address = offset;
|
|
|
|
},
|
|
|
|
_ => {;}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for section in ctor_module.sections_mut() {
|
|
|
|
match section {
|
|
|
|
&mut Section::Export(ref mut export_section) => {
|
|
|
|
for entry in export_section.entries_mut().iter_mut() {
|
2017-10-26 15:49:55 +03:00
|
|
|
if CREATE_SYMBOL == entry.field() {
|
2017-10-25 20:36:05 +03:00
|
|
|
// change _create export name into default _call
|
2017-10-26 15:49:55 +03:00
|
|
|
*entry.field_mut() = CALL_SYMBOL.to_owned();
|
2017-10-25 20:36:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&mut Section::Code(ref mut code_section) => {
|
|
|
|
let code = code_section.bodies_mut()[create_func_id].code_mut().elements_mut();
|
|
|
|
code.pop();
|
|
|
|
code.extend([
|
|
|
|
Opcode::GetLocal(0),
|
|
|
|
Opcode::I32Const(code_data_address),
|
|
|
|
Opcode::I32Store(0, 8),
|
|
|
|
Opcode::GetLocal(0),
|
2017-10-26 15:49:55 +03:00
|
|
|
Opcode::I32Const(raw_module.len() as i32),
|
2017-10-25 20:36:05 +03:00
|
|
|
Opcode::I32Store(0, 12),
|
|
|
|
Opcode::End].iter().cloned());
|
|
|
|
},
|
|
|
|
|
|
|
|
_ => {;},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2017-10-27 18:32:33 +03:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
extern crate parity_wasm;
|
2017-10-27 19:25:57 +03:00
|
|
|
extern crate byteorder;
|
|
|
|
|
2017-10-27 19:50:12 +03:00
|
|
|
use parity_wasm::builder;
|
2017-10-27 18:32:33 +03:00
|
|
|
use parity_wasm::interpreter;
|
2017-10-27 19:25:57 +03:00
|
|
|
use parity_wasm::interpreter::RuntimeValue;
|
2017-10-27 18:32:33 +03:00
|
|
|
use parity_wasm::ModuleInstanceInterface;
|
|
|
|
use super::*;
|
|
|
|
use super::super::optimize;
|
|
|
|
use super::super::SET_TEMP_RET_SYMBOL;
|
2017-10-27 19:25:57 +03:00
|
|
|
use byteorder::{ByteOrder, LittleEndian};
|
2017-10-27 18:32:33 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn call_returns_code() {
|
|
|
|
let mut module = builder::module()
|
|
|
|
.import()
|
|
|
|
.module("env")
|
|
|
|
.field("memory")
|
|
|
|
.external()
|
|
|
|
.memory(1 as u32, Some(1 as u32))
|
|
|
|
.build()
|
|
|
|
.data()
|
|
|
|
.offset(elements::Opcode::I32Const(16))
|
|
|
|
.value(vec![0u8])
|
|
|
|
.build()
|
|
|
|
.function()
|
|
|
|
.signature().param().i32().build()
|
|
|
|
.body()
|
|
|
|
.with_opcodes(elements::Opcodes::new(
|
|
|
|
vec![
|
|
|
|
elements::Opcode::End
|
|
|
|
]
|
|
|
|
))
|
|
|
|
.build()
|
|
|
|
.build()
|
|
|
|
.function()
|
|
|
|
.signature().param().i32().build()
|
|
|
|
.body()
|
|
|
|
.with_opcodes(elements::Opcodes::new(
|
|
|
|
vec![
|
|
|
|
elements::Opcode::End
|
|
|
|
]
|
|
|
|
))
|
|
|
|
.build()
|
|
|
|
.build()
|
|
|
|
.export()
|
|
|
|
.field("_call")
|
|
|
|
.internal().func(0)
|
|
|
|
.build()
|
|
|
|
.export()
|
|
|
|
.field("_create")
|
|
|
|
.internal().func(1)
|
|
|
|
.build()
|
|
|
|
.build();
|
2017-10-27 19:25:57 +03:00
|
|
|
|
2017-10-27 18:32:33 +03:00
|
|
|
let mut ctor_module = module.clone();
|
|
|
|
optimize(&mut module, vec![CALL_SYMBOL, SET_TEMP_RET_SYMBOL]).expect("Optimizer to finish without errors");
|
|
|
|
optimize(&mut ctor_module, vec![CREATE_SYMBOL, SET_TEMP_RET_SYMBOL]).expect("Optimizer to finish without errors");
|
|
|
|
|
|
|
|
let raw_module = parity_wasm::serialize(module).unwrap();
|
2017-10-27 19:25:57 +03:00
|
|
|
pack_instance(raw_module.clone(), &mut ctor_module);
|
2017-10-27 18:32:33 +03:00
|
|
|
|
|
|
|
let program = parity_wasm::DefaultProgramInstance::new().expect("Program instance to load");
|
|
|
|
let env_instance = program.module("env").expect("Wasm program to contain env module");
|
|
|
|
let env_memory = env_instance.memory(interpreter::ItemIndex::Internal(0)).expect("Linear memory to exist in wasm runtime");
|
|
|
|
|
2017-10-27 19:50:12 +03:00
|
|
|
let execution_params = interpreter::ExecutionParams::default();
|
2017-10-27 18:32:33 +03:00
|
|
|
let module = program.add_module("contract", ctor_module, None).expect("Failed to initialize module");
|
|
|
|
|
2017-10-27 19:50:12 +03:00
|
|
|
let _ = module.execute_export(CALL_SYMBOL, execution_params.add_argument(RuntimeValue::I32(1024)));
|
2017-10-27 19:25:57 +03:00
|
|
|
|
|
|
|
let pointer = LittleEndian::read_u32(&env_memory.get(1024 + 8, 4).unwrap());
|
|
|
|
let len = LittleEndian::read_u32(&env_memory.get(1024 + 12, 4).unwrap());
|
|
|
|
|
|
|
|
let result_code = env_memory.get(pointer, len as usize).expect("Failed to get code");
|
2017-10-27 18:32:33 +03:00
|
|
|
|
2017-10-27 19:25:57 +03:00
|
|
|
assert_eq!(raw_module, result_code);
|
2017-10-27 18:32:33 +03:00
|
|
|
|
|
|
|
let result_module: elements::Module = parity_wasm::deserialize_buffer(result_code).expect("Result module is not valid");
|
|
|
|
|
|
|
|
let program = parity_wasm::DefaultProgramInstance::new().expect("Program2 instance to load");
|
|
|
|
let module = program.add_module("contract", result_module, None).expect("Failed to initialize module");
|
|
|
|
let execution_params = interpreter::ExecutionParams::default();
|
|
|
|
|
2017-10-27 19:50:12 +03:00
|
|
|
let _ = module.execute_export(CALL_SYMBOL, execution_params);
|
2017-10-27 18:32:33 +03:00
|
|
|
}
|
|
|
|
}
|