scall32-o32.S 13 KB

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