1063 lines
32 KiB
Rust
1063 lines
32 KiB
Rust
#![allow(non_camel_case_types)]
|
|
use super::fs_helpers::path_get;
|
|
use crate::ctx::WasiCtx;
|
|
use crate::fdentry::{Descriptor, FdEntry};
|
|
use crate::memory::*;
|
|
use crate::sys::fdentry_impl::determine_type_rights;
|
|
use crate::sys::hostcalls_impl::fs_helpers::path_open_rights;
|
|
use crate::sys::{host_impl, hostcalls_impl};
|
|
use crate::{host, wasm32, Error, Result};
|
|
use filetime::{set_file_handle_times, FileTime};
|
|
use log::trace;
|
|
use std::fs::File;
|
|
use std::io::{self, Read, Seek, SeekFrom, Write};
|
|
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
|
|
|
pub(crate) fn fd_close(wasi_ctx: &mut WasiCtx, fd: wasm32::__wasi_fd_t) -> Result<()> {
|
|
trace!("fd_close(fd={:?})", fd);
|
|
|
|
let fd = dec_fd(fd);
|
|
if let Some(fdent) = wasi_ctx.fds.get(&fd) {
|
|
// can't close preopened files
|
|
if fdent.preopen_path.is_some() {
|
|
return Err(Error::ENOTSUP);
|
|
}
|
|
}
|
|
|
|
let mut fe = wasi_ctx.fds.remove(&fd).ok_or(Error::EBADF)?;
|
|
fe.fd_object.needs_close = true;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn fd_datasync(wasi_ctx: &WasiCtx, fd: wasm32::__wasi_fd_t) -> Result<()> {
|
|
trace!("fd_datasync(fd={:?})", fd);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_DATASYNC, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
fd.sync_data().map_err(Into::into)
|
|
}
|
|
|
|
pub(crate) fn fd_pread(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
iovs_ptr: wasm32::uintptr_t,
|
|
iovs_len: wasm32::size_t,
|
|
offset: wasm32::__wasi_filesize_t,
|
|
nread: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_pread(fd={:?}, iovs_ptr={:#x?}, iovs_len={:?}, offset={}, nread={:#x?})",
|
|
fd,
|
|
iovs_ptr,
|
|
iovs_len,
|
|
offset,
|
|
nread
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_READ, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let iovs = dec_iovec_slice(memory, iovs_ptr, iovs_len)?;
|
|
|
|
let offset = dec_filesize(offset);
|
|
if offset > i64::max_value() as u64 {
|
|
return Err(Error::EIO);
|
|
}
|
|
let buf_size = iovs.iter().map(|v| v.buf_len).sum();
|
|
let mut buf = vec![0; buf_size];
|
|
let host_nread = hostcalls_impl::fd_pread(fd, &mut buf, offset)?;
|
|
let mut buf_offset = 0;
|
|
let mut left = host_nread;
|
|
for iov in &iovs {
|
|
if left == 0 {
|
|
break;
|
|
}
|
|
let vec_len = std::cmp::min(iov.buf_len, left);
|
|
unsafe { std::slice::from_raw_parts_mut(iov.buf as *mut u8, vec_len) }
|
|
.copy_from_slice(&buf[buf_offset..buf_offset + vec_len]);
|
|
buf_offset += vec_len;
|
|
left -= vec_len;
|
|
}
|
|
|
|
trace!(" | *nread={:?}", host_nread);
|
|
|
|
enc_usize_byref(memory, nread, host_nread)
|
|
}
|
|
|
|
pub(crate) fn fd_pwrite(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
iovs_ptr: wasm32::uintptr_t,
|
|
iovs_len: wasm32::size_t,
|
|
offset: wasm32::__wasi_filesize_t,
|
|
nwritten: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_pwrite(fd={:?}, iovs_ptr={:#x?}, iovs_len={:?}, offset={}, nwritten={:#x?})",
|
|
fd,
|
|
iovs_ptr,
|
|
iovs_len,
|
|
offset,
|
|
nwritten
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_READ, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let iovs = dec_iovec_slice(memory, iovs_ptr, iovs_len)?;
|
|
|
|
let offset = dec_filesize(offset);
|
|
if offset > i64::max_value() as u64 {
|
|
return Err(Error::EIO);
|
|
}
|
|
let buf_size = iovs.iter().map(|v| v.buf_len).sum();
|
|
let mut buf = Vec::with_capacity(buf_size);
|
|
for iov in &iovs {
|
|
buf.extend_from_slice(unsafe {
|
|
std::slice::from_raw_parts(iov.buf as *const u8, iov.buf_len)
|
|
});
|
|
}
|
|
let host_nwritten = hostcalls_impl::fd_pwrite(fd, &buf, offset)?;
|
|
|
|
trace!(" | *nwritten={:?}", host_nwritten);
|
|
|
|
enc_usize_byref(memory, nwritten, host_nwritten)
|
|
}
|
|
|
|
pub(crate) fn fd_read(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
iovs_ptr: wasm32::uintptr_t,
|
|
iovs_len: wasm32::size_t,
|
|
nread: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_read(fd={:?}, iovs_ptr={:#x?}, iovs_len={:?}, nread={:#x?})",
|
|
fd,
|
|
iovs_ptr,
|
|
iovs_len,
|
|
nread
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let mut iovs = dec_iovec_slice(memory, iovs_ptr, iovs_len)?;
|
|
let fe = wasi_ctx.get_fd_entry_mut(fd, host::__WASI_RIGHT_FD_READ, 0)?;
|
|
let mut iovs: Vec<io::IoSliceMut> = iovs
|
|
.iter_mut()
|
|
.map(|vec| unsafe { host::iovec_to_host_mut(vec) })
|
|
.collect();
|
|
|
|
let maybe_host_nread = match &mut *fe.fd_object.descriptor {
|
|
Descriptor::File(f) => f.read_vectored(&mut iovs),
|
|
Descriptor::Stdin => io::stdin().lock().read_vectored(&mut iovs),
|
|
_ => return Err(Error::EBADF),
|
|
};
|
|
|
|
let host_nread = maybe_host_nread?;
|
|
|
|
trace!(" | *nread={:?}", host_nread);
|
|
|
|
enc_usize_byref(memory, nread, host_nread)
|
|
}
|
|
|
|
pub(crate) fn fd_renumber(
|
|
wasi_ctx: &mut WasiCtx,
|
|
from: wasm32::__wasi_fd_t,
|
|
to: wasm32::__wasi_fd_t,
|
|
) -> Result<()> {
|
|
trace!("fd_renumber(from={:?}, to={:?})", from, to);
|
|
|
|
let from = dec_fd(from);
|
|
let to = dec_fd(to);
|
|
|
|
if !wasi_ctx.contains_fd_entry(from) || !wasi_ctx.contains_fd_entry(to) {
|
|
return Err(Error::EBADF);
|
|
}
|
|
|
|
// Don't allow renumbering over a pre-opened resource.
|
|
// TODO: Eventually, we do want to permit this, once libpreopen in
|
|
// userspace is capable of removing entries from its tables as well.
|
|
if wasi_ctx.fds[&from].preopen_path.is_some() || wasi_ctx.fds[&to].preopen_path.is_some() {
|
|
return Err(Error::ENOTSUP);
|
|
}
|
|
|
|
// check if stdio fds
|
|
// TODO should we renumber stdio fds?
|
|
if !wasi_ctx.fds[&from].fd_object.descriptor.is_file()
|
|
|| !wasi_ctx.fds[&to].fd_object.descriptor.is_file()
|
|
{
|
|
return Err(Error::EBADF);
|
|
}
|
|
|
|
let fe_from_dup = wasi_ctx.fds[&from]
|
|
.fd_object
|
|
.descriptor
|
|
.as_file()
|
|
.and_then(FdEntry::duplicate)?;
|
|
|
|
wasi_ctx.fds.insert(to, fe_from_dup);
|
|
wasi_ctx.fds.remove(&from);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn fd_seek(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
offset: wasm32::__wasi_filedelta_t,
|
|
whence: wasm32::__wasi_whence_t,
|
|
newoffset: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_seek(fd={:?}, offset={:?}, whence={}, newoffset={:#x?})",
|
|
fd,
|
|
offset,
|
|
wasm32::whence_to_str(whence),
|
|
newoffset
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let offset = dec_filedelta(offset);
|
|
let whence = dec_whence(whence);
|
|
|
|
let rights = if offset == 0 && whence == host::__WASI_WHENCE_CUR {
|
|
host::__WASI_RIGHT_FD_TELL
|
|
} else {
|
|
host::__WASI_RIGHT_FD_SEEK | host::__WASI_RIGHT_FD_TELL
|
|
};
|
|
let mut fd = wasi_ctx
|
|
.get_fd_entry(fd, rights, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let pos = match whence {
|
|
host::__WASI_WHENCE_CUR => SeekFrom::Current(offset),
|
|
host::__WASI_WHENCE_END => SeekFrom::End(offset),
|
|
host::__WASI_WHENCE_SET => SeekFrom::Start(offset as u64),
|
|
_ => return Err(Error::EINVAL),
|
|
};
|
|
let host_newoffset = fd.seek(pos)?;
|
|
|
|
trace!(" | *newoffset={:?}", host_newoffset);
|
|
|
|
enc_filesize_byref(memory, newoffset, host_newoffset)
|
|
}
|
|
|
|
pub(crate) fn fd_tell(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
newoffset: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!("fd_tell(fd={:?}, newoffset={:#x?})", fd, newoffset);
|
|
|
|
let fd = dec_fd(fd);
|
|
let mut fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_TELL, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let host_offset = fd.seek(SeekFrom::Current(0))?;
|
|
|
|
trace!(" | *newoffset={:?}", host_offset);
|
|
|
|
enc_filesize_byref(memory, newoffset, host_offset)
|
|
}
|
|
|
|
pub(crate) fn fd_fdstat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
fdstat_ptr: wasm32::uintptr_t, // *mut wasm32::__wasi_fdstat_t
|
|
) -> Result<()> {
|
|
trace!("fd_fdstat_get(fd={:?}, fdstat_ptr={:#x?})", fd, fdstat_ptr);
|
|
|
|
let mut fdstat = dec_fdstat_byref(memory, fdstat_ptr)?;
|
|
let fd = dec_fd(fd);
|
|
let fe = wasi_ctx.get_fd_entry(fd, 0, 0)?;
|
|
let fd = fe.fd_object.descriptor.as_file()?;
|
|
|
|
let fs_flags = hostcalls_impl::fd_fdstat_get(fd)?;
|
|
|
|
fdstat.fs_filetype = fe.fd_object.file_type;
|
|
fdstat.fs_rights_base = fe.rights_base;
|
|
fdstat.fs_rights_inheriting = fe.rights_inheriting;
|
|
fdstat.fs_flags = fs_flags;
|
|
|
|
trace!(" | *buf={:?}", fdstat);
|
|
|
|
enc_fdstat_byref(memory, fdstat_ptr, fdstat)
|
|
}
|
|
|
|
pub(crate) fn fd_fdstat_set_flags(
|
|
wasi_ctx: &WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
fdflags: wasm32::__wasi_fdflags_t,
|
|
) -> Result<()> {
|
|
trace!("fd_fdstat_set_flags(fd={:?}, fdflags={:#x?})", fd, fdflags);
|
|
|
|
let fdflags = dec_fdflags(fdflags);
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, 0, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
hostcalls_impl::fd_fdstat_set_flags(fd, fdflags)
|
|
}
|
|
|
|
pub(crate) fn fd_fdstat_set_rights(
|
|
wasi_ctx: &mut WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
fs_rights_base: wasm32::__wasi_rights_t,
|
|
fs_rights_inheriting: wasm32::__wasi_rights_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_fdstat_set_rights(fd={:?}, fs_rights_base={:#x?}, fs_rights_inheriting={:#x?})",
|
|
fd,
|
|
fs_rights_base,
|
|
fs_rights_inheriting
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fe = wasi_ctx.fds.get_mut(&fd).ok_or(Error::EBADF)?;
|
|
|
|
if fe.rights_base & fs_rights_base != fs_rights_base
|
|
|| fe.rights_inheriting & fs_rights_inheriting != fs_rights_inheriting
|
|
{
|
|
return Err(Error::ENOTCAPABLE);
|
|
}
|
|
fe.rights_base = fs_rights_base;
|
|
fe.rights_inheriting = fs_rights_inheriting;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn fd_sync(wasi_ctx: &WasiCtx, fd: wasm32::__wasi_fd_t) -> Result<()> {
|
|
trace!("fd_sync(fd={:?})", fd);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_SYNC, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
fd.sync_all().map_err(Into::into)
|
|
}
|
|
|
|
pub(crate) fn fd_write(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
iovs_ptr: wasm32::uintptr_t,
|
|
iovs_len: wasm32::size_t,
|
|
nwritten: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_write(fd={:?}, iovs_ptr={:#x?}, iovs_len={:?}, nwritten={:#x?})",
|
|
fd,
|
|
iovs_ptr,
|
|
iovs_len,
|
|
nwritten
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let iovs = dec_iovec_slice(memory, iovs_ptr, iovs_len)?;
|
|
let fe = wasi_ctx.get_fd_entry_mut(fd, host::__WASI_RIGHT_FD_WRITE, 0)?;
|
|
let iovs: Vec<io::IoSlice> = iovs
|
|
.iter()
|
|
.map(|vec| unsafe { host::iovec_to_host(vec) })
|
|
.collect();
|
|
|
|
// perform unbuffered writes
|
|
let host_nwritten = match &mut *fe.fd_object.descriptor {
|
|
Descriptor::File(f) => f.write_vectored(&iovs)?,
|
|
Descriptor::Stdin => return Err(Error::EBADF),
|
|
Descriptor::Stdout => {
|
|
// lock for the duration of the scope
|
|
let stdout = io::stdout();
|
|
let mut stdout = stdout.lock();
|
|
let nwritten = stdout.write_vectored(&iovs)?;
|
|
stdout.flush()?;
|
|
nwritten
|
|
}
|
|
Descriptor::Stderr => io::stderr().lock().write_vectored(&iovs)?,
|
|
};
|
|
|
|
trace!(" | *nwritten={:?}", host_nwritten);
|
|
|
|
enc_usize_byref(memory, nwritten, host_nwritten)
|
|
}
|
|
|
|
pub(crate) fn fd_advise(
|
|
wasi_ctx: &WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
offset: wasm32::__wasi_filesize_t,
|
|
len: wasm32::__wasi_filesize_t,
|
|
advice: wasm32::__wasi_advice_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_advise(fd={:?}, offset={}, len={}, advice={:?})",
|
|
fd,
|
|
offset,
|
|
len,
|
|
advice
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let advice = dec_advice(advice);
|
|
let offset = dec_filesize(offset);
|
|
let len = dec_filesize(len);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_ADVISE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
hostcalls_impl::fd_advise(fd, advice, offset, len)
|
|
}
|
|
|
|
pub(crate) fn fd_allocate(
|
|
wasi_ctx: &WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
offset: wasm32::__wasi_filesize_t,
|
|
len: wasm32::__wasi_filesize_t,
|
|
) -> Result<()> {
|
|
trace!("fd_allocate(fd={:?}, offset={}, len={})", fd, offset, len);
|
|
|
|
let fd = dec_fd(fd);
|
|
let offset = dec_filesize(offset);
|
|
let len = dec_filesize(len);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_ALLOCATE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let metadata = fd.metadata()?;
|
|
|
|
let current_size = metadata.len();
|
|
let wanted_size = offset.checked_add(len).ok_or(Error::E2BIG)?;
|
|
// This check will be unnecessary when rust-lang/rust#63326 is fixed
|
|
if wanted_size > i64::max_value() as u64 {
|
|
return Err(Error::E2BIG);
|
|
}
|
|
|
|
if wanted_size > current_size {
|
|
fd.set_len(wanted_size).map_err(Into::into)
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
pub(crate) fn path_create_directory(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_create_directory(dirfd={:?}, path_ptr={:#x?}, path_len={})",
|
|
dirfd,
|
|
path_ptr,
|
|
path_len,
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let rights = host::__WASI_RIGHT_PATH_OPEN | host::__WASI_RIGHT_PATH_CREATE_DIRECTORY;
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, rights, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, 0, path, false)?;
|
|
|
|
hostcalls_impl::path_create_directory(resolved)
|
|
}
|
|
|
|
pub(crate) fn path_link(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_dirfd: wasm32::__wasi_fd_t,
|
|
old_flags: wasm32::__wasi_lookupflags_t,
|
|
old_path_ptr: wasm32::uintptr_t,
|
|
old_path_len: wasm32::size_t,
|
|
new_dirfd: wasm32::__wasi_fd_t,
|
|
new_path_ptr: wasm32::uintptr_t,
|
|
new_path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_link(old_dirfd={:?}, old_flags={:?}, old_path_ptr={:#x?}, old_path_len={}, new_dirfd={:?}, new_path_ptr={:#x?}, new_path_len={})",
|
|
old_dirfd,
|
|
old_flags,
|
|
old_path_ptr,
|
|
old_path_len,
|
|
new_dirfd,
|
|
new_path_ptr,
|
|
new_path_len,
|
|
);
|
|
|
|
let old_dirfd = dec_fd(old_dirfd);
|
|
let new_dirfd = dec_fd(new_dirfd);
|
|
let old_path =
|
|
dec_slice_of::<u8>(memory, old_path_ptr, old_path_len).and_then(host::path_from_slice)?;
|
|
let new_path =
|
|
dec_slice_of::<u8>(memory, new_path_ptr, new_path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (old_path_ptr,old_path_len)='{}'", old_path);
|
|
trace!(" | (new_path_ptr,new_path_len)='{}'", new_path);
|
|
|
|
let old_dirfd = wasi_ctx
|
|
.get_fd_entry(old_dirfd, host::__WASI_RIGHT_PATH_LINK_SOURCE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let new_dirfd = wasi_ctx
|
|
.get_fd_entry(new_dirfd, host::__WASI_RIGHT_PATH_LINK_TARGET, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved_old = path_get(old_dirfd, 0, old_path, false)?;
|
|
let resolved_new = path_get(new_dirfd, 0, new_path, false)?;
|
|
|
|
hostcalls_impl::path_link(resolved_old, resolved_new)
|
|
}
|
|
|
|
pub(crate) fn path_open(
|
|
wasi_ctx: &mut WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
dirflags: wasm32::__wasi_lookupflags_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
oflags: wasm32::__wasi_oflags_t,
|
|
fs_rights_base: wasm32::__wasi_rights_t,
|
|
fs_rights_inheriting: wasm32::__wasi_rights_t,
|
|
fs_flags: wasm32::__wasi_fdflags_t,
|
|
fd_out_ptr: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_open(dirfd={:?}, dirflags={:?}, path_ptr={:#x?}, path_len={:?}, oflags={:#x?}, fs_rights_base={:#x?}, fs_rights_inheriting={:#x?}, fs_flags={:#x?}, fd_out_ptr={:#x?})",
|
|
dirfd,
|
|
dirflags,
|
|
path_ptr,
|
|
path_len,
|
|
oflags,
|
|
fs_rights_base,
|
|
fs_rights_inheriting,
|
|
fs_flags,
|
|
fd_out_ptr
|
|
);
|
|
|
|
// pre-encode fd_out_ptr to -1 in case of error in opening a path
|
|
enc_fd_byref(memory, fd_out_ptr, wasm32::__wasi_fd_t::max_value())?;
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let dirflags = dec_lookupflags(dirflags);
|
|
let oflags = dec_oflags(oflags);
|
|
let fs_rights_base = dec_rights(fs_rights_base);
|
|
let fs_rights_inheriting = dec_rights(fs_rights_inheriting);
|
|
let fs_flags = dec_fdflags(fs_flags);
|
|
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let (needed_base, needed_inheriting) =
|
|
path_open_rights(fs_rights_base, fs_rights_inheriting, oflags, fs_flags);
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, needed_base, needed_inheriting)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, dirflags, path, oflags & host::__WASI_O_CREAT != 0)?;
|
|
|
|
// which open mode do we need?
|
|
let read = fs_rights_base & (host::__WASI_RIGHT_FD_READ | host::__WASI_RIGHT_FD_READDIR) != 0;
|
|
let write = fs_rights_base
|
|
& (host::__WASI_RIGHT_FD_DATASYNC
|
|
| host::__WASI_RIGHT_FD_WRITE
|
|
| host::__WASI_RIGHT_FD_ALLOCATE
|
|
| host::__WASI_RIGHT_FD_FILESTAT_SET_SIZE)
|
|
!= 0;
|
|
|
|
let fd = hostcalls_impl::path_open(resolved, read, write, oflags, fs_flags)?;
|
|
|
|
// Determine the type of the new file descriptor and which rights contradict with this type
|
|
let (_ty, max_base, max_inheriting) = determine_type_rights(&fd)?;
|
|
let mut fe = FdEntry::from(fd)?;
|
|
fe.rights_base &= max_base;
|
|
fe.rights_inheriting &= max_inheriting;
|
|
let guest_fd = wasi_ctx.insert_fd_entry(fe)?;
|
|
|
|
trace!(" | *fd={:?}", guest_fd);
|
|
|
|
enc_fd_byref(memory, fd_out_ptr, guest_fd)
|
|
}
|
|
|
|
pub(crate) fn fd_readdir(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
buf: wasm32::uintptr_t,
|
|
buf_len: wasm32::size_t,
|
|
cookie: wasm32::__wasi_dircookie_t,
|
|
buf_used: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_readdir(fd={:?}, buf={:#x?}, buf_len={}, cookie={:#x?}, buf_used={:#x?})",
|
|
fd,
|
|
buf,
|
|
buf_len,
|
|
cookie,
|
|
buf_used,
|
|
);
|
|
|
|
enc_usize_byref(memory, buf_used, 0)?;
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_READDIR, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let host_buf = dec_slice_of_mut::<u8>(memory, buf, buf_len)?;
|
|
|
|
trace!(" | (buf,buf_len)={:?}", host_buf);
|
|
|
|
let cookie = dec_dircookie(cookie);
|
|
|
|
let host_bufused = hostcalls_impl::fd_readdir(fd, host_buf, cookie)?;
|
|
|
|
trace!(" | *buf_used={:?}", host_bufused);
|
|
|
|
enc_usize_byref(memory, buf_used, host_bufused)
|
|
}
|
|
|
|
pub(crate) fn path_readlink(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
buf_ptr: wasm32::uintptr_t,
|
|
buf_len: wasm32::size_t,
|
|
buf_used: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_readlink(dirfd={:?}, path_ptr={:#x?}, path_len={:?}, buf_ptr={:#x?}, buf_len={}, buf_used={:#x?})",
|
|
dirfd,
|
|
path_ptr,
|
|
path_len,
|
|
buf_ptr,
|
|
buf_len,
|
|
buf_used,
|
|
);
|
|
|
|
enc_usize_byref(memory, buf_used, 0)?;
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_vec)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", &path);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_READLINK, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, 0, &path, false)?;
|
|
|
|
let mut buf = dec_slice_of_mut::<u8>(memory, buf_ptr, buf_len)?;
|
|
|
|
let host_bufused = hostcalls_impl::path_readlink(resolved, &mut buf)?;
|
|
|
|
trace!(" | (buf_ptr,*buf_used)={:?}", buf);
|
|
trace!(" | *buf_used={:?}", host_bufused);
|
|
|
|
enc_usize_byref(memory, buf_used, host_bufused)
|
|
}
|
|
|
|
pub(crate) fn path_rename(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_dirfd: wasm32::__wasi_fd_t,
|
|
old_path_ptr: wasm32::uintptr_t,
|
|
old_path_len: wasm32::size_t,
|
|
new_dirfd: wasm32::__wasi_fd_t,
|
|
new_path_ptr: wasm32::uintptr_t,
|
|
new_path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_rename(old_dirfd={:?}, old_path_ptr={:#x?}, old_path_len={:?}, new_dirfd={:?}, new_path_ptr={:#x?}, new_path_len={:?})",
|
|
old_dirfd,
|
|
old_path_ptr,
|
|
old_path_len,
|
|
new_dirfd,
|
|
new_path_ptr,
|
|
new_path_len,
|
|
);
|
|
|
|
let old_dirfd = dec_fd(old_dirfd);
|
|
let new_dirfd = dec_fd(new_dirfd);
|
|
let old_path =
|
|
dec_slice_of::<u8>(memory, old_path_ptr, old_path_len).and_then(host::path_from_slice)?;
|
|
let new_path =
|
|
dec_slice_of::<u8>(memory, new_path_ptr, new_path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (old_path_ptr,old_path_len)='{}'", old_path);
|
|
trace!(" | (new_path_ptr,new_path_len)='{}'", new_path);
|
|
|
|
let old_dirfd = wasi_ctx
|
|
.get_fd_entry(old_dirfd, host::__WASI_RIGHT_PATH_RENAME_SOURCE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let new_dirfd = wasi_ctx
|
|
.get_fd_entry(new_dirfd, host::__WASI_RIGHT_PATH_RENAME_TARGET, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved_old = path_get(old_dirfd, 0, old_path, false)?;
|
|
let resolved_new = path_get(new_dirfd, 0, new_path, false)?;
|
|
|
|
hostcalls_impl::path_rename(resolved_old, resolved_new)
|
|
}
|
|
|
|
pub(crate) fn fd_filestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
filestat_ptr: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_filestat_get(fd={:?}, filestat_ptr={:#x?})",
|
|
fd,
|
|
filestat_ptr
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, 0, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let host_filestat = hostcalls_impl::fd_filestat_get_impl(fd)?;
|
|
|
|
trace!(" | *filestat_ptr={:?}", host_filestat);
|
|
|
|
enc_filestat_byref(memory, filestat_ptr, host_filestat)
|
|
}
|
|
|
|
pub(crate) fn fd_filestat_set_times(
|
|
wasi_ctx: &WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
st_atim: wasm32::__wasi_timestamp_t,
|
|
st_mtim: wasm32::__wasi_timestamp_t,
|
|
fst_flags: wasm32::__wasi_fstflags_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_filestat_set_times(fd={:?}, st_atim={}, st_mtim={}, fst_flags={:#x?})",
|
|
fd,
|
|
st_atim,
|
|
st_mtim,
|
|
fst_flags
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_FILESTAT_SET_TIMES, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let st_atim = dec_timestamp(st_atim);
|
|
let st_mtim = dec_timestamp(st_mtim);
|
|
let fst_flags = dec_fstflags(fst_flags);
|
|
|
|
fd_filestat_set_times_impl(fd, st_atim, st_mtim, fst_flags)
|
|
}
|
|
|
|
pub(crate) fn fd_filestat_set_times_impl(
|
|
fd: &File,
|
|
st_atim: wasm32::__wasi_timestamp_t,
|
|
st_mtim: wasm32::__wasi_timestamp_t,
|
|
fst_flags: wasm32::__wasi_fstflags_t,
|
|
) -> Result<()> {
|
|
let set_atim = fst_flags & host::__WASI_FILESTAT_SET_ATIM != 0;
|
|
let set_atim_now = fst_flags & host::__WASI_FILESTAT_SET_ATIM_NOW != 0;
|
|
let set_mtim = fst_flags & host::__WASI_FILESTAT_SET_MTIM != 0;
|
|
let set_mtim_now = fst_flags & host::__WASI_FILESTAT_SET_MTIM_NOW != 0;
|
|
|
|
if (set_atim && set_atim_now) || (set_mtim && set_mtim_now) {
|
|
return Err(Error::EINVAL);
|
|
}
|
|
let atim = if set_atim {
|
|
let time = UNIX_EPOCH + Duration::from_nanos(st_atim);
|
|
Some(FileTime::from_system_time(time))
|
|
} else if set_atim_now {
|
|
let time = SystemTime::now();
|
|
Some(FileTime::from_system_time(time))
|
|
} else {
|
|
None
|
|
};
|
|
|
|
let mtim = if set_mtim {
|
|
let time = UNIX_EPOCH + Duration::from_nanos(st_mtim);
|
|
Some(FileTime::from_system_time(time))
|
|
} else if set_mtim_now {
|
|
let time = SystemTime::now();
|
|
Some(FileTime::from_system_time(time))
|
|
} else {
|
|
None
|
|
};
|
|
set_file_handle_times(fd, atim, mtim).map_err(Into::into)
|
|
}
|
|
|
|
pub(crate) fn fd_filestat_set_size(
|
|
wasi_ctx: &WasiCtx,
|
|
fd: wasm32::__wasi_fd_t,
|
|
st_size: wasm32::__wasi_filesize_t,
|
|
) -> Result<()> {
|
|
trace!("fd_filestat_set_size(fd={:?}, st_size={})", fd, st_size);
|
|
|
|
let fd = dec_fd(fd);
|
|
let fd = wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_FD_FILESTAT_SET_SIZE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
|
|
let st_size = dec_filesize(st_size);
|
|
// This check will be unnecessary when rust-lang/rust#63326 is fixed
|
|
if st_size > i64::max_value() as u64 {
|
|
return Err(Error::E2BIG);
|
|
}
|
|
fd.set_len(st_size).map_err(Into::into)
|
|
}
|
|
|
|
pub(crate) fn path_filestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
dirflags: wasm32::__wasi_lookupflags_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
filestat_ptr: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_filestat_get(dirfd={:?}, dirflags={:?}, path_ptr={:#x?}, path_len={}, filestat_ptr={:#x?})",
|
|
dirfd,
|
|
dirflags,
|
|
path_ptr,
|
|
path_len,
|
|
filestat_ptr
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let dirflags = dec_lookupflags(dirflags);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_FILESTAT_GET, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, dirflags, path, false)?;
|
|
let host_filestat = hostcalls_impl::path_filestat_get(resolved, dirflags)?;
|
|
|
|
trace!(" | *filestat_ptr={:?}", host_filestat);
|
|
|
|
enc_filestat_byref(memory, filestat_ptr, host_filestat)
|
|
}
|
|
|
|
pub(crate) fn path_filestat_set_times(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
dirflags: wasm32::__wasi_lookupflags_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
st_atim: wasm32::__wasi_timestamp_t,
|
|
st_mtim: wasm32::__wasi_timestamp_t,
|
|
fst_flags: wasm32::__wasi_fstflags_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_filestat_set_times(dirfd={:?}, dirflags={:?}, path_ptr={:#x?}, path_len={}, st_atim={}, st_mtim={}, fst_flags={:#x?})",
|
|
dirfd,
|
|
dirflags,
|
|
path_ptr,
|
|
path_len,
|
|
st_atim, st_mtim,
|
|
fst_flags
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let dirflags = dec_lookupflags(dirflags);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let st_atim = dec_timestamp(st_atim);
|
|
let st_mtim = dec_timestamp(st_mtim);
|
|
let fst_flags = dec_fstflags(fst_flags);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_FILESTAT_SET_TIMES, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, dirflags, path, false)?;
|
|
|
|
hostcalls_impl::path_filestat_set_times(resolved, dirflags, st_atim, st_mtim, fst_flags)
|
|
}
|
|
|
|
pub(crate) fn path_symlink(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
old_path_ptr: wasm32::uintptr_t,
|
|
old_path_len: wasm32::size_t,
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
new_path_ptr: wasm32::uintptr_t,
|
|
new_path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_symlink(old_path_ptr={:#x?}, old_path_len={}, dirfd={:?}, new_path_ptr={:#x?}, new_path_len={})",
|
|
old_path_ptr,
|
|
old_path_len,
|
|
dirfd,
|
|
new_path_ptr,
|
|
new_path_len
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let old_path =
|
|
dec_slice_of::<u8>(memory, old_path_ptr, old_path_len).and_then(host::path_from_slice)?;
|
|
let new_path =
|
|
dec_slice_of::<u8>(memory, new_path_ptr, new_path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (old_path_ptr,old_path_len)='{}'", old_path);
|
|
trace!(" | (new_path_ptr,new_path_len)='{}'", new_path);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_SYMLINK, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved_new = path_get(dirfd, 0, new_path, false)?;
|
|
|
|
hostcalls_impl::path_symlink(old_path, resolved_new)
|
|
}
|
|
|
|
pub(crate) fn path_unlink_file(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_unlink_file(dirfd={:?}, path_ptr={:#x?}, path_len={})",
|
|
dirfd,
|
|
path_ptr,
|
|
path_len
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_UNLINK_FILE, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, 0, path, false)?;
|
|
|
|
hostcalls_impl::path_unlink_file(resolved)
|
|
}
|
|
|
|
pub(crate) fn path_remove_directory(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
dirfd: wasm32::__wasi_fd_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"path_remove_directory(dirfd={:?}, path_ptr={:#x?}, path_len={})",
|
|
dirfd,
|
|
path_ptr,
|
|
path_len
|
|
);
|
|
|
|
let dirfd = dec_fd(dirfd);
|
|
let path = dec_slice_of::<u8>(memory, path_ptr, path_len).and_then(host::path_from_slice)?;
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
let dirfd = wasi_ctx
|
|
.get_fd_entry(dirfd, host::__WASI_RIGHT_PATH_REMOVE_DIRECTORY, 0)
|
|
.and_then(|fe| fe.fd_object.descriptor.as_file())?;
|
|
let resolved = path_get(dirfd, 0, path, false)?;
|
|
|
|
hostcalls_impl::path_remove_directory(resolved)
|
|
}
|
|
|
|
pub(crate) fn fd_prestat_get(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
prestat_ptr: wasm32::uintptr_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_prestat_get(fd={:?}, prestat_ptr={:#x?})",
|
|
fd,
|
|
prestat_ptr
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
// TODO: is this the correct right for this?
|
|
wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_PATH_OPEN, 0)
|
|
.and_then(|fe| {
|
|
let po_path = fe.preopen_path.as_ref().ok_or(Error::ENOTSUP)?;
|
|
if fe.fd_object.file_type != host::__WASI_FILETYPE_DIRECTORY {
|
|
return Err(Error::ENOTDIR);
|
|
}
|
|
|
|
let path = host_impl::path_from_host(po_path.as_os_str())?;
|
|
|
|
enc_prestat_byref(
|
|
memory,
|
|
prestat_ptr,
|
|
host::__wasi_prestat_t {
|
|
pr_type: host::__WASI_PREOPENTYPE_DIR,
|
|
u: host::__wasi_prestat_t___wasi_prestat_u {
|
|
dir: host::__wasi_prestat_t___wasi_prestat_u___wasi_prestat_u_dir_t {
|
|
pr_name_len: path.len(),
|
|
},
|
|
},
|
|
},
|
|
)
|
|
})
|
|
}
|
|
|
|
pub(crate) fn fd_prestat_dir_name(
|
|
wasi_ctx: &WasiCtx,
|
|
memory: &mut [u8],
|
|
fd: wasm32::__wasi_fd_t,
|
|
path_ptr: wasm32::uintptr_t,
|
|
path_len: wasm32::size_t,
|
|
) -> Result<()> {
|
|
trace!(
|
|
"fd_prestat_dir_name(fd={:?}, path_ptr={:#x?}, path_len={})",
|
|
fd,
|
|
path_ptr,
|
|
path_len
|
|
);
|
|
|
|
let fd = dec_fd(fd);
|
|
|
|
wasi_ctx
|
|
.get_fd_entry(fd, host::__WASI_RIGHT_PATH_OPEN, 0)
|
|
.and_then(|fe| {
|
|
let po_path = fe.preopen_path.as_ref().ok_or(Error::ENOTSUP)?;
|
|
if fe.fd_object.file_type != host::__WASI_FILETYPE_DIRECTORY {
|
|
return Err(Error::ENOTDIR);
|
|
}
|
|
|
|
let path = host_impl::path_from_host(po_path.as_os_str())?;
|
|
|
|
if path.len() > dec_usize(path_len) {
|
|
return Err(Error::ENAMETOOLONG);
|
|
}
|
|
|
|
trace!(" | (path_ptr,path_len)='{}'", path);
|
|
|
|
enc_slice_of(memory, path.as_bytes(), path_ptr)
|
|
})
|
|
}
|