use crate::NativeArtifact;
use libloading::Library;
use std::path::Path;
use std::sync::Arc;
use std::sync::Mutex;
use wasmer_compiler::{CompileError, Target};
#[cfg(feature = "compiler")]
use wasmer_compiler::{Compiler, Triple};
use wasmer_engine::{Artifact, DeserializeError, Engine, EngineId, Tunables};
#[cfg(feature = "compiler")]
use wasmer_types::Features;
use wasmer_types::FunctionType;
use wasmer_vm::{SignatureRegistry, VMSharedSignatureIndex};
#[cfg(feature = "compiler")]
use which::which;
#[derive(Clone)]
pub struct NativeEngine {
inner: Arc<Mutex<NativeEngineInner>>,
target: Arc<Target>,
engine_id: EngineId,
}
impl NativeEngine {
#[cfg(feature = "compiler")]
pub fn new(compiler: Box<dyn Compiler>, target: Target, features: Features) -> Self {
let host_target = Triple::host();
let is_cross_compiling = target.triple() != &host_target;
let linker = if is_cross_compiling {
which(Into::<&'static str>::into(Linker::Clang10))
.map(|_| Linker::Clang10)
.or_else(|_| {
which(Into::<&'static str>::into(Linker::Clang))
.map(|_| Linker::Clang)
})
.expect("Nor `clang-10` or `clang` has been found, at least one of them is required for the `NativeEngine`")
} else {
which(Into::<&'static str>::into(Linker::Gcc))
.map(|_| Linker::Gcc)
.expect("`gcc` has not been found, it is required for the `NativeEngine`")
};
Self {
inner: Arc::new(Mutex::new(NativeEngineInner {
compiler: Some(compiler),
signatures: SignatureRegistry::new(),
prefixer: None,
features,
is_cross_compiling,
linker,
libraries: vec![],
})),
target: Arc::new(target),
engine_id: EngineId::default(),
}
}
pub fn headless() -> Self {
Self {
inner: Arc::new(Mutex::new(NativeEngineInner {
#[cfg(feature = "compiler")]
compiler: None,
#[cfg(feature = "compiler")]
features: Features::default(),
signatures: SignatureRegistry::new(),
prefixer: None,
is_cross_compiling: false,
linker: Linker::None,
libraries: vec![],
})),
target: Arc::new(Target::default()),
engine_id: EngineId::default(),
}
}
pub fn set_deterministic_prefixer<F>(&mut self, prefixer: F)
where
F: Fn(&[u8]) -> String + Send + 'static,
{
let mut inner = self.inner_mut();
inner.prefixer = Some(Box::new(prefixer));
}
pub(crate) fn inner(&self) -> std::sync::MutexGuard<'_, NativeEngineInner> {
self.inner.lock().unwrap()
}
pub(crate) fn inner_mut(&self) -> std::sync::MutexGuard<'_, NativeEngineInner> {
self.inner.lock().unwrap()
}
}
impl Engine for NativeEngine {
fn target(&self) -> &Target {
&self.target
}
fn register_signature(&self, func_type: &FunctionType) -> VMSharedSignatureIndex {
let compiler = self.inner();
compiler.signatures().register(func_type)
}
fn lookup_signature(&self, sig: VMSharedSignatureIndex) -> Option<FunctionType> {
let compiler = self.inner();
compiler.signatures().lookup(sig)
}
fn validate(&self, binary: &[u8]) -> Result<(), CompileError> {
self.inner().validate(binary)
}
#[cfg(feature = "compiler")]
fn compile(
&self,
binary: &[u8],
tunables: &dyn Tunables,
) -> Result<Arc<dyn Artifact>, CompileError> {
Ok(Arc::new(NativeArtifact::new(&self, binary, tunables)?))
}
#[cfg(not(feature = "compiler"))]
fn compile(
&self,
_binary: &[u8],
_tunables: &dyn Tunables,
) -> Result<Arc<dyn Artifact>, CompileError> {
Err(CompileError::Codegen(
"The `NativeEngine` is operating in headless mode, so it cannot compile a module."
.to_string(),
))
}
unsafe fn deserialize(&self, bytes: &[u8]) -> Result<Arc<dyn Artifact>, DeserializeError> {
Ok(Arc::new(NativeArtifact::deserialize(&self, &bytes)?))
}
unsafe fn deserialize_from_file(
&self,
file_ref: &Path,
) -> Result<Arc<dyn Artifact>, DeserializeError> {
Ok(Arc::new(NativeArtifact::deserialize_from_file(
&self, &file_ref,
)?))
}
fn id(&self) -> &EngineId {
&self.engine_id
}
fn cloned(&self) -> Arc<dyn Engine + Send + Sync> {
Arc::new(self.clone())
}
}
#[derive(Clone, Copy)]
pub(crate) enum Linker {
None,
Clang10,
Clang,
Gcc,
}
impl Into<&'static str> for Linker {
fn into(self) -> &'static str {
match self {
Self::None => "",
Self::Clang10 => "clang-10",
Self::Clang => "clang",
Self::Gcc => "gcc",
}
}
}
pub struct NativeEngineInner {
#[cfg(feature = "compiler")]
compiler: Option<Box<dyn Compiler>>,
#[cfg(feature = "compiler")]
features: Features,
signatures: SignatureRegistry,
prefixer: Option<Box<dyn Fn(&[u8]) -> String + Send>>,
is_cross_compiling: bool,
linker: Linker,
libraries: Vec<Library>,
}
impl NativeEngineInner {
#[cfg(feature = "compiler")]
pub fn compiler(&self) -> Result<&dyn Compiler, CompileError> {
if self.compiler.is_none() {
return Err(CompileError::Codegen("The `NativeEngine` is operating in headless mode, so it can only execute already compiled Modules.".to_string()));
}
Ok(&**self
.compiler
.as_ref()
.expect("Can't get compiler reference"))
}
#[cfg(feature = "compiler")]
pub(crate) fn get_prefix(&self, bytes: &[u8]) -> String {
if let Some(prefixer) = &self.prefixer {
prefixer(&bytes)
} else {
"".to_string()
}
}
#[cfg(feature = "compiler")]
pub(crate) fn features(&self) -> &Features {
&self.features
}
#[cfg(feature = "compiler")]
pub fn validate<'data>(&self, data: &'data [u8]) -> Result<(), CompileError> {
self.compiler()?.validate_module(self.features(), data)
}
#[cfg(not(feature = "compiler"))]
pub fn validate<'data>(&self, _data: &'data [u8]) -> Result<(), CompileError> {
Err(CompileError::Validate(
"The `NativeEngine` is not compiled with compiler support, which is required for validating".to_string(),
))
}
pub fn signatures(&self) -> &SignatureRegistry {
&self.signatures
}
pub(crate) fn is_cross_compiling(&self) -> bool {
self.is_cross_compiling
}
pub(crate) fn linker(&self) -> Linker {
self.linker
}
pub(crate) fn add_library(&mut self, library: Library) {
self.libraries.push(library);
}
}