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