Add new constants from libseccomp 2.3.2 and 2.3.3
[linux-seccomp.git] / README
1 Linux-Seccomp version 0.001
2 ===========================
3
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.
9
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.
13
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.
17
18 INSTALLATION
19
20 To install this module type the following:
21
22 perl Makefile.PL
23 make
24 make test
25 make install
26
27 DEPENDENCIES
28
29 This module has no dependencies.
30
31 COPYRIGHT AND LICENCE
32
33 Copyright (C) 2016 by Marius Gavrilescu
34
35 This library is free software; you can redistribute it and/or modify
36 it under the same terms as Perl itself, either Perl version 5.24.0 or,
37 at your option, any later version of Perl 5 you may have available.
38
39
This page took 0.019532 seconds and 4 git commands to generate.