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
6 * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Copyright (C) 2001 MIPS Technologies, Inc.
10 #include <linux/config.h>
11 #include <linux/errno.h>
13 #include <asm/asmmacro.h>
14 #include <asm/mipsregs.h>
15 #include <asm/regdef.h>
16 #include <asm/stackframe.h>
17 #include <asm/thread_info.h>
18 #include <asm/unistd.h>
20 /* This duplicates the definition from <linux/sched.h> */
21 #define PT_TRACESYS 0x00000002 /* tracing system calls */
23 /* This duplicates the definition from <asm/signal.h> */
24 #define SIGILL 4 /* Illegal instruction (ANSI). */
26 #ifndef CONFIG_MIPS32_O32
27 /* No O32, so define handle_sys here */
28 #define handle_sysn32 handle_sys
32 NESTED(handle_sysn32, PT_SIZE, sp)
33 #ifndef CONFIG_MIPS32_O32
40 dsubu t0, v0, __NR_N32_Linux # check syscall number
41 sltiu t0, t0, __NR_N32_Linux_syscalls + 1
43 #ifndef CONFIG_MIPS32_O32
44 ld t1, PT_EPC(sp) # skip syscall on return
45 daddiu t1, 4 # skip to next instruction
48 beqz t0, not_n32_scall
50 dsll t0, v0, 3 # offset into table
51 ld t2, (sysn32_call_table - (__NR_N32_Linux * 8))(t0)
53 sd a3, PT_R26(sp) # save a3 for syscall restarting
55 li t1, _TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT
56 LONG_L t0, TI_FLAGS($28) # syscall tracing enabled?
58 bnez t0, n32_syscall_trace_entry
60 jalr t2 # Do The Real Thing (TM)
62 li t0, -EMAXERRNO - 1 # error?
64 sd t0, PT_R7(sp) # set error flag
68 sd v0, PT_R0(sp) # set flag for syscall restarting
69 1: sd v0, PT_R2(sp) # result
71 local_irq_disable # make sure need_resched and
72 # signals dont change between
74 LONG_L a2, TI_FLAGS($28) # current->work
75 li t0, _TIF_ALLWORK_MASK
77 bnez t0, n32_syscall_exit_work
81 n32_syscall_exit_work:
82 j syscall_exit_work_partial
84 /* ------------------------------------------------------------------------ */
86 n32_syscall_trace_entry:
95 ld a0, PT_R4(sp) # Restore argument registers
103 li t0, -EMAXERRNO - 1 # error?
105 sd t0, PT_R7(sp) # set error flag
109 sd v0, PT_R0(sp) # set flag for syscall restarting
110 1: sd v0, PT_R2(sp) # result
115 /* This is not an n32 compatibility syscall, pass it on to
116 the n64 syscall handlers. */
121 EXPORT(sysn32_call_table)
122 PTR sys_read /* 6000 */
127 PTR sys_newfstat /* 6005 */
132 PTR sys_mprotect /* 6010 */
135 PTR sys32_rt_sigaction
136 PTR sys32_rt_sigprocmask
137 PTR compat_sys_ioctl /* 6015 */
141 PTR compat_sys_writev
142 PTR sys_access /* 6020 */
144 PTR compat_sys_select
147 PTR sys_msync /* 6025 */
152 PTR sys_shmctl /* 6030 */
156 PTR compat_sys_nanosleep
157 PTR compat_sys_getitimer /* 6035 */
158 PTR compat_sys_setitimer
162 PTR sys_socket /* 6040 */
167 PTR compat_sys_sendmsg /* 6045 */
168 PTR compat_sys_recvmsg
172 PTR sys_getsockname /* 6050 */
175 PTR compat_sys_setsockopt
177 PTR sys_clone /* 6055 */
182 PTR sys_kill /* 6060 */
187 PTR sys_shmdt /* 6065 */
192 PTR compat_sys_fcntl /* 6070 */
197 PTR sys_ftruncate /* 6075 */
202 PTR sys_rename /* 6080 */
207 PTR sys_unlink /* 6085 */
212 PTR sys_chown /* 6090 */
216 PTR sys32_gettimeofday
217 PTR compat_sys_getrlimit /* 6095 */
218 PTR compat_sys_getrusage
222 PTR sys_getuid /* 6100 */
227 PTR sys_geteuid /* 6105 */
232 PTR sys_setsid /* 6110 */
237 PTR sys_setresuid /* 6115 */
242 PTR sys_setfsuid /* 6120 */
247 PTR sys32_rt_sigpending /* 6125 */
248 PTR sysn32_rt_sigtimedwait
249 PTR sys_rt_sigqueueinfo
250 PTR sys32_rt_sigsuspend
251 PTR sys32_sigaltstack
252 PTR compat_sys_utime /* 6130 */
254 PTR sys32_personality
256 PTR compat_sys_statfs
257 PTR compat_sys_fstatfs /* 6135 */
261 PTR sys_sched_setparam
262 PTR sys_sched_getparam /* 6140 */
263 PTR sys_sched_setscheduler
264 PTR sys_sched_getscheduler
265 PTR sys_sched_get_priority_max
266 PTR sys_sched_get_priority_min
267 PTR sys32_sched_rr_get_interval /* 6145 */
272 PTR sys_vhangup /* 6150 */
277 PTR compat_sys_setrlimit /* 6155 */
281 PTR sys32_settimeofday
282 PTR sys_mount /* 6160 */
287 PTR sys_sethostname /* 6165 */
288 PTR sys_setdomainname
289 PTR sys_ni_syscall /* was create_module */
291 PTR sys_delete_module
292 PTR sys_ni_syscall /* 6170, was get_kernel_syms */
293 PTR sys_ni_syscall /* was query_module */
296 PTR sys_ni_syscall /* res. for getpmsg */
297 PTR sys_ni_syscall /* 6175 for putpmsg */
298 PTR sys_ni_syscall /* res. for afs_syscall */
299 PTR sys_ni_syscall /* res. for security */
302 PTR sys_setxattr /* 6180 */
307 PTR sys_fgetxattr /* 6185 */
312 PTR sys_lremovexattr /* 6190 */
317 PTR compat_sys_sched_setaffinity /* 6195 */
318 PTR compat_sys_sched_getaffinity
322 PTR sys_io_setup /* 6200 */
327 PTR sys_exit_group /* 6205 */
328 PTR sys_lookup_dcookie
332 PTR sys_remap_file_pages /* 6210 */
333 PTR sysn32_rt_sigreturn
334 PTR compat_sys_fcntl64
335 PTR sys_set_tid_address
336 PTR sys_restart_syscall
337 PTR sys_semtimedop /* 6215 */
339 PTR compat_sys_statfs64
340 PTR compat_sys_fstatfs64
342 PTR sys32_timer_create /* 6220 */
343 PTR compat_sys_timer_settime
344 PTR compat_sys_timer_gettime
345 PTR sys_timer_getoverrun
347 PTR compat_sys_clock_settime /* 6225 */
348 PTR compat_sys_clock_gettime
349 PTR compat_sys_clock_getres
350 PTR compat_sys_clock_nanosleep
352 PTR compat_sys_utimes /* 6230 */
353 PTR sys_ni_syscall /* sys_mbind */
354 PTR sys_ni_syscall /* sys_get_mempolicy */
355 PTR sys_ni_syscall /* sys_set_mempolicy */
356 PTR compat_sys_mq_open
357 PTR sys_mq_unlink /* 6235 */
358 PTR compat_sys_mq_timedsend
359 PTR compat_sys_mq_timedreceive
360 PTR compat_sys_mq_notify
361 PTR compat_sys_mq_getsetattr
362 PTR sys_ni_syscall /* 6240, sys_vserver */
364 PTR sys_ni_syscall /* available, was setaltroot */
367 PTR sys_keyctl /* 6245 */
368 PTR sys_set_thread_area
370 PTR sys_inotify_add_watch
371 PTR sys_inotify_rm_watch