1 Linux-Seccomp version 0.001
2 ===========================
4 Secure Computing (seccomp) is Linux's system call filtering mechanism.
5 This system can operate in two modes: I<strict>, where only a very
6 small number of system calls are allowed and the more modern I<filter>
7 (or seccomp mode 2) which permits advanced filtering of system calls.
8 This module is only concerned with the latter.
10 Linux::Seccomp is a Perl interface to the
11 L<libseccomp|https://github.com/seccomp/libseccomp> library which
12 provides a simple way to use seccomp mode 2.
14 It should be mentioned that this module is not production-ready at the
15 moment -- work needs to be done to port the libseccomp testsuite and
16 the documentation needs to be improved.
20 To install this module type the following:
29 This module requires these other modules and libraries:
36 Copyright (C) 2016 by Marius Gavrilescu
38 This library is free software; you can redistribute it and/or modify
39 it under the same terms as Perl itself, either Perl version 5.24.0 or,
40 at your option, any later version of Perl 5 you may have available.