Empowering WebAssembly with Thin Kernel Interfaces
Arjun Ramesh, Tianshu Huang, Ben L. Titzer, Anthony Rowe
TL;DR
The paper presents thin kernel interfaces (WALI for Linux and WAZI for Zephyr) that expose OS syscalls to WebAssembly while preserving intra-process sandboxing, enabling a bottom-up virtualization model where legacy software can run on Wasm across diverse ISAs. By layering high-level APIs like WASI over a compact, ISA-agnostic kernel interface, the approach decouples engine evolution from OS surface changes and reduces the trusted computing base. Empirical results show broad syscall coverage (≈137 of the common Linux syscalls), feasible porting of real-world apps, and a middle-ground performance profile between emulation (QEMU) and containers (Docker), with fast startup and strong security properties. The work is extended to Zephyr through WAZI and is argued to generalize to other kernels, offering a path toward portable, secure, and robust Wasm deployments across edge, IoT, and embedded domains.
Abstract
Wasm is gaining popularity outside the Web as a well-specified low-level binary format with ISA portability, low memory footprint and polyglot targetability, enabling efficient in-process sandboxing of untrusted code. Despite these advantages, Wasm adoption for new domains is often hindered by the lack of many standard system interfaces which precludes reusability of existing software and slows ecosystem growth. This paper proposes thin kernel interfaces for Wasm, which directly expose OS userspace syscalls without breaking intra-process sandboxing, enabling a new class of virtualization with Wasm as a universal binary format. By virtualizing the bottom layer of userspace, kernel interfaces enable effortless application ISA portability, compiler backend reusability, and armor programs with Wasm's built-in control flow integrity and arbitrary code execution protection. Furthermore, existing capability-based APIs for Wasm, such as WASI, can be implemented as a Wasm module over kernel interfaces, improving reuse, robustness, and portability through better layering. We present an implementation of this concept for two kernels -- Linux and Zephyr -- by extending a modern Wasm engine and evaluate our system's performance on a number of sophisticated applications which can run for the first time on Wasm.
