forked from seccomp/libseccomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
65 lines (46 loc) · 2.41 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
libseccomp: An Enhanced Seccomp (mode 2) Helper Library
===============================================================================
https://github.com/seccomp/libseccomp
The libseccomp library provides an easy to use, platform independent, interface
to the Linux Kernel's syscall filtering mechanism. The libseccomp API is
designed to abstract away the underlying BPF based syscall filter language and
present a more conventional function-call based filtering interface that should
be familiar to, and easily adopted by, application developers.
* Online Resources
The library source repository currently lives on GitHub at the following URL:
-> https://github.com/seccomp/libseccomp
The project mailing list is currently hosted on Google Groups at the URL below,
please note that a Google account is not required to subscribe to the mailing
list.
-> https://groups.google.com/forum/#!forum/libseccomp
-> https://groups.google.com/forum/#!forum/libseccomp/join
* Documentation
The "doc/" directory contains all of the currently available documentation,
mostly in the form of manpages. The top level directory also contains a README
file (this file) as well as the LICENSE, CREDITS, SUBMITTING_PATCHES, and
CHANGELOG files.
Those who are interested in contributing to the the project are encouraged to
read the SUBMITTING_PATCHES in the top level directory.
* Building and Installing the Library
If you are building the libseccomp library from an official release tarball,
you should follow the familiar three step process used by most autotools based
applications:
# ./configure
# make [V=0|1]
# make install
However, if you are building the library from sources retrieved from the source
repository you may need to run the autogen.sh script before running configure.
In both cases, running "./configure -h" will display a list of build-time
configuration options.
* Testing the Library
There are a number of tests located in the "tests/" directory and a make target
which can be used to help automate their execution. If you want to run the
standard regression tests you can execute the following after building the
library:
# make check
Be warned that the test run can take a while to run and produces a lot of
output.
* Other Useful Tools
The "tools/" directory includes a number of tools which may be helpful in the
development of the library, or applications using the library. Not all of
these tools are installed by default.