1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use super::*;

impl<'a, 'c> JournalSyscallPlayer<'a, 'c> {
    #[allow(clippy::result_large_err)]
    pub(crate) unsafe fn action_fd_open(
        &mut self,
        fd: u32,
        dirfd: u32,
        dirflags: u32,
        path: Cow<'a, str>,
        o_flags: Oflags,
        fs_rights_base: Rights,
        fs_rights_inheriting: Rights,
        fs_flags: Fdflags,
    ) -> Result<(), WasiRuntimeError> {
        tracing::trace!(%fd, %dirfd, %dirflags,  "Replay journal - FdOpen {}", path);
        JournalEffector::apply_path_open(
            &mut self.ctx,
            fd,
            dirfd,
            dirflags,
            &path,
            o_flags,
            fs_rights_base,
            fs_rights_inheriting,
            fs_flags,
        )
        .map_err(anyhow_err_to_runtime_err)?;
        Ok(())
    }
}