1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
mod builder;
mod custom_section;
mod data;
mod element;
mod export;
mod global;
mod import;
mod init_expr;
mod instantiate;
mod parser;
mod read;
pub(crate) mod utils;
use self::{
builder::ModuleBuilder,
custom_section::{CustomSections, CustomSectionsBuilder},
export::ExternIdx,
global::Global,
import::{ExternTypeIdx, Import},
parser::ModuleParser,
};
pub use self::{
custom_section::{CustomSection, CustomSectionsIter},
export::{ExportType, FuncIdx, MemoryIdx, ModuleExportsIter, TableIdx},
global::GlobalIdx,
import::{FuncTypeIdx, ImportName},
instantiate::{InstancePre, InstantiationError},
read::{Read, ReadError},
};
pub(crate) use self::{
data::{DataSegment, DataSegments, InitDataSegment, PassiveDataSegmentBytes},
element::{ElementSegment, ElementSegmentItems, ElementSegmentKind},
init_expr::ConstExpr,
utils::WasmiValueType,
};
use crate::{
collections::Map,
engine::{DedupFuncType, EngineFunc, EngineFuncSpan, EngineFuncSpanIter, EngineWeak},
Engine,
Error,
ExternType,
FuncType,
GlobalType,
MemoryType,
TableType,
};
use core::{iter, slice::Iter as SliceIter};
use std::{boxed::Box, sync::Arc};
use wasmparser::{FuncValidatorAllocations, Parser, ValidPayload, Validator};
/// A parsed and validated WebAssembly module.
#[derive(Debug, Clone)]
pub struct Module {
inner: Arc<ModuleInner>,
}
/// The internal data of a [`Module`].
#[derive(Debug)]
struct ModuleInner {
engine: Engine,
header: ModuleHeader,
data_segments: DataSegments,
custom_sections: CustomSections,
}
/// A parsed and validated WebAssembly module header.
#[derive(Debug, Clone)]
pub struct ModuleHeader {
inner: Arc<ModuleHeaderInner>,
}
#[derive(Debug)]
struct ModuleHeaderInner {
engine: EngineWeak,
func_types: Arc<[DedupFuncType]>,
imports: ModuleImports,
funcs: Box<[DedupFuncType]>,
tables: Box<[TableType]>,
memories: Box<[MemoryType]>,
globals: Box<[GlobalType]>,
globals_init: Box<[ConstExpr]>,
exports: Map<Box<str>, ExternIdx>,
start: Option<FuncIdx>,
engine_funcs: EngineFuncSpan,
element_segments: Box<[ElementSegment]>,
}
impl ModuleHeader {
/// Returns the [`Engine`] of the [`ModuleHeader`].
pub fn engine(&self) -> &EngineWeak {
&self.inner.engine
}
/// Returns the [`FuncType`] at the given index.
pub fn get_func_type(&self, func_type_idx: FuncTypeIdx) -> &DedupFuncType {
&self.inner.func_types[func_type_idx.into_u32() as usize]
}
/// Returns the [`FuncType`] of the indexed function.
pub fn get_type_of_func(&self, func_idx: FuncIdx) -> &DedupFuncType {
&self.inner.funcs[func_idx.into_u32() as usize]
}
/// Returns the [`GlobalType`] the the indexed global variable.
pub fn get_type_of_global(&self, global_idx: GlobalIdx) -> &GlobalType {
&self.inner.globals[global_idx.into_u32() as usize]
}
/// Returns the [`EngineFunc`] for the given [`FuncIdx`].
///
/// Returns `None` if [`FuncIdx`] refers to an imported function.
pub fn get_engine_func(&self, func_idx: FuncIdx) -> Option<EngineFunc> {
let index = func_idx.into_u32();
let len_imported = self.inner.imports.len_funcs() as u32;
let index = index.checked_sub(len_imported)?;
// Note: It is a bug if this index access is out of bounds
// therefore we panic here instead of using `get`.
Some(self.inner.engine_funcs.get_or_panic(index))
}
/// Returns the [`FuncIdx`] for the given [`EngineFunc`].
pub fn get_func_index(&self, func: EngineFunc) -> Option<FuncIdx> {
let position = self.inner.engine_funcs.position(func)?;
let len_imports = self.inner.imports.len_funcs as u32;
Some(FuncIdx::from(position + len_imports))
}
/// Returns the global variable type and optional initial value.
pub fn get_global(&self, global_idx: GlobalIdx) -> (&GlobalType, Option<&ConstExpr>) {
let index = global_idx.into_u32() as usize;
let len_imports = self.inner.imports.len_globals();
let global_type = self.get_type_of_global(global_idx);
if index < len_imports {
// The index refers to an imported global without init value.
(global_type, None)
} else {
// The index refers to an internal global with init value.
let init_expr = &self.inner.globals_init[index - len_imports];
(global_type, Some(init_expr))
}
}
}
/// The index of the default Wasm linear memory.
pub(crate) const DEFAULT_MEMORY_INDEX: u32 = 0;
/// An imported item declaration in the [`Module`].
#[derive(Debug)]
pub enum Imported {
/// The name of an imported [`Func`].
///
/// [`Func`]: [`crate::Func`]
Func(ImportName),
/// The name of an imported [`Table`].
///
/// [`Table`]: [`crate::Table`]
Table(ImportName),
/// The name of an imported [`Memory`].
///
/// [`Memory`]: [`crate::Memory`]
Memory(ImportName),
/// The name of an imported [`Global`].
Global(ImportName),
}
/// The import names of the [`Module`] imports.
#[derive(Debug)]
pub struct ModuleImports {
/// All names and types of all imported items.
items: Box<[Imported]>,
/// The amount of imported [`Func`].
///
/// [`Func`]: [`crate::Func`]
len_funcs: usize,
/// The amount of imported [`Global`].
len_globals: usize,
/// The amount of imported [`Memory`].
///
/// [`Memory`]: [`crate::Memory`]
len_memories: usize,
/// The amount of imported [`Table`].
///
/// [`Table`]: [`crate::Table`]
len_tables: usize,
}
impl ModuleImports {
/// Returns the number of imported global variables.
pub fn len_globals(&self) -> usize {
self.len_globals
}
/// Returns the number of imported functions.
pub fn len_funcs(&self) -> usize {
self.len_funcs
}
}
impl Module {
/// Creates a new Wasm [`Module`] from the given Wasm bytecode buffer.
///
/// # Note
///
/// This parses, validates and translates the buffered Wasm bytecode.
///
/// # Errors
///
/// - If the Wasm bytecode is malformed or fails to validate.
/// - If the Wasm bytecode violates restrictions
/// set in the [`Config`] used by the `engine`.
/// - If Wasmi cannot translate the Wasm bytecode.
///
/// [`Config`]: crate::Config
pub fn new(engine: &Engine, wasm: &[u8]) -> Result<Self, Error> {
ModuleParser::new(engine).parse_buffered(wasm)
}
/// Creates a new Wasm [`Module`] from the given Wasm bytecode stream.
///
/// # Note
///
/// This parses, validates and translates the Wasm bytecode yielded by `stream`.
///
/// # Errors
///
/// - If the Wasm bytecode is malformed or fails to validate.
/// - If the Wasm bytecode violates restrictions
/// set in the [`Config`] used by the `engine`.
/// - If Wasmi cannot translate the Wasm bytecode.
///
/// [`Config`]: crate::Config
pub fn new_streaming(engine: &Engine, stream: impl Read) -> Result<Self, Error> {
ModuleParser::new(engine).parse_streaming(stream)
}
/// Creates a new Wasm [`Module`] from the given Wasm bytecode buffer.
///
/// # Note
///
/// This parses and translates the buffered Wasm bytecode.
///
/// # Safety
///
/// - This does _not_ validate the Wasm bytecode.
/// - It is the caller's responsibility that the Wasm bytecode is valid.
/// - It is the caller's responsibility that the Wasm bytecode adheres
/// to the restrictions set by the used [`Config`] of the `engine`.
/// - Violating the above rules is undefined behavior.
///
/// # Errors
///
/// - If the Wasm bytecode is malformed or contains invalid sections.
/// - If the Wasm bytecode fails to be compiled by Wasmi.
///
/// [`Config`]: crate::Config
pub unsafe fn new_unchecked(engine: &Engine, wasm: &[u8]) -> Result<Self, Error> {
let parser = ModuleParser::new(engine);
unsafe { parser.parse_buffered_unchecked(wasm) }
}
/// Creates a new Wasm [`Module`] from the given byte stream.
///
/// # Note
///
/// This parses and translates the Wasm bytecode yielded by `stream`.
///
/// # Safety
///
/// - This does _not_ validate the Wasm bytecode.
/// - It is the caller's responsibility that the Wasm bytecode is valid.
/// - It is the caller's responsibility that the Wasm bytecode adheres
/// to the restrictions set by the used [`Config`] of the `engine`.
/// - Violating the above rules is undefined behavior.
///
/// # Errors
///
/// - If the Wasm bytecode is malformed or contains invalid sections.
/// - If the Wasm bytecode fails to be compiled by Wasmi.
///
/// [`Config`]: crate::Config
pub unsafe fn new_streaming_unchecked(
engine: &Engine,
stream: impl Read,
) -> Result<Self, Error> {
let parser = ModuleParser::new(engine);
unsafe { parser.parse_streaming_unchecked(stream) }
}
/// Returns the [`Engine`] used during creation of the [`Module`].
pub fn engine(&self) -> &Engine {
&self.inner.engine
}
/// Returns a shared reference to the [`ModuleHeaderInner`].
fn module_header(&self) -> &ModuleHeaderInner {
&self.inner.header.inner
}
/// Validates `wasm` as a WebAssembly binary given the configuration (via [`Config`]) in `engine`.
///
/// This function performs Wasm validation of the binary input WebAssembly module and
/// returns either `Ok`` or `Err`` depending on the results of the validation.
/// The [`Config`] of the `engine` is used for Wasm validation which indicates which WebAssembly
/// features are valid and invalid for the validation.
///
/// # Note
///
/// - The input `wasm` must be in binary form, the text format is not accepted by this function.
/// - This will only validate the `wasm` but not try to translate it. Therefore `Module::new`
/// might still fail if translation of the Wasm binary input fails to translate via the Wasmi
/// [`Engine`].
/// - Validation automatically happens as part of [`Module::new`].
///
/// # Errors
///
/// If Wasm validation for `wasm` fails for the given [`Config`] provided via `engine`.
///
/// [`Config`]: crate::Config
pub fn validate(engine: &Engine, wasm: &[u8]) -> Result<(), Error> {
let mut validator = Validator::new_with_features(engine.config().wasm_features());
for payload in Parser::new(0).parse_all(wasm) {
let payload = payload?;
if let ValidPayload::Func(func_to_validate, func_body) = validator.payload(&payload)? {
func_to_validate
.into_validator(FuncValidatorAllocations::default())
.validate(&func_body)?;
}
}
Ok(())
}
/// Returns the number of non-imported functions of the [`Module`].
pub(crate) fn len_funcs(&self) -> usize {
self.module_header().funcs.len()
}
/// Returns the number of non-imported tables of the [`Module`].
pub(crate) fn len_tables(&self) -> usize {
self.module_header().tables.len()
}
/// Returns the number of non-imported linear memories of the [`Module`].
pub(crate) fn len_memories(&self) -> usize {
self.module_header().memories.len()
}
/// Returns the number of non-imported global variables of the [`Module`].
pub(crate) fn len_globals(&self) -> usize {
self.module_header().globals.len()
}
/// Returns a slice to the function types of the [`Module`].
///
/// # Note
///
/// The slice is stored in a `Arc` so that this operation is very cheap.
pub(crate) fn func_types_cloned(&self) -> Arc<[DedupFuncType]> {
self.module_header().func_types.clone()
}
/// Returns an iterator over the imports of the [`Module`].
pub fn imports(&self) -> ModuleImportsIter {
let header = self.module_header();
let len_imported_funcs = header.imports.len_funcs;
let len_imported_globals = header.imports.len_globals;
ModuleImportsIter {
engine: self.engine(),
names: header.imports.items.iter(),
funcs: header.funcs[..len_imported_funcs].iter(),
tables: header.tables.iter(),
memories: header.memories.iter(),
globals: header.globals[..len_imported_globals].iter(),
}
}
/// Returns an iterator over the internally defined [`Func`].
///
/// [`Func`]: [`crate::Func`]
pub(crate) fn internal_funcs(&self) -> InternalFuncsIter {
let header = self.module_header();
let len_imported = header.imports.len_funcs;
// We skip the first `len_imported` elements in `funcs`
// since they refer to imported and not internally defined
// functions.
let funcs = &header.funcs[len_imported..];
let engine_funcs = header.engine_funcs.iter();
assert_eq!(funcs.len(), engine_funcs.len());
InternalFuncsIter {
iter: funcs.iter().zip(engine_funcs),
}
}
/// Returns an iterator over the [`MemoryType`] of internal linear memories.
fn internal_memories(&self) -> SliceIter<MemoryType> {
let header = self.module_header();
let len_imported = header.imports.len_memories;
// We skip the first `len_imported` elements in `memories`
// since they refer to imported and not internally defined
// linear memories.
let memories = &header.memories[len_imported..];
memories.iter()
}
/// Returns an iterator over the [`TableType`] of internal tables.
fn internal_tables(&self) -> SliceIter<TableType> {
let header = self.module_header();
let len_imported = header.imports.len_tables;
// We skip the first `len_imported` elements in `memories`
// since they refer to imported and not internally defined
// linear memories.
let tables = &header.tables[len_imported..];
tables.iter()
}
/// Returns an iterator over the internally defined [`Global`].
fn internal_globals(&self) -> InternalGlobalsIter {
let header = self.module_header();
let len_imported = header.imports.len_globals;
// We skip the first `len_imported` elements in `globals`
// since they refer to imported and not internally defined
// global variables.
let globals = header.globals[len_imported..].iter();
let global_inits = header.globals_init.iter();
InternalGlobalsIter {
iter: globals.zip(global_inits),
}
}
/// Returns an iterator over the exports of the [`Module`].
pub fn exports(&self) -> ModuleExportsIter {
ModuleExportsIter::new(self)
}
/// Looks up an export in this [`Module`] by its `name`.
///
/// Returns `None` if no export with the name was found.
///
/// # Note
///
/// This function will return the type of an export with the given `name`.
pub fn get_export(&self, name: &str) -> Option<ExternType> {
let idx = self.module_header().exports.get(name).copied()?;
let ty = self.get_extern_type(idx);
Some(ty)
}
/// Returns the [`ExternType`] for a given [`ExternIdx`].
///
/// # Note
///
/// This function assumes that the given [`ExternType`] is valid.
fn get_extern_type(&self, idx: ExternIdx) -> ExternType {
let header = self.module_header();
match idx {
ExternIdx::Func(index) => {
let dedup = &header.funcs[index.into_u32() as usize];
let func_type = self.engine().resolve_func_type(dedup, Clone::clone);
ExternType::Func(func_type)
}
ExternIdx::Table(index) => {
let table_type = header.tables[index.into_u32() as usize];
ExternType::Table(table_type)
}
ExternIdx::Memory(index) => {
let memory_type = header.memories[index.into_u32() as usize];
ExternType::Memory(memory_type)
}
ExternIdx::Global(index) => {
let global_type = header.globals[index.into_u32() as usize];
ExternType::Global(global_type)
}
}
}
/// Returns an iterator yielding the custom sections of the Wasm [`Module`].
///
/// # Note
///
/// The returned iterator will yield no items if [`Config::ignore_custom_sections`]
/// is set to `true` even if the original Wasm module contains custom sections.
///
///
/// [`Config::ignore_custom_sections`]: crate::Config::ignore_custom_sections
#[inline]
pub fn custom_sections(&self) -> CustomSectionsIter {
self.inner.custom_sections.iter()
}
}
/// An iterator over the imports of a [`Module`].
#[derive(Debug)]
pub struct ModuleImportsIter<'a> {
engine: &'a Engine,
names: SliceIter<'a, Imported>,
funcs: SliceIter<'a, DedupFuncType>,
tables: SliceIter<'a, TableType>,
memories: SliceIter<'a, MemoryType>,
globals: SliceIter<'a, GlobalType>,
}
impl<'a> Iterator for ModuleImportsIter<'a> {
type Item = ImportType<'a>;
fn next(&mut self) -> Option<Self::Item> {
let import = match self.names.next() {
None => return None,
Some(imported) => match imported {
Imported::Func(name) => {
let func_type = self.funcs.next().unwrap_or_else(|| {
panic!("unexpected missing imported function for {name:?}")
});
let func_type = self.engine.resolve_func_type(func_type, FuncType::clone);
ImportType::new(name, func_type)
}
Imported::Table(name) => {
let table_type = self.tables.next().unwrap_or_else(|| {
panic!("unexpected missing imported table for {name:?}")
});
ImportType::new(name, *table_type)
}
Imported::Memory(name) => {
let memory_type = self.memories.next().unwrap_or_else(|| {
panic!("unexpected missing imported linear memory for {name:?}")
});
ImportType::new(name, *memory_type)
}
Imported::Global(name) => {
let global_type = self.globals.next().unwrap_or_else(|| {
panic!("unexpected missing imported global variable for {name:?}")
});
ImportType::new(name, *global_type)
}
},
};
Some(import)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.names.size_hint()
}
}
impl<'a> ExactSizeIterator for ModuleImportsIter<'a> {
fn len(&self) -> usize {
ExactSizeIterator::len(&self.names)
}
}
/// A descriptor for an imported value into a Wasm [`Module`].
///
/// This type is primarily accessed from the [`Module::imports`] method.
/// Each [`ImportType`] describes an import into the Wasm module with the `module/name`
/// that it is imported from as well as the type of item that is being imported.
#[derive(Debug)]
pub struct ImportType<'module> {
/// The name of the imported item.
name: &'module ImportName,
/// The external item type.
ty: ExternType,
}
impl<'module> ImportType<'module> {
/// Creates a new [`ImportType`].
pub(crate) fn new<T>(name: &'module ImportName, ty: T) -> Self
where
T: Into<ExternType>,
{
Self {
name,
ty: ty.into(),
}
}
/// Returns the import name.
pub(crate) fn import_name(&self) -> &ImportName {
self.name
}
/// Returns the module import name.
pub fn module(&self) -> &'module str {
self.name.module()
}
/// Returns the field import name.
pub fn name(&self) -> &'module str {
self.name.name()
}
/// Returns the import item type.
pub fn ty(&self) -> &ExternType {
&self.ty
}
}
/// An iterator over the internally defined functions of a [`Module`].
#[derive(Debug)]
pub struct InternalFuncsIter<'a> {
iter: iter::Zip<SliceIter<'a, DedupFuncType>, EngineFuncSpanIter>,
}
impl<'a> Iterator for InternalFuncsIter<'a> {
type Item = (DedupFuncType, EngineFunc);
fn next(&mut self) -> Option<Self::Item> {
self.iter
.next()
.map(|(func_type, engine_func)| (*func_type, engine_func))
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
}
impl<'a> ExactSizeIterator for InternalFuncsIter<'a> {
fn len(&self) -> usize {
ExactSizeIterator::len(&self.iter)
}
}
/// An iterator over the internally defined functions of a [`Module`].
#[derive(Debug)]
pub struct InternalGlobalsIter<'a> {
iter: iter::Zip<SliceIter<'a, GlobalType>, SliceIter<'a, ConstExpr>>,
}
impl<'a> Iterator for InternalGlobalsIter<'a> {
type Item = (&'a GlobalType, &'a ConstExpr);
fn next(&mut self) -> Option<Self::Item> {
self.iter.next()
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
}
impl<'a> ExactSizeIterator for InternalGlobalsIter<'a> {
fn len(&self) -> usize {
ExactSizeIterator::len(&self.iter)
}
}