diff options
| author | Eric Paris <eparis@redhat.com> | 2014-03-11 13:50:46 -0400 |
|---|---|---|
| committer | Eric Paris <eparis@redhat.com> | 2014-09-23 16:20:10 -0400 |
| commit | ce5d112827e5c2e9864323d0efd7ec2a62c6dce0 (patch) | |
| tree | 65ef4096ef889dbfe47fc4c5c0735125d0718c0e /arch/parisc/include | |
| parent | 0451623ad780a478b11c29736dae506e0059966a (diff) | |
ARCH: AUDIT: implement syscall_get_arch for all arches
For all arches which support audit implement syscall_get_arch()
They are all pretty easy and straight forward, stolen from how the call
to audit_syscall_entry() determines the arch.
Based-on-patch-by: Richard Briggs <rgb@redhat.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
Cc: linux-ia64@vger.kernel.org
Cc: microblaze-uclinux@itee.uq.edu.au
Cc: linux-mips@linux-mips.org
Cc: linux@lists.openrisc.net
Cc: linux-parisc@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: sparclinux@vger.kernel.org
Diffstat (limited to 'arch/parisc/include')
| -rw-r--r-- | arch/parisc/include/asm/syscall.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/parisc/include/asm/syscall.h b/arch/parisc/include/asm/syscall.h index 8bdfd2c8c39f..a5eba95d87fe 100644 --- a/arch/parisc/include/asm/syscall.h +++ b/arch/parisc/include/asm/syscall.h | |||
| @@ -3,6 +3,8 @@ | |||
| 3 | #ifndef _ASM_PARISC_SYSCALL_H_ | 3 | #ifndef _ASM_PARISC_SYSCALL_H_ |
| 4 | #define _ASM_PARISC_SYSCALL_H_ | 4 | #define _ASM_PARISC_SYSCALL_H_ |
| 5 | 5 | ||
| 6 | #include <uapi/linux/audit.h> | ||
| 7 | #include <linux/compat.h> | ||
| 6 | #include <linux/err.h> | 8 | #include <linux/err.h> |
| 7 | #include <asm/ptrace.h> | 9 | #include <asm/ptrace.h> |
| 8 | 10 | ||
| @@ -37,4 +39,13 @@ static inline void syscall_get_arguments(struct task_struct *tsk, | |||
| 37 | } | 39 | } |
| 38 | } | 40 | } |
| 39 | 41 | ||
| 42 | static inline int syscall_get_arch(void) | ||
| 43 | { | ||
| 44 | int arch = AUDIT_ARCH_PARISC; | ||
| 45 | #ifdef CONFIG_64BIT | ||
| 46 | if (!is_compat_task()) | ||
| 47 | arch = AUDIT_ARCH_PARISC64; | ||
| 48 | #endif | ||
| 49 | return arch; | ||
| 50 | } | ||
| 40 | #endif /*_ASM_PARISC_SYSCALL_H_*/ | 51 | #endif /*_ASM_PARISC_SYSCALL_H_*/ |
