diff options
| author | Philipp Stephani | 2020-12-17 11:20:55 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2020-12-29 14:37:51 +0100 |
| commit | 202a61d09cddf420ce2f18f86aea741f086022fd (patch) | |
| tree | 567adc566589c3cda9cb3b4e615e575c34f3ec1c /.gitignore | |
| parent | 2334f9bfa3f54a606d1748ab86ee9fd481369d7a (diff) | |
| download | emacs-scratch/seccomp.tar.gz emacs-scratch/seccomp.zip | |
Add a helper binary to create a basic Secure Computing filter.scratch/seccomp
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 bf7e9349813..8c8b1f7584c 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -187,6 +187,7 @@ lib-src/make-docfile | |||
| 187 | lib-src/make-fingerprint | 187 | lib-src/make-fingerprint |
| 188 | lib-src/movemail | 188 | lib-src/movemail |
| 189 | lib-src/profile | 189 | lib-src/profile |
| 190 | lib-src/seccomp-filter | ||
| 190 | lib-src/test-distrib | 191 | lib-src/test-distrib |
| 191 | lib-src/update-game-score | 192 | lib-src/update-game-score |
| 192 | nextstep/Cocoa/Emacs.base/Contents/Info.plist | 193 | nextstep/Cocoa/Emacs.base/Contents/Info.plist |
| @@ -298,3 +299,7 @@ nt/emacs.rc | |||
| 298 | nt/emacsclient.rc | 299 | nt/emacsclient.rc |
| 299 | src/gdb.ini | 300 | src/gdb.ini |
| 300 | /var/ | 301 | /var/ |
| 302 | |||
| 303 | # Seccomp filter files. | ||
| 304 | lib-src/seccomp-filter.bpf | ||
| 305 | lib-src/seccomp-filter.pfc | ||