blob: b449b68662a9aa488400e5b6e86a71ac84d286f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle192ef362006-07-07 14:07:18 +01006 * Copyright (C) 1995-99, 2000- 02, 06 Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2001 MIPS Technologies, Inc.
8 * Copyright (C) 2004 Thiemo Seufer
Markos Chandras86bdb272013-12-04 14:35:28 +00009 * Copyright (C) 2014 Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
12#include <asm/asm.h>
13#include <asm/asmmacro.h>
Ralf Baechle192ef362006-07-07 14:07:18 +010014#include <asm/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/mipsregs.h>
16#include <asm/regdef.h>
17#include <asm/stackframe.h>
18#include <asm/isadep.h>
19#include <asm/sysmips.h>
20#include <asm/thread_info.h>
21#include <asm/unistd.h>
22#include <asm/war.h>
Sam Ravnborg048eb582005-09-09 22:32:31 +020023#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ralf Baechle70342282013-01-22 12:59:30 +010025 .align 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070026NESTED(handle_sys, PT_SIZE, sp)
27 .set noat
28 SAVE_SOME
Atsushi Nemotoeae6c0d2006-09-26 23:43:40 +090029 TRACE_IRQS_ON_RELOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 STI
31 .set at
32
33 lw t1, PT_EPC(sp) # skip syscall on return
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 addiu t1, 4 # skip to next instruction
36 sw t1, PT_EPC(sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 sw a3, PT_R26(sp) # save a3 for syscall restarting
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ralf Baechle46e12c02012-07-14 09:22:05 +020040 /*
41 * More than four arguments. Try to deal with it by copying the
42 * stack arguments from the user stack to the kernel stack.
43 * This Sucks (TM).
44 */
45 lw t0, PT_R29(sp) # get old user stack pointer
46
47 /*
48 * We intentionally keep the kernel stack a little below the top of
49 * userspace so we don't have to do a slower byte accurate check here.
50 */
51 lw t5, TI_ADDR_LIMIT($28)
52 addu t4, t0, 32
53 and t5, t4
54 bltz t5, bad_stack # -> sp is bad
55
56 /*
57 * Ok, copy the args from the luser stack to the kernel stack.
Ralf Baechle46e12c02012-07-14 09:22:05 +020058 */
59
60 .set push
61 .set noreorder
62 .set nomacro
63
Ralf Baechle7928eb02015-07-08 04:49:10 +020064load_a4: user_lw(t5, 16(t0)) # argument #5 from usp
65load_a5: user_lw(t6, 20(t0)) # argument #6 from usp
66load_a6: user_lw(t7, 24(t0)) # argument #7 from usp
67load_a7: user_lw(t8, 28(t0)) # argument #8 from usp
68loads_done:
Ralf Baechle46e12c02012-07-14 09:22:05 +020069
70 sw t5, 16(sp) # argument #5 to ksp
71 sw t6, 20(sp) # argument #6 to ksp
72 sw t7, 24(sp) # argument #7 to ksp
73 sw t8, 28(sp) # argument #8 to ksp
74 .set pop
75
76 .section __ex_table,"a"
Ralf Baechle7928eb02015-07-08 04:49:10 +020077 PTR load_a4, bad_stack_a4
78 PTR load_a5, bad_stack_a5
79 PTR load_a6, bad_stack_a6
80 PTR load_a7, bad_stack_a7
Ralf Baechle46e12c02012-07-14 09:22:05 +020081 .previous
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 lw t0, TI_FLAGS($28) # syscall tracing enabled?
Ralf Baechlee7f3b482013-05-29 01:02:18 +020084 li t1, _TIF_WORK_SYSCALL_ENTRY
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 and t0, t1
Ralf Baechle70342282013-01-22 12:59:30 +010086 bnez t0, syscall_trace_entry # -> yes
Markos Chandrasd218af72015-09-25 08:17:42 +010087syscall_common:
Matt Redfearna400bed2016-03-29 09:35:31 +010088 subu v0, v0, __NR_O32_Linux # check syscall number
Firoz Khanbe856432018-12-13 14:37:36 +053089 sltiu t0, v0, __NR_O32_Linux_syscalls
Markos Chandrasd218af72015-09-25 08:17:42 +010090 beqz t0, illegal_syscall
91
92 sll t0, v0, 2
93 la t1, sys_call_table
94 addu t1, t0
95 lw t2, (t1) # syscall routine
96
97 beqz t2, illegal_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 jalr t2 # Do The Real Thing (TM)
100
101 li t0, -EMAXERRNO - 1 # error?
102 sltu t0, t0, v0
103 sw t0, PT_R7(sp) # set error flag
104 beqz t0, 1f
105
Al Viro8f5a00eb2010-09-28 18:50:37 +0100106 lw t1, PT_R2(sp) # syscall number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 negu v0 # error
Al Viro8f5a00eb2010-09-28 18:50:37 +0100108 sw t1, PT_R0(sp) # save it for syscall restarting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091: sw v0, PT_R2(sp) # result
110
111o32_syscall_exit:
Al Viro02f884e2012-05-05 16:11:35 -0400112 j syscall_exit_partial
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/* ------------------------------------------------------------------------ */
115
116syscall_trace_entry:
117 SAVE_STATIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 move a0, sp
Markos Chandras4c21b8f2014-01-22 14:40:03 +0000119
120 /*
121 * syscall number is in v0 unless we called syscall(__NR_###)
122 * where the real syscall number is in a0
123 */
Matt Redfearna400bed2016-03-29 09:35:31 +0100124 move a1, v0
125 subu t2, v0, __NR_O32_Linux
126 bnez t2, 1f /* __NR_syscall at offset 0 */
Markos Chandras4c21b8f2014-01-22 14:40:03 +0000127 lw a1, PT_R4(sp)
128
1291: jal syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Markos Chandrasd218af72015-09-25 08:17:42 +0100131 bltz v0, 1f # seccomp failed? Skip syscall
Markos Chandras9d37c402014-01-22 14:40:02 +0000132
Ralf Baechle04a70522005-11-30 16:24:57 +0000133 RESTORE_STATIC
Matt Redfearna400bed2016-03-29 09:35:31 +0100134 lw v0, PT_R2(sp) # Restore syscall (maybe modified)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 lw a0, PT_R4(sp) # Restore argument registers
136 lw a1, PT_R5(sp)
137 lw a2, PT_R6(sp)
138 lw a3, PT_R7(sp)
Markos Chandrasd218af72015-09-25 08:17:42 +0100139 j syscall_common
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Markos Chandrasd218af72015-09-25 08:17:42 +01001411: j syscall_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143/* ------------------------------------------------------------------------ */
144
145 /*
Ralf Baechle7928eb02015-07-08 04:49:10 +0200146 * Our open-coded access area sanity test for the stack pointer
147 * failed. We probably should handle this case a bit more drastic.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149bad_stack:
Al Viro5b89c002010-09-28 18:50:47 +0100150 li v0, EFAULT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sw v0, PT_R2(sp)
152 li t0, 1 # set error flag
153 sw t0, PT_R7(sp)
154 j o32_syscall_exit
155
Ralf Baechle7928eb02015-07-08 04:49:10 +0200156bad_stack_a4:
157 li t5, 0
158 b load_a5
159
160bad_stack_a5:
161 li t6, 0
162 b load_a6
163
164bad_stack_a6:
165 li t7, 0
166 b load_a7
167
168bad_stack_a7:
169 li t8, 0
170 b loads_done
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /*
173 * The system call does not exist in this kernel
174 */
175illegal_syscall:
Atsushi Nemotobda82292008-10-25 01:17:22 +0900176 li v0, ENOSYS # error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 sw v0, PT_R2(sp)
178 li t0, 1 # set error flag
179 sw t0, PT_R7(sp)
180 j o32_syscall_exit
181 END(handle_sys)
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 LEAF(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 subu t0, a0, __NR_O32_Linux # check syscall number
Firoz Khanbe856432018-12-13 14:37:36 +0530185 sltiu v0, t0, __NR_O32_Linux_syscalls
Vlad Malove807f952008-11-18 15:05:46 -0800186 beqz t0, einval # do not recurse
Ralf Baechle46e12c02012-07-14 09:22:05 +0200187 sll t1, t0, 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 beqz v0, einval
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 lw t2, sys_call_table(t1) # syscall routine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 move a0, a1 # shift argument registers
192 move a1, a2
193 move a2, a3
194 lw a3, 16(sp)
195 lw t4, 20(sp)
196 lw t5, 24(sp)
197 lw t6, 28(sp)
198 sw t4, 16(sp)
199 sw t5, 20(sp)
200 sw t6, 24(sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 jr t2
202 /* Unreached */
203
Ralf Baechle70342282013-01-22 12:59:30 +0100204einval: li v0, -ENOSYS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 jr ra
206 END(sys_syscall)
207
Firoz Khan6a00cb62018-12-13 14:37:37 +0530208#ifdef CONFIG_MIPS_MT_FPAFF
209 /*
210 * For FPU affinity scheduling on MIPS MT processors, we need to
211 * intercept sys_sched_xxxaffinity() calls until we get a proper hook
212 * in kernel/sched/core.c. Considered only temporary we only support
213 * these hooks for the 32-bit kernel - there is no MIPS64 MT processor
214 * atm.
215 */
216#define sys_sched_setaffinity mipsmt_sys_sched_setaffinity
217#define sys_sched_getaffinity mipsmt_sys_sched_getaffinity
218#endif /* CONFIG_MIPS_MT_FPAFF */
219
Firoz Khandc7077f2019-01-02 20:26:17 +0530220#define __SYSCALL(nr, entry) PTR entry
Ralf Baechle46e12c02012-07-14 09:22:05 +0200221 .align 2
222 .type sys_call_table, @object
223EXPORT(sys_call_table)
Firoz Khan99bf73e2018-12-13 14:37:39 +0530224#include <asm/syscall_table_32_o32.h>
225#undef __SYSCALL