Skip to content

Releases: rust-vmm/seccompiler

v0.4.0

18 Oct 12:14
Compare
Choose a tag to compare

Changed

  • Seccomp is now activated via the seccomp syscall, not prctl

Added

  • A new Error::Seccomp variant is added to indictate seccomp syscall failures
  • Add apply_filter_all_threads convenience function which uses the seccomp
    TSYNC feature to synchronize all threads in the process to the same filter
  • A new Error::ThreadSync variant is added to indicate failure to sync threads

v0.3.0

14 Sep 07:43
Compare
Choose a tag to compare

v0.3.0

Changed

  • [#40]: Update Rust to Edition 2021

Fixed

  • [#31]: Implement From<BackendError> for Error
  • [#40]: Fix clippy complaints about missing Eq when PartialEq is implemented

v0.2.0

01 Oct 06:36
Compare
Choose a tag to compare

First release

Added

  • [#7]: Add functionality for Rust-based filters and implement the BPF compilation logic.
  • [#9]: Add json frontend, gated by the json feature.