sandbox-seccomp 0.2.1

Seccomp BPF filtering for sandbox-rs (no root required)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! sandbox-seccomp: Seccomp BPF syscall filtering (no root required)
//!
//! This crate provides seccomp-based syscall filtering using BPF programs.
//! Seccomp does NOT require root - it only needs `PR_SET_NO_NEW_PRIVS`.

pub mod bpf;
pub mod profile;
pub mod syscall_table;

pub use bpf::SeccompBpf;
pub use profile::{SeccompFilter, SeccompProfile};