wasmer_wasix/journal/effector/syscalls/
port_bridge.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
39
40
41
use virtual_net::StreamSecurity;

use super::*;

impl JournalEffector {
    pub fn save_port_bridge(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        network: String,
        token: String,
        security: StreamSecurity,
    ) -> anyhow::Result<()> {
        Self::save_event(
            ctx,
            JournalEntry::PortBridgeV1 {
                network: network.into(),
                token: token.into(),
                security,
            },
        )
    }

    pub fn apply_port_bridge(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        network: &str,
        token: &str,
        security: StreamSecurity,
    ) -> anyhow::Result<()> {
        crate::syscalls::port_bridge_internal(ctx, network, token, security)
            .map(|r| r.map_err(|err| err.to_string()))
            .unwrap_or_else(|err| Err(err.to_string()))
            .map_err(|err| {
                anyhow::format_err!(
                    "journal restore error: failed to bridge the network file descriptor (network={}, security={:?}) - {}",
                    network,
                    security,
                    err
                )
            })?;
        Ok(())
    }
}