drd/drd_pthread_intercepts: Add a workaround for what is probably a compiler bug
[valgrind.git] / coregrind / m_syswrap / syswrap-mips64-linux.c
blobb1f548a5faee84897859cf7e8a7782554916a987
2 /*--------------------------------------------------------------------*/
3 /*--- Platform-specific syscalls stuff. syswrap-mips64-linux.c ----*/
4 /*--------------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2010-2017 RT-RK
11 mips-valgrind@rt-rk.com
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #if defined(VGP_mips64_linux)
30 #include "pub_core_basics.h"
31 #include "pub_core_vki.h"
32 #include "pub_core_vkiscnums.h"
33 #include "pub_core_threadstate.h"
34 #include "pub_core_aspacemgr.h"
35 #include "pub_core_debuglog.h"
36 #include "pub_core_libcbase.h"
37 #include "pub_core_libcassert.h"
38 #include "pub_core_libcprint.h"
39 #include "pub_core_libcproc.h"
40 #include "pub_core_libcsignal.h"
41 #include "pub_core_options.h"
42 #include "pub_core_scheduler.h"
43 #include "pub_core_sigframe.h" /* For VG_(sigframe_destroy)() */
44 #include "pub_core_signals.h"
45 #include "pub_core_syscall.h"
46 #include "pub_core_syswrap.h"
47 #include "pub_core_tooliface.h"
48 #include "pub_core_transtab.h" /* VG_(discard_translations) */
49 #include "priv_types_n_macros.h"
50 #include "priv_syswrap-generic.h" /* for decls of generic wrappers */
51 #include "priv_syswrap-linux.h" /* for decls of linux-ish wrappers */
52 #include "priv_syswrap-main.h"
54 #include "pub_core_debuginfo.h" /* VG_(di_notify_*) */
55 #include "pub_core_xarray.h"
56 #include "pub_core_clientstate.h" /* VG_(brk_base), VG_(brk_limit) */
57 #include "pub_core_errormgr.h"
58 #include "pub_core_gdbserver.h" /* VG_(gdbserver) */
59 #include "pub_core_libcfile.h"
60 #include "pub_core_machine.h" /* VG_(get_SP) */
61 #include "pub_core_mallocfree.h"
62 #include "pub_core_stacktrace.h" /* For VG_(get_and_pp_StackTrace)() */
63 #include "pub_core_ume.h"
65 #include "config.h"
67 #include <errno.h>
69 /* ---------------------------------------------------------------------
70 clone() handling
71 ------------------------------------------------------------------ */
73 /* Call f(arg1), but first switch stacks, using 'stack' as the new stack, and
74 use 'retaddr' as f's return-to address. Also, clear all the integer registers
75 before entering f. */
76 __attribute__ ((noreturn))
77 void ML_(call_on_new_stack_0_1) ( Addr stack, /* $4 - $a0 */
78 Addr retaddr, /* $5 - $a1 */
79 void (*f_desc) (Word), /* $6 - $a2 */
80 Word arg1 ); /* $7 - $a3 */
81 asm (
82 ".text\n"
83 ".globl vgModuleLocal_call_on_new_stack_0_1\n"
84 "vgModuleLocal_call_on_new_stack_0_1:\n"
85 " move $29, $4\n" /* set stack */
86 " move $4, $7\n" /* arg1 to $4 */
87 " move $25, $6\n"
88 " move $31, $5\n" /* retaddr to $ra */
89 " li $2, 0\n\t" /* zero all GP regs */
90 " li $3, 0\n\t"
91 " li $5, 0\n\t"
92 " li $6, 0\n\t"
93 " li $7, 0\n\t"
94 " li $12, 0\n\t"
95 " li $13, 0\n\t"
96 " li $14, 0\n\t"
97 " li $15, 0\n\t"
98 " li $16, 0\n\t"
99 " li $17, 0\n\t"
100 " li $18, 0\n\t"
101 " li $19, 0\n\t"
102 " li $20, 0\n\t"
103 " li $21, 0\n\t"
104 " li $22, 0\n\t"
105 " li $23, 0\n\t"
106 " li $24, 0\n\t"
107 " jr $25\n" /* jump to f */
108 " break 0x7\n" /* should never get here */
109 ".previous\n"
112 /* Perform a clone system call. clone is strange because it has fork()-like
113 return-twice semantics, so it needs special handling here.
115 Upon entry, we have:
117 word (fn)(void*) in a0 = 4
118 void* child_stack in a1 = 5
119 word flags in a2 = 6
120 void* arg in a3 = 7
121 pid_t* parent_tid in a4 = 8
122 void* tls in a5 = 9
123 pid_t* child_tid in a6 = 10
125 System call requires:
127 int $__NR_clone in v0
128 int flags in a0 = 4
129 void* child_stack in a1 = 5
130 pid_t* parent_tid in a2 = 6
131 void* tls_ptr in a3 = 7
132 pid_t* child_tid in a4 = 8 */
134 #define __NR_CLONE __NR_clone
135 #define __NR_EXIT __NR_exit
137 // See priv_syswrap-linux.h for arg profile.
138 asm(
139 ".text\n"
140 ".set noreorder\n"
141 ".set nomacro\n"
142 ".globl do_syscall_clone_mips64_linux\n"
143 "do_syscall_clone_mips64_linux:\n"
144 " daddiu $29, $29, -32\n"
145 " sd $31, 0($29)\n"
146 " sd $30, 8($29)\n"
147 " sd $28, 16($29)\n"
149 " daddiu $5, $5, -32\n"
150 " sd $4, 0($5)\n" /* fn */
151 " sd $7, 8($5)\n" /* arg */
152 " sd $6, 16($5)\n" /* flags */
154 /* 1. arg for syscalls */
155 " move $4, $6\n" /* flags */
156 " move $6, $8\n" /* parent */
157 " move $7, $a5\n" /* tls */
158 " move $8, $a6\n" /* child */
160 /* 2. do a syscall to clone */
161 " li $2, 5055\n" /* syscall num for clone */
162 " syscall\n"
164 /* 3. See if we are a child, call fn and after that exit */
165 " bnez $7, p_or_error\n"
166 " nop\n"
168 " bnez $2, p_or_error\n"
169 " nop\n"
171 " ld $25,0($29)\n"
172 " jalr $25\n"
173 " ld $4,8($29)\n"
175 " move $4, $2\n\t" /* retval from fn is in $v0 */
176 " li $2, 5058\n\t" /* NR_exit */
177 " syscall\n\t"
178 " nop\n\t"
179 /* 4. If we are parent or error, just return to caller */
180 " p_or_error:\n"
181 " ld $31, 0($29)\n"
182 " ld $30, 8($29)\n"
183 " ld $28, 16($29)\n"
184 " jr $31\n"
185 " daddiu $29,$29, 32\n"
186 ".previous\n"
189 #undef __NR_CLONE
190 #undef __NR_EXIT
192 /* forward declarations */
193 static SysRes sys_set_tls ( ThreadId tid, Addr tlsptr);
195 /* ---------------------------------------------------------------------
196 More thread stuff
197 ------------------------------------------------------------------ */
198 void VG_(cleanup_thread) ( ThreadArchState * arch ) { };
200 SysRes sys_set_tls ( ThreadId tid, Addr tlsptr )
202 VG_(threads)[tid].arch.vex.guest_ULR = tlsptr;
203 return VG_(mk_SysRes_Success)( 0 );
206 /* ---------------------------------------------------------------------
207 PRE/POST wrappers for mips/Linux-specific syscalls
208 ------------------------------------------------------------------ */
210 #define PRE(name) DEFN_PRE_TEMPLATE(mips_linux, name)
211 #define POST(name) DEFN_POST_TEMPLATE(mips_linux, name)
213 /* Add prototypes for the wrappers declared here, so that gcc doesn't harass us
214 for not having prototypes. Really this is a kludge -- the right thing to do
215 is to make these wrappers 'static' since they aren't visible outside this
216 file, but that requires even more macro magic. */
218 DECL_TEMPLATE (mips_linux, sys_set_thread_area);
219 DECL_TEMPLATE (mips_linux, sys_vmsplice);
220 DECL_TEMPLATE (mips_linux, sys_ustat);
221 DECL_TEMPLATE (mips_linux, sys_sysfs);
222 DECL_TEMPLATE (mips_linux, sys_swapon);
223 DECL_TEMPLATE (mips_linux, sys_swapoff);
224 DECL_TEMPLATE (mips_linux, sys_setdomainname);
225 DECL_TEMPLATE (mips_linux, sys_sethostname);
226 DECL_TEMPLATE (mips_linux, sys_reboot);
227 DECL_TEMPLATE (mips_linux, sys_cacheflush);
228 DECL_TEMPLATE (mips_linux, sys_sched_rr_get_interval);
229 DECL_TEMPLATE (mips_linux, sys_prctl);
230 DECL_TEMPLATE (mips_linux, sys_ptrace);
231 DECL_TEMPLATE (mips_linux, sys_mmap);
232 DECL_TEMPLATE (mips_linux, sys_rt_sigreturn);
233 DECL_TEMPLATE (mips_linux, sys_pipe);
234 DECL_TEMPLATE (mips_linux, sys_fadvise64);
236 PRE(sys_vmsplice)
238 PRINT("sys_vmsplice ( %ld, %#" FMT_REGWORD "x, %" FMT_REGWORD "u, %ld )",
239 SARG1, ARG2, ARG3, SARG4);
240 PRE_REG_READ4(long, "sys_vmsplice", int, fdin, struct vki_iovec *, v,
241 vki_size_t, len, int, flags);
244 PRE(sys_sched_rr_get_interval)
246 PRINT("sys_sched_rr_get_interval ( %ld, %#" FMT_REGWORD "x)", SARG1, ARG2);
247 PRE_REG_READ2(long, "sched_rr_get_interval", vki_pid_t, pid,
248 struct timespec *, timer);
249 *flags |= SfMayBlock;
252 PRE(sys_ustat)
254 PRINT("sys_ustat ( %#" FMT_REGWORD "x, %#" FMT_REGWORD "x)", ARG1, ARG2);
255 PRE_REG_READ2(long, "ustat", int, flags, const void *, path);
258 PRE(sys_swapon)
260 PRINT("sys_swapon ( %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )", ARG1, ARG2);
261 PRE_REG_READ2(long, "swapon", const void *, path, int, flags);
264 PRE(sys_swapoff)
266 PRINT("sys_swapoff ( %#" FMT_REGWORD "x )", ARG1);
267 PRE_REG_READ1(long, "swapoff", const void *, path);
270 PRE(sys_sysfs)
272 PRINT("sys_sysfs ( %ld, %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )",
273 SARG1, ARG2, ARG3);
274 PRE_REG_READ3(long, "sysfs", int, flags, int, desc, const void *, path);
277 /* Very much MIPS specific */
278 PRE(sys_cacheflush)
280 PRINT("cacheflush (%" FMT_REGWORD "x, %" FMT_REGWORD "x, %" FMT_REGWORD
281 "x)", ARG1, ARG2, ARG3);
282 PRE_REG_READ3(long, "cacheflush", unsigned long, addr,
283 unsigned long, nbytes, unsigned int, cache);
284 VG_ (discard_translations) ((Addr)ARG1, (ULong) ARG2,
285 "PRE(sys_cacheflush)");
286 SET_STATUS_Success(0);
289 PRE(sys_reboot)
291 PRINT("sys_reboot ( %ld, %" FMT_REGWORD "u, %" FMT_REGWORD "u, %#"
292 FMT_REGWORD "x )", SARG1, ARG2, ARG3, ARG4);
293 // An approximation. ARG4 is only read conditionally by the kernel
294 PRE_REG_READ4(int, "reboot",
295 int, magic1, int, magic2, unsigned int, cmd,
296 void *, arg);
298 *flags |= SfMayBlock;
301 PRE(sys_setdomainname)
303 PRINT ("sys_setdomainname ( %#" FMT_REGWORD "x, %ld )", ARG1, SARG2);
304 PRE_REG_READ2 (long, "setdomainname", const void *, name, int, len);
307 PRE(sys_sethostname)
309 PRINT ("sys_sethostname ( %#" FMT_REGWORD "x, %ld )", ARG1, SARG2);
310 PRE_REG_READ2 (long, "sethostname", const void *, name, int, len);
313 PRE(sys_ptrace)
315 PRINT("sys_ptrace ( %ld, %ld, %#" FMT_REGWORD "x, %#" FMT_REGWORD "x )",
316 SARG1, SARG2, ARG3, ARG4);
317 PRE_REG_READ4(int, "ptrace",
318 long, request, long, pid, unsigned long, addr,
319 unsigned long, data);
320 switch (ARG1) {
321 case VKI_PTRACE_PEEKTEXT:
322 case VKI_PTRACE_PEEKDATA:
323 case VKI_PTRACE_PEEKUSR:
324 PRE_MEM_WRITE("ptrace(peek)", ARG4, sizeof(long));
325 break;
326 case VKI_PTRACE_GETEVENTMSG:
327 PRE_MEM_WRITE("ptrace(geteventmsg)", ARG4, sizeof(unsigned long));
328 break;
329 case VKI_PTRACE_GETSIGINFO:
330 PRE_MEM_WRITE("ptrace(getsiginfo)", ARG4, sizeof(vki_siginfo_t));
331 break;
332 case VKI_PTRACE_SETSIGINFO:
333 PRE_MEM_READ("ptrace(setsiginfo)", ARG4, sizeof(vki_siginfo_t));
334 break;
335 case VKI_PTRACE_GETREGSET:
336 ML_(linux_PRE_getregset)(tid, ARG3, ARG4);
337 break;
338 default:
339 break;
343 POST(sys_ptrace)
345 switch (ARG1) {
346 case VKI_PTRACE_TRACEME:
347 ML_(linux_POST_traceme)(tid);
348 break;
349 case VKI_PTRACE_PEEKTEXT:
350 case VKI_PTRACE_PEEKDATA:
351 case VKI_PTRACE_PEEKUSR:
352 POST_MEM_WRITE (ARG4, sizeof(long));
353 break;
354 case VKI_PTRACE_GETEVENTMSG:
355 POST_MEM_WRITE (ARG4, sizeof(unsigned long));
356 break;
357 case VKI_PTRACE_GETSIGINFO:
358 POST_MEM_WRITE (ARG4, sizeof(vki_siginfo_t));
359 break;
360 case VKI_PTRACE_GETREGSET:
361 ML_(linux_POST_getregset)(tid, ARG3, ARG4);
362 break;
363 default:
364 break;
368 PRE(sys_mmap)
370 SysRes r;
371 PRINT("sys_mmap ( %#" FMT_REGWORD "x, %" FMT_REGWORD "u, %ld, %ld, %ld, %"
372 FMT_REGWORD "u )",
373 ARG1, ARG2, SARG3, SARG4, SARG5, ARG6);
374 PRE_REG_READ6(long, "mmap", unsigned long, start, vki_size_t, length,
375 int, prot, int, flags, int, fd, unsigned long, offset);
376 r = ML_(generic_PRE_sys_mmap)(tid, ARG1, ARG2, ARG3, ARG4, ARG5,
377 (Off64T) ARG6);
378 SET_STATUS_from_SysRes(r);
380 PRE(sys_rt_sigreturn)
382 /* See comments on PRE(sys_rt_sigreturn) in syswrap-s390x-linux.c for
383 an explanation of what follows. */
384 ThreadState* tst;
385 PRINT("sys_rt_sigreturn ( )");
387 vg_assert(VG_(is_valid_tid)(tid));
388 vg_assert(tid >= 1 && tid < VG_N_THREADS);
389 vg_assert(VG_(is_running_thread)(tid));
391 tst = VG_(get_ThreadState)(tid);
393 /* This is only so that the IA is (might be) useful to report if
394 something goes wrong in the sigreturn */
395 ML_(fixup_guest_state_to_restart_syscall)(&tst->arch);
397 /* Restore register state from frame and remove it */
398 VG_(sigframe_destroy)(tid, True);
400 /* Tell the driver not to update the guest state with the "result",
401 and set a bogus result to keep it happy. */
402 *flags |= SfNoWriteResult;
403 SET_STATUS_Success(0);
405 /* Check to see if any signals arose as a result of this. */
406 *flags |= SfPollAfter;
409 PRE(sys_set_thread_area)
411 PRINT("set_thread_area (%" FMT_REGWORD "x)", ARG1);
412 PRE_REG_READ1(long, "set_thread_area", unsigned long, addr);
413 SET_STATUS_from_SysRes(sys_set_tls(tid, ARG1));
416 PRE(sys_pipe)
418 PRINT("sys_pipe ( %#" FMT_REGWORD "x )", ARG1);
419 PRE_REG_READ1(int, "pipe", int *, filedes);
420 PRE_MEM_WRITE( "pipe(filedes)", ARG1, 2*sizeof(int) );
423 POST(sys_pipe)
425 Int p0, p1;
426 vg_assert(SUCCESS);
427 p0 = RES;
428 p1 = sr_ResEx(status->sres);
430 if (!ML_(fd_allowed)(p0, "pipe", tid, True) ||
431 !ML_(fd_allowed)(p1, "pipe", tid, True)) {
432 VG_(close)(p0);
433 VG_(close)(p1);
434 SET_STATUS_Failure( VKI_EMFILE );
435 } else {
436 if (VG_(clo_track_fds)) {
437 ML_(record_fd_open_nameless)(tid, p0);
438 ML_(record_fd_open_nameless)(tid, p1);
443 PRE(sys_prctl)
445 switch (ARG1) {
446 case VKI_PR_SET_FP_MODE:
448 VexArchInfo vai;
449 VG_(machine_get_VexArchInfo)(NULL, &vai);
450 /* Reject unsupported modes */
451 if ((ARG2 & ~VKI_PR_FP_MODE_FR) ||
452 ((ARG2 & VKI_PR_FP_MODE_FR) &&
453 !VEX_MIPS_HOST_FP_MODE(vai.hwcaps))) {
454 SET_STATUS_Failure(VKI_EOPNOTSUPP);
455 } else {
456 if (!(VG_(threads)[tid].arch.vex.guest_CP0_status &
457 MIPS_CP0_STATUS_FR) != !(ARG2 & VKI_PR_FP_MODE_FR)) {
458 ThreadId t;
459 for (t = 1; t < VG_N_THREADS; t++) {
460 if (VG_(threads)[t].status != VgTs_Empty) {
461 if (ARG2 & VKI_PR_FP_MODE_FR) {
462 VG_(threads)[t].arch.vex.guest_CP0_status |=
463 MIPS_CP0_STATUS_FR;
464 } else {
465 VG_(threads)[t].arch.vex.guest_CP0_status &=
466 ~MIPS_CP0_STATUS_FR;
470 /* Discard all translations */
471 VG_(discard_translations)(0, (ULong)(-1ll), "prctl(PR_SET_FP_MODE)");
473 SET_STATUS_Success(0);
475 break;
477 case VKI_PR_GET_FP_MODE:
478 if (VG_(threads)[tid].arch.vex.guest_CP0_status & MIPS_CP0_STATUS_FR)
479 SET_STATUS_Success(VKI_PR_FP_MODE_FR);
480 else
481 SET_STATUS_Success(0);
482 break;
483 default:
484 WRAPPER_PRE_NAME(linux, sys_prctl)(tid, layout, arrghs, status, flags);
485 break;
489 POST(sys_prctl)
491 WRAPPER_POST_NAME(linux, sys_prctl)(tid, arrghs, status);
494 PRE(sys_fadvise64)
496 PRINT("sys_fadvise64 ( %ld, %ld, %" FMT_REGWORD "u, %ld )", SARG1, SARG2,
497 ARG3, SARG4);
498 PRE_REG_READ4(long, "fadvise64",
499 int, fd, vki_loff_t, offset, vki_loff_t, len, int, advice);
502 #undef PRE
503 #undef POST
505 /* ---------------------------------------------------------------------
506 The mips64/Linux syscall table
507 ------------------------------------------------------------------ */
509 /* Add an mips64-linux specific wrapper to a syscall table. */
510 #define PLAX_(sysno, name) WRAPPER_ENTRY_X_(mips_linux, sysno, name)
511 #define PLAXY(sysno, name) WRAPPER_ENTRY_XY(mips_linux, sysno, name)
513 static SyscallTableEntry syscall_main_table[] = {
514 GENXY (__NR_read, sys_read), /* 5000 */
515 GENX_ (__NR_write, sys_write),
516 GENXY (__NR_open, sys_open),
517 GENXY (__NR_close, sys_close),
518 GENXY (__NR_stat, sys_newstat),
519 GENXY (__NR_fstat, sys_newfstat),
520 GENXY (__NR_lstat, sys_newlstat),
521 GENXY (__NR_poll, sys_poll),
522 LINX_ (__NR_lseek, sys_lseek),
523 PLAX_ (__NR_mmap, sys_mmap),
524 GENXY (__NR_mprotect, sys_mprotect),
525 GENXY (__NR_munmap, sys_munmap),
526 GENX_ (__NR_brk, sys_brk),
527 LINXY (__NR_rt_sigaction, sys_rt_sigaction),
528 LINXY (__NR_rt_sigprocmask, sys_rt_sigprocmask),
529 LINXY (__NR_ioctl, sys_ioctl),
530 LINXY (__NR_eventfd2, sys_eventfd2),
531 LINXY (__NR_signalfd4, sys_signalfd4),
532 GENXY (__NR_pread64, sys_pread64),
533 GENX_ (__NR_pwrite64, sys_pwrite64),
534 GENXY (__NR_readv, sys_readv),
535 GENX_ (__NR_writev, sys_writev),
536 GENX_ (__NR_access, sys_access),
537 PLAXY (__NR_pipe, sys_pipe),
538 LINXY (__NR_pipe2, sys_pipe2),
539 GENX_ (__NR__newselect,sys_select),
540 LINX_ (__NR_sched_yield, sys_sched_yield),
541 GENX_ (__NR_mremap, sys_mremap),
542 GENX_ (__NR_msync, sys_msync),
543 GENXY (__NR_mincore, sys_mincore),
544 GENX_ (__NR_madvise, sys_madvise),
545 LINX_ (__NR_shmget, sys_shmget),
546 LINXY (__NR_shmat, sys_shmat),
547 LINXY (__NR_shmctl, sys_shmctl),
548 GENXY (__NR_dup, sys_dup),
549 GENXY (__NR_dup2, sys_dup2),
550 LINXY (__NR_dup3, sys_dup3),
551 GENX_ (__NR_pause, sys_pause),
552 GENXY (__NR_nanosleep, sys_nanosleep),
553 GENXY (__NR_getitimer, sys_getitimer),
554 GENXY (__NR_setitimer, sys_setitimer),
555 GENX_ (__NR_alarm, sys_alarm),
556 GENX_ (__NR_getpid, sys_getpid),
557 /* LINX_(__NR_fallocate,sys_fallocate), */
558 LINXY (__NR_sendfile, sys_sendfile),
559 LINXY (__NR_socket, sys_socket),
560 LINX_ (__NR_connect, sys_connect),
561 LINXY (__NR_accept, sys_accept),
562 LINXY (__NR_accept4, sys_accept4),
563 LINX_ (__NR_sendto, sys_sendto),
564 LINXY (__NR_recvfrom, sys_recvfrom),
565 LINX_ (__NR_sendmsg, sys_sendmsg),
566 LINXY (__NR_recvmsg, sys_recvmsg),
567 LINX_ (__NR_shutdown, sys_shutdown),
568 LINX_ (__NR_bind, sys_bind),
569 LINX_ (__NR_listen, sys_listen),
570 LINXY (__NR_getsockname, sys_getsockname),
571 LINXY (__NR_getpeername, sys_getpeername),
572 LINXY (__NR_socketpair, sys_socketpair),
573 LINX_ (__NR_setsockopt, sys_setsockopt),
574 LINXY (__NR_getsockopt, sys_getsockopt),
575 LINX_ (__NR_clone, sys_clone),
576 GENX_ (__NR_fork, sys_fork),
577 GENX_ (__NR_execve, sys_execve),
578 GENX_ (__NR_exit, sys_exit),
579 GENXY (__NR_wait4, sys_wait4),
580 GENX_ (__NR_kill, sys_kill),
581 GENXY (__NR_uname, sys_newuname),
582 LINX_ (__NR_semget, sys_semget),
583 LINX_ (__NR_semop, sys_semop),
584 LINXY (__NR_semctl, sys_semctl),
585 LINXY (__NR_shmdt, sys_shmdt),
586 LINX_ (__NR_msgget, sys_msgget),
587 LINX_ (__NR_msgsnd, sys_msgsnd),
588 LINXY (__NR_msgrcv, sys_msgrcv),
589 LINXY (__NR_msgctl, sys_msgctl),
590 LINXY (__NR_fcntl, sys_fcntl),
591 GENX_ (__NR_flock, sys_flock),
592 GENX_ (__NR_fsync, sys_fsync),
593 GENX_ (__NR_fdatasync, sys_fdatasync),
594 GENX_ (__NR_truncate, sys_truncate),
595 GENX_ (__NR_ftruncate, sys_ftruncate),
596 GENXY (__NR_getdents, sys_getdents),
597 GENXY (__NR_getcwd, sys_getcwd),
598 GENX_ (__NR_chdir, sys_chdir),
599 GENX_ (__NR_fchdir, sys_fchdir),
600 GENX_ (__NR_rename, sys_rename),
601 GENX_ (__NR_mkdir, sys_mkdir),
602 GENX_ (__NR_rmdir, sys_rmdir),
603 GENXY (__NR_creat, sys_creat),
604 GENX_ (__NR_link, sys_link),
605 GENX_ (__NR_unlink, sys_unlink),
606 GENX_ (__NR_symlink, sys_symlink),
607 GENX_ (__NR_readlink, sys_readlink),
608 GENX_ (__NR_chmod, sys_chmod),
609 GENX_ (__NR_fchmod, sys_fchmod),
610 GENX_ (__NR_chown, sys_chown),
611 GENX_ (__NR_fchown, sys_fchown),
612 GENX_ (__NR_lchown, sys_lchown),
613 GENX_ (__NR_umask, sys_umask),
614 GENXY (__NR_gettimeofday, sys_gettimeofday),
615 GENXY (__NR_getrlimit, sys_getrlimit),
616 GENXY (__NR_getrusage, sys_getrusage),
617 LINXY (__NR_sysinfo, sys_sysinfo),
618 GENXY (__NR_times, sys_times),
619 PLAXY (__NR_ptrace, sys_ptrace),
620 GENX_ (__NR_getuid, sys_getuid),
621 LINXY (__NR_syslog, sys_syslog),
622 GENX_ (__NR_getgid, sys_getgid),
623 GENX_ (__NR_setuid, sys_setuid),
624 GENX_ (__NR_setgid, sys_setgid),
625 GENX_ (__NR_geteuid, sys_geteuid),
626 GENX_ (__NR_getegid, sys_getegid),
627 GENX_ (__NR_setpgid, sys_setpgid),
628 GENX_ (__NR_getppid, sys_getppid),
629 GENX_ (__NR_getpgrp, sys_getpgrp),
630 GENX_ (__NR_setsid, sys_setsid),
631 GENX_ (__NR_setreuid, sys_setreuid),
632 GENX_ (__NR_setregid, sys_setregid),
633 GENXY (__NR_getgroups, sys_getgroups),
634 GENX_ (__NR_setgroups, sys_setgroups),
635 LINX_ (__NR_setresuid, sys_setresuid),
636 LINXY (__NR_getresuid, sys_getresuid),
637 LINX_ (__NR_setresgid, sys_setresgid),
638 LINXY (__NR_getresgid, sys_getresgid),
639 GENX_ (__NR_getpgid, sys_getpgid),
640 LINX_ (__NR_setfsuid, sys_setfsuid),
641 LINX_ (__NR_setfsgid, sys_setfsgid),
642 GENX_ (__NR_getsid, sys_getsid),
643 LINXY (__NR_capget, sys_capget),
644 LINX_ (__NR_capset, sys_capset),
645 LINXY (__NR_rt_sigpending, sys_rt_sigpending),
646 LINXY (__NR_rt_sigtimedwait, sys_rt_sigtimedwait),
647 LINXY (__NR_rt_sigqueueinfo, sys_rt_sigqueueinfo),
648 LINX_ (__NR_rt_sigsuspend, sys_rt_sigsuspend),
649 GENXY (__NR_sigaltstack, sys_sigaltstack),
650 LINX_ (__NR_utime, sys_utime),
651 GENX_ (__NR_mknod, sys_mknod),
652 LINX_ (__NR_personality, sys_personality),
653 PLAX_ (__NR_ustat, sys_ustat),
654 GENXY (__NR_statfs, sys_statfs),
655 GENXY (__NR_fstatfs, sys_fstatfs),
656 PLAX_ (__NR_sysfs, sys_sysfs),
657 GENX_ (__NR_getpriority, sys_getpriority),
658 GENX_ (__NR_setpriority, sys_setpriority),
659 LINXY (__NR_sched_setparam, sys_sched_setparam),
660 LINXY (__NR_sched_getparam, sys_sched_getparam),
661 LINX_ (__NR_sched_setscheduler, sys_sched_setscheduler),
662 LINX_ (__NR_sched_getscheduler, sys_sched_getscheduler),
663 LINX_ (__NR_sched_get_priority_max, sys_sched_get_priority_max),
664 LINX_ (__NR_sched_get_priority_min, sys_sched_get_priority_min),
665 PLAX_ (__NR_sched_rr_get_interval, sys_sched_rr_get_interval),
666 GENX_ (__NR_mlock, sys_mlock),
667 GENX_ (__NR_munlock, sys_munlock),
668 GENX_ (__NR_mlockall, sys_mlockall),
669 LINX_ (__NR_munlockall, sys_munlockall),
670 LINX_ (__NR_vhangup, sys_vhangup),
671 LINX_ (__NR_pivot_root,sys_pivot_root),
672 LINXY (__NR__sysctl, sys_sysctl),
673 PLAXY (__NR_prctl, sys_prctl),
674 LINXY (__NR_adjtimex, sys_adjtimex),
675 GENX_ (__NR_setrlimit, sys_setrlimit),
676 GENX_ (__NR_chroot, sys_chroot),
677 GENX_ (__NR_sync, sys_sync),
678 GENX_ (__NR_acct, sys_acct),
679 GENX_ (__NR_settimeofday, sys_settimeofday),
680 LINX_ (__NR_mount, sys_mount),
681 LINX_ (__NR_umount2, sys_umount),
682 PLAX_ (__NR_swapon, sys_swapon),
683 PLAX_ (__NR_swapoff, sys_swapoff),
684 PLAX_ (__NR_reboot, sys_reboot),
685 PLAX_ (__NR_sethostname, sys_sethostname),
686 PLAX_ (__NR_setdomainname, sys_setdomainname),
687 GENX_ (__NR_create_module, sys_ni_syscall),
688 LINX_ (__NR_init_module, sys_init_module),
689 LINX_ (__NR_delete_module, sys_delete_module),
690 GENX_ (__NR_get_kernel_syms, sys_ni_syscall),
691 GENX_ (__NR_query_module, sys_ni_syscall),
692 LINX_ (__NR_quotactl, sys_quotactl),
693 /* GENX_(__NR_nfsservctl,sys_nfsservctl), */
694 GENXY (__NR_getpmsg, sys_getpmsg),
695 GENX_ (__NR_putpmsg, sys_putpmsg),
696 GENX_ (__NR_afs_syscall, sys_ni_syscall),
697 /* GENX_(__NR_reserved177,sys_reserved177), */
698 LINX_ (__NR_gettid, sys_gettid),
699 /* GENX_(__NR_readahead,sys_readahead), */
700 LINX_ (__NR_setxattr, sys_setxattr),
701 LINX_ (__NR_lsetxattr, sys_lsetxattr),
702 LINX_ (__NR_fsetxattr, sys_fsetxattr),
703 LINXY (__NR_getxattr, sys_getxattr),
704 LINXY (__NR_lgetxattr, sys_lgetxattr),
705 LINXY (__NR_fgetxattr, sys_fgetxattr),
706 LINXY (__NR_listxattr, sys_listxattr),
707 LINXY (__NR_llistxattr, sys_llistxattr),
708 LINXY (__NR_flistxattr, sys_flistxattr),
709 LINX_ (__NR_removexattr, sys_removexattr),
710 LINX_ (__NR_lremovexattr, sys_lremovexattr),
711 LINX_ (__NR_fremovexattr, sys_fremovexattr),
712 LINXY (__NR_tkill, sys_tkill),
713 /* GENX_(__NR_reserved193,sys_reserved193), */
714 LINXY (__NR_futex, sys_futex),
715 LINX_ (__NR_sched_setaffinity, sys_sched_setaffinity),
716 LINXY (__NR_sched_getaffinity, sys_sched_getaffinity),
717 PLAX_ (__NR_cacheflush, sys_cacheflush),
718 LINXY (__NR_io_setup, sys_io_setup),
719 LINX_ (__NR_io_destroy, sys_io_destroy),
720 LINXY (__NR_io_getevents, sys_io_getevents),
721 LINX_ (__NR_io_submit, sys_io_submit),
722 LINXY (__NR_io_cancel, sys_io_cancel),
723 LINX_ (__NR_exit_group, sys_exit_group),
724 /* LINXY (__NR_lookup_dcookie, sys_lookup_dcookie), */
725 LINXY (__NR_epoll_create, sys_epoll_create),
726 LINXY (__NR_epoll_create1, sys_epoll_create1),
727 LINX_ (__NR_epoll_ctl, sys_epoll_ctl),
728 LINXY (__NR_epoll_wait, sys_epoll_wait),
729 PLAX_(__NR_rt_sigreturn,sys_rt_sigreturn),
730 #if defined(VGABI_N32)
731 LINXY(__NR_fcntl64, sys_fcntl64),
732 GENXY(__NR_statfs64, sys_statfs64),
733 #endif
734 LINX_ (__NR_set_tid_address, sys_set_tid_address),
735 LINX_ (__NR_semtimedop, sys_semtimedop),
736 PLAX_ (__NR_fadvise64, sys_fadvise64),
737 LINXY (__NR_timer_create, sys_timer_create),
738 LINXY (__NR_timer_settime, sys_timer_settime),
739 LINXY (__NR_timer_gettime, sys_timer_gettime),
740 LINX_ (__NR_timer_getoverrun, sys_timer_getoverrun),
741 LINX_ (__NR_timer_delete, sys_timer_delete),
742 LINX_ (__NR_clock_settime, sys_clock_settime),
743 LINXY (__NR_clock_gettime, sys_clock_gettime),
744 LINXY (__NR_clock_getres, sys_clock_getres),
745 LINXY (__NR_clock_nanosleep, sys_clock_nanosleep),
746 LINX_ (__NR_tgkill, sys_tgkill),
747 GENX_ (__NR_utimes, sys_utimes),
748 LINX_ (__NR_mbind, sys_mbind),
749 LINXY (__NR_get_mempolicy, sys_get_mempolicy),
750 LINX_ (__NR_set_mempolicy, sys_set_mempolicy),
751 LINXY (__NR_mq_open, sys_mq_open),
752 LINX_ (__NR_mq_unlink, sys_mq_unlink),
753 LINX_ (__NR_mq_timedsend, sys_mq_timedsend),
754 LINXY (__NR_mq_timedreceive, sys_mq_timedreceive),
755 LINX_ (__NR_mq_notify, sys_mq_notify),
756 LINXY (__NR_mq_getsetattr, sys_mq_getsetattr),
757 GENX_ (__NR_vserver, sys_ni_syscall),
758 LINXY (__NR_waitid, sys_waitid),
759 LINX_ (__NR_add_key, sys_add_key),
760 LINX_ (__NR_request_key, sys_request_key),
761 LINXY (__NR_keyctl, sys_keyctl),
762 PLAX_ (__NR_set_thread_area, sys_set_thread_area),
763 LINX_ (__NR_inotify_init, sys_inotify_init),
764 LINX_ (__NR_inotify_add_watch, sys_inotify_add_watch),
765 LINX_ (__NR_inotify_rm_watch, sys_inotify_rm_watch),
766 LINXY (__NR_openat, sys_openat),
767 LINX_ (__NR_mkdirat, sys_mkdirat),
768 LINX_ (__NR_mknodat, sys_mknodat),
769 LINX_ (__NR_fchownat, sys_fchownat),
770 LINX_ (__NR_futimesat, sys_futimesat),
771 LINX_ (__NR_unlinkat, sys_unlinkat),
772 LINX_ (__NR_renameat, sys_renameat),
773 LINX_ (__NR_linkat, sys_linkat),
774 LINX_ (__NR_symlinkat, sys_symlinkat),
775 LINX_ (__NR_readlinkat, sys_readlinkat),
776 LINX_ (__NR_fchmodat, sys_fchmodat),
777 LINX_ (__NR_faccessat, sys_faccessat),
778 LINXY (__NR_pselect6, sys_pselect6),
779 LINXY (__NR_ppoll, sys_ppoll),
780 LINX_ (__NR_unshare, sys_unshare),
781 LINX_ (__NR_splice, sys_splice),
782 LINX_ (__NR_sync_file_range, sys_sync_file_range),
783 LINX_ (__NR_tee, sys_tee),
784 PLAX_ (__NR_vmsplice, sys_vmsplice),
785 LINX_ (__NR_set_robust_list, sys_set_robust_list),
786 LINXY (__NR_get_robust_list, sys_get_robust_list),
787 LINXY (__NR_epoll_pwait, sys_epoll_pwait),
788 LINX_ (__NR_ioprio_set, sys_ioprio_set),
789 LINX_ (__NR_ioprio_get, sys_ioprio_get),
790 LINX_ (__NR_utimensat, sys_utimensat),
791 LINXY (__NR_signalfd, sys_signalfd),
792 LINXY (__NR_eventfd, sys_eventfd),
793 LINX_ (__NR_fallocate, sys_fallocate),
794 LINXY (__NR_timerfd_create, sys_timerfd_create),
795 LINXY (__NR_timerfd_gettime, sys_timerfd_gettime),
796 LINXY (__NR_timerfd_settime, sys_timerfd_settime),
797 LINXY (__NR_newfstatat, sys_newfstatat),
798 LINXY (__NR_prlimit64, sys_prlimit64),
799 LINXY (__NR_clock_adjtime, sys_clock_adjtime),
800 LINXY (__NR_process_vm_readv, sys_process_vm_readv),
801 LINX_ (__NR_process_vm_writev, sys_process_vm_writev),
802 LINXY (__NR_getrandom, sys_getrandom),
803 LINXY (__NR_memfd_create, sys_memfd_create),
804 LINX_ (__NR_membarrier, sys_membarrier),
805 LINX_ (__NR_copy_file_range, sys_copy_file_range),
806 LINXY (__NR_preadv, sys_preadv),
807 LINX_ (__NR_pwritev, sys_pwritev),
808 LINXY (__NR_preadv2, sys_preadv2),
809 LINX_ (__NR_pwritev2, sys_pwritev2),
810 LINX_ (__NR_syncfs, sys_syncfs),
811 LINXY (__NR_statx, sys_statx),
814 SyscallTableEntry * ML_(get_linux_syscall_entry) ( UInt sysno )
816 const UInt syscall_main_table_size
817 = sizeof(syscall_main_table) / sizeof(syscall_main_table[0]);
819 if (sysno < syscall_main_table_size) {
820 SyscallTableEntry * sys = &syscall_main_table[sysno];
821 if (sys->before == NULL)
822 return NULL; /* no entry */
823 else
824 return sys;
826 /* Can't find a wrapper */
827 return NULL;
830 #endif /* defined(VGP_mips64_linux) */
832 /*--------------------------------------------------------------------*/
833 /*--- end syswrap-mips64-linux.c ---*/
834 /*--------------------------------------------------------------------*/