Bring back Module::deserialize (#2858)

* Bring back `Module::deserialize`

I thought I was being clever suggesting that `Module::deserialize` was
removed from #2791 by funneling all module constructors into
`Module::new`. As our studious fuzzers have found, though, this means
that `Module::new` is not safe currently to pass arbitrary user-defined
input into. Now one might pretty reasonable expect to be able to do
that, however, being a WebAssembly engine and all. This PR as a result
separates the `deserialize` part of `Module::new` back into
`Module::deserialize`.

This means that binary blobs created with `Module::serialize` and
`Engine::precompile_module` will need to be passed to
`Module::deserialize` to "rehydrate" them back into a `Module`. This
restores the property that it should be safe to pass arbitrary input to
`Module::new` since it's always expected to be a wasm module. This also
means that fuzzing will no longer attempt to fuzz `Module::deserialize`
which isn't something we want to do anyway.

* Fix an example

* Mark `Module::deserialize` as `unsafe`
This commit is contained in:
Alex Crichton
2021-04-27 10:55:12 -05:00
committed by GitHub
parent 4a830b1159
commit 8384f3a347
10 changed files with 110 additions and 65 deletions

View File

@@ -992,9 +992,13 @@ WASM_API_EXTERN own wasmtime_error_t* wasmtime_module_serialize(
/** /**
* \brief Build a module from serialized data. * \brief Build a module from serialized data.
* * *
* This function does not take ownership of any of its arguments, but the * This function does not take ownership of any of its arguments, but the
* returned error and module are owned by the caller. * returned error and module are owned by the caller.
*
* This function is not safe to receive arbitrary user input. See the Rust
* documentation for more information on what inputs are safe to pass in here
* (e.g. only that of #wasmtime_module_serialize)
*/ */
WASM_API_EXTERN own wasmtime_error_t *wasmtime_module_deserialize( WASM_API_EXTERN own wasmtime_error_t *wasmtime_module_deserialize(
wasm_engine_t *engine, wasm_engine_t *engine,

View File

@@ -185,10 +185,13 @@ pub extern "C" fn wasmtime_module_deserialize(
binary: &wasm_byte_vec_t, binary: &wasm_byte_vec_t,
ret: &mut *mut wasm_module_t, ret: &mut *mut wasm_module_t,
) -> Option<Box<wasmtime_error_t>> { ) -> Option<Box<wasmtime_error_t>> {
handle_result(Module::new(&engine.engine, binary.as_slice()), |module| { handle_result(
unsafe { Module::deserialize(&engine.engine, binary.as_slice()) },
|module| {
let module = Box::new(wasm_module_t::new(module)); let module = Box::new(wasm_module_t::new(module));
*ret = Box::into_raw(module); *ret = Box::into_raw(module);
}) },
)
} }
#[no_mangle] #[no_mangle]

View File

@@ -160,8 +160,9 @@ impl Engine {
/// Note that the `wat` feature is enabled by default. /// Note that the `wat` feature is enabled by default.
/// ///
/// This method may be used to compile a module for use with a different target /// This method may be used to compile a module for use with a different target
/// host. The output of this method may be used with [`Module::new`](crate::Module::new) /// host. The output of this method may be used with
/// on hosts compatible with the [`Config`] associated with this [`Engine`]. /// [`Module::deserialize`](crate::Module::deserialize) on hosts compatible
/// with the [`Config`] associated with this [`Engine`].
/// ///
/// The output of this method is safe to send to another host machine for later /// The output of this method is safe to send to another host machine for later
/// execution. As the output is already a compiled module, translation and code /// execution. As the output is already a compiled module, translation and code

View File

@@ -121,9 +121,6 @@ impl Module {
/// This is only supported when the `wat` feature of this crate is enabled. /// This is only supported when the `wat` feature of this crate is enabled.
/// If this is supplied then the text format will be parsed before validation. /// If this is supplied then the text format will be parsed before validation.
/// Note that the `wat` feature is enabled by default. /// Note that the `wat` feature is enabled by default.
/// * A module serialized with [`Module::serialize`].
/// * A module compiled with [`Engine::precompile_module`] or the
/// `wasmtime compile` command.
/// ///
/// The data for the wasm module must be loaded in-memory if it's present /// The data for the wasm module must be loaded in-memory if it's present
/// elsewhere, for example on disk. This requires that the entire binary is /// elsewhere, for example on disk. This requires that the entire binary is
@@ -182,11 +179,6 @@ impl Module {
/// ``` /// ```
pub fn new(engine: &Engine, bytes: impl AsRef<[u8]>) -> Result<Module> { pub fn new(engine: &Engine, bytes: impl AsRef<[u8]>) -> Result<Module> {
let bytes = bytes.as_ref(); let bytes = bytes.as_ref();
if let Some(module) = SerializedModule::from_bytes(bytes)? {
return module.into_module(engine);
}
#[cfg(feature = "wat")] #[cfg(feature = "wat")]
let bytes = wat::parse_bytes(bytes)?; let bytes = wat::parse_bytes(bytes)?;
Self::from_binary(engine, &bytes) Self::from_binary(engine, &bytes)
@@ -258,10 +250,10 @@ impl Module {
/// data. /// data.
/// ///
/// This is similar to [`Module::new`] except that it requires that the /// This is similar to [`Module::new`] except that it requires that the
/// `binary` input is a WebAssembly binary or a compiled module, the /// `binary` input is a WebAssembly binary, the text format is not supported
/// text format is not supported by this function. It's generally /// by this function. It's generally recommended to use [`Module::new`], but
/// recommended to use [`Module::new`], but if it's required to not /// if it's required to not support the text format this function can be
/// support the text format this function can be used instead. /// used instead.
/// ///
/// # Examples /// # Examples
/// ///
@@ -286,10 +278,6 @@ impl Module {
/// # } /// # }
/// ``` /// ```
pub fn from_binary(engine: &Engine, binary: &[u8]) -> Result<Module> { pub fn from_binary(engine: &Engine, binary: &[u8]) -> Result<Module> {
if let Some(module) = SerializedModule::from_bytes(binary)? {
return module.into_module(engine);
}
// Check to see that the config's target matches the host // Check to see that the config's target matches the host
let target = engine.config().isa_flags.triple(); let target = engine.config().isa_flags.triple();
if *target != target_lexicon::Triple::host() { if *target != target_lexicon::Triple::host() {
@@ -329,6 +317,49 @@ impl Module {
Self::from_parts(engine, modules, main_module, Arc::new(types), &[]) Self::from_parts(engine, modules, main_module, Arc::new(types), &[])
} }
/// Deserializes an in-memory compiled module previously created with
/// [`Module::serialize`] or [`Engine::precompile_module`].
///
/// This function will deserialize the binary blobs emitted by
/// [`Module::serialize`] and [`Engine::precompile_module`] back into an
/// in-memory [`Module`] that's ready to be instantiated.
///
/// # Unsafety
///
/// This function is marked as `unsafe` because if fed invalid input or used
/// improperly this could lead to memory safety vulnerabilities. This method
/// should not, for example, be exposed to arbitrary user input.
///
/// The structure of the binary blob read here is only lightly validated
/// internally in `wasmtime`. This is intended to be an efficient
/// "rehydration" for a [`Module`] which has very few runtime checks beyond
/// deserialization. Arbitrary input could, for example, replace valid
/// compiled code with any other valid compiled code, meaning that this can
/// trivially be used to execute arbitrary code otherwise.
///
/// For these reasons this function is `unsafe`. This function is only
/// designed to receive the previous input from [`Module::serialize`] and
/// [`Engine::precompile_module`]. If the exact output of those functions
/// (unmodified) is passed to this function then calls to this function can
/// be considered safe. It is the caller's responsibility to provide the
/// guarantee that only previously-serialized bytes are being passed in
/// here.
///
/// Note that this function is designed to be safe receiving output from
/// *any* compiled version of `wasmtime` itself. This means that it is safe
/// to feed output from older versions of Wasmtime into this function, in
/// addition to newer versions of wasmtime (from the future!). These inputs
/// will deterministically and safely produce an `Err`. This function only
/// successfully accepts inputs from the same version of `wasmtime`, but the
/// safety guarantee only applies to externally-defined blobs of bytes, not
/// those defined by any version of wasmtime. (this means that if you cache
/// blobs across versions of wasmtime you can be safely guaranteed that
/// future versions of wasmtime will reject old cache entries).
pub unsafe fn deserialize(engine: &Engine, bytes: impl AsRef<[u8]>) -> Result<Module> {
let module = SerializedModule::from_bytes(bytes.as_ref())?;
module.into_module(engine)
}
fn from_parts( fn from_parts(
engine: &Engine, engine: &Engine,
mut modules: Vec<Arc<CompiledModule>>, mut modules: Vec<Arc<CompiledModule>>,

View File

@@ -329,9 +329,9 @@ impl<'a> SerializedModule<'a> {
Ok(bytes) Ok(bytes)
} }
pub fn from_bytes(bytes: &[u8]) -> Result<Option<Self>> { pub fn from_bytes(bytes: &[u8]) -> Result<Self> {
if !bytes.starts_with(HEADER) { if !bytes.starts_with(HEADER) {
return Ok(None); bail!("bytes are not a compatible serialized wasmtime module");
} }
let bytes = &bytes[HEADER.len()..]; let bytes = &bytes[HEADER.len()..];
@@ -353,11 +353,9 @@ impl<'a> SerializedModule<'a> {
); );
} }
Ok(Some( Ok(bincode_options()
bincode_options()
.deserialize::<SerializedModule<'_>>(&bytes[1 + version_len..]) .deserialize::<SerializedModule<'_>>(&bytes[1 + version_len..])
.context("deserialize compilation artifacts")?, .context("deserialize compilation artifacts")?)
))
} }
fn check_triple(&self, isa: &dyn TargetIsa) -> Result<()> { fn check_triple(&self, isa: &dyn TargetIsa) -> Result<()> {

View File

@@ -29,9 +29,12 @@ fn deserialize(buffer: &[u8]) -> Result<()> {
println!("Initializing..."); println!("Initializing...");
let store = Store::default(); let store = Store::default();
// Compile the wasm binary into an in-memory instance of a `Module`. // Compile the wasm binary into an in-memory instance of a `Module`. Note
// that this is `unsafe` because it is our responsibility for guaranteeing
// that these bytes are valid precompiled module bytes. We know that from
// the structure of this example program.
println!("Deserialize module..."); println!("Deserialize module...");
let module = Module::new(store.engine(), buffer)?; let module = unsafe { Module::deserialize(store.engine(), buffer)? };
// Here we handle the imports of the module, which in this case is our // Here we handle the imports of the module, which in this case is our
// `HelloCallback` type and its associated implementation of `Callback. // `HelloCallback` type and its associated implementation of `Callback.

View File

@@ -126,7 +126,8 @@ mod test {
command.execute()?; command.execute()?;
let engine = Engine::default(); let engine = Engine::default();
let module = Module::from_file(&engine, output_path)?; let contents = std::fs::read(output_path)?;
let module = unsafe { Module::deserialize(&engine, contents)? };
let store = Store::new(&engine); let store = Store::new(&engine);
let instance = Instance::new(&store, &module, &[])?; let instance = Instance::new(&store, &module, &[])?;
let f = instance.get_typed_func::<i32, i32>("f")?; let f = instance.get_typed_func::<i32, i32>("f")?;

View File

@@ -27,18 +27,19 @@ fn caches_across_engines() {
.serialize() .serialize()
.unwrap(); .unwrap();
let res = Module::new(&Engine::new(&Config::new()).unwrap(), &bytes); unsafe {
let res = Module::deserialize(&Engine::new(&Config::new()).unwrap(), &bytes);
assert!(res.is_ok()); assert!(res.is_ok());
// differ in shared cranelift flags // differ in shared cranelift flags
let res = Module::new( let res = Module::deserialize(
&Engine::new(Config::new().cranelift_nan_canonicalization(true)).unwrap(), &Engine::new(Config::new().cranelift_nan_canonicalization(true)).unwrap(),
&bytes, &bytes,
); );
assert!(res.is_err()); assert!(res.is_err());
// differ in cranelift settings // differ in cranelift settings
let res = Module::new( let res = Module::deserialize(
&Engine::new(Config::new().cranelift_opt_level(OptLevel::None)).unwrap(), &Engine::new(Config::new().cranelift_opt_level(OptLevel::None)).unwrap(),
&bytes, &bytes,
); );
@@ -46,7 +47,7 @@ fn caches_across_engines() {
// Missing required cpu flags // Missing required cpu flags
if cfg!(target_arch = "x86_64") { if cfg!(target_arch = "x86_64") {
let res = Module::new( let res = Module::deserialize(
&Engine::new( &Engine::new(
Config::new() Config::new()
.target(&target_lexicon::Triple::host().to_string()) .target(&target_lexicon::Triple::host().to_string())
@@ -58,6 +59,7 @@ fn caches_across_engines() {
assert!(res.is_err()); assert!(res.is_err());
} }
} }
}
#[test] #[test]
fn aot_compiles() -> Result<()> { fn aot_compiles() -> Result<()> {
@@ -66,7 +68,7 @@ fn aot_compiles() -> Result<()> {
"(module (func (export \"f\") (param i32) (result i32) local.get 0))".as_bytes(), "(module (func (export \"f\") (param i32) (result i32) local.get 0))".as_bytes(),
)?; )?;
let module = Module::from_binary(&engine, &bytes)?; let module = unsafe { Module::deserialize(&engine, &bytes)? };
let store = Store::new(&engine); let store = Store::new(&engine);
let instance = Instance::new(&store, &module, &[])?; let instance = Instance::new(&store, &module, &[])?;

View File

@@ -39,7 +39,9 @@ fn compile() -> Result<()> {
assert_eq!(m.imports().len(), 0); assert_eq!(m.imports().len(), 0);
assert_eq!(m.exports().len(), 0); assert_eq!(m.exports().len(), 0);
let bytes = m.serialize()?; let bytes = m.serialize()?;
Module::new(&engine, &bytes)?; unsafe {
Module::deserialize(&engine, &bytes)?;
}
assert_eq!(m.imports().len(), 0); assert_eq!(m.imports().len(), 0);
assert_eq!(m.exports().len(), 0); assert_eq!(m.exports().len(), 0);
Ok(()) Ok(())

View File

@@ -6,8 +6,8 @@ fn serialize(engine: &Engine, wat: &'static str) -> Result<Vec<u8>> {
Ok(module.serialize()?) Ok(module.serialize()?)
} }
fn deserialize_and_instantiate(store: &Store, buffer: &[u8]) -> Result<Instance> { unsafe fn deserialize_and_instantiate(store: &Store, buffer: &[u8]) -> Result<Instance> {
let module = Module::new(store.engine(), buffer)?; let module = Module::deserialize(store.engine(), buffer)?;
Ok(Instance::new(&store, &module, &[])?) Ok(Instance::new(&store, &module, &[])?)
} }
@@ -17,7 +17,7 @@ fn test_version_mismatch() -> Result<()> {
let mut buffer = serialize(&engine, "(module)")?; let mut buffer = serialize(&engine, "(module)")?;
buffer[13 /* header length */ + 1 /* version length */] = 'x' as u8; buffer[13 /* header length */ + 1 /* version length */] = 'x' as u8;
match Module::new(&engine, &buffer) { match unsafe { Module::deserialize(&engine, &buffer) } {
Ok(_) => bail!("expected deserialization to fail"), Ok(_) => bail!("expected deserialization to fail"),
Err(e) => assert!(e Err(e) => assert!(e
.to_string() .to_string()
@@ -35,7 +35,7 @@ fn test_module_serialize_simple() -> Result<()> {
)?; )?;
let store = Store::default(); let store = Store::default();
let instance = deserialize_and_instantiate(&store, &buffer)?; let instance = unsafe { deserialize_and_instantiate(&store, &buffer)? };
let run = instance.get_typed_func::<(), i32>("run")?; let run = instance.get_typed_func::<(), i32>("run")?;
let result = run.call(())?; let result = run.call(())?;
@@ -53,7 +53,7 @@ fn test_module_serialize_fail() -> Result<()> {
let mut config = Config::new(); let mut config = Config::new();
config.cranelift_opt_level(OptLevel::None); config.cranelift_opt_level(OptLevel::None);
let store = Store::new(&Engine::new(&config)?); let store = Store::new(&Engine::new(&config)?);
match deserialize_and_instantiate(&store, &buffer) { match unsafe { deserialize_and_instantiate(&store, &buffer) } {
Ok(_) => bail!("expected failure at deserialization"), Ok(_) => bail!("expected failure at deserialization"),
Err(_) => (), Err(_) => (),
} }