Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 1 | /* |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 2 | * Copyright (c) 1999, 2001 Hewlett-Packard Co |
| 3 | * David Mosberger-Tang <davidm@hpl.hp.com> |
Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * 3. The name of the author may not be used to endorse or promote products |
| 15 | * derived from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 27 | */ |
Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 28 | |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 29 | /* |
| 30 | * IA-32 syscalls that have pointer arguments which are incompatible |
| 31 | * with 64-bit layout get redirected to printargs. |
| 32 | */ |
| 33 | #define sys_getrlimit printargs |
| 34 | #define sys_afs_syscall printargs |
| 35 | #define sys_getpmsg printargs |
| 36 | #define sys_putpmsg printargs |
| 37 | #define sys_ugetrlimit printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 38 | #define sys_waitpid printargs |
| 39 | #define sys_time printargs |
| 40 | #define sys_break printargs |
| 41 | #define sys_oldstat printargs |
| 42 | #define sys_lseek printargs |
Mike Frysinger | cc07f66 | 2015-02-26 02:15:33 -0500 | [diff] [blame] | 43 | #undef sys_stime |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 44 | #define sys_stime printargs |
| 45 | #define sys_ptrace printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 46 | #define sys_oldfstat printargs |
| 47 | #define sys_pause printargs |
| 48 | #define sys_utime printargs |
| 49 | #define sys_stty printargs |
| 50 | #define sys_gtty printargs |
| 51 | #define sys_ftime printargs |
| 52 | #define sys_pipe printargs |
| 53 | #define sys_times printargs |
| 54 | #define sys_prof printargs |
| 55 | #define sys_signal printargs |
| 56 | #define sys_lock printargs |
| 57 | #define sys_ioctl printargs |
| 58 | #define sys_fcntl printargs |
| 59 | #define sys_mpx printargs |
| 60 | #define sys_ulimit printargs |
| 61 | #define sys_oldolduname printargs |
| 62 | #define sys_sigaction printargs |
Dmitry V. Levin | 9538352 | 2011-11-25 21:43:01 +0000 | [diff] [blame] | 63 | #define sys_siggetmask printargs |
| 64 | #define sys_sigsetmask printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 65 | #define sys_sigsuspend printargs |
| 66 | #define sys_sigpending printargs |
| 67 | #define sys_setrlimit printargs |
| 68 | #define sys_getrusage printargs |
| 69 | #define sys_gettimeofday printargs |
| 70 | #define sys_settimeofday printargs |
| 71 | #define sys_getgroups printargs |
| 72 | #define sys_setgroups printargs |
| 73 | #define sys_select printargs |
Dmitry V. Levin | 8582f88 | 2013-05-02 22:14:21 +0000 | [diff] [blame] | 74 | #undef sys_oldlstat |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 75 | #define sys_oldlstat printargs |
| 76 | #define sys_readdir printargs |
| 77 | #define sys_profil printargs |
| 78 | #define sys_statfs printargs |
| 79 | #define sys_fstatfs printargs |
| 80 | #define sys_ioperm printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 81 | #define sys_setitimer printargs |
| 82 | #define sys_getitimer printargs |
| 83 | #define sys_stat printargs |
Dmitry V. Levin | 8582f88 | 2013-05-02 22:14:21 +0000 | [diff] [blame] | 84 | #undef sys_lstat |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 85 | #define sys_lstat printargs |
| 86 | #define sys_fstat printargs |
| 87 | #define sys_olduname printargs |
| 88 | #define sys_iopl printargs |
| 89 | #define sys_idle printargs |
| 90 | #define sys_vm86old printargs |
| 91 | #define sys_wait4 printargs |
| 92 | #define sys_sysinfo printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 93 | #define sys_sigreturn printargs |
| 94 | #define sys_uname printargs |
| 95 | #define sys_modify_ldt printargs |
| 96 | #define sys_adjtimex printargs |
| 97 | #define sys_sigprocmask printargs |
| 98 | #define sys_create_module printargs |
| 99 | #define sys_init_module printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 100 | #define sys_get_kernel_syms printargs |
| 101 | #define sys_quotactl printargs |
| 102 | #define sys_bdflush printargs |
| 103 | #define sys_personality printargs |
| 104 | #define sys_getdents printargs |
| 105 | #define sys__newselect printargs |
| 106 | #define sys_msync printargs |
| 107 | #define sys_readv printargs |
| 108 | #define sys_writev printargs |
| 109 | #define sys__sysctl printargs |
| 110 | #define sys_sched_rr_get_interval printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 111 | #define sys_getresuid printargs |
| 112 | #define sys_vm86 printargs |
| 113 | #define sys_query_module printargs |
| 114 | #define sys_nfsservctl printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 115 | #define sys_rt_sigreturn printargs |
| 116 | #define sys_rt_sigaction printargs |
| 117 | #define sys_rt_sigprocmask printargs |
| 118 | #define sys_rt_sigtimedwait printargs |
| 119 | #define sys_rt_sigqueueinfo printargs |
| 120 | #define sys_rt_sigsuspend printargs |
| 121 | #define sys_pread printargs |
| 122 | #define sys_pwrite printargs |
| 123 | #define sys_sigaltstack printargs |
| 124 | #define sys_sendfile printargs |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 125 | #define sys_truncate64 printargs |
| 126 | #define sys_ftruncate64 printargs |
| 127 | #define sys_stat64 printargs |
Dmitry V. Levin | 8582f88 | 2013-05-02 22:14:21 +0000 | [diff] [blame] | 128 | #undef sys_lstat64 |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 129 | #define sys_lstat64 printargs |
| 130 | #define sys_fstat64 printargs |
| 131 | #define sys_fcntl64 printargs |
Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 132 | |
Denys Vlasenko | 4bfb198 | 2013-02-20 12:38:14 +0100 | [diff] [blame] | 133 | #include "../i386/syscallent.h" |
Wichert Akkerman | 57f229d | 2000-02-03 22:01:30 +0000 | [diff] [blame] | 134 | |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 135 | #undef sys_getrlimit |
| 136 | #undef sys_afs_syscall |
| 137 | #undef sys_getpmsg |
| 138 | #undef sys_putpmsg |
| 139 | #undef sys_ugetrlimit |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 140 | #undef sys_waitpid |
| 141 | #undef sys_time |
| 142 | #undef sys_break |
| 143 | #undef sys_oldstat |
| 144 | #undef sys_lseek |
| 145 | #undef sys_stime |
| 146 | #undef sys_ptrace |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 147 | #undef sys_oldfstat |
| 148 | #undef sys_pause |
| 149 | #undef sys_utime |
| 150 | #undef sys_stty |
| 151 | #undef sys_gtty |
| 152 | #undef sys_ftime |
| 153 | #undef sys_pipe |
| 154 | #undef sys_times |
| 155 | #undef sys_prof |
| 156 | #undef sys_signal |
| 157 | #undef sys_lock |
| 158 | #undef sys_ioctl |
| 159 | #undef sys_fcntl |
| 160 | #undef sys_mpx |
| 161 | #undef sys_ulimit |
| 162 | #undef sys_oldolduname |
| 163 | #undef sys_sigaction |
Dmitry V. Levin | 9538352 | 2011-11-25 21:43:01 +0000 | [diff] [blame] | 164 | #undef sys_siggetmask |
| 165 | #undef sys_sigsetmask |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 166 | #undef sys_sigsuspend |
| 167 | #undef sys_sigpending |
| 168 | #undef sys_setrlimit |
| 169 | #undef sys_getrusage |
| 170 | #undef sys_gettimeofday |
| 171 | #undef sys_settimeofday |
| 172 | #undef sys_getgroups |
| 173 | #undef sys_setgroups |
| 174 | #undef sys_select |
| 175 | #undef sys_oldlstat |
| 176 | #undef sys_readdir |
| 177 | #undef sys_profil |
| 178 | #undef sys_statfs |
| 179 | #undef sys_fstatfs |
| 180 | #undef sys_ioperm |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 181 | #undef sys_setitimer |
| 182 | #undef sys_getitimer |
| 183 | #undef sys_stat |
| 184 | #undef sys_lstat |
| 185 | #undef sys_fstat |
| 186 | #undef sys_olduname |
| 187 | #undef sys_iopl |
| 188 | #undef sys_idle |
| 189 | #undef sys_vm86old |
| 190 | #undef sys_wait4 |
| 191 | #undef sys_sysinfo |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 192 | #undef sys_sigreturn |
| 193 | #undef sys_uname |
| 194 | #undef sys_modify_ldt |
| 195 | #undef sys_adjtimex |
| 196 | #undef sys_sigprocmask |
| 197 | #undef sys_create_module |
| 198 | #undef sys_init_module |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 199 | #undef sys_get_kernel_syms |
| 200 | #undef sys_quotactl |
| 201 | #undef sys_bdflush |
| 202 | #undef sys_personality |
| 203 | #undef sys_getdents |
| 204 | #undef sys__newselect |
| 205 | #undef sys_msync |
| 206 | #undef sys_readv |
| 207 | #undef sys_writev |
| 208 | #undef sys__sysctl |
| 209 | #undef sys_sched_rr_get_interval |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 210 | #undef sys_getresuid |
| 211 | #undef sys_vm86 |
| 212 | #undef sys_query_module |
| 213 | #undef sys_nfsservctl |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 214 | #undef sys_rt_sigreturn |
| 215 | #undef sys_rt_sigaction |
| 216 | #undef sys_rt_sigprocmask |
| 217 | #undef sys_rt_sigtimedwait |
| 218 | #undef sys_rt_sigqueueinfo |
| 219 | #undef sys_rt_sigsuspend |
| 220 | #undef sys_pread |
| 221 | #undef sys_pwrite |
| 222 | #undef sys_sigaltstack |
| 223 | #undef sys_sendfile |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 224 | #undef sys_truncate64 |
| 225 | #undef sys_ftruncate64 |
| 226 | #undef sys_stat64 |
| 227 | #undef sys_lstat64 |
| 228 | #undef sys_fstat64 |
| 229 | #undef sys_fcntl64 |
| 230 | |
| 231 | #include "../dummy.h" |
| 232 | |
Andreas Schwab | 0873f29 | 2010-02-12 21:39:12 +0100 | [diff] [blame] | 233 | /* You must be careful to check ../i386/syscallent.h so that this table |
Roland McGrath | eddfb9e | 2002-12-18 04:36:53 +0000 | [diff] [blame] | 234 | starts where that one leaves off. |
| 235 | */ |
Dmitry V. Levin | f8d75c5 | 2015-02-26 22:03:19 +0000 | [diff] [blame^] | 236 | [(SYS_ipc_subcall + SYS_ipc_nsubcalls) ... 1023] = { }, |
Dmitry V. Levin | 166b0bc | 2015-01-11 02:42:56 +0000 | [diff] [blame] | 237 | [1024] = { 0, 0, printargs, "ni_syscall" }, |
| 238 | [1025] = { 1, TP|SE, sys_exit, "exit" }, |
| 239 | [1026] = { 3, TD, sys_read, "read" }, |
| 240 | [1027] = { 3, TD, sys_write, "write" }, |
| 241 | [1028] = { 3, TD|TF, sys_open, "open" }, |
| 242 | [1029] = { 1, TD, sys_close, "close" }, |
| 243 | [1030] = { 2, TD|TF, sys_creat, "creat" }, |
| 244 | [1031] = { 2, TF, sys_link, "link" }, |
| 245 | [1032] = { 1, TF, sys_unlink, "unlink" }, |
| 246 | [1033] = { 3, TF|TP|SE|SI, sys_execve, "execve" }, |
| 247 | [1034] = { 1, TF, sys_chdir, "chdir" }, |
| 248 | [1035] = { 1, TD, sys_fchdir, "fchdir" }, |
| 249 | [1036] = { 2, TF, sys_utimes, "utimes" }, |
| 250 | [1037] = { 3, TF, sys_mknod, "mknod" }, |
| 251 | [1038] = { 2, TF, sys_chmod, "chmod" }, |
| 252 | [1039] = { 3, TF, sys_chown, "chown" }, |
| 253 | [1040] = { 3, TD, sys_lseek, "lseek" }, |
| 254 | [1041] = { 0, 0, sys_getpid, "getpid" }, |
| 255 | [1042] = { 0, 0, sys_getppid, "getppid" }, |
| 256 | [1043] = { 5, TF, sys_mount, "mount" }, |
| 257 | [1044] = { 2, TF, sys_umount2, "umount" }, |
| 258 | [1045] = { 1, 0, sys_setuid, "setuid" }, |
| 259 | [1046] = { 0, NF, sys_getuid, "getuid" }, |
| 260 | [1047] = { 0, NF, sys_geteuid, "geteuid" }, |
| 261 | [1048] = { 4, 0, sys_ptrace, "ptrace" }, |
| 262 | [1049] = { 2, TF, sys_access, "access" }, |
| 263 | [1050] = { 0, 0, sys_sync, "sync" }, |
| 264 | [1051] = { 1, TD, sys_fsync, "fsync" }, |
| 265 | [1052] = { 1, TD, sys_fdatasync, "fdatasync" }, |
| 266 | [1053] = { 2, TS, sys_kill, "kill" }, |
| 267 | [1054] = { 2, TF, sys_rename, "rename" }, |
| 268 | [1055] = { 2, TF, sys_mkdir, "mkdir" }, |
| 269 | [1056] = { 1, TF, sys_rmdir, "rmdir" }, |
| 270 | [1057] = { 1, TD, sys_dup, "dup" }, |
| 271 | [1058] = { 1, TD, sys_pipe, "pipe" }, |
| 272 | [1059] = { 1, 0, sys_times, "times" }, |
| 273 | [1060] = { 1, TM|SI, sys_brk, "brk" }, |
| 274 | [1061] = { 1, 0, sys_setgid, "setgid" }, |
| 275 | [1062] = { 0, NF, sys_getgid, "getgid" }, |
| 276 | [1063] = { 0, NF, sys_getegid, "getegid" }, |
| 277 | [1064] = { 1, TF, sys_acct, "acct" }, |
| 278 | [1065] = { 3, TD, sys_ioctl, "ioctl" }, |
| 279 | [1066] = { 3, TD, sys_fcntl, "fcntl" }, |
| 280 | [1067] = { 1, 0, sys_umask, "umask" }, |
| 281 | [1068] = { 1, TF, sys_chroot, "chroot" }, |
| 282 | [1069] = { 2, 0, sys_ustat, "ustat" }, |
| 283 | [1070] = { 2, TD, sys_dup2, "dup2" }, |
| 284 | [1071] = { 2, 0, sys_setreuid, "setreuid" }, |
| 285 | [1072] = { 2, 0, sys_setregid, "setregid" }, |
Mike Frysinger | 761e31a | 2015-02-26 02:25:27 -0500 | [diff] [blame] | 286 | [1073] = { 3, 0, sys_getresuid, "getresuid" }, |
Dmitry V. Levin | 166b0bc | 2015-01-11 02:42:56 +0000 | [diff] [blame] | 287 | [1074] = { 3, 0, sys_setresuid, "setresuid" }, |
Mike Frysinger | 761e31a | 2015-02-26 02:25:27 -0500 | [diff] [blame] | 288 | [1075] = { 3, 0, sys_getresgid, "getresgid" }, |
| 289 | [1076] = { 3, 0, sys_setresgid, "setresgid" }, |
Dmitry V. Levin | 166b0bc | 2015-01-11 02:42:56 +0000 | [diff] [blame] | 290 | [1077] = { 2, 0, sys_getgroups, "getgroups" }, |
| 291 | [1078] = { 2, 0, sys_setgroups, "setgroups" }, |
| 292 | [1079] = { 1, 0, sys_getpgid, "getpgid" }, |
| 293 | [1080] = { 2, 0, sys_setpgid, "setpgid" }, |
| 294 | [1081] = { 0, 0, sys_setsid, "setsid" }, |
| 295 | [1082] = { 1, 0, sys_getsid, "getsid" }, |
| 296 | [1083] = { 2, 0, sys_sethostname, "sethostname" }, |
| 297 | [1084] = { 2, 0, sys_setrlimit, "setrlimit" }, |
| 298 | [1085] = { 2, 0, sys_getrlimit, "getrlimit" }, |
| 299 | [1086] = { 2, 0, sys_getrusage, "getrusage" }, |
| 300 | [1087] = { 2, 0, sys_gettimeofday, "gettimeofday" }, |
| 301 | [1088] = { 2, 0, sys_settimeofday, "settimeofday" }, |
| 302 | [1089] = { 5, TD, sys_select, "select" }, |
| 303 | [1090] = { 3, TD, sys_poll, "poll" }, |
| 304 | [1091] = { 2, TF, sys_symlink, "symlink" }, |
| 305 | [1092] = { 3, TF, sys_readlink, "readlink" }, |
| 306 | [1093] = { 1, TF, sys_uselib, "uselib" }, |
| 307 | [1094] = { 2, TF, sys_swapon, "swapon" }, |
| 308 | [1095] = { 1, TF, sys_swapoff, "swapoff" }, |
| 309 | [1096] = { 4, 0, sys_reboot, "reboot" }, |
| 310 | [1097] = { 2, TF, sys_truncate, "truncate" }, |
| 311 | [1098] = { 2, TD, sys_ftruncate, "ftruncate" }, |
| 312 | [1099] = { 2, TD, sys_fchmod, "fchmod" }, |
| 313 | [1100] = { 3, TD, sys_fchown, "fchown" }, |
| 314 | [1101] = { 2, 0, sys_getpriority, "getpriority" }, |
| 315 | [1102] = { 3, 0, sys_setpriority, "setpriority" }, |
| 316 | [1103] = { 2, TF, sys_statfs, "statfs" }, |
| 317 | [1104] = { 2, TD, sys_fstatfs, "fstatfs" }, |
| 318 | [1105] = { 3, 0, sys_gettid, "gettid" }, |
| 319 | [1106] = { 3, TI, sys_semget, "semget" }, |
| 320 | [1107] = { 3, TI, printargs, "semop" }, |
| 321 | [1108] = { 4, TI, sys_semctl, "semctl" }, |
| 322 | [1109] = { 2, TI, sys_msgget, "msgget" }, |
| 323 | [1110] = { 4, TI, sys_msgsnd, "msgsnd" }, |
| 324 | [1111] = { 5, TI, sys_msgrcv, "msgrcv" }, |
| 325 | [1112] = { 3, TI, sys_msgctl, "msgctl" }, |
| 326 | [1113] = { 3, TI, sys_shmget, "shmget" }, |
| 327 | [1114] = { 3, TI|TM|SI, sys_shmat, "shmat" }, |
| 328 | [1115] = { 1, TI|TM|SI, sys_shmdt, "shmdt" }, |
| 329 | [1116] = { 3, TI, sys_shmctl, "shmctl" }, |
| 330 | [1117] = { 3, 0, sys_syslog, "syslog" }, |
| 331 | [1118] = { 3, 0, sys_setitimer, "setitimer" }, |
| 332 | [1119] = { 2, 0, sys_getitimer, "getitimer" }, |
| 333 | [1120] = { 2, TF, sys_stat, "stat" }, |
| 334 | [1121] = { 2, TF, sys_lstat, "lstat" }, |
| 335 | [1122] = { 2, TD, sys_fstat, "fstat" }, |
| 336 | [1123] = { 0, 0, sys_vhangup, "vhangup" }, |
| 337 | [1124] = { 3, TF, sys_chown, "lchown" }, |
| 338 | [1125] = { 5, 0, sys_vm86, "vm86" }, |
| 339 | [1126] = { 4, TP, sys_wait4, "wait4" }, |
| 340 | [1127] = { 1, 0, sys_sysinfo, "sysinfo" }, |
| 341 | [1128] = { 5, TP, sys_clone, "clone" }, |
| 342 | [1129] = { 2, 0, sys_setdomainname, "setdomainname" }, |
| 343 | [1130] = { 1, 0, sys_uname, "uname" }, |
| 344 | [1131] = { 1, 0, sys_adjtimex, "adjtimex" }, |
| 345 | [1132] = { 2, 0, sys_create_module, "create_module" }, |
| 346 | [1133] = { 4, 0, sys_init_module, "init_module" }, |
| 347 | [1134] = { 2, 0, sys_delete_module, "delete_module" }, |
| 348 | [1135] = { 1, 0, sys_get_kernel_syms, "get_kernel_syms" }, |
| 349 | [1136] = { 5, 0, sys_query_module, "query_module" }, |
| 350 | [1137] = { 4, TF, sys_quotactl, "quotactl" }, |
| 351 | [1138] = { 0, 0, sys_bdflush, "bdflush" }, |
| 352 | [1139] = { 3, 0, sys_sysfs, "sysfs" }, |
| 353 | [1140] = { 1, 0, sys_personality, "personality" }, |
| 354 | [1141] = { 5, 0, sys_afs_syscall, "afs_syscall" }, |
| 355 | [1142] = { 1, NF, sys_setfsuid, "setfsuid" }, |
| 356 | [1143] = { 1, NF, sys_setfsgid, "setfsgid" }, |
| 357 | [1144] = { 3, TD, sys_getdents, "getdents" }, |
| 358 | [1145] = { 2, TD, sys_flock, "flock" }, |
| 359 | [1146] = { 5, TD, sys_readv, "readv" }, |
| 360 | [1147] = { 5, TD, sys_writev, "writev" }, |
| 361 | [1148] = { 4, TD, sys_pread, "pread" }, |
| 362 | [1149] = { 4, TD, sys_pwrite, "pwrite" }, |
| 363 | [1150] = { 1, 0, printargs, "_sysctl" }, |
| 364 | [1151] = { 6, TD|TM|SI, sys_mmap, "mmap" }, |
| 365 | [1152] = { 2, TM|SI, sys_munmap, "munmap" }, |
| 366 | [1153] = { 2, TM, sys_mlock, "mlock" }, |
| 367 | [1154] = { 1, TM, sys_mlockall, "mlockall" }, |
| 368 | [1155] = { 3, TM|SI, sys_mprotect, "mprotect" }, |
| 369 | [1156] = { 5, TM|SI, sys_mremap, "mremap" }, |
| 370 | [1157] = { 3, TM, sys_msync, "msync" }, |
| 371 | [1158] = { 2, TM, sys_munlock, "munlock" }, |
| 372 | [1159] = { 0, TM, sys_munlockall, "munlockall" }, |
| 373 | [1160] = { 2, 0, sys_sched_getparam, "sched_getparam" }, |
| 374 | [1161] = { 2, 0, sys_sched_setparam, "sched_setparam" }, |
| 375 | [1162] = { 2, 0, sys_sched_getscheduler, "sched_getscheduler" }, |
| 376 | [1163] = { 3, 0, sys_sched_setscheduler, "sched_setscheduler" }, |
| 377 | [1164] = { 0, 0, sys_sched_yield, "sched_yield" }, |
| 378 | [1165] = { 1, 0, sys_sched_get_priority_max, "sched_get_priority_max"}, |
| 379 | [1166] = { 1, 0, sys_sched_get_priority_min, "sched_get_priority_min"}, |
| 380 | [1167] = { 2, 0, sys_sched_rr_get_interval, "sched_rr_get_interval" }, |
| 381 | [1168] = { 2, 0, sys_nanosleep, "nanosleep" }, |
| 382 | [1169] = { 3, 0, sys_nfsservctl, "nfsservctl" }, |
| 383 | [1170] = { 5, 0, sys_prctl, "prctl" }, |
| 384 | [1171] = { 1, 0, sys_getpagesize, "getpagesize" }, |
| 385 | [1172] = { 6, TD|TM|SI, sys_mmap_pgoff, "mmap2" }, |
| 386 | [1173] = { 5, 0, printargs, "pciconfig_read" }, |
| 387 | [1174] = { 5, 0, printargs, "pciconfig_write" }, |
| 388 | [1175] = { MA, 0, printargs, "perfmonctl" }, |
| 389 | [1176] = { 2, TS, sys_sigaltstack, "sigaltstack" }, |
| 390 | [1177] = { 4, TS, sys_rt_sigaction, "rt_sigaction" }, |
| 391 | [1178] = { 2, TS, sys_rt_sigpending, "rt_sigpending" }, |
| 392 | [1179] = { 4, TS, sys_rt_sigprocmask, "rt_sigprocmask" }, |
| 393 | [1180] = { 3, TS, sys_rt_sigqueueinfo, "rt_sigqueueinfo" }, |
| 394 | [1181] = { 0, TS, sys_sigreturn, "rt_sigreturn" }, |
| 395 | [1182] = { 2, TS, sys_rt_sigsuspend, "rt_sigsuspend" }, |
| 396 | [1183] = { 4, TS, sys_rt_sigtimedwait, "rt_sigtimedwait" }, |
| 397 | [1184] = { 2, TF, sys_getcwd, "getcwd" }, |
| 398 | [1185] = { 2, 0, sys_capget, "capget" }, |
| 399 | [1186] = { 2, 0, sys_capset, "capset" }, |
| 400 | [1187] = { 4, TD|TN, sys_sendfile, "sendfile" }, |
| 401 | [1188] = { 5, TN, printargs, "getpmsg" }, |
| 402 | [1189] = { 5, TN, printargs, "putpmsg" }, |
| 403 | [1190] = { 3, TN, sys_socket, "socket" }, |
| 404 | [1191] = { 3, TN, sys_bind, "bind" }, |
| 405 | [1192] = { 3, TN, sys_connect, "connect" }, |
| 406 | [1193] = { 2, TN, sys_listen, "listen" }, |
| 407 | [1194] = { 3, TN, sys_accept, "accept" }, |
| 408 | [1195] = { 3, TN, sys_getsockname, "getsockname" }, |
| 409 | [1196] = { 3, TN, sys_getpeername, "getpeername" }, |
| 410 | [1197] = { 4, TN, sys_socketpair, "socketpair" }, |
| 411 | [1198] = { 4, TN, sys_send, "send" }, |
| 412 | [1199] = { 6, TN, sys_sendto, "sendto" }, |
| 413 | [1200] = { 4, TN, sys_recv, "recv" }, |
| 414 | [1201] = { 6, TN, sys_recvfrom, "recvfrom" }, |
| 415 | [1202] = { 2, TN, sys_shutdown, "shutdown" }, |
| 416 | [1203] = { 5, TN, sys_setsockopt, "setsockopt" }, |
| 417 | [1204] = { 5, TN, sys_getsockopt, "getsockopt" }, |
| 418 | [1205] = { 3, TN, sys_sendmsg, "sendmsg" }, |
| 419 | [1206] = { 3, TN, sys_recvmsg, "recvmsg" }, |
| 420 | [1207] = { 2, TF, sys_pivotroot, "pivot_root" }, |
| 421 | [1208] = { 3, TM, sys_mincore, "mincore" }, |
| 422 | [1209] = { 3, TM, sys_madvise, "madvise" }, |
| 423 | [1210] = { 2, TF, sys_stat, "stat" }, |
| 424 | [1211] = { 2, TF, sys_lstat, "lstat" }, |
| 425 | [1212] = { 2, TD, sys_fstat, "fstat" }, |
| 426 | [1213] = { 6, TP, sys_clone, "clone2" }, |
| 427 | [1214] = { 3, TD, sys_getdents64, "getdents64" }, |
| 428 | [1215] = { 2, 0, printargs, "getunwind" }, |
| 429 | [1216] = { 3, TD, sys_readahead, "readahead" }, |
| 430 | [1217] = { 5, TF, sys_setxattr, "setxattr" }, |
| 431 | [1218] = { 5, TF, sys_setxattr, "lsetxattr" }, |
| 432 | [1219] = { 5, TD, sys_fsetxattr, "fsetxattr" }, |
| 433 | [1220] = { 4, TF, sys_getxattr, "getxattr" }, |
| 434 | [1221] = { 4, TF, sys_getxattr, "lgetxattr" }, |
| 435 | [1222] = { 4, TD, sys_fgetxattr, "fgetxattr" }, |
| 436 | [1223] = { 3, TF, sys_listxattr, "listxattr" }, |
| 437 | [1224] = { 3, TF, sys_listxattr, "llistxattr" }, |
| 438 | [1225] = { 3, TD, sys_flistxattr, "flistxattr" }, |
| 439 | [1226] = { 2, TF, sys_removexattr, "removexattr" }, |
| 440 | [1227] = { 2, TF, sys_removexattr, "lremovexattr" }, |
| 441 | [1228] = { 2, TD, sys_fremovexattr, "fremovexattr" }, |
| 442 | [1229] = { 2, TS, sys_kill, "tkill" }, |
| 443 | [1230] = { 6, 0, sys_futex, "futex" }, |
| 444 | [1231] = { 3, 0, sys_sched_setaffinity, "sched_setaffinity" }, |
| 445 | [1232] = { 3, 0, sys_sched_getaffinity, "sched_getaffinity" }, |
| 446 | [1233] = { 1, 0, sys_set_tid_address, "set_tid_address" }, |
| 447 | [1234] = { 4, TD, sys_fadvise64, "fadvise64" }, |
| 448 | [1235] = { 3, TS, sys_tgkill, "tgkill" }, |
| 449 | [1236] = { 1, TP|SE, sys_exit, "exit_group" }, |
| 450 | [1237] = { 3, 0, sys_lookup_dcookie, "lookup_dcookie" }, |
| 451 | [1238] = { 2, 0, sys_io_setup, "io_setup" }, |
| 452 | [1239] = { 1, 0, sys_io_destroy, "io_destroy" }, |
| 453 | [1240] = { 5, 0, sys_io_getevents, "io_getevents" }, |
| 454 | [1241] = { 3, 0, sys_io_submit, "io_submit" }, |
| 455 | [1242] = { 3, 0, sys_io_cancel, "io_cancel" }, |
| 456 | [1243] = { 1, TD, sys_epoll_create, "epoll_create" }, |
| 457 | [1244] = { 4, TD, sys_epoll_ctl, "epoll_ctl" }, |
| 458 | [1245] = { 4, TD, sys_epoll_wait, "epoll_wait" }, |
| 459 | [1246] = { 0, 0, sys_restart_syscall, "restart_syscall" }, |
| 460 | [1247] = { 4, TI, sys_semtimedop, "semtimedop" }, |
| 461 | [1248] = { 3, 0, sys_timer_create, "timer_create" }, |
| 462 | [1249] = { 4, 0, sys_timer_settime, "timer_settime" }, |
| 463 | [1250] = { 2, 0, sys_timer_gettime, "timer_gettime" }, |
| 464 | [1251] = { 1, 0, sys_timer_getoverrun, "timer_getoverrun" }, |
| 465 | [1252] = { 1, 0, sys_timer_delete, "timer_delete" }, |
| 466 | [1253] = { 2, 0, sys_clock_settime, "clock_settime" }, |
| 467 | [1254] = { 2, 0, sys_clock_gettime, "clock_gettime" }, |
| 468 | [1255] = { 2, 0, sys_clock_getres, "clock_getres" }, |
| 469 | [1256] = { 4, 0, sys_clock_nanosleep, "clock_nanosleep" }, |
| 470 | [1257] = { MA, 0, printargs, "fstatfs64" }, |
| 471 | [1258] = { MA, 0, printargs, "statfs64" }, |
| 472 | [1259] = { 6, TM, sys_mbind, "mbind" }, |
| 473 | [1260] = { 5, TM, sys_get_mempolicy, "get_mempolicy" }, |
| 474 | [1261] = { 3, TM, sys_set_mempolicy, "set_mempolicy" }, |
| 475 | [1262] = { 4, 0, sys_mq_open, "mq_open" }, |
| 476 | [1263] = { 1, 0, sys_mq_unlink, "mq_unlink" }, |
| 477 | [1264] = { 5, 0, sys_mq_timedsend, "mq_timedsend" }, |
| 478 | [1265] = { 5, 0, sys_mq_timedreceive, "mq_timedreceive" }, |
| 479 | [1266] = { 2, 0, sys_mq_notify, "mq_notify" }, |
| 480 | [1267] = { 3, 0, sys_mq_getsetattr, "mq_getsetattr" }, |
| 481 | [1268] = { 4, 0, sys_kexec_load, "kexec_load" }, |
| 482 | [1269] = { 5, 0, sys_vserver, "vserver" }, |
| 483 | [1270] = { 5, TP, sys_waitid, "waitid" }, |
| 484 | [1271] = { 5, 0, sys_add_key, "add_key" }, |
| 485 | [1272] = { 4, 0, sys_request_key, "request_key" }, |
| 486 | [1273] = { 5, 0, sys_keyctl, "keyctl" }, |
| 487 | [1274] = { 3, 0, sys_ioprio_set, "ioprio_set" }, |
| 488 | [1275] = { 2, 0, sys_ioprio_get, "ioprio_get" }, |
| 489 | [1276] = { 6, TM, sys_move_pages, "move_pages" }, |
| 490 | [1277] = { 0, TD, sys_inotify_init, "inotify_init" }, |
| 491 | [1278] = { 3, TD, sys_inotify_add_watch, "inotify_add_watch" }, |
| 492 | [1279] = { 2, TD, sys_inotify_rm_watch, "inotify_rm_watch" }, |
| 493 | [1280] = { 4, TM, sys_migrate_pages, "migrate_pages" }, |
| 494 | [1281] = { 4, TD|TF, sys_openat, "openat" }, |
| 495 | [1282] = { 3, TD|TF, sys_mkdirat, "mkdirat" }, |
| 496 | [1283] = { 4, TD|TF, sys_mknodat, "mknodat" }, |
| 497 | [1284] = { 5, TD|TF, sys_fchownat, "fchownat" }, |
| 498 | [1285] = { 3, TD|TF, sys_futimesat, "futimesat" }, |
| 499 | [1286] = { 4, TD|TF, sys_newfstatat, "newfstatat" }, |
| 500 | [1287] = { 3, TD|TF, sys_unlinkat, "unlinkat" }, |
| 501 | [1288] = { 4, TD|TF, sys_renameat, "renameat" }, |
| 502 | [1289] = { 5, TD|TF, sys_linkat, "linkat" }, |
| 503 | [1290] = { 3, TD|TF, sys_symlinkat, "symlinkat" }, |
| 504 | [1291] = { 4, TD|TF, sys_readlinkat, "readlinkat" }, |
| 505 | [1292] = { 3, TD|TF, sys_fchmodat, "fchmodat" }, |
| 506 | [1293] = { 3, TD|TF, sys_faccessat, "faccessat" }, |
| 507 | [1294] = { 6, TD, sys_pselect6, "pselect6" }, |
| 508 | [1295] = { 5, TD, sys_ppoll, "ppoll" }, |
| 509 | [1296] = { 1, TP, sys_unshare, "unshare" }, |
| 510 | [1297] = { 2, 0, sys_set_robust_list, "set_robust_list" }, |
| 511 | [1298] = { 3, 0, sys_get_robust_list, "get_robust_list" }, |
| 512 | [1299] = { 6, TD, sys_splice, "splice" }, |
| 513 | [1300] = { 4, TD, sys_sync_file_range, "sync_file_range" }, |
| 514 | [1301] = { 4, TD, sys_tee, "tee" }, |
| 515 | [1302] = { 4, TD, sys_vmsplice, "vmsplice" }, |
| 516 | [1303] = { 4, TD, sys_fallocate, "fallocate" }, |
| 517 | [1304] = { 3, 0, sys_getcpu, "getcpu" }, |
| 518 | [1305] = { 6, TD, sys_epoll_pwait, "epoll_pwait" }, |
| 519 | [1306] = { }, |
| 520 | [1307] = { 3, TD|TS, sys_signalfd, "signalfd" }, |
| 521 | [1308] = { 4, TD, sys_timerfd, "timerfd" }, |
| 522 | [1309] = { 1, TD, sys_eventfd, "eventfd" }, |
| 523 | [1310] = { 2, TD, sys_timerfd_create, "timerfd_create" }, |
| 524 | [1311] = { 4, TD, sys_timerfd_settime, "timerfd_settime" }, |
| 525 | [1312] = { 2, TD, sys_timerfd_gettime, "timerfd_gettime" }, |
| 526 | [1313] = { 4, TD|TS, sys_signalfd4, "signalfd4" }, |
| 527 | [1314] = { 2, TD, sys_eventfd2, "eventfd2" }, |
| 528 | [1315] = { 1, TD, sys_epoll_create1, "epoll_create1" }, |
| 529 | [1316] = { 3, TD, sys_dup3, "dup3" }, |
| 530 | [1317] = { 2, TD, sys_pipe2, "pipe2" }, |
| 531 | [1318] = { 1, TD, sys_inotify_init1, "inotify_init1" }, |
| 532 | [1319] = { 4, TD, sys_preadv, "preadv" }, |
| 533 | [1320] = { 4, TD, sys_pwritev, "pwritev" }, |
| 534 | [1321] = { 4, TP|TS, sys_rt_tgsigqueueinfo, "rt_tgsigqueueinfo" }, |
| 535 | [1322] = { 5, TN, sys_recvmmsg, "recvmmsg" }, |
| 536 | [1323] = { 2, TD, sys_fanotify_init, "fanotify_init" }, |
| 537 | [1324] = { 5, TD|TF, sys_fanotify_mark, "fanotify_mark" }, |
| 538 | [1325] = { 4, 0, sys_prlimit64, "prlimit64" }, |
| 539 | [1326] = { 5, TD|TF, sys_name_to_handle_at, "name_to_handle_at" }, |
| 540 | [1327] = { 3, TD, sys_open_by_handle_at, "open_by_handle_at" }, |
| 541 | [1328] = { 2, 0, sys_clock_adjtime, "clock_adjtime" }, |
| 542 | [1329] = { 1, TD, sys_syncfs, "syncfs" }, |
| 543 | [1330] = { 2, TD, sys_setns, "setns" }, |
| 544 | [1331] = { 4, TN, sys_sendmmsg, "sendmmsg" }, |
| 545 | [1332] = { 6, 0, sys_process_vm_readv, "process_vm_readv" }, |
| 546 | [1333] = { 6, 0, sys_process_vm_writev, "process_vm_writev" }, |
| 547 | [1334] = { 4, TN, sys_accept4, "accept4" }, |
| 548 | [1335] = { 3, TD, sys_finit_module, "finit_module" }, |
| 549 | [1336] = { 3, 0, sys_sched_setattr, "sched_setattr" }, |
| 550 | [1337] = { 4, 0, sys_sched_getattr, "sched_getattr" }, |
| 551 | [1338] = { 5, TD|TF, sys_renameat2, "renameat2" }, |
Dmitry V. Levin | e78f02a | 2015-01-12 18:53:32 +0000 | [diff] [blame] | 552 | [1339] = { 3, 0, sys_getrandom, "getrandom", }, |
| 553 | [1340] = { 2, TD, sys_memfd_create, "memfd_create", }, |
| 554 | [1341] = { 3, TD, sys_bpf, "bpf", }, |
| 555 | [1342] = { 5, TD|TF|TP|SE|SI, sys_execveat, "execveat", }, |