2019-03-28 17:00:10 -07:00
|
|
|
#![allow(unused)]
|
2019-03-28 17:09:39 -07:00
|
|
|
pub mod types;
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "macos"))]
|
|
|
|
pub mod unix;
|
|
|
|
#[cfg(any(target_os = "windows"))]
|
|
|
|
pub mod windows;
|
2019-03-28 17:00:10 -07:00
|
|
|
|
|
|
|
use self::types::*;
|
|
|
|
use crate::{
|
|
|
|
ptr::{Array, WasmPtr},
|
2019-04-10 18:23:25 -07:00
|
|
|
state::{Fd, InodeVal, Kind, WasiFile, WasiState, MAX_SYMLINKS},
|
2019-04-22 11:42:52 -07:00
|
|
|
ExitCode,
|
2019-03-28 17:00:10 -07:00
|
|
|
};
|
2019-03-29 13:06:06 -07:00
|
|
|
use rand::{thread_rng, Rng};
|
2019-04-02 12:06:35 -07:00
|
|
|
use std::cell::Cell;
|
2019-04-22 15:06:40 -07:00
|
|
|
use std::convert::Infallible;
|
2019-04-10 18:23:25 -07:00
|
|
|
use std::io::{self, Read, Seek, Write};
|
2019-04-02 10:22:45 -07:00
|
|
|
use wasmer_runtime_core::{debug, memory::Memory, vm::Ctx};
|
2019-03-28 11:54:22 -07:00
|
|
|
|
2019-03-28 17:09:39 -07:00
|
|
|
#[cfg(any(target_os = "linux", target_os = "macos"))]
|
|
|
|
pub use unix::*;
|
|
|
|
|
|
|
|
#[cfg(any(target_os = "windows"))]
|
|
|
|
pub use windows::*;
|
|
|
|
|
2019-03-28 13:10:22 -07:00
|
|
|
#[allow(clippy::mut_from_ref)]
|
2019-03-28 12:56:11 -07:00
|
|
|
fn get_wasi_state(ctx: &Ctx) -> &mut WasiState {
|
2019-03-28 12:18:05 -07:00
|
|
|
unsafe { &mut *(ctx.data as *mut WasiState) }
|
|
|
|
}
|
|
|
|
|
2019-04-02 16:35:05 -07:00
|
|
|
fn write_bytes<T: Write>(
|
|
|
|
mut write_loc: T,
|
|
|
|
memory: &Memory,
|
|
|
|
iovs_arr_cell: &[Cell<__wasi_ciovec_t>],
|
|
|
|
) -> Result<u32, __wasi_errno_t> {
|
|
|
|
let mut bytes_written = 0;
|
|
|
|
for iov in iovs_arr_cell {
|
|
|
|
let iov_inner = iov.get();
|
|
|
|
let bytes = iov_inner.buf.deref(memory, 0, iov_inner.buf_len)?;
|
|
|
|
write_loc
|
|
|
|
.write(&bytes.iter().map(|b_cell| b_cell.get()).collect::<Vec<u8>>())
|
2019-04-19 15:57:51 -07:00
|
|
|
.map_err(|_| {
|
|
|
|
write_loc.flush();
|
|
|
|
__WASI_EIO
|
|
|
|
})?;
|
2019-04-02 16:35:05 -07:00
|
|
|
|
|
|
|
// TODO: handle failure more accurately
|
|
|
|
bytes_written += iov_inner.buf_len;
|
|
|
|
}
|
2019-04-19 15:57:51 -07:00
|
|
|
write_loc.flush();
|
2019-04-02 16:35:05 -07:00
|
|
|
Ok(bytes_written)
|
|
|
|
}
|
|
|
|
|
2019-04-02 15:51:49 -07:00
|
|
|
/// checks that `rights_check_set` is a subset of `rights_set`
|
|
|
|
fn has_rights(rights_set: __wasi_rights_t, rights_check_set: __wasi_rights_t) -> bool {
|
|
|
|
rights_set | rights_check_set == rights_set
|
|
|
|
}
|
|
|
|
|
2019-03-28 22:10:11 -07:00
|
|
|
#[must_use]
|
2019-03-28 12:56:11 -07:00
|
|
|
fn write_buffer_array(
|
|
|
|
memory: &Memory,
|
|
|
|
from: &[Vec<u8>],
|
2019-03-28 22:10:11 -07:00
|
|
|
ptr_buffer: WasmPtr<WasmPtr<u8, Array>, Array>,
|
|
|
|
buffer: WasmPtr<u8, Array>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-01 16:34:18 -07:00
|
|
|
let ptrs = wasi_try!(ptr_buffer.deref(memory, 0, from.len() as u32));
|
2019-03-28 22:10:11 -07:00
|
|
|
|
|
|
|
let mut current_buffer_offset = 0;
|
|
|
|
for ((i, sub_buffer), ptr) in from.iter().enumerate().zip(ptrs.iter()) {
|
|
|
|
ptr.set(WasmPtr::new(buffer.offset() + current_buffer_offset));
|
|
|
|
|
2019-04-02 14:13:03 -07:00
|
|
|
let cells =
|
|
|
|
wasi_try!(buffer.deref(memory, current_buffer_offset, sub_buffer.len() as u32 + 1));
|
2019-03-28 22:10:11 -07:00
|
|
|
|
2019-04-02 14:13:03 -07:00
|
|
|
for (cell, &byte) in cells.iter().zip(sub_buffer.iter().chain([0].iter())) {
|
2019-03-28 12:56:11 -07:00
|
|
|
cell.set(byte);
|
|
|
|
}
|
2019-04-02 14:13:03 -07:00
|
|
|
current_buffer_offset += sub_buffer.len() as u32 + 1;
|
2019-03-28 12:56:11 -07:00
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-03-28 15:17:52 -07:00
|
|
|
/// ### `args_get()`
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Read command-line argument data.
|
2019-03-28 15:17:52 -07:00
|
|
|
/// The sizes of the buffers should match that returned by [`args_sizes_get()`](#args_sizes_get).
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Inputs:
|
|
|
|
/// - `char **argv`
|
|
|
|
/// A pointer to a buffer to write the argument pointers.
|
|
|
|
/// - `char *argv_buf`
|
|
|
|
/// A pointer to a buffer to write the argument string data.
|
|
|
|
///
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn args_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
argv: WasmPtr<WasmPtr<u8, Array>, Array>,
|
|
|
|
argv_buf: WasmPtr<u8, Array>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::args_get");
|
2019-03-28 12:56:11 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-03 14:59:24 -07:00
|
|
|
let result = write_buffer_array(memory, &*state.args, argv, argv_buf);
|
|
|
|
|
|
|
|
debug!(
|
|
|
|
"=> args:\n{}",
|
|
|
|
state
|
|
|
|
.args
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(i, v)| format!(
|
|
|
|
"{:>20}: {}",
|
|
|
|
i,
|
|
|
|
::std::str::from_utf8(v).unwrap().to_string()
|
|
|
|
))
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.join("\n")
|
|
|
|
);
|
|
|
|
|
|
|
|
result
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-03-28 15:17:52 -07:00
|
|
|
/// ### `args_sizes_get()`
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Return command-line argument data sizes.
|
|
|
|
/// Outputs:
|
|
|
|
/// - `size_t *argc`
|
|
|
|
/// The number of arguments.
|
|
|
|
/// - `size_t *argv_buf_size`
|
|
|
|
/// The size of the argument string data.
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn args_sizes_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
argc: WasmPtr<u32>,
|
|
|
|
argv_buf_size: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::args_sizes_get");
|
2019-03-28 12:56:11 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let argc = wasi_try!(argc.deref(memory));
|
|
|
|
let argv_buf_size = wasi_try!(argv_buf_size.deref(memory));
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
2019-03-28 17:00:10 -07:00
|
|
|
|
2019-04-03 14:59:24 -07:00
|
|
|
let argc_val = state.args.len() as u32;
|
|
|
|
let argv_buf_size_val = state.args.iter().map(|v| v.len() as u32 + 1).sum();
|
|
|
|
argc.set(argc_val);
|
|
|
|
argv_buf_size.set(argv_buf_size_val);
|
|
|
|
|
|
|
|
debug!("=> argc={}, argv_buf_size={}", argc_val, argv_buf_size_val);
|
2019-04-01 16:34:18 -07:00
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 12:56:11 -07:00
|
|
|
}
|
|
|
|
|
2019-04-01 15:22:30 -07:00
|
|
|
/// ### `clock_res_get()`
|
|
|
|
/// Get the resolution of the specified clock
|
|
|
|
/// Input:
|
|
|
|
/// - `__wasi_clockid_t clock_id`
|
|
|
|
/// The ID of the clock to get the resolution of
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_timestamp_t *resolution`
|
|
|
|
/// The resolution of the clock in nanoseconds
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn clock_res_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
clock_id: __wasi_clockid_t,
|
|
|
|
resolution: WasmPtr<__wasi_timestamp_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::clock_res_get");
|
2019-03-29 11:38:48 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let out_addr = wasi_try!(resolution.deref(memory));
|
|
|
|
platform_clock_res_get(clock_id, out_addr)
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 10:20:08 -07:00
|
|
|
|
2019-04-01 15:22:30 -07:00
|
|
|
/// ### `clock_time_get()`
|
|
|
|
/// Get the time of the specified clock
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_clockid_t clock_id`
|
|
|
|
/// The ID of the clock to query
|
|
|
|
/// - `__wasi_timestamp_t precision`
|
|
|
|
/// The maximum amount of error the reading may have
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_timestamp_t *time`
|
|
|
|
/// The value of the clock in nanoseconds
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn clock_time_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
clock_id: __wasi_clockid_t,
|
|
|
|
precision: __wasi_timestamp_t,
|
|
|
|
time: WasmPtr<__wasi_timestamp_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::clock_time_get");
|
2019-03-29 11:38:48 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let out_addr = wasi_try!(time.deref(memory));
|
|
|
|
platform_clock_time_get(clock_id, precision, out_addr)
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-03-28 15:17:52 -07:00
|
|
|
/// ### `environ_get()`
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Read environment variable data.
|
2019-03-28 15:17:52 -07:00
|
|
|
/// The sizes of the buffers should match that returned by [`environ_sizes_get()`](#environ_sizes_get).
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Inputs:
|
|
|
|
/// - `char **environ`
|
|
|
|
/// A pointer to a buffer to write the environment variable pointers.
|
|
|
|
/// - `char *environ_buf`
|
|
|
|
/// A pointer to a buffer to write the environment variable string data.
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn environ_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
environ: WasmPtr<WasmPtr<u8, Array>, Array>,
|
|
|
|
environ_buf: WasmPtr<u8, Array>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::environ_get");
|
2019-03-28 12:56:11 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-03-28 22:10:11 -07:00
|
|
|
write_buffer_array(memory, &*state.args, environ, environ_buf)
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-03-28 15:17:52 -07:00
|
|
|
/// ### `environ_sizes_get()`
|
2019-03-28 12:56:11 -07:00
|
|
|
/// Return command-line argument data sizes.
|
|
|
|
/// Outputs:
|
|
|
|
/// - `size_t *environ_count`
|
|
|
|
/// The number of environment variables.
|
|
|
|
/// - `size_t *environ_buf_size`
|
|
|
|
/// The size of the environment variable string data.
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn environ_sizes_get(
|
|
|
|
ctx: &mut Ctx,
|
2019-03-28 22:10:11 -07:00
|
|
|
environ_count: WasmPtr<u32>,
|
|
|
|
environ_buf_size: WasmPtr<u32>,
|
2019-03-28 17:00:10 -07:00
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::environ_sizes_get");
|
2019-03-28 12:56:11 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let environ_count = wasi_try!(environ_count.deref(memory));
|
|
|
|
let environ_buf_size = wasi_try!(environ_buf_size.deref(memory));
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
2019-03-28 17:00:10 -07:00
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
environ_count.set(state.envs.len() as u32);
|
|
|
|
environ_buf_size.set(state.envs.iter().map(|v| v.len() as u32).sum());
|
|
|
|
|
2019-04-02 11:43:04 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 12:56:11 -07:00
|
|
|
|
2019-04-01 15:22:30 -07:00
|
|
|
/// ### `fd_advise()`
|
|
|
|
/// Advise the system about how a file will be used
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor the advice applies to
|
|
|
|
/// - `__wasi_filesize_t offset`
|
|
|
|
/// The offset from which the advice applies
|
|
|
|
/// - `__wasi_filesize_t len`
|
|
|
|
/// The length from the offset to which the advice applies
|
|
|
|
/// - `__wasi_advice_t advice`
|
|
|
|
/// The advice to give
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_advise(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
offset: __wasi_filesize_t,
|
|
|
|
len: __wasi_filesize_t,
|
|
|
|
advice: __wasi_advice_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 16:16:06 -07:00
|
|
|
debug!("wasi::fd_advise: fd={}", fd);
|
|
|
|
|
|
|
|
// this is used for our own benefit, so just returning success is a valid
|
|
|
|
// implementation for now
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
|
|
|
/// ### `fd_allocate`
|
|
|
|
/// Allocate extra space for a file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to allocate for
|
|
|
|
/// - `__wasi_filesize_t offset`
|
|
|
|
/// The offset from the start marking the beginning of the allocation
|
|
|
|
/// - `__wasi_filesize_t len`
|
|
|
|
/// The length from the offset marking the end of the allocation
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_allocate(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
offset: __wasi_filesize_t,
|
|
|
|
len: __wasi_filesize_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_allocate");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
|
|
|
/// ### `fd_close()`
|
|
|
|
/// Close an open file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// A file descriptor mapping to an open file to close
|
|
|
|
/// Errors:
|
|
|
|
/// - `__WASI_EISDIR`
|
|
|
|
/// If `fd` is a directory
|
|
|
|
/// - `__WASI_EBADF`
|
|
|
|
/// If `fd` is invalid or not open (TODO: consider __WASI_EINVAL)
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_close(ctx: &mut Ctx, fd: __wasi_fd_t) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_close");
|
2019-04-01 12:11:11 -07:00
|
|
|
// FD is too large
|
|
|
|
return __WASI_EMFILE;
|
|
|
|
// FD is a directory (due to user input)
|
|
|
|
return __WASI_EISDIR;
|
|
|
|
// FD is invalid
|
|
|
|
return __WASI_EBADF;
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
2019-04-01 15:22:30 -07:00
|
|
|
/// ### `fd_datasync()`
|
|
|
|
/// Synchronize the file data to disk
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to sync
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_datasync(ctx: &mut Ctx, fd: __wasi_fd_t) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_datasync");
|
2019-04-02 15:29:32 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
|
|
|
|
if let Err(e) = state.fs.flush(fd) {
|
|
|
|
e
|
|
|
|
} else {
|
|
|
|
__WASI_ESUCCESS
|
|
|
|
}
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
|
|
|
/// ### `fd_fdstat_get()`
|
|
|
|
/// Get metadata of a file descriptor
|
|
|
|
/// Input:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor whose metadata will be accessed
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_fdstat_t *buf`
|
|
|
|
/// The location where the metadata will be written
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_fdstat_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
2019-04-18 17:48:14 -07:00
|
|
|
buf_ptr: WasmPtr<__wasi_fdstat_t>,
|
2019-03-28 17:00:10 -07:00
|
|
|
) -> __wasi_errno_t {
|
2019-04-18 17:48:14 -07:00
|
|
|
debug!(
|
|
|
|
"wasi::fd_fdstat_get: fd={}, buf_ptr={}",
|
|
|
|
fd,
|
|
|
|
buf_ptr.offset()
|
|
|
|
);
|
2019-04-01 15:15:20 -07:00
|
|
|
let mut state = get_wasi_state(ctx);
|
|
|
|
let memory = ctx.memory(0);
|
2019-04-01 16:34:18 -07:00
|
|
|
let stat = wasi_try!(state.fs.fdstat(fd));
|
2019-04-18 17:48:14 -07:00
|
|
|
let buf = wasi_try!(buf_ptr.deref(memory));
|
2019-04-01 15:15:20 -07:00
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
buf.set(stat);
|
|
|
|
|
2019-04-10 18:23:25 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
|
|
|
/// ### `fd_fdstat_set_flags()`
|
|
|
|
/// Set file descriptor flags for a file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to apply the new flags to
|
|
|
|
/// - `__wasi_fdflags_t flags`
|
|
|
|
/// The flags to apply to `fd`
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_fdstat_set_flags(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
flags: __wasi_fdflags_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_fdstat_set_flags");
|
2019-04-02 15:45:12 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
2019-04-02 15:51:49 -07:00
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_FDSTAT_SET_FLAGS) {
|
2019-04-02 15:45:12 -07:00
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_entry.flags = flags;
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
|
|
|
/// ### `fd_fdstat_set_rights()`
|
2019-04-02 15:40:46 -07:00
|
|
|
/// Set the rights of a file descriptor. This can only be used to remove rights
|
2019-04-01 15:22:30 -07:00
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to apply the new rights to
|
|
|
|
/// - `__wasi_rights_t fs_rights_base`
|
|
|
|
/// The rights to apply to `fd`
|
|
|
|
/// - `__wasi_rights_t fs_rights_inheriting`
|
|
|
|
/// The inheriting rights to apply to `fd`
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_fdstat_set_rights(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
fs_rights_base: __wasi_rights_t,
|
|
|
|
fs_rights_inheriting: __wasi_rights_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_fdstat_set_rights");
|
2019-04-02 15:40:46 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
// ensure new rights are a subset of current rights
|
|
|
|
if fd_entry.rights | fs_rights_base != fd_entry.rights
|
|
|
|
|| fd_entry.rights_inheriting | fs_rights_inheriting != fd_entry.rights_inheriting
|
|
|
|
{
|
|
|
|
return __WASI_ENOTCAPABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_entry.rights = fs_rights_base;
|
|
|
|
fd_entry.rights_inheriting = fs_rights_inheriting;
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
|
|
|
/// ### `fd_filestat_get()`
|
|
|
|
/// Get the metadata of an open file
|
|
|
|
/// Input:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The open file descriptor whose metadata will be read
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_filestat_t *buf`
|
|
|
|
/// Where the metadata from `fd` will be written
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_filestat_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
buf: WasmPtr<__wasi_filestat_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_filestat_get");
|
2019-04-01 15:52:35 -07:00
|
|
|
let mut state = get_wasi_state(ctx);
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let stat = wasi_try!(state.fs.filestat_fd(fd));
|
2019-04-01 15:52:35 -07:00
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
let buf = wasi_try!(buf.deref(memory));
|
|
|
|
buf.set(stat);
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 15:22:30 -07:00
|
|
|
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_filestat_set_size(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
st_size: __wasi_filesize_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_filestat_set_size");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-02 16:01:39 -07:00
|
|
|
|
|
|
|
/// ### `fd_filestat_set_times()`
|
|
|
|
/// Set timestamp metadata on a file
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_timestamp_t st_atim`
|
|
|
|
/// Last accessed time
|
|
|
|
/// - `__wasi_timestamp_t st_mtim`
|
|
|
|
/// Last modified time
|
|
|
|
/// - `__wasi_fstflags_t fst_flags`
|
|
|
|
/// Bit-vector for controlling which times get set
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_filestat_set_times(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
st_atim: __wasi_timestamp_t,
|
|
|
|
st_mtim: __wasi_timestamp_t,
|
|
|
|
fst_flags: __wasi_fstflags_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_filestat_set_times");
|
2019-04-02 16:01:39 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_FILESTAT_SET_TIMES) {
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fst_flags & __WASI_FILESTAT_SET_ATIM != 0 && fst_flags & __WASI_FILESTAT_SET_ATIM_NOW != 0)
|
|
|
|
|| (fst_flags & __WASI_FILESTAT_SET_MTIM != 0
|
|
|
|
&& fst_flags & __WASI_FILESTAT_SET_MTIM_NOW != 0)
|
|
|
|
{
|
|
|
|
return __WASI_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
let inode = &mut state.fs.inodes[fd_entry.inode];
|
|
|
|
|
|
|
|
if fst_flags & __WASI_FILESTAT_SET_ATIM != 0 {
|
|
|
|
inode.stat.st_atim = st_atim;
|
|
|
|
} else if fst_flags & __WASI_FILESTAT_SET_ATIM_NOW != 0 {
|
|
|
|
// set to current real time
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
if fst_flags & __WASI_FILESTAT_SET_MTIM != 0 {
|
|
|
|
inode.stat.st_mtim = st_mtim;
|
|
|
|
} else if fst_flags & __WASI_FILESTAT_SET_MTIM_NOW != 0 {
|
|
|
|
// set to current real time
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 15:10:46 -07:00
|
|
|
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_pread(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
iovs: WasmPtr<__wasi_iovec_t, Array>,
|
|
|
|
iovs_len: u32,
|
|
|
|
offset: __wasi_filesize_t,
|
|
|
|
nread: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_pread");
|
2019-03-29 15:10:46 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-03 16:21:26 -07:00
|
|
|
let iov_cells = wasi_try!(iovs.deref(memory, 0, iovs_len));
|
|
|
|
let nread_cell = wasi_try!(nread.deref(memory));
|
|
|
|
|
|
|
|
unimplemented!();
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 15:10:46 -07:00
|
|
|
|
2019-04-02 10:58:22 -07:00
|
|
|
/// ### `fd_prestat_get()`
|
|
|
|
/// Get metadata about a preopened file descriptor
|
|
|
|
/// Input:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The preopened file descriptor to query
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_prestat *buf`
|
|
|
|
/// Where the metadata will be written
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_prestat_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
2019-03-29 11:03:21 -07:00
|
|
|
buf: WasmPtr<__wasi_prestat_t>,
|
2019-03-28 17:00:10 -07:00
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 10:22:45 -07:00
|
|
|
debug!("wasi::fd_prestat_get: fd={}", fd);
|
2019-03-29 17:00:58 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-02 10:58:22 -07:00
|
|
|
let prestat_ptr = wasi_try!(buf.deref(memory));
|
|
|
|
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
prestat_ptr.set(wasi_try!(state.fs.prestat_fd(fd)));
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 17:00:58 -07:00
|
|
|
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_prestat_dir_name(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 10:22:45 -07:00
|
|
|
debug!(
|
|
|
|
"wasi::fd_prestat_dir_name: fd={}, path_len={}",
|
|
|
|
fd, path_len
|
|
|
|
);
|
2019-03-29 17:00:58 -07:00
|
|
|
let memory = ctx.memory(0);
|
2019-04-10 18:23:25 -07:00
|
|
|
let path_chars = wasi_try!(path.deref(memory, 0, path_len));
|
|
|
|
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let real_fd = wasi_try!(state.fs.fd_map.get(&fd).ok_or(__WASI_EBADF));
|
|
|
|
let inode_val = &state.fs.inodes[real_fd.inode];
|
2019-03-29 17:00:58 -07:00
|
|
|
|
2019-04-10 18:23:25 -07:00
|
|
|
// check inode-val.is_preopened?
|
|
|
|
|
|
|
|
if let Kind::Dir { .. } = inode_val.kind {
|
|
|
|
// TODO: verify this: null termination, etc
|
|
|
|
if inode_val.name.len() <= path_len as usize {
|
2019-04-18 17:48:14 -07:00
|
|
|
let mut i = 0;
|
|
|
|
for c in inode_val.name.bytes() {
|
2019-04-10 18:23:25 -07:00
|
|
|
path_chars[i].set(c);
|
2019-04-18 17:48:14 -07:00
|
|
|
i += 1
|
2019-04-10 18:23:25 -07:00
|
|
|
}
|
2019-04-18 17:48:14 -07:00
|
|
|
path_chars[i].set(0);
|
|
|
|
|
|
|
|
debug!(
|
|
|
|
"=> result: \"{}\"",
|
|
|
|
::std::str::from_utf8(unsafe { &*(&path_chars[..] as *const [_] as *const [u8]) })
|
|
|
|
.unwrap()
|
|
|
|
);
|
|
|
|
|
2019-03-29 17:00:58 -07:00
|
|
|
__WASI_ESUCCESS
|
|
|
|
} else {
|
2019-04-10 18:23:25 -07:00
|
|
|
__WASI_EOVERFLOW
|
2019-03-29 17:00:58 -07:00
|
|
|
}
|
|
|
|
} else {
|
2019-04-10 18:23:25 -07:00
|
|
|
__WASI_ENOTDIR
|
2019-03-29 17:00:58 -07:00
|
|
|
}
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 17:00:58 -07:00
|
|
|
|
2019-04-02 16:35:05 -07:00
|
|
|
/// ### `fd_pwrite()`
|
|
|
|
/// Write to a file without adjusting its offset
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t`
|
|
|
|
/// File descriptor (opened with writing) to write to
|
|
|
|
/// - `const __wasi_ciovec_t *iovs`
|
|
|
|
/// List of vectors to read data from
|
|
|
|
/// - `u32 iovs_len`
|
|
|
|
/// Length of data in `iovs`
|
|
|
|
/// - `__wasi_filesize_t offset`
|
|
|
|
/// The offset to write at
|
|
|
|
/// Output:
|
|
|
|
/// - `u32 *nwritten`
|
|
|
|
/// Number of bytes written
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn fd_pwrite(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
iovs: WasmPtr<__wasi_ciovec_t, Array>,
|
|
|
|
iovs_len: u32,
|
|
|
|
offset: __wasi_filesize_t,
|
|
|
|
nwritten: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_pwrite");
|
2019-04-02 16:35:05 -07:00
|
|
|
// TODO: refactor, this is just copied from `fd_write`...
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
let iovs_arr_cell = wasi_try!(iovs.deref(memory, 0, iovs_len));
|
|
|
|
let nwritten_cell = wasi_try!(nwritten.deref(memory));
|
|
|
|
|
|
|
|
let bytes_written = match fd {
|
|
|
|
0 => return __WASI_EINVAL,
|
|
|
|
1 => {
|
|
|
|
let stdout = io::stdout();
|
|
|
|
let mut handle = stdout.lock();
|
|
|
|
|
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
|
|
|
|
2 => {
|
|
|
|
let stderr = io::stderr();
|
|
|
|
let mut handle = stderr.lock();
|
|
|
|
|
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_WRITE) {
|
|
|
|
// TODO: figure out the error to return when lacking rights
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
let inode = &mut state.fs.inodes[fd_entry.inode];
|
|
|
|
|
|
|
|
let bytes_written = match &mut inode.kind {
|
|
|
|
Kind::File { handle } => {
|
2019-04-10 18:23:25 -07:00
|
|
|
handle.seek(::std::io::SeekFrom::Start(offset as u64));
|
2019-04-02 16:35:05 -07:00
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
Kind::Dir { .. } => {
|
|
|
|
// TODO: verify
|
|
|
|
return __WASI_EISDIR;
|
|
|
|
}
|
|
|
|
Kind::Symlink { .. } => unimplemented!(),
|
|
|
|
Kind::Buffer { buffer } => wasi_try!(write_bytes(
|
|
|
|
&mut buffer[(offset as usize)..],
|
|
|
|
memory,
|
|
|
|
iovs_arr_cell
|
|
|
|
)),
|
|
|
|
};
|
|
|
|
|
|
|
|
bytes_written
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
nwritten_cell.set(bytes_written);
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_read()`
|
|
|
|
/// Read data from file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// File descriptor from which data will be read
|
|
|
|
/// - `const __wasi_iovec_t *iovs`
|
|
|
|
/// Vectors where data will be stored
|
|
|
|
/// - `u32 iovs_len`
|
|
|
|
/// Length of data in `iovs`
|
|
|
|
/// Output:
|
|
|
|
/// - `u32 *nread`
|
|
|
|
/// Number of bytes read
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_read(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
iovs: WasmPtr<__wasi_iovec_t, Array>,
|
|
|
|
iovs_len: u32,
|
|
|
|
nread: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 14:13:03 -07:00
|
|
|
debug!("wasi::fd_read: fd={}", fd);
|
2019-04-01 14:04:58 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-02 14:13:03 -07:00
|
|
|
let iovs_arr_cell = wasi_try!(iovs.deref(memory, 0, iovs_len));
|
2019-04-02 15:14:19 -07:00
|
|
|
let nread_cell = wasi_try!(nread.deref(memory));
|
2019-04-01 14:04:58 -07:00
|
|
|
|
2019-04-02 15:14:19 -07:00
|
|
|
fn read_bytes<T: Read>(
|
2019-04-02 14:13:03 -07:00
|
|
|
mut reader: T,
|
|
|
|
memory: &Memory,
|
|
|
|
iovs_arr_cell: &[Cell<__wasi_iovec_t>],
|
|
|
|
) -> Result<u32, __wasi_errno_t> {
|
|
|
|
let mut bytes_read = 0;
|
|
|
|
|
|
|
|
for iov in iovs_arr_cell {
|
|
|
|
let iov_inner = iov.get();
|
2019-04-18 17:48:14 -07:00
|
|
|
let bytes = iov_inner.buf.deref(memory, 0, iov_inner.buf_len)?;
|
2019-04-02 15:14:19 -07:00
|
|
|
let mut raw_bytes: &mut [u8] =
|
|
|
|
unsafe { &mut *(bytes as *const [_] as *mut [_] as *mut [u8]) };
|
2019-04-19 12:48:29 -07:00
|
|
|
bytes_read += reader.read(raw_bytes).map_err(|_| __WASI_EIO)? as u32;
|
2019-04-02 15:14:19 -07:00
|
|
|
}
|
|
|
|
Ok(bytes_read)
|
|
|
|
}
|
|
|
|
|
|
|
|
let bytes_read = match fd {
|
|
|
|
0 => {
|
|
|
|
let stdin = io::stdin();
|
|
|
|
let mut handle = stdin.lock();
|
2019-04-02 14:13:03 -07:00
|
|
|
|
2019-04-02 15:14:19 -07:00
|
|
|
wasi_try!(read_bytes(handle, memory, iovs_arr_cell))
|
2019-04-02 14:13:03 -07:00
|
|
|
}
|
2019-04-02 15:14:19 -07:00
|
|
|
1 | 2 => return __WASI_EINVAL,
|
|
|
|
_ => {
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
2019-04-02 15:51:49 -07:00
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_READ) {
|
2019-04-02 15:14:19 -07:00
|
|
|
// TODO: figure out the error to return when lacking rights
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
let offset = fd_entry.offset as usize;
|
|
|
|
let inode = &mut state.fs.inodes[fd_entry.inode];
|
|
|
|
|
|
|
|
let bytes_read = match &mut inode.kind {
|
2019-04-10 18:23:25 -07:00
|
|
|
Kind::File { handle } => {
|
|
|
|
handle.seek(::std::io::SeekFrom::Start(offset as u64));
|
|
|
|
wasi_try!(read_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
2019-04-02 15:14:19 -07:00
|
|
|
Kind::Dir { .. } => {
|
|
|
|
// TODO: verify
|
|
|
|
return __WASI_EISDIR;
|
|
|
|
}
|
|
|
|
Kind::Symlink { .. } => unimplemented!(),
|
|
|
|
Kind::Buffer { buffer } => {
|
|
|
|
wasi_try!(read_bytes(&buffer[offset..], memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fd_entry.offset += bytes_read as u64;
|
|
|
|
|
|
|
|
bytes_read
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-04-18 17:48:14 -07:00
|
|
|
nread_cell.set(bytes_read);
|
2019-04-02 15:14:19 -07:00
|
|
|
|
2019-04-02 14:13:03 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_readdir()`
|
|
|
|
/// Read data from directory specified by file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// File descriptor from which directory data will be read
|
|
|
|
/// - `void *buf`
|
|
|
|
/// Buffer where directory entries are stored
|
|
|
|
/// - `u32 buf_len`
|
|
|
|
/// Length of data in `buf`
|
|
|
|
/// - `__wasi_dircookie_t cookie`
|
|
|
|
/// Where the directory reading should start from
|
|
|
|
/// Output:
|
|
|
|
/// - `u32 *bufused`
|
|
|
|
/// The Number of bytes stored in `buf`; if less than `buf_len` then entire
|
|
|
|
/// directory has been read
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_readdir(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
buf: WasmPtr<u8, Array>,
|
|
|
|
buf_len: u32,
|
|
|
|
cookie: __wasi_dircookie_t,
|
|
|
|
bufused: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_readdir");
|
2019-04-01 14:04:58 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 16:34:18 -07:00
|
|
|
if let (Ok(buf_arr_cell), Ok(bufused_cell)) =
|
2019-04-01 14:04:58 -07:00
|
|
|
(buf.deref(memory, 0, buf_len), bufused.deref(memory))
|
|
|
|
{
|
|
|
|
unimplemented!()
|
|
|
|
} else {
|
|
|
|
__WASI_EFAULT
|
|
|
|
}
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_renumber()`
|
|
|
|
/// Atomically copy file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t from`
|
|
|
|
/// File descriptor to copy
|
|
|
|
/// - `__wasi_fd_t to`
|
|
|
|
/// Location to copy file descriptor to
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_renumber(ctx: &mut Ctx, from: __wasi_fd_t, to: __wasi_fd_t) -> __wasi_errno_t {
|
2019-04-02 16:26:54 -07:00
|
|
|
debug!("wasi::fd_renumber: from={}, to={}", from, to);
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get(&from).ok_or(__WASI_EBADF));
|
|
|
|
|
2019-04-03 17:01:02 -07:00
|
|
|
state.fs.fd_map.insert(
|
|
|
|
to,
|
|
|
|
Fd {
|
|
|
|
// TODO: verify this is correct
|
|
|
|
rights: fd_entry.rights_inheriting,
|
|
|
|
..*fd_entry
|
|
|
|
},
|
|
|
|
);
|
2019-04-02 16:26:54 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_seek()`
|
|
|
|
/// Update file descriptor offset
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// File descriptor to mutate
|
|
|
|
/// - `__wasi_filedelta_t offset`
|
|
|
|
/// Number of bytes to adjust offset by
|
|
|
|
/// - `__wasi_whence_t whence`
|
|
|
|
/// What the offset is relative to
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_filesize_t *fd`
|
|
|
|
/// The new offset relative to the start of the file
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_seek(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
offset: __wasi_filedelta_t,
|
|
|
|
whence: __wasi_whence_t,
|
|
|
|
newoffset: WasmPtr<__wasi_filesize_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-10 18:23:25 -07:00
|
|
|
debug!("wasi::fd_seek: fd={}, offset={}", fd, offset);
|
2019-04-01 14:04:58 -07:00
|
|
|
let memory = ctx.memory(0);
|
2019-04-02 16:16:06 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let new_offset_cell = wasi_try!(newoffset.deref(memory));
|
|
|
|
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_SEEK) {
|
|
|
|
return __WASI_EACCES;
|
2019-04-01 14:04:58 -07:00
|
|
|
}
|
2019-04-02 16:16:06 -07:00
|
|
|
|
|
|
|
// TODO: handle case if fd is a dir?
|
|
|
|
match whence {
|
2019-04-18 17:48:14 -07:00
|
|
|
__WASI_WHENCE_CUR => fd_entry.offset = (fd_entry.offset as i64 + offset) as u64,
|
2019-04-02 16:16:06 -07:00
|
|
|
__WASI_WHENCE_END => unimplemented!(),
|
|
|
|
__WASI_WHENCE_SET => fd_entry.offset = offset as u64,
|
|
|
|
_ => return __WASI_EINVAL,
|
|
|
|
}
|
|
|
|
|
2019-04-02 16:23:33 -07:00
|
|
|
new_offset_cell.set(fd_entry.offset);
|
|
|
|
|
2019-04-02 16:16:06 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_sync()`
|
|
|
|
/// Synchronize file and metadata to disk (TODO: expand upon what this means in our system)
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to sync
|
|
|
|
/// Errors:
|
|
|
|
/// TODO: figure out which errors this should return
|
|
|
|
/// - `__WASI_EPERM`
|
2019-04-18 17:48:14 -07:00
|
|
|
/// - `__WASI_ENOTCAPABLE`
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_sync(ctx: &mut Ctx, fd: __wasi_fd_t) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_sync");
|
2019-04-01 14:04:58 -07:00
|
|
|
// TODO: check __WASI_RIGHT_FD_SYNC
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `fd_tell()`
|
|
|
|
/// Get the offset of the file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The file descriptor to access
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_filesize_t *offset`
|
|
|
|
/// The offset of `fd` relative to the start of the file
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_tell(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
offset: WasmPtr<__wasi_filesize_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::fd_tell");
|
2019-04-02 16:23:33 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
let offset_cell = wasi_try!(offset.deref(memory));
|
|
|
|
|
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_TELL) {
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset_cell.set(fd_entry.offset);
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
|
|
|
/// ### `fd_write()`
|
|
|
|
/// Write data to the file descriptor
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t`
|
|
|
|
/// File descriptor (opened with writing) to write to
|
|
|
|
/// - `const __wasi_ciovec_t *iovs`
|
|
|
|
/// List of vectors to read data from
|
|
|
|
/// - `u32 iovs_len`
|
|
|
|
/// Length of data in `iovs`
|
|
|
|
/// Output:
|
|
|
|
/// - `u32 *nwritten`
|
|
|
|
/// Number of bytes written
|
|
|
|
/// Errors:
|
|
|
|
///
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn fd_write(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
iovs: WasmPtr<__wasi_ciovec_t, Array>,
|
|
|
|
iovs_len: u32,
|
|
|
|
nwritten: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 11:43:04 -07:00
|
|
|
debug!("wasi::fd_write: fd={}", fd);
|
2019-04-01 12:11:11 -07:00
|
|
|
let memory = ctx.memory(0);
|
2019-04-02 11:43:04 -07:00
|
|
|
let iovs_arr_cell = wasi_try!(iovs.deref(memory, 0, iovs_len));
|
|
|
|
let nwritten_cell = wasi_try!(nwritten.deref(memory));
|
|
|
|
|
2019-04-02 12:06:35 -07:00
|
|
|
let bytes_written = match fd {
|
|
|
|
0 => return __WASI_EINVAL,
|
2019-04-02 11:43:04 -07:00
|
|
|
1 => {
|
|
|
|
let stdout = io::stdout();
|
|
|
|
let mut handle = stdout.lock();
|
|
|
|
|
2019-04-02 12:06:35 -07:00
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
2019-04-02 11:43:04 -07:00
|
|
|
}
|
2019-04-02 12:06:35 -07:00
|
|
|
|
2019-04-02 11:43:04 -07:00
|
|
|
2 => {
|
|
|
|
let stderr = io::stderr();
|
|
|
|
let mut handle = stderr.lock();
|
|
|
|
|
2019-04-02 12:06:35 -07:00
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
let state = get_wasi_state(ctx);
|
2019-04-02 12:11:05 -07:00
|
|
|
let fd_entry = wasi_try!(state.fs.fd_map.get_mut(&fd).ok_or(__WASI_EBADF));
|
2019-04-02 11:43:04 -07:00
|
|
|
|
2019-04-02 15:51:49 -07:00
|
|
|
if !has_rights(fd_entry.rights, __WASI_RIGHT_FD_WRITE) {
|
2019-04-02 12:06:35 -07:00
|
|
|
// TODO: figure out the error to return when lacking rights
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
2019-04-02 12:11:05 -07:00
|
|
|
let offset = fd_entry.offset as usize;
|
2019-04-02 12:06:35 -07:00
|
|
|
let inode = &mut state.fs.inodes[fd_entry.inode];
|
|
|
|
|
2019-04-02 12:11:05 -07:00
|
|
|
let bytes_written = match &mut inode.kind {
|
2019-04-10 18:23:25 -07:00
|
|
|
Kind::File { handle } => {
|
|
|
|
handle.seek(::std::io::SeekFrom::Start(offset as u64));
|
|
|
|
|
|
|
|
wasi_try!(write_bytes(handle, memory, iovs_arr_cell))
|
|
|
|
}
|
2019-04-02 12:06:35 -07:00
|
|
|
Kind::Dir { .. } => {
|
|
|
|
// TODO: verify
|
|
|
|
return __WASI_EISDIR;
|
|
|
|
}
|
|
|
|
Kind::Symlink { .. } => unimplemented!(),
|
2019-04-02 12:11:05 -07:00
|
|
|
Kind::Buffer { buffer } => {
|
|
|
|
wasi_try!(write_bytes(&mut buffer[offset..], memory, iovs_arr_cell))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fd_entry.offset += bytes_written as u64;
|
|
|
|
|
|
|
|
bytes_written
|
2019-04-02 11:43:04 -07:00
|
|
|
}
|
2019-04-02 12:06:35 -07:00
|
|
|
};
|
2019-04-02 11:43:04 -07:00
|
|
|
|
2019-04-18 17:48:14 -07:00
|
|
|
nwritten_cell.set(bytes_written);
|
2019-04-02 11:43:04 -07:00
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
2019-04-01 14:04:58 -07:00
|
|
|
/// ### `path_create_directory()`
|
|
|
|
/// Create directory at a path
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The directory that the path is relative to
|
|
|
|
/// - `const char *path`
|
|
|
|
/// String containing path data
|
|
|
|
/// - `u32 path_len`
|
|
|
|
/// The length of `path`
|
|
|
|
/// Errors:
|
|
|
|
/// Required Rights:
|
|
|
|
/// - __WASI_RIGHT_PATH_CREATE_DIRECTORY
|
|
|
|
/// This right must be set on the directory that the file is created in (TODO: verify that this is true)
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_create_directory(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_create_directory");
|
2019-05-09 16:01:36 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
let state = get_wasi_state(ctx);
|
|
|
|
|
|
|
|
let working_dir = wasi_try!(state.fs.fd_map.get(&fd).ok_or(__WASI_EBADF));
|
|
|
|
if !has_rights(working_dir.rights, __WASI_RIGHT_PATH_CREATE_DIRECTORY) {
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
let path_cells = wasi_try!(path.deref(memory, 0, path_len));
|
|
|
|
let path_string =
|
|
|
|
wasi_try!(
|
|
|
|
std::str::from_utf8(unsafe { &*(path_cells as *const [_] as *const [u8]) })
|
|
|
|
.map_err(|_| __WASI_EINVAL)
|
|
|
|
);
|
|
|
|
debug!("=> path: {}", &path_string);
|
|
|
|
|
|
|
|
let path = std::path::PathBuf::from(path_string);
|
|
|
|
let path_vec = wasi_try!(path
|
|
|
|
.components()
|
|
|
|
.map(|comp| {
|
|
|
|
comp.as_os_str()
|
|
|
|
.to_str()
|
|
|
|
.map(|inner_str| inner_str.to_string())
|
|
|
|
.ok_or(__WASI_EINVAL)
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<String>, __wasi_errno_t>>());
|
|
|
|
if path_vec.is_empty() {
|
|
|
|
return __WASI_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(
|
|
|
|
path_vec.len() == 1,
|
|
|
|
"path_create_directory for paths greater than depth 1 has not been implemented"
|
|
|
|
);
|
|
|
|
debug!("Path vec: {:#?}", path_vec);
|
|
|
|
|
|
|
|
let kind = Kind::Dir {
|
|
|
|
//parent: Some(working_dir.inode),
|
|
|
|
path: path.clone(),
|
|
|
|
entries: Default::default(),
|
|
|
|
};
|
|
|
|
let new_inode = state.fs.inodes.insert(InodeVal {
|
|
|
|
stat: __wasi_filestat_t::default(),
|
|
|
|
is_preopened: false,
|
|
|
|
name: path_vec[0].clone(),
|
|
|
|
kind,
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Kind::Dir { entries, .. } = &mut state.fs.inodes[working_dir.inode].kind {
|
|
|
|
entries.insert(path_vec[0].clone(), new_inode);
|
|
|
|
} else {
|
|
|
|
return __WASI_ENOTDIR;
|
|
|
|
}
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `path_filestat_get()`
|
|
|
|
/// Access metadata about a file or directory
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
2019-04-03 12:48:27 -07:00
|
|
|
/// The directory that `path` is relative to
|
2019-04-01 14:04:58 -07:00
|
|
|
/// - `__wasi_lookupflags_t flags`
|
2019-04-03 12:48:27 -07:00
|
|
|
/// Flags to control how `path` is understood
|
2019-04-01 14:04:58 -07:00
|
|
|
/// - `const char *path`
|
|
|
|
/// String containing the file path
|
|
|
|
/// - `u32 path_len`
|
|
|
|
/// The length of the `path` string
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_file_stat_t *buf`
|
|
|
|
/// The location where the metadata will be stored
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_filestat_get(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
flags: __wasi_lookupflags_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
buf: WasmPtr<__wasi_filestat_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_filestat_get");
|
2019-04-03 12:48:27 -07:00
|
|
|
let state = get_wasi_state(ctx);
|
2019-04-01 16:34:18 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-03 12:48:27 -07:00
|
|
|
let root_dir = wasi_try!(state.fs.fd_map.get(&fd).ok_or(__WASI_EBADF));
|
|
|
|
|
|
|
|
if !has_rights(root_dir.rights, __WASI_RIGHT_PATH_FILESTAT_GET) {
|
|
|
|
return __WASI_EACCES;
|
|
|
|
}
|
|
|
|
|
2019-05-09 16:01:36 -07:00
|
|
|
let path_string = wasi_try!(::std::str::from_utf8(unsafe {
|
2019-04-03 12:48:27 -07:00
|
|
|
&*(wasi_try!(path.deref(memory, 0, path_len)) as *const [_] as *const [u8])
|
|
|
|
})
|
2019-05-09 16:01:36 -07:00
|
|
|
.map_err(|_| __WASI_EINVAL));
|
|
|
|
debug!("=> path: {}", &path_string);
|
|
|
|
let path_vec = path_string
|
|
|
|
.split('/')
|
|
|
|
.map(|str| str.to_string())
|
|
|
|
.collect::<Vec<String>>();
|
2019-04-03 12:48:27 -07:00
|
|
|
let buf_cell = wasi_try!(buf.deref(memory));
|
|
|
|
|
|
|
|
// find the inode by traversing the path
|
|
|
|
let mut inode = root_dir.inode;
|
2019-05-09 16:01:36 -07:00
|
|
|
'outer: for segment in &path_vec[..(path_vec.len() - 1)] {
|
2019-04-03 12:48:27 -07:00
|
|
|
// loop to traverse symlinks
|
|
|
|
// TODO: proper cycle detection
|
|
|
|
let mut sym_count = 0;
|
|
|
|
loop {
|
|
|
|
match &state.fs.inodes[inode].kind {
|
|
|
|
Kind::Dir { entries, .. } => {
|
2019-05-09 16:01:36 -07:00
|
|
|
if let Some(entry) = entries.get(segment) {
|
2019-04-03 12:48:27 -07:00
|
|
|
inode = entry.clone();
|
|
|
|
continue 'outer;
|
|
|
|
} else {
|
|
|
|
return __WASI_ENOENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Kind::Symlink { forwarded } => {
|
|
|
|
sym_count += 1;
|
|
|
|
inode = forwarded.clone();
|
|
|
|
if sym_count > MAX_SYMLINKS {
|
|
|
|
return __WASI_ELOOP;
|
|
|
|
}
|
|
|
|
}
|
2019-04-18 17:48:14 -07:00
|
|
|
_ => {
|
|
|
|
return __WASI_ENOTDIR;
|
|
|
|
}
|
2019-04-03 12:48:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 16:01:36 -07:00
|
|
|
let final_inode = match &state.fs.inodes[inode].kind {
|
|
|
|
Kind::Dir { entries, .. } => {
|
|
|
|
// TODO: fail earlier if size 0
|
|
|
|
let last_segment = path_vec.last().unwrap();
|
|
|
|
if entries.contains_key(last_segment) {
|
|
|
|
entries[last_segment]
|
|
|
|
} else {
|
|
|
|
// lazily load it if we can
|
|
|
|
// TODO: adjust to directory correctly
|
|
|
|
|
|
|
|
// HACK(mark): assumes current directory, cumulative dir should be built up in previous loop
|
|
|
|
let real_open_file = wasi_try!(std::fs::OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.write(true)
|
|
|
|
.open(&last_segment)
|
|
|
|
.map_err(|_| __WASI_ENOENT));
|
|
|
|
|
|
|
|
let new_inode = state.fs.inodes.insert(InodeVal {
|
|
|
|
stat: __wasi_filestat_t::default(),
|
|
|
|
is_preopened: false, // is this correct?
|
|
|
|
name: last_segment.clone(),
|
|
|
|
kind: Kind::File {
|
|
|
|
handle: WasiFile::HostFile(real_open_file),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// reborrow to insert entry
|
|
|
|
if let Kind::Dir { entries, .. } = &mut state.fs.inodes[inode].kind {
|
|
|
|
entries.insert(last_segment.clone(), new_inode);
|
|
|
|
}
|
|
|
|
new_inode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return __WASI_ENOTDIR;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let stat = state.fs.inodes[final_inode].stat;
|
2019-04-03 12:48:27 -07:00
|
|
|
|
|
|
|
buf_cell.set(stat);
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `path_filestat_set_times()`
|
|
|
|
/// Update time metadata on a file or directory
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t fd`
|
|
|
|
/// The directory relative to which the path is resolved
|
|
|
|
/// - `__wasi_lookupflags_t flags`
|
|
|
|
/// Flags to control how the path is understood
|
|
|
|
/// - `const char *path`
|
|
|
|
/// String containing the file path
|
|
|
|
/// - `u32 path_len`
|
|
|
|
/// The length of the `path` string
|
|
|
|
/// - `__wasi_timestamp_t st_atim`
|
|
|
|
/// The timestamp that the last accessed time attribute is set to
|
|
|
|
/// - `__wasi_timestamp_t st_mtim`
|
|
|
|
/// The timestamp that the last modified time attribute is set to
|
|
|
|
/// - `__wasi_fstflags_t fst_flags`
|
|
|
|
/// A bitmask controlling which attributes are set
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_filestat_set_times(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
flags: __wasi_lookupflags_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
st_atim: __wasi_timestamp_t,
|
|
|
|
st_mtim: __wasi_timestamp_t,
|
|
|
|
fst_flags: __wasi_fstflags_t,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_filestat_set_times");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-01 14:04:58 -07:00
|
|
|
|
|
|
|
/// ### `path_link()`
|
|
|
|
/// Create a hard link
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t old_fd`
|
|
|
|
/// The directory relative to which the `old_path` is
|
|
|
|
/// - `__wasi_lookupflags_t old_flags`
|
|
|
|
/// Flags to control how `old_path` is understood
|
|
|
|
/// - `const char *old_path`
|
|
|
|
/// String containing the old file path
|
|
|
|
/// - `u32 old_path_len`
|
|
|
|
/// Length of the `old_path` string
|
|
|
|
/// - `__wasi_fd_t new_fd`
|
|
|
|
/// The directory relative to which the `new_path` is
|
|
|
|
/// - `const char *new_path`
|
|
|
|
/// String containing the new file path
|
|
|
|
/// - `u32 old_path_len`
|
|
|
|
/// Length of the `new_path` string
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_link(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
old_fd: __wasi_fd_t,
|
|
|
|
old_flags: __wasi_lookupflags_t,
|
|
|
|
old_path: WasmPtr<u8, Array>,
|
|
|
|
old_path_len: u32,
|
|
|
|
new_fd: __wasi_fd_t,
|
|
|
|
new_path: WasmPtr<u8, Array>,
|
|
|
|
new_path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_link");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
|
|
|
/// ### `path_open()`
|
|
|
|
/// Open file located at the given path
|
|
|
|
/// Inputs:
|
|
|
|
/// - `__wasi_fd_t dirfd`
|
|
|
|
/// The fd corresponding to the directory that the file is in
|
|
|
|
/// - `__wasi_lookupflags_t dirflags`
|
|
|
|
/// Flags specifying how the path will be resolved
|
|
|
|
/// - `char *path`
|
|
|
|
/// The path of the file or directory to open
|
|
|
|
/// - `u32 path_len`
|
|
|
|
/// The length of the `path` string
|
|
|
|
/// - `__wasi_oflags_t o_flags`
|
|
|
|
/// How the file will be opened
|
|
|
|
/// - `__wasi_rights_t fs_rights_base`
|
|
|
|
/// The rights of the created file descriptor
|
|
|
|
/// - `__wasi_rights_t fs_rightsinheriting`
|
|
|
|
/// The rights of file descriptors derived from the created file descriptor
|
|
|
|
/// - `__wasi_fdflags_t fs_flags`
|
|
|
|
/// The flags of the file descriptor
|
|
|
|
/// Output:
|
|
|
|
/// - `__wasi_fd_t* fd`
|
|
|
|
/// The new file descriptor
|
|
|
|
/// Possible Errors:
|
|
|
|
/// - `__WASI_EACCES`, `__WASI_EBADF`, `__WASI_EFAULT`, `__WASI_EFBIG?`, `__WASI_EINVAL`, `__WASI_EIO`, `__WASI_ELOOP`, `__WASI_EMFILE`, `__WASI_ENAMETOOLONG?`, `__WASI_ENFILE`, `__WASI_ENOENT`, `__WASI_ENOTDIR`, `__WASI_EROFS`, and `__WASI_ENOTCAPABLE`
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_open(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
dirfd: __wasi_fd_t,
|
|
|
|
dirflags: __wasi_lookupflags_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
o_flags: __wasi_oflags_t,
|
|
|
|
fs_rights_base: __wasi_rights_t,
|
|
|
|
fs_rights_inheriting: __wasi_rights_t,
|
|
|
|
fs_flags: __wasi_fdflags_t,
|
|
|
|
fd: WasmPtr<__wasi_fd_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_open");
|
2019-04-01 12:11:11 -07:00
|
|
|
let memory = ctx.memory(0);
|
|
|
|
/* TODO: find actual upper bound on name size (also this is a path, not a name :think-fish:) */
|
2019-04-19 09:25:29 -07:00
|
|
|
if path_len > 1024 * 1024 {
|
2019-04-01 12:11:11 -07:00
|
|
|
return __WASI_ENAMETOOLONG;
|
|
|
|
}
|
|
|
|
|
2019-04-03 11:56:45 -07:00
|
|
|
let fd_cell = wasi_try!(fd.deref(memory));
|
|
|
|
let path_cells = wasi_try!(path.deref(memory, 0, path_len));
|
|
|
|
let state = get_wasi_state(ctx);
|
2019-04-01 12:11:11 -07:00
|
|
|
|
2019-04-03 11:56:45 -07:00
|
|
|
// o_flags:
|
|
|
|
// - __WASI_O_FLAG_CREAT (create if it does not exist)
|
|
|
|
// - __WASI_O_DIRECTORY (fail if not dir)
|
|
|
|
// - __WASI_O_EXCL (fail if file exists)
|
|
|
|
// - __WASI_O_TRUNC (truncate size to 0)
|
2019-04-01 12:11:11 -07:00
|
|
|
|
2019-04-03 11:56:45 -07:00
|
|
|
let working_dir = wasi_try!(state.fs.fd_map.get(&dirfd).ok_or(__WASI_EBADF));
|
|
|
|
|
2019-04-19 09:25:29 -07:00
|
|
|
// ASSUMPTION: open rights apply recursively
|
2019-04-03 11:56:45 -07:00
|
|
|
if !has_rights(working_dir.rights, __WASI_RIGHT_PATH_OPEN) {
|
|
|
|
return __WASI_EACCES;
|
2019-04-01 12:11:11 -07:00
|
|
|
}
|
2019-04-03 11:56:45 -07:00
|
|
|
|
2019-04-19 09:25:29 -07:00
|
|
|
let path_string =
|
2019-04-03 11:56:45 -07:00
|
|
|
wasi_try!(
|
2019-04-19 12:48:29 -07:00
|
|
|
std::str::from_utf8(unsafe { &*(path_cells as *const [_] as *const [u8]) })
|
2019-04-03 11:56:45 -07:00
|
|
|
.map_err(|_| __WASI_EINVAL)
|
2019-04-19 09:25:29 -07:00
|
|
|
);
|
2019-04-19 12:48:29 -07:00
|
|
|
let path = std::path::PathBuf::from(path_string);
|
|
|
|
let path_vec = wasi_try!(path
|
|
|
|
.components()
|
|
|
|
.map(|comp| {
|
|
|
|
comp.as_os_str()
|
|
|
|
.to_str()
|
|
|
|
.map(|inner_str| inner_str.to_string())
|
|
|
|
.ok_or(__WASI_EINVAL)
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<String>, __wasi_errno_t>>());
|
2019-04-19 09:25:29 -07:00
|
|
|
debug!("Path vec: {:#?}", path_vec);
|
2019-04-03 11:56:45 -07:00
|
|
|
|
|
|
|
if path_vec.is_empty() {
|
|
|
|
return __WASI_EINVAL;
|
|
|
|
}
|
|
|
|
|
2019-04-19 12:48:29 -07:00
|
|
|
let mut cur_dir_inode = working_dir.inode;
|
|
|
|
let mut cumulative_path = std::path::PathBuf::from(".");
|
2019-04-19 09:25:29 -07:00
|
|
|
|
2019-04-19 12:48:29 -07:00
|
|
|
// traverse path
|
|
|
|
if path_vec.len() > 1 {
|
2019-04-03 11:56:45 -07:00
|
|
|
for path_segment in &path_vec[..(path_vec.len() - 1)] {
|
2019-04-19 12:48:29 -07:00
|
|
|
match &state.fs.inodes[cur_dir_inode].kind {
|
2019-04-03 11:56:45 -07:00
|
|
|
Kind::Dir { entries, .. } => {
|
|
|
|
if let Some(child) = entries.get(path_segment) {
|
2019-04-19 12:48:29 -07:00
|
|
|
let inode_val = *child;
|
|
|
|
cur_dir_inode = inode_val;
|
2019-04-03 11:56:45 -07:00
|
|
|
} else {
|
2019-04-19 12:48:29 -07:00
|
|
|
// attempt to lazily load or create
|
|
|
|
if path_segment == ".." {
|
|
|
|
unimplemented!(
|
|
|
|
"\"..\" in paths in `path_open` has not been implemented yet"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// lazily load
|
|
|
|
cumulative_path.push(path_segment);
|
|
|
|
let mut open_options = std::fs::OpenOptions::new();
|
|
|
|
let open_options = open_options.read(true);
|
|
|
|
// ASSUMPTION: __WASI_O_CREAT applies recursively
|
|
|
|
let open_options = if o_flags & __WASI_O_CREAT != 0 {
|
|
|
|
open_options.create(true)
|
|
|
|
} else {
|
|
|
|
open_options
|
|
|
|
};
|
|
|
|
// TODO: handle __WASI_O_TRUNC on directories
|
|
|
|
|
|
|
|
// TODO: refactor and reuse
|
2019-04-26 13:17:36 -07:00
|
|
|
let cur_file_metadata =
|
|
|
|
wasi_try!(cumulative_path.metadata().map_err(|_| __WASI_EINVAL));
|
2019-04-19 12:48:29 -07:00
|
|
|
let kind = if cur_file_metadata.is_dir() {
|
|
|
|
Kind::Dir {
|
2019-04-26 13:17:36 -07:00
|
|
|
path: cumulative_path.clone(),
|
2019-04-19 12:48:29 -07:00
|
|
|
entries: Default::default(),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return __WASI_ENOTDIR;
|
|
|
|
};
|
|
|
|
let inode_val = InodeVal::from_file_metadata(
|
|
|
|
&cur_file_metadata,
|
|
|
|
path_segment.clone(),
|
|
|
|
false,
|
|
|
|
kind,
|
|
|
|
);
|
|
|
|
|
|
|
|
let new_inode = state.fs.inodes.insert(inode_val);
|
|
|
|
let inode_idx = state.fs.inode_counter.get();
|
|
|
|
state.fs.inode_counter.replace(inode_idx + 1);
|
|
|
|
// reborrow to insert entry
|
|
|
|
if let Kind::Dir { entries, .. } = &mut state.fs.inodes[cur_dir_inode].kind
|
|
|
|
{
|
|
|
|
assert!(entries.insert(path_segment.clone(), new_inode).is_none());
|
|
|
|
state.fs.inodes[new_inode].stat.st_ino = state.fs.inode_counter.get();
|
|
|
|
cur_dir_inode = new_inode;
|
|
|
|
}
|
2019-04-03 11:56:45 -07:00
|
|
|
}
|
|
|
|
}
|
2019-04-19 12:48:29 -07:00
|
|
|
Kind::Symlink { .. } => unimplemented!("Symlinks not yet supported in `path_open`"),
|
2019-04-03 11:56:45 -07:00
|
|
|
_ => return __WASI_ENOTDIR,
|
|
|
|
}
|
|
|
|
}
|
2019-04-19 12:48:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
let file_name = path_vec.last().unwrap();
|
|
|
|
|
|
|
|
debug!(
|
|
|
|
"Looking for file {} in directory {:#?}",
|
|
|
|
file_name, cumulative_path
|
|
|
|
);
|
|
|
|
cumulative_path.push(file_name);
|
|
|
|
let file_path = cumulative_path;
|
|
|
|
|
|
|
|
let out_fd = if let Kind::Dir { entries, .. } = &mut state.fs.inodes[cur_dir_inode].kind {
|
|
|
|
if let Some(child) = entries.get(file_name).cloned() {
|
|
|
|
let child_inode_val = &state.fs.inodes[child];
|
|
|
|
// early return based on flags
|
|
|
|
if o_flags & __WASI_O_EXCL != 0 {
|
|
|
|
return __WASI_EEXIST;
|
|
|
|
}
|
|
|
|
if o_flags & __WASI_O_DIRECTORY != 0 {
|
|
|
|
match &child_inode_val.kind {
|
|
|
|
Kind::Dir { .. } => (),
|
|
|
|
Kind::Symlink { .. } => {
|
|
|
|
unimplemented!("Symlinks not yet supported in path_open")
|
|
|
|
}
|
|
|
|
_ => return __WASI_ENOTDIR,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// do logic on child
|
|
|
|
wasi_try!(state
|
|
|
|
.fs
|
|
|
|
.create_fd(fs_rights_base, fs_rights_inheriting, fs_flags, child))
|
|
|
|
} else {
|
|
|
|
// if entry does not exist in parent directory, try to lazily
|
|
|
|
// load it; possibly creating or truncating it if flags set
|
|
|
|
let real_opened_file = {
|
|
|
|
let mut open_options = std::fs::OpenOptions::new();
|
|
|
|
let open_options = open_options.read(true).write(true);
|
|
|
|
let open_options = if o_flags & __WASI_O_CREAT != 0 {
|
|
|
|
debug!(
|
|
|
|
"File {} may be created when opened if it does not exist",
|
|
|
|
&path_string
|
|
|
|
);
|
|
|
|
open_options.create(true)
|
|
|
|
} else {
|
|
|
|
open_options
|
|
|
|
};
|
|
|
|
let open_options = if o_flags & __WASI_O_TRUNC != 0 {
|
|
|
|
debug!("File {} will be truncated when opened", &path_string);
|
|
|
|
open_options.truncate(true)
|
|
|
|
} else {
|
|
|
|
open_options
|
|
|
|
};
|
|
|
|
let real_open_file =
|
|
|
|
wasi_try!(open_options.open(&file_path).map_err(|_| __WASI_EIO));
|
|
|
|
debug!("Opening host file {}", &path_string);
|
|
|
|
|
|
|
|
real_open_file
|
|
|
|
};
|
|
|
|
// record lazily loaded or newly created fd
|
|
|
|
let new_inode = state.fs.inodes.insert(InodeVal {
|
|
|
|
stat: __wasi_filestat_t::default(),
|
|
|
|
is_preopened: false,
|
|
|
|
name: file_name.clone(),
|
|
|
|
kind: Kind::File {
|
|
|
|
handle: WasiFile::HostFile(real_opened_file),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// reborrow to insert entry
|
|
|
|
if let Kind::Dir { entries, .. } = &mut state.fs.inodes[working_dir.inode].kind {
|
|
|
|
entries.insert(file_name.clone(), new_inode);
|
|
|
|
}
|
|
|
|
let new_fd = wasi_try!(state.fs.create_fd(
|
|
|
|
fs_rights_base,
|
|
|
|
fs_rights_inheriting,
|
|
|
|
fs_flags,
|
|
|
|
new_inode,
|
|
|
|
));
|
|
|
|
|
|
|
|
new_fd
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// working_dir did not match on Kind::Dir
|
|
|
|
return __WASI_ENOTDIR;
|
2019-04-03 11:56:45 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
fd_cell.set(out_fd);
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-04-01 12:11:11 -07:00
|
|
|
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_readlink(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
buf: WasmPtr<u8>,
|
|
|
|
buf_len: u32,
|
|
|
|
bufused: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_readlink");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_remove_directory(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_remove_directory");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_rename(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
old_fd: __wasi_fd_t,
|
|
|
|
old_path: WasmPtr<u8, Array>,
|
|
|
|
old_path_len: u32,
|
|
|
|
new_fd: __wasi_fd_t,
|
|
|
|
new_path: WasmPtr<u8, Array>,
|
|
|
|
new_path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_rename");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_symlink(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
old_path: WasmPtr<u8, Array>,
|
|
|
|
old_path_len: u32,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
new_path: WasmPtr<u8, Array>,
|
|
|
|
new_path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_symlink");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn path_unlink_file(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
fd: __wasi_fd_t,
|
|
|
|
path: WasmPtr<u8, Array>,
|
|
|
|
path_len: u32,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::path_unlink_file");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn poll_oneoff(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
in_: WasmPtr<__wasi_subscription_t, Array>,
|
|
|
|
out_: WasmPtr<__wasi_event_t, Array>,
|
|
|
|
nsubscriptions: u32,
|
|
|
|
nevents: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::poll_oneoff");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-04-22 15:06:40 -07:00
|
|
|
pub fn proc_exit(ctx: &mut Ctx, code: __wasi_exitcode_t) -> Result<Infallible, ExitCode> {
|
2019-04-22 11:57:50 -07:00
|
|
|
debug!("wasi::proc_exit, {}", code);
|
2019-04-22 11:42:52 -07:00
|
|
|
Err(ExitCode { code })
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn proc_raise(ctx: &mut Ctx, sig: __wasi_signal_t) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::proc_raise");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-29 13:06:06 -07:00
|
|
|
|
|
|
|
/// ### `random_get()`
|
|
|
|
/// Fill buffer with high-quality random data. This function may be slow and block
|
|
|
|
/// Inputs:
|
|
|
|
/// - `void *buf`
|
|
|
|
/// A pointer to a buffer where the random bytes will be written
|
|
|
|
/// - `size_t buf_len`
|
|
|
|
/// The number of bytes that will be written
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn random_get(ctx: &mut Ctx, buf: WasmPtr<u8, Array>, buf_len: u32) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::random_get");
|
2019-03-29 13:06:06 -07:00
|
|
|
let mut rng = thread_rng();
|
|
|
|
let memory = ctx.memory(0);
|
|
|
|
|
2019-04-01 17:50:53 -07:00
|
|
|
let buf = wasi_try!(buf.deref(memory, 0, buf_len));
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let u8_buffer = &mut *(buf as *const [_] as *mut [_] as *mut [u8]);
|
|
|
|
thread_rng().fill(u8_buffer);
|
2019-03-29 13:06:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 13:06:06 -07:00
|
|
|
|
|
|
|
/// ### `sched_yield()`
|
|
|
|
/// Yields execution of the thread
|
2019-03-28 17:00:10 -07:00
|
|
|
pub fn sched_yield(ctx: &mut Ctx) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::sched_yield");
|
2019-04-01 16:36:41 -07:00
|
|
|
::std::thread::yield_now();
|
2019-03-29 13:06:06 -07:00
|
|
|
__WASI_ESUCCESS
|
2019-03-28 11:54:22 -07:00
|
|
|
}
|
2019-03-29 13:06:06 -07:00
|
|
|
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn sock_recv(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
sock: __wasi_fd_t,
|
|
|
|
ri_data: WasmPtr<__wasi_iovec_t, Array>,
|
|
|
|
ri_data_len: u32,
|
|
|
|
ri_flags: __wasi_riflags_t,
|
|
|
|
ro_datalen: WasmPtr<u32>,
|
|
|
|
ro_flags: WasmPtr<__wasi_roflags_t>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::sock_recv");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn sock_send(
|
|
|
|
ctx: &mut Ctx,
|
|
|
|
sock: __wasi_fd_t,
|
|
|
|
si_data: WasmPtr<__wasi_ciovec_t, Array>,
|
|
|
|
si_data_len: u32,
|
|
|
|
si_flags: __wasi_siflags_t,
|
|
|
|
so_datalen: WasmPtr<u32>,
|
|
|
|
) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::sock_send");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-03-28 22:10:11 -07:00
|
|
|
pub fn sock_shutdown(ctx: &mut Ctx, sock: __wasi_fd_t, how: __wasi_sdflags_t) -> __wasi_errno_t {
|
2019-04-02 09:47:45 -07:00
|
|
|
debug!("wasi::sock_shutdown");
|
2019-03-28 11:54:22 -07:00
|
|
|
unimplemented!()
|
|
|
|
}
|