wasmer_wasix/journal/effector/syscalls/
path_symlink.rs

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
32
33
34
35
36
37
38
use super::*;

impl JournalEffector {
    pub fn save_path_symlink(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        old_path: String,
        fd: Fd,
        new_path: String,
    ) -> anyhow::Result<()> {
        Self::save_event(
            ctx,
            JournalEntry::CreateSymbolicLinkV1 {
                old_path: old_path.into(),
                fd,
                new_path: new_path.into(),
            },
        )
    }

    pub fn apply_path_symlink(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        old_path: &str,
        fd: Fd,
        new_path: &str,
    ) -> anyhow::Result<()> {
        crate::syscalls::path_symlink_internal(ctx, old_path, fd, new_path)
            .map_err(|err| {
                anyhow::format_err!(
                    "journal restore error: failed to create symlink (old_path={}, fd={}, new_path={}) - {}",
                    old_path,
                    fd,
                    new_path,
                    err
                )
            })?;
        Ok(())
    }
}