diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-07-01 09:56:16 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-07-01 13:44:10 +0200 |
commit | b915543b46a2aa599fdd2169e51bcfd88812a12b (patch) | |
tree | 8025e6654829d4c245b5b6b6f47a84543ebffb7b /arch/ia64/ia32/audit.c | |
parent | [PATCH] audit: support for object context filters (diff) | |
download | linux-b915543b46a2aa599fdd2169e51bcfd88812a12b.tar.xz linux-b915543b46a2aa599fdd2169e51bcfd88812a12b.zip |
[PATCH] audit syscall classes
Allow to tie upper bits of syscall bitmap in audit rules to kernel-defined
sets of syscalls. Infrastructure, a couple of classes (with 32bit counterparts
for biarch targets) and actual tie-in on i386, amd64 and ia64.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/ia64/ia32/audit.c')
-rw-r--r-- | arch/ia64/ia32/audit.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/ia64/ia32/audit.c b/arch/ia64/ia32/audit.c new file mode 100644 index 000000000000..ab94f2e58cdd --- /dev/null +++ b/arch/ia64/ia32/audit.c @@ -0,0 +1,11 @@ +#include <asm-i386/unistd.h> + +unsigned ia32_dir_class[] = { +#include <asm-generic/audit_dir_write.h> +~0U +}; + +unsigned ia32_chattr_class[] = { +#include <asm-generic/audit_change_attr.h> +~0U +}; |