Release 4.10 arch/x86/ia32/audit.c
#include <asm/unistd_32.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
};
unsigned ia32_write_class[] = {
#include <asm-generic/audit_write.h>
~0U
};
unsigned ia32_read_class[] = {
#include <asm-generic/audit_read.h>
~0U
};
unsigned ia32_signal_class[] = {
#include <asm-generic/audit_signal.h>
~0U
};
int ia32_classify_syscall(unsigned syscall)
{
switch (syscall) {
case __NR_open:
return 2;
case __NR_openat:
return 3;
case __NR_socketcall:
return 4;
case __NR_execve:
case __NR_execveat:
return 5;
default:
return 1;
}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 42 | 93.33% | 1 | 50.00% |
david drysdale | david drysdale | 3 | 6.67% | 1 | 50.00% |
| Total | 45 | 100.00% | 2 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 92 | 85.19% | 3 | 50.00% |
amy griffis | amy griffis | 12 | 11.11% | 1 | 16.67% |
david drysdale | david drysdale | 3 | 2.78% | 1 | 16.67% |
thomas gleixner | thomas gleixner | 1 | 0.93% | 1 | 16.67% |
| Total | 108 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.