1#![allow(non_upper_case_globals)]
2
3use core::ffi::c_long;
4
5#[must_use]
7pub fn is_valid_sys_call_number(number: c_long) -> bool {
8 crate::is_valid_sys_call_number(SYS_CALL_NAME, SYS_CALL_BASE_INDEX, number)
9}
10
11#[must_use]
13pub fn sys_call_name(number: c_long) -> Option<&'static str> {
14 crate::sys_call_name(SYS_CALL_NAME, SYS_CALL_BASE_INDEX, number)
15}
16
17pub const SYS_read: c_long = 0x0;
18pub const SYS_write: c_long = 0x1;
19pub const SYS_open: c_long = 0x2;
20pub const SYS_close: c_long = 0x3;
21pub const SYS_stat: c_long = 0x4;
22pub const SYS_fstat: c_long = 0x5;
23pub const SYS_lstat: c_long = 0x6;
24pub const SYS_poll: c_long = 0x7;
25pub const SYS_lseek: c_long = 0x8;
26pub const SYS_mmap: c_long = 0x9;
27pub const SYS_mprotect: c_long = 0xa;
28pub const SYS_munmap: c_long = 0xb;
29pub const SYS_brk: c_long = 0xc;
30pub const SYS_rt_sigaction: c_long = 0xd;
31pub const SYS_rt_sigprocmask: c_long = 0xe;
32pub const SYS_rt_sigreturn: c_long = 0xf;
33pub const SYS_ioctl: c_long = 0x10;
34pub const SYS_pread64: c_long = 0x11;
35pub const SYS_pwrite64: c_long = 0x12;
36pub const SYS_readv: c_long = 0x13;
37pub const SYS_writev: c_long = 0x14;
38pub const SYS_access: c_long = 0x15;
39pub const SYS_pipe: c_long = 0x16;
40pub const SYS_select: c_long = 0x17;
41pub const SYS_sched_yield: c_long = 0x18;
42pub const SYS_mremap: c_long = 0x19;
43pub const SYS_msync: c_long = 0x1a;
44pub const SYS_mincore: c_long = 0x1b;
45pub const SYS_madvise: c_long = 0x1c;
46pub const SYS_shmget: c_long = 0x1d;
47pub const SYS_shmat: c_long = 0x1e;
48pub const SYS_shmctl: c_long = 0x1f;
49pub const SYS_dup: c_long = 0x20;
50pub const SYS_dup2: c_long = 0x21;
51pub const SYS_pause: c_long = 0x22;
52pub const SYS_nanosleep: c_long = 0x23;
53pub const SYS_getitimer: c_long = 0x24;
54pub const SYS_alarm: c_long = 0x25;
55pub const SYS_setitimer: c_long = 0x26;
56pub const SYS_getpid: c_long = 0x27;
57pub const SYS_sendfile: c_long = 0x28;
58pub const SYS_socket: c_long = 0x29;
59pub const SYS_connect: c_long = 0x2a;
60pub const SYS_accept: c_long = 0x2b;
61pub const SYS_sendto: c_long = 0x2c;
62pub const SYS_recvfrom: c_long = 0x2d;
63pub const SYS_sendmsg: c_long = 0x2e;
64pub const SYS_recvmsg: c_long = 0x2f;
65pub const SYS_shutdown: c_long = 0x30;
66pub const SYS_bind: c_long = 0x31;
67pub const SYS_listen: c_long = 0x32;
68pub const SYS_getsockname: c_long = 0x33;
69pub const SYS_getpeername: c_long = 0x34;
70pub const SYS_socketpair: c_long = 0x35;
71pub const SYS_setsockopt: c_long = 0x36;
72pub const SYS_getsockopt: c_long = 0x37;
73pub const SYS_clone: c_long = 0x38;
74pub const SYS_fork: c_long = 0x39;
75pub const SYS_vfork: c_long = 0x3a;
76pub const SYS_execve: c_long = 0x3b;
77pub const SYS_exit: c_long = 0x3c;
78pub const SYS_wait4: c_long = 0x3d;
79pub const SYS_kill: c_long = 0x3e;
80pub const SYS_uname: c_long = 0x3f;
81pub const SYS_semget: c_long = 0x40;
82pub const SYS_semop: c_long = 0x41;
83pub const SYS_semctl: c_long = 0x42;
84pub const SYS_shmdt: c_long = 0x43;
85pub const SYS_msgget: c_long = 0x44;
86pub const SYS_msgsnd: c_long = 0x45;
87pub const SYS_msgrcv: c_long = 0x46;
88pub const SYS_msgctl: c_long = 0x47;
89pub const SYS_fcntl: c_long = 0x48;
90pub const SYS_flock: c_long = 0x49;
91pub const SYS_fsync: c_long = 0x4a;
92pub const SYS_fdatasync: c_long = 0x4b;
93pub const SYS_truncate: c_long = 0x4c;
94pub const SYS_ftruncate: c_long = 0x4d;
95pub const SYS_getdents: c_long = 0x4e;
96pub const SYS_getcwd: c_long = 0x4f;
97pub const SYS_chdir: c_long = 0x50;
98pub const SYS_fchdir: c_long = 0x51;
99pub const SYS_rename: c_long = 0x52;
100pub const SYS_mkdir: c_long = 0x53;
101pub const SYS_rmdir: c_long = 0x54;
102pub const SYS_creat: c_long = 0x55;
103pub const SYS_link: c_long = 0x56;
104pub const SYS_unlink: c_long = 0x57;
105pub const SYS_symlink: c_long = 0x58;
106pub const SYS_readlink: c_long = 0x59;
107pub const SYS_chmod: c_long = 0x5a;
108pub const SYS_fchmod: c_long = 0x5b;
109pub const SYS_chown: c_long = 0x5c;
110pub const SYS_fchown: c_long = 0x5d;
111pub const SYS_lchown: c_long = 0x5e;
112pub const SYS_umask: c_long = 0x5f;
113pub const SYS_gettimeofday: c_long = 0x60;
114pub const SYS_getrlimit: c_long = 0x61;
115pub const SYS_getrusage: c_long = 0x62;
116pub const SYS_sysinfo: c_long = 0x63;
117pub const SYS_times: c_long = 0x64;
118pub const SYS_ptrace: c_long = 0x65;
119pub const SYS_getuid: c_long = 0x66;
120pub const SYS_syslog: c_long = 0x67;
121pub const SYS_getgid: c_long = 0x68;
122pub const SYS_setuid: c_long = 0x69;
123pub const SYS_setgid: c_long = 0x6a;
124pub const SYS_geteuid: c_long = 0x6b;
125pub const SYS_getegid: c_long = 0x6c;
126pub const SYS_setpgid: c_long = 0x6d;
127pub const SYS_getppid: c_long = 0x6e;
128pub const SYS_getpgrp: c_long = 0x6f;
129pub const SYS_setsid: c_long = 0x70;
130pub const SYS_setreuid: c_long = 0x71;
131pub const SYS_setregid: c_long = 0x72;
132pub const SYS_getgroups: c_long = 0x73;
133pub const SYS_setgroups: c_long = 0x74;
134pub const SYS_setresuid: c_long = 0x75;
135pub const SYS_getresuid: c_long = 0x76;
136pub const SYS_setresgid: c_long = 0x77;
137pub const SYS_getresgid: c_long = 0x78;
138pub const SYS_getpgid: c_long = 0x79;
139pub const SYS_setfsuid: c_long = 0x7a;
140pub const SYS_setfsgid: c_long = 0x7b;
141pub const SYS_getsid: c_long = 0x7c;
142pub const SYS_capget: c_long = 0x7d;
143pub const SYS_capset: c_long = 0x7e;
144pub const SYS_rt_sigpending: c_long = 0x7f;
145pub const SYS_rt_sigtimedwait: c_long = 0x80;
146pub const SYS_rt_sigqueueinfo: c_long = 0x81;
147pub const SYS_rt_sigsuspend: c_long = 0x82;
148pub const SYS_sigaltstack: c_long = 0x83;
149pub const SYS_utime: c_long = 0x84;
150pub const SYS_mknod: c_long = 0x85;
151pub const SYS_uselib: c_long = 0x86;
152pub const SYS_personality: c_long = 0x87;
153pub const SYS_ustat: c_long = 0x88;
154pub const SYS_statfs: c_long = 0x89;
155pub const SYS_fstatfs: c_long = 0x8a;
156pub const SYS_sysfs: c_long = 0x8b;
157pub const SYS_getpriority: c_long = 0x8c;
158pub const SYS_setpriority: c_long = 0x8d;
159pub const SYS_sched_setparam: c_long = 0x8e;
160pub const SYS_sched_getparam: c_long = 0x8f;
161pub const SYS_sched_setscheduler: c_long = 0x90;
162pub const SYS_sched_getscheduler: c_long = 0x91;
163pub const SYS_sched_get_priority_max: c_long = 0x92;
164pub const SYS_sched_get_priority_min: c_long = 0x93;
165pub const SYS_sched_rr_get_interval: c_long = 0x94;
166pub const SYS_mlock: c_long = 0x95;
167pub const SYS_munlock: c_long = 0x96;
168pub const SYS_mlockall: c_long = 0x97;
169pub const SYS_munlockall: c_long = 0x98;
170pub const SYS_vhangup: c_long = 0x99;
171pub const SYS_modify_ldt: c_long = 0x9a;
172pub const SYS_pivot_root: c_long = 0x9b;
173pub const SYS__sysctl: c_long = 0x9c;
174pub const SYS_prctl: c_long = 0x9d;
175pub const SYS_arch_prctl: c_long = 0x9e;
176pub const SYS_adjtimex: c_long = 0x9f;
177pub const SYS_setrlimit: c_long = 0xa0;
178pub const SYS_chroot: c_long = 0xa1;
179pub const SYS_sync: c_long = 0xa2;
180pub const SYS_acct: c_long = 0xa3;
181pub const SYS_settimeofday: c_long = 0xa4;
182pub const SYS_mount: c_long = 0xa5;
183pub const SYS_umount2: c_long = 0xa6;
184pub const SYS_swapon: c_long = 0xa7;
185pub const SYS_swapoff: c_long = 0xa8;
186pub const SYS_reboot: c_long = 0xa9;
187pub const SYS_sethostname: c_long = 0xaa;
188pub const SYS_setdomainname: c_long = 0xab;
189pub const SYS_iopl: c_long = 0xac;
190pub const SYS_ioperm: c_long = 0xad;
191pub const SYS_create_module: c_long = 0xae;
192pub const SYS_init_module: c_long = 0xaf;
193pub const SYS_delete_module: c_long = 0xb0;
194pub const SYS_get_kernel_syms: c_long = 0xb1;
195pub const SYS_query_module: c_long = 0xb2;
196pub const SYS_quotactl: c_long = 0xb3;
197pub const SYS_nfsservctl: c_long = 0xb4;
198pub const SYS_getpmsg: c_long = 0xb5;
199pub const SYS_putpmsg: c_long = 0xb6;
200pub const SYS_afs_syscall: c_long = 0xb7;
201pub const SYS_tuxcall: c_long = 0xb8;
202pub const SYS_security: c_long = 0xb9;
203pub const SYS_gettid: c_long = 0xba;
204pub const SYS_readahead: c_long = 0xbb;
205pub const SYS_setxattr: c_long = 0xbc;
206pub const SYS_lsetxattr: c_long = 0xbd;
207pub const SYS_fsetxattr: c_long = 0xbe;
208pub const SYS_getxattr: c_long = 0xbf;
209pub const SYS_lgetxattr: c_long = 0xc0;
210pub const SYS_fgetxattr: c_long = 0xc1;
211pub const SYS_listxattr: c_long = 0xc2;
212pub const SYS_llistxattr: c_long = 0xc3;
213pub const SYS_flistxattr: c_long = 0xc4;
214pub const SYS_removexattr: c_long = 0xc5;
215pub const SYS_lremovexattr: c_long = 0xc6;
216pub const SYS_fremovexattr: c_long = 0xc7;
217pub const SYS_tkill: c_long = 0xc8;
218pub const SYS_time: c_long = 0xc9;
219pub const SYS_futex: c_long = 0xca;
220pub const SYS_sched_setaffinity: c_long = 0xcb;
221pub const SYS_sched_getaffinity: c_long = 0xcc;
222pub const SYS_set_thread_area: c_long = 0xcd;
223pub const SYS_io_setup: c_long = 0xce;
224pub const SYS_io_destroy: c_long = 0xcf;
225pub const SYS_io_getevents: c_long = 0xd0;
226pub const SYS_io_submit: c_long = 0xd1;
227pub const SYS_io_cancel: c_long = 0xd2;
228pub const SYS_get_thread_area: c_long = 0xd3;
229pub const SYS_lookup_dcookie: c_long = 0xd4;
230pub const SYS_epoll_create: c_long = 0xd5;
231pub const SYS_epoll_ctl_old: c_long = 0xd6;
232pub const SYS_epoll_wait_old: c_long = 0xd7;
233pub const SYS_remap_file_pages: c_long = 0xd8;
234pub const SYS_getdents64: c_long = 0xd9;
235pub const SYS_set_tid_address: c_long = 0xda;
236pub const SYS_restart_syscall: c_long = 0xdb;
237pub const SYS_semtimedop: c_long = 0xdc;
238pub const SYS_fadvise64: c_long = 0xdd;
239pub const SYS_timer_create: c_long = 0xde;
240pub const SYS_timer_settime: c_long = 0xdf;
241pub const SYS_timer_gettime: c_long = 0xe0;
242pub const SYS_timer_getoverrun: c_long = 0xe1;
243pub const SYS_timer_delete: c_long = 0xe2;
244pub const SYS_clock_settime: c_long = 0xe3;
245pub const SYS_clock_gettime: c_long = 0xe4;
246pub const SYS_clock_getres: c_long = 0xe5;
247pub const SYS_clock_nanosleep: c_long = 0xe6;
248pub const SYS_exit_group: c_long = 0xe7;
249pub const SYS_epoll_wait: c_long = 0xe8;
250pub const SYS_epoll_ctl: c_long = 0xe9;
251pub const SYS_tgkill: c_long = 0xea;
252pub const SYS_utimes: c_long = 0xeb;
253pub const SYS_vserver: c_long = 0xec;
254pub const SYS_mbind: c_long = 0xed;
255pub const SYS_set_mempolicy: c_long = 0xee;
256pub const SYS_get_mempolicy: c_long = 0xef;
257pub const SYS_mq_open: c_long = 0xf0;
258pub const SYS_mq_unlink: c_long = 0xf1;
259pub const SYS_mq_timedsend: c_long = 0xf2;
260pub const SYS_mq_timedreceive: c_long = 0xf3;
261pub const SYS_mq_notify: c_long = 0xf4;
262pub const SYS_mq_getsetattr: c_long = 0xf5;
263pub const SYS_kexec_load: c_long = 0xf6;
264pub const SYS_waitid: c_long = 0xf7;
265pub const SYS_add_key: c_long = 0xf8;
266pub const SYS_request_key: c_long = 0xf9;
267pub const SYS_keyctl: c_long = 0xfa;
268pub const SYS_ioprio_set: c_long = 0xfb;
269pub const SYS_ioprio_get: c_long = 0xfc;
270pub const SYS_inotify_init: c_long = 0xfd;
271pub const SYS_inotify_add_watch: c_long = 0xfe;
272pub const SYS_inotify_rm_watch: c_long = 0xff;
273pub const SYS_migrate_pages: c_long = 0x100;
274pub const SYS_openat: c_long = 0x101;
275pub const SYS_mkdirat: c_long = 0x102;
276pub const SYS_mknodat: c_long = 0x103;
277pub const SYS_fchownat: c_long = 0x104;
278pub const SYS_futimesat: c_long = 0x105;
279pub const SYS_newfstatat: c_long = 0x106;
280pub const SYS_unlinkat: c_long = 0x107;
281pub const SYS_renameat: c_long = 0x108;
282pub const SYS_linkat: c_long = 0x109;
283pub const SYS_symlinkat: c_long = 0x10a;
284pub const SYS_readlinkat: c_long = 0x10b;
285pub const SYS_fchmodat: c_long = 0x10c;
286pub const SYS_faccessat: c_long = 0x10d;
287pub const SYS_pselect6: c_long = 0x10e;
288pub const SYS_ppoll: c_long = 0x10f;
289pub const SYS_unshare: c_long = 0x110;
290pub const SYS_set_robust_list: c_long = 0x111;
291pub const SYS_get_robust_list: c_long = 0x112;
292pub const SYS_splice: c_long = 0x113;
293pub const SYS_tee: c_long = 0x114;
294pub const SYS_sync_file_range: c_long = 0x115;
295pub const SYS_vmsplice: c_long = 0x116;
296pub const SYS_move_pages: c_long = 0x117;
297pub const SYS_utimensat: c_long = 0x118;
298pub const SYS_epoll_pwait: c_long = 0x119;
299pub const SYS_signalfd: c_long = 0x11a;
300pub const SYS_timerfd_create: c_long = 0x11b;
301pub const SYS_eventfd: c_long = 0x11c;
302pub const SYS_fallocate: c_long = 0x11d;
303pub const SYS_timerfd_settime: c_long = 0x11e;
304pub const SYS_timerfd_gettime: c_long = 0x11f;
305pub const SYS_accept4: c_long = 0x120;
306pub const SYS_signalfd4: c_long = 0x121;
307pub const SYS_eventfd2: c_long = 0x122;
308pub const SYS_epoll_create1: c_long = 0x123;
309pub const SYS_dup3: c_long = 0x124;
310pub const SYS_pipe2: c_long = 0x125;
311pub const SYS_inotify_init1: c_long = 0x126;
312pub const SYS_preadv: c_long = 0x127;
313pub const SYS_pwritev: c_long = 0x128;
314pub const SYS_rt_tgsigqueueinfo: c_long = 0x129;
315pub const SYS_perf_event_open: c_long = 0x12a;
316pub const SYS_recvmmsg: c_long = 0x12b;
317pub const SYS_fanotify_init: c_long = 0x12c;
318pub const SYS_fanotify_mark: c_long = 0x12d;
319pub const SYS_prlimit64: c_long = 0x12e;
320pub const SYS_name_to_handle_at: c_long = 0x12f;
321pub const SYS_open_by_handle_at: c_long = 0x130;
322pub const SYS_clock_adjtime: c_long = 0x131;
323pub const SYS_syncfs: c_long = 0x132;
324pub const SYS_sendmmsg: c_long = 0x133;
325pub const SYS_setns: c_long = 0x134;
326pub const SYS_getcpu: c_long = 0x135;
327pub const SYS_process_vm_readv: c_long = 0x136;
328pub const SYS_process_vm_writev: c_long = 0x137;
329pub const SYS_kcmp: c_long = 0x138;
330pub const SYS_finit_module: c_long = 0x139;
331pub const SYS_sched_setattr: c_long = 0x13a;
332pub const SYS_sched_getattr: c_long = 0x13b;
333pub const SYS_renameat2: c_long = 0x13c;
334pub const SYS_seccomp: c_long = 0x13d;
335pub const SYS_getrandom: c_long = 0x13e;
336pub const SYS_memfd_create: c_long = 0x13f;
337pub const SYS_kexec_file_load: c_long = 0x140;
338pub const SYS_bpf: c_long = 0x141;
339pub const SYS_execveat: c_long = 0x142;
340pub const SYS_userfaultfd: c_long = 0x143;
341pub const SYS_membarrier: c_long = 0x144;
342pub const SYS_mlock2: c_long = 0x145;
343pub const SYS_copy_file_range: c_long = 0x146;
344pub const SYS_preadv2: c_long = 0x147;
345pub const SYS_pwritev2: c_long = 0x148;
346pub const SYS_pkey_mprotect: c_long = 0x149;
347pub const SYS_pkey_alloc: c_long = 0x14a;
348pub const SYS_pkey_free: c_long = 0x14b;
349pub const SYS_statx: c_long = 0x14c;
350pub const SYS_io_pgetevents: c_long = 0x14d;
351pub const SYS_rseq: c_long = 0x14e;
352pub const SYS_uretprobe: c_long = 0x14f;
353pub const SYS_uprobe: c_long = 0x150;
354pub const SYS_pidfd_send_signal: c_long = 0x1a8;
355pub const SYS_io_uring_setup: c_long = 0x1a9;
356pub const SYS_io_uring_enter: c_long = 0x1aa;
357pub const SYS_io_uring_register: c_long = 0x1ab;
358pub const SYS_open_tree: c_long = 0x1ac;
359pub const SYS_move_mount: c_long = 0x1ad;
360pub const SYS_fsopen: c_long = 0x1ae;
361pub const SYS_fsconfig: c_long = 0x1af;
362pub const SYS_fsmount: c_long = 0x1b0;
363pub const SYS_fspick: c_long = 0x1b1;
364pub const SYS_pidfd_open: c_long = 0x1b2;
365pub const SYS_clone3: c_long = 0x1b3;
366pub const SYS_close_range: c_long = 0x1b4;
367pub const SYS_openat2: c_long = 0x1b5;
368pub const SYS_pidfd_getfd: c_long = 0x1b6;
369pub const SYS_faccessat2: c_long = 0x1b7;
370pub const SYS_process_madvise: c_long = 0x1b8;
371pub const SYS_epoll_pwait2: c_long = 0x1b9;
372pub const SYS_mount_setattr: c_long = 0x1ba;
373pub const SYS_quotactl_fd: c_long = 0x1bb;
374pub const SYS_landlock_create_ruleset: c_long = 0x1bc;
375pub const SYS_landlock_add_rule: c_long = 0x1bd;
376pub const SYS_landlock_restrict_self: c_long = 0x1be;
377pub const SYS_memfd_secret: c_long = 0x1bf;
378pub const SYS_process_mrelease: c_long = 0x1c0;
379pub const SYS_futex_waitv: c_long = 0x1c1;
380pub const SYS_set_mempolicy_home_node: c_long = 0x1c2;
381pub const SYS_cachestat: c_long = 0x1c3;
382pub const SYS_fchmodat2: c_long = 0x1c4;
383pub const SYS_map_shadow_stack: c_long = 0x1c5;
384pub const SYS_futex_wake: c_long = 0x1c6;
385pub const SYS_futex_wait: c_long = 0x1c7;
386pub const SYS_futex_requeue: c_long = 0x1c8;
387pub const SYS_statmount: c_long = 0x1c9;
388pub const SYS_listmount: c_long = 0x1ca;
389pub const SYS_lsm_get_self_attr: c_long = 0x1cb;
390pub const SYS_lsm_set_self_attr: c_long = 0x1cc;
391pub const SYS_lsm_list_modules: c_long = 0x1cd;
392pub const SYS_mseal: c_long = 0x1ce;
393pub const SYS_setxattrat: c_long = 0x1cf;
394pub const SYS_getxattrat: c_long = 0x1d0;
395pub const SYS_listxattrat: c_long = 0x1d1;
396pub const SYS_removexattrat: c_long = 0x1d2;
397pub const SYS_open_tree_attr: c_long = 0x1d3;
398pub const SYS_file_getattr: c_long = 0x1d4;
399pub const SYS_file_setattr: c_long = 0x1d5;
400pub const SYS_listns: c_long = 0x1d6;
401
402pub(crate) const SYS_CALL_BASE_INDEX: c_long = 0x0;
404
405pub(crate) static SYS_CALL_NAME: &[&str] = &[
407 "read",
408 "write",
409 "open",
410 "close",
411 "stat",
412 "fstat",
413 "lstat",
414 "poll",
415 "lseek",
416 "mmap",
417 "mprotect",
418 "munmap",
419 "brk",
420 "rt_sigaction",
421 "rt_sigprocmask",
422 "rt_sigreturn",
423 "ioctl",
424 "pread64",
425 "pwrite64",
426 "readv",
427 "writev",
428 "access",
429 "pipe",
430 "select",
431 "sched_yield",
432 "mremap",
433 "msync",
434 "mincore",
435 "madvise",
436 "shmget",
437 "shmat",
438 "shmctl",
439 "dup",
440 "dup2",
441 "pause",
442 "nanosleep",
443 "getitimer",
444 "alarm",
445 "setitimer",
446 "getpid",
447 "sendfile",
448 "socket",
449 "connect",
450 "accept",
451 "sendto",
452 "recvfrom",
453 "sendmsg",
454 "recvmsg",
455 "shutdown",
456 "bind",
457 "listen",
458 "getsockname",
459 "getpeername",
460 "socketpair",
461 "setsockopt",
462 "getsockopt",
463 "clone",
464 "fork",
465 "vfork",
466 "execve",
467 "exit",
468 "wait4",
469 "kill",
470 "uname",
471 "semget",
472 "semop",
473 "semctl",
474 "shmdt",
475 "msgget",
476 "msgsnd",
477 "msgrcv",
478 "msgctl",
479 "fcntl",
480 "flock",
481 "fsync",
482 "fdatasync",
483 "truncate",
484 "ftruncate",
485 "getdents",
486 "getcwd",
487 "chdir",
488 "fchdir",
489 "rename",
490 "mkdir",
491 "rmdir",
492 "creat",
493 "link",
494 "unlink",
495 "symlink",
496 "readlink",
497 "chmod",
498 "fchmod",
499 "chown",
500 "fchown",
501 "lchown",
502 "umask",
503 "gettimeofday",
504 "getrlimit",
505 "getrusage",
506 "sysinfo",
507 "times",
508 "ptrace",
509 "getuid",
510 "syslog",
511 "getgid",
512 "setuid",
513 "setgid",
514 "geteuid",
515 "getegid",
516 "setpgid",
517 "getppid",
518 "getpgrp",
519 "setsid",
520 "setreuid",
521 "setregid",
522 "getgroups",
523 "setgroups",
524 "setresuid",
525 "getresuid",
526 "setresgid",
527 "getresgid",
528 "getpgid",
529 "setfsuid",
530 "setfsgid",
531 "getsid",
532 "capget",
533 "capset",
534 "rt_sigpending",
535 "rt_sigtimedwait",
536 "rt_sigqueueinfo",
537 "rt_sigsuspend",
538 "sigaltstack",
539 "utime",
540 "mknod",
541 "uselib",
542 "personality",
543 "ustat",
544 "statfs",
545 "fstatfs",
546 "sysfs",
547 "getpriority",
548 "setpriority",
549 "sched_setparam",
550 "sched_getparam",
551 "sched_setscheduler",
552 "sched_getscheduler",
553 "sched_get_priority_max",
554 "sched_get_priority_min",
555 "sched_rr_get_interval",
556 "mlock",
557 "munlock",
558 "mlockall",
559 "munlockall",
560 "vhangup",
561 "modify_ldt",
562 "pivot_root",
563 "_sysctl",
564 "prctl",
565 "arch_prctl",
566 "adjtimex",
567 "setrlimit",
568 "chroot",
569 "sync",
570 "acct",
571 "settimeofday",
572 "mount",
573 "umount2",
574 "swapon",
575 "swapoff",
576 "reboot",
577 "sethostname",
578 "setdomainname",
579 "iopl",
580 "ioperm",
581 "create_module",
582 "init_module",
583 "delete_module",
584 "get_kernel_syms",
585 "query_module",
586 "quotactl",
587 "nfsservctl",
588 "getpmsg",
589 "putpmsg",
590 "afs_syscall",
591 "tuxcall",
592 "security",
593 "gettid",
594 "readahead",
595 "setxattr",
596 "lsetxattr",
597 "fsetxattr",
598 "getxattr",
599 "lgetxattr",
600 "fgetxattr",
601 "listxattr",
602 "llistxattr",
603 "flistxattr",
604 "removexattr",
605 "lremovexattr",
606 "fremovexattr",
607 "tkill",
608 "time",
609 "futex",
610 "sched_setaffinity",
611 "sched_getaffinity",
612 "set_thread_area",
613 "io_setup",
614 "io_destroy",
615 "io_getevents",
616 "io_submit",
617 "io_cancel",
618 "get_thread_area",
619 "lookup_dcookie",
620 "epoll_create",
621 "epoll_ctl_old",
622 "epoll_wait_old",
623 "remap_file_pages",
624 "getdents64",
625 "set_tid_address",
626 "restart_syscall",
627 "semtimedop",
628 "fadvise64",
629 "timer_create",
630 "timer_settime",
631 "timer_gettime",
632 "timer_getoverrun",
633 "timer_delete",
634 "clock_settime",
635 "clock_gettime",
636 "clock_getres",
637 "clock_nanosleep",
638 "exit_group",
639 "epoll_wait",
640 "epoll_ctl",
641 "tgkill",
642 "utimes",
643 "vserver",
644 "mbind",
645 "set_mempolicy",
646 "get_mempolicy",
647 "mq_open",
648 "mq_unlink",
649 "mq_timedsend",
650 "mq_timedreceive",
651 "mq_notify",
652 "mq_getsetattr",
653 "kexec_load",
654 "waitid",
655 "add_key",
656 "request_key",
657 "keyctl",
658 "ioprio_set",
659 "ioprio_get",
660 "inotify_init",
661 "inotify_add_watch",
662 "inotify_rm_watch",
663 "migrate_pages",
664 "openat",
665 "mkdirat",
666 "mknodat",
667 "fchownat",
668 "futimesat",
669 "newfstatat",
670 "unlinkat",
671 "renameat",
672 "linkat",
673 "symlinkat",
674 "readlinkat",
675 "fchmodat",
676 "faccessat",
677 "pselect6",
678 "ppoll",
679 "unshare",
680 "set_robust_list",
681 "get_robust_list",
682 "splice",
683 "tee",
684 "sync_file_range",
685 "vmsplice",
686 "move_pages",
687 "utimensat",
688 "epoll_pwait",
689 "signalfd",
690 "timerfd_create",
691 "eventfd",
692 "fallocate",
693 "timerfd_settime",
694 "timerfd_gettime",
695 "accept4",
696 "signalfd4",
697 "eventfd2",
698 "epoll_create1",
699 "dup3",
700 "pipe2",
701 "inotify_init1",
702 "preadv",
703 "pwritev",
704 "rt_tgsigqueueinfo",
705 "perf_event_open",
706 "recvmmsg",
707 "fanotify_init",
708 "fanotify_mark",
709 "prlimit64",
710 "name_to_handle_at",
711 "open_by_handle_at",
712 "clock_adjtime",
713 "syncfs",
714 "sendmmsg",
715 "setns",
716 "getcpu",
717 "process_vm_readv",
718 "process_vm_writev",
719 "kcmp",
720 "finit_module",
721 "sched_setattr",
722 "sched_getattr",
723 "renameat2",
724 "seccomp",
725 "getrandom",
726 "memfd_create",
727 "kexec_file_load",
728 "bpf",
729 "execveat",
730 "userfaultfd",
731 "membarrier",
732 "mlock2",
733 "copy_file_range",
734 "preadv2",
735 "pwritev2",
736 "pkey_mprotect",
737 "pkey_alloc",
738 "pkey_free",
739 "statx",
740 "io_pgetevents",
741 "rseq",
742 "uretprobe",
743 "uprobe",
744 "",
745 "",
746 "",
747 "",
748 "",
749 "",
750 "",
751 "",
752 "",
753 "",
754 "",
755 "",
756 "",
757 "",
758 "",
759 "",
760 "",
761 "",
762 "",
763 "",
764 "",
765 "",
766 "",
767 "",
768 "",
769 "",
770 "",
771 "",
772 "",
773 "",
774 "",
775 "",
776 "",
777 "",
778 "",
779 "",
780 "",
781 "",
782 "",
783 "",
784 "",
785 "",
786 "",
787 "",
788 "",
789 "",
790 "",
791 "",
792 "",
793 "",
794 "",
795 "",
796 "",
797 "",
798 "",
799 "",
800 "",
801 "",
802 "",
803 "",
804 "",
805 "",
806 "",
807 "",
808 "",
809 "",
810 "",
811 "",
812 "",
813 "",
814 "",
815 "",
816 "",
817 "",
818 "",
819 "",
820 "",
821 "",
822 "",
823 "",
824 "",
825 "",
826 "",
827 "",
828 "",
829 "",
830 "",
831 "pidfd_send_signal",
832 "io_uring_setup",
833 "io_uring_enter",
834 "io_uring_register",
835 "open_tree",
836 "move_mount",
837 "fsopen",
838 "fsconfig",
839 "fsmount",
840 "fspick",
841 "pidfd_open",
842 "clone3",
843 "close_range",
844 "openat2",
845 "pidfd_getfd",
846 "faccessat2",
847 "process_madvise",
848 "epoll_pwait2",
849 "mount_setattr",
850 "quotactl_fd",
851 "landlock_create_ruleset",
852 "landlock_add_rule",
853 "landlock_restrict_self",
854 "memfd_secret",
855 "process_mrelease",
856 "futex_waitv",
857 "set_mempolicy_home_node",
858 "cachestat",
859 "fchmodat2",
860 "map_shadow_stack",
861 "futex_wake",
862 "futex_wait",
863 "futex_requeue",
864 "statmount",
865 "listmount",
866 "lsm_get_self_attr",
867 "lsm_set_self_attr",
868 "lsm_list_modules",
869 "mseal",
870 "setxattrat",
871 "getxattrat",
872 "listxattrat",
873 "removexattrat",
874 "open_tree_attr",
875 "file_getattr",
876 "file_setattr",
877 "listns",
878];