wasmtime/runtime/instance.rs
1use crate::linker::{Definition, DefinitionType};
2use crate::prelude::*;
3use crate::runtime::vm::{
4 self, Imports, ModuleRuntimeInfo, VMFuncRef, VMFunctionImport, VMGlobalImport, VMMemoryImport,
5 VMStore, VMTableImport, VMTagImport,
6};
7use crate::store::{
8 AllocateInstanceKind, Asyncness, InstanceId, StoreInstanceId, StoreOpaque, StoreResourceLimiter,
9};
10use crate::types::matching;
11use crate::{
12 AsContextMut, Engine, Export, Extern, Func, Global, Memory, Module, ModuleExport, SharedMemory,
13 StoreContext, StoreContextMut, Table, Tag, TypedFunc,
14};
15use alloc::sync::Arc;
16use core::ptr::NonNull;
17use wasmtime_environ::{
18 EntityIndex, EntityType, FuncIndex, GlobalIndex, MemoryIndex, TableIndex, TagIndex, TypeTrace,
19};
20
21/// An instantiated WebAssembly module.
22///
23/// This type represents the instantiation of a [`Module`]. Once instantiated
24/// you can access the [`exports`](Instance::exports) which are of type
25/// [`Extern`] and provide the ability to call functions, set globals, read
26/// memory, etc. When interacting with any wasm code you'll want to make an
27/// [`Instance`] to call any code or execute anything.
28///
29/// Instances are owned by a [`Store`](crate::Store) which is passed in at
30/// creation time. It's recommended to create instances with
31/// [`Linker::instantiate`](crate::Linker::instantiate) or similar
32/// [`Linker`](crate::Linker) methods, but a more low-level constructor is also
33/// available as [`Instance::new`].
34#[derive(Copy, Clone, Debug, PartialEq, Eq)]
35#[repr(C)]
36pub struct Instance {
37 pub(crate) id: StoreInstanceId,
38}
39
40// Double-check that the C representation in `instance.h` matches our in-Rust
41// representation here in terms of size/alignment/etc.
42const _: () = {
43 #[repr(C)]
44 struct C(u64, usize);
45 assert!(core::mem::size_of::<C>() == core::mem::size_of::<Instance>());
46 assert!(core::mem::align_of::<C>() == core::mem::align_of::<Instance>());
47 assert!(core::mem::offset_of!(Instance, id) == 0);
48};
49
50impl Instance {
51 /// Creates a new [`Instance`] from the previously compiled [`Module`] and
52 /// list of `imports` specified.
53 ///
54 /// This method instantiates the `module` provided with the `imports`,
55 /// following the procedure in the [core specification][inst] to
56 /// instantiate. Instantiation can fail for a number of reasons (many
57 /// specified below), but if successful the `start` function will be
58 /// automatically run (if specified in the `module`) and then the
59 /// [`Instance`] will be returned.
60 ///
61 /// Per the WebAssembly spec, instantiation includes running the module's
62 /// start function, if it has one (not to be confused with the `_start`
63 /// function, which is not run).
64 ///
65 /// Note that this is a low-level function that just performs an
66 /// instantiation. See the [`Linker`](crate::Linker) struct for an API which
67 /// provides a convenient way to link imports and provides automatic Command
68 /// and Reactor behavior.
69 ///
70 /// ## Providing Imports
71 ///
72 /// The entries in the list of `imports` are intended to correspond 1:1
73 /// with the list of imports returned by [`Module::imports`]. Before
74 /// calling [`Instance::new`] you'll want to inspect the return value of
75 /// [`Module::imports`] and, for each import type, create an [`Extern`]
76 /// which corresponds to that type. These [`Extern`] values are all then
77 /// collected into a list and passed to this function.
78 ///
79 /// Note that this function is intentionally relatively low level. For an
80 /// easier time passing imports by doing name-based resolution it's
81 /// recommended to instead use the [`Linker`](crate::Linker) type.
82 ///
83 /// ## Errors
84 ///
85 /// This function can fail for a number of reasons, including, but not
86 /// limited to:
87 ///
88 /// * The number of `imports` provided doesn't match the number of imports
89 /// returned by the `module`'s [`Module::imports`] method.
90 /// * The type of any [`Extern`] doesn't match the corresponding
91 /// [`ExternType`] entry that it maps to.
92 /// * The `start` function in the instance, if present, traps.
93 /// * Module/instance resource limits are exceeded.
94 /// * The `store` provided requires the use of [`Instance::new_async`]
95 /// instead, such as if epochs or fuel are configured.
96 ///
97 /// When instantiation fails it's recommended to inspect the return value to
98 /// see why it failed, or bubble it upwards. If you'd like to specifically
99 /// check for trap errors, you can use `error.downcast::<Trap>()`. For more
100 /// about error handling see the [`Trap`] documentation.
101 ///
102 /// [`Trap`]: crate::Trap
103 ///
104 /// # Panics
105 ///
106 /// This function will panic if any [`Extern`] supplied is not owned by
107 /// `store`.
108 ///
109 /// [inst]: https://webassembly.github.io/spec/core/exec/modules.html#exec-instantiation
110 /// [`ExternType`]: crate::ExternType
111 ///
112 /// This function will return an [`OutOfMemory`][crate::OutOfMemory] error when
113 /// memory allocation fails. See the `OutOfMemory` type's documentation for
114 /// details on Wasmtime's out-of-memory handling.
115 pub fn new(
116 mut store: impl AsContextMut,
117 module: &Module,
118 imports: &[Extern],
119 ) -> Result<Instance> {
120 let mut store = store.as_context_mut();
121 store.0.validate_sync_call()?;
122 let imports = Instance::typecheck_externs(store.0, module, imports)?;
123 // Note that the unsafety here should be satisfied by the call to
124 // `typecheck_externs` above which satisfies the condition that all
125 // the imports are valid for this module.
126 vm::assert_ready(unsafe {
127 Instance::new_started(&mut store, module, imports.as_ref(), Asyncness::No)
128 })
129 }
130
131 /// Same as [`Instance::new`], except for usage in [asynchronous stores].
132 ///
133 /// For more details about this function see the documentation on
134 /// [`Instance::new`]. The only difference between these two methods is that
135 /// this one will asynchronously invoke the wasm start function in case it
136 /// calls any imported function which is an asynchronous host function (e.g.
137 /// created with [`Func::new_async`](crate::Func::new_async).
138 ///
139 /// # Panics
140 ///
141 /// This function will panic, like [`Instance::new`], if any [`Extern`]
142 /// specified does not belong to `store`.
143 ///
144 /// # Examples
145 ///
146 /// An example of using this function:
147 ///
148 /// ```
149 /// use wasmtime::{Result, Store, Engine, Module, Instance};
150 ///
151 /// #[tokio::main]
152 /// async fn main() -> Result<()> {
153 /// let engine = Engine::default();
154 ///
155 /// // For this example, a module with no imports is being used hence
156 /// // the empty array to `Instance::new_async`.
157 /// let module = Module::new(&engine, "(module)")?;
158 /// let mut store = Store::new(&engine, ());
159 /// let instance = Instance::new_async(&mut store, &module, &[]).await?;
160 ///
161 /// // ... use `instance` and exports and such ...
162 ///
163 /// Ok(())
164 /// }
165 /// ```
166 ///
167 /// Note, though, that the future returned from this function is only
168 /// `Send` if the store's own data is `Send` meaning that this does not
169 /// compile for example:
170 ///
171 /// ```compile_fail
172 /// use wasmtime::{Result, Store, Engine, Module, Instance};
173 /// use std::rc::Rc;
174 ///
175 /// #[tokio::main]
176 /// async fn main() -> Result<()> {
177 /// let engine = Engine::default();
178 ///
179 /// let module = Module::new(&engine, "(module)")?;
180 ///
181 /// // Note that `Rc<()>` is NOT `Send`, which is what many future
182 /// // runtimes require and below will cause a failure.
183 /// let mut store = Store::new(&engine, Rc::new(()));
184 ///
185 /// // Compile failure because `Store<Rc<()>>` is not `Send`
186 /// assert_send(Instance::new_async(&mut store, &module, &[])).await?;
187 ///
188 /// Ok(())
189 /// }
190 ///
191 /// fn assert_send<T: Send>(t: T) -> T { t }
192 /// ```
193 ///
194 /// # Errors
195 ///
196 /// This function will return an [`OutOfMemory`][crate::OutOfMemory] error when
197 /// memory allocation fails. See the `OutOfMemory` type's documentation for
198 /// details on Wasmtime's out-of-memory handling.
199 #[cfg(feature = "async")]
200 pub async fn new_async(
201 mut store: impl AsContextMut,
202 module: &Module,
203 imports: &[Extern],
204 ) -> Result<Instance> {
205 let mut store = store.as_context_mut();
206 let imports = Instance::typecheck_externs(store.0, module, imports)?;
207 // See `new` for notes on this unsafety
208 unsafe { Instance::new_started(&mut store, module, imports.as_ref(), Asyncness::Yes).await }
209 }
210
211 fn typecheck_externs(
212 store: &mut StoreOpaque,
213 module: &Module,
214 imports: &[Extern],
215 ) -> Result<OwnedImports> {
216 for import in imports {
217 if !import.comes_from_same_store(store) {
218 bail!("cross-`Store` instantiation is not currently supported");
219 }
220 }
221
222 typecheck(module, imports, |cx, ty, item| {
223 let item = DefinitionType::from(store, item);
224 cx.definition(ty, &item)
225 })?;
226
227 // When pushing functions into `OwnedImports` it's required that their
228 // `wasm_call` fields are all filled out. This `module` is guaranteed
229 // to have any trampolines necessary for functions so register the
230 // module with the store and then attempt to fill out any outstanding
231 // holes.
232 //
233 // Note that under normal operation this shouldn't do much as the list
234 // of funcs-with-holes should generally be empty. As a result the
235 // process of filling this out is not super optimized at this point.
236 let (modules, engine, breakpoints) = store.modules_and_engine_and_breakpoints_mut();
237 modules.register_module(module, engine, breakpoints)?;
238 let (funcrefs, modules) = store.func_refs_and_modules();
239 funcrefs.fill(modules);
240
241 let mut owned_imports = OwnedImports::new(module)?;
242 for import in imports {
243 owned_imports.push(import, store)?;
244 }
245 Ok(owned_imports)
246 }
247
248 /// Internal function to create an instance and run the start function.
249 ///
250 /// This function's unsafety is the same as `Instance::new_raw`.
251 pub(crate) async unsafe fn new_started<T>(
252 store: &mut StoreContextMut<'_, T>,
253 module: &Module,
254 imports: Imports<'_>,
255 asyncness: Asyncness,
256 ) -> Result<Instance> {
257 let instance = {
258 let (mut limiter, store) = store.0.resource_limiter_and_store_opaque();
259 // SAFETY: the safety contract of `new_raw` is the same as this
260 // function.
261 unsafe { Instance::new_raw(store, limiter.as_mut(), module, imports).await? }
262 };
263
264 // If this instance requires startup, which is a dynamic decision made
265 // at this point in conjunction with analysis at compile time, the
266 // instance gets started. Note that this isn't just the wasm start
267 // function itself, but it's finalization of initialization of this
268 // instance, for example for complicated global initialization
269 // expressions.
270 if instance.id.get_mut(store.0).needs_startup() {
271 if asyncness == Asyncness::No {
272 instance.start_raw(store)?;
273 } else {
274 #[cfg(feature = "async")]
275 {
276 store.on_fiber(|store| instance.start_raw(store)).await??;
277 }
278 #[cfg(not(feature = "async"))]
279 unreachable!();
280 }
281 }
282 Ok(instance)
283 }
284
285 /// Internal function to create an instance which doesn't have its `start`
286 /// function run yet.
287 ///
288 /// This is not intended to be exposed from Wasmtime, it's intended to
289 /// refactor out common code from `new_started` and `new_started_async`.
290 ///
291 /// Note that this step needs to be run on a fiber in async mode even
292 /// though it doesn't do any blocking work because an async resource
293 /// limiter may need to yield.
294 ///
295 /// # Unsafety
296 ///
297 /// This method is unsafe because it does not type-check the `imports`
298 /// provided. The `imports` provided must be suitable for the module
299 /// provided as well.
300 async unsafe fn new_raw(
301 store: &mut StoreOpaque,
302 mut limiter: Option<&mut StoreResourceLimiter<'_>>,
303 module: &Module,
304 imports: Imports<'_>,
305 ) -> Result<Instance> {
306 if !Engine::same(store.engine(), module.engine()) {
307 bail!("cross-`Engine` instantiation is not currently supported");
308 }
309 store.bump_resource_counts(module)?;
310
311 // Allocate the GC heap, if necessary.
312 if module.env_module().needs_gc_heap {
313 store.ensure_gc_store(limiter.as_deref_mut()).await?;
314 }
315
316 // Register the module just before instantiation to ensure we keep the module
317 // properly referenced while in use by the store.
318 let (modules, engine, breakpoints) = store.modules_and_engine_and_breakpoints_mut();
319 let module_id = modules.register_module(module, engine, breakpoints)?;
320
321 // The first thing we do is issue an instance allocation request
322 // to the instance allocator. This, on success, will give us an
323 // instance handle.
324 //
325 // SAFETY: this module, by construction, was already validated within
326 // the store.
327 let id = unsafe {
328 store
329 .allocate_instance(
330 limiter.as_deref_mut(),
331 AllocateInstanceKind::Module(module_id),
332 &ModuleRuntimeInfo::Module(module.clone()),
333 imports,
334 )
335 .await?
336 };
337
338 // At this point the instance is created and stored within the store,
339 // but it's also not quite usable just yet. Initialization hasn't
340 // completed (e.g. active data/element segments) and the `start`
341 // function additionally has not yet been invoked. That's the
342 // responsibility of the caller to handle, however.
343 Ok(Instance::from_wasmtime(id, store))
344 }
345
346 pub(crate) fn from_wasmtime(id: InstanceId, store: &mut StoreOpaque) -> Instance {
347 Instance {
348 id: StoreInstanceId::new(store.id(), id),
349 }
350 }
351
352 fn start_raw<T>(&self, store: &mut StoreContextMut<'_, T>) -> Result<()> {
353 // If a start function is present, invoke it. Make sure we use all the
354 // trap-handling configuration in `store` as well.
355 let store_id = store.0.id();
356 let (mut instance, registry) = self.id.get_mut_and_module_registry(store.0);
357 // SAFETY: the `store_id` is the id of the store that owns this
358 // instance and any function stored within the instance.
359 let f = unsafe {
360 instance
361 .as_mut()
362 .get_startup_func(registry, store_id)
363 .expect("should have a startup function")
364 };
365 let caller_vmctx = instance.vmctx();
366 unsafe {
367 let funcref = f.vm_func_ref(store.0);
368 super::func::invoke_wasm_and_catch_traps(store, |_default_caller, vm| {
369 VMFuncRef::array_call(funcref, vm, caller_vmctx, NonNull::from(&mut []))
370 })?;
371 }
372 Ok(())
373 }
374
375 /// Get this instance's module.
376 pub fn module<'a, T: 'static>(&self, store: impl Into<StoreContext<'a, T>>) -> &'a Module {
377 self._module(store.into().0)
378 }
379
380 pub(crate) fn _module<'a>(&self, store: &'a StoreOpaque) -> &'a Module {
381 store.module_for_instance(self.id).unwrap()
382 }
383
384 /// Returns the list of exported items from this [`Instance`].
385 ///
386 /// # Panics
387 ///
388 /// Panics if `store` does not own this instance, or if memory allocation
389 /// fails.
390 pub fn exports<'a, T: 'static>(
391 &'a self,
392 store: impl Into<StoreContextMut<'a, T>>,
393 ) -> impl ExactSizeIterator<Item = Export<'a>> + 'a {
394 let store = store.into().0;
395 let store_id = store.id();
396 let engine = store.engine().clone();
397
398 let (instance, registry) = store.instance_and_module_registry_mut(self.id());
399 let (module, mut instance) = instance.module_and_self();
400 module.exports.iter().map(move |(name, entity)| {
401 // SAFETY: the `store_id` owns this instance and all exports
402 // contained within.
403 let export = unsafe {
404 instance
405 .as_mut()
406 .get_export_by_index_mut(registry, store_id, *entity)
407 };
408
409 let ext = Extern::from_wasmtime_export(export, &engine);
410 Export::new(&module.strings[name], ext)
411 })
412 }
413
414 /// Looks up an exported [`Extern`] value by name.
415 ///
416 /// This method will search the module for an export named `name` and return
417 /// the value, if found.
418 ///
419 /// Returns `None` if there was no export named `name`.
420 ///
421 /// # Panics
422 ///
423 /// Panics if `store` does not own this instance.
424 ///
425 /// # Why does `get_export` take a mutable context?
426 ///
427 /// This method requires a mutable context because an instance's exports are
428 /// lazily populated, and we cache them as they are accessed. This makes
429 /// instantiating a module faster, but also means this method requires a
430 /// mutable context.
431 pub fn get_export(&self, mut store: impl AsContextMut, name: &str) -> Option<Extern> {
432 let store = store.as_context_mut().0;
433 let module = store[self.id].env_module();
434 let name = module.strings.get_atom(name)?;
435 let entity = *module.exports.get(&name)?;
436 Some(self._get_export(store, entity))
437 }
438
439 /// Looks up an exported [`Extern`] value by a [`ModuleExport`] value.
440 ///
441 /// This is similar to [`Instance::get_export`] but uses a [`ModuleExport`] value to avoid
442 /// string lookups where possible. [`ModuleExport`]s can be obtained by calling
443 /// [`Module::get_export_index`] on the [`Module`] that this instance was instantiated with.
444 ///
445 /// This method will search the module for an export with a matching entity index and return
446 /// the value, if found.
447 ///
448 /// Returns `None` if there was no export with a matching entity index.
449 ///
450 /// # Panics
451 ///
452 /// Panics if `store` does not own this instance.
453 pub fn get_module_export(
454 &self,
455 mut store: impl AsContextMut,
456 export: &ModuleExport,
457 ) -> Option<Extern> {
458 let store = store.as_context_mut().0;
459
460 // Verify the `ModuleExport` matches the module used in this instance.
461 if self._module(store).id() != export.module {
462 return None;
463 }
464
465 Some(self._get_export(store, export.entity))
466 }
467
468 fn _get_export(&self, store: &mut StoreOpaque, entity: EntityIndex) -> Extern {
469 let id = store.id();
470 // SAFETY: the store `id` owns this instance and all exports contained
471 // within.
472 let export = unsafe {
473 let (instance, registry) = self.id.get_mut_and_module_registry(store);
474 instance.get_export_by_index_mut(registry, id, entity)
475 };
476 Extern::from_wasmtime_export(export, store.engine())
477 }
478
479 /// Looks up an exported [`Func`] value by name.
480 ///
481 /// Returns `None` if there was no export named `name`, or if there was but
482 /// it wasn't a function.
483 ///
484 /// # Panics
485 ///
486 /// Panics if `store` does not own this instance.
487 pub fn get_func(&self, store: impl AsContextMut, name: &str) -> Option<Func> {
488 self.get_export(store, name)?.into_func()
489 }
490
491 /// Looks up an exported [`Func`] value by name and with its type.
492 ///
493 /// This function is a convenience wrapper over [`Instance::get_func`] and
494 /// [`Func::typed`]. For more information see the linked documentation.
495 ///
496 /// Returns an error if `name` isn't a function export or if the export's
497 /// type did not match `Params` or `Results`
498 ///
499 /// # Panics
500 ///
501 /// Panics if `store` does not own this instance.
502 ///
503 /// # Errors
504 ///
505 /// This function will return an [`OutOfMemory`][crate::OutOfMemory] error when
506 /// memory allocation fails. See the `OutOfMemory` type's documentation for
507 /// details on Wasmtime's out-of-memory handling.
508 pub fn get_typed_func<Params, Results>(
509 &self,
510 mut store: impl AsContextMut,
511 name: &str,
512 ) -> Result<TypedFunc<Params, Results>>
513 where
514 Params: crate::WasmParams,
515 Results: crate::WasmResults,
516 {
517 let f = self
518 .get_export(store.as_context_mut(), name)
519 .and_then(|f| f.into_func())
520 .ok_or_else(|| format_err!("failed to find function export `{name}`"))?;
521 Ok(f.typed::<Params, Results>(store)
522 .with_context(|| format!("failed to convert function `{name}` to given type"))?)
523 }
524
525 /// Looks up an exported [`Table`] value by name.
526 ///
527 /// Returns `None` if there was no export named `name`, or if there was but
528 /// it wasn't a table.
529 ///
530 /// # Panics
531 ///
532 /// Panics if `store` does not own this instance.
533 pub fn get_table(&self, store: impl AsContextMut, name: &str) -> Option<Table> {
534 self.get_export(store, name)?.into_table()
535 }
536
537 /// Looks up an exported [`Memory`] value by name.
538 ///
539 /// Returns `None` if there was no export named `name`, or if there was but
540 /// it wasn't a memory.
541 ///
542 /// # Panics
543 ///
544 /// Panics if `store` does not own this instance.
545 pub fn get_memory(&self, store: impl AsContextMut, name: &str) -> Option<Memory> {
546 self.get_export(store, name)?.into_memory()
547 }
548
549 /// Looks up an exported [`SharedMemory`] value by name.
550 ///
551 /// Returns `None` if there was no export named `name`, or if there was but
552 /// it wasn't a shared memory.
553 ///
554 /// # Panics
555 ///
556 /// Panics if `store` does not own this instance.
557 pub fn get_shared_memory(
558 &self,
559 mut store: impl AsContextMut,
560 name: &str,
561 ) -> Option<SharedMemory> {
562 let mut store = store.as_context_mut();
563 self.get_export(&mut store, name)?.into_shared_memory()
564 }
565
566 /// Looks up an exported [`Global`] value by name.
567 ///
568 /// Returns `None` if there was no export named `name`, or if there was but
569 /// it wasn't a global.
570 ///
571 /// # Panics
572 ///
573 /// Panics if `store` does not own this instance.
574 pub fn get_global(&self, store: impl AsContextMut, name: &str) -> Option<Global> {
575 self.get_export(store, name)?.into_global()
576 }
577
578 /// Looks up a tag [`Tag`] by name.
579 ///
580 /// Returns `None` if there was no export named `name`, or if there was but
581 /// it wasn't a tag.
582 ///
583 /// # Panics
584 ///
585 /// Panics if `store` does not own this instance.
586 pub fn get_tag(&self, store: impl AsContextMut, name: &str) -> Option<Tag> {
587 self.get_export(store, name)?.into_tag()
588 }
589
590 #[allow(
591 dead_code,
592 reason = "c-api crate does not yet support exnrefs and causes this method to be dead."
593 )]
594 pub(crate) fn id(&self) -> InstanceId {
595 self.id.instance()
596 }
597
598 /// Return a unique-within-Store index for this `Instance`.
599 ///
600 /// Allows distinguishing instance identities when introspecting
601 /// the `Store`, e.g. via debug APIs.
602 ///
603 /// This index will match the instance's position in the sequence
604 /// returned by `Store::debug_all_instances()`.
605 #[cfg(feature = "debug")]
606 pub fn debug_index_in_store(&self) -> u32 {
607 self.id.instance().as_u32()
608 }
609
610 /// Get all globals within this instance.
611 ///
612 /// Returns both import and defined globals.
613 ///
614 /// Returns both exported and non-exported globals.
615 ///
616 /// Gives access to the full globals space.
617 #[cfg(feature = "coredump")]
618 pub(crate) fn all_globals<'a>(
619 &'a self,
620 store: &'a mut StoreOpaque,
621 ) -> impl ExactSizeIterator<Item = (GlobalIndex, Global)> + 'a {
622 let store_id = store.id();
623 store[self.id].all_globals(store_id)
624 }
625
626 /// Get all memories within this instance.
627 ///
628 /// Returns both import and defined memories.
629 ///
630 /// Returns both exported and non-exported memories.
631 ///
632 /// Gives access to the full memories space.
633 #[cfg(feature = "coredump")]
634 pub(crate) fn all_memories<'a>(
635 &'a self,
636 store: &'a StoreOpaque,
637 ) -> impl ExactSizeIterator<Item = (MemoryIndex, vm::ExportMemory)> + 'a {
638 let store_id = store.id();
639 store[self.id].all_memories(store_id)
640 }
641}
642
643pub(crate) struct OwnedImports {
644 functions: TryPrimaryMap<FuncIndex, VMFunctionImport>,
645 tables: TryPrimaryMap<TableIndex, VMTableImport>,
646 memories: TryPrimaryMap<MemoryIndex, VMMemoryImport>,
647 globals: TryPrimaryMap<GlobalIndex, VMGlobalImport>,
648 tags: TryPrimaryMap<TagIndex, VMTagImport>,
649}
650
651impl OwnedImports {
652 fn new(module: &Module) -> Result<OwnedImports, OutOfMemory> {
653 let mut ret = OwnedImports::empty();
654 ret.reserve(module)?;
655 Ok(ret)
656 }
657
658 pub(crate) fn empty() -> OwnedImports {
659 OwnedImports {
660 functions: TryPrimaryMap::new(),
661 tables: TryPrimaryMap::new(),
662 memories: TryPrimaryMap::new(),
663 globals: TryPrimaryMap::new(),
664 tags: TryPrimaryMap::new(),
665 }
666 }
667
668 pub(crate) fn reserve(&mut self, module: &Module) -> Result<(), OutOfMemory> {
669 let raw = module.compiled_module().module();
670 self.functions.reserve(raw.num_imported_funcs)?;
671 self.tables.reserve(raw.num_imported_tables)?;
672 self.memories.reserve(raw.num_imported_memories)?;
673 self.globals.reserve(raw.num_imported_globals)?;
674 self.tags.reserve(raw.num_imported_tags)?;
675 Ok(())
676 }
677
678 #[cfg(feature = "component-model")]
679 pub(crate) fn clear(&mut self) {
680 self.functions.clear();
681 self.tables.clear();
682 self.memories.clear();
683 self.globals.clear();
684 self.tags.clear();
685 }
686
687 fn push(&mut self, item: &Extern, store: &mut StoreOpaque) -> Result<(), OutOfMemory> {
688 match item {
689 Extern::Func(i) => {
690 self.functions.push(i.vmimport(store))?;
691 }
692 Extern::Global(i) => {
693 self.globals.push(i.vmimport(store))?;
694 }
695 Extern::Table(i) => {
696 self.tables.push(i.vmimport(store))?;
697 }
698 Extern::Memory(i) => {
699 self.memories.push(i.vmimport(store))?;
700 }
701 Extern::SharedMemory(i) => {
702 self.memories.push(i.vmimport(store))?;
703 }
704 Extern::Tag(i) => {
705 self.tags.push(i.vmimport(store))?;
706 }
707 }
708 Ok(())
709 }
710
711 /// Note that this is unsafe as the validity of `item` is not verified and
712 /// it contains a bunch of raw pointers.
713 #[cfg(feature = "component-model")]
714 pub(crate) fn push_export(
715 &mut self,
716 store: &StoreOpaque,
717 item: &crate::runtime::vm::Export,
718 ) -> Result<(), OutOfMemory> {
719 match item {
720 crate::runtime::vm::Export::Function(f) => {
721 self.functions.push(f.vmimport(store))?;
722 }
723 crate::runtime::vm::Export::Global(g) => {
724 self.globals.push(g.vmimport(store))?;
725 }
726 crate::runtime::vm::Export::Table(t) => {
727 self.tables.push(t.vmimport(store))?;
728 }
729 crate::runtime::vm::Export::Memory(m) => {
730 self.memories.push(m.vmimport(store))?;
731 }
732 crate::runtime::vm::Export::SharedMemory(_, vmimport) => {
733 self.memories.push(*vmimport)?;
734 }
735 crate::runtime::vm::Export::Tag(t) => {
736 self.tags.push(t.vmimport(store))?;
737 }
738 }
739 Ok(())
740 }
741
742 pub(crate) fn as_ref(&self) -> Imports<'_> {
743 Imports {
744 tables: self.tables.values().as_slice(),
745 globals: self.globals.values().as_slice(),
746 memories: self.memories.values().as_slice(),
747 functions: self.functions.values().as_slice(),
748 tags: self.tags.values().as_slice(),
749 }
750 }
751}
752
753/// An instance, pre-instantiation, that is ready to be instantiated.
754///
755/// This structure represents an instance *just before* it was instantiated,
756/// after all type-checking and imports have been resolved. The only thing left
757/// to do for this instance is to actually run the process of instantiation.
758///
759/// Note that an `InstancePre` may not be tied to any particular [`Store`] if
760/// none of the imports it closed over are tied to any particular [`Store`].
761///
762/// This structure is created through the [`Linker::instantiate_pre`] method,
763/// which also has some more information and examples.
764///
765/// [`Store`]: crate::Store
766/// [`Linker::instantiate_pre`]: crate::Linker::instantiate_pre
767pub struct InstancePre<T> {
768 module: Module,
769
770 /// The items which this `InstancePre` use to instantiate the `module`
771 /// provided, passed to `Instance::new_started` after inserting them into a
772 /// `Store`.
773 ///
774 /// Note that this is stored as an `Arc` to quickly move a strong reference
775 /// to everything internally into a `Store<T>` without having to clone each
776 /// individual item.
777 items: Arc<TryVec<Definition>>,
778
779 /// A count of `Definition::HostFunc` entries in `items` above to
780 /// preallocate space in a `Store` up front for all entries to be inserted.
781 host_funcs: usize,
782
783 /// The `VMFuncRef`s for the functions in `items` that do not
784 /// have a `wasm_call` trampoline. We pre-allocate and pre-patch these
785 /// `VMFuncRef`s so that we don't have to do it at
786 /// instantiation time.
787 ///
788 /// This is an `Arc` for the same reason as `items`.
789 func_refs: Arc<TryVec<VMFuncRef>>,
790
791 /// Whether or not any import in `items` is flagged as needing async.
792 ///
793 /// This is used to update stores during instantiation as to whether they
794 /// require async entrypoints.
795 asyncness: Asyncness,
796
797 _marker: core::marker::PhantomData<fn() -> T>,
798}
799
800/// InstancePre's clone does not require T: Clone
801impl<T> Clone for InstancePre<T> {
802 fn clone(&self) -> Self {
803 Self {
804 module: self.module.clone(),
805 items: self.items.clone(),
806 host_funcs: self.host_funcs,
807 func_refs: self.func_refs.clone(),
808 asyncness: self.asyncness,
809 _marker: self._marker,
810 }
811 }
812}
813
814impl<T: 'static> InstancePre<T> {
815 /// Creates a new `InstancePre` which type-checks the `items` provided and
816 /// on success is ready to instantiate a new instance.
817 ///
818 /// # Unsafety
819 ///
820 /// This method is unsafe as the `T` of the `InstancePre<T>` is not
821 /// guaranteed to be the same as the `T` within the `Store`, the caller must
822 /// verify that.
823 pub(crate) unsafe fn new(module: &Module, items: TryVec<Definition>) -> Result<InstancePre<T>> {
824 typecheck(module, &items, |cx, ty, item| cx.definition(ty, &item.ty()))?;
825
826 let mut func_refs = TryVec::with_capacity(items.len())?;
827 let mut host_funcs = 0;
828 let mut asyncness = Asyncness::No;
829 for item in &items {
830 match item {
831 Definition::Extern(_, _) => {}
832 Definition::HostFunc(f) => {
833 host_funcs += 1;
834 if f.func_ref().wasm_call.is_none() {
835 func_refs.push(VMFuncRef {
836 wasm_call: module
837 .wasm_to_array_trampoline(f.sig_index())
838 .map(|f| f.into()),
839 ..*f.func_ref()
840 })?;
841 }
842 asyncness = asyncness | f.asyncness();
843 }
844 }
845 }
846
847 Ok(InstancePre {
848 module: module.clone(),
849 items: try_new::<Arc<_>>(items)?,
850 host_funcs,
851 func_refs: try_new::<Arc<_>>(func_refs)?,
852 asyncness,
853 _marker: core::marker::PhantomData,
854 })
855 }
856
857 /// Returns a reference to the module that this [`InstancePre`] will be
858 /// instantiating.
859 pub fn module(&self) -> &Module {
860 &self.module
861 }
862
863 /// Instantiates this instance, creating a new instance within the provided
864 /// `store`.
865 ///
866 /// This function will run the actual process of instantiation to
867 /// completion. This will use all of the previously-closed-over items as
868 /// imports to instantiate the module that this was originally created with.
869 ///
870 /// For more information about instantiation see [`Instance::new`].
871 ///
872 /// # Panics
873 ///
874 /// Panics if any import closed over by this [`InstancePre`] isn't owned by
875 /// `store`, or if `store` has async support enabled. Additionally this
876 /// function will panic if the `store` provided comes from a different
877 /// [`Engine`] than the [`InstancePre`] originally came from.
878 ///
879 /// # Errors
880 ///
881 /// This function will return an [`OutOfMemory`][crate::OutOfMemory] error when
882 /// memory allocation fails. See the `OutOfMemory` type's documentation for
883 /// details on Wasmtime's out-of-memory handling.
884 pub fn instantiate(&self, mut store: impl AsContextMut<Data = T>) -> Result<Instance> {
885 let mut store = store.as_context_mut();
886 let imports = pre_instantiate_raw(
887 &mut store.0,
888 &self.module,
889 &self.items,
890 self.host_funcs,
891 &self.func_refs,
892 self.asyncness,
893 )?;
894
895 // Note that this is specifically done after `pre_instantiate_raw` to
896 // handle the case that if any imports in this `InstancePre` require
897 // async that it's flagged in the store by that point which will reject
898 // this instantiation to say "use `instantiate_async` instead".
899 store.0.validate_sync_call()?;
900
901 // This unsafety should be handled by the type-checking performed by the
902 // constructor of `InstancePre` to assert that all the imports we're passing
903 // in match the module we're instantiating.
904 vm::assert_ready(unsafe {
905 Instance::new_started(&mut store, &self.module, imports.as_ref(), Asyncness::No)
906 })
907 }
908
909 /// Creates a new instance, running the start function asynchronously
910 /// instead of inline.
911 ///
912 /// For more information about asynchronous instantiation see the
913 /// documentation on [`Instance::new_async`].
914 ///
915 /// # Panics
916 ///
917 /// Panics if any import closed over by this [`InstancePre`] isn't owned by
918 /// `store`, or if `store` does not have async support enabled.
919 ///
920 /// # Errors
921 ///
922 /// This function will return an [`OutOfMemory`][crate::OutOfMemory] error when
923 /// memory allocation fails. See the `OutOfMemory` type's documentation for
924 /// details on Wasmtime's out-of-memory handling.
925 #[cfg(feature = "async")]
926 pub async fn instantiate_async(
927 &self,
928 mut store: impl AsContextMut<Data = T>,
929 ) -> Result<Instance> {
930 let mut store = store.as_context_mut();
931 let imports = pre_instantiate_raw(
932 &mut store.0,
933 &self.module,
934 &self.items,
935 self.host_funcs,
936 &self.func_refs,
937 self.asyncness,
938 )?;
939
940 // This unsafety should be handled by the type-checking performed by the
941 // constructor of `InstancePre` to assert that all the imports we're passing
942 // in match the module we're instantiating.
943 unsafe {
944 Instance::new_started(&mut store, &self.module, imports.as_ref(), Asyncness::Yes).await
945 }
946 }
947}
948
949/// Helper function shared between
950/// `InstancePre::{instantiate,instantiate_async}`
951///
952/// This is an out-of-line function to avoid the generic on `InstancePre` and
953/// get this compiled into the `wasmtime` crate to avoid having it monomorphized
954/// elsewhere.
955fn pre_instantiate_raw(
956 store: &mut StoreOpaque,
957 module: &Module,
958 items: &Arc<TryVec<Definition>>,
959 host_funcs: usize,
960 func_refs: &Arc<TryVec<VMFuncRef>>,
961 asyncness: Asyncness,
962) -> Result<OwnedImports> {
963 // Register this module and use it to fill out any funcref wasm_call holes
964 // we can. For more comments on this see `typecheck_externs`.
965 let (modules, engine, breakpoints) = store.modules_and_engine_and_breakpoints_mut();
966 modules.register_module(module, engine, breakpoints)?;
967 let (funcrefs, modules) = store.func_refs_and_modules();
968 funcrefs.fill(modules);
969
970 if host_funcs > 0 {
971 // Any linker-defined function of the `Definition::HostFunc` variant
972 // will insert a function into the store automatically as part of
973 // instantiation, so reserve space here to make insertion more efficient
974 // as it won't have to realloc during the instantiation.
975 funcrefs.reserve_storage(host_funcs)?;
976
977 // The usage of `to_extern_store_rooted` requires that the items are
978 // rooted via another means, which happens here by cloning the list of
979 // items into the store once. This avoids cloning each individual item
980 // below.
981 funcrefs.push_instance_pre_definitions(items.clone())?;
982 funcrefs.push_instance_pre_func_refs(func_refs.clone())?;
983 }
984
985 store.set_async_required(asyncness);
986
987 let mut func_refs = func_refs.iter().map(|f| NonNull::from(f));
988 let mut imports = OwnedImports::new(module)?;
989 for import in items.iter() {
990 if !import.comes_from_same_store(store) {
991 bail!("cross-`Store` instantiation is not currently supported");
992 }
993 // This unsafety should be encapsulated in the constructor of
994 // `InstancePre` where the `T` of the original item should match the
995 // `T` of the store. Additionally the rooting necessary has happened
996 // above.
997 let item = match import {
998 Definition::Extern(e, _) => e.clone(),
999 Definition::HostFunc(func) => unsafe {
1000 func.to_func_store_rooted(
1001 store,
1002 if func.func_ref().wasm_call.is_none() {
1003 Some(func_refs.next().unwrap())
1004 } else {
1005 None
1006 },
1007 )
1008 .into()
1009 },
1010 };
1011 imports.push(&item, store)?;
1012 }
1013
1014 Ok(imports)
1015}
1016
1017fn typecheck<I>(
1018 module: &Module,
1019 import_args: &[I],
1020 check: impl Fn(&matching::MatchCx<'_>, &EntityType, &I) -> Result<()>,
1021) -> Result<()> {
1022 let env_module = module.compiled_module().module();
1023 let expected_len = env_module.imports().count();
1024 let actual_len = import_args.len();
1025 if expected_len != actual_len {
1026 bail!("expected {expected_len} imports, found {actual_len}");
1027 }
1028 let cx = matching::MatchCx::new(module.engine());
1029 for ((name, field, expected_ty), actual) in env_module.imports().zip(import_args) {
1030 debug_assert!(expected_ty.is_canonicalized_for_runtime_usage());
1031 check(&cx, &expected_ty, actual)
1032 .with_context(|| format!("incompatible import type for `{name}::{field}`"))?;
1033 }
1034 Ok(())
1035}