Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Baechle | 192ef36 | 2006-07-07 14:07:18 +0100 | [diff] [blame] | 6 | * Copyright (C) 1995-99, 2000- 02, 06 Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 2001 MIPS Technologies, Inc. |
| 8 | * Copyright (C) 2004 Thiemo Seufer |
| 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/errno.h> |
| 11 | #include <asm/asm.h> |
| 12 | #include <asm/asmmacro.h> |
Ralf Baechle | 192ef36 | 2006-07-07 14:07:18 +0100 | [diff] [blame] | 13 | #include <asm/irqflags.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/mipsregs.h> |
| 15 | #include <asm/regdef.h> |
| 16 | #include <asm/stackframe.h> |
| 17 | #include <asm/isadep.h> |
| 18 | #include <asm/sysmips.h> |
| 19 | #include <asm/thread_info.h> |
| 20 | #include <asm/unistd.h> |
| 21 | #include <asm/war.h> |
Sam Ravnborg | 048eb58 | 2005-09-09 22:32:31 +0200 | [diff] [blame] | 22 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | /* Highest syscall used of any syscall flavour */ |
| 25 | #define MAX_SYSCALL_NO __NR_O32_Linux + __NR_O32_Linux_syscalls |
| 26 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 27 | .align 5 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | NESTED(handle_sys, PT_SIZE, sp) |
| 29 | .set noat |
| 30 | SAVE_SOME |
Atsushi Nemoto | eae6c0d | 2006-09-26 23:43:40 +0900 | [diff] [blame] | 31 | TRACE_IRQS_ON_RELOAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | STI |
| 33 | .set at |
| 34 | |
| 35 | lw t1, PT_EPC(sp) # skip syscall on return |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | subu v0, v0, __NR_O32_Linux # check syscall number |
| 38 | sltiu t0, v0, __NR_O32_Linux_syscalls + 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | addiu t1, 4 # skip to next instruction |
| 40 | sw t1, PT_EPC(sp) |
| 41 | beqz t0, illegal_syscall |
| 42 | |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 43 | sll t0, v0, 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | la t1, sys_call_table |
| 45 | addu t1, t0 |
| 46 | lw t2, (t1) # syscall routine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | beqz t2, illegal_syscall |
| 48 | |
| 49 | sw a3, PT_R26(sp) # save a3 for syscall restarting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 51 | /* |
| 52 | * More than four arguments. Try to deal with it by copying the |
| 53 | * stack arguments from the user stack to the kernel stack. |
| 54 | * This Sucks (TM). |
| 55 | */ |
| 56 | lw t0, PT_R29(sp) # get old user stack pointer |
| 57 | |
| 58 | /* |
| 59 | * We intentionally keep the kernel stack a little below the top of |
| 60 | * userspace so we don't have to do a slower byte accurate check here. |
| 61 | */ |
| 62 | lw t5, TI_ADDR_LIMIT($28) |
| 63 | addu t4, t0, 32 |
| 64 | and t5, t4 |
| 65 | bltz t5, bad_stack # -> sp is bad |
| 66 | |
| 67 | /* |
| 68 | * Ok, copy the args from the luser stack to the kernel stack. |
| 69 | * t3 is the precomputed number of instruction bytes needed to |
| 70 | * load or store arguments 6-8. |
| 71 | */ |
| 72 | |
| 73 | .set push |
| 74 | .set noreorder |
| 75 | .set nomacro |
| 76 | |
| 77 | 1: lw t5, 16(t0) # argument #5 from usp |
| 78 | 4: lw t6, 20(t0) # argument #6 from usp |
| 79 | 3: lw t7, 24(t0) # argument #7 from usp |
| 80 | 2: lw t8, 28(t0) # argument #8 from usp |
| 81 | |
| 82 | sw t5, 16(sp) # argument #5 to ksp |
| 83 | sw t6, 20(sp) # argument #6 to ksp |
| 84 | sw t7, 24(sp) # argument #7 to ksp |
| 85 | sw t8, 28(sp) # argument #8 to ksp |
| 86 | .set pop |
| 87 | |
| 88 | .section __ex_table,"a" |
| 89 | PTR 1b,bad_stack |
| 90 | PTR 2b,bad_stack |
| 91 | PTR 3b,bad_stack |
| 92 | PTR 4b,bad_stack |
| 93 | .previous |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | lw t0, TI_FLAGS($28) # syscall tracing enabled? |
Ralf Baechle | e7f3b48 | 2013-05-29 01:02:18 +0200 | [diff] [blame] | 96 | li t1, _TIF_WORK_SYSCALL_ENTRY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | and t0, t1 |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 98 | bnez t0, syscall_trace_entry # -> yes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | jalr t2 # Do The Real Thing (TM) |
| 101 | |
| 102 | li t0, -EMAXERRNO - 1 # error? |
| 103 | sltu t0, t0, v0 |
| 104 | sw t0, PT_R7(sp) # set error flag |
| 105 | beqz t0, 1f |
| 106 | |
Al Viro | 8f5a00eb | 2010-09-28 18:50:37 +0100 | [diff] [blame] | 107 | lw t1, PT_R2(sp) # syscall number |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | negu v0 # error |
Al Viro | 8f5a00eb | 2010-09-28 18:50:37 +0100 | [diff] [blame] | 109 | sw t1, PT_R0(sp) # save it for syscall restarting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | 1: sw v0, PT_R2(sp) # result |
| 111 | |
| 112 | o32_syscall_exit: |
Al Viro | 02f884e | 2012-05-05 16:11:35 -0400 | [diff] [blame] | 113 | j syscall_exit_partial |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | /* ------------------------------------------------------------------------ */ |
| 116 | |
| 117 | syscall_trace_entry: |
| 118 | SAVE_STATIC |
| 119 | move s0, t2 |
| 120 | move a0, sp |
Markos Chandras | 4c21b8f | 2014-01-22 14:40:03 +0000 | [diff] [blame^] | 121 | |
| 122 | /* |
| 123 | * syscall number is in v0 unless we called syscall(__NR_###) |
| 124 | * where the real syscall number is in a0 |
| 125 | */ |
| 126 | addiu a1, v0, __NR_O32_Linux |
| 127 | bnez v0, 1f /* __NR_syscall at offset 0 */ |
| 128 | lw a1, PT_R4(sp) |
| 129 | |
| 130 | 1: jal syscall_trace_enter |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Markos Chandras | 9d37c40 | 2014-01-22 14:40:02 +0000 | [diff] [blame] | 132 | bltz v0, 2f # seccomp failed? Skip syscall |
| 133 | |
Ralf Baechle | 04a7052 | 2005-11-30 16:24:57 +0000 | [diff] [blame] | 134 | move t0, s0 |
| 135 | RESTORE_STATIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | lw a0, PT_R4(sp) # Restore argument registers |
| 137 | lw a1, PT_R5(sp) |
| 138 | lw a2, PT_R6(sp) |
| 139 | lw a3, PT_R7(sp) |
Ralf Baechle | 04a7052 | 2005-11-30 16:24:57 +0000 | [diff] [blame] | 140 | jalr t0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | li t0, -EMAXERRNO - 1 # error? |
| 143 | sltu t0, t0, v0 |
| 144 | sw t0, PT_R7(sp) # set error flag |
| 145 | beqz t0, 1f |
| 146 | |
Al Viro | 8f5a00eb | 2010-09-28 18:50:37 +0100 | [diff] [blame] | 147 | lw t1, PT_R2(sp) # syscall number |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | negu v0 # error |
Al Viro | 8f5a00eb | 2010-09-28 18:50:37 +0100 | [diff] [blame] | 149 | sw t1, PT_R0(sp) # save it for syscall restarting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | 1: sw v0, PT_R2(sp) # result |
| 151 | |
Markos Chandras | 9d37c40 | 2014-01-22 14:40:02 +0000 | [diff] [blame] | 152 | 2: j syscall_exit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
| 154 | /* ------------------------------------------------------------------------ */ |
| 155 | |
| 156 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | * The stackpointer for a call with more than 4 arguments is bad. |
| 158 | * We probably should handle this case a bit more drastic. |
| 159 | */ |
| 160 | bad_stack: |
Al Viro | 5b89c00 | 2010-09-28 18:50:47 +0100 | [diff] [blame] | 161 | li v0, EFAULT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | sw v0, PT_R2(sp) |
| 163 | li t0, 1 # set error flag |
| 164 | sw t0, PT_R7(sp) |
| 165 | j o32_syscall_exit |
| 166 | |
| 167 | /* |
| 168 | * The system call does not exist in this kernel |
| 169 | */ |
| 170 | illegal_syscall: |
Atsushi Nemoto | bda8229 | 2008-10-25 01:17:22 +0900 | [diff] [blame] | 171 | li v0, ENOSYS # error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | sw v0, PT_R2(sp) |
| 173 | li t0, 1 # set error flag |
| 174 | sw t0, PT_R7(sp) |
| 175 | j o32_syscall_exit |
| 176 | END(handle_sys) |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | LEAF(sys_syscall) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | subu t0, a0, __NR_O32_Linux # check syscall number |
| 180 | sltiu v0, t0, __NR_O32_Linux_syscalls + 1 |
Vlad Malov | e807f95 | 2008-11-18 15:05:46 -0800 | [diff] [blame] | 181 | beqz t0, einval # do not recurse |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 182 | sll t1, t0, 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | beqz v0, einval |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | lw t2, sys_call_table(t1) # syscall routine |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* Some syscalls like execve get their arguments from struct pt_regs |
| 187 | and claim zero arguments in the syscall table. Thus we have to |
| 188 | assume the worst case and shuffle around all potential arguments. |
| 189 | If you want performance, don't use indirect syscalls. */ |
| 190 | |
| 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) |
| 201 | sw a0, PT_R4(sp) # .. and push back a0 - a3, some |
| 202 | sw a1, PT_R5(sp) # syscalls expect them there |
| 203 | sw a2, PT_R6(sp) |
| 204 | sw a3, PT_R7(sp) |
| 205 | sw a3, PT_R26(sp) # update a3 for syscall restarting |
| 206 | jr t2 |
| 207 | /* Unreached */ |
| 208 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 209 | einval: li v0, -ENOSYS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | jr ra |
| 211 | END(sys_syscall) |
| 212 | |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 213 | .align 2 |
| 214 | .type sys_call_table, @object |
| 215 | EXPORT(sys_call_table) |
| 216 | PTR sys_syscall /* 4000 */ |
| 217 | PTR sys_exit |
| 218 | PTR __sys_fork |
| 219 | PTR sys_read |
| 220 | PTR sys_write |
| 221 | PTR sys_open /* 4005 */ |
| 222 | PTR sys_close |
| 223 | PTR sys_waitpid |
| 224 | PTR sys_creat |
| 225 | PTR sys_link |
| 226 | PTR sys_unlink /* 4010 */ |
| 227 | PTR sys_execve |
| 228 | PTR sys_chdir |
| 229 | PTR sys_time |
| 230 | PTR sys_mknod |
| 231 | PTR sys_chmod /* 4015 */ |
| 232 | PTR sys_lchown |
| 233 | PTR sys_ni_syscall |
| 234 | PTR sys_ni_syscall /* was sys_stat */ |
| 235 | PTR sys_lseek |
| 236 | PTR sys_getpid /* 4020 */ |
| 237 | PTR sys_mount |
| 238 | PTR sys_oldumount |
| 239 | PTR sys_setuid |
| 240 | PTR sys_getuid |
| 241 | PTR sys_stime /* 4025 */ |
| 242 | PTR sys_ptrace |
| 243 | PTR sys_alarm |
| 244 | PTR sys_ni_syscall /* was sys_fstat */ |
| 245 | PTR sys_pause |
| 246 | PTR sys_utime /* 4030 */ |
| 247 | PTR sys_ni_syscall |
| 248 | PTR sys_ni_syscall |
| 249 | PTR sys_access |
| 250 | PTR sys_nice |
| 251 | PTR sys_ni_syscall /* 4035 */ |
| 252 | PTR sys_sync |
| 253 | PTR sys_kill |
| 254 | PTR sys_rename |
| 255 | PTR sys_mkdir |
| 256 | PTR sys_rmdir /* 4040 */ |
| 257 | PTR sys_dup |
| 258 | PTR sysm_pipe |
| 259 | PTR sys_times |
| 260 | PTR sys_ni_syscall |
| 261 | PTR sys_brk /* 4045 */ |
| 262 | PTR sys_setgid |
| 263 | PTR sys_getgid |
| 264 | PTR sys_ni_syscall /* was signal(2) */ |
| 265 | PTR sys_geteuid |
| 266 | PTR sys_getegid /* 4050 */ |
| 267 | PTR sys_acct |
| 268 | PTR sys_umount |
| 269 | PTR sys_ni_syscall |
| 270 | PTR sys_ioctl |
| 271 | PTR sys_fcntl /* 4055 */ |
| 272 | PTR sys_ni_syscall |
| 273 | PTR sys_setpgid |
| 274 | PTR sys_ni_syscall |
| 275 | PTR sys_olduname |
| 276 | PTR sys_umask /* 4060 */ |
| 277 | PTR sys_chroot |
| 278 | PTR sys_ustat |
| 279 | PTR sys_dup2 |
| 280 | PTR sys_getppid |
| 281 | PTR sys_getpgrp /* 4065 */ |
| 282 | PTR sys_setsid |
| 283 | PTR sys_sigaction |
| 284 | PTR sys_sgetmask |
| 285 | PTR sys_ssetmask |
| 286 | PTR sys_setreuid /* 4070 */ |
| 287 | PTR sys_setregid |
| 288 | PTR sys_sigsuspend |
| 289 | PTR sys_sigpending |
| 290 | PTR sys_sethostname |
| 291 | PTR sys_setrlimit /* 4075 */ |
| 292 | PTR sys_getrlimit |
| 293 | PTR sys_getrusage |
| 294 | PTR sys_gettimeofday |
| 295 | PTR sys_settimeofday |
| 296 | PTR sys_getgroups /* 4080 */ |
| 297 | PTR sys_setgroups |
| 298 | PTR sys_ni_syscall /* old_select */ |
| 299 | PTR sys_symlink |
| 300 | PTR sys_ni_syscall /* was sys_lstat */ |
| 301 | PTR sys_readlink /* 4085 */ |
| 302 | PTR sys_uselib |
| 303 | PTR sys_swapon |
| 304 | PTR sys_reboot |
| 305 | PTR sys_old_readdir |
| 306 | PTR sys_mips_mmap /* 4090 */ |
| 307 | PTR sys_munmap |
| 308 | PTR sys_truncate |
| 309 | PTR sys_ftruncate |
| 310 | PTR sys_fchmod |
| 311 | PTR sys_fchown /* 4095 */ |
| 312 | PTR sys_getpriority |
| 313 | PTR sys_setpriority |
| 314 | PTR sys_ni_syscall |
| 315 | PTR sys_statfs |
| 316 | PTR sys_fstatfs /* 4100 */ |
| 317 | PTR sys_ni_syscall /* was ioperm(2) */ |
| 318 | PTR sys_socketcall |
| 319 | PTR sys_syslog |
| 320 | PTR sys_setitimer |
| 321 | PTR sys_getitimer /* 4105 */ |
| 322 | PTR sys_newstat |
| 323 | PTR sys_newlstat |
| 324 | PTR sys_newfstat |
| 325 | PTR sys_uname |
| 326 | PTR sys_ni_syscall /* 4110 was iopl(2) */ |
| 327 | PTR sys_vhangup |
| 328 | PTR sys_ni_syscall /* was sys_idle() */ |
| 329 | PTR sys_ni_syscall /* was sys_vm86 */ |
| 330 | PTR sys_wait4 |
| 331 | PTR sys_swapoff /* 4115 */ |
| 332 | PTR sys_sysinfo |
| 333 | PTR sys_ipc |
| 334 | PTR sys_fsync |
| 335 | PTR sys_sigreturn |
| 336 | PTR __sys_clone /* 4120 */ |
| 337 | PTR sys_setdomainname |
| 338 | PTR sys_newuname |
| 339 | PTR sys_ni_syscall /* sys_modify_ldt */ |
| 340 | PTR sys_adjtimex |
| 341 | PTR sys_mprotect /* 4125 */ |
| 342 | PTR sys_sigprocmask |
| 343 | PTR sys_ni_syscall /* was create_module */ |
| 344 | PTR sys_init_module |
| 345 | PTR sys_delete_module |
| 346 | PTR sys_ni_syscall /* 4130 was get_kernel_syms */ |
| 347 | PTR sys_quotactl |
| 348 | PTR sys_getpgid |
| 349 | PTR sys_fchdir |
| 350 | PTR sys_bdflush |
| 351 | PTR sys_sysfs /* 4135 */ |
| 352 | PTR sys_personality |
| 353 | PTR sys_ni_syscall /* for afs_syscall */ |
| 354 | PTR sys_setfsuid |
| 355 | PTR sys_setfsgid |
| 356 | PTR sys_llseek /* 4140 */ |
| 357 | PTR sys_getdents |
| 358 | PTR sys_select |
| 359 | PTR sys_flock |
| 360 | PTR sys_msync |
| 361 | PTR sys_readv /* 4145 */ |
| 362 | PTR sys_writev |
| 363 | PTR sys_cacheflush |
| 364 | PTR sys_cachectl |
| 365 | PTR sys_sysmips |
| 366 | PTR sys_ni_syscall /* 4150 */ |
| 367 | PTR sys_getsid |
| 368 | PTR sys_fdatasync |
| 369 | PTR sys_sysctl |
| 370 | PTR sys_mlock |
| 371 | PTR sys_munlock /* 4155 */ |
| 372 | PTR sys_mlockall |
| 373 | PTR sys_munlockall |
| 374 | PTR sys_sched_setparam |
| 375 | PTR sys_sched_getparam |
| 376 | PTR sys_sched_setscheduler /* 4160 */ |
| 377 | PTR sys_sched_getscheduler |
| 378 | PTR sys_sched_yield |
| 379 | PTR sys_sched_get_priority_max |
| 380 | PTR sys_sched_get_priority_min |
| 381 | PTR sys_sched_rr_get_interval /* 4165 */ |
| 382 | PTR sys_nanosleep |
| 383 | PTR sys_mremap |
| 384 | PTR sys_accept |
| 385 | PTR sys_bind |
| 386 | PTR sys_connect /* 4170 */ |
| 387 | PTR sys_getpeername |
| 388 | PTR sys_getsockname |
| 389 | PTR sys_getsockopt |
| 390 | PTR sys_listen |
| 391 | PTR sys_recv /* 4175 */ |
| 392 | PTR sys_recvfrom |
| 393 | PTR sys_recvmsg |
| 394 | PTR sys_send |
| 395 | PTR sys_sendmsg |
| 396 | PTR sys_sendto /* 4180 */ |
| 397 | PTR sys_setsockopt |
| 398 | PTR sys_shutdown |
| 399 | PTR sys_socket |
| 400 | PTR sys_socketpair |
| 401 | PTR sys_setresuid /* 4185 */ |
| 402 | PTR sys_getresuid |
| 403 | PTR sys_ni_syscall /* was sys_query_module */ |
| 404 | PTR sys_poll |
| 405 | PTR sys_ni_syscall /* was nfsservctl */ |
| 406 | PTR sys_setresgid /* 4190 */ |
| 407 | PTR sys_getresgid |
| 408 | PTR sys_prctl |
| 409 | PTR sys_rt_sigreturn |
| 410 | PTR sys_rt_sigaction |
| 411 | PTR sys_rt_sigprocmask /* 4195 */ |
| 412 | PTR sys_rt_sigpending |
| 413 | PTR sys_rt_sigtimedwait |
| 414 | PTR sys_rt_sigqueueinfo |
| 415 | PTR sys_rt_sigsuspend |
| 416 | PTR sys_pread64 /* 4200 */ |
| 417 | PTR sys_pwrite64 |
| 418 | PTR sys_chown |
| 419 | PTR sys_getcwd |
| 420 | PTR sys_capget |
| 421 | PTR sys_capset /* 4205 */ |
| 422 | PTR sys_sigaltstack |
| 423 | PTR sys_sendfile |
| 424 | PTR sys_ni_syscall |
| 425 | PTR sys_ni_syscall |
| 426 | PTR sys_mips_mmap2 /* 4210 */ |
| 427 | PTR sys_truncate64 |
| 428 | PTR sys_ftruncate64 |
| 429 | PTR sys_stat64 |
| 430 | PTR sys_lstat64 |
| 431 | PTR sys_fstat64 /* 4215 */ |
| 432 | PTR sys_pivot_root |
| 433 | PTR sys_mincore |
| 434 | PTR sys_madvise |
| 435 | PTR sys_getdents64 |
| 436 | PTR sys_fcntl64 /* 4220 */ |
| 437 | PTR sys_ni_syscall |
| 438 | PTR sys_gettid |
| 439 | PTR sys_readahead |
| 440 | PTR sys_setxattr |
| 441 | PTR sys_lsetxattr /* 4225 */ |
| 442 | PTR sys_fsetxattr |
| 443 | PTR sys_getxattr |
| 444 | PTR sys_lgetxattr |
| 445 | PTR sys_fgetxattr |
| 446 | PTR sys_listxattr /* 4230 */ |
| 447 | PTR sys_llistxattr |
| 448 | PTR sys_flistxattr |
| 449 | PTR sys_removexattr |
| 450 | PTR sys_lremovexattr |
| 451 | PTR sys_fremovexattr /* 4235 */ |
| 452 | PTR sys_tkill |
| 453 | PTR sys_sendfile64 |
| 454 | PTR sys_futex |
Ralf Baechle | f088fc8 | 2006-04-05 09:45:47 +0100 | [diff] [blame] | 455 | #ifdef CONFIG_MIPS_MT_FPAFF |
| 456 | /* |
| 457 | * For FPU affinity scheduling on MIPS MT processors, we need to |
| 458 | * intercept sys_sched_xxxaffinity() calls until we get a proper hook |
Viresh Kumar | 0a0fca9 | 2013-06-04 13:10:24 +0530 | [diff] [blame] | 459 | * in kernel/sched/core.c. Considered only temporary we only support |
| 460 | * these hooks for the 32-bit kernel - there is no MIPS64 MT processor |
| 461 | * atm. |
Ralf Baechle | f088fc8 | 2006-04-05 09:45:47 +0100 | [diff] [blame] | 462 | */ |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 463 | PTR mipsmt_sys_sched_setaffinity |
| 464 | PTR mipsmt_sys_sched_getaffinity |
Ralf Baechle | f088fc8 | 2006-04-05 09:45:47 +0100 | [diff] [blame] | 465 | #else |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 466 | PTR sys_sched_setaffinity |
| 467 | PTR sys_sched_getaffinity /* 4240 */ |
Ralf Baechle | f088fc8 | 2006-04-05 09:45:47 +0100 | [diff] [blame] | 468 | #endif /* CONFIG_MIPS_MT_FPAFF */ |
Ralf Baechle | 46e12c0 | 2012-07-14 09:22:05 +0200 | [diff] [blame] | 469 | PTR sys_io_setup |
| 470 | PTR sys_io_destroy |
| 471 | PTR sys_io_getevents |
| 472 | PTR sys_io_submit |
| 473 | PTR sys_io_cancel /* 4245 */ |
| 474 | PTR sys_exit_group |
| 475 | PTR sys_lookup_dcookie |
| 476 | PTR sys_epoll_create |
| 477 | PTR sys_epoll_ctl |
| 478 | PTR sys_epoll_wait /* 4250 */ |
| 479 | PTR sys_remap_file_pages |
| 480 | PTR sys_set_tid_address |
| 481 | PTR sys_restart_syscall |
| 482 | PTR sys_fadvise64_64 |
| 483 | PTR sys_statfs64 /* 4255 */ |
| 484 | PTR sys_fstatfs64 |
| 485 | PTR sys_timer_create |
| 486 | PTR sys_timer_settime |
| 487 | PTR sys_timer_gettime |
| 488 | PTR sys_timer_getoverrun /* 4260 */ |
| 489 | PTR sys_timer_delete |
| 490 | PTR sys_clock_settime |
| 491 | PTR sys_clock_gettime |
| 492 | PTR sys_clock_getres |
| 493 | PTR sys_clock_nanosleep /* 4265 */ |
| 494 | PTR sys_tgkill |
| 495 | PTR sys_utimes |
| 496 | PTR sys_mbind |
| 497 | PTR sys_ni_syscall /* sys_get_mempolicy */ |
| 498 | PTR sys_ni_syscall /* 4270 sys_set_mempolicy */ |
| 499 | PTR sys_mq_open |
| 500 | PTR sys_mq_unlink |
| 501 | PTR sys_mq_timedsend |
| 502 | PTR sys_mq_timedreceive |
| 503 | PTR sys_mq_notify /* 4275 */ |
| 504 | PTR sys_mq_getsetattr |
| 505 | PTR sys_ni_syscall /* sys_vserver */ |
| 506 | PTR sys_waitid |
| 507 | PTR sys_ni_syscall /* available, was setaltroot */ |
| 508 | PTR sys_add_key /* 4280 */ |
| 509 | PTR sys_request_key |
| 510 | PTR sys_keyctl |
| 511 | PTR sys_set_thread_area |
| 512 | PTR sys_inotify_init |
| 513 | PTR sys_inotify_add_watch /* 4285 */ |
| 514 | PTR sys_inotify_rm_watch |
| 515 | PTR sys_migrate_pages |
| 516 | PTR sys_openat |
| 517 | PTR sys_mkdirat |
| 518 | PTR sys_mknodat /* 4290 */ |
| 519 | PTR sys_fchownat |
| 520 | PTR sys_futimesat |
| 521 | PTR sys_fstatat64 |
| 522 | PTR sys_unlinkat |
| 523 | PTR sys_renameat /* 4295 */ |
| 524 | PTR sys_linkat |
| 525 | PTR sys_symlinkat |
| 526 | PTR sys_readlinkat |
| 527 | PTR sys_fchmodat |
| 528 | PTR sys_faccessat /* 4300 */ |
| 529 | PTR sys_pselect6 |
| 530 | PTR sys_ppoll |
| 531 | PTR sys_unshare |
| 532 | PTR sys_splice |
| 533 | PTR sys_sync_file_range /* 4305 */ |
| 534 | PTR sys_tee |
| 535 | PTR sys_vmsplice |
| 536 | PTR sys_move_pages |
| 537 | PTR sys_set_robust_list |
| 538 | PTR sys_get_robust_list /* 4310 */ |
| 539 | PTR sys_kexec_load |
| 540 | PTR sys_getcpu |
| 541 | PTR sys_epoll_pwait |
| 542 | PTR sys_ioprio_set |
| 543 | PTR sys_ioprio_get /* 4315 */ |
| 544 | PTR sys_utimensat |
| 545 | PTR sys_signalfd |
| 546 | PTR sys_ni_syscall /* was timerfd */ |
| 547 | PTR sys_eventfd |
| 548 | PTR sys_fallocate /* 4320 */ |
| 549 | PTR sys_timerfd_create |
| 550 | PTR sys_timerfd_gettime |
| 551 | PTR sys_timerfd_settime |
| 552 | PTR sys_signalfd4 |
| 553 | PTR sys_eventfd2 /* 4325 */ |
| 554 | PTR sys_epoll_create1 |
| 555 | PTR sys_dup3 |
| 556 | PTR sys_pipe2 |
| 557 | PTR sys_inotify_init1 |
| 558 | PTR sys_preadv /* 4330 */ |
| 559 | PTR sys_pwritev |
| 560 | PTR sys_rt_tgsigqueueinfo |
| 561 | PTR sys_perf_event_open |
| 562 | PTR sys_accept4 |
| 563 | PTR sys_recvmmsg /* 4335 */ |
| 564 | PTR sys_fanotify_init |
| 565 | PTR sys_fanotify_mark |
| 566 | PTR sys_prlimit64 |
| 567 | PTR sys_name_to_handle_at |
| 568 | PTR sys_open_by_handle_at /* 4340 */ |
| 569 | PTR sys_clock_adjtime |
| 570 | PTR sys_syncfs |
| 571 | PTR sys_sendmmsg |
| 572 | PTR sys_setns |
| 573 | PTR sys_process_vm_readv /* 4345 */ |
| 574 | PTR sys_process_vm_writev |
| 575 | PTR sys_kcmp |
| 576 | PTR sys_finit_module |
James Hogan | 6776254 | 2014-02-04 12:29:01 +0000 | [diff] [blame] | 577 | PTR sys_sched_setattr |
| 578 | PTR sys_sched_getattr /* 4350 */ |