This commit uses the `*.witx` files describing the current wasi API to reduce the boilerplate used to define implementations in the `wasmtime-wasi` crate. Eventually I'd like to remove lots of boilerplate in the `wasi-common` crate too, but this should at least be a good start! The boilerplate removed here is: * No need to list each function to add it to the `wasmtime_runtime::Module` being created * No need to list the signature of the function in a separate `syscalls.rs` file. Instead the `*.witx` file is processed in a single-use macro inside the `wasmtime-wasi` crate. This macro uses the signatures known from `*.witx` to automatically register with the right type in the wasm module as well as define a wrapper that the wasm module will call into. Functionally this is all the same as before, it's just defined in a different way now! The shim generated by this macro which wasmtime calls into only uses `i32`/`i64`/etc wasm types, and it internally uses `as` casts to convert to the right wasi types when delegating into the `wasi-common` crate. One change was necessary to get this implemented, however. The functions in `wasi-common` sometimes took `WasiCtx` and sometimes took a slice of memory. After this PR they uniformly all require both `WasiCtx` and memory so the wrappers can be auto-generated. The arguments are ignored if they weren't previously required.
264 lines
7.9 KiB
Rust
264 lines
7.9 KiB
Rust
#![allow(non_camel_case_types)]
|
|
use crate::ctx::WasiCtx;
|
|
use crate::{hostcalls_impl, wasi, wasi32};
|
|
|
|
hostcalls! {
|
|
pub unsafe fn fd_close(wasi_ctx: &mut WasiCtx, memory: &mut [u8], fd: wasi::__wasi_fd_t,) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_datasync(wasi_ctx: &WasiCtx, memory: &mut [u8], fd: wasi::__wasi_fd_t,) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_pread(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
iovs_ptr: wasi32::uintptr_t,
|
|
iovs_len: wasi32::size_t,
|
|
offset: wasi::__wasi_filesize_t,
|
|
nread: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_pwrite(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
iovs_ptr: wasi32::uintptr_t,
|
|
iovs_len: wasi32::size_t,
|
|
offset: wasi::__wasi_filesize_t,
|
|
nwritten: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_read(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
iovs_ptr: wasi32::uintptr_t,
|
|
iovs_len: wasi32::size_t,
|
|
nread: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_renumber(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
from: wasi::__wasi_fd_t,
|
|
to: wasi::__wasi_fd_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_seek(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
offset: wasi::__wasi_filedelta_t,
|
|
whence: wasi::__wasi_whence_t,
|
|
newoffset: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_tell(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
newoffset: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_fdstat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
fdstat_ptr: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_fdstat_set_flags(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
fdflags: wasi::__wasi_fdflags_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_fdstat_set_rights(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
fs_rights_base: wasi::__wasi_rights_t,
|
|
fs_rights_inheriting: wasi::__wasi_rights_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_sync(wasi_ctx: &WasiCtx, memory: &mut [u8], fd: wasi::__wasi_fd_t,) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_write(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
iovs_ptr: wasi32::uintptr_t,
|
|
iovs_len: wasi32::size_t,
|
|
nwritten: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_advise(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
offset: wasi::__wasi_filesize_t,
|
|
len: wasi::__wasi_filesize_t,
|
|
advice: wasi::__wasi_advice_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_allocate(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
offset: wasi::__wasi_filesize_t,
|
|
len: wasi::__wasi_filesize_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_create_directory(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_link(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_dirfd: wasi::__wasi_fd_t,
|
|
old_flags: wasi::__wasi_lookupflags_t,
|
|
old_path_ptr: wasi32::uintptr_t,
|
|
old_path_len: wasi32::size_t,
|
|
new_dirfd: wasi::__wasi_fd_t,
|
|
new_path_ptr: wasi32::uintptr_t,
|
|
new_path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_open(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
dirflags: wasi::__wasi_lookupflags_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
oflags: wasi::__wasi_oflags_t,
|
|
fs_rights_base: wasi::__wasi_rights_t,
|
|
fs_rights_inheriting: wasi::__wasi_rights_t,
|
|
fs_flags: wasi::__wasi_fdflags_t,
|
|
fd_out_ptr: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_readdir(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
buf: wasi32::uintptr_t,
|
|
buf_len: wasi32::size_t,
|
|
cookie: wasi::__wasi_dircookie_t,
|
|
buf_used: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_readlink(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
buf_ptr: wasi32::uintptr_t,
|
|
buf_len: wasi32::size_t,
|
|
buf_used: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_rename(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_dirfd: wasi::__wasi_fd_t,
|
|
old_path_ptr: wasi32::uintptr_t,
|
|
old_path_len: wasi32::size_t,
|
|
new_dirfd: wasi::__wasi_fd_t,
|
|
new_path_ptr: wasi32::uintptr_t,
|
|
new_path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_filestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
filestat_ptr: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_filestat_set_times(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
st_atim: wasi::__wasi_timestamp_t,
|
|
st_mtim: wasi::__wasi_timestamp_t,
|
|
fst_flags: wasi::__wasi_fstflags_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_filestat_set_size(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
st_size: wasi::__wasi_filesize_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_filestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
dirflags: wasi::__wasi_lookupflags_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
filestat_ptr: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_filestat_set_times(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
dirflags: wasi::__wasi_lookupflags_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
st_atim: wasi::__wasi_timestamp_t,
|
|
st_mtim: wasi::__wasi_timestamp_t,
|
|
fst_flags: wasi::__wasi_fstflags_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_symlink(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_path_ptr: wasi32::uintptr_t,
|
|
old_path_len: wasi32::size_t,
|
|
dirfd: wasi::__wasi_fd_t,
|
|
new_path_ptr: wasi32::uintptr_t,
|
|
new_path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_unlink_file(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn path_remove_directory(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasi::__wasi_fd_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_prestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
prestat_ptr: wasi32::uintptr_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
|
|
pub unsafe fn fd_prestat_dir_name(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasi::__wasi_fd_t,
|
|
path_ptr: wasi32::uintptr_t,
|
|
path_len: wasi32::size_t,
|
|
) -> wasi::__wasi_errno_t;
|
|
}
|