sallyport 0.6.3

API for the Enarx hypervisor-microkernel boundary
Documentation
// SPDX-License-Identifier: Apache-2.0

use super::super::types::Argv;
use super::Alloc;
use crate::guest::alloc::{Allocator, Collector, InOut, Output};
use crate::libc::{pollfd, SYS_poll};
use crate::Result;

use core::ffi::{c_int, c_long};

pub struct Poll<'a> {
    pub fds: &'a mut [pollfd],
    pub timeout: c_int,
}

unsafe impl<'a> Alloc<'a> for Poll<'a> {
    const NUM: c_long = SYS_poll;

    type Argv = Argv<3>;
    type Ret = c_int;

    type Staged = InOut<'a, [pollfd], &'a mut [pollfd]>;
    type Committed = Output<'a, [pollfd], &'a mut [pollfd]>;
    type Collected = Option<Result<c_int>>;

    fn stage(self, alloc: &mut impl Allocator) -> Result<(Self::Argv, Self::Staged)> {
        let fds = InOut::stage_slice(alloc, self.fds)?;
        Ok((Argv([fds.offset(), fds.len(), self.timeout as _]), fds))
    }

    fn collect(
        fds: Self::Committed,
        ret: Result<Self::Ret>,
        col: &impl Collector,
    ) -> Self::Collected {
        match ret {
            Ok(ret) if ret as usize > fds.len() => None,
            res @ Ok(ret) => {
                unsafe { fds.collect_range(col, 0..ret as _) };
                Some(res)
            }
            err => Some(err),
        }
    }
}