Import libseccomp_2.1.1.orig.tar.gz
authorKees Cook <kees@debian.org>
Sat, 12 Apr 2014 17:44:22 +0000 (18:44 +0100)
committerKees Cook <kees@debian.org>
Sat, 12 Apr 2014 17:44:22 +0000 (18:44 +0100)
commit016ee2428d181b69d16ad511b020d97293a23caa
tree0e667d2d383b67a9d63bc64c9cf39917c3345502
Import libseccomp_2.1.1.orig.tar.gz

[dgit import orig libseccomp_2.1.1.orig.tar.gz]
157 files changed:
CHANGELOG [new file with mode: 0644]
CREDITS [new file with mode: 0644]
LICENSE [new file with mode: 0644]
Makefile [new file with mode: 0644]
README [new file with mode: 0644]
configure [new file with mode: 0755]
doc/Makefile [new file with mode: 0644]
doc/man/man1/scmp_sys_resolver.1 [new file with mode: 0644]
doc/man/man3/seccomp_arch_add.3 [new file with mode: 0644]
doc/man/man3/seccomp_arch_exist.3 [new file with mode: 0644]
doc/man/man3/seccomp_arch_native.3 [new file with mode: 0644]
doc/man/man3/seccomp_arch_remove.3 [new file with mode: 0644]
doc/man/man3/seccomp_attr_get.3 [new file with mode: 0644]
doc/man/man3/seccomp_attr_set.3 [new file with mode: 0644]
doc/man/man3/seccomp_export_bpf.3 [new file with mode: 0644]
doc/man/man3/seccomp_export_pfc.3 [new file with mode: 0644]
doc/man/man3/seccomp_init.3 [new file with mode: 0644]
doc/man/man3/seccomp_load.3 [new file with mode: 0644]
doc/man/man3/seccomp_merge.3 [new file with mode: 0644]
doc/man/man3/seccomp_release.3 [new file with mode: 0644]
doc/man/man3/seccomp_reset.3 [new file with mode: 0644]
doc/man/man3/seccomp_rule_add.3 [new file with mode: 0644]
doc/man/man3/seccomp_rule_add_array.3 [new file with mode: 0644]
doc/man/man3/seccomp_rule_add_exact.3 [new file with mode: 0644]
doc/man/man3/seccomp_rule_add_exact_array.3 [new file with mode: 0644]
doc/man/man3/seccomp_syscall_priority.3 [new file with mode: 0644]
doc/man/man3/seccomp_syscall_resolve_name.3 [new file with mode: 0644]
doc/man/man3/seccomp_syscall_resolve_name_arch.3 [new file with mode: 0644]
doc/man/man3/seccomp_syscall_resolve_num_arch.3 [new file with mode: 0644]
include/Makefile [new file with mode: 0644]
include/seccomp.h.in [new file with mode: 0644]
install.mk [new file with mode: 0644]
libseccomp.pc.in [new file with mode: 0644]
macros.mk [new file with mode: 0644]
src/Makefile [new file with mode: 0644]
src/api.c [new file with mode: 0644]
src/arch-arm-syscalls.c [new file with mode: 0644]
src/arch-arm.c [new file with mode: 0644]
src/arch-arm.h [new file with mode: 0644]
src/arch-x32-syscalls.c [new file with mode: 0644]
src/arch-x32.c [new file with mode: 0644]
src/arch-x32.h [new file with mode: 0644]
src/arch-x86-syscalls.c [new file with mode: 0644]
src/arch-x86.c [new file with mode: 0644]
src/arch-x86.h [new file with mode: 0644]
src/arch-x86_64-syscalls.c [new file with mode: 0644]
src/arch-x86_64.c [new file with mode: 0644]
src/arch-x86_64.h [new file with mode: 0644]
src/arch.c [new file with mode: 0644]
src/arch.h [new file with mode: 0644]
src/db.c [new file with mode: 0644]
src/db.h [new file with mode: 0644]
src/gen_bpf.c [new file with mode: 0644]
src/gen_bpf.h [new file with mode: 0644]
src/gen_pfc.c [new file with mode: 0644]
src/gen_pfc.h [new file with mode: 0644]
src/hash.c [new file with mode: 0644]
src/hash.h [new file with mode: 0644]
src/python/Makefile [new file with mode: 0644]
src/python/libseccomp.pxd [new file with mode: 0644]
src/python/seccomp.pyx [new file with mode: 0644]
src/python/setup.py [new file with mode: 0644]
src/system.h [new file with mode: 0644]
tags [new file with mode: 0644]
tests/00-test.c [new file with mode: 0644]
tests/01-sim-allow.c [new file with mode: 0644]
tests/01-sim-allow.py [new file with mode: 0755]
tests/01-sim-allow.tests [new file with mode: 0644]
tests/02-sim-basic.c [new file with mode: 0644]
tests/02-sim-basic.py [new file with mode: 0755]
tests/02-sim-basic.tests [new file with mode: 0644]
tests/03-sim-basic_chains.c [new file with mode: 0644]
tests/03-sim-basic_chains.py [new file with mode: 0755]
tests/03-sim-basic_chains.tests [new file with mode: 0644]
tests/04-sim-multilevel_chains.c [new file with mode: 0644]
tests/04-sim-multilevel_chains.py [new file with mode: 0755]
tests/04-sim-multilevel_chains.tests [new file with mode: 0644]
tests/05-sim-long_jumps.c [new file with mode: 0644]
tests/05-sim-long_jumps.py [new file with mode: 0755]
tests/05-sim-long_jumps.tests [new file with mode: 0644]
tests/06-sim-actions.c [new file with mode: 0644]
tests/06-sim-actions.py [new file with mode: 0755]
tests/06-sim-actions.tests [new file with mode: 0644]
tests/07-sim-db_bug_looping.c [new file with mode: 0644]
tests/07-sim-db_bug_looping.py [new file with mode: 0755]
tests/07-sim-db_bug_looping.tests [new file with mode: 0644]
tests/08-sim-subtree_checks.c [new file with mode: 0644]
tests/08-sim-subtree_checks.py [new file with mode: 0755]
tests/08-sim-subtree_checks.tests [new file with mode: 0644]
tests/09-sim-syscall_priority_pre.c [new file with mode: 0644]
tests/09-sim-syscall_priority_pre.py [new file with mode: 0755]
tests/09-sim-syscall_priority_pre.tests [new file with mode: 0644]
tests/10-sim-syscall_priority_post.c [new file with mode: 0644]
tests/10-sim-syscall_priority_post.py [new file with mode: 0755]
tests/10-sim-syscall_priority_post.tests [new file with mode: 0644]
tests/11-basic-basic_errors.c [new file with mode: 0644]
tests/11-basic-basic_errors.py [new file with mode: 0755]
tests/11-basic-basic_errors.tests [new file with mode: 0644]
tests/12-sim-basic_masked_ops.c [new file with mode: 0644]
tests/12-sim-basic_masked_ops.py [new file with mode: 0755]
tests/12-sim-basic_masked_ops.tests [new file with mode: 0644]
tests/13-basic-attrs.c [new file with mode: 0644]
tests/13-basic-attrs.py [new file with mode: 0755]
tests/13-basic-attrs.tests [new file with mode: 0644]
tests/14-sim-reset.c [new file with mode: 0644]
tests/14-sim-reset.py [new file with mode: 0755]
tests/14-sim-reset.tests [new file with mode: 0644]
tests/15-basic-resolver.c [new file with mode: 0644]
tests/15-basic-resolver.py [new file with mode: 0755]
tests/15-basic-resolver.tests [new file with mode: 0644]
tests/16-sim-arch_basic.c [new file with mode: 0644]
tests/16-sim-arch_basic.py [new file with mode: 0755]
tests/16-sim-arch_basic.tests [new file with mode: 0644]
tests/17-sim-arch_merge.c [new file with mode: 0644]
tests/17-sim-arch_merge.py [new file with mode: 0755]
tests/17-sim-arch_merge.tests [new file with mode: 0644]
tests/18-sim-basic_whitelist.c [new file with mode: 0644]
tests/18-sim-basic_whitelist.py [new file with mode: 0755]
tests/18-sim-basic_whitelist.tests [new file with mode: 0644]
tests/19-sim-missing_syscalls.c [new file with mode: 0644]
tests/19-sim-missing_syscalls.py [new file with mode: 0755]
tests/19-sim-missing_syscalls.tests [new file with mode: 0644]
tests/20-live-basic_die.c [new file with mode: 0644]
tests/20-live-basic_die.py [new file with mode: 0755]
tests/20-live-basic_die.tests [new file with mode: 0644]
tests/21-live-basic_allow.c [new file with mode: 0644]
tests/21-live-basic_allow.py [new file with mode: 0755]
tests/21-live-basic_allow.tests [new file with mode: 0644]
tests/22-sim-basic_chains_array.c [new file with mode: 0644]
tests/22-sim-basic_chains_array.py [new file with mode: 0755]
tests/22-sim-basic_chains_array.tests [new file with mode: 0644]
tests/23-sim-arch_all_basic.c [new file with mode: 0644]
tests/23-sim-arch_all_basic.py [new file with mode: 0755]
tests/23-sim-arch_all_basic.tests [new file with mode: 0644]
tests/24-live-arg_allow.c [new file with mode: 0644]
tests/24-live-arg_allow.py [new file with mode: 0755]
tests/24-live-arg_allow.tests [new file with mode: 0644]
tests/25-sim-multilevel_chains_adv.c [new file with mode: 0644]
tests/25-sim-multilevel_chains_adv.py [new file with mode: 0755]
tests/25-sim-multilevel_chains_adv.tests [new file with mode: 0644]
tests/Makefile [new file with mode: 0644]
tests/regression [new file with mode: 0755]
tests/testdiff [new file with mode: 0755]
tests/testgen [new file with mode: 0755]
tests/util.c [new file with mode: 0644]
tests/util.h [new file with mode: 0644]
tests/util.py [new file with mode: 0644]
tools/Makefile [new file with mode: 0644]
tools/bpf.h [new file with mode: 0644]
tools/check-syntax [new file with mode: 0755]
tools/scmp_app_inspector [new file with mode: 0755]
tools/scmp_arch_detect.c [new file with mode: 0644]
tools/scmp_bpf_disasm.c [new file with mode: 0644]
tools/scmp_bpf_sim.c [new file with mode: 0644]
tools/scmp_sys_resolver.c [new file with mode: 0644]
version.h [new file with mode: 0644]
version_info [new file with mode: 0644]