From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Drysdale Subject: [PATCH 2/2] audit,x86: add x32_execve[at] to syscall classification Date: Fri, 6 Mar 2015 15:40:38 +0000 Message-ID: <1425656438-3884-3-git-send-email-drysdale@google.com> References: <1425656438-3884-1-git-send-email-drysdale@google.com> Return-path: In-Reply-To: <1425656438-3884-1-git-send-email-drysdale@google.com> Sender: linux-kernel-owner@vger.kernel.org To: Brian Gerst , Ingo Molnar Cc: "H. Peter Anvin" , AKASHI Takahiro , Richard Guy Briggs , Eric Paris , Paul Moore , stable@vger.kernel.org, linux-audit@redhat.com, linux-kernel@vger.kernel.org, David Drysdale List-Id: linux-audit@redhat.com Treat x32 ABI variants of execve[at] the same as x86_64 variants. Slightly speculative as the audit subsystem doesn't currently work with x32 ABI syscalls. If and when audit+x32 does work, this should correctly classify exec calls. Signed-off-by: David Drysdale --- arch/x86/kernel/audit_64.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/x86/kernel/audit_64.c b/arch/x86/kernel/audit_64.c index f3672508b249..0aec72d8d3c7 100644 --- a/arch/x86/kernel/audit_64.c +++ b/arch/x86/kernel/audit_64.c @@ -49,6 +49,12 @@ int audit_classify_syscall(int abi, unsigned syscall) return 2; case __NR_openat: return 3; +#ifdef __NR_x32_execve + case __NR_x32_execve: +#endif +#ifdef __NR_x32_execveat + case __NR_x32_execveat: +#endif case __NR_execve: case __NR_execveat: return 5; -- 1.9.1