2019-02-01 05:51:34 +00:00
|
|
|
extern crate wasmer_runtime;
|
2019-02-02 23:43:59 +00:00
|
|
|
extern crate wasmer_runtime_core;
|
2019-02-01 05:51:34 +00:00
|
|
|
|
2019-02-02 20:53:07 +00:00
|
|
|
use libc::{c_char, c_int, int32_t, int64_t, uint32_t, uint8_t};
|
2019-02-10 23:57:23 +00:00
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::error::Error;
|
2019-02-02 06:26:10 +00:00
|
|
|
use std::ffi::CStr;
|
2019-02-02 16:44:08 +00:00
|
|
|
use std::slice;
|
2019-02-02 06:26:10 +00:00
|
|
|
use std::str;
|
2019-02-02 23:43:59 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::{ffi::c_void, mem, ptr};
|
2019-02-10 20:14:42 +00:00
|
|
|
use wasmer_runtime::{Ctx, Global, ImportObject, Instance, Memory, Table, Value};
|
2019-02-02 23:43:59 +00:00
|
|
|
use wasmer_runtime_core::export::{Context, Export, FuncPointer};
|
|
|
|
use wasmer_runtime_core::import::{LikeNamespace, Namespace};
|
2019-02-09 23:39:15 +00:00
|
|
|
use wasmer_runtime_core::types::{
|
|
|
|
ElementType, FuncSig, GlobalDescriptor, MemoryDescriptor, TableDescriptor, Type,
|
|
|
|
};
|
2019-02-10 20:14:42 +00:00
|
|
|
use wasmer_runtime_core::units::{Bytes, Pages};
|
2019-02-01 05:51:34 +00:00
|
|
|
|
|
|
|
#[allow(non_camel_case_types)]
|
2019-02-02 00:52:22 +00:00
|
|
|
pub struct wasmer_import_object_t();
|
2019-02-01 05:51:34 +00:00
|
|
|
|
|
|
|
#[allow(non_camel_case_types)]
|
2019-02-02 00:52:22 +00:00
|
|
|
pub struct wasmer_instance_t();
|
2019-02-01 05:51:34 +00:00
|
|
|
|
2019-02-02 23:43:59 +00:00
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
pub struct wasmer_instance_context_t();
|
|
|
|
|
2019-02-01 05:51:34 +00:00
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
#[no_mangle]
|
|
|
|
#[repr(C)]
|
2019-02-12 01:07:28 +00:00
|
|
|
pub enum wasmer_result_t {
|
|
|
|
WASMER_OK = 1,
|
|
|
|
WASMER_ERROR = 2,
|
2019-02-09 19:37:07 +00:00
|
|
|
}
|
|
|
|
|
2019-02-02 20:53:07 +00:00
|
|
|
#[repr(u32)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub enum wasmer_value_tag {
|
|
|
|
WASM_I32,
|
|
|
|
WASM_I64,
|
|
|
|
WASM_F32,
|
|
|
|
WASM_F64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub union wasmer_value {
|
|
|
|
I32: int32_t,
|
|
|
|
I64: int64_t,
|
|
|
|
F32: f32,
|
|
|
|
F64: f64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag,
|
|
|
|
value: wasmer_value,
|
|
|
|
}
|
|
|
|
|
2019-02-09 23:39:15 +00:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct wasmer_global_descriptor_t {
|
|
|
|
mutable: bool,
|
|
|
|
kind: wasmer_value_tag,
|
|
|
|
}
|
|
|
|
|
2019-02-02 23:43:59 +00:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone)]
|
2019-02-05 03:46:47 +00:00
|
|
|
pub struct wasmer_memory_t();
|
2019-02-09 19:37:07 +00:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct wasmer_table_t();
|
2019-02-05 03:46:47 +00:00
|
|
|
|
2019-02-09 23:39:15 +00:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct wasmer_global_t();
|
|
|
|
|
2019-02-05 03:46:47 +00:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct wasmer_limits_t {
|
|
|
|
pub min: uint32_t,
|
|
|
|
pub max: uint32_t,
|
2019-02-02 23:43:59 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 06:01:01 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
2019-02-09 19:09:54 +00:00
|
|
|
pub unsafe extern "C" fn wasmer_validate(
|
|
|
|
wasm_bytes: *mut uint8_t,
|
|
|
|
wasm_bytes_len: uint32_t,
|
|
|
|
) -> bool {
|
2019-02-05 06:01:01 +00:00
|
|
|
if wasm_bytes.is_null() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let bytes: &[u8] =
|
|
|
|
unsafe { ::std::slice::from_raw_parts_mut(wasm_bytes, wasm_bytes_len as usize) };
|
|
|
|
wasmer_runtime_core::validate(bytes)
|
|
|
|
}
|
|
|
|
|
2019-02-01 05:51:34 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_import_object_new() -> *mut wasmer_import_object_t {
|
|
|
|
Box::into_raw(Box::new(ImportObject::new())) as *mut wasmer_import_object_t
|
|
|
|
}
|
|
|
|
|
2019-02-05 03:46:47 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn wasmer_memory_new(
|
|
|
|
mut memory: *mut *mut wasmer_memory_t,
|
|
|
|
limits: wasmer_limits_t,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-05 03:46:47 +00:00
|
|
|
let desc = MemoryDescriptor {
|
|
|
|
minimum: Pages(limits.min),
|
|
|
|
maximum: Some(Pages(limits.max)),
|
|
|
|
shared: false,
|
|
|
|
};
|
|
|
|
let result = Memory::new(desc);
|
|
|
|
let new_memory = match result {
|
|
|
|
Ok(memory) => memory,
|
|
|
|
Err(error) => {
|
2019-02-10 23:57:23 +00:00
|
|
|
update_last_error(error);
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-05 03:46:47 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
unsafe { *memory = Box::into_raw(Box::new(new_memory)) as *mut wasmer_memory_t };
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-05 03:46:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 23:53:03 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_memory_grow(
|
|
|
|
memory: *mut wasmer_memory_t,
|
|
|
|
delta: uint32_t,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-09 23:53:03 +00:00
|
|
|
let memory = unsafe { Box::from_raw(memory as *mut Memory) };
|
|
|
|
let maybe_delta = memory.grow(Pages(delta));
|
|
|
|
Box::into_raw(memory);
|
|
|
|
if let Some(_delta) = maybe_delta {
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-09 23:53:03 +00:00
|
|
|
} else {
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_ERROR
|
2019-02-09 23:53:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 03:46:47 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_memory_length(memory: *mut wasmer_memory_t) -> uint32_t {
|
|
|
|
let memory = unsafe { Box::from_raw(memory as *mut Memory) };
|
|
|
|
let Pages(len) = memory.size();
|
|
|
|
Box::into_raw(memory);
|
|
|
|
len
|
|
|
|
}
|
|
|
|
|
2019-02-09 19:37:07 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn wasmer_table_new(
|
|
|
|
mut table: *mut *mut wasmer_table_t,
|
|
|
|
limits: wasmer_limits_t,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-09 19:37:07 +00:00
|
|
|
let desc = TableDescriptor {
|
|
|
|
element: ElementType::Anyfunc,
|
|
|
|
minimum: limits.min,
|
|
|
|
maximum: Some(limits.max),
|
|
|
|
};
|
|
|
|
let result = Table::new(desc);
|
|
|
|
let new_table = match result {
|
|
|
|
Ok(table) => table,
|
|
|
|
Err(error) => {
|
2019-02-10 23:57:23 +00:00
|
|
|
update_last_error(error);
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-09 19:37:07 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
unsafe { *table = Box::into_raw(Box::new(new_table)) as *mut wasmer_table_t };
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-09 19:37:07 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 19:58:50 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_table_grow(
|
|
|
|
table: *mut wasmer_table_t,
|
|
|
|
delta: uint32_t,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-09 19:58:50 +00:00
|
|
|
let table = unsafe { Box::from_raw(table as *mut Table) };
|
|
|
|
let maybe_delta = table.grow(delta);
|
|
|
|
Box::into_raw(table);
|
|
|
|
if let Some(_delta) = maybe_delta {
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-09 19:58:50 +00:00
|
|
|
} else {
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_ERROR
|
2019-02-09 19:58:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-09 19:37:07 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_table_length(table: *mut wasmer_table_t) -> uint32_t {
|
|
|
|
let table = unsafe { Box::from_raw(table as *mut Table) };
|
|
|
|
let len = table.size();
|
|
|
|
Box::into_raw(table);
|
|
|
|
len
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_table_destroy(table: *mut wasmer_table_t) {
|
|
|
|
if !table.is_null() {
|
|
|
|
drop(unsafe { Box::from_raw(table as *mut Table) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-09 23:39:15 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn wasmer_global_new(
|
|
|
|
value: wasmer_value_t,
|
|
|
|
mutable: bool,
|
|
|
|
) -> *mut wasmer_global_t {
|
|
|
|
let global = if mutable {
|
|
|
|
Global::new_mutable(value.into())
|
|
|
|
} else {
|
|
|
|
Global::new(value.into())
|
|
|
|
};
|
|
|
|
unsafe { Box::into_raw(Box::new(global)) as *mut wasmer_global_t }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_global_get(global: *mut wasmer_global_t) -> wasmer_value_t {
|
|
|
|
let global = unsafe { Box::from_raw(global as *mut Global) };
|
|
|
|
let value: wasmer_value_t = global.get().into();
|
|
|
|
Box::into_raw(global);
|
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_global_set(global: *mut wasmer_global_t, value: wasmer_value_t) {
|
|
|
|
let global = unsafe { Box::from_raw(global as *mut Global) };
|
|
|
|
global.set(value.into());
|
|
|
|
Box::into_raw(global);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_global_get_descriptor(
|
|
|
|
global: *mut wasmer_global_t,
|
|
|
|
) -> wasmer_global_descriptor_t {
|
|
|
|
let global = unsafe { Box::from_raw(global as *mut Global) };
|
|
|
|
let descriptor = global.descriptor();
|
|
|
|
let desc = wasmer_global_descriptor_t {
|
|
|
|
mutable: descriptor.mutable,
|
|
|
|
kind: descriptor.ty.into(),
|
|
|
|
};
|
|
|
|
Box::into_raw(global);
|
|
|
|
desc
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_global_destroy(global: *mut wasmer_global_t) {
|
|
|
|
if !global.is_null() {
|
|
|
|
drop(unsafe { Box::from_raw(global as *mut Global) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-02 04:10:36 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2019-02-01 05:51:34 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_import_object_destroy(import_object: *mut wasmer_import_object_t) {
|
|
|
|
if !import_object.is_null() {
|
|
|
|
drop(unsafe { Box::from_raw(import_object as *mut ImportObject) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-02 04:10:36 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2019-02-05 03:46:47 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_memory_destroy(memory: *mut wasmer_memory_t) {
|
|
|
|
if !memory.is_null() {
|
|
|
|
drop(unsafe { Box::from_raw(memory as *mut Memory) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2019-02-01 05:51:34 +00:00
|
|
|
#[no_mangle]
|
2019-02-02 14:43:29 +00:00
|
|
|
pub unsafe extern "C" fn wasmer_instantiate(
|
|
|
|
mut instance: *mut *mut wasmer_instance_t,
|
2019-02-02 06:26:10 +00:00
|
|
|
wasm_bytes: *mut uint8_t,
|
|
|
|
wasm_bytes_len: uint32_t,
|
2019-02-01 05:51:34 +00:00
|
|
|
import_object: *mut wasmer_import_object_t,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-01 05:51:34 +00:00
|
|
|
let import_object = unsafe { Box::from_raw(import_object as *mut ImportObject) };
|
2019-02-02 06:26:10 +00:00
|
|
|
if wasm_bytes.is_null() {
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-02 06:26:10 +00:00
|
|
|
}
|
2019-02-02 14:43:29 +00:00
|
|
|
let bytes: &[u8] =
|
|
|
|
unsafe { ::std::slice::from_raw_parts_mut(wasm_bytes, wasm_bytes_len as usize) };
|
2019-02-09 19:09:54 +00:00
|
|
|
let result = wasmer_runtime::instantiate(bytes, &*import_object);
|
2019-02-01 05:51:34 +00:00
|
|
|
let new_instance = match result {
|
|
|
|
Ok(instance) => instance,
|
2019-02-02 06:26:10 +00:00
|
|
|
Err(error) => {
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-02 14:43:29 +00:00
|
|
|
}
|
2019-02-01 05:51:34 +00:00
|
|
|
};
|
2019-02-02 14:43:29 +00:00
|
|
|
unsafe { *instance = Box::into_raw(Box::new(new_instance)) as *mut wasmer_instance_t };
|
2019-02-10 20:27:08 +00:00
|
|
|
Box::into_raw(import_object);
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-01 05:51:34 +00:00
|
|
|
}
|
2019-02-02 06:26:10 +00:00
|
|
|
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
2019-02-02 14:43:29 +00:00
|
|
|
pub unsafe extern "C" fn wasmer_instance_call(
|
|
|
|
instance: *mut wasmer_instance_t,
|
|
|
|
name: *const c_char,
|
2019-02-02 20:53:07 +00:00
|
|
|
params: *const wasmer_value_t,
|
2019-02-02 16:44:08 +00:00
|
|
|
params_len: c_int,
|
2019-02-02 20:53:07 +00:00
|
|
|
results: *mut wasmer_value_t,
|
2019-02-02 16:44:08 +00:00
|
|
|
results_len: c_int,
|
2019-02-12 01:07:28 +00:00
|
|
|
) -> wasmer_result_t {
|
2019-02-02 06:26:10 +00:00
|
|
|
// TODO handle params and results
|
2019-02-02 14:43:29 +00:00
|
|
|
if instance.is_null() {
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-02 06:26:10 +00:00
|
|
|
}
|
2019-02-02 14:43:29 +00:00
|
|
|
if name.is_null() {
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-02 06:26:10 +00:00
|
|
|
}
|
2019-02-02 16:44:08 +00:00
|
|
|
|
|
|
|
if params.is_null() {
|
2019-02-12 01:07:28 +00:00
|
|
|
return wasmer_result_t::WASMER_ERROR;
|
2019-02-02 16:44:08 +00:00
|
|
|
}
|
|
|
|
|
2019-02-02 20:53:07 +00:00
|
|
|
let params: &[wasmer_value_t] = slice::from_raw_parts(params, params_len as usize);
|
2019-02-02 16:44:08 +00:00
|
|
|
// TODO Fix this conversion and params
|
2019-02-02 20:53:07 +00:00
|
|
|
let params: Vec<Value> = params.iter().cloned().map(|x| x.into()).collect();
|
2019-02-02 16:44:08 +00:00
|
|
|
// let params= &[Value::I32(3), Value::I32(4)];
|
|
|
|
|
2019-02-02 14:43:29 +00:00
|
|
|
let func_name_c = unsafe { CStr::from_ptr(name) };
|
2019-02-02 06:26:10 +00:00
|
|
|
let func_name_r = func_name_c.to_str().unwrap();
|
|
|
|
let instance = unsafe { Box::from_raw(instance as *mut Instance) };
|
2019-02-02 16:44:08 +00:00
|
|
|
|
2019-02-02 20:53:07 +00:00
|
|
|
let results: &mut [wasmer_value_t] = slice::from_raw_parts_mut(results, results_len as usize);
|
2019-02-02 16:44:08 +00:00
|
|
|
let result = instance.call(func_name_r, ¶ms[..]);
|
2019-02-02 23:43:59 +00:00
|
|
|
Box::into_raw(instance);
|
2019-02-02 06:26:10 +00:00
|
|
|
match result {
|
2019-02-02 20:53:07 +00:00
|
|
|
Ok(results_vec) => {
|
|
|
|
println!("Call Res: {:?}", results_vec);
|
|
|
|
if results_vec.len() > 0 {
|
|
|
|
let ret = match results_vec[0] {
|
|
|
|
Value::I32(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_I32,
|
|
|
|
value: wasmer_value { I32: x },
|
|
|
|
},
|
|
|
|
Value::I64(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_I64,
|
|
|
|
value: wasmer_value { I64: x },
|
|
|
|
},
|
|
|
|
Value::F32(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_F32,
|
|
|
|
value: wasmer_value { F32: x },
|
|
|
|
},
|
|
|
|
Value::F64(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_F64,
|
|
|
|
value: wasmer_value { F64: x },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
results[0] = ret;
|
2019-02-02 16:44:08 +00:00
|
|
|
}
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_OK
|
2019-02-02 14:43:29 +00:00
|
|
|
}
|
2019-02-02 06:26:10 +00:00
|
|
|
Err(err) => {
|
2019-02-10 23:57:23 +00:00
|
|
|
update_last_error(err);
|
2019-02-12 01:07:28 +00:00
|
|
|
wasmer_result_t::WASMER_ERROR
|
2019-02-02 06:26:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 00:07:37 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2019-02-02 23:43:59 +00:00
|
|
|
#[no_mangle]
|
2019-02-03 00:07:37 +00:00
|
|
|
pub unsafe extern "C" fn wasmer_imports_set_import_func(
|
2019-02-02 23:43:59 +00:00
|
|
|
import_object: *mut wasmer_import_object_t,
|
|
|
|
namespace: *const c_char,
|
|
|
|
name: *const c_char,
|
|
|
|
func: extern "C" fn(data: *mut c_void),
|
2019-02-03 01:10:08 +00:00
|
|
|
params: *const wasmer_value_tag,
|
|
|
|
params_len: c_int,
|
|
|
|
returns: *const wasmer_value_tag,
|
|
|
|
returns_len: c_int,
|
2019-02-02 23:43:59 +00:00
|
|
|
) {
|
|
|
|
let mut import_object = unsafe { Box::from_raw(import_object as *mut ImportObject) };
|
|
|
|
let namespace_c = unsafe { CStr::from_ptr(namespace) };
|
|
|
|
let namespace_r = namespace_c.to_str().unwrap();
|
|
|
|
let name_c = unsafe { CStr::from_ptr(name) };
|
|
|
|
let name_r = name_c.to_str().unwrap();
|
|
|
|
|
2019-02-03 01:10:08 +00:00
|
|
|
let params: &[wasmer_value_tag] = slice::from_raw_parts(params, params_len as usize);
|
|
|
|
let params: Vec<Type> = params.iter().cloned().map(|x| x.into()).collect();
|
|
|
|
let returns: &[wasmer_value_tag] = slice::from_raw_parts(returns, returns_len as usize);
|
|
|
|
let returns: Vec<Type> = returns.iter().cloned().map(|x| x.into()).collect();
|
|
|
|
|
2019-02-02 23:43:59 +00:00
|
|
|
let export = Export::Function {
|
|
|
|
func: unsafe { FuncPointer::new(func as _) },
|
|
|
|
ctx: Context::Internal,
|
2019-02-03 01:10:08 +00:00
|
|
|
signature: Arc::new(FuncSig::new(params, returns)),
|
2019-02-02 23:43:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO handle existing namespace
|
|
|
|
// let maybe_namespace = import_object.get_namespace(namespace_r);
|
|
|
|
// if let Some(n) = maybe_namespace {
|
|
|
|
// n.insert(name_r, export);
|
|
|
|
// } else {
|
|
|
|
let mut namespace = Namespace::new();
|
|
|
|
namespace.insert(name_r, export);
|
|
|
|
import_object.register(namespace_r, namespace);
|
|
|
|
Box::into_raw(import_object);
|
|
|
|
// };
|
|
|
|
}
|
|
|
|
|
2019-02-10 20:24:36 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2019-02-02 23:43:59 +00:00
|
|
|
#[no_mangle]
|
2019-02-10 20:24:36 +00:00
|
|
|
pub extern "C" fn wasmer_instance_context_memory(
|
|
|
|
ctx: *mut wasmer_instance_context_t,
|
|
|
|
memory_idx: uint32_t,
|
|
|
|
) -> *const wasmer_memory_t {
|
|
|
|
let mut ctx = unsafe { Box::from_raw(ctx as *mut Ctx) };
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
memory as *const Memory as *const wasmer_memory_t
|
|
|
|
}
|
2019-02-02 23:43:59 +00:00
|
|
|
|
2019-02-10 21:20:35 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_memory_data(mem: *mut wasmer_memory_t) -> *mut uint8_t {
|
|
|
|
let memory = mem as *mut Memory;
|
|
|
|
use std::cell::Cell;
|
|
|
|
unsafe { ((*memory).view::<u8>()[..]).as_ptr() as *mut Cell<u8> as *mut u8 }
|
|
|
|
}
|
|
|
|
|
2019-02-10 20:14:42 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_memory_data_length(mem: *mut wasmer_memory_t) -> uint32_t {
|
|
|
|
let memory = mem as *mut Memory;
|
|
|
|
let Bytes(len) = unsafe { (*memory).size().bytes() };
|
|
|
|
len as uint32_t
|
|
|
|
}
|
|
|
|
|
2019-02-02 06:26:10 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_instance_destroy(instance: *mut wasmer_instance_t) {
|
|
|
|
if !instance.is_null() {
|
|
|
|
drop(unsafe { Box::from_raw(instance as *mut Instance) });
|
|
|
|
}
|
2019-02-02 14:43:29 +00:00
|
|
|
}
|
2019-02-02 20:53:07 +00:00
|
|
|
|
|
|
|
impl From<wasmer_value_t> for Value {
|
|
|
|
fn from(v: wasmer_value_t) -> Self {
|
|
|
|
unsafe {
|
|
|
|
match v {
|
|
|
|
wasmer_value_t {
|
|
|
|
tag: WASM_I32,
|
|
|
|
value: wasmer_value { I32 },
|
|
|
|
} => Value::I32(I32),
|
|
|
|
wasmer_value_t {
|
|
|
|
tag: WASM_I64,
|
|
|
|
value: wasmer_value { I64 },
|
|
|
|
} => Value::I64(I64),
|
|
|
|
wasmer_value_t {
|
|
|
|
tag: WASM_F32,
|
|
|
|
value: wasmer_value { F32 },
|
|
|
|
} => Value::F32(F32),
|
|
|
|
wasmer_value_t {
|
|
|
|
tag: WASM_F64,
|
|
|
|
value: wasmer_value { F64 },
|
|
|
|
} => Value::F64(F64),
|
|
|
|
_ => panic!("not implemented"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-03 01:10:08 +00:00
|
|
|
|
2019-02-09 23:39:15 +00:00
|
|
|
impl From<Value> for wasmer_value_t {
|
|
|
|
fn from(val: Value) -> Self {
|
|
|
|
match val {
|
|
|
|
Value::I32(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_I32,
|
|
|
|
value: wasmer_value { I32: x },
|
|
|
|
},
|
|
|
|
Value::I64(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_I64,
|
|
|
|
value: wasmer_value { I64: x },
|
|
|
|
},
|
|
|
|
Value::F32(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_F32,
|
|
|
|
value: wasmer_value { F32: x },
|
|
|
|
},
|
|
|
|
Value::F64(x) => wasmer_value_t {
|
|
|
|
tag: wasmer_value_tag::WASM_F64,
|
|
|
|
value: wasmer_value { F64: x },
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Type> for wasmer_value_tag {
|
|
|
|
fn from(ty: Type) -> Self {
|
|
|
|
match ty {
|
|
|
|
Type::I32 => wasmer_value_tag::WASM_I32,
|
|
|
|
Type::I64 => wasmer_value_tag::WASM_I64,
|
|
|
|
Type::F32 => wasmer_value_tag::WASM_F32,
|
|
|
|
Type::F64 => wasmer_value_tag::WASM_F64,
|
|
|
|
_ => panic!("not implemented"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 01:10:08 +00:00
|
|
|
impl From<wasmer_value_tag> for Type {
|
|
|
|
fn from(v: wasmer_value_tag) -> Self {
|
|
|
|
unsafe {
|
|
|
|
match v {
|
|
|
|
wasmer_value_tag::WASM_I32 => Type::I32,
|
|
|
|
wasmer_value_tag::WASM_I64 => Type::I64,
|
|
|
|
wasmer_value_tag::WASM_F32 => Type::F32,
|
|
|
|
wasmer_value_tag::WASM_F64 => Type::F64,
|
|
|
|
_ => panic!("not implemented"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 23:57:23 +00:00
|
|
|
|
|
|
|
// Error reporting
|
|
|
|
|
|
|
|
thread_local! {
|
|
|
|
static LAST_ERROR: RefCell<Option<Box<Error>>> = RefCell::new(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_last_error<E: Error + 'static>(err: E) {
|
|
|
|
LAST_ERROR.with(|prev| {
|
|
|
|
*prev.borrow_mut() = Some(Box::new(err));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieve the most recent error, clearing it in the process.
|
|
|
|
fn take_last_error() -> Option<Box<Error>> {
|
|
|
|
LAST_ERROR.with(|prev| prev.borrow_mut().take())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn wasmer_last_error_length() -> c_int {
|
|
|
|
LAST_ERROR.with(|prev| match *prev.borrow() {
|
|
|
|
Some(ref err) => err.to_string().len() as c_int + 1,
|
|
|
|
None => 0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn wasmer_last_error_message(buffer: *mut c_char, length: c_int) -> c_int {
|
|
|
|
if buffer.is_null() {
|
|
|
|
// buffer pointer is null
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
let last_error = match take_last_error() {
|
|
|
|
Some(err) => err,
|
|
|
|
None => return 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
let error_message = last_error.to_string();
|
|
|
|
|
|
|
|
let buffer = slice::from_raw_parts_mut(buffer as *mut u8, length as usize);
|
|
|
|
|
|
|
|
if error_message.len() >= buffer.len() {
|
|
|
|
// buffer to small for err message
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr::copy_nonoverlapping(
|
|
|
|
error_message.as_ptr(),
|
|
|
|
buffer.as_mut_ptr(),
|
|
|
|
error_message.len(),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Add a trailing null so people using the string as a `char *` don't
|
|
|
|
// accidentally read into garbage.
|
|
|
|
buffer[error_message.len()] = 0;
|
|
|
|
|
|
|
|
error_message.len() as c_int
|
|
|
|
}
|