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