diff options
| author | Philipp Stephani | 2020-12-17 11:20:55 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2021-04-10 21:01:46 +0200 |
| commit | f3a7536aa29e6690c66f69174079ba51d40c0443 (patch) | |
| tree | 5f16989652dc6294245f5dc767bbf51cfd9a7983 /.gitignore | |
| parent | 2d17e0124e4232db6344b18cec466eb31920e675 (diff) | |
| download | emacs-scratch/seccomp-helper-binary.tar.gz emacs-scratch/seccomp-helper-binary.zip | |
Add a helper binary to create a basic Secure Computing filter.scratch/seccomp-helper-binary
The binary uses the 'seccomp' helper library. The library isn't
needed to load the generated Secure Computing filter.
* configure.ac: Check for 'seccomp' header and library.
* lib-src/seccomp-filter.c: New helper binary to generate a generic
Secure Computing filter for GNU/Linux.
* lib-src/Makefile.in (DONT_INSTALL): Add 'seccomp-filter' helper
binary if possible.
(all): Add Secure Computing filter file if possible.
(seccomp-filter$(EXEEXT)): Compile helper binary.
(seccomp-filter.bpf seccomp-filter.pfc): Generate filter files.
* test/src/emacs-tests.el (emacs-tests/seccomp/allows-stdout)
(emacs-tests/seccomp/forbids-subprocess): New unit tests.
* test/Makefile.in (src/emacs-tests.log): Add dependency on the helper
binary.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index b653ef215b9..ecf768dc4d6 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -188,6 +188,7 @@ lib-src/make-docfile | |||
| 188 | lib-src/make-fingerprint | 188 | lib-src/make-fingerprint |
| 189 | lib-src/movemail | 189 | lib-src/movemail |
| 190 | lib-src/profile | 190 | lib-src/profile |
| 191 | lib-src/seccomp-filter | ||
| 191 | lib-src/test-distrib | 192 | lib-src/test-distrib |
| 192 | lib-src/update-game-score | 193 | lib-src/update-game-score |
| 193 | nextstep/Cocoa/Emacs.base/Contents/Info.plist | 194 | nextstep/Cocoa/Emacs.base/Contents/Info.plist |
| @@ -301,3 +302,7 @@ nt/emacs.rc | |||
| 301 | nt/emacsclient.rc | 302 | nt/emacsclient.rc |
| 302 | src/gdb.ini | 303 | src/gdb.ini |
| 303 | /var/ | 304 | /var/ |
| 305 | |||
| 306 | # Seccomp filter files. | ||
| 307 | lib-src/seccomp-filter.bpf | ||
| 308 | lib-src/seccomp-filter.pfc | ||