Sync with wasmtime and update public interface
Internal modules `memory` and `host` can indeed be internal hidden behind public-private visibility as `wasmtime-wasi` has already been updated not to use the said modules (see CraneStation/wasmtime#298).
This commit is contained in:
587
src/host.rs
587
src/host.rs
@@ -6,195 +6,195 @@
|
||||
use crate::{Error, Result};
|
||||
use std::{io, slice, str};
|
||||
|
||||
pub type void = ::std::os::raw::c_void;
|
||||
pub(crate) type void = ::std::os::raw::c_void;
|
||||
|
||||
pub type __wasi_advice_t = u8;
|
||||
pub const __WASI_ADVICE_NORMAL: __wasi_advice_t = 0;
|
||||
pub const __WASI_ADVICE_SEQUENTIAL: __wasi_advice_t = 1;
|
||||
pub const __WASI_ADVICE_RANDOM: __wasi_advice_t = 2;
|
||||
pub const __WASI_ADVICE_WILLNEED: __wasi_advice_t = 3;
|
||||
pub const __WASI_ADVICE_DONTNEED: __wasi_advice_t = 4;
|
||||
pub const __WASI_ADVICE_NOREUSE: __wasi_advice_t = 5;
|
||||
pub(crate) type __wasi_advice_t = u8;
|
||||
pub(crate) const __WASI_ADVICE_NORMAL: __wasi_advice_t = 0;
|
||||
pub(crate) const __WASI_ADVICE_SEQUENTIAL: __wasi_advice_t = 1;
|
||||
pub(crate) const __WASI_ADVICE_RANDOM: __wasi_advice_t = 2;
|
||||
pub(crate) const __WASI_ADVICE_WILLNEED: __wasi_advice_t = 3;
|
||||
pub(crate) const __WASI_ADVICE_DONTNEED: __wasi_advice_t = 4;
|
||||
pub(crate) const __WASI_ADVICE_NOREUSE: __wasi_advice_t = 5;
|
||||
|
||||
pub type __wasi_clockid_t = u32;
|
||||
pub const __WASI_CLOCK_REALTIME: __wasi_clockid_t = 0;
|
||||
pub const __WASI_CLOCK_MONOTONIC: __wasi_clockid_t = 1;
|
||||
pub const __WASI_CLOCK_PROCESS_CPUTIME_ID: __wasi_clockid_t = 2;
|
||||
pub const __WASI_CLOCK_THREAD_CPUTIME_ID: __wasi_clockid_t = 3;
|
||||
pub(crate) type __wasi_clockid_t = u32;
|
||||
pub(crate) const __WASI_CLOCK_REALTIME: __wasi_clockid_t = 0;
|
||||
pub(crate) const __WASI_CLOCK_MONOTONIC: __wasi_clockid_t = 1;
|
||||
pub(crate) const __WASI_CLOCK_PROCESS_CPUTIME_ID: __wasi_clockid_t = 2;
|
||||
pub(crate) const __WASI_CLOCK_THREAD_CPUTIME_ID: __wasi_clockid_t = 3;
|
||||
|
||||
pub type __wasi_device_t = u64;
|
||||
pub(crate) type __wasi_device_t = u64;
|
||||
|
||||
pub type __wasi_dircookie_t = u64;
|
||||
pub const __WASI_DIRCOOKIE_START: __wasi_dircookie_t = 0;
|
||||
pub(crate) type __wasi_dircookie_t = u64;
|
||||
pub(crate) const __WASI_DIRCOOKIE_START: __wasi_dircookie_t = 0;
|
||||
|
||||
// WASI error codes
|
||||
pub type __wasi_errno_t = u16;
|
||||
pub const __WASI_ESUCCESS: __wasi_errno_t = 0;
|
||||
pub const __WASI_E2BIG: __wasi_errno_t = 1;
|
||||
pub const __WASI_EACCES: __wasi_errno_t = 2;
|
||||
pub const __WASI_EADDRINUSE: __wasi_errno_t = 3;
|
||||
pub const __WASI_EADDRNOTAVAIL: __wasi_errno_t = 4;
|
||||
pub const __WASI_EAFNOSUPPORT: __wasi_errno_t = 5;
|
||||
pub const __WASI_EAGAIN: __wasi_errno_t = 6;
|
||||
pub const __WASI_EALREADY: __wasi_errno_t = 7;
|
||||
pub const __WASI_EBADF: __wasi_errno_t = 8;
|
||||
pub const __WASI_EBADMSG: __wasi_errno_t = 9;
|
||||
pub const __WASI_EBUSY: __wasi_errno_t = 10;
|
||||
pub const __WASI_ECANCELED: __wasi_errno_t = 11;
|
||||
pub const __WASI_ECHILD: __wasi_errno_t = 12;
|
||||
pub const __WASI_ECONNABORTED: __wasi_errno_t = 13;
|
||||
pub const __WASI_ECONNREFUSED: __wasi_errno_t = 14;
|
||||
pub const __WASI_ECONNRESET: __wasi_errno_t = 15;
|
||||
pub const __WASI_EDEADLK: __wasi_errno_t = 16;
|
||||
pub const __WASI_EDESTADDRREQ: __wasi_errno_t = 17;
|
||||
pub const __WASI_EDOM: __wasi_errno_t = 18;
|
||||
pub const __WASI_EDQUOT: __wasi_errno_t = 19;
|
||||
pub const __WASI_EEXIST: __wasi_errno_t = 20;
|
||||
pub const __WASI_EFAULT: __wasi_errno_t = 21;
|
||||
pub const __WASI_EFBIG: __wasi_errno_t = 22;
|
||||
pub const __WASI_EHOSTUNREACH: __wasi_errno_t = 23;
|
||||
pub const __WASI_EIDRM: __wasi_errno_t = 24;
|
||||
pub const __WASI_EILSEQ: __wasi_errno_t = 25;
|
||||
pub const __WASI_EINPROGRESS: __wasi_errno_t = 26;
|
||||
pub const __WASI_EINTR: __wasi_errno_t = 27;
|
||||
pub const __WASI_EINVAL: __wasi_errno_t = 28;
|
||||
pub const __WASI_EIO: __wasi_errno_t = 29;
|
||||
pub const __WASI_EISCONN: __wasi_errno_t = 30;
|
||||
pub const __WASI_EISDIR: __wasi_errno_t = 31;
|
||||
pub const __WASI_ELOOP: __wasi_errno_t = 32;
|
||||
pub const __WASI_EMFILE: __wasi_errno_t = 33;
|
||||
pub const __WASI_EMLINK: __wasi_errno_t = 34;
|
||||
pub const __WASI_EMSGSIZE: __wasi_errno_t = 35;
|
||||
pub const __WASI_EMULTIHOP: __wasi_errno_t = 36;
|
||||
pub const __WASI_ENAMETOOLONG: __wasi_errno_t = 37;
|
||||
pub const __WASI_ENETDOWN: __wasi_errno_t = 38;
|
||||
pub const __WASI_ENETRESET: __wasi_errno_t = 39;
|
||||
pub const __WASI_ENETUNREACH: __wasi_errno_t = 40;
|
||||
pub const __WASI_ENFILE: __wasi_errno_t = 41;
|
||||
pub const __WASI_ENOBUFS: __wasi_errno_t = 42;
|
||||
pub const __WASI_ENODEV: __wasi_errno_t = 43;
|
||||
pub const __WASI_ENOENT: __wasi_errno_t = 44;
|
||||
pub const __WASI_ENOEXEC: __wasi_errno_t = 45;
|
||||
pub const __WASI_ENOLCK: __wasi_errno_t = 46;
|
||||
pub const __WASI_ENOLINK: __wasi_errno_t = 47;
|
||||
pub const __WASI_ENOMEM: __wasi_errno_t = 48;
|
||||
pub const __WASI_ENOMSG: __wasi_errno_t = 49;
|
||||
pub const __WASI_ENOPROTOOPT: __wasi_errno_t = 50;
|
||||
pub const __WASI_ENOSPC: __wasi_errno_t = 51;
|
||||
pub const __WASI_ENOSYS: __wasi_errno_t = 52;
|
||||
pub const __WASI_ENOTCONN: __wasi_errno_t = 53;
|
||||
pub const __WASI_ENOTDIR: __wasi_errno_t = 54;
|
||||
pub const __WASI_ENOTEMPTY: __wasi_errno_t = 55;
|
||||
pub const __WASI_ENOTRECOVERABLE: __wasi_errno_t = 56;
|
||||
pub const __WASI_ENOTSOCK: __wasi_errno_t = 57;
|
||||
pub const __WASI_ENOTSUP: __wasi_errno_t = 58;
|
||||
pub const __WASI_ENOTTY: __wasi_errno_t = 59;
|
||||
pub const __WASI_ENXIO: __wasi_errno_t = 60;
|
||||
pub const __WASI_EOVERFLOW: __wasi_errno_t = 61;
|
||||
pub const __WASI_EOWNERDEAD: __wasi_errno_t = 62;
|
||||
pub const __WASI_EPERM: __wasi_errno_t = 63;
|
||||
pub const __WASI_EPIPE: __wasi_errno_t = 64;
|
||||
pub const __WASI_EPROTO: __wasi_errno_t = 65;
|
||||
pub const __WASI_EPROTONOSUPPORT: __wasi_errno_t = 66;
|
||||
pub const __WASI_EPROTOTYPE: __wasi_errno_t = 67;
|
||||
pub const __WASI_ERANGE: __wasi_errno_t = 68;
|
||||
pub const __WASI_EROFS: __wasi_errno_t = 69;
|
||||
pub const __WASI_ESPIPE: __wasi_errno_t = 70;
|
||||
pub const __WASI_ESRCH: __wasi_errno_t = 71;
|
||||
pub const __WASI_ESTALE: __wasi_errno_t = 72;
|
||||
pub const __WASI_ETIMEDOUT: __wasi_errno_t = 73;
|
||||
pub const __WASI_ETXTBSY: __wasi_errno_t = 74;
|
||||
pub const __WASI_EXDEV: __wasi_errno_t = 75;
|
||||
pub const __WASI_ENOTCAPABLE: __wasi_errno_t = 76;
|
||||
pub(crate) type __wasi_errno_t = u16;
|
||||
pub(crate) const __WASI_ESUCCESS: __wasi_errno_t = 0;
|
||||
pub(crate) const __WASI_E2BIG: __wasi_errno_t = 1;
|
||||
pub(crate) const __WASI_EACCES: __wasi_errno_t = 2;
|
||||
pub(crate) const __WASI_EADDRINUSE: __wasi_errno_t = 3;
|
||||
pub(crate) const __WASI_EADDRNOTAVAIL: __wasi_errno_t = 4;
|
||||
pub(crate) const __WASI_EAFNOSUPPORT: __wasi_errno_t = 5;
|
||||
pub(crate) const __WASI_EAGAIN: __wasi_errno_t = 6;
|
||||
pub(crate) const __WASI_EALREADY: __wasi_errno_t = 7;
|
||||
pub(crate) const __WASI_EBADF: __wasi_errno_t = 8;
|
||||
pub(crate) const __WASI_EBADMSG: __wasi_errno_t = 9;
|
||||
pub(crate) const __WASI_EBUSY: __wasi_errno_t = 10;
|
||||
pub(crate) const __WASI_ECANCELED: __wasi_errno_t = 11;
|
||||
pub(crate) const __WASI_ECHILD: __wasi_errno_t = 12;
|
||||
pub(crate) const __WASI_ECONNABORTED: __wasi_errno_t = 13;
|
||||
pub(crate) const __WASI_ECONNREFUSED: __wasi_errno_t = 14;
|
||||
pub(crate) const __WASI_ECONNRESET: __wasi_errno_t = 15;
|
||||
pub(crate) const __WASI_EDEADLK: __wasi_errno_t = 16;
|
||||
pub(crate) const __WASI_EDESTADDRREQ: __wasi_errno_t = 17;
|
||||
pub(crate) const __WASI_EDOM: __wasi_errno_t = 18;
|
||||
pub(crate) const __WASI_EDQUOT: __wasi_errno_t = 19;
|
||||
pub(crate) const __WASI_EEXIST: __wasi_errno_t = 20;
|
||||
pub(crate) const __WASI_EFAULT: __wasi_errno_t = 21;
|
||||
pub(crate) const __WASI_EFBIG: __wasi_errno_t = 22;
|
||||
pub(crate) const __WASI_EHOSTUNREACH: __wasi_errno_t = 23;
|
||||
pub(crate) const __WASI_EIDRM: __wasi_errno_t = 24;
|
||||
pub(crate) const __WASI_EILSEQ: __wasi_errno_t = 25;
|
||||
pub(crate) const __WASI_EINPROGRESS: __wasi_errno_t = 26;
|
||||
pub(crate) const __WASI_EINTR: __wasi_errno_t = 27;
|
||||
pub(crate) const __WASI_EINVAL: __wasi_errno_t = 28;
|
||||
pub(crate) const __WASI_EIO: __wasi_errno_t = 29;
|
||||
pub(crate) const __WASI_EISCONN: __wasi_errno_t = 30;
|
||||
pub(crate) const __WASI_EISDIR: __wasi_errno_t = 31;
|
||||
pub(crate) const __WASI_ELOOP: __wasi_errno_t = 32;
|
||||
pub(crate) const __WASI_EMFILE: __wasi_errno_t = 33;
|
||||
pub(crate) const __WASI_EMLINK: __wasi_errno_t = 34;
|
||||
pub(crate) const __WASI_EMSGSIZE: __wasi_errno_t = 35;
|
||||
pub(crate) const __WASI_EMULTIHOP: __wasi_errno_t = 36;
|
||||
pub(crate) const __WASI_ENAMETOOLONG: __wasi_errno_t = 37;
|
||||
pub(crate) const __WASI_ENETDOWN: __wasi_errno_t = 38;
|
||||
pub(crate) const __WASI_ENETRESET: __wasi_errno_t = 39;
|
||||
pub(crate) const __WASI_ENETUNREACH: __wasi_errno_t = 40;
|
||||
pub(crate) const __WASI_ENFILE: __wasi_errno_t = 41;
|
||||
pub(crate) const __WASI_ENOBUFS: __wasi_errno_t = 42;
|
||||
pub(crate) const __WASI_ENODEV: __wasi_errno_t = 43;
|
||||
pub(crate) const __WASI_ENOENT: __wasi_errno_t = 44;
|
||||
pub(crate) const __WASI_ENOEXEC: __wasi_errno_t = 45;
|
||||
pub(crate) const __WASI_ENOLCK: __wasi_errno_t = 46;
|
||||
pub(crate) const __WASI_ENOLINK: __wasi_errno_t = 47;
|
||||
pub(crate) const __WASI_ENOMEM: __wasi_errno_t = 48;
|
||||
pub(crate) const __WASI_ENOMSG: __wasi_errno_t = 49;
|
||||
pub(crate) const __WASI_ENOPROTOOPT: __wasi_errno_t = 50;
|
||||
pub(crate) const __WASI_ENOSPC: __wasi_errno_t = 51;
|
||||
pub(crate) const __WASI_ENOSYS: __wasi_errno_t = 52;
|
||||
pub(crate) const __WASI_ENOTCONN: __wasi_errno_t = 53;
|
||||
pub(crate) const __WASI_ENOTDIR: __wasi_errno_t = 54;
|
||||
pub(crate) const __WASI_ENOTEMPTY: __wasi_errno_t = 55;
|
||||
pub(crate) const __WASI_ENOTRECOVERABLE: __wasi_errno_t = 56;
|
||||
pub(crate) const __WASI_ENOTSOCK: __wasi_errno_t = 57;
|
||||
pub(crate) const __WASI_ENOTSUP: __wasi_errno_t = 58;
|
||||
pub(crate) const __WASI_ENOTTY: __wasi_errno_t = 59;
|
||||
pub(crate) const __WASI_ENXIO: __wasi_errno_t = 60;
|
||||
pub(crate) const __WASI_EOVERFLOW: __wasi_errno_t = 61;
|
||||
pub(crate) const __WASI_EOWNERDEAD: __wasi_errno_t = 62;
|
||||
pub(crate) const __WASI_EPERM: __wasi_errno_t = 63;
|
||||
pub(crate) const __WASI_EPIPE: __wasi_errno_t = 64;
|
||||
pub(crate) const __WASI_EPROTO: __wasi_errno_t = 65;
|
||||
pub(crate) const __WASI_EPROTONOSUPPORT: __wasi_errno_t = 66;
|
||||
pub(crate) const __WASI_EPROTOTYPE: __wasi_errno_t = 67;
|
||||
pub(crate) const __WASI_ERANGE: __wasi_errno_t = 68;
|
||||
pub(crate) const __WASI_EROFS: __wasi_errno_t = 69;
|
||||
pub(crate) const __WASI_ESPIPE: __wasi_errno_t = 70;
|
||||
pub(crate) const __WASI_ESRCH: __wasi_errno_t = 71;
|
||||
pub(crate) const __WASI_ESTALE: __wasi_errno_t = 72;
|
||||
pub(crate) const __WASI_ETIMEDOUT: __wasi_errno_t = 73;
|
||||
pub(crate) const __WASI_ETXTBSY: __wasi_errno_t = 74;
|
||||
pub(crate) const __WASI_EXDEV: __wasi_errno_t = 75;
|
||||
pub(crate) const __WASI_ENOTCAPABLE: __wasi_errno_t = 76;
|
||||
|
||||
pub type __wasi_eventrwflags_t = u16;
|
||||
pub const __WASI_EVENT_FD_READWRITE_HANGUP: __wasi_eventrwflags_t = 0x0001;
|
||||
pub(crate) type __wasi_eventrwflags_t = u16;
|
||||
pub(crate) const __WASI_EVENT_FD_READWRITE_HANGUP: __wasi_eventrwflags_t = 0x0001;
|
||||
|
||||
pub type __wasi_eventtype_t = u8;
|
||||
pub const __WASI_EVENTTYPE_CLOCK: __wasi_eventtype_t = 0;
|
||||
pub const __WASI_EVENTTYPE_FD_READ: __wasi_eventtype_t = 1;
|
||||
pub const __WASI_EVENTTYPE_FD_WRITE: __wasi_eventtype_t = 2;
|
||||
pub(crate) type __wasi_eventtype_t = u8;
|
||||
pub(crate) const __WASI_EVENTTYPE_CLOCK: __wasi_eventtype_t = 0;
|
||||
pub(crate) const __WASI_EVENTTYPE_FD_READ: __wasi_eventtype_t = 1;
|
||||
pub(crate) const __WASI_EVENTTYPE_FD_WRITE: __wasi_eventtype_t = 2;
|
||||
|
||||
pub type __wasi_exitcode_t = u32;
|
||||
pub(crate) type __wasi_exitcode_t = u32;
|
||||
|
||||
pub type __wasi_fd_t = u32;
|
||||
pub(crate) type __wasi_fd_t = u32;
|
||||
|
||||
pub type __wasi_fdflags_t = u16;
|
||||
pub const __WASI_FDFLAG_APPEND: __wasi_fdflags_t = 0x0001;
|
||||
pub const __WASI_FDFLAG_DSYNC: __wasi_fdflags_t = 0x0002;
|
||||
pub const __WASI_FDFLAG_NONBLOCK: __wasi_fdflags_t = 0x0004;
|
||||
pub const __WASI_FDFLAG_RSYNC: __wasi_fdflags_t = 0x0008;
|
||||
pub const __WASI_FDFLAG_SYNC: __wasi_fdflags_t = 0x0010;
|
||||
pub(crate) type __wasi_fdflags_t = u16;
|
||||
pub(crate) const __WASI_FDFLAG_APPEND: __wasi_fdflags_t = 0x0001;
|
||||
pub(crate) const __WASI_FDFLAG_DSYNC: __wasi_fdflags_t = 0x0002;
|
||||
pub(crate) const __WASI_FDFLAG_NONBLOCK: __wasi_fdflags_t = 0x0004;
|
||||
pub(crate) const __WASI_FDFLAG_RSYNC: __wasi_fdflags_t = 0x0008;
|
||||
pub(crate) const __WASI_FDFLAG_SYNC: __wasi_fdflags_t = 0x0010;
|
||||
|
||||
pub type __wasi_filedelta_t = i64;
|
||||
pub(crate) type __wasi_filedelta_t = i64;
|
||||
|
||||
pub type __wasi_filesize_t = u64;
|
||||
pub(crate) type __wasi_filesize_t = u64;
|
||||
|
||||
pub type __wasi_filetype_t = u8;
|
||||
pub const __WASI_FILETYPE_UNKNOWN: __wasi_filetype_t = 0;
|
||||
pub const __WASI_FILETYPE_BLOCK_DEVICE: __wasi_filetype_t = 1;
|
||||
pub const __WASI_FILETYPE_CHARACTER_DEVICE: __wasi_filetype_t = 2;
|
||||
pub const __WASI_FILETYPE_DIRECTORY: __wasi_filetype_t = 3;
|
||||
pub const __WASI_FILETYPE_REGULAR_FILE: __wasi_filetype_t = 4;
|
||||
pub const __WASI_FILETYPE_SOCKET_DGRAM: __wasi_filetype_t = 5;
|
||||
pub const __WASI_FILETYPE_SOCKET_STREAM: __wasi_filetype_t = 6;
|
||||
pub const __WASI_FILETYPE_SYMBOLIC_LINK: __wasi_filetype_t = 7;
|
||||
pub(crate) type __wasi_filetype_t = u8;
|
||||
pub(crate) const __WASI_FILETYPE_UNKNOWN: __wasi_filetype_t = 0;
|
||||
pub(crate) const __WASI_FILETYPE_BLOCK_DEVICE: __wasi_filetype_t = 1;
|
||||
pub(crate) const __WASI_FILETYPE_CHARACTER_DEVICE: __wasi_filetype_t = 2;
|
||||
pub(crate) const __WASI_FILETYPE_DIRECTORY: __wasi_filetype_t = 3;
|
||||
pub(crate) const __WASI_FILETYPE_REGULAR_FILE: __wasi_filetype_t = 4;
|
||||
pub(crate) const __WASI_FILETYPE_SOCKET_DGRAM: __wasi_filetype_t = 5;
|
||||
pub(crate) const __WASI_FILETYPE_SOCKET_STREAM: __wasi_filetype_t = 6;
|
||||
pub(crate) const __WASI_FILETYPE_SYMBOLIC_LINK: __wasi_filetype_t = 7;
|
||||
|
||||
pub type __wasi_fstflags_t = u16;
|
||||
pub const __WASI_FILESTAT_SET_ATIM: __wasi_fstflags_t = 0x0001;
|
||||
pub const __WASI_FILESTAT_SET_ATIM_NOW: __wasi_fstflags_t = 0x0002;
|
||||
pub const __WASI_FILESTAT_SET_MTIM: __wasi_fstflags_t = 0x0004;
|
||||
pub const __WASI_FILESTAT_SET_MTIM_NOW: __wasi_fstflags_t = 0x0008;
|
||||
pub(crate) type __wasi_fstflags_t = u16;
|
||||
pub(crate) const __WASI_FILESTAT_SET_ATIM: __wasi_fstflags_t = 0x0001;
|
||||
pub(crate) const __WASI_FILESTAT_SET_ATIM_NOW: __wasi_fstflags_t = 0x0002;
|
||||
pub(crate) const __WASI_FILESTAT_SET_MTIM: __wasi_fstflags_t = 0x0004;
|
||||
pub(crate) const __WASI_FILESTAT_SET_MTIM_NOW: __wasi_fstflags_t = 0x0008;
|
||||
|
||||
pub type __wasi_inode_t = u64;
|
||||
pub(crate) type __wasi_inode_t = u64;
|
||||
|
||||
pub type __wasi_linkcount_t = u32;
|
||||
pub(crate) type __wasi_linkcount_t = u32;
|
||||
|
||||
pub type __wasi_lookupflags_t = u32;
|
||||
pub const __WASI_LOOKUP_SYMLINK_FOLLOW: __wasi_lookupflags_t = 0x00000001;
|
||||
pub(crate) type __wasi_lookupflags_t = u32;
|
||||
pub(crate) const __WASI_LOOKUP_SYMLINK_FOLLOW: __wasi_lookupflags_t = 0x00000001;
|
||||
|
||||
pub type __wasi_oflags_t = u16;
|
||||
pub const __WASI_O_CREAT: __wasi_oflags_t = 0x0001;
|
||||
pub const __WASI_O_DIRECTORY: __wasi_oflags_t = 0x0002;
|
||||
pub const __WASI_O_EXCL: __wasi_oflags_t = 0x0004;
|
||||
pub const __WASI_O_TRUNC: __wasi_oflags_t = 0x0008;
|
||||
pub(crate) type __wasi_oflags_t = u16;
|
||||
pub(crate) const __WASI_O_CREAT: __wasi_oflags_t = 0x0001;
|
||||
pub(crate) const __WASI_O_DIRECTORY: __wasi_oflags_t = 0x0002;
|
||||
pub(crate) const __WASI_O_EXCL: __wasi_oflags_t = 0x0004;
|
||||
pub(crate) const __WASI_O_TRUNC: __wasi_oflags_t = 0x0008;
|
||||
|
||||
pub type __wasi_riflags_t = u16;
|
||||
pub const __WASI_SOCK_RECV_PEEK: __wasi_riflags_t = 0x0001;
|
||||
pub const __WASI_SOCK_RECV_WAITALL: __wasi_riflags_t = 0x0002;
|
||||
pub(crate) type __wasi_riflags_t = u16;
|
||||
pub(crate) const __WASI_SOCK_RECV_PEEK: __wasi_riflags_t = 0x0001;
|
||||
pub(crate) const __WASI_SOCK_RECV_WAITALL: __wasi_riflags_t = 0x0002;
|
||||
|
||||
pub type __wasi_rights_t = u64;
|
||||
pub const __WASI_RIGHT_FD_DATASYNC: __wasi_rights_t = 0x0000000000000001;
|
||||
pub const __WASI_RIGHT_FD_READ: __wasi_rights_t = 0x0000000000000002;
|
||||
pub const __WASI_RIGHT_FD_SEEK: __wasi_rights_t = 0x0000000000000004;
|
||||
pub const __WASI_RIGHT_FD_FDSTAT_SET_FLAGS: __wasi_rights_t = 0x0000000000000008;
|
||||
pub const __WASI_RIGHT_FD_SYNC: __wasi_rights_t = 0x0000000000000010;
|
||||
pub const __WASI_RIGHT_FD_TELL: __wasi_rights_t = 0x0000000000000020;
|
||||
pub const __WASI_RIGHT_FD_WRITE: __wasi_rights_t = 0x0000000000000040;
|
||||
pub const __WASI_RIGHT_FD_ADVISE: __wasi_rights_t = 0x0000000000000080;
|
||||
pub const __WASI_RIGHT_FD_ALLOCATE: __wasi_rights_t = 0x0000000000000100;
|
||||
pub const __WASI_RIGHT_PATH_CREATE_DIRECTORY: __wasi_rights_t = 0x0000000000000200;
|
||||
pub const __WASI_RIGHT_PATH_CREATE_FILE: __wasi_rights_t = 0x0000000000000400;
|
||||
pub const __WASI_RIGHT_PATH_LINK_SOURCE: __wasi_rights_t = 0x0000000000000800;
|
||||
pub const __WASI_RIGHT_PATH_LINK_TARGET: __wasi_rights_t = 0x0000000000001000;
|
||||
pub const __WASI_RIGHT_PATH_OPEN: __wasi_rights_t = 0x0000000000002000;
|
||||
pub const __WASI_RIGHT_FD_READDIR: __wasi_rights_t = 0x0000000000004000;
|
||||
pub const __WASI_RIGHT_PATH_READLINK: __wasi_rights_t = 0x0000000000008000;
|
||||
pub const __WASI_RIGHT_PATH_RENAME_SOURCE: __wasi_rights_t = 0x0000000000010000;
|
||||
pub const __WASI_RIGHT_PATH_RENAME_TARGET: __wasi_rights_t = 0x0000000000020000;
|
||||
pub const __WASI_RIGHT_PATH_FILESTAT_GET: __wasi_rights_t = 0x0000000000040000;
|
||||
pub const __WASI_RIGHT_PATH_FILESTAT_SET_SIZE: __wasi_rights_t = 0x0000000000080000;
|
||||
pub const __WASI_RIGHT_PATH_FILESTAT_SET_TIMES: __wasi_rights_t = 0x0000000000100000;
|
||||
pub const __WASI_RIGHT_FD_FILESTAT_GET: __wasi_rights_t = 0x0000000000200000;
|
||||
pub const __WASI_RIGHT_FD_FILESTAT_SET_SIZE: __wasi_rights_t = 0x0000000000400000;
|
||||
pub const __WASI_RIGHT_FD_FILESTAT_SET_TIMES: __wasi_rights_t = 0x0000000000800000;
|
||||
pub const __WASI_RIGHT_PATH_SYMLINK: __wasi_rights_t = 0x0000000001000000;
|
||||
pub const __WASI_RIGHT_PATH_REMOVE_DIRECTORY: __wasi_rights_t = 0x0000000002000000;
|
||||
pub const __WASI_RIGHT_PATH_UNLINK_FILE: __wasi_rights_t = 0x0000000004000000;
|
||||
pub const __WASI_RIGHT_POLL_FD_READWRITE: __wasi_rights_t = 0x0000000008000000;
|
||||
pub const __WASI_RIGHT_SOCK_SHUTDOWN: __wasi_rights_t = 0x0000000010000000;
|
||||
pub(crate) type __wasi_rights_t = u64;
|
||||
pub(crate) const __WASI_RIGHT_FD_DATASYNC: __wasi_rights_t = 0x0000000000000001;
|
||||
pub(crate) const __WASI_RIGHT_FD_READ: __wasi_rights_t = 0x0000000000000002;
|
||||
pub(crate) const __WASI_RIGHT_FD_SEEK: __wasi_rights_t = 0x0000000000000004;
|
||||
pub(crate) const __WASI_RIGHT_FD_FDSTAT_SET_FLAGS: __wasi_rights_t = 0x0000000000000008;
|
||||
pub(crate) const __WASI_RIGHT_FD_SYNC: __wasi_rights_t = 0x0000000000000010;
|
||||
pub(crate) const __WASI_RIGHT_FD_TELL: __wasi_rights_t = 0x0000000000000020;
|
||||
pub(crate) const __WASI_RIGHT_FD_WRITE: __wasi_rights_t = 0x0000000000000040;
|
||||
pub(crate) const __WASI_RIGHT_FD_ADVISE: __wasi_rights_t = 0x0000000000000080;
|
||||
pub(crate) const __WASI_RIGHT_FD_ALLOCATE: __wasi_rights_t = 0x0000000000000100;
|
||||
pub(crate) const __WASI_RIGHT_PATH_CREATE_DIRECTORY: __wasi_rights_t = 0x0000000000000200;
|
||||
pub(crate) const __WASI_RIGHT_PATH_CREATE_FILE: __wasi_rights_t = 0x0000000000000400;
|
||||
pub(crate) const __WASI_RIGHT_PATH_LINK_SOURCE: __wasi_rights_t = 0x0000000000000800;
|
||||
pub(crate) const __WASI_RIGHT_PATH_LINK_TARGET: __wasi_rights_t = 0x0000000000001000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_OPEN: __wasi_rights_t = 0x0000000000002000;
|
||||
pub(crate) const __WASI_RIGHT_FD_READDIR: __wasi_rights_t = 0x0000000000004000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_READLINK: __wasi_rights_t = 0x0000000000008000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_RENAME_SOURCE: __wasi_rights_t = 0x0000000000010000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_RENAME_TARGET: __wasi_rights_t = 0x0000000000020000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_FILESTAT_GET: __wasi_rights_t = 0x0000000000040000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_FILESTAT_SET_SIZE: __wasi_rights_t = 0x0000000000080000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_FILESTAT_SET_TIMES: __wasi_rights_t = 0x0000000000100000;
|
||||
pub(crate) const __WASI_RIGHT_FD_FILESTAT_GET: __wasi_rights_t = 0x0000000000200000;
|
||||
pub(crate) const __WASI_RIGHT_FD_FILESTAT_SET_SIZE: __wasi_rights_t = 0x0000000000400000;
|
||||
pub(crate) const __WASI_RIGHT_FD_FILESTAT_SET_TIMES: __wasi_rights_t = 0x0000000000800000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_SYMLINK: __wasi_rights_t = 0x0000000001000000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_REMOVE_DIRECTORY: __wasi_rights_t = 0x0000000002000000;
|
||||
pub(crate) const __WASI_RIGHT_PATH_UNLINK_FILE: __wasi_rights_t = 0x0000000004000000;
|
||||
pub(crate) const __WASI_RIGHT_POLL_FD_READWRITE: __wasi_rights_t = 0x0000000008000000;
|
||||
pub(crate) const __WASI_RIGHT_SOCK_SHUTDOWN: __wasi_rights_t = 0x0000000010000000;
|
||||
|
||||
pub const RIGHTS_ALL: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
pub(crate) const RIGHTS_ALL: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
| __WASI_RIGHT_FD_READ
|
||||
| __WASI_RIGHT_FD_SEEK
|
||||
| __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
@@ -226,14 +226,14 @@ pub const RIGHTS_ALL: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
|
||||
// Block and character device interaction is outside the scope of
|
||||
// WASI. Simply allow everything.
|
||||
pub const RIGHTS_BLOCK_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub const RIGHTS_BLOCK_DEVICE_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub const RIGHTS_CHARACTER_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub const RIGHTS_CHARACTER_DEVICE_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub(crate) const RIGHTS_BLOCK_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub(crate) const RIGHTS_BLOCK_DEVICE_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub(crate) const RIGHTS_CHARACTER_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub(crate) const RIGHTS_CHARACTER_DEVICE_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
|
||||
// Only allow directory operations on directories. Directories can only
|
||||
// yield file descriptors to other directories and files.
|
||||
pub const RIGHTS_DIRECTORY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
pub(crate) const RIGHTS_DIRECTORY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
| __WASI_RIGHT_FD_SYNC
|
||||
| __WASI_RIGHT_FD_ADVISE
|
||||
| __WASI_RIGHT_PATH_CREATE_DIRECTORY
|
||||
@@ -254,11 +254,11 @@ pub const RIGHTS_DIRECTORY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_FDSTAT_SET_FL
|
||||
| __WASI_RIGHT_PATH_UNLINK_FILE
|
||||
| __WASI_RIGHT_PATH_REMOVE_DIRECTORY
|
||||
| __WASI_RIGHT_POLL_FD_READWRITE;
|
||||
pub const RIGHTS_DIRECTORY_INHERITING: __wasi_rights_t =
|
||||
pub(crate) const RIGHTS_DIRECTORY_INHERITING: __wasi_rights_t =
|
||||
RIGHTS_DIRECTORY_BASE | RIGHTS_REGULAR_FILE_BASE;
|
||||
|
||||
// Operations that apply to regular files.
|
||||
pub const RIGHTS_REGULAR_FILE_BASE: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
pub(crate) const RIGHTS_REGULAR_FILE_BASE: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
| __WASI_RIGHT_FD_READ
|
||||
| __WASI_RIGHT_FD_SEEK
|
||||
| __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
@@ -271,226 +271,231 @@ pub const RIGHTS_REGULAR_FILE_BASE: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC
|
||||
| __WASI_RIGHT_FD_FILESTAT_SET_SIZE
|
||||
| __WASI_RIGHT_FD_FILESTAT_SET_TIMES
|
||||
| __WASI_RIGHT_POLL_FD_READWRITE;
|
||||
pub const RIGHTS_REGULAR_FILE_INHERITING: __wasi_rights_t = 0;
|
||||
pub(crate) const RIGHTS_REGULAR_FILE_INHERITING: __wasi_rights_t = 0;
|
||||
|
||||
// Operations that apply to shared memory objects.
|
||||
pub const RIGHTS_SHARED_MEMORY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
#[allow(unused)]
|
||||
pub(crate) const RIGHTS_SHARED_MEMORY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
| __WASI_RIGHT_FD_WRITE
|
||||
| __WASI_RIGHT_FD_FILESTAT_GET
|
||||
| __WASI_RIGHT_FD_FILESTAT_SET_SIZE;
|
||||
pub const RIGHTS_SHARED_MEMORY_INHERITING: __wasi_rights_t = 0;
|
||||
#[allow(unused)]
|
||||
pub(crate) const RIGHTS_SHARED_MEMORY_INHERITING: __wasi_rights_t = 0;
|
||||
|
||||
// Operations that apply to sockets and socket pairs.
|
||||
pub const RIGHTS_SOCKET_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
pub(crate) const RIGHTS_SOCKET_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
| __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
| __WASI_RIGHT_FD_WRITE
|
||||
| __WASI_RIGHT_FD_FILESTAT_GET
|
||||
| __WASI_RIGHT_POLL_FD_READWRITE
|
||||
| __WASI_RIGHT_SOCK_SHUTDOWN;
|
||||
pub const RIGHTS_SOCKET_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
pub(crate) const RIGHTS_SOCKET_INHERITING: __wasi_rights_t = RIGHTS_ALL;
|
||||
|
||||
// Operations that apply to TTYs.
|
||||
pub const RIGHTS_TTY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
pub(crate) const RIGHTS_TTY_BASE: __wasi_rights_t = __WASI_RIGHT_FD_READ
|
||||
| __WASI_RIGHT_FD_FDSTAT_SET_FLAGS
|
||||
| __WASI_RIGHT_FD_WRITE
|
||||
| __WASI_RIGHT_FD_FILESTAT_GET
|
||||
| __WASI_RIGHT_POLL_FD_READWRITE;
|
||||
pub const RIGHTS_TTY_INHERITING: __wasi_rights_t = 0;
|
||||
#[allow(unused)]
|
||||
pub(crate) const RIGHTS_TTY_INHERITING: __wasi_rights_t = 0;
|
||||
|
||||
pub type __wasi_roflags_t = u16;
|
||||
pub const __WASI_SOCK_RECV_DATA_TRUNCATED: __wasi_roflags_t = 0x0001;
|
||||
pub(crate) type __wasi_roflags_t = u16;
|
||||
pub(crate) const __WASI_SOCK_RECV_DATA_TRUNCATED: __wasi_roflags_t = 0x0001;
|
||||
|
||||
pub type __wasi_sdflags_t = u8;
|
||||
pub const __WASI_SHUT_RD: __wasi_sdflags_t = 0x01;
|
||||
pub const __WASI_SHUT_WR: __wasi_sdflags_t = 0x02;
|
||||
pub(crate) type __wasi_sdflags_t = u8;
|
||||
pub(crate) const __WASI_SHUT_RD: __wasi_sdflags_t = 0x01;
|
||||
pub(crate) const __WASI_SHUT_WR: __wasi_sdflags_t = 0x02;
|
||||
|
||||
pub type __wasi_siflags_t = u16;
|
||||
pub(crate) type __wasi_siflags_t = u16;
|
||||
|
||||
pub type __wasi_signal_t = u8;
|
||||
pub(crate) type __wasi_signal_t = u8;
|
||||
// 0 is reserved; POSIX has special semantics for kill(pid, 0).
|
||||
pub const __WASI_SIGHUP: __wasi_signal_t = 1;
|
||||
pub const __WASI_SIGINT: __wasi_signal_t = 2;
|
||||
pub const __WASI_SIGQUIT: __wasi_signal_t = 3;
|
||||
pub const __WASI_SIGILL: __wasi_signal_t = 4;
|
||||
pub const __WASI_SIGTRAP: __wasi_signal_t = 5;
|
||||
pub const __WASI_SIGABRT: __wasi_signal_t = 6;
|
||||
pub const __WASI_SIGBUS: __wasi_signal_t = 7;
|
||||
pub const __WASI_SIGFPE: __wasi_signal_t = 8;
|
||||
pub const __WASI_SIGKILL: __wasi_signal_t = 9;
|
||||
pub const __WASI_SIGUSR1: __wasi_signal_t = 10;
|
||||
pub const __WASI_SIGSEGV: __wasi_signal_t = 11;
|
||||
pub const __WASI_SIGUSR2: __wasi_signal_t = 12;
|
||||
pub const __WASI_SIGPIPE: __wasi_signal_t = 13;
|
||||
pub const __WASI_SIGALRM: __wasi_signal_t = 14;
|
||||
pub const __WASI_SIGTERM: __wasi_signal_t = 15;
|
||||
pub const __WASI_SIGCHLD: __wasi_signal_t = 16;
|
||||
pub const __WASI_SIGCONT: __wasi_signal_t = 17;
|
||||
pub const __WASI_SIGSTOP: __wasi_signal_t = 18;
|
||||
pub const __WASI_SIGTSTP: __wasi_signal_t = 19;
|
||||
pub const __WASI_SIGTTIN: __wasi_signal_t = 20;
|
||||
pub const __WASI_SIGTTOU: __wasi_signal_t = 21;
|
||||
pub const __WASI_SIGURG: __wasi_signal_t = 22;
|
||||
pub const __WASI_SIGXCPU: __wasi_signal_t = 23;
|
||||
pub const __WASI_SIGXFSZ: __wasi_signal_t = 24;
|
||||
pub const __WASI_SIGVTALRM: __wasi_signal_t = 25;
|
||||
pub const __WASI_SIGPROF: __wasi_signal_t = 26;
|
||||
pub const __WASI_SIGWINCH: __wasi_signal_t = 27;
|
||||
pub const __WASI_SIGPOLL: __wasi_signal_t = 28;
|
||||
pub const __WASI_SIGPWR: __wasi_signal_t = 29;
|
||||
pub const __WASI_SIGSYS: __wasi_signal_t = 30;
|
||||
pub(crate) const __WASI_SIGHUP: __wasi_signal_t = 1;
|
||||
pub(crate) const __WASI_SIGINT: __wasi_signal_t = 2;
|
||||
pub(crate) const __WASI_SIGQUIT: __wasi_signal_t = 3;
|
||||
pub(crate) const __WASI_SIGILL: __wasi_signal_t = 4;
|
||||
pub(crate) const __WASI_SIGTRAP: __wasi_signal_t = 5;
|
||||
pub(crate) const __WASI_SIGABRT: __wasi_signal_t = 6;
|
||||
pub(crate) const __WASI_SIGBUS: __wasi_signal_t = 7;
|
||||
pub(crate) const __WASI_SIGFPE: __wasi_signal_t = 8;
|
||||
pub(crate) const __WASI_SIGKILL: __wasi_signal_t = 9;
|
||||
pub(crate) const __WASI_SIGUSR1: __wasi_signal_t = 10;
|
||||
pub(crate) const __WASI_SIGSEGV: __wasi_signal_t = 11;
|
||||
pub(crate) const __WASI_SIGUSR2: __wasi_signal_t = 12;
|
||||
pub(crate) const __WASI_SIGPIPE: __wasi_signal_t = 13;
|
||||
pub(crate) const __WASI_SIGALRM: __wasi_signal_t = 14;
|
||||
pub(crate) const __WASI_SIGTERM: __wasi_signal_t = 15;
|
||||
pub(crate) const __WASI_SIGCHLD: __wasi_signal_t = 16;
|
||||
pub(crate) const __WASI_SIGCONT: __wasi_signal_t = 17;
|
||||
pub(crate) const __WASI_SIGSTOP: __wasi_signal_t = 18;
|
||||
pub(crate) const __WASI_SIGTSTP: __wasi_signal_t = 19;
|
||||
pub(crate) const __WASI_SIGTTIN: __wasi_signal_t = 20;
|
||||
pub(crate) const __WASI_SIGTTOU: __wasi_signal_t = 21;
|
||||
pub(crate) const __WASI_SIGURG: __wasi_signal_t = 22;
|
||||
pub(crate) const __WASI_SIGXCPU: __wasi_signal_t = 23;
|
||||
pub(crate) const __WASI_SIGXFSZ: __wasi_signal_t = 24;
|
||||
pub(crate) const __WASI_SIGVTALRM: __wasi_signal_t = 25;
|
||||
pub(crate) const __WASI_SIGPROF: __wasi_signal_t = 26;
|
||||
pub(crate) const __WASI_SIGWINCH: __wasi_signal_t = 27;
|
||||
pub(crate) const __WASI_SIGPOLL: __wasi_signal_t = 28;
|
||||
pub(crate) const __WASI_SIGPWR: __wasi_signal_t = 29;
|
||||
pub(crate) const __WASI_SIGSYS: __wasi_signal_t = 30;
|
||||
|
||||
pub type __wasi_subclockflags_t = u16;
|
||||
pub const __WASI_SUBSCRIPTION_CLOCK_ABSTIME: __wasi_subclockflags_t = 0x0001;
|
||||
pub(crate) type __wasi_subclockflags_t = u16;
|
||||
pub(crate) const __WASI_SUBSCRIPTION_CLOCK_ABSTIME: __wasi_subclockflags_t = 0x0001;
|
||||
|
||||
pub type __wasi_timestamp_t = u64;
|
||||
pub(crate) type __wasi_timestamp_t = u64;
|
||||
|
||||
pub type __wasi_userdata_t = u64;
|
||||
pub(crate) type __wasi_userdata_t = u64;
|
||||
|
||||
pub type __wasi_whence_t = u8;
|
||||
pub const __WASI_WHENCE_CUR: __wasi_whence_t = 0;
|
||||
pub const __WASI_WHENCE_END: __wasi_whence_t = 1;
|
||||
pub const __WASI_WHENCE_SET: __wasi_whence_t = 2;
|
||||
pub(crate) type __wasi_whence_t = u8;
|
||||
pub(crate) const __WASI_WHENCE_CUR: __wasi_whence_t = 0;
|
||||
pub(crate) const __WASI_WHENCE_END: __wasi_whence_t = 1;
|
||||
pub(crate) const __WASI_WHENCE_SET: __wasi_whence_t = 2;
|
||||
|
||||
pub type __wasi_preopentype_t = u8;
|
||||
pub const __WASI_PREOPENTYPE_DIR: __wasi_preopentype_t = 0;
|
||||
pub(crate) type __wasi_preopentype_t = u8;
|
||||
pub(crate) const __WASI_PREOPENTYPE_DIR: __wasi_preopentype_t = 0;
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_dirent_t {
|
||||
pub d_next: __wasi_dircookie_t,
|
||||
pub d_ino: __wasi_inode_t,
|
||||
pub d_namlen: u32,
|
||||
pub d_type: __wasi_filetype_t,
|
||||
pub(crate) struct __wasi_dirent_t {
|
||||
pub(crate) d_next: __wasi_dircookie_t,
|
||||
pub(crate) d_ino: __wasi_inode_t,
|
||||
pub(crate) d_namlen: u32,
|
||||
pub(crate) d_type: __wasi_filetype_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub struct __wasi_event_t {
|
||||
pub userdata: __wasi_userdata_t,
|
||||
pub error: __wasi_errno_t,
|
||||
pub type_: __wasi_eventtype_t,
|
||||
pub u: __wasi_event_t___wasi_event_u,
|
||||
pub(crate) struct __wasi_event_t {
|
||||
pub(crate) userdata: __wasi_userdata_t,
|
||||
pub(crate) error: __wasi_errno_t,
|
||||
pub(crate) type_: __wasi_eventtype_t,
|
||||
pub(crate) u: __wasi_event_t___wasi_event_u,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub union __wasi_event_t___wasi_event_u {
|
||||
pub fd_readwrite: __wasi_event_t___wasi_event_u___wasi_event_u_fd_readwrite_t,
|
||||
pub(crate) union __wasi_event_t___wasi_event_u {
|
||||
pub(crate) fd_readwrite: __wasi_event_t___wasi_event_u___wasi_event_u_fd_readwrite_t,
|
||||
_bindgen_union_align: [u64; 2usize],
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_event_t___wasi_event_u___wasi_event_u_fd_readwrite_t {
|
||||
pub nbytes: __wasi_filesize_t,
|
||||
pub flags: __wasi_eventrwflags_t,
|
||||
pub(crate) struct __wasi_event_t___wasi_event_u___wasi_event_u_fd_readwrite_t {
|
||||
pub(crate) nbytes: __wasi_filesize_t,
|
||||
pub(crate) flags: __wasi_eventrwflags_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub struct __wasi_prestat_t {
|
||||
pub pr_type: __wasi_preopentype_t,
|
||||
pub u: __wasi_prestat_t___wasi_prestat_u,
|
||||
pub(crate) struct __wasi_prestat_t {
|
||||
pub(crate) pr_type: __wasi_preopentype_t,
|
||||
pub(crate) u: __wasi_prestat_t___wasi_prestat_u,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub union __wasi_prestat_t___wasi_prestat_u {
|
||||
pub dir: __wasi_prestat_t___wasi_prestat_u___wasi_prestat_u_dir_t,
|
||||
pub(crate) union __wasi_prestat_t___wasi_prestat_u {
|
||||
pub(crate) dir: __wasi_prestat_t___wasi_prestat_u___wasi_prestat_u_dir_t,
|
||||
_bindgen_union_align: u64,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_prestat_t___wasi_prestat_u___wasi_prestat_u_dir_t {
|
||||
pub pr_name_len: usize,
|
||||
pub(crate) struct __wasi_prestat_t___wasi_prestat_u___wasi_prestat_u_dir_t {
|
||||
pub(crate) pr_name_len: usize,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_fdstat_t {
|
||||
pub fs_filetype: __wasi_filetype_t,
|
||||
pub fs_flags: __wasi_fdflags_t,
|
||||
pub fs_rights_base: __wasi_rights_t,
|
||||
pub fs_rights_inheriting: __wasi_rights_t,
|
||||
pub(crate) struct __wasi_fdstat_t {
|
||||
pub(crate) fs_filetype: __wasi_filetype_t,
|
||||
pub(crate) fs_flags: __wasi_fdflags_t,
|
||||
pub(crate) fs_rights_base: __wasi_rights_t,
|
||||
pub(crate) fs_rights_inheriting: __wasi_rights_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_filestat_t {
|
||||
pub st_dev: __wasi_device_t,
|
||||
pub st_ino: __wasi_inode_t,
|
||||
pub st_filetype: __wasi_filetype_t,
|
||||
pub st_nlink: __wasi_linkcount_t,
|
||||
pub st_size: __wasi_filesize_t,
|
||||
pub st_atim: __wasi_timestamp_t,
|
||||
pub st_mtim: __wasi_timestamp_t,
|
||||
pub st_ctim: __wasi_timestamp_t,
|
||||
pub(crate) struct __wasi_filestat_t {
|
||||
pub(crate) st_dev: __wasi_device_t,
|
||||
pub(crate) st_ino: __wasi_inode_t,
|
||||
pub(crate) st_filetype: __wasi_filetype_t,
|
||||
pub(crate) st_nlink: __wasi_linkcount_t,
|
||||
pub(crate) st_size: __wasi_filesize_t,
|
||||
pub(crate) st_atim: __wasi_timestamp_t,
|
||||
pub(crate) st_mtim: __wasi_timestamp_t,
|
||||
pub(crate) st_ctim: __wasi_timestamp_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_ciovec_t {
|
||||
pub buf: *const void,
|
||||
pub buf_len: usize,
|
||||
pub(crate) struct __wasi_ciovec_t {
|
||||
pub(crate) buf: *const void,
|
||||
pub(crate) buf_len: usize,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_iovec_t {
|
||||
pub buf: *mut void,
|
||||
pub buf_len: usize,
|
||||
pub(crate) struct __wasi_iovec_t {
|
||||
pub(crate) buf: *mut void,
|
||||
pub(crate) buf_len: usize,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub struct __wasi_subscription_t {
|
||||
pub userdata: __wasi_userdata_t,
|
||||
pub type_: __wasi_eventtype_t,
|
||||
pub u: __wasi_subscription_t___wasi_subscription_u,
|
||||
pub(crate) struct __wasi_subscription_t {
|
||||
pub(crate) userdata: __wasi_userdata_t,
|
||||
pub(crate) type_: __wasi_eventtype_t,
|
||||
pub(crate) u: __wasi_subscription_t___wasi_subscription_u,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Copy, Clone)]
|
||||
pub union __wasi_subscription_t___wasi_subscription_u {
|
||||
pub clock: __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_clock_t,
|
||||
pub fd_readwrite:
|
||||
pub(crate) union __wasi_subscription_t___wasi_subscription_u {
|
||||
pub(crate) clock: __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_clock_t,
|
||||
pub(crate) fd_readwrite:
|
||||
__wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_fd_readwrite_t,
|
||||
_bindgen_union_align: [u64; 5usize],
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_clock_t {
|
||||
pub identifier: __wasi_userdata_t,
|
||||
pub clock_id: __wasi_clockid_t,
|
||||
pub timeout: __wasi_timestamp_t,
|
||||
pub precision: __wasi_timestamp_t,
|
||||
pub flags: __wasi_subclockflags_t,
|
||||
pub(crate) struct __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_clock_t {
|
||||
pub(crate) identifier: __wasi_userdata_t,
|
||||
pub(crate) clock_id: __wasi_clockid_t,
|
||||
pub(crate) timeout: __wasi_timestamp_t,
|
||||
pub(crate) precision: __wasi_timestamp_t,
|
||||
pub(crate) flags: __wasi_subclockflags_t,
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_fd_readwrite_t {
|
||||
pub fd: __wasi_fd_t,
|
||||
pub(crate) struct __wasi_subscription_t___wasi_subscription_u___wasi_subscription_u_fd_readwrite_t {
|
||||
pub(crate) fd: __wasi_fd_t,
|
||||
}
|
||||
|
||||
pub unsafe fn ciovec_to_host<'a>(ciovec: &'a __wasi_ciovec_t) -> io::IoSlice<'a> {
|
||||
#[allow(unused)]
|
||||
pub(crate) unsafe fn ciovec_to_host<'a>(ciovec: &'a __wasi_ciovec_t) -> io::IoSlice<'a> {
|
||||
let slice = slice::from_raw_parts(ciovec.buf as *const u8, ciovec.buf_len);
|
||||
io::IoSlice::new(slice)
|
||||
}
|
||||
|
||||
pub unsafe fn ciovec_to_host_mut<'a>(ciovec: &'a mut __wasi_ciovec_t) -> io::IoSliceMut<'a> {
|
||||
#[allow(unused)]
|
||||
pub(crate) unsafe fn ciovec_to_host_mut<'a>(ciovec: &'a mut __wasi_ciovec_t) -> io::IoSliceMut<'a> {
|
||||
let slice = slice::from_raw_parts_mut(ciovec.buf as *mut u8, ciovec.buf_len);
|
||||
io::IoSliceMut::new(slice)
|
||||
}
|
||||
|
||||
pub unsafe fn iovec_to_host<'a>(iovec: &'a __wasi_iovec_t) -> io::IoSlice<'a> {
|
||||
pub(crate) unsafe fn iovec_to_host<'a>(iovec: &'a __wasi_iovec_t) -> io::IoSlice<'a> {
|
||||
let slice = slice::from_raw_parts(iovec.buf as *const u8, iovec.buf_len);
|
||||
io::IoSlice::new(slice)
|
||||
}
|
||||
|
||||
pub unsafe fn iovec_to_host_mut<'a>(iovec: &'a mut __wasi_iovec_t) -> io::IoSliceMut<'a> {
|
||||
pub(crate) unsafe fn iovec_to_host_mut<'a>(iovec: &'a mut __wasi_iovec_t) -> io::IoSliceMut<'a> {
|
||||
let slice = slice::from_raw_parts_mut(iovec.buf as *mut u8, iovec.buf_len);
|
||||
io::IoSliceMut::new(slice)
|
||||
}
|
||||
@@ -499,7 +504,7 @@ pub unsafe fn iovec_to_host_mut<'a>(iovec: &'a mut __wasi_iovec_t) -> io::IoSlic
|
||||
///
|
||||
/// NB WASI spec requires bytes to be valid UTF-8. Otherwise,
|
||||
/// `__WASI_EILSEQ` error is returned.
|
||||
pub fn path_from_slice<'a>(s: &'a [u8]) -> Result<&'a str> {
|
||||
pub(crate) fn path_from_slice<'a>(s: &'a [u8]) -> Result<&'a str> {
|
||||
str::from_utf8(s).map_err(|_| Error::EILSEQ)
|
||||
}
|
||||
|
||||
@@ -507,7 +512,7 @@ pub fn path_from_slice<'a>(s: &'a [u8]) -> Result<&'a str> {
|
||||
///
|
||||
/// NB WASI spec requires bytes to be valid UTF-8. Otherwise,
|
||||
/// `__WASI_EILSEQ` error is returned.
|
||||
pub fn path_from_vec<S: Into<Vec<u8>>>(s: S) -> Result<String> {
|
||||
pub(crate) fn path_from_vec<S: Into<Vec<u8>>>(s: S) -> Result<String> {
|
||||
String::from_utf8(s.into()).map_err(|_| Error::EILSEQ)
|
||||
}
|
||||
|
||||
|
||||
@@ -28,10 +28,9 @@ mod hostcalls_impl;
|
||||
mod sys;
|
||||
#[macro_use]
|
||||
mod macros;
|
||||
|
||||
pub mod host;
|
||||
mod host;
|
||||
pub mod hostcalls;
|
||||
pub mod memory;
|
||||
mod memory;
|
||||
pub mod wasm32;
|
||||
|
||||
pub use ctx::{WasiCtx, WasiCtxBuilder};
|
||||
|
||||
@@ -48,11 +48,11 @@ fn dec_ptr_to_mut<'memory, T>(
|
||||
dec_ptr_mut(memory, ptr, size_of::<T>()).map(|p| unsafe { &mut *(p as *mut T) })
|
||||
}
|
||||
|
||||
pub fn dec_pointee<T>(memory: &[u8], ptr: wasm32::uintptr_t) -> Result<T> {
|
||||
pub(crate) fn dec_pointee<T>(memory: &[u8], ptr: wasm32::uintptr_t) -> Result<T> {
|
||||
dec_ptr_to::<T>(memory, ptr).map(|p| unsafe { ptr::read(p) })
|
||||
}
|
||||
|
||||
pub fn enc_pointee<T>(memory: &mut [u8], ptr: wasm32::uintptr_t, t: T) -> Result<()> {
|
||||
pub(crate) fn enc_pointee<T>(memory: &mut [u8], ptr: wasm32::uintptr_t, t: T) -> Result<()> {
|
||||
dec_ptr_to_mut::<T>(memory, ptr).map(|p| unsafe { ptr::write(p, t) })
|
||||
}
|
||||
|
||||
@@ -71,7 +71,7 @@ fn check_slice_of<T>(ptr: wasm32::uintptr_t, len: wasm32::size_t) -> Result<(usi
|
||||
Ok((len, len_bytes))
|
||||
}
|
||||
|
||||
pub fn dec_slice_of<'memory, T>(
|
||||
pub(crate) fn dec_slice_of<'memory, T>(
|
||||
memory: &'memory [u8],
|
||||
ptr: wasm32::uintptr_t,
|
||||
len: wasm32::size_t,
|
||||
@@ -81,7 +81,7 @@ pub fn dec_slice_of<'memory, T>(
|
||||
Ok(unsafe { slice::from_raw_parts(ptr, len) })
|
||||
}
|
||||
|
||||
pub fn dec_slice_of_mut<'memory, T>(
|
||||
pub(crate) fn dec_slice_of_mut<'memory, T>(
|
||||
memory: &'memory mut [u8],
|
||||
ptr: wasm32::uintptr_t,
|
||||
len: wasm32::size_t,
|
||||
@@ -91,7 +91,11 @@ pub fn dec_slice_of_mut<'memory, T>(
|
||||
Ok(unsafe { slice::from_raw_parts_mut(ptr, len) })
|
||||
}
|
||||
|
||||
pub fn enc_slice_of<T>(memory: &mut [u8], slice: &[T], ptr: wasm32::uintptr_t) -> Result<()> {
|
||||
pub(crate) fn enc_slice_of<T>(
|
||||
memory: &mut [u8],
|
||||
slice: &[T],
|
||||
ptr: wasm32::uintptr_t,
|
||||
) -> Result<()> {
|
||||
// check alignment
|
||||
if ptr as usize % align_of::<T>() != 0 {
|
||||
return Err(Error::EINVAL);
|
||||
@@ -114,25 +118,29 @@ pub fn enc_slice_of<T>(memory: &mut [u8], slice: &[T], ptr: wasm32::uintptr_t) -
|
||||
|
||||
macro_rules! dec_enc_scalar {
|
||||
( $ty:ident, $dec:ident, $dec_byref:ident, $enc:ident, $enc_byref:ident) => {
|
||||
pub fn $dec(x: wasm32::$ty) -> host::$ty {
|
||||
pub(crate) fn $dec(x: wasm32::$ty) -> host::$ty {
|
||||
host::$ty::from_le(x)
|
||||
}
|
||||
|
||||
pub fn $dec_byref(memory: &mut [u8], ptr: wasm32::uintptr_t) -> Result<host::$ty> {
|
||||
pub(crate) fn $dec_byref(memory: &mut [u8], ptr: wasm32::uintptr_t) -> Result<host::$ty> {
|
||||
dec_pointee::<wasm32::$ty>(memory, ptr).map($dec)
|
||||
}
|
||||
|
||||
pub fn $enc(x: host::$ty) -> wasm32::$ty {
|
||||
pub(crate) fn $enc(x: host::$ty) -> wasm32::$ty {
|
||||
x.to_le()
|
||||
}
|
||||
|
||||
pub fn $enc_byref(memory: &mut [u8], ptr: wasm32::uintptr_t, x: host::$ty) -> Result<()> {
|
||||
pub(crate) fn $enc_byref(
|
||||
memory: &mut [u8],
|
||||
ptr: wasm32::uintptr_t,
|
||||
x: host::$ty,
|
||||
) -> Result<()> {
|
||||
enc_pointee::<wasm32::$ty>(memory, ptr, $enc(x))
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
pub fn dec_ciovec(
|
||||
pub(crate) fn dec_ciovec(
|
||||
memory: &[u8],
|
||||
ciovec: &wasm32::__wasi_ciovec_t,
|
||||
) -> Result<host::__wasi_ciovec_t> {
|
||||
@@ -143,7 +151,7 @@ pub fn dec_ciovec(
|
||||
})
|
||||
}
|
||||
|
||||
pub fn dec_ciovec_slice(
|
||||
pub(crate) fn dec_ciovec_slice(
|
||||
memory: &[u8],
|
||||
ptr: wasm32::uintptr_t,
|
||||
len: wasm32::size_t,
|
||||
@@ -152,7 +160,10 @@ pub fn dec_ciovec_slice(
|
||||
slice.iter().map(|iov| dec_ciovec(memory, iov)).collect()
|
||||
}
|
||||
|
||||
pub fn dec_iovec(memory: &[u8], iovec: &wasm32::__wasi_iovec_t) -> Result<host::__wasi_iovec_t> {
|
||||
pub(crate) fn dec_iovec(
|
||||
memory: &[u8],
|
||||
iovec: &wasm32::__wasi_iovec_t,
|
||||
) -> Result<host::__wasi_iovec_t> {
|
||||
let len = dec_usize(iovec.buf_len);
|
||||
Ok(host::__wasi_iovec_t {
|
||||
buf: dec_ptr(memory, iovec.buf, len)? as *mut host::void,
|
||||
@@ -160,7 +171,7 @@ pub fn dec_iovec(memory: &[u8], iovec: &wasm32::__wasi_iovec_t) -> Result<host::
|
||||
})
|
||||
}
|
||||
|
||||
pub fn dec_iovec_slice(
|
||||
pub(crate) fn dec_iovec_slice(
|
||||
memory: &[u8],
|
||||
ptr: wasm32::uintptr_t,
|
||||
len: wasm32::size_t,
|
||||
@@ -227,7 +238,7 @@ dec_enc_scalar!(
|
||||
enc_linkcount_byref
|
||||
);
|
||||
|
||||
pub fn dec_filestat(filestat: wasm32::__wasi_filestat_t) -> host::__wasi_filestat_t {
|
||||
pub(crate) fn dec_filestat(filestat: wasm32::__wasi_filestat_t) -> host::__wasi_filestat_t {
|
||||
host::__wasi_filestat_t {
|
||||
st_dev: dec_device(filestat.st_dev),
|
||||
st_ino: dec_inode(filestat.st_ino),
|
||||
@@ -240,14 +251,14 @@ pub fn dec_filestat(filestat: wasm32::__wasi_filestat_t) -> host::__wasi_filesta
|
||||
}
|
||||
}
|
||||
|
||||
pub fn dec_filestat_byref(
|
||||
pub(crate) fn dec_filestat_byref(
|
||||
memory: &mut [u8],
|
||||
filestat_ptr: wasm32::uintptr_t,
|
||||
) -> Result<host::__wasi_filestat_t> {
|
||||
dec_pointee::<wasm32::__wasi_filestat_t>(memory, filestat_ptr).map(dec_filestat)
|
||||
}
|
||||
|
||||
pub fn enc_filestat(filestat: host::__wasi_filestat_t) -> wasm32::__wasi_filestat_t {
|
||||
pub(crate) fn enc_filestat(filestat: host::__wasi_filestat_t) -> wasm32::__wasi_filestat_t {
|
||||
wasm32::__wasi_filestat_t {
|
||||
st_dev: enc_device(filestat.st_dev),
|
||||
st_ino: enc_inode(filestat.st_ino),
|
||||
@@ -260,7 +271,7 @@ pub fn enc_filestat(filestat: host::__wasi_filestat_t) -> wasm32::__wasi_filesta
|
||||
}
|
||||
}
|
||||
|
||||
pub fn enc_filestat_byref(
|
||||
pub(crate) fn enc_filestat_byref(
|
||||
memory: &mut [u8],
|
||||
filestat_ptr: wasm32::uintptr_t,
|
||||
host_filestat: host::__wasi_filestat_t,
|
||||
@@ -269,7 +280,7 @@ pub fn enc_filestat_byref(
|
||||
enc_pointee::<wasm32::__wasi_filestat_t>(memory, filestat_ptr, filestat)
|
||||
}
|
||||
|
||||
pub fn dec_fdstat(fdstat: wasm32::__wasi_fdstat_t) -> host::__wasi_fdstat_t {
|
||||
pub(crate) fn dec_fdstat(fdstat: wasm32::__wasi_fdstat_t) -> host::__wasi_fdstat_t {
|
||||
host::__wasi_fdstat_t {
|
||||
fs_filetype: dec_filetype(fdstat.fs_filetype),
|
||||
fs_flags: dec_fdflags(fdstat.fs_flags),
|
||||
@@ -278,14 +289,14 @@ pub fn dec_fdstat(fdstat: wasm32::__wasi_fdstat_t) -> host::__wasi_fdstat_t {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn dec_fdstat_byref(
|
||||
pub(crate) fn dec_fdstat_byref(
|
||||
memory: &mut [u8],
|
||||
fdstat_ptr: wasm32::uintptr_t,
|
||||
) -> Result<host::__wasi_fdstat_t> {
|
||||
dec_pointee::<wasm32::__wasi_fdstat_t>(memory, fdstat_ptr).map(dec_fdstat)
|
||||
}
|
||||
|
||||
pub fn enc_fdstat(fdstat: host::__wasi_fdstat_t) -> wasm32::__wasi_fdstat_t {
|
||||
pub(crate) fn enc_fdstat(fdstat: host::__wasi_fdstat_t) -> wasm32::__wasi_fdstat_t {
|
||||
wasm32::__wasi_fdstat_t {
|
||||
fs_filetype: enc_filetype(fdstat.fs_filetype),
|
||||
fs_flags: enc_fdflags(fdstat.fs_flags),
|
||||
@@ -295,7 +306,7 @@ pub fn enc_fdstat(fdstat: host::__wasi_fdstat_t) -> wasm32::__wasi_fdstat_t {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn enc_fdstat_byref(
|
||||
pub(crate) fn enc_fdstat_byref(
|
||||
memory: &mut [u8],
|
||||
fdstat_ptr: wasm32::uintptr_t,
|
||||
host_fdstat: host::__wasi_fdstat_t,
|
||||
@@ -344,7 +355,7 @@ dec_enc_scalar!(
|
||||
enc_oflags_byref
|
||||
);
|
||||
|
||||
pub fn dec_prestat(prestat: wasm32::__wasi_prestat_t) -> Result<host::__wasi_prestat_t> {
|
||||
pub(crate) fn dec_prestat(prestat: wasm32::__wasi_prestat_t) -> Result<host::__wasi_prestat_t> {
|
||||
match prestat.pr_type {
|
||||
wasm32::__WASI_PREOPENTYPE_DIR => {
|
||||
let u = host::__wasi_prestat_t___wasi_prestat_u {
|
||||
@@ -361,14 +372,14 @@ pub fn dec_prestat(prestat: wasm32::__wasi_prestat_t) -> Result<host::__wasi_pre
|
||||
}
|
||||
}
|
||||
|
||||
pub fn dec_prestat_byref(
|
||||
pub(crate) fn dec_prestat_byref(
|
||||
memory: &mut [u8],
|
||||
prestat_ptr: wasm32::uintptr_t,
|
||||
) -> Result<host::__wasi_prestat_t> {
|
||||
dec_pointee::<wasm32::__wasi_prestat_t>(memory, prestat_ptr).and_then(dec_prestat)
|
||||
}
|
||||
|
||||
pub fn enc_prestat(prestat: host::__wasi_prestat_t) -> Result<wasm32::__wasi_prestat_t> {
|
||||
pub(crate) fn enc_prestat(prestat: host::__wasi_prestat_t) -> Result<wasm32::__wasi_prestat_t> {
|
||||
match prestat.pr_type {
|
||||
host::__WASI_PREOPENTYPE_DIR => {
|
||||
let u = wasm32::__wasi_prestat_t___wasi_prestat_u {
|
||||
@@ -385,7 +396,7 @@ pub fn enc_prestat(prestat: host::__wasi_prestat_t) -> Result<wasm32::__wasi_pre
|
||||
}
|
||||
}
|
||||
|
||||
pub fn enc_prestat_byref(
|
||||
pub(crate) fn enc_prestat_byref(
|
||||
memory: &mut [u8],
|
||||
prestat_ptr: wasm32::uintptr_t,
|
||||
host_prestat: host::__wasi_prestat_t,
|
||||
@@ -410,23 +421,23 @@ dec_enc_scalar!(
|
||||
enc_timestamp_byref
|
||||
);
|
||||
|
||||
pub fn dec_u32(x: u32) -> u32 {
|
||||
pub(crate) fn dec_u32(x: u32) -> u32 {
|
||||
u32::from_le(x)
|
||||
}
|
||||
|
||||
pub fn enc_u32(x: u32) -> u32 {
|
||||
pub(crate) fn enc_u32(x: u32) -> u32 {
|
||||
x.to_le()
|
||||
}
|
||||
|
||||
pub fn dec_usize(size: wasm32::size_t) -> usize {
|
||||
pub(crate) fn dec_usize(size: wasm32::size_t) -> usize {
|
||||
usize::try_from(u32::from_le(size)).unwrap()
|
||||
}
|
||||
|
||||
pub fn enc_usize(size: usize) -> wasm32::size_t {
|
||||
pub(crate) fn enc_usize(size: usize) -> wasm32::size_t {
|
||||
wasm32::size_t::try_from(size).unwrap()
|
||||
}
|
||||
|
||||
pub fn enc_usize_byref(
|
||||
pub(crate) fn enc_usize_byref(
|
||||
memory: &mut [u8],
|
||||
usize_ptr: wasm32::uintptr_t,
|
||||
host_usize: usize,
|
||||
@@ -474,7 +485,7 @@ dec_enc_scalar!(
|
||||
enc_userdata_byref
|
||||
);
|
||||
|
||||
pub fn dec_subscription(
|
||||
pub(crate) fn dec_subscription(
|
||||
subscription: &wasm32::__wasi_subscription_t,
|
||||
) -> Result<host::__wasi_subscription_t> {
|
||||
let userdata = dec_userdata(subscription.userdata);
|
||||
@@ -502,7 +513,7 @@ pub fn dec_subscription(
|
||||
Ok(host::__wasi_subscription_t { userdata, type_, u })
|
||||
}
|
||||
|
||||
pub fn enc_event(event: host::__wasi_event_t) -> wasm32::__wasi_event_t {
|
||||
pub(crate) fn enc_event(event: host::__wasi_event_t) -> wasm32::__wasi_event_t {
|
||||
let fd_readwrite = unsafe { event.u.fd_readwrite };
|
||||
wasm32::__wasi_event_t {
|
||||
userdata: enc_userdata(event.userdata),
|
||||
|
||||
Reference in New Issue
Block a user