1 1.1 ryo /* $NetBSD: linux_syscallargs.h,v 1.13 2024/09/28 19:36:19 christos Exp $ */ 2 1.1 ryo 3 1.1 ryo /* 4 1.1 ryo * System call argument lists. 5 1.1 ryo * 6 1.1 ryo * DO NOT EDIT-- this file is automatically generated. 7 1.13 christos * created from NetBSD: syscalls.master,v 1.14 2024/09/28 19:35:55 christos Exp 8 1.1 ryo */ 9 1.1 ryo 10 1.1 ryo #ifndef _LINUX_SYS_SYSCALLARGS_H_ 11 1.1 ryo #define _LINUX_SYS_SYSCALLARGS_H_ 12 1.1 ryo 13 1.1 ryo /* Forward declaration */ 14 1.1 ryo struct lwp; 15 1.1 ryo 16 1.1 ryo #define LINUX_SYS_MAXSYSARGS 8 17 1.1 ryo 18 1.1 ryo #undef syscallarg 19 1.1 ryo #define syscallarg(x) \ 20 1.1 ryo union { \ 21 1.1 ryo register_t pad; \ 22 1.1 ryo struct { x datum; } le; \ 23 1.1 ryo struct { /* LINTED zero array dimension */ \ 24 1.1 ryo int8_t pad[ /* CONSTCOND */ \ 25 1.1 ryo (sizeof (register_t) < sizeof (x)) \ 26 1.1 ryo ? 0 \ 27 1.1 ryo : sizeof (register_t) - sizeof (x)]; \ 28 1.1 ryo x datum; \ 29 1.1 ryo } be; \ 30 1.1 ryo } 31 1.1 ryo 32 1.1 ryo #undef check_syscall_args 33 1.1 ryo #define check_syscall_args(call) /*LINTED*/ \ 34 1.1 ryo typedef char call##_check_args[sizeof (struct call##_args) \ 35 1.1 ryo <= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1]; 36 1.1 ryo 37 1.1 ryo struct linux_sys_setxattr_args { 38 1.1 ryo syscallarg(char *) path; 39 1.1 ryo syscallarg(char *) name; 40 1.1 ryo syscallarg(void *) value; 41 1.1 ryo syscallarg(size_t) size; 42 1.1 ryo syscallarg(int) flags; 43 1.1 ryo }; 44 1.1 ryo check_syscall_args(linux_sys_setxattr) 45 1.1 ryo 46 1.1 ryo struct linux_sys_lsetxattr_args { 47 1.1 ryo syscallarg(char *) path; 48 1.1 ryo syscallarg(char *) name; 49 1.1 ryo syscallarg(void *) value; 50 1.1 ryo syscallarg(size_t) size; 51 1.1 ryo syscallarg(int) flags; 52 1.1 ryo }; 53 1.1 ryo check_syscall_args(linux_sys_lsetxattr) 54 1.1 ryo 55 1.1 ryo struct linux_sys_fsetxattr_args { 56 1.1 ryo syscallarg(int) fd; 57 1.1 ryo syscallarg(char *) name; 58 1.1 ryo syscallarg(void *) value; 59 1.1 ryo syscallarg(size_t) size; 60 1.1 ryo syscallarg(int) flags; 61 1.1 ryo }; 62 1.1 ryo check_syscall_args(linux_sys_fsetxattr) 63 1.1 ryo 64 1.1 ryo struct linux_sys_getxattr_args { 65 1.1 ryo syscallarg(char *) path; 66 1.1 ryo syscallarg(char *) name; 67 1.1 ryo syscallarg(void *) value; 68 1.1 ryo syscallarg(size_t) size; 69 1.1 ryo }; 70 1.1 ryo check_syscall_args(linux_sys_getxattr) 71 1.1 ryo 72 1.1 ryo struct linux_sys_lgetxattr_args { 73 1.1 ryo syscallarg(char *) path; 74 1.1 ryo syscallarg(char *) name; 75 1.1 ryo syscallarg(void *) value; 76 1.1 ryo syscallarg(size_t) size; 77 1.1 ryo }; 78 1.1 ryo check_syscall_args(linux_sys_lgetxattr) 79 1.1 ryo 80 1.1 ryo struct linux_sys_fgetxattr_args { 81 1.1 ryo syscallarg(int) fd; 82 1.1 ryo syscallarg(char *) name; 83 1.1 ryo syscallarg(void *) value; 84 1.1 ryo syscallarg(size_t) size; 85 1.1 ryo }; 86 1.1 ryo check_syscall_args(linux_sys_fgetxattr) 87 1.1 ryo 88 1.1 ryo struct linux_sys_listxattr_args { 89 1.1 ryo syscallarg(char *) path; 90 1.1 ryo syscallarg(char *) list; 91 1.1 ryo syscallarg(size_t) size; 92 1.1 ryo }; 93 1.1 ryo check_syscall_args(linux_sys_listxattr) 94 1.1 ryo 95 1.1 ryo struct linux_sys_llistxattr_args { 96 1.1 ryo syscallarg(char *) path; 97 1.1 ryo syscallarg(char *) list; 98 1.1 ryo syscallarg(size_t) size; 99 1.1 ryo }; 100 1.1 ryo check_syscall_args(linux_sys_llistxattr) 101 1.1 ryo 102 1.1 ryo struct linux_sys_flistxattr_args { 103 1.1 ryo syscallarg(int) fd; 104 1.1 ryo syscallarg(char *) list; 105 1.1 ryo syscallarg(size_t) size; 106 1.1 ryo }; 107 1.1 ryo check_syscall_args(linux_sys_flistxattr) 108 1.1 ryo 109 1.1 ryo struct linux_sys_removexattr_args { 110 1.1 ryo syscallarg(char *) path; 111 1.1 ryo syscallarg(char *) name; 112 1.1 ryo }; 113 1.1 ryo check_syscall_args(linux_sys_removexattr) 114 1.1 ryo 115 1.1 ryo struct linux_sys_lremovexattr_args { 116 1.1 ryo syscallarg(char *) path; 117 1.1 ryo syscallarg(char *) name; 118 1.1 ryo }; 119 1.1 ryo check_syscall_args(linux_sys_lremovexattr) 120 1.1 ryo 121 1.1 ryo struct linux_sys_fremovexattr_args { 122 1.1 ryo syscallarg(int) fd; 123 1.1 ryo syscallarg(char *) name; 124 1.1 ryo }; 125 1.1 ryo check_syscall_args(linux_sys_fremovexattr) 126 1.1 ryo 127 1.1 ryo struct sys___getcwd_args; 128 1.1 ryo 129 1.1 ryo struct linux_sys_eventfd2_args { 130 1.1 ryo syscallarg(unsigned int) initval; 131 1.1 ryo syscallarg(int) flags; 132 1.1 ryo }; 133 1.1 ryo check_syscall_args(linux_sys_eventfd2) 134 1.1 ryo 135 1.6 christos struct linux_sys_epoll_create1_args { 136 1.6 christos syscallarg(int) flags; 137 1.6 christos }; 138 1.6 christos check_syscall_args(linux_sys_epoll_create1) 139 1.6 christos 140 1.6 christos struct linux_sys_epoll_ctl_args { 141 1.6 christos syscallarg(int) epfd; 142 1.6 christos syscallarg(int) op; 143 1.6 christos syscallarg(int) fd; 144 1.6 christos syscallarg(struct linux_epoll_event *) event; 145 1.6 christos }; 146 1.6 christos check_syscall_args(linux_sys_epoll_ctl) 147 1.6 christos 148 1.6 christos struct linux_sys_epoll_pwait_args { 149 1.6 christos syscallarg(int) epfd; 150 1.6 christos syscallarg(struct linux_epoll_event *) events; 151 1.6 christos syscallarg(int) maxevents; 152 1.6 christos syscallarg(int) timeout; 153 1.6 christos syscallarg(const linux_sigset_t *) sigmask; 154 1.6 christos }; 155 1.6 christos check_syscall_args(linux_sys_epoll_pwait) 156 1.6 christos 157 1.1 ryo struct sys_dup_args; 158 1.1 ryo 159 1.1 ryo struct linux_sys_dup3_args { 160 1.1 ryo syscallarg(int) from; 161 1.1 ryo syscallarg(int) to; 162 1.1 ryo syscallarg(int) flags; 163 1.1 ryo }; 164 1.1 ryo check_syscall_args(linux_sys_dup3) 165 1.1 ryo 166 1.1 ryo struct linux_sys_fcntl_args { 167 1.1 ryo syscallarg(int) fd; 168 1.1 ryo syscallarg(int) cmd; 169 1.1 ryo syscallarg(void *) arg; 170 1.1 ryo }; 171 1.1 ryo check_syscall_args(linux_sys_fcntl) 172 1.1 ryo 173 1.10 christos struct linux_sys_inotify_init1_args { 174 1.10 christos syscallarg(int) flags; 175 1.10 christos }; 176 1.10 christos check_syscall_args(linux_sys_inotify_init1) 177 1.10 christos 178 1.10 christos struct linux_sys_inotify_add_watch_args { 179 1.10 christos syscallarg(int) fd; 180 1.10 christos syscallarg(const char *) pathname; 181 1.10 christos syscallarg(uint32_t) mask; 182 1.10 christos }; 183 1.10 christos check_syscall_args(linux_sys_inotify_add_watch) 184 1.10 christos 185 1.10 christos struct linux_sys_inotify_rm_watch_args { 186 1.10 christos syscallarg(int) fd; 187 1.10 christos syscallarg(int) wd; 188 1.10 christos }; 189 1.10 christos check_syscall_args(linux_sys_inotify_rm_watch) 190 1.10 christos 191 1.1 ryo struct linux_sys_ioctl_args { 192 1.1 ryo syscallarg(int) fd; 193 1.1 ryo syscallarg(u_long) com; 194 1.1 ryo syscallarg(void *) data; 195 1.1 ryo }; 196 1.1 ryo check_syscall_args(linux_sys_ioctl) 197 1.1 ryo 198 1.1 ryo struct sys_flock_args; 199 1.1 ryo 200 1.1 ryo struct linux_sys_mknodat_args { 201 1.1 ryo syscallarg(int) fd; 202 1.1 ryo syscallarg(const char *) path; 203 1.1 ryo syscallarg(linux_umode_t) mode; 204 1.1 ryo syscallarg(unsigned) dev; 205 1.1 ryo }; 206 1.1 ryo check_syscall_args(linux_sys_mknodat) 207 1.1 ryo 208 1.1 ryo struct sys_mkdirat_args; 209 1.1 ryo 210 1.1 ryo struct linux_sys_unlinkat_args { 211 1.1 ryo syscallarg(int) fd; 212 1.1 ryo syscallarg(const char *) path; 213 1.1 ryo syscallarg(int) flag; 214 1.1 ryo }; 215 1.1 ryo check_syscall_args(linux_sys_unlinkat) 216 1.1 ryo 217 1.1 ryo struct sys_symlinkat_args; 218 1.1 ryo 219 1.1 ryo struct linux_sys_linkat_args { 220 1.1 ryo syscallarg(int) fd1; 221 1.1 ryo syscallarg(const char *) name1; 222 1.1 ryo syscallarg(int) fd2; 223 1.1 ryo syscallarg(const char *) name2; 224 1.1 ryo syscallarg(int) flags; 225 1.1 ryo }; 226 1.1 ryo check_syscall_args(linux_sys_linkat) 227 1.1 ryo 228 1.1 ryo struct sys_renameat_args; 229 1.1 ryo 230 1.1 ryo struct linux_sys_statfs_args { 231 1.1 ryo syscallarg(const char *) path; 232 1.1 ryo syscallarg(struct linux_statfs *) sp; 233 1.1 ryo }; 234 1.1 ryo check_syscall_args(linux_sys_statfs) 235 1.1 ryo 236 1.1 ryo struct linux_sys_fstatfs_args { 237 1.1 ryo syscallarg(int) fd; 238 1.1 ryo syscallarg(struct linux_statfs *) sp; 239 1.1 ryo }; 240 1.1 ryo check_syscall_args(linux_sys_fstatfs) 241 1.1 ryo 242 1.1 ryo struct linux_sys_truncate64_args { 243 1.1 ryo syscallarg(const char *) path; 244 1.1 ryo syscallarg(off_t) length; 245 1.1 ryo }; 246 1.1 ryo check_syscall_args(linux_sys_truncate64) 247 1.1 ryo 248 1.1 ryo struct linux_sys_ftruncate64_args { 249 1.1 ryo syscallarg(unsigned int) fd; 250 1.1 ryo syscallarg(off_t) length; 251 1.1 ryo }; 252 1.1 ryo check_syscall_args(linux_sys_ftruncate64) 253 1.1 ryo 254 1.1 ryo struct linux_sys_fallocate_args { 255 1.1 ryo syscallarg(int) fd; 256 1.1 ryo syscallarg(int) mode; 257 1.1 ryo syscallarg(off_t) offset; 258 1.1 ryo syscallarg(off_t) len; 259 1.1 ryo }; 260 1.1 ryo check_syscall_args(linux_sys_fallocate) 261 1.1 ryo 262 1.1 ryo struct linux_sys_faccessat_args { 263 1.1 ryo syscallarg(int) fd; 264 1.1 ryo syscallarg(const char *) path; 265 1.1 ryo syscallarg(int) amode; 266 1.1 ryo }; 267 1.1 ryo check_syscall_args(linux_sys_faccessat) 268 1.1 ryo 269 1.1 ryo struct sys_chdir_args; 270 1.1 ryo 271 1.1 ryo struct sys_fchdir_args; 272 1.1 ryo 273 1.1 ryo struct sys_chroot_args; 274 1.1 ryo 275 1.1 ryo struct sys_fchmod_args; 276 1.1 ryo 277 1.1 ryo struct linux_sys_fchmodat_args { 278 1.1 ryo syscallarg(int) fd; 279 1.1 ryo syscallarg(const char *) path; 280 1.1 ryo syscallarg(linux_umode_t) mode; 281 1.1 ryo }; 282 1.1 ryo check_syscall_args(linux_sys_fchmodat) 283 1.1 ryo 284 1.1 ryo struct linux_sys_fchownat_args { 285 1.1 ryo syscallarg(int) fd; 286 1.1 ryo syscallarg(const char *) path; 287 1.1 ryo syscallarg(uid_t) owner; 288 1.1 ryo syscallarg(gid_t) group; 289 1.1 ryo syscallarg(int) flag; 290 1.1 ryo }; 291 1.1 ryo check_syscall_args(linux_sys_fchownat) 292 1.1 ryo 293 1.1 ryo struct sys___posix_fchown_args; 294 1.1 ryo 295 1.1 ryo struct linux_sys_openat_args { 296 1.1 ryo syscallarg(int) fd; 297 1.1 ryo syscallarg(const char *) path; 298 1.1 ryo syscallarg(int) flags; 299 1.1 ryo syscallarg(linux_umode_t) mode; 300 1.1 ryo }; 301 1.1 ryo check_syscall_args(linux_sys_openat) 302 1.1 ryo 303 1.1 ryo struct sys_close_args; 304 1.1 ryo 305 1.1 ryo struct linux_sys_pipe2_args { 306 1.1 ryo syscallarg(int *) pfds; 307 1.1 ryo syscallarg(int) flags; 308 1.1 ryo }; 309 1.1 ryo check_syscall_args(linux_sys_pipe2) 310 1.1 ryo 311 1.1 ryo struct linux_sys_getdents64_args { 312 1.1 ryo syscallarg(int) fd; 313 1.1 ryo syscallarg(struct linux_dirent64 *) dent; 314 1.1 ryo syscallarg(unsigned int) count; 315 1.1 ryo }; 316 1.1 ryo check_syscall_args(linux_sys_getdents64) 317 1.1 ryo 318 1.1 ryo struct compat_43_sys_lseek_args; 319 1.1 ryo 320 1.1 ryo struct sys_read_args; 321 1.1 ryo 322 1.1 ryo struct sys_write_args; 323 1.1 ryo 324 1.1 ryo struct sys_readv_args; 325 1.1 ryo 326 1.1 ryo struct sys_writev_args; 327 1.1 ryo 328 1.1 ryo struct linux_sys_pread_args { 329 1.1 ryo syscallarg(int) fd; 330 1.1 ryo syscallarg(char *) buf; 331 1.1 ryo syscallarg(size_t) nbyte; 332 1.1 ryo syscallarg(off_t) offset; 333 1.1 ryo }; 334 1.1 ryo check_syscall_args(linux_sys_pread) 335 1.1 ryo 336 1.1 ryo struct linux_sys_pwrite_args { 337 1.1 ryo syscallarg(int) fd; 338 1.1 ryo syscallarg(char *) buf; 339 1.1 ryo syscallarg(size_t) nbyte; 340 1.1 ryo syscallarg(off_t) offset; 341 1.1 ryo }; 342 1.1 ryo check_syscall_args(linux_sys_pwrite) 343 1.1 ryo 344 1.1 ryo struct linux_sys_preadv_args { 345 1.1 ryo syscallarg(int) fd; 346 1.1 ryo syscallarg(const struct iovec *) iovp; 347 1.1 ryo syscallarg(int) iovcnt; 348 1.1 ryo syscallarg(unsigned long) off_lo; 349 1.1 ryo syscallarg(unsigned long) off_hi; 350 1.1 ryo }; 351 1.1 ryo check_syscall_args(linux_sys_preadv) 352 1.1 ryo 353 1.1 ryo struct linux_sys_pwritev_args { 354 1.1 ryo syscallarg(int) fd; 355 1.1 ryo syscallarg(const struct iovcnt *) iovp; 356 1.1 ryo syscallarg(int) iovcnt; 357 1.1 ryo syscallarg(unsigned long) off_lo; 358 1.1 ryo syscallarg(unsigned long) off_hi; 359 1.1 ryo }; 360 1.1 ryo check_syscall_args(linux_sys_pwritev) 361 1.1 ryo 362 1.1 ryo struct linux_sys_pselect6_args { 363 1.1 ryo syscallarg(int) nfds; 364 1.1 ryo syscallarg(fd_set *) readfds; 365 1.1 ryo syscallarg(fd_set *) writefds; 366 1.1 ryo syscallarg(fd_set *) exceptfds; 367 1.1 ryo syscallarg(struct linux_timespec *) timeout; 368 1.1 ryo syscallarg(linux_sized_sigset_t *) ss; 369 1.1 ryo }; 370 1.1 ryo check_syscall_args(linux_sys_pselect6) 371 1.1 ryo 372 1.1 ryo struct linux_sys_ppoll_args { 373 1.1 ryo syscallarg(struct pollfd *) fds; 374 1.1 ryo syscallarg(u_int) nfds; 375 1.1 ryo syscallarg(struct linux_timespec *) timeout; 376 1.1 ryo syscallarg(linux_sigset_t *) sigset; 377 1.1 ryo }; 378 1.1 ryo check_syscall_args(linux_sys_ppoll) 379 1.1 ryo 380 1.1 ryo struct sys_readlinkat_args; 381 1.1 ryo 382 1.1 ryo struct linux_sys_fstatat64_args { 383 1.1 ryo syscallarg(int) fd; 384 1.1 ryo syscallarg(const char *) path; 385 1.1 ryo syscallarg(struct linux_stat *) sp; 386 1.1 ryo syscallarg(int) flag; 387 1.1 ryo }; 388 1.1 ryo check_syscall_args(linux_sys_fstatat64) 389 1.1 ryo 390 1.1 ryo struct linux_sys_fstat64_args { 391 1.1 ryo syscallarg(int) fd; 392 1.1 ryo syscallarg(struct linux_stat *) sp; 393 1.1 ryo }; 394 1.1 ryo check_syscall_args(linux_sys_fstat64) 395 1.1 ryo 396 1.1 ryo struct sys_fsync_args; 397 1.1 ryo 398 1.1 ryo struct linux_sys_fdatasync_args { 399 1.1 ryo syscallarg(int) fd; 400 1.1 ryo }; 401 1.1 ryo check_syscall_args(linux_sys_fdatasync) 402 1.1 ryo 403 1.13 christos struct linux_sys_sync_file_range_args { 404 1.13 christos syscallarg(int) fd; 405 1.13 christos syscallarg(off_t) offset; 406 1.13 christos syscallarg(off_t) nbytes; 407 1.13 christos syscallarg(unsigned int) flags; 408 1.13 christos }; 409 1.13 christos check_syscall_args(linux_sys_sync_file_range) 410 1.13 christos 411 1.1 ryo struct linux_sys_timerfd_create_args { 412 1.1 ryo syscallarg(clockid_t) clock_id; 413 1.1 ryo syscallarg(int) flags; 414 1.1 ryo }; 415 1.1 ryo check_syscall_args(linux_sys_timerfd_create) 416 1.1 ryo 417 1.1 ryo struct linux_sys_timerfd_settime_args { 418 1.1 ryo syscallarg(int) fd; 419 1.1 ryo syscallarg(int) flags; 420 1.1 ryo syscallarg(const struct linux_itimerspec *) tim; 421 1.1 ryo syscallarg(struct linux_itimerspec *) otim; 422 1.1 ryo }; 423 1.1 ryo check_syscall_args(linux_sys_timerfd_settime) 424 1.1 ryo 425 1.1 ryo struct linux_sys_timerfd_gettime_args { 426 1.1 ryo syscallarg(int) fd; 427 1.1 ryo syscallarg(struct linux_itimerspec *) tim; 428 1.1 ryo }; 429 1.1 ryo check_syscall_args(linux_sys_timerfd_gettime) 430 1.1 ryo 431 1.1 ryo struct linux_sys_utimensat_args { 432 1.1 ryo syscallarg(int) fd; 433 1.1 ryo syscallarg(const char *) path; 434 1.1 ryo syscallarg(struct linux_timespec *) times; 435 1.1 ryo syscallarg(int) flag; 436 1.1 ryo }; 437 1.1 ryo check_syscall_args(linux_sys_utimensat) 438 1.1 ryo 439 1.1 ryo struct sys_acct_args; 440 1.1 ryo 441 1.1 ryo struct linux_sys_personality_args { 442 1.1 ryo syscallarg(unsigned long) per; 443 1.1 ryo }; 444 1.1 ryo check_syscall_args(linux_sys_personality) 445 1.1 ryo 446 1.1 ryo struct linux_sys_exit_args { 447 1.1 ryo syscallarg(int) rval; 448 1.1 ryo }; 449 1.1 ryo check_syscall_args(linux_sys_exit) 450 1.1 ryo 451 1.1 ryo struct linux_sys_exit_group_args { 452 1.1 ryo syscallarg(int) error_code; 453 1.1 ryo }; 454 1.1 ryo check_syscall_args(linux_sys_exit_group) 455 1.1 ryo 456 1.9 christos struct linux_sys_waitid_args { 457 1.9 christos syscallarg(int) idtype; 458 1.9 christos syscallarg(id_t) id; 459 1.9 christos syscallarg(linux_siginfo_t *) infop; 460 1.9 christos syscallarg(int) options; 461 1.9 christos syscallarg(struct rusage50 *) rusage; 462 1.9 christos }; 463 1.9 christos check_syscall_args(linux_sys_waitid) 464 1.9 christos 465 1.1 ryo struct linux_sys_set_tid_address_args { 466 1.1 ryo syscallarg(int *) tid; 467 1.1 ryo }; 468 1.1 ryo check_syscall_args(linux_sys_set_tid_address) 469 1.1 ryo 470 1.1 ryo struct linux_sys_futex_args { 471 1.1 ryo syscallarg(int *) uaddr; 472 1.1 ryo syscallarg(int) op; 473 1.1 ryo syscallarg(int) val; 474 1.1 ryo syscallarg(const struct linux_timespec *) timeout; 475 1.1 ryo syscallarg(int *) uaddr2; 476 1.1 ryo syscallarg(int) val3; 477 1.1 ryo }; 478 1.1 ryo check_syscall_args(linux_sys_futex) 479 1.1 ryo 480 1.1 ryo struct sys___futex_set_robust_list_args; 481 1.1 ryo 482 1.1 ryo struct sys___futex_get_robust_list_args; 483 1.1 ryo 484 1.1 ryo struct linux_sys_nanosleep_args { 485 1.1 ryo syscallarg(const struct linux_timespec *) rqtp; 486 1.1 ryo syscallarg(struct linux_timespec *) rmtp; 487 1.1 ryo }; 488 1.1 ryo check_syscall_args(linux_sys_nanosleep) 489 1.1 ryo 490 1.1 ryo struct compat_50_sys_getitimer_args; 491 1.1 ryo 492 1.1 ryo struct compat_50_sys_setitimer_args; 493 1.1 ryo 494 1.1 ryo struct linux_sys_timer_create_args { 495 1.1 ryo syscallarg(clockid_t) clockid; 496 1.1 ryo syscallarg(struct linux_sigevent *) evp; 497 1.1 ryo syscallarg(timer_t *) timerid; 498 1.1 ryo }; 499 1.1 ryo check_syscall_args(linux_sys_timer_create) 500 1.1 ryo 501 1.1 ryo struct linux_sys_timer_gettime_args { 502 1.1 ryo syscallarg(timer_t) timerid; 503 1.1 ryo syscallarg(struct linux_itimerspec *) tim; 504 1.1 ryo }; 505 1.1 ryo check_syscall_args(linux_sys_timer_gettime) 506 1.1 ryo 507 1.1 ryo struct sys_timer_getoverrun_args; 508 1.1 ryo 509 1.1 ryo struct linux_sys_timer_settime_args { 510 1.1 ryo syscallarg(timer_t) timerid; 511 1.1 ryo syscallarg(int) flags; 512 1.1 ryo syscallarg(const struct linux_itimerspec *) tim; 513 1.1 ryo syscallarg(struct linux_itimerspec *) otim; 514 1.1 ryo }; 515 1.1 ryo check_syscall_args(linux_sys_timer_settime) 516 1.1 ryo 517 1.1 ryo struct sys_timer_delete_args; 518 1.1 ryo 519 1.1 ryo struct linux_sys_clock_settime_args { 520 1.1 ryo syscallarg(clockid_t) which; 521 1.1 ryo syscallarg(struct linux_timespec *) tp; 522 1.1 ryo }; 523 1.1 ryo check_syscall_args(linux_sys_clock_settime) 524 1.1 ryo 525 1.1 ryo struct linux_sys_clock_gettime_args { 526 1.1 ryo syscallarg(clockid_t) which; 527 1.1 ryo syscallarg(struct linux_timespec *) tp; 528 1.1 ryo }; 529 1.1 ryo check_syscall_args(linux_sys_clock_gettime) 530 1.1 ryo 531 1.1 ryo struct linux_sys_clock_getres_args { 532 1.1 ryo syscallarg(clockid_t) which; 533 1.1 ryo syscallarg(struct linux_timespec *) tp; 534 1.1 ryo }; 535 1.1 ryo check_syscall_args(linux_sys_clock_getres) 536 1.1 ryo 537 1.1 ryo struct linux_sys_clock_nanosleep_args { 538 1.1 ryo syscallarg(clockid_t) which; 539 1.1 ryo syscallarg(int) flags; 540 1.1 ryo syscallarg(struct linux_timespec *) rqtp; 541 1.1 ryo syscallarg(struct linux_timespec *) rmtp; 542 1.1 ryo }; 543 1.1 ryo check_syscall_args(linux_sys_clock_nanosleep) 544 1.1 ryo 545 1.1 ryo struct linux_sys_ptrace_args { 546 1.1 ryo syscallarg(long) request; 547 1.1 ryo syscallarg(long) pid; 548 1.1 ryo syscallarg(long) addr; 549 1.1 ryo syscallarg(long) data; 550 1.1 ryo }; 551 1.1 ryo check_syscall_args(linux_sys_ptrace) 552 1.1 ryo 553 1.1 ryo struct linux_sys_sched_setparam_args { 554 1.1 ryo syscallarg(pid_t) pid; 555 1.1 ryo syscallarg(const struct linux_sched_param *) sp; 556 1.1 ryo }; 557 1.1 ryo check_syscall_args(linux_sys_sched_setparam) 558 1.1 ryo 559 1.1 ryo struct linux_sys_sched_setscheduler_args { 560 1.1 ryo syscallarg(pid_t) pid; 561 1.1 ryo syscallarg(int) policy; 562 1.1 ryo syscallarg(const struct linux_sched_param *) sp; 563 1.1 ryo }; 564 1.1 ryo check_syscall_args(linux_sys_sched_setscheduler) 565 1.1 ryo 566 1.1 ryo struct linux_sys_sched_getscheduler_args { 567 1.1 ryo syscallarg(pid_t) pid; 568 1.1 ryo }; 569 1.1 ryo check_syscall_args(linux_sys_sched_getscheduler) 570 1.1 ryo 571 1.1 ryo struct linux_sys_sched_getparam_args { 572 1.1 ryo syscallarg(pid_t) pid; 573 1.1 ryo syscallarg(struct linux_sched_param *) sp; 574 1.1 ryo }; 575 1.1 ryo check_syscall_args(linux_sys_sched_getparam) 576 1.1 ryo 577 1.1 ryo struct linux_sys_sched_setaffinity_args { 578 1.1 ryo syscallarg(pid_t) pid; 579 1.1 ryo syscallarg(unsigned int) len; 580 1.1 ryo syscallarg(unsigned long *) mask; 581 1.1 ryo }; 582 1.1 ryo check_syscall_args(linux_sys_sched_setaffinity) 583 1.1 ryo 584 1.1 ryo struct linux_sys_sched_getaffinity_args { 585 1.1 ryo syscallarg(pid_t) pid; 586 1.1 ryo syscallarg(unsigned int) len; 587 1.1 ryo syscallarg(unsigned long *) mask; 588 1.1 ryo }; 589 1.1 ryo check_syscall_args(linux_sys_sched_getaffinity) 590 1.1 ryo 591 1.1 ryo struct linux_sys_sched_get_priority_max_args { 592 1.1 ryo syscallarg(int) policy; 593 1.1 ryo }; 594 1.1 ryo check_syscall_args(linux_sys_sched_get_priority_max) 595 1.1 ryo 596 1.1 ryo struct linux_sys_sched_get_priority_min_args { 597 1.1 ryo syscallarg(int) policy; 598 1.1 ryo }; 599 1.1 ryo check_syscall_args(linux_sys_sched_get_priority_min) 600 1.1 ryo 601 1.1 ryo struct linux_sys_kill_args { 602 1.1 ryo syscallarg(int) pid; 603 1.1 ryo syscallarg(int) signum; 604 1.1 ryo }; 605 1.1 ryo check_syscall_args(linux_sys_kill) 606 1.1 ryo 607 1.1 ryo struct linux_sys_tkill_args { 608 1.1 ryo syscallarg(int) tid; 609 1.1 ryo syscallarg(int) sig; 610 1.1 ryo }; 611 1.1 ryo check_syscall_args(linux_sys_tkill) 612 1.1 ryo 613 1.1 ryo struct linux_sys_tgkill_args { 614 1.1 ryo syscallarg(int) tgid; 615 1.1 ryo syscallarg(int) tid; 616 1.1 ryo syscallarg(int) sig; 617 1.1 ryo }; 618 1.1 ryo check_syscall_args(linux_sys_tgkill) 619 1.1 ryo 620 1.1 ryo struct linux_sys_sigaltstack_args { 621 1.1 ryo syscallarg(const struct linux_sigaltstack *) ss; 622 1.1 ryo syscallarg(struct linux_sigaltstack *) oss; 623 1.1 ryo }; 624 1.1 ryo check_syscall_args(linux_sys_sigaltstack) 625 1.1 ryo 626 1.1 ryo struct linux_sys_rt_sigsuspend_args { 627 1.1 ryo syscallarg(linux_sigset_t *) unewset; 628 1.1 ryo syscallarg(size_t) sigsetsize; 629 1.1 ryo }; 630 1.1 ryo check_syscall_args(linux_sys_rt_sigsuspend) 631 1.1 ryo 632 1.1 ryo struct linux_sys_rt_sigaction_args { 633 1.1 ryo syscallarg(int) signum; 634 1.1 ryo syscallarg(const struct linux_sigaction *) nsa; 635 1.1 ryo syscallarg(struct linux_sigaction *) osa; 636 1.1 ryo syscallarg(size_t) sigsetsize; 637 1.1 ryo }; 638 1.1 ryo check_syscall_args(linux_sys_rt_sigaction) 639 1.1 ryo 640 1.1 ryo struct linux_sys_rt_sigprocmask_args { 641 1.1 ryo syscallarg(int) how; 642 1.1 ryo syscallarg(const linux_sigset_t *) set; 643 1.1 ryo syscallarg(linux_sigset_t *) oset; 644 1.1 ryo syscallarg(size_t) sigsetsize; 645 1.1 ryo }; 646 1.1 ryo check_syscall_args(linux_sys_rt_sigprocmask) 647 1.1 ryo 648 1.1 ryo struct linux_sys_rt_sigpending_args { 649 1.1 ryo syscallarg(linux_sigset_t *) set; 650 1.1 ryo syscallarg(size_t) sigsetsize; 651 1.1 ryo }; 652 1.1 ryo check_syscall_args(linux_sys_rt_sigpending) 653 1.1 ryo 654 1.1 ryo struct linux_sys_rt_sigtimedwait_args { 655 1.1 ryo syscallarg(const linux_sigset_t *) set; 656 1.1 ryo syscallarg(linux_siginfo_t *) info; 657 1.1 ryo syscallarg(const struct linux_timespec *) timeout; 658 1.1 ryo }; 659 1.1 ryo check_syscall_args(linux_sys_rt_sigtimedwait) 660 1.1 ryo 661 1.1 ryo struct sys_setpriority_args; 662 1.1 ryo 663 1.1 ryo struct linux_sys_getpriority_args { 664 1.1 ryo syscallarg(int) which; 665 1.1 ryo syscallarg(int) who; 666 1.1 ryo }; 667 1.1 ryo check_syscall_args(linux_sys_getpriority) 668 1.1 ryo 669 1.1 ryo struct linux_sys_reboot_args { 670 1.1 ryo syscallarg(int) magic1; 671 1.1 ryo syscallarg(int) magic2; 672 1.1 ryo syscallarg(int) cmd; 673 1.1 ryo syscallarg(void *) arg; 674 1.1 ryo }; 675 1.1 ryo check_syscall_args(linux_sys_reboot) 676 1.1 ryo 677 1.1 ryo struct sys_setregid_args; 678 1.1 ryo 679 1.1 ryo struct sys_setgid_args; 680 1.1 ryo 681 1.1 ryo struct sys_setreuid_args; 682 1.1 ryo 683 1.1 ryo struct sys_setuid_args; 684 1.1 ryo 685 1.1 ryo struct linux_sys_setresuid_args { 686 1.1 ryo syscallarg(uid_t) ruid; 687 1.1 ryo syscallarg(uid_t) euid; 688 1.1 ryo syscallarg(uid_t) suid; 689 1.1 ryo }; 690 1.1 ryo check_syscall_args(linux_sys_setresuid) 691 1.1 ryo 692 1.1 ryo struct linux_sys_getresuid_args { 693 1.1 ryo syscallarg(uid_t *) ruid; 694 1.1 ryo syscallarg(uid_t *) euid; 695 1.1 ryo syscallarg(uid_t *) suid; 696 1.1 ryo }; 697 1.1 ryo check_syscall_args(linux_sys_getresuid) 698 1.1 ryo 699 1.1 ryo struct linux_sys_setresgid_args { 700 1.1 ryo syscallarg(gid_t) rgid; 701 1.1 ryo syscallarg(gid_t) egid; 702 1.1 ryo syscallarg(gid_t) sgid; 703 1.1 ryo }; 704 1.1 ryo check_syscall_args(linux_sys_setresgid) 705 1.1 ryo 706 1.1 ryo struct linux_sys_getresgid_args { 707 1.1 ryo syscallarg(gid_t *) rgid; 708 1.1 ryo syscallarg(gid_t *) egid; 709 1.1 ryo syscallarg(gid_t *) sgid; 710 1.1 ryo }; 711 1.1 ryo check_syscall_args(linux_sys_getresgid) 712 1.1 ryo 713 1.1 ryo struct linux_sys_setfsuid_args { 714 1.1 ryo syscallarg(uid_t) uid; 715 1.1 ryo }; 716 1.1 ryo check_syscall_args(linux_sys_setfsuid) 717 1.1 ryo 718 1.1 ryo struct linux_sys_setfsgid_args { 719 1.1 ryo syscallarg(gid_t) gid; 720 1.1 ryo }; 721 1.1 ryo check_syscall_args(linux_sys_setfsgid) 722 1.1 ryo 723 1.1 ryo struct linux_sys_times_args { 724 1.1 ryo syscallarg(struct times *) tms; 725 1.1 ryo }; 726 1.1 ryo check_syscall_args(linux_sys_times) 727 1.1 ryo 728 1.1 ryo struct sys_setpgid_args; 729 1.1 ryo 730 1.1 ryo struct sys_getpgid_args; 731 1.1 ryo 732 1.1 ryo struct sys_getsid_args; 733 1.1 ryo 734 1.1 ryo struct sys_getgroups_args; 735 1.1 ryo 736 1.1 ryo struct sys_setgroups_args; 737 1.1 ryo 738 1.1 ryo struct linux_sys_uname_args { 739 1.1 ryo syscallarg(struct linux_utsname *) up; 740 1.1 ryo }; 741 1.1 ryo check_syscall_args(linux_sys_uname) 742 1.1 ryo 743 1.1 ryo struct compat_43_sys_sethostname_args; 744 1.1 ryo 745 1.1 ryo struct linux_sys_setdomainname_args { 746 1.1 ryo syscallarg(char *) domainname; 747 1.1 ryo syscallarg(int) len; 748 1.1 ryo }; 749 1.1 ryo check_syscall_args(linux_sys_setdomainname) 750 1.1 ryo 751 1.1 ryo struct linux_sys_getrlimit_args { 752 1.1 ryo syscallarg(int) which; 753 1.1 ryo syscallarg(struct rlimit *) rlp; 754 1.1 ryo }; 755 1.1 ryo check_syscall_args(linux_sys_getrlimit) 756 1.1 ryo 757 1.1 ryo struct linux_sys_setrlimit_args { 758 1.1 ryo syscallarg(u_int) which; 759 1.1 ryo syscallarg(struct rlimit *) rlp; 760 1.1 ryo }; 761 1.1 ryo check_syscall_args(linux_sys_setrlimit) 762 1.1 ryo 763 1.1 ryo struct compat_50_sys_getrusage_args; 764 1.1 ryo 765 1.1 ryo struct sys_umask_args; 766 1.1 ryo 767 1.11 christos struct linux_sys_getcpu_args { 768 1.11 christos syscallarg(unsigned int *) cpu; 769 1.11 christos syscallarg(unsigned int *) node; 770 1.11 christos syscallarg(struct linux_getcpu_cache *) tcache; 771 1.11 christos }; 772 1.11 christos check_syscall_args(linux_sys_getcpu) 773 1.11 christos 774 1.1 ryo struct linux_sys_gettimeofday_args { 775 1.1 ryo syscallarg(struct timeval50 *) tp; 776 1.1 ryo syscallarg(struct timezone *) tzp; 777 1.1 ryo }; 778 1.1 ryo check_syscall_args(linux_sys_gettimeofday) 779 1.1 ryo 780 1.1 ryo struct linux_sys_settimeofday_args { 781 1.1 ryo syscallarg(struct timeval50 *) tp; 782 1.1 ryo syscallarg(struct timezone *) tzp; 783 1.1 ryo }; 784 1.1 ryo check_syscall_args(linux_sys_settimeofday) 785 1.1 ryo 786 1.1 ryo struct linux_sys_sysinfo_args { 787 1.1 ryo syscallarg(struct linux_sysinfo *) arg; 788 1.1 ryo }; 789 1.1 ryo check_syscall_args(linux_sys_sysinfo) 790 1.12 christos 791 1.12 christos struct linux_sys_mq_open_args { 792 1.12 christos syscallarg(const char *) name; 793 1.12 christos syscallarg(int) oflag; 794 1.12 christos syscallarg(linux_umode_t) mode; 795 1.12 christos syscallarg(struct linux_mq_attr *) attr; 796 1.12 christos }; 797 1.12 christos check_syscall_args(linux_sys_mq_open) 798 1.12 christos 799 1.12 christos struct linux_sys_mq_unlink_args { 800 1.12 christos syscallarg(const char *) name; 801 1.12 christos }; 802 1.12 christos check_syscall_args(linux_sys_mq_unlink) 803 1.12 christos 804 1.12 christos struct linux_sys_mq_timedsend_args { 805 1.12 christos syscallarg(linux_mqd_t) mqdes; 806 1.12 christos syscallarg(const char *) msg_ptr; 807 1.12 christos syscallarg(size_t) msg_len; 808 1.12 christos syscallarg(unsigned int) msg_prio; 809 1.12 christos syscallarg(const struct linux_timespec *) abs_timeout; 810 1.12 christos }; 811 1.12 christos check_syscall_args(linux_sys_mq_timedsend) 812 1.12 christos 813 1.12 christos struct linux_sys_mq_timedreceive_args { 814 1.12 christos syscallarg(linux_mqd_t) mqdes; 815 1.12 christos syscallarg(char *) msg_ptr; 816 1.12 christos syscallarg(size_t) msg_len; 817 1.12 christos syscallarg(unsigned int *) msg_prio; 818 1.12 christos syscallarg(const struct linux_timespec *) abs_timeout; 819 1.12 christos }; 820 1.12 christos check_syscall_args(linux_sys_mq_timedreceive) 821 1.12 christos 822 1.12 christos struct linux_sys_mq_notify_args { 823 1.12 christos syscallarg(linux_mqd_t) mqdes; 824 1.12 christos syscallarg(const struct linux_sigevent *) sevp; 825 1.12 christos }; 826 1.12 christos check_syscall_args(linux_sys_mq_notify) 827 1.12 christos 828 1.12 christos struct linux_sys_mq_getsetattr_args { 829 1.12 christos syscallarg(linux_mqd_t) mqdes; 830 1.12 christos syscallarg(const struct linux_mq_attr *) newattr; 831 1.12 christos syscallarg(struct linux_mq_attr *) oldattr; 832 1.12 christos }; 833 1.12 christos check_syscall_args(linux_sys_mq_getsetattr) 834 1.1 ryo #ifdef SYSVMSG 835 1.1 ryo 836 1.1 ryo struct sys_msgget_args; 837 1.1 ryo 838 1.1 ryo struct linux_sys_msgctl_args; 839 1.1 ryo 840 1.1 ryo struct sys_msgrcv_args; 841 1.1 ryo 842 1.1 ryo struct sys_msgsnd_args; 843 1.1 ryo #else 844 1.1 ryo #endif 845 1.1 ryo #ifdef SYSVSEM 846 1.1 ryo 847 1.1 ryo struct sys_semget_args; 848 1.1 ryo 849 1.1 ryo struct linux_sys_semctl_args { 850 1.1 ryo syscallarg(int) semid; 851 1.1 ryo syscallarg(int) semnum; 852 1.1 ryo syscallarg(int) cmd; 853 1.1 ryo syscallarg(union linux_semun) arg; 854 1.1 ryo }; 855 1.1 ryo check_syscall_args(linux_sys_semctl) 856 1.1 ryo 857 1.1 ryo struct sys_semop_args; 858 1.1 ryo #else 859 1.1 ryo #endif 860 1.1 ryo #ifdef SYSVSEM 861 1.1 ryo 862 1.1 ryo struct linux_sys_shmget_args; 863 1.1 ryo 864 1.1 ryo struct linux_sys_shmctl_args; 865 1.1 ryo 866 1.1 ryo struct sys_shmat_args; 867 1.1 ryo 868 1.1 ryo struct sys_shmdt_args; 869 1.1 ryo #else 870 1.1 ryo #endif 871 1.1 ryo 872 1.1 ryo struct linux_sys_socket_args { 873 1.1 ryo syscallarg(int) domain; 874 1.1 ryo syscallarg(int) type; 875 1.1 ryo syscallarg(int) protocol; 876 1.1 ryo }; 877 1.1 ryo check_syscall_args(linux_sys_socket) 878 1.1 ryo 879 1.1 ryo struct linux_sys_socketpair_args { 880 1.1 ryo syscallarg(int) domain; 881 1.1 ryo syscallarg(int) type; 882 1.1 ryo syscallarg(int) protocol; 883 1.1 ryo syscallarg(int *) rsv; 884 1.1 ryo }; 885 1.1 ryo check_syscall_args(linux_sys_socketpair) 886 1.1 ryo 887 1.1 ryo struct linux_sys_bind_args { 888 1.1 ryo syscallarg(int) s; 889 1.1 ryo syscallarg(const struct osockaddr *) name; 890 1.1 ryo syscallarg(unsigned int) namelen; 891 1.1 ryo }; 892 1.1 ryo check_syscall_args(linux_sys_bind) 893 1.1 ryo 894 1.1 ryo struct sys_listen_args; 895 1.1 ryo 896 1.1 ryo struct linux_sys_accept_args { 897 1.1 ryo syscallarg(int) s; 898 1.1 ryo syscallarg(struct osockaddr *) name; 899 1.1 ryo syscallarg(int *) anamelen; 900 1.1 ryo }; 901 1.1 ryo check_syscall_args(linux_sys_accept) 902 1.1 ryo 903 1.1 ryo struct linux_sys_connect_args { 904 1.1 ryo syscallarg(int) s; 905 1.1 ryo syscallarg(const struct osockaddr *) name; 906 1.1 ryo syscallarg(unsigned int) namelen; 907 1.1 ryo }; 908 1.1 ryo check_syscall_args(linux_sys_connect) 909 1.1 ryo 910 1.1 ryo struct linux_sys_getsockname_args { 911 1.1 ryo syscallarg(int) fdec; 912 1.1 ryo syscallarg(void *) asa; 913 1.1 ryo syscallarg(int *) alen; 914 1.1 ryo }; 915 1.1 ryo check_syscall_args(linux_sys_getsockname) 916 1.1 ryo 917 1.1 ryo struct linux_sys_getpeername_args { 918 1.1 ryo syscallarg(int) fdes; 919 1.1 ryo syscallarg(struct sockaddr *) asa; 920 1.1 ryo syscallarg(unsigned int *) alen; 921 1.1 ryo }; 922 1.1 ryo check_syscall_args(linux_sys_getpeername) 923 1.1 ryo 924 1.1 ryo struct linux_sys_sendto_args { 925 1.1 ryo syscallarg(int) s; 926 1.1 ryo syscallarg(void *) msg; 927 1.1 ryo syscallarg(int) len; 928 1.1 ryo syscallarg(int) flags; 929 1.1 ryo syscallarg(struct osockaddr *) to; 930 1.1 ryo syscallarg(int) tolen; 931 1.1 ryo }; 932 1.1 ryo check_syscall_args(linux_sys_sendto) 933 1.1 ryo 934 1.1 ryo struct linux_sys_recvfrom_args { 935 1.1 ryo syscallarg(int) s; 936 1.1 ryo syscallarg(void *) buf; 937 1.1 ryo syscallarg(size_t) len; 938 1.1 ryo syscallarg(int) flags; 939 1.1 ryo syscallarg(struct osockaddr *) from; 940 1.1 ryo syscallarg(unsigned int *) fromlenaddr; 941 1.1 ryo }; 942 1.1 ryo check_syscall_args(linux_sys_recvfrom) 943 1.1 ryo 944 1.1 ryo struct linux_sys_setsockopt_args { 945 1.1 ryo syscallarg(int) s; 946 1.1 ryo syscallarg(int) level; 947 1.1 ryo syscallarg(int) optname; 948 1.1 ryo syscallarg(void *) optval; 949 1.1 ryo syscallarg(int) optlen; 950 1.1 ryo }; 951 1.1 ryo check_syscall_args(linux_sys_setsockopt) 952 1.1 ryo 953 1.1 ryo struct linux_sys_getsockopt_args { 954 1.1 ryo syscallarg(int) s; 955 1.1 ryo syscallarg(int) level; 956 1.1 ryo syscallarg(int) optname; 957 1.1 ryo syscallarg(void *) optval; 958 1.1 ryo syscallarg(int *) optlen; 959 1.1 ryo }; 960 1.1 ryo check_syscall_args(linux_sys_getsockopt) 961 1.1 ryo 962 1.1 ryo struct sys_shutdown_args; 963 1.1 ryo 964 1.1 ryo struct linux_sys_sendmsg_args { 965 1.1 ryo syscallarg(int) s; 966 1.1 ryo syscallarg(const struct linux_msghdr *) msg; 967 1.1 ryo syscallarg(int) flags; 968 1.1 ryo }; 969 1.1 ryo check_syscall_args(linux_sys_sendmsg) 970 1.1 ryo 971 1.1 ryo struct linux_sys_recvmsg_args { 972 1.1 ryo syscallarg(int) s; 973 1.1 ryo syscallarg(struct linux_msghdr *) msg; 974 1.1 ryo syscallarg(int) flags; 975 1.1 ryo }; 976 1.1 ryo check_syscall_args(linux_sys_recvmsg) 977 1.1 ryo 978 1.8 christos struct linux_sys_readahead_args { 979 1.8 christos syscallarg(int) fd; 980 1.8 christos syscallarg(off_t) offset; 981 1.8 christos syscallarg(size_t) count; 982 1.8 christos }; 983 1.8 christos check_syscall_args(linux_sys_readahead) 984 1.8 christos 985 1.1 ryo struct linux_sys_brk_args { 986 1.1 ryo syscallarg(char *) nsize; 987 1.1 ryo }; 988 1.1 ryo check_syscall_args(linux_sys_brk) 989 1.1 ryo 990 1.1 ryo struct sys_munmap_args; 991 1.1 ryo 992 1.1 ryo struct linux_sys_mremap_args { 993 1.1 ryo syscallarg(void *) old_address; 994 1.1 ryo syscallarg(size_t) old_size; 995 1.1 ryo syscallarg(size_t) new_size; 996 1.1 ryo syscallarg(u_long) flags; 997 1.1 ryo }; 998 1.1 ryo check_syscall_args(linux_sys_mremap) 999 1.1 ryo 1000 1.1 ryo struct linux_sys_clone_args { 1001 1.1 ryo syscallarg(int) flags; 1002 1.1 ryo syscallarg(void *) stack; 1003 1.1 ryo syscallarg(void *) parent_tidptr; 1004 1.1 ryo syscallarg(void *) child_tidptr; 1005 1.1 ryo syscallarg(void *) tls; 1006 1.1 ryo }; 1007 1.1 ryo check_syscall_args(linux_sys_clone) 1008 1.1 ryo 1009 1.1 ryo struct sys_execve_args; 1010 1.1 ryo 1011 1.1 ryo struct linux_sys_mmap_args; 1012 1.1 ryo 1013 1.1 ryo struct linux_sys_fadvise64_args { 1014 1.1 ryo syscallarg(int) fd; 1015 1.1 ryo syscallarg(off_t) offset; 1016 1.1 ryo syscallarg(size_t) len; 1017 1.1 ryo syscallarg(int) advice; 1018 1.1 ryo }; 1019 1.1 ryo check_syscall_args(linux_sys_fadvise64) 1020 1.1 ryo 1021 1.1 ryo struct linux_sys_swapon_args { 1022 1.1 ryo syscallarg(char *) name; 1023 1.1 ryo }; 1024 1.1 ryo check_syscall_args(linux_sys_swapon) 1025 1.1 ryo 1026 1.1 ryo struct linux_sys_swapoff_args { 1027 1.1 ryo syscallarg(const char *) path; 1028 1.1 ryo }; 1029 1.1 ryo check_syscall_args(linux_sys_swapoff) 1030 1.1 ryo 1031 1.1 ryo struct linux_sys_mprotect_args { 1032 1.1 ryo syscallarg(const void *) start; 1033 1.1 ryo syscallarg(unsigned long) len; 1034 1.1 ryo syscallarg(int) prot; 1035 1.1 ryo }; 1036 1.1 ryo check_syscall_args(linux_sys_mprotect) 1037 1.1 ryo 1038 1.1 ryo struct sys___msync13_args; 1039 1.1 ryo 1040 1.1 ryo struct sys_mlock_args; 1041 1.1 ryo 1042 1.1 ryo struct sys_munlock_args; 1043 1.1 ryo 1044 1.1 ryo struct sys_mlockall_args; 1045 1.1 ryo 1046 1.1 ryo struct sys_mincore_args; 1047 1.1 ryo 1048 1.1 ryo struct sys_madvise_args; 1049 1.1 ryo 1050 1.1 ryo struct linux_sys_accept4_args { 1051 1.1 ryo syscallarg(int) s; 1052 1.1 ryo syscallarg(struct osockaddr *) name; 1053 1.1 ryo syscallarg(int *) anamelen; 1054 1.1 ryo syscallarg(int) flags; 1055 1.1 ryo }; 1056 1.1 ryo check_syscall_args(linux_sys_accept4) 1057 1.1 ryo 1058 1.1 ryo struct linux_sys_recvmmsg_args { 1059 1.1 ryo syscallarg(int) s; 1060 1.1 ryo syscallarg(struct linux_mmsghdr *) msgvec; 1061 1.1 ryo syscallarg(unsigned int) vlen; 1062 1.1 ryo syscallarg(unsigned int) flags; 1063 1.1 ryo syscallarg(struct timespec *) timeout; 1064 1.1 ryo }; 1065 1.1 ryo check_syscall_args(linux_sys_recvmmsg) 1066 1.1 ryo 1067 1.1 ryo struct linux_sys_wait4_args { 1068 1.1 ryo syscallarg(int) pid; 1069 1.1 ryo syscallarg(int *) status; 1070 1.1 ryo syscallarg(int) options; 1071 1.1 ryo syscallarg(struct rusage50 *) rusage; 1072 1.1 ryo }; 1073 1.1 ryo check_syscall_args(linux_sys_wait4) 1074 1.1 ryo 1075 1.4 ryo struct linux_sys_prlimit64_args { 1076 1.4 ryo syscallarg(pid_t) pid; 1077 1.4 ryo syscallarg(int) which; 1078 1.4 ryo syscallarg(struct rlimit *) new_rlp; 1079 1.4 ryo syscallarg(struct rlimit *) old_rlp; 1080 1.4 ryo }; 1081 1.4 ryo check_syscall_args(linux_sys_prlimit64) 1082 1.4 ryo 1083 1.13 christos struct linux_sys_syncfs_args { 1084 1.13 christos syscallarg(int) fd; 1085 1.13 christos }; 1086 1.13 christos check_syscall_args(linux_sys_syncfs) 1087 1.13 christos 1088 1.1 ryo struct linux_sys_sendmmsg_args { 1089 1.1 ryo syscallarg(int) s; 1090 1.1 ryo syscallarg(struct linux_mmsghdr *) msgvec; 1091 1.1 ryo syscallarg(unsigned int) vlen; 1092 1.1 ryo syscallarg(unsigned int) flags; 1093 1.1 ryo }; 1094 1.1 ryo check_syscall_args(linux_sys_sendmmsg) 1095 1.1 ryo 1096 1.13 christos struct linux_sys_renameat2_args { 1097 1.13 christos syscallarg(int) fromfd; 1098 1.13 christos syscallarg(const char *) from; 1099 1.13 christos syscallarg(int) tofd; 1100 1.13 christos syscallarg(const char *) to; 1101 1.13 christos syscallarg(unsigned int) flags; 1102 1.13 christos }; 1103 1.13 christos check_syscall_args(linux_sys_renameat2) 1104 1.13 christos 1105 1.2 ryo struct sys_getrandom_args; 1106 1.2 ryo 1107 1.5 christos struct linux_sys_memfd_create_args { 1108 1.5 christos syscallarg(const char *) name; 1109 1.5 christos syscallarg(unsigned int) flags; 1110 1.5 christos }; 1111 1.5 christos check_syscall_args(linux_sys_memfd_create) 1112 1.5 christos 1113 1.13 christos struct linux_sys_copy_file_range_args { 1114 1.13 christos syscallarg(int) fd_in; 1115 1.13 christos syscallarg(off_t *) off_in; 1116 1.13 christos syscallarg(int) fd_out; 1117 1.13 christos syscallarg(off_t *) off_out; 1118 1.13 christos syscallarg(size_t) len; 1119 1.13 christos syscallarg(unsigned int) flags; 1120 1.13 christos }; 1121 1.13 christos check_syscall_args(linux_sys_copy_file_range) 1122 1.13 christos 1123 1.3 ryo struct linux_sys_statx_args { 1124 1.3 ryo syscallarg(int) fd; 1125 1.3 ryo syscallarg(const char *) path; 1126 1.3 ryo syscallarg(int) flag; 1127 1.3 ryo syscallarg(unsigned int) mask; 1128 1.3 ryo syscallarg(struct linux_statx *) sp; 1129 1.3 ryo }; 1130 1.3 ryo check_syscall_args(linux_sys_statx) 1131 1.3 ryo 1132 1.13 christos struct linux_sys_clone3_args { 1133 1.13 christos syscallarg(struct linux_user_clone3_args *) cl_args; 1134 1.13 christos syscallarg(size_t) size; 1135 1.13 christos }; 1136 1.13 christos check_syscall_args(linux_sys_clone3) 1137 1.13 christos 1138 1.8 christos struct linux_sys_close_range_args { 1139 1.8 christos syscallarg(unsigned int) first; 1140 1.8 christos syscallarg(unsigned int) last; 1141 1.8 christos syscallarg(unsigned int) flags; 1142 1.8 christos }; 1143 1.8 christos check_syscall_args(linux_sys_close_range) 1144 1.8 christos 1145 1.11 christos struct linux_sys_faccessat2_args { 1146 1.11 christos syscallarg(int) fd; 1147 1.11 christos syscallarg(const char *) path; 1148 1.11 christos syscallarg(int) amode; 1149 1.11 christos syscallarg(int) flags; 1150 1.11 christos }; 1151 1.11 christos check_syscall_args(linux_sys_faccessat2) 1152 1.11 christos 1153 1.6 christos struct linux_sys_epoll_pwait2_args { 1154 1.6 christos syscallarg(int) epfd; 1155 1.6 christos syscallarg(struct linux_epoll_event *) events; 1156 1.6 christos syscallarg(int) maxevents; 1157 1.6 christos syscallarg(const struct linux_timespec *) timeout; 1158 1.6 christos syscallarg(const linux_sigset_t *) sigmask; 1159 1.6 christos }; 1160 1.6 christos check_syscall_args(linux_sys_epoll_pwait2) 1161 1.6 christos 1162 1.1 ryo /* 1163 1.1 ryo * System call prototypes. 1164 1.1 ryo */ 1165 1.1 ryo 1166 1.1 ryo int linux_sys_setxattr(struct lwp *, const struct linux_sys_setxattr_args *, register_t *); 1167 1.1 ryo 1168 1.1 ryo int linux_sys_lsetxattr(struct lwp *, const struct linux_sys_lsetxattr_args *, register_t *); 1169 1.1 ryo 1170 1.1 ryo int linux_sys_fsetxattr(struct lwp *, const struct linux_sys_fsetxattr_args *, register_t *); 1171 1.1 ryo 1172 1.1 ryo int linux_sys_getxattr(struct lwp *, const struct linux_sys_getxattr_args *, register_t *); 1173 1.1 ryo 1174 1.1 ryo int linux_sys_lgetxattr(struct lwp *, const struct linux_sys_lgetxattr_args *, register_t *); 1175 1.1 ryo 1176 1.1 ryo int linux_sys_fgetxattr(struct lwp *, const struct linux_sys_fgetxattr_args *, register_t *); 1177 1.1 ryo 1178 1.1 ryo int linux_sys_listxattr(struct lwp *, const struct linux_sys_listxattr_args *, register_t *); 1179 1.1 ryo 1180 1.1 ryo int linux_sys_llistxattr(struct lwp *, const struct linux_sys_llistxattr_args *, register_t *); 1181 1.1 ryo 1182 1.1 ryo int linux_sys_flistxattr(struct lwp *, const struct linux_sys_flistxattr_args *, register_t *); 1183 1.1 ryo 1184 1.1 ryo int linux_sys_removexattr(struct lwp *, const struct linux_sys_removexattr_args *, register_t *); 1185 1.1 ryo 1186 1.1 ryo int linux_sys_lremovexattr(struct lwp *, const struct linux_sys_lremovexattr_args *, register_t *); 1187 1.1 ryo 1188 1.1 ryo int linux_sys_fremovexattr(struct lwp *, const struct linux_sys_fremovexattr_args *, register_t *); 1189 1.1 ryo 1190 1.1 ryo int sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *); 1191 1.1 ryo 1192 1.1 ryo int linux_sys_eventfd2(struct lwp *, const struct linux_sys_eventfd2_args *, register_t *); 1193 1.1 ryo 1194 1.6 christos int linux_sys_epoll_create1(struct lwp *, const struct linux_sys_epoll_create1_args *, register_t *); 1195 1.6 christos 1196 1.6 christos int linux_sys_epoll_ctl(struct lwp *, const struct linux_sys_epoll_ctl_args *, register_t *); 1197 1.6 christos 1198 1.6 christos int linux_sys_epoll_pwait(struct lwp *, const struct linux_sys_epoll_pwait_args *, register_t *); 1199 1.6 christos 1200 1.1 ryo int sys_dup(struct lwp *, const struct sys_dup_args *, register_t *); 1201 1.1 ryo 1202 1.1 ryo int linux_sys_dup3(struct lwp *, const struct linux_sys_dup3_args *, register_t *); 1203 1.1 ryo 1204 1.1 ryo int linux_sys_fcntl(struct lwp *, const struct linux_sys_fcntl_args *, register_t *); 1205 1.1 ryo 1206 1.10 christos int linux_sys_inotify_init1(struct lwp *, const struct linux_sys_inotify_init1_args *, register_t *); 1207 1.10 christos 1208 1.10 christos int linux_sys_inotify_add_watch(struct lwp *, const struct linux_sys_inotify_add_watch_args *, register_t *); 1209 1.10 christos 1210 1.10 christos int linux_sys_inotify_rm_watch(struct lwp *, const struct linux_sys_inotify_rm_watch_args *, register_t *); 1211 1.10 christos 1212 1.1 ryo int linux_sys_ioctl(struct lwp *, const struct linux_sys_ioctl_args *, register_t *); 1213 1.1 ryo 1214 1.1 ryo int sys_flock(struct lwp *, const struct sys_flock_args *, register_t *); 1215 1.1 ryo 1216 1.1 ryo int linux_sys_mknodat(struct lwp *, const struct linux_sys_mknodat_args *, register_t *); 1217 1.1 ryo 1218 1.1 ryo int sys_mkdirat(struct lwp *, const struct sys_mkdirat_args *, register_t *); 1219 1.1 ryo 1220 1.1 ryo int linux_sys_unlinkat(struct lwp *, const struct linux_sys_unlinkat_args *, register_t *); 1221 1.1 ryo 1222 1.1 ryo int sys_symlinkat(struct lwp *, const struct sys_symlinkat_args *, register_t *); 1223 1.1 ryo 1224 1.1 ryo int linux_sys_linkat(struct lwp *, const struct linux_sys_linkat_args *, register_t *); 1225 1.1 ryo 1226 1.1 ryo int sys_renameat(struct lwp *, const struct sys_renameat_args *, register_t *); 1227 1.1 ryo 1228 1.1 ryo int linux_sys_statfs(struct lwp *, const struct linux_sys_statfs_args *, register_t *); 1229 1.1 ryo 1230 1.1 ryo int linux_sys_fstatfs(struct lwp *, const struct linux_sys_fstatfs_args *, register_t *); 1231 1.1 ryo 1232 1.1 ryo int linux_sys_truncate64(struct lwp *, const struct linux_sys_truncate64_args *, register_t *); 1233 1.1 ryo 1234 1.1 ryo int linux_sys_ftruncate64(struct lwp *, const struct linux_sys_ftruncate64_args *, register_t *); 1235 1.1 ryo 1236 1.1 ryo int linux_sys_fallocate(struct lwp *, const struct linux_sys_fallocate_args *, register_t *); 1237 1.1 ryo 1238 1.1 ryo int linux_sys_faccessat(struct lwp *, const struct linux_sys_faccessat_args *, register_t *); 1239 1.1 ryo 1240 1.1 ryo int sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *); 1241 1.1 ryo 1242 1.1 ryo int sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *); 1243 1.1 ryo 1244 1.1 ryo int sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *); 1245 1.1 ryo 1246 1.1 ryo int sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *); 1247 1.1 ryo 1248 1.1 ryo int linux_sys_fchmodat(struct lwp *, const struct linux_sys_fchmodat_args *, register_t *); 1249 1.1 ryo 1250 1.1 ryo int linux_sys_fchownat(struct lwp *, const struct linux_sys_fchownat_args *, register_t *); 1251 1.1 ryo 1252 1.1 ryo int sys___posix_fchown(struct lwp *, const struct sys___posix_fchown_args *, register_t *); 1253 1.1 ryo 1254 1.1 ryo int linux_sys_openat(struct lwp *, const struct linux_sys_openat_args *, register_t *); 1255 1.1 ryo 1256 1.1 ryo int sys_close(struct lwp *, const struct sys_close_args *, register_t *); 1257 1.1 ryo 1258 1.1 ryo int linux_sys_pipe2(struct lwp *, const struct linux_sys_pipe2_args *, register_t *); 1259 1.1 ryo 1260 1.1 ryo int linux_sys_getdents64(struct lwp *, const struct linux_sys_getdents64_args *, register_t *); 1261 1.1 ryo 1262 1.1 ryo int compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *); 1263 1.1 ryo 1264 1.1 ryo int sys_read(struct lwp *, const struct sys_read_args *, register_t *); 1265 1.1 ryo 1266 1.1 ryo int sys_write(struct lwp *, const struct sys_write_args *, register_t *); 1267 1.1 ryo 1268 1.1 ryo int sys_readv(struct lwp *, const struct sys_readv_args *, register_t *); 1269 1.1 ryo 1270 1.1 ryo int sys_writev(struct lwp *, const struct sys_writev_args *, register_t *); 1271 1.1 ryo 1272 1.1 ryo int linux_sys_pread(struct lwp *, const struct linux_sys_pread_args *, register_t *); 1273 1.1 ryo 1274 1.1 ryo int linux_sys_pwrite(struct lwp *, const struct linux_sys_pwrite_args *, register_t *); 1275 1.1 ryo 1276 1.1 ryo int linux_sys_preadv(struct lwp *, const struct linux_sys_preadv_args *, register_t *); 1277 1.1 ryo 1278 1.1 ryo int linux_sys_pwritev(struct lwp *, const struct linux_sys_pwritev_args *, register_t *); 1279 1.1 ryo 1280 1.1 ryo int linux_sys_pselect6(struct lwp *, const struct linux_sys_pselect6_args *, register_t *); 1281 1.1 ryo 1282 1.1 ryo int linux_sys_ppoll(struct lwp *, const struct linux_sys_ppoll_args *, register_t *); 1283 1.1 ryo 1284 1.1 ryo int sys_readlinkat(struct lwp *, const struct sys_readlinkat_args *, register_t *); 1285 1.1 ryo 1286 1.1 ryo int linux_sys_fstatat64(struct lwp *, const struct linux_sys_fstatat64_args *, register_t *); 1287 1.1 ryo 1288 1.1 ryo int linux_sys_fstat64(struct lwp *, const struct linux_sys_fstat64_args *, register_t *); 1289 1.1 ryo 1290 1.1 ryo int sys_sync(struct lwp *, const void *, register_t *); 1291 1.1 ryo 1292 1.1 ryo int sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *); 1293 1.1 ryo 1294 1.1 ryo int linux_sys_fdatasync(struct lwp *, const struct linux_sys_fdatasync_args *, register_t *); 1295 1.1 ryo 1296 1.13 christos int linux_sys_sync_file_range(struct lwp *, const struct linux_sys_sync_file_range_args *, register_t *); 1297 1.13 christos 1298 1.1 ryo int linux_sys_timerfd_create(struct lwp *, const struct linux_sys_timerfd_create_args *, register_t *); 1299 1.1 ryo 1300 1.1 ryo int linux_sys_timerfd_settime(struct lwp *, const struct linux_sys_timerfd_settime_args *, register_t *); 1301 1.1 ryo 1302 1.1 ryo int linux_sys_timerfd_gettime(struct lwp *, const struct linux_sys_timerfd_gettime_args *, register_t *); 1303 1.1 ryo 1304 1.1 ryo int linux_sys_utimensat(struct lwp *, const struct linux_sys_utimensat_args *, register_t *); 1305 1.1 ryo 1306 1.1 ryo int sys_acct(struct lwp *, const struct sys_acct_args *, register_t *); 1307 1.1 ryo 1308 1.1 ryo int linux_sys_personality(struct lwp *, const struct linux_sys_personality_args *, register_t *); 1309 1.1 ryo 1310 1.1 ryo int linux_sys_exit(struct lwp *, const struct linux_sys_exit_args *, register_t *); 1311 1.1 ryo 1312 1.1 ryo int linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *); 1313 1.1 ryo 1314 1.9 christos int linux_sys_waitid(struct lwp *, const struct linux_sys_waitid_args *, register_t *); 1315 1.9 christos 1316 1.1 ryo int linux_sys_set_tid_address(struct lwp *, const struct linux_sys_set_tid_address_args *, register_t *); 1317 1.1 ryo 1318 1.1 ryo int linux_sys_futex(struct lwp *, const struct linux_sys_futex_args *, register_t *); 1319 1.1 ryo 1320 1.1 ryo int sys___futex_set_robust_list(struct lwp *, const struct sys___futex_set_robust_list_args *, register_t *); 1321 1.1 ryo 1322 1.1 ryo int sys___futex_get_robust_list(struct lwp *, const struct sys___futex_get_robust_list_args *, register_t *); 1323 1.1 ryo 1324 1.1 ryo int linux_sys_nanosleep(struct lwp *, const struct linux_sys_nanosleep_args *, register_t *); 1325 1.1 ryo 1326 1.1 ryo int compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_args *, register_t *); 1327 1.1 ryo 1328 1.1 ryo int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *); 1329 1.1 ryo 1330 1.1 ryo int linux_sys_timer_create(struct lwp *, const struct linux_sys_timer_create_args *, register_t *); 1331 1.1 ryo 1332 1.1 ryo int linux_sys_timer_gettime(struct lwp *, const struct linux_sys_timer_gettime_args *, register_t *); 1333 1.1 ryo 1334 1.1 ryo int sys_timer_getoverrun(struct lwp *, const struct sys_timer_getoverrun_args *, register_t *); 1335 1.1 ryo 1336 1.1 ryo int linux_sys_timer_settime(struct lwp *, const struct linux_sys_timer_settime_args *, register_t *); 1337 1.1 ryo 1338 1.1 ryo int sys_timer_delete(struct lwp *, const struct sys_timer_delete_args *, register_t *); 1339 1.1 ryo 1340 1.1 ryo int linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *); 1341 1.1 ryo 1342 1.1 ryo int linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *); 1343 1.1 ryo 1344 1.1 ryo int linux_sys_clock_getres(struct lwp *, const struct linux_sys_clock_getres_args *, register_t *); 1345 1.1 ryo 1346 1.1 ryo int linux_sys_clock_nanosleep(struct lwp *, const struct linux_sys_clock_nanosleep_args *, register_t *); 1347 1.1 ryo 1348 1.1 ryo int linux_sys_ptrace(struct lwp *, const struct linux_sys_ptrace_args *, register_t *); 1349 1.1 ryo 1350 1.1 ryo int linux_sys_sched_setparam(struct lwp *, const struct linux_sys_sched_setparam_args *, register_t *); 1351 1.1 ryo 1352 1.1 ryo int linux_sys_sched_setscheduler(struct lwp *, const struct linux_sys_sched_setscheduler_args *, register_t *); 1353 1.1 ryo 1354 1.1 ryo int linux_sys_sched_getscheduler(struct lwp *, const struct linux_sys_sched_getscheduler_args *, register_t *); 1355 1.1 ryo 1356 1.1 ryo int linux_sys_sched_getparam(struct lwp *, const struct linux_sys_sched_getparam_args *, register_t *); 1357 1.1 ryo 1358 1.1 ryo int linux_sys_sched_setaffinity(struct lwp *, const struct linux_sys_sched_setaffinity_args *, register_t *); 1359 1.1 ryo 1360 1.1 ryo int linux_sys_sched_getaffinity(struct lwp *, const struct linux_sys_sched_getaffinity_args *, register_t *); 1361 1.1 ryo 1362 1.1 ryo int linux_sys_sched_yield(struct lwp *, const void *, register_t *); 1363 1.1 ryo 1364 1.1 ryo int linux_sys_sched_get_priority_max(struct lwp *, const struct linux_sys_sched_get_priority_max_args *, register_t *); 1365 1.1 ryo 1366 1.1 ryo int linux_sys_sched_get_priority_min(struct lwp *, const struct linux_sys_sched_get_priority_min_args *, register_t *); 1367 1.1 ryo 1368 1.1 ryo int linux_sys_kill(struct lwp *, const struct linux_sys_kill_args *, register_t *); 1369 1.1 ryo 1370 1.1 ryo int linux_sys_tkill(struct lwp *, const struct linux_sys_tkill_args *, register_t *); 1371 1.1 ryo 1372 1.1 ryo int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *); 1373 1.1 ryo 1374 1.1 ryo int linux_sys_sigaltstack(struct lwp *, const struct linux_sys_sigaltstack_args *, register_t *); 1375 1.1 ryo 1376 1.1 ryo int linux_sys_rt_sigsuspend(struct lwp *, const struct linux_sys_rt_sigsuspend_args *, register_t *); 1377 1.1 ryo 1378 1.1 ryo int linux_sys_rt_sigaction(struct lwp *, const struct linux_sys_rt_sigaction_args *, register_t *); 1379 1.1 ryo 1380 1.1 ryo int linux_sys_rt_sigprocmask(struct lwp *, const struct linux_sys_rt_sigprocmask_args *, register_t *); 1381 1.1 ryo 1382 1.1 ryo int linux_sys_rt_sigpending(struct lwp *, const struct linux_sys_rt_sigpending_args *, register_t *); 1383 1.1 ryo 1384 1.1 ryo int linux_sys_rt_sigtimedwait(struct lwp *, const struct linux_sys_rt_sigtimedwait_args *, register_t *); 1385 1.1 ryo 1386 1.1 ryo int linux_sys_rt_sigreturn(struct lwp *, const void *, register_t *); 1387 1.1 ryo 1388 1.1 ryo int sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *); 1389 1.1 ryo 1390 1.1 ryo int linux_sys_getpriority(struct lwp *, const struct linux_sys_getpriority_args *, register_t *); 1391 1.1 ryo 1392 1.1 ryo int linux_sys_reboot(struct lwp *, const struct linux_sys_reboot_args *, register_t *); 1393 1.1 ryo 1394 1.1 ryo int sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *); 1395 1.1 ryo 1396 1.1 ryo int sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *); 1397 1.1 ryo 1398 1.1 ryo int sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *); 1399 1.1 ryo 1400 1.1 ryo int sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *); 1401 1.1 ryo 1402 1.1 ryo int linux_sys_setresuid(struct lwp *, const struct linux_sys_setresuid_args *, register_t *); 1403 1.1 ryo 1404 1.1 ryo int linux_sys_getresuid(struct lwp *, const struct linux_sys_getresuid_args *, register_t *); 1405 1.1 ryo 1406 1.1 ryo int linux_sys_setresgid(struct lwp *, const struct linux_sys_setresgid_args *, register_t *); 1407 1.1 ryo 1408 1.1 ryo int linux_sys_getresgid(struct lwp *, const struct linux_sys_getresgid_args *, register_t *); 1409 1.1 ryo 1410 1.1 ryo int linux_sys_setfsuid(struct lwp *, const struct linux_sys_setfsuid_args *, register_t *); 1411 1.1 ryo 1412 1.1 ryo int linux_sys_setfsgid(struct lwp *, const struct linux_sys_setfsgid_args *, register_t *); 1413 1.1 ryo 1414 1.1 ryo int linux_sys_times(struct lwp *, const struct linux_sys_times_args *, register_t *); 1415 1.1 ryo 1416 1.1 ryo int sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *); 1417 1.1 ryo 1418 1.1 ryo int sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *); 1419 1.1 ryo 1420 1.1 ryo int sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *); 1421 1.1 ryo 1422 1.1 ryo int sys_setsid(struct lwp *, const void *, register_t *); 1423 1.1 ryo 1424 1.1 ryo int sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *); 1425 1.1 ryo 1426 1.1 ryo int sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *); 1427 1.1 ryo 1428 1.1 ryo int linux_sys_uname(struct lwp *, const struct linux_sys_uname_args *, register_t *); 1429 1.1 ryo 1430 1.1 ryo int compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *); 1431 1.1 ryo 1432 1.1 ryo int linux_sys_setdomainname(struct lwp *, const struct linux_sys_setdomainname_args *, register_t *); 1433 1.1 ryo 1434 1.1 ryo int linux_sys_getrlimit(struct lwp *, const struct linux_sys_getrlimit_args *, register_t *); 1435 1.1 ryo 1436 1.1 ryo int linux_sys_setrlimit(struct lwp *, const struct linux_sys_setrlimit_args *, register_t *); 1437 1.1 ryo 1438 1.1 ryo int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *); 1439 1.1 ryo 1440 1.1 ryo int sys_umask(struct lwp *, const struct sys_umask_args *, register_t *); 1441 1.1 ryo 1442 1.11 christos int linux_sys_getcpu(struct lwp *, const struct linux_sys_getcpu_args *, register_t *); 1443 1.11 christos 1444 1.1 ryo int linux_sys_gettimeofday(struct lwp *, const struct linux_sys_gettimeofday_args *, register_t *); 1445 1.1 ryo 1446 1.1 ryo int linux_sys_settimeofday(struct lwp *, const struct linux_sys_settimeofday_args *, register_t *); 1447 1.1 ryo 1448 1.1 ryo int sys_getpid(struct lwp *, const void *, register_t *); 1449 1.1 ryo 1450 1.1 ryo int sys_getppid(struct lwp *, const void *, register_t *); 1451 1.1 ryo 1452 1.1 ryo int sys_getuid(struct lwp *, const void *, register_t *); 1453 1.1 ryo 1454 1.1 ryo int sys_geteuid(struct lwp *, const void *, register_t *); 1455 1.1 ryo 1456 1.1 ryo int sys_getgid(struct lwp *, const void *, register_t *); 1457 1.1 ryo 1458 1.1 ryo int sys_getegid(struct lwp *, const void *, register_t *); 1459 1.1 ryo 1460 1.1 ryo int linux_sys_gettid(struct lwp *, const void *, register_t *); 1461 1.1 ryo 1462 1.1 ryo int linux_sys_sysinfo(struct lwp *, const struct linux_sys_sysinfo_args *, register_t *); 1463 1.1 ryo 1464 1.12 christos int linux_sys_mq_open(struct lwp *, const struct linux_sys_mq_open_args *, register_t *); 1465 1.12 christos 1466 1.12 christos int linux_sys_mq_unlink(struct lwp *, const struct linux_sys_mq_unlink_args *, register_t *); 1467 1.12 christos 1468 1.12 christos int linux_sys_mq_timedsend(struct lwp *, const struct linux_sys_mq_timedsend_args *, register_t *); 1469 1.12 christos 1470 1.12 christos int linux_sys_mq_timedreceive(struct lwp *, const struct linux_sys_mq_timedreceive_args *, register_t *); 1471 1.12 christos 1472 1.12 christos int linux_sys_mq_notify(struct lwp *, const struct linux_sys_mq_notify_args *, register_t *); 1473 1.12 christos 1474 1.12 christos int linux_sys_mq_getsetattr(struct lwp *, const struct linux_sys_mq_getsetattr_args *, register_t *); 1475 1.12 christos 1476 1.1 ryo #ifdef SYSVMSG 1477 1.1 ryo int sys_msgget(struct lwp *, const struct sys_msgget_args *, register_t *); 1478 1.1 ryo 1479 1.1 ryo int linux_sys_msgctl(struct lwp *, const struct linux_sys_msgctl_args *, register_t *); 1480 1.1 ryo 1481 1.1 ryo int sys_msgrcv(struct lwp *, const struct sys_msgrcv_args *, register_t *); 1482 1.1 ryo 1483 1.1 ryo int sys_msgsnd(struct lwp *, const struct sys_msgsnd_args *, register_t *); 1484 1.1 ryo 1485 1.1 ryo #else 1486 1.1 ryo #endif 1487 1.1 ryo #ifdef SYSVSEM 1488 1.1 ryo int sys_semget(struct lwp *, const struct sys_semget_args *, register_t *); 1489 1.1 ryo 1490 1.1 ryo int linux_sys_semctl(struct lwp *, const struct linux_sys_semctl_args *, register_t *); 1491 1.1 ryo 1492 1.1 ryo int sys_semop(struct lwp *, const struct sys_semop_args *, register_t *); 1493 1.1 ryo 1494 1.1 ryo #else 1495 1.1 ryo #endif 1496 1.1 ryo #ifdef SYSVSEM 1497 1.1 ryo int linux_sys_shmget(struct lwp *, const struct linux_sys_shmget_args *, register_t *); 1498 1.1 ryo 1499 1.1 ryo int linux_sys_shmctl(struct lwp *, const struct linux_sys_shmctl_args *, register_t *); 1500 1.1 ryo 1501 1.1 ryo int sys_shmat(struct lwp *, const struct sys_shmat_args *, register_t *); 1502 1.1 ryo 1503 1.1 ryo int sys_shmdt(struct lwp *, const struct sys_shmdt_args *, register_t *); 1504 1.1 ryo 1505 1.1 ryo #else 1506 1.1 ryo #endif 1507 1.1 ryo int linux_sys_socket(struct lwp *, const struct linux_sys_socket_args *, register_t *); 1508 1.1 ryo 1509 1.1 ryo int linux_sys_socketpair(struct lwp *, const struct linux_sys_socketpair_args *, register_t *); 1510 1.1 ryo 1511 1.1 ryo int linux_sys_bind(struct lwp *, const struct linux_sys_bind_args *, register_t *); 1512 1.1 ryo 1513 1.1 ryo int sys_listen(struct lwp *, const struct sys_listen_args *, register_t *); 1514 1.1 ryo 1515 1.1 ryo int linux_sys_accept(struct lwp *, const struct linux_sys_accept_args *, register_t *); 1516 1.1 ryo 1517 1.1 ryo int linux_sys_connect(struct lwp *, const struct linux_sys_connect_args *, register_t *); 1518 1.1 ryo 1519 1.1 ryo int linux_sys_getsockname(struct lwp *, const struct linux_sys_getsockname_args *, register_t *); 1520 1.1 ryo 1521 1.1 ryo int linux_sys_getpeername(struct lwp *, const struct linux_sys_getpeername_args *, register_t *); 1522 1.1 ryo 1523 1.1 ryo int linux_sys_sendto(struct lwp *, const struct linux_sys_sendto_args *, register_t *); 1524 1.1 ryo 1525 1.1 ryo int linux_sys_recvfrom(struct lwp *, const struct linux_sys_recvfrom_args *, register_t *); 1526 1.1 ryo 1527 1.1 ryo int linux_sys_setsockopt(struct lwp *, const struct linux_sys_setsockopt_args *, register_t *); 1528 1.1 ryo 1529 1.1 ryo int linux_sys_getsockopt(struct lwp *, const struct linux_sys_getsockopt_args *, register_t *); 1530 1.1 ryo 1531 1.1 ryo int sys_shutdown(struct lwp *, const struct sys_shutdown_args *, register_t *); 1532 1.1 ryo 1533 1.1 ryo int linux_sys_sendmsg(struct lwp *, const struct linux_sys_sendmsg_args *, register_t *); 1534 1.1 ryo 1535 1.1 ryo int linux_sys_recvmsg(struct lwp *, const struct linux_sys_recvmsg_args *, register_t *); 1536 1.1 ryo 1537 1.8 christos int linux_sys_readahead(struct lwp *, const struct linux_sys_readahead_args *, register_t *); 1538 1.8 christos 1539 1.1 ryo int linux_sys_brk(struct lwp *, const struct linux_sys_brk_args *, register_t *); 1540 1.1 ryo 1541 1.1 ryo int sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *); 1542 1.1 ryo 1543 1.1 ryo int linux_sys_mremap(struct lwp *, const struct linux_sys_mremap_args *, register_t *); 1544 1.1 ryo 1545 1.1 ryo int linux_sys_clone(struct lwp *, const struct linux_sys_clone_args *, register_t *); 1546 1.1 ryo 1547 1.1 ryo int sys_execve(struct lwp *, const struct sys_execve_args *, register_t *); 1548 1.1 ryo 1549 1.1 ryo int linux_sys_mmap(struct lwp *, const struct linux_sys_mmap_args *, register_t *); 1550 1.1 ryo 1551 1.1 ryo int linux_sys_fadvise64(struct lwp *, const struct linux_sys_fadvise64_args *, register_t *); 1552 1.1 ryo 1553 1.1 ryo int linux_sys_swapon(struct lwp *, const struct linux_sys_swapon_args *, register_t *); 1554 1.1 ryo 1555 1.1 ryo int linux_sys_swapoff(struct lwp *, const struct linux_sys_swapoff_args *, register_t *); 1556 1.1 ryo 1557 1.1 ryo int linux_sys_mprotect(struct lwp *, const struct linux_sys_mprotect_args *, register_t *); 1558 1.1 ryo 1559 1.1 ryo int sys___msync13(struct lwp *, const struct sys___msync13_args *, register_t *); 1560 1.1 ryo 1561 1.1 ryo int sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *); 1562 1.1 ryo 1563 1.1 ryo int sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *); 1564 1.1 ryo 1565 1.1 ryo int sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *); 1566 1.1 ryo 1567 1.1 ryo int sys_munlockall(struct lwp *, const void *, register_t *); 1568 1.1 ryo 1569 1.1 ryo int sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *); 1570 1.1 ryo 1571 1.1 ryo int sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *); 1572 1.1 ryo 1573 1.1 ryo int linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *); 1574 1.1 ryo 1575 1.1 ryo int linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *); 1576 1.1 ryo 1577 1.1 ryo int linux_sys_wait4(struct lwp *, const struct linux_sys_wait4_args *, register_t *); 1578 1.1 ryo 1579 1.4 ryo int linux_sys_prlimit64(struct lwp *, const struct linux_sys_prlimit64_args *, register_t *); 1580 1.4 ryo 1581 1.13 christos int linux_sys_syncfs(struct lwp *, const struct linux_sys_syncfs_args *, register_t *); 1582 1.13 christos 1583 1.1 ryo int linux_sys_sendmmsg(struct lwp *, const struct linux_sys_sendmmsg_args *, register_t *); 1584 1.1 ryo 1585 1.13 christos int linux_sys_renameat2(struct lwp *, const struct linux_sys_renameat2_args *, register_t *); 1586 1.13 christos 1587 1.2 ryo int sys_getrandom(struct lwp *, const struct sys_getrandom_args *, register_t *); 1588 1.2 ryo 1589 1.5 christos int linux_sys_memfd_create(struct lwp *, const struct linux_sys_memfd_create_args *, register_t *); 1590 1.5 christos 1591 1.13 christos int linux_sys_copy_file_range(struct lwp *, const struct linux_sys_copy_file_range_args *, register_t *); 1592 1.13 christos 1593 1.3 ryo int linux_sys_statx(struct lwp *, const struct linux_sys_statx_args *, register_t *); 1594 1.3 ryo 1595 1.13 christos int linux_sys_clone3(struct lwp *, const struct linux_sys_clone3_args *, register_t *); 1596 1.13 christos 1597 1.8 christos int linux_sys_close_range(struct lwp *, const struct linux_sys_close_range_args *, register_t *); 1598 1.8 christos 1599 1.11 christos int linux_sys_faccessat2(struct lwp *, const struct linux_sys_faccessat2_args *, register_t *); 1600 1.11 christos 1601 1.1 ryo int linux_sys_nosys(struct lwp *, const void *, register_t *); 1602 1.1 ryo 1603 1.6 christos int linux_sys_epoll_pwait2(struct lwp *, const struct linux_sys_epoll_pwait2_args *, register_t *); 1604 1.6 christos 1605 1.1 ryo #endif /* _LINUX_SYS_SYSCALLARGS_H_ */ 1606