syscall_numbers/
x32.rs

1#![allow(non_upper_case_globals)]
2
3use core::ffi::c_long;
4
5/// Returns `true` if `number` is a valid system call number.
6pub 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
10/// Returns the name of a system call, given its number.
11pub 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_read: c_long = 0x40000000;
16pub const SYS_write: c_long = 0x40000001;
17pub const SYS_open: c_long = 0x40000002;
18pub const SYS_close: c_long = 0x40000003;
19pub const SYS_stat: c_long = 0x40000004;
20pub const SYS_fstat: c_long = 0x40000005;
21pub const SYS_lstat: c_long = 0x40000006;
22pub const SYS_poll: c_long = 0x40000007;
23pub const SYS_lseek: c_long = 0x40000008;
24pub const SYS_mmap: c_long = 0x40000009;
25pub const SYS_mprotect: c_long = 0x4000000a;
26pub const SYS_munmap: c_long = 0x4000000b;
27pub const SYS_brk: c_long = 0x4000000c;
28pub const SYS_rt_sigprocmask: c_long = 0x4000000e;
29pub const SYS_pread64: c_long = 0x40000011;
30pub const SYS_pwrite64: c_long = 0x40000012;
31pub const SYS_access: c_long = 0x40000015;
32pub const SYS_pipe: c_long = 0x40000016;
33pub const SYS_select: c_long = 0x40000017;
34pub const SYS_sched_yield: c_long = 0x40000018;
35pub const SYS_mremap: c_long = 0x40000019;
36pub const SYS_msync: c_long = 0x4000001a;
37pub const SYS_mincore: c_long = 0x4000001b;
38pub const SYS_madvise: c_long = 0x4000001c;
39pub const SYS_shmget: c_long = 0x4000001d;
40pub const SYS_shmat: c_long = 0x4000001e;
41pub const SYS_shmctl: c_long = 0x4000001f;
42pub const SYS_dup: c_long = 0x40000020;
43pub const SYS_dup2: c_long = 0x40000021;
44pub const SYS_pause: c_long = 0x40000022;
45pub const SYS_nanosleep: c_long = 0x40000023;
46pub const SYS_getitimer: c_long = 0x40000024;
47pub const SYS_alarm: c_long = 0x40000025;
48pub const SYS_setitimer: c_long = 0x40000026;
49pub const SYS_getpid: c_long = 0x40000027;
50pub const SYS_sendfile: c_long = 0x40000028;
51pub const SYS_socket: c_long = 0x40000029;
52pub const SYS_connect: c_long = 0x4000002a;
53pub const SYS_accept: c_long = 0x4000002b;
54pub const SYS_sendto: c_long = 0x4000002c;
55pub const SYS_shutdown: c_long = 0x40000030;
56pub const SYS_bind: c_long = 0x40000031;
57pub const SYS_listen: c_long = 0x40000032;
58pub const SYS_getsockname: c_long = 0x40000033;
59pub const SYS_getpeername: c_long = 0x40000034;
60pub const SYS_socketpair: c_long = 0x40000035;
61pub const SYS_clone: c_long = 0x40000038;
62pub const SYS_fork: c_long = 0x40000039;
63pub const SYS_vfork: c_long = 0x4000003a;
64pub const SYS_exit: c_long = 0x4000003c;
65pub const SYS_wait4: c_long = 0x4000003d;
66pub const SYS_kill: c_long = 0x4000003e;
67pub const SYS_uname: c_long = 0x4000003f;
68pub const SYS_semget: c_long = 0x40000040;
69pub const SYS_semop: c_long = 0x40000041;
70pub const SYS_semctl: c_long = 0x40000042;
71pub const SYS_shmdt: c_long = 0x40000043;
72pub const SYS_msgget: c_long = 0x40000044;
73pub const SYS_msgsnd: c_long = 0x40000045;
74pub const SYS_msgrcv: c_long = 0x40000046;
75pub const SYS_msgctl: c_long = 0x40000047;
76pub const SYS_fcntl: c_long = 0x40000048;
77pub const SYS_flock: c_long = 0x40000049;
78pub const SYS_fsync: c_long = 0x4000004a;
79pub const SYS_fdatasync: c_long = 0x4000004b;
80pub const SYS_truncate: c_long = 0x4000004c;
81pub const SYS_ftruncate: c_long = 0x4000004d;
82pub const SYS_getdents: c_long = 0x4000004e;
83pub const SYS_getcwd: c_long = 0x4000004f;
84pub const SYS_chdir: c_long = 0x40000050;
85pub const SYS_fchdir: c_long = 0x40000051;
86pub const SYS_rename: c_long = 0x40000052;
87pub const SYS_mkdir: c_long = 0x40000053;
88pub const SYS_rmdir: c_long = 0x40000054;
89pub const SYS_creat: c_long = 0x40000055;
90pub const SYS_link: c_long = 0x40000056;
91pub const SYS_unlink: c_long = 0x40000057;
92pub const SYS_symlink: c_long = 0x40000058;
93pub const SYS_readlink: c_long = 0x40000059;
94pub const SYS_chmod: c_long = 0x4000005a;
95pub const SYS_fchmod: c_long = 0x4000005b;
96pub const SYS_chown: c_long = 0x4000005c;
97pub const SYS_fchown: c_long = 0x4000005d;
98pub const SYS_lchown: c_long = 0x4000005e;
99pub const SYS_umask: c_long = 0x4000005f;
100pub const SYS_gettimeofday: c_long = 0x40000060;
101pub const SYS_getrlimit: c_long = 0x40000061;
102pub const SYS_getrusage: c_long = 0x40000062;
103pub const SYS_sysinfo: c_long = 0x40000063;
104pub const SYS_times: c_long = 0x40000064;
105pub const SYS_getuid: c_long = 0x40000066;
106pub const SYS_syslog: c_long = 0x40000067;
107pub const SYS_getgid: c_long = 0x40000068;
108pub const SYS_setuid: c_long = 0x40000069;
109pub const SYS_setgid: c_long = 0x4000006a;
110pub const SYS_geteuid: c_long = 0x4000006b;
111pub const SYS_getegid: c_long = 0x4000006c;
112pub const SYS_setpgid: c_long = 0x4000006d;
113pub const SYS_getppid: c_long = 0x4000006e;
114pub const SYS_getpgrp: c_long = 0x4000006f;
115pub const SYS_setsid: c_long = 0x40000070;
116pub const SYS_setreuid: c_long = 0x40000071;
117pub const SYS_setregid: c_long = 0x40000072;
118pub const SYS_getgroups: c_long = 0x40000073;
119pub const SYS_setgroups: c_long = 0x40000074;
120pub const SYS_setresuid: c_long = 0x40000075;
121pub const SYS_getresuid: c_long = 0x40000076;
122pub const SYS_setresgid: c_long = 0x40000077;
123pub const SYS_getresgid: c_long = 0x40000078;
124pub const SYS_getpgid: c_long = 0x40000079;
125pub const SYS_setfsuid: c_long = 0x4000007a;
126pub const SYS_setfsgid: c_long = 0x4000007b;
127pub const SYS_getsid: c_long = 0x4000007c;
128pub const SYS_capget: c_long = 0x4000007d;
129pub const SYS_capset: c_long = 0x4000007e;
130pub const SYS_rt_sigsuspend: c_long = 0x40000082;
131pub const SYS_utime: c_long = 0x40000084;
132pub const SYS_mknod: c_long = 0x40000085;
133pub const SYS_personality: c_long = 0x40000087;
134pub const SYS_ustat: c_long = 0x40000088;
135pub const SYS_statfs: c_long = 0x40000089;
136pub const SYS_fstatfs: c_long = 0x4000008a;
137pub const SYS_sysfs: c_long = 0x4000008b;
138pub const SYS_getpriority: c_long = 0x4000008c;
139pub const SYS_setpriority: c_long = 0x4000008d;
140pub const SYS_sched_setparam: c_long = 0x4000008e;
141pub const SYS_sched_getparam: c_long = 0x4000008f;
142pub const SYS_sched_setscheduler: c_long = 0x40000090;
143pub const SYS_sched_getscheduler: c_long = 0x40000091;
144pub const SYS_sched_get_priority_max: c_long = 0x40000092;
145pub const SYS_sched_get_priority_min: c_long = 0x40000093;
146pub const SYS_sched_rr_get_interval: c_long = 0x40000094;
147pub const SYS_mlock: c_long = 0x40000095;
148pub const SYS_munlock: c_long = 0x40000096;
149pub const SYS_mlockall: c_long = 0x40000097;
150pub const SYS_munlockall: c_long = 0x40000098;
151pub const SYS_vhangup: c_long = 0x40000099;
152pub const SYS_modify_ldt: c_long = 0x4000009a;
153pub const SYS_pivot_root: c_long = 0x4000009b;
154pub const SYS_prctl: c_long = 0x4000009d;
155pub const SYS_arch_prctl: c_long = 0x4000009e;
156pub const SYS_adjtimex: c_long = 0x4000009f;
157pub const SYS_setrlimit: c_long = 0x400000a0;
158pub const SYS_chroot: c_long = 0x400000a1;
159pub const SYS_sync: c_long = 0x400000a2;
160pub const SYS_acct: c_long = 0x400000a3;
161pub const SYS_settimeofday: c_long = 0x400000a4;
162pub const SYS_mount: c_long = 0x400000a5;
163pub const SYS_umount2: c_long = 0x400000a6;
164pub const SYS_swapon: c_long = 0x400000a7;
165pub const SYS_swapoff: c_long = 0x400000a8;
166pub const SYS_reboot: c_long = 0x400000a9;
167pub const SYS_sethostname: c_long = 0x400000aa;
168pub const SYS_setdomainname: c_long = 0x400000ab;
169pub const SYS_iopl: c_long = 0x400000ac;
170pub const SYS_ioperm: c_long = 0x400000ad;
171pub const SYS_init_module: c_long = 0x400000af;
172pub const SYS_delete_module: c_long = 0x400000b0;
173pub const SYS_quotactl: c_long = 0x400000b3;
174pub const SYS_getpmsg: c_long = 0x400000b5;
175pub const SYS_putpmsg: c_long = 0x400000b6;
176pub const SYS_afs_syscall: c_long = 0x400000b7;
177pub const SYS_tuxcall: c_long = 0x400000b8;
178pub const SYS_security: c_long = 0x400000b9;
179pub const SYS_gettid: c_long = 0x400000ba;
180pub const SYS_readahead: c_long = 0x400000bb;
181pub const SYS_setxattr: c_long = 0x400000bc;
182pub const SYS_lsetxattr: c_long = 0x400000bd;
183pub const SYS_fsetxattr: c_long = 0x400000be;
184pub const SYS_getxattr: c_long = 0x400000bf;
185pub const SYS_lgetxattr: c_long = 0x400000c0;
186pub const SYS_fgetxattr: c_long = 0x400000c1;
187pub const SYS_listxattr: c_long = 0x400000c2;
188pub const SYS_llistxattr: c_long = 0x400000c3;
189pub const SYS_flistxattr: c_long = 0x400000c4;
190pub const SYS_removexattr: c_long = 0x400000c5;
191pub const SYS_lremovexattr: c_long = 0x400000c6;
192pub const SYS_fremovexattr: c_long = 0x400000c7;
193pub const SYS_tkill: c_long = 0x400000c8;
194pub const SYS_time: c_long = 0x400000c9;
195pub const SYS_futex: c_long = 0x400000ca;
196pub const SYS_sched_setaffinity: c_long = 0x400000cb;
197pub const SYS_sched_getaffinity: c_long = 0x400000cc;
198pub const SYS_io_destroy: c_long = 0x400000cf;
199pub const SYS_io_getevents: c_long = 0x400000d0;
200pub const SYS_io_cancel: c_long = 0x400000d2;
201pub const SYS_lookup_dcookie: c_long = 0x400000d4;
202pub const SYS_epoll_create: c_long = 0x400000d5;
203pub const SYS_remap_file_pages: c_long = 0x400000d8;
204pub const SYS_getdents64: c_long = 0x400000d9;
205pub const SYS_set_tid_address: c_long = 0x400000da;
206pub const SYS_restart_syscall: c_long = 0x400000db;
207pub const SYS_semtimedop: c_long = 0x400000dc;
208pub const SYS_fadvise64: c_long = 0x400000dd;
209pub const SYS_timer_settime: c_long = 0x400000df;
210pub const SYS_timer_gettime: c_long = 0x400000e0;
211pub const SYS_timer_getoverrun: c_long = 0x400000e1;
212pub const SYS_timer_delete: c_long = 0x400000e2;
213pub const SYS_clock_settime: c_long = 0x400000e3;
214pub const SYS_clock_gettime: c_long = 0x400000e4;
215pub const SYS_clock_getres: c_long = 0x400000e5;
216pub const SYS_clock_nanosleep: c_long = 0x400000e6;
217pub const SYS_exit_group: c_long = 0x400000e7;
218pub const SYS_epoll_wait: c_long = 0x400000e8;
219pub const SYS_epoll_ctl: c_long = 0x400000e9;
220pub const SYS_tgkill: c_long = 0x400000ea;
221pub const SYS_utimes: c_long = 0x400000eb;
222pub const SYS_mbind: c_long = 0x400000ed;
223pub const SYS_set_mempolicy: c_long = 0x400000ee;
224pub const SYS_get_mempolicy: c_long = 0x400000ef;
225pub const SYS_mq_open: c_long = 0x400000f0;
226pub const SYS_mq_unlink: c_long = 0x400000f1;
227pub const SYS_mq_timedsend: c_long = 0x400000f2;
228pub const SYS_mq_timedreceive: c_long = 0x400000f3;
229pub const SYS_mq_getsetattr: c_long = 0x400000f5;
230pub const SYS_add_key: c_long = 0x400000f8;
231pub const SYS_request_key: c_long = 0x400000f9;
232pub const SYS_keyctl: c_long = 0x400000fa;
233pub const SYS_ioprio_set: c_long = 0x400000fb;
234pub const SYS_ioprio_get: c_long = 0x400000fc;
235pub const SYS_inotify_init: c_long = 0x400000fd;
236pub const SYS_inotify_add_watch: c_long = 0x400000fe;
237pub const SYS_inotify_rm_watch: c_long = 0x400000ff;
238pub const SYS_migrate_pages: c_long = 0x40000100;
239pub const SYS_openat: c_long = 0x40000101;
240pub const SYS_mkdirat: c_long = 0x40000102;
241pub const SYS_mknodat: c_long = 0x40000103;
242pub const SYS_fchownat: c_long = 0x40000104;
243pub const SYS_futimesat: c_long = 0x40000105;
244pub const SYS_newfstatat: c_long = 0x40000106;
245pub const SYS_unlinkat: c_long = 0x40000107;
246pub const SYS_renameat: c_long = 0x40000108;
247pub const SYS_linkat: c_long = 0x40000109;
248pub const SYS_symlinkat: c_long = 0x4000010a;
249pub const SYS_readlinkat: c_long = 0x4000010b;
250pub const SYS_fchmodat: c_long = 0x4000010c;
251pub const SYS_faccessat: c_long = 0x4000010d;
252pub const SYS_pselect6: c_long = 0x4000010e;
253pub const SYS_ppoll: c_long = 0x4000010f;
254pub const SYS_unshare: c_long = 0x40000110;
255pub const SYS_splice: c_long = 0x40000113;
256pub const SYS_tee: c_long = 0x40000114;
257pub const SYS_sync_file_range: c_long = 0x40000115;
258pub const SYS_utimensat: c_long = 0x40000118;
259pub const SYS_epoll_pwait: c_long = 0x40000119;
260pub const SYS_signalfd: c_long = 0x4000011a;
261pub const SYS_timerfd_create: c_long = 0x4000011b;
262pub const SYS_eventfd: c_long = 0x4000011c;
263pub const SYS_fallocate: c_long = 0x4000011d;
264pub const SYS_timerfd_settime: c_long = 0x4000011e;
265pub const SYS_timerfd_gettime: c_long = 0x4000011f;
266pub const SYS_accept4: c_long = 0x40000120;
267pub const SYS_signalfd4: c_long = 0x40000121;
268pub const SYS_eventfd2: c_long = 0x40000122;
269pub const SYS_epoll_create1: c_long = 0x40000123;
270pub const SYS_dup3: c_long = 0x40000124;
271pub const SYS_pipe2: c_long = 0x40000125;
272pub const SYS_inotify_init1: c_long = 0x40000126;
273pub const SYS_perf_event_open: c_long = 0x4000012a;
274pub const SYS_fanotify_init: c_long = 0x4000012c;
275pub const SYS_fanotify_mark: c_long = 0x4000012d;
276pub const SYS_prlimit64: c_long = 0x4000012e;
277pub const SYS_name_to_handle_at: c_long = 0x4000012f;
278pub const SYS_open_by_handle_at: c_long = 0x40000130;
279pub const SYS_clock_adjtime: c_long = 0x40000131;
280pub const SYS_syncfs: c_long = 0x40000132;
281pub const SYS_setns: c_long = 0x40000134;
282pub const SYS_getcpu: c_long = 0x40000135;
283pub const SYS_kcmp: c_long = 0x40000138;
284pub const SYS_finit_module: c_long = 0x40000139;
285pub const SYS_sched_setattr: c_long = 0x4000013a;
286pub const SYS_sched_getattr: c_long = 0x4000013b;
287pub const SYS_renameat2: c_long = 0x4000013c;
288pub const SYS_seccomp: c_long = 0x4000013d;
289pub const SYS_getrandom: c_long = 0x4000013e;
290pub const SYS_memfd_create: c_long = 0x4000013f;
291pub const SYS_kexec_file_load: c_long = 0x40000140;
292pub const SYS_bpf: c_long = 0x40000141;
293pub const SYS_userfaultfd: c_long = 0x40000143;
294pub const SYS_membarrier: c_long = 0x40000144;
295pub const SYS_mlock2: c_long = 0x40000145;
296pub const SYS_copy_file_range: c_long = 0x40000146;
297pub const SYS_pkey_mprotect: c_long = 0x40000149;
298pub const SYS_pkey_alloc: c_long = 0x4000014a;
299pub const SYS_pkey_free: c_long = 0x4000014b;
300pub const SYS_statx: c_long = 0x4000014c;
301pub const SYS_io_pgetevents: c_long = 0x4000014d;
302pub const SYS_rseq: c_long = 0x4000014e;
303pub const SYS_pidfd_send_signal: c_long = 0x400001a8;
304pub const SYS_io_uring_setup: c_long = 0x400001a9;
305pub const SYS_io_uring_enter: c_long = 0x400001aa;
306pub const SYS_io_uring_register: c_long = 0x400001ab;
307pub const SYS_open_tree: c_long = 0x400001ac;
308pub const SYS_move_mount: c_long = 0x400001ad;
309pub const SYS_fsopen: c_long = 0x400001ae;
310pub const SYS_fsconfig: c_long = 0x400001af;
311pub const SYS_fsmount: c_long = 0x400001b0;
312pub const SYS_fspick: c_long = 0x400001b1;
313pub const SYS_pidfd_open: c_long = 0x400001b2;
314pub const SYS_clone3: c_long = 0x400001b3;
315pub const SYS_close_range: c_long = 0x400001b4;
316pub const SYS_openat2: c_long = 0x400001b5;
317pub const SYS_pidfd_getfd: c_long = 0x400001b6;
318pub const SYS_faccessat2: c_long = 0x400001b7;
319pub const SYS_process_madvise: c_long = 0x400001b8;
320pub const SYS_epoll_pwait2: c_long = 0x400001b9;
321pub const SYS_mount_setattr: c_long = 0x400001ba;
322pub const SYS_landlock_create_ruleset: c_long = 0x400001bc;
323pub const SYS_landlock_add_rule: c_long = 0x400001bd;
324pub const SYS_landlock_restrict_self: c_long = 0x400001be;
325pub const SYS_memfd_secret: c_long = 0x400001bf;
326pub const SYS_process_mrelease: c_long = 0x400001c0;
327pub const SYS_futex_waitv: c_long = 0x400001c1;
328pub const SYS_set_mempolicy_home_node: c_long = 0x400001c2;
329pub const SYS_cachestat: c_long = 0x400001c3;
330pub const SYS_fchmodat2: c_long = 0x400001c4;
331pub const SYS_rt_sigaction: c_long = 0x40000200;
332pub const SYS_rt_sigreturn: c_long = 0x40000201;
333pub const SYS_ioctl: c_long = 0x40000202;
334pub const SYS_readv: c_long = 0x40000203;
335pub const SYS_writev: c_long = 0x40000204;
336pub const SYS_recvfrom: c_long = 0x40000205;
337pub const SYS_sendmsg: c_long = 0x40000206;
338pub const SYS_recvmsg: c_long = 0x40000207;
339pub const SYS_execve: c_long = 0x40000208;
340pub const SYS_ptrace: c_long = 0x40000209;
341pub const SYS_rt_sigpending: c_long = 0x4000020a;
342pub const SYS_rt_sigtimedwait: c_long = 0x4000020b;
343pub const SYS_rt_sigqueueinfo: c_long = 0x4000020c;
344pub const SYS_sigaltstack: c_long = 0x4000020d;
345pub const SYS_timer_create: c_long = 0x4000020e;
346pub const SYS_mq_notify: c_long = 0x4000020f;
347pub const SYS_kexec_load: c_long = 0x40000210;
348pub const SYS_waitid: c_long = 0x40000211;
349pub const SYS_set_robust_list: c_long = 0x40000212;
350pub const SYS_get_robust_list: c_long = 0x40000213;
351pub const SYS_vmsplice: c_long = 0x40000214;
352pub const SYS_move_pages: c_long = 0x40000215;
353pub const SYS_preadv: c_long = 0x40000216;
354pub const SYS_pwritev: c_long = 0x40000217;
355pub const SYS_rt_tgsigqueueinfo: c_long = 0x40000218;
356pub const SYS_recvmmsg: c_long = 0x40000219;
357pub const SYS_sendmmsg: c_long = 0x4000021a;
358pub const SYS_process_vm_readv: c_long = 0x4000021b;
359pub const SYS_process_vm_writev: c_long = 0x4000021c;
360pub const SYS_setsockopt: c_long = 0x4000021d;
361pub const SYS_getsockopt: c_long = 0x4000021e;
362pub const SYS_io_setup: c_long = 0x4000021f;
363pub const SYS_io_submit: c_long = 0x40000220;
364pub const SYS_execveat: c_long = 0x40000221;
365pub const SYS_preadv2: c_long = 0x40000222;
366pub const SYS_pwritev2: c_long = 0x40000223;
367
368/// Minimum valid system call number.
369pub(crate) const SYS_CALL_BASE_INDEX: c_long = 0x40000000;
370
371/// String table of system calls names.
372pub(crate) static SYS_CALL_NAME: &[&str] = &[
373    "read",
374    "write",
375    "open",
376    "close",
377    "stat",
378    "fstat",
379    "lstat",
380    "poll",
381    "lseek",
382    "mmap",
383    "mprotect",
384    "munmap",
385    "brk",
386    "",
387    "rt_sigprocmask",
388    "",
389    "",
390    "pread64",
391    "pwrite64",
392    "",
393    "",
394    "access",
395    "pipe",
396    "select",
397    "sched_yield",
398    "mremap",
399    "msync",
400    "mincore",
401    "madvise",
402    "shmget",
403    "shmat",
404    "shmctl",
405    "dup",
406    "dup2",
407    "pause",
408    "nanosleep",
409    "getitimer",
410    "alarm",
411    "setitimer",
412    "getpid",
413    "sendfile",
414    "socket",
415    "connect",
416    "accept",
417    "sendto",
418    "",
419    "",
420    "",
421    "shutdown",
422    "bind",
423    "listen",
424    "getsockname",
425    "getpeername",
426    "socketpair",
427    "",
428    "",
429    "clone",
430    "fork",
431    "vfork",
432    "",
433    "exit",
434    "wait4",
435    "kill",
436    "uname",
437    "semget",
438    "semop",
439    "semctl",
440    "shmdt",
441    "msgget",
442    "msgsnd",
443    "msgrcv",
444    "msgctl",
445    "fcntl",
446    "flock",
447    "fsync",
448    "fdatasync",
449    "truncate",
450    "ftruncate",
451    "getdents",
452    "getcwd",
453    "chdir",
454    "fchdir",
455    "rename",
456    "mkdir",
457    "rmdir",
458    "creat",
459    "link",
460    "unlink",
461    "symlink",
462    "readlink",
463    "chmod",
464    "fchmod",
465    "chown",
466    "fchown",
467    "lchown",
468    "umask",
469    "gettimeofday",
470    "getrlimit",
471    "getrusage",
472    "sysinfo",
473    "times",
474    "",
475    "getuid",
476    "syslog",
477    "getgid",
478    "setuid",
479    "setgid",
480    "geteuid",
481    "getegid",
482    "setpgid",
483    "getppid",
484    "getpgrp",
485    "setsid",
486    "setreuid",
487    "setregid",
488    "getgroups",
489    "setgroups",
490    "setresuid",
491    "getresuid",
492    "setresgid",
493    "getresgid",
494    "getpgid",
495    "setfsuid",
496    "setfsgid",
497    "getsid",
498    "capget",
499    "capset",
500    "",
501    "",
502    "",
503    "rt_sigsuspend",
504    "",
505    "utime",
506    "mknod",
507    "",
508    "personality",
509    "ustat",
510    "statfs",
511    "fstatfs",
512    "sysfs",
513    "getpriority",
514    "setpriority",
515    "sched_setparam",
516    "sched_getparam",
517    "sched_setscheduler",
518    "sched_getscheduler",
519    "sched_get_priority_max",
520    "sched_get_priority_min",
521    "sched_rr_get_interval",
522    "mlock",
523    "munlock",
524    "mlockall",
525    "munlockall",
526    "vhangup",
527    "modify_ldt",
528    "pivot_root",
529    "",
530    "prctl",
531    "arch_prctl",
532    "adjtimex",
533    "setrlimit",
534    "chroot",
535    "sync",
536    "acct",
537    "settimeofday",
538    "mount",
539    "umount2",
540    "swapon",
541    "swapoff",
542    "reboot",
543    "sethostname",
544    "setdomainname",
545    "iopl",
546    "ioperm",
547    "",
548    "init_module",
549    "delete_module",
550    "",
551    "",
552    "quotactl",
553    "",
554    "getpmsg",
555    "putpmsg",
556    "afs_syscall",
557    "tuxcall",
558    "security",
559    "gettid",
560    "readahead",
561    "setxattr",
562    "lsetxattr",
563    "fsetxattr",
564    "getxattr",
565    "lgetxattr",
566    "fgetxattr",
567    "listxattr",
568    "llistxattr",
569    "flistxattr",
570    "removexattr",
571    "lremovexattr",
572    "fremovexattr",
573    "tkill",
574    "time",
575    "futex",
576    "sched_setaffinity",
577    "sched_getaffinity",
578    "",
579    "",
580    "io_destroy",
581    "io_getevents",
582    "",
583    "io_cancel",
584    "",
585    "lookup_dcookie",
586    "epoll_create",
587    "",
588    "",
589    "remap_file_pages",
590    "getdents64",
591    "set_tid_address",
592    "restart_syscall",
593    "semtimedop",
594    "fadvise64",
595    "",
596    "timer_settime",
597    "timer_gettime",
598    "timer_getoverrun",
599    "timer_delete",
600    "clock_settime",
601    "clock_gettime",
602    "clock_getres",
603    "clock_nanosleep",
604    "exit_group",
605    "epoll_wait",
606    "epoll_ctl",
607    "tgkill",
608    "utimes",
609    "",
610    "mbind",
611    "set_mempolicy",
612    "get_mempolicy",
613    "mq_open",
614    "mq_unlink",
615    "mq_timedsend",
616    "mq_timedreceive",
617    "",
618    "mq_getsetattr",
619    "",
620    "",
621    "add_key",
622    "request_key",
623    "keyctl",
624    "ioprio_set",
625    "ioprio_get",
626    "inotify_init",
627    "inotify_add_watch",
628    "inotify_rm_watch",
629    "migrate_pages",
630    "openat",
631    "mkdirat",
632    "mknodat",
633    "fchownat",
634    "futimesat",
635    "newfstatat",
636    "unlinkat",
637    "renameat",
638    "linkat",
639    "symlinkat",
640    "readlinkat",
641    "fchmodat",
642    "faccessat",
643    "pselect6",
644    "ppoll",
645    "unshare",
646    "",
647    "",
648    "splice",
649    "tee",
650    "sync_file_range",
651    "",
652    "",
653    "utimensat",
654    "epoll_pwait",
655    "signalfd",
656    "timerfd_create",
657    "eventfd",
658    "fallocate",
659    "timerfd_settime",
660    "timerfd_gettime",
661    "accept4",
662    "signalfd4",
663    "eventfd2",
664    "epoll_create1",
665    "dup3",
666    "pipe2",
667    "inotify_init1",
668    "",
669    "",
670    "",
671    "perf_event_open",
672    "",
673    "fanotify_init",
674    "fanotify_mark",
675    "prlimit64",
676    "name_to_handle_at",
677    "open_by_handle_at",
678    "clock_adjtime",
679    "syncfs",
680    "",
681    "setns",
682    "getcpu",
683    "",
684    "",
685    "kcmp",
686    "finit_module",
687    "sched_setattr",
688    "sched_getattr",
689    "renameat2",
690    "seccomp",
691    "getrandom",
692    "memfd_create",
693    "kexec_file_load",
694    "bpf",
695    "",
696    "userfaultfd",
697    "membarrier",
698    "mlock2",
699    "copy_file_range",
700    "",
701    "",
702    "pkey_mprotect",
703    "pkey_alloc",
704    "pkey_free",
705    "statx",
706    "io_pgetevents",
707    "rseq",
708    "",
709    "",
710    "",
711    "",
712    "",
713    "",
714    "",
715    "",
716    "",
717    "",
718    "",
719    "",
720    "",
721    "",
722    "",
723    "",
724    "",
725    "",
726    "",
727    "",
728    "",
729    "",
730    "",
731    "",
732    "",
733    "",
734    "",
735    "",
736    "",
737    "",
738    "",
739    "",
740    "",
741    "",
742    "",
743    "",
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    "pidfd_send_signal",
798    "io_uring_setup",
799    "io_uring_enter",
800    "io_uring_register",
801    "open_tree",
802    "move_mount",
803    "fsopen",
804    "fsconfig",
805    "fsmount",
806    "fspick",
807    "pidfd_open",
808    "clone3",
809    "close_range",
810    "openat2",
811    "pidfd_getfd",
812    "faccessat2",
813    "process_madvise",
814    "epoll_pwait2",
815    "mount_setattr",
816    "",
817    "landlock_create_ruleset",
818    "landlock_add_rule",
819    "landlock_restrict_self",
820    "memfd_secret",
821    "process_mrelease",
822    "futex_waitv",
823    "set_mempolicy_home_node",
824    "cachestat",
825    "fchmodat2",
826    "",
827    "",
828    "",
829    "",
830    "",
831    "",
832    "",
833    "",
834    "",
835    "",
836    "",
837    "",
838    "",
839    "",
840    "",
841    "",
842    "",
843    "",
844    "",
845    "",
846    "",
847    "",
848    "",
849    "",
850    "",
851    "",
852    "",
853    "",
854    "",
855    "",
856    "",
857    "",
858    "",
859    "",
860    "",
861    "",
862    "",
863    "",
864    "",
865    "",
866    "",
867    "",
868    "",
869    "",
870    "",
871    "",
872    "",
873    "",
874    "",
875    "",
876    "",
877    "",
878    "",
879    "",
880    "",
881    "",
882    "",
883    "",
884    "",
885    "rt_sigaction",
886    "rt_sigreturn",
887    "ioctl",
888    "readv",
889    "writev",
890    "recvfrom",
891    "sendmsg",
892    "recvmsg",
893    "execve",
894    "ptrace",
895    "rt_sigpending",
896    "rt_sigtimedwait",
897    "rt_sigqueueinfo",
898    "sigaltstack",
899    "timer_create",
900    "mq_notify",
901    "kexec_load",
902    "waitid",
903    "set_robust_list",
904    "get_robust_list",
905    "vmsplice",
906    "move_pages",
907    "preadv",
908    "pwritev",
909    "rt_tgsigqueueinfo",
910    "recvmmsg",
911    "sendmmsg",
912    "process_vm_readv",
913    "process_vm_writev",
914    "setsockopt",
915    "getsockopt",
916    "io_setup",
917    "io_submit",
918    "execveat",
919    "preadv2",
920    "pwritev2",
921];