summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/scall64-64.S
diff options
context:
space:
mode:
authorMarkos Chandras2014-01-22 15:40:02 +0100
committerRalf Baechle2014-03-26 23:09:08 +0100
commit9d37c405ed7e4bb10798c37ef4e642b682425c4e (patch)
tree78769bc0db8669af7e51832412908b3af3ff351e /arch/mips/kernel/scall64-64.S
parentMIPS: ptrace: Move away from secure_computing_strict (diff)
downloadkernel-qcow2-linux-9d37c405ed7e4bb10798c37ef4e642b682425c4e.tar.gz
kernel-qcow2-linux-9d37c405ed7e4bb10798c37ef4e642b682425c4e.tar.xz
kernel-qcow2-linux-9d37c405ed7e4bb10798c37ef4e642b682425c4e.zip
MIPS: kernel: scalls: Skip the syscall if denied by the seccomp filter
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Reviewed-by: Paul Burton <paul.burton@imgtec.com> Reviewed-by: James Hogan <james.hogan@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/6399/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/scall64-64.S')
-rw-r--r--arch/mips/kernel/scall64-64.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S
index b56e254beb15..7f5d88be6b9e 100644
--- a/arch/mips/kernel/scall64-64.S
+++ b/arch/mips/kernel/scall64-64.S
@@ -82,6 +82,8 @@ syscall_trace_entry:
move a0, sp
jal syscall_trace_enter
+ bltz v0, 2f # seccomp failed? Skip syscall
+
move t0, s0
RESTORE_STATIC
ld a0, PT_R4(sp) # Restore argument registers
@@ -102,7 +104,7 @@ syscall_trace_entry:
sd t1, PT_R0(sp) # save it for syscall restarting
1: sd v0, PT_R2(sp) # result
- j syscall_exit
+2: j syscall_exit
illegal_syscall:
/* This also isn't a 64-bit syscall, throw an error. */