[][src]Struct tabox::syscall_filter::SyscallFilter

pub struct SyscallFilter {
    pub default_action: SyscallFilterAction,
    pub rules: Vec<(String, SyscallFilterAction)>,
}

Syscall filter configuration

Fields

default_action: SyscallFilterAction

Default action to execute

rules: Vec<(String, SyscallFilterAction)>

Sandbox filter rules in the form of (syscall_name, action)

Methods

impl SyscallFilter[src]

pub fn build(multiprocess: bool, chmod: bool) -> Self[src]

Build a filter that blocks most dangerous syscalls

pub fn default_action(&mut self, action: SyscallFilterAction) -> &mut Self[src]

Set the default filter action

pub fn add_rule<S: Into<String>>(
    &mut self,
    syscall: S,
    action: SyscallFilterAction
) -> &mut Self
[src]

Add a rule to the filter

Trait Implementations

impl Clone for SyscallFilter[src]

impl Debug for SyscallFilter[src]

impl Default for SyscallFilter[src]

impl<'de> Deserialize<'de> for SyscallFilter[src]

impl Serialize for SyscallFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.