Wasmtime has a leak in WASIp1 `fd_renumber` implementation
Low severity
GitHub Reviewed
Published
Jun 15, 2026
in
bytecodealliance/wasmtime
•
Updated Aug 26, 2026
Package
Affected versions
< 24.0.10
>= 45.0.0, < 45.0.2
>= 25.0.0, < 36.0.11
>= 37.0.0, < 44.0.3
Patched versions
24.0.10
45.0.2
36.0.11
44.0.3
Description
Published by the National Vulnerability Database
Jul 1, 2026
Published to the GitHub Advisory Database
Aug 26, 2026
Reviewed
Aug 26, 2026
Last updated
Aug 26, 2026
Impact
Wasmtime's native implementation of WASIp1 suffers from a leak in the
fd_renumberfunction where the file descriptor being renumbered to is not properly closed. Wasmtime's implementation erroneously only updated the table of descriptors for WASIp1 and didn't update the underlying table of descriptors used by the host. This behavior means that whilefd_renumberworks correctly from a guest's perspective it ends up leaking resources in the host that aren't cleaned up until the correspondingStoreis destroyed. This means that guests can, in a loop, usefd_renumberto cause hosts to exhaust resources or exhaust file descriptors.This bug only affects the native implementation of WASIp1. This means that only runtimes which load core wasm modules and expose
fd_renumberare affected. Runtimes are additionally only affected if they expose the ability to acquire a file descriptor, such as opening a file. For runtimes that deny access to files they are unaffected.Patches
Wasmtime 24.0.10, 36.0.11, 44.0.3, and 45.0.2 have been released which fix this issue.
Workarounds
There are no workarounds for this issue and hosts are recommended to update.
References