forked from google/nsjail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa686df
commit f2c8fff
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule kafel
updated
32 files
+4 −4 | .gitignore | |
+8 −85 | Makefile | |
+1 −1 | README.md | |
+63 −0 | build/Makefile.mk | |
+77 −0 | src/Makefile | |
+1 −0 | src/codegen.c | |
+0 −0 | src/codegen.h | |
+0 −0 | src/common.h | |
+0 −0 | src/context.c | |
+0 −0 | src/context.h | |
+6 −6 | src/expression.c | |
+0 −0 | src/expression.h | |
+0 −0 | src/kafel.c | |
+0 −0 | src/lexer.l | |
+0 −0 | src/parser.y | |
+0 −0 | src/policy.c | |
+0 −0 | src/policy.h | |
+0 −0 | src/range_rules.c | |
+0 −0 | src/range_rules.h | |
+0 −0 | src/syscall.c | |
+0 −0 | src/syscall.h | |
+0 −0 | src/syscalls/amd64_syscalls.c | |
+0 −0 | src/syscalls/arm_syscalls.c | |
+33 −0 | test/Makefile | |
+104 −0 | test/basic.c | |
+32 −0 | test/runner/Makefile | |
+190 −0 | test/runner/harness.c | |
+135 −0 | test/runner/harness.h | |
+73 −0 | test/runner/runner.c | |
+40 −0 | test/runner/runner.h | |
+2 −12 | tools/Makefile | |
+2 −24 | tools/dump_policy_bpf/Makefile |