Struct gaol::platform::linux::seccomp::Filter

source ·
pub struct Filter {
    program: Vec<sock_filter>,
}

Fields§

§program: Vec<sock_filter>

Implementations§

source§

impl Filter

source

pub fn new(profile: &Profile) -> Filter

source

pub fn dump(&self)

source

pub fn activate(&self) -> Result<(), c_int>

Activates this filter, applying all of its restrictions forevermore. This can only be done once.

source

fn allow_this_syscall(&mut self)

source

fn allow_syscalls(&mut self, syscalls: &[u32])

source

fn if_syscall_is<F>(&mut self, number: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_arg0_is<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_arg1_is<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_arg1_hasnt_set<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_arg2_is<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_k_is<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

source

fn if_k_hasnt_set<F>(&mut self, value: u32, then: F)
where F: FnMut(&mut Filter),

Auto Trait Implementations§

§

impl Freeze for Filter

§

impl RefUnwindSafe for Filter

§

impl Send for Filter

§

impl Sync for Filter

§

impl Unpin for Filter

§

impl UnwindSafe for Filter

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.