Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update syscall lists #1185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions dmoj/cptbox/syscalls.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ sys_getresgid32: int
sys_getresuid: int
sys_getresuid32: int
sys_getrlimit: int
sys_getrlimitusage: int
sys_getrusage: int
sys_getsid: int
sys_getsockname: int
Expand All @@ -253,6 +254,7 @@ sys_gettimeofday: int
sys_getuid: int
sys_getuid32: int
sys_getxattr: int
sys_getxattrat: int
sys_gssd_syscall: int
sys_gtty: int
sys_idle: int
Expand Down Expand Up @@ -348,6 +350,7 @@ sys_lio_listio: int
sys_listen: int
sys_listmount: int
sys_listxattr: int
sys_listxattrat: int
sys_llistxattr: int
sys_llseek: int
sys_lock: int
Expand Down Expand Up @@ -524,6 +527,7 @@ sys_recvmmsg_time64: int
sys_recvmsg: int
sys_remap_file_pages: int
sys_removexattr: int
sys_removexattrat: int
sys_rename: int
sys_renameat: int
sys_renameat2: int
Expand Down Expand Up @@ -626,6 +630,7 @@ sys_setuid: int
sys_setuid32: int
sys_setup: int
sys_setxattr: int
sys_setxattrat: int
sys_sgetmask: int
sys_shm_open: int
sys_shm_open2: int
Expand Down Expand Up @@ -732,6 +737,7 @@ sys_unlink: int
sys_unlinkat: int
sys_unmount: int
sys_unshare: int
sys_uretprobe: int
sys_uselib: int
sys_userfaultfd: int
sys_ustat: int
Expand Down
1 change: 1 addition & 0 deletions dmoj/cptbox/syscalls/freebsd.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -519,3 +519,4 @@
586 timerfd_gettime
587 timerfd_settime
588 kcmp
589 getrlimitusage
4 changes: 4 additions & 0 deletions dmoj/cptbox/syscalls/linux-arm.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -452,3 +452,7 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
4 changes: 4 additions & 0 deletions dmoj/cptbox/syscalls/linux-generic.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -336,3 +336,7 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
4 changes: 4 additions & 0 deletions dmoj/cptbox/syscalls/linux-generic32.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -336,3 +336,7 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
5 changes: 5 additions & 0 deletions dmoj/cptbox/syscalls/linux-x32.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
332 statx
333 io_pgetevents
334 rseq
335 uretprobe
424 pidfd_send_signal
425 io_uring_setup
426 io_uring_enter
Expand Down Expand Up @@ -325,6 +326,10 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
512 rt_sigaction
513 rt_sigreturn
514 ioctl
Expand Down
5 changes: 5 additions & 0 deletions dmoj/cptbox/syscalls/linux-x64.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@
332 statx
333 io_pgetevents
334 rseq
335 uretprobe
424 pidfd_send_signal
425 io_uring_setup
426 io_uring_enter
Expand Down Expand Up @@ -372,3 +373,7 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
4 changes: 4 additions & 0 deletions dmoj/cptbox/syscalls/linux-x86.tbl
Original file line number Diff line number Diff line change
Expand Up @@ -450,3 +450,7 @@
460 lsm_set_self_attr
461 lsm_list_modules
462 mseal
463 setxattrat
464 getxattrat
465 listxattrat
466 removexattrat
Loading