Skip to main content

syscall_numbers/
riscv32.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.
6#[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/// Returns the name of a system call, given its number.
12#[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_io_setup: c_long = 0x0;
18pub const SYS_io_destroy: c_long = 0x1;
19pub const SYS_io_submit: c_long = 0x2;
20pub const SYS_io_cancel: c_long = 0x3;
21pub const SYS_setxattr: c_long = 0x5;
22pub const SYS_lsetxattr: c_long = 0x6;
23pub const SYS_fsetxattr: c_long = 0x7;
24pub const SYS_getxattr: c_long = 0x8;
25pub const SYS_lgetxattr: c_long = 0x9;
26pub const SYS_fgetxattr: c_long = 0xa;
27pub const SYS_listxattr: c_long = 0xb;
28pub const SYS_llistxattr: c_long = 0xc;
29pub const SYS_flistxattr: c_long = 0xd;
30pub const SYS_removexattr: c_long = 0xe;
31pub const SYS_lremovexattr: c_long = 0xf;
32pub const SYS_fremovexattr: c_long = 0x10;
33pub const SYS_getcwd: c_long = 0x11;
34pub const SYS_lookup_dcookie: c_long = 0x12;
35pub const SYS_eventfd2: c_long = 0x13;
36pub const SYS_epoll_create1: c_long = 0x14;
37pub const SYS_epoll_ctl: c_long = 0x15;
38pub const SYS_epoll_pwait: c_long = 0x16;
39pub const SYS_dup: c_long = 0x17;
40pub const SYS_dup3: c_long = 0x18;
41pub const SYS_fcntl64: c_long = 0x19;
42pub const SYS_inotify_init1: c_long = 0x1a;
43pub const SYS_inotify_add_watch: c_long = 0x1b;
44pub const SYS_inotify_rm_watch: c_long = 0x1c;
45pub const SYS_ioctl: c_long = 0x1d;
46pub const SYS_ioprio_set: c_long = 0x1e;
47pub const SYS_ioprio_get: c_long = 0x1f;
48pub const SYS_flock: c_long = 0x20;
49pub const SYS_mknodat: c_long = 0x21;
50pub const SYS_mkdirat: c_long = 0x22;
51pub const SYS_unlinkat: c_long = 0x23;
52pub const SYS_symlinkat: c_long = 0x24;
53pub const SYS_linkat: c_long = 0x25;
54pub const SYS_umount2: c_long = 0x27;
55pub const SYS_mount: c_long = 0x28;
56pub const SYS_pivot_root: c_long = 0x29;
57pub const SYS_nfsservctl: c_long = 0x2a;
58pub const SYS_statfs64: c_long = 0x2b;
59pub const SYS_fstatfs64: c_long = 0x2c;
60pub const SYS_truncate64: c_long = 0x2d;
61pub const SYS_ftruncate64: c_long = 0x2e;
62pub const SYS_fallocate: c_long = 0x2f;
63pub const SYS_faccessat: c_long = 0x30;
64pub const SYS_chdir: c_long = 0x31;
65pub const SYS_fchdir: c_long = 0x32;
66pub const SYS_chroot: c_long = 0x33;
67pub const SYS_fchmod: c_long = 0x34;
68pub const SYS_fchmodat: c_long = 0x35;
69pub const SYS_fchownat: c_long = 0x36;
70pub const SYS_fchown: c_long = 0x37;
71pub const SYS_openat: c_long = 0x38;
72pub const SYS_close: c_long = 0x39;
73pub const SYS_vhangup: c_long = 0x3a;
74pub const SYS_pipe2: c_long = 0x3b;
75pub const SYS_quotactl: c_long = 0x3c;
76pub const SYS_getdents64: c_long = 0x3d;
77pub const SYS__llseek: c_long = 0x3e;
78pub const SYS_read: c_long = 0x3f;
79pub const SYS_write: c_long = 0x40;
80pub const SYS_readv: c_long = 0x41;
81pub const SYS_writev: c_long = 0x42;
82pub const SYS_pread64: c_long = 0x43;
83pub const SYS_pwrite64: c_long = 0x44;
84pub const SYS_preadv: c_long = 0x45;
85pub const SYS_pwritev: c_long = 0x46;
86pub const SYS_sendfile64: c_long = 0x47;
87pub const SYS_signalfd4: c_long = 0x4a;
88pub const SYS_vmsplice: c_long = 0x4b;
89pub const SYS_splice: c_long = 0x4c;
90pub const SYS_tee: c_long = 0x4d;
91pub const SYS_readlinkat: c_long = 0x4e;
92pub const SYS_sync: c_long = 0x51;
93pub const SYS_fsync: c_long = 0x52;
94pub const SYS_fdatasync: c_long = 0x53;
95pub const SYS_sync_file_range: c_long = 0x54;
96pub const SYS_timerfd_create: c_long = 0x55;
97pub const SYS_acct: c_long = 0x59;
98pub const SYS_capget: c_long = 0x5a;
99pub const SYS_capset: c_long = 0x5b;
100pub const SYS_personality: c_long = 0x5c;
101pub const SYS_exit: c_long = 0x5d;
102pub const SYS_exit_group: c_long = 0x5e;
103pub const SYS_waitid: c_long = 0x5f;
104pub const SYS_set_tid_address: c_long = 0x60;
105pub const SYS_unshare: c_long = 0x61;
106pub const SYS_set_robust_list: c_long = 0x63;
107pub const SYS_get_robust_list: c_long = 0x64;
108pub const SYS_nanosleep: c_long = 0x65;
109pub const SYS_getitimer: c_long = 0x66;
110pub const SYS_setitimer: c_long = 0x67;
111pub const SYS_kexec_load: c_long = 0x68;
112pub const SYS_init_module: c_long = 0x69;
113pub const SYS_delete_module: c_long = 0x6a;
114pub const SYS_timer_create: c_long = 0x6b;
115pub const SYS_timer_getoverrun: c_long = 0x6d;
116pub const SYS_timer_delete: c_long = 0x6f;
117pub const SYS_syslog: c_long = 0x74;
118pub const SYS_ptrace: c_long = 0x75;
119pub const SYS_sched_setparam: c_long = 0x76;
120pub const SYS_sched_setscheduler: c_long = 0x77;
121pub const SYS_sched_getscheduler: c_long = 0x78;
122pub const SYS_sched_getparam: c_long = 0x79;
123pub const SYS_sched_setaffinity: c_long = 0x7a;
124pub const SYS_sched_getaffinity: c_long = 0x7b;
125pub const SYS_sched_yield: c_long = 0x7c;
126pub const SYS_sched_get_priority_max: c_long = 0x7d;
127pub const SYS_sched_get_priority_min: c_long = 0x7e;
128pub const SYS_restart_syscall: c_long = 0x80;
129pub const SYS_kill: c_long = 0x81;
130pub const SYS_tkill: c_long = 0x82;
131pub const SYS_tgkill: c_long = 0x83;
132pub const SYS_sigaltstack: c_long = 0x84;
133pub const SYS_rt_sigsuspend: c_long = 0x85;
134pub const SYS_rt_sigaction: c_long = 0x86;
135pub const SYS_rt_sigprocmask: c_long = 0x87;
136pub const SYS_rt_sigpending: c_long = 0x88;
137pub const SYS_rt_sigqueueinfo: c_long = 0x8a;
138pub const SYS_rt_sigreturn: c_long = 0x8b;
139pub const SYS_setpriority: c_long = 0x8c;
140pub const SYS_getpriority: c_long = 0x8d;
141pub const SYS_reboot: c_long = 0x8e;
142pub const SYS_setregid: c_long = 0x8f;
143pub const SYS_setgid: c_long = 0x90;
144pub const SYS_setreuid: c_long = 0x91;
145pub const SYS_setuid: c_long = 0x92;
146pub const SYS_setresuid: c_long = 0x93;
147pub const SYS_getresuid: c_long = 0x94;
148pub const SYS_setresgid: c_long = 0x95;
149pub const SYS_getresgid: c_long = 0x96;
150pub const SYS_setfsuid: c_long = 0x97;
151pub const SYS_setfsgid: c_long = 0x98;
152pub const SYS_times: c_long = 0x99;
153pub const SYS_setpgid: c_long = 0x9a;
154pub const SYS_getpgid: c_long = 0x9b;
155pub const SYS_getsid: c_long = 0x9c;
156pub const SYS_setsid: c_long = 0x9d;
157pub const SYS_getgroups: c_long = 0x9e;
158pub const SYS_setgroups: c_long = 0x9f;
159pub const SYS_uname: c_long = 0xa0;
160pub const SYS_sethostname: c_long = 0xa1;
161pub const SYS_setdomainname: c_long = 0xa2;
162pub const SYS_getrusage: c_long = 0xa5;
163pub const SYS_umask: c_long = 0xa6;
164pub const SYS_prctl: c_long = 0xa7;
165pub const SYS_getcpu: c_long = 0xa8;
166pub const SYS_getpid: c_long = 0xac;
167pub const SYS_getppid: c_long = 0xad;
168pub const SYS_getuid: c_long = 0xae;
169pub const SYS_geteuid: c_long = 0xaf;
170pub const SYS_getgid: c_long = 0xb0;
171pub const SYS_getegid: c_long = 0xb1;
172pub const SYS_gettid: c_long = 0xb2;
173pub const SYS_sysinfo: c_long = 0xb3;
174pub const SYS_mq_open: c_long = 0xb4;
175pub const SYS_mq_unlink: c_long = 0xb5;
176pub const SYS_mq_notify: c_long = 0xb8;
177pub const SYS_mq_getsetattr: c_long = 0xb9;
178pub const SYS_msgget: c_long = 0xba;
179pub const SYS_msgctl: c_long = 0xbb;
180pub const SYS_msgrcv: c_long = 0xbc;
181pub const SYS_msgsnd: c_long = 0xbd;
182pub const SYS_semget: c_long = 0xbe;
183pub const SYS_semctl: c_long = 0xbf;
184pub const SYS_semop: c_long = 0xc1;
185pub const SYS_shmget: c_long = 0xc2;
186pub const SYS_shmctl: c_long = 0xc3;
187pub const SYS_shmat: c_long = 0xc4;
188pub const SYS_shmdt: c_long = 0xc5;
189pub const SYS_socket: c_long = 0xc6;
190pub const SYS_socketpair: c_long = 0xc7;
191pub const SYS_bind: c_long = 0xc8;
192pub const SYS_listen: c_long = 0xc9;
193pub const SYS_accept: c_long = 0xca;
194pub const SYS_connect: c_long = 0xcb;
195pub const SYS_getsockname: c_long = 0xcc;
196pub const SYS_getpeername: c_long = 0xcd;
197pub const SYS_sendto: c_long = 0xce;
198pub const SYS_recvfrom: c_long = 0xcf;
199pub const SYS_setsockopt: c_long = 0xd0;
200pub const SYS_getsockopt: c_long = 0xd1;
201pub const SYS_shutdown: c_long = 0xd2;
202pub const SYS_sendmsg: c_long = 0xd3;
203pub const SYS_recvmsg: c_long = 0xd4;
204pub const SYS_readahead: c_long = 0xd5;
205pub const SYS_brk: c_long = 0xd6;
206pub const SYS_munmap: c_long = 0xd7;
207pub const SYS_mremap: c_long = 0xd8;
208pub const SYS_add_key: c_long = 0xd9;
209pub const SYS_request_key: c_long = 0xda;
210pub const SYS_keyctl: c_long = 0xdb;
211pub const SYS_clone: c_long = 0xdc;
212pub const SYS_execve: c_long = 0xdd;
213pub const SYS_mmap2: c_long = 0xde;
214pub const SYS_fadvise64_64: c_long = 0xdf;
215pub const SYS_swapon: c_long = 0xe0;
216pub const SYS_swapoff: c_long = 0xe1;
217pub const SYS_mprotect: c_long = 0xe2;
218pub const SYS_msync: c_long = 0xe3;
219pub const SYS_mlock: c_long = 0xe4;
220pub const SYS_munlock: c_long = 0xe5;
221pub const SYS_mlockall: c_long = 0xe6;
222pub const SYS_munlockall: c_long = 0xe7;
223pub const SYS_mincore: c_long = 0xe8;
224pub const SYS_madvise: c_long = 0xe9;
225pub const SYS_remap_file_pages: c_long = 0xea;
226pub const SYS_mbind: c_long = 0xeb;
227pub const SYS_get_mempolicy: c_long = 0xec;
228pub const SYS_set_mempolicy: c_long = 0xed;
229pub const SYS_migrate_pages: c_long = 0xee;
230pub const SYS_move_pages: c_long = 0xef;
231pub const SYS_rt_tgsigqueueinfo: c_long = 0xf0;
232pub const SYS_perf_event_open: c_long = 0xf1;
233pub const SYS_accept4: c_long = 0xf2;
234pub const SYS_arch_specific_syscall: c_long = 0xf4;
235pub const SYS_prlimit64: c_long = 0x105;
236pub const SYS_fanotify_init: c_long = 0x106;
237pub const SYS_fanotify_mark: c_long = 0x107;
238pub const SYS_name_to_handle_at: c_long = 0x108;
239pub const SYS_open_by_handle_at: c_long = 0x109;
240pub const SYS_syncfs: c_long = 0x10b;
241pub const SYS_setns: c_long = 0x10c;
242pub const SYS_sendmmsg: c_long = 0x10d;
243pub const SYS_process_vm_readv: c_long = 0x10e;
244pub const SYS_process_vm_writev: c_long = 0x10f;
245pub const SYS_kcmp: c_long = 0x110;
246pub const SYS_finit_module: c_long = 0x111;
247pub const SYS_sched_setattr: c_long = 0x112;
248pub const SYS_sched_getattr: c_long = 0x113;
249pub const SYS_renameat2: c_long = 0x114;
250pub const SYS_seccomp: c_long = 0x115;
251pub const SYS_getrandom: c_long = 0x116;
252pub const SYS_memfd_create: c_long = 0x117;
253pub const SYS_bpf: c_long = 0x118;
254pub const SYS_execveat: c_long = 0x119;
255pub const SYS_userfaultfd: c_long = 0x11a;
256pub const SYS_membarrier: c_long = 0x11b;
257pub const SYS_mlock2: c_long = 0x11c;
258pub const SYS_copy_file_range: c_long = 0x11d;
259pub const SYS_preadv2: c_long = 0x11e;
260pub const SYS_pwritev2: c_long = 0x11f;
261pub const SYS_pkey_mprotect: c_long = 0x120;
262pub const SYS_pkey_alloc: c_long = 0x121;
263pub const SYS_pkey_free: c_long = 0x122;
264pub const SYS_statx: c_long = 0x123;
265pub const SYS_rseq: c_long = 0x125;
266pub const SYS_kexec_file_load: c_long = 0x126;
267pub const SYS_clock_gettime64: c_long = 0x193;
268pub const SYS_clock_settime64: c_long = 0x194;
269pub const SYS_clock_adjtime64: c_long = 0x195;
270pub const SYS_clock_getres_time64: c_long = 0x196;
271pub const SYS_clock_nanosleep_time64: c_long = 0x197;
272pub const SYS_timer_gettime64: c_long = 0x198;
273pub const SYS_timer_settime64: c_long = 0x199;
274pub const SYS_timerfd_gettime64: c_long = 0x19a;
275pub const SYS_timerfd_settime64: c_long = 0x19b;
276pub const SYS_utimensat_time64: c_long = 0x19c;
277pub const SYS_pselect6_time64: c_long = 0x19d;
278pub const SYS_ppoll_time64: c_long = 0x19e;
279pub const SYS_io_pgetevents_time64: c_long = 0x1a0;
280pub const SYS_recvmmsg_time64: c_long = 0x1a1;
281pub const SYS_mq_timedsend_time64: c_long = 0x1a2;
282pub const SYS_mq_timedreceive_time64: c_long = 0x1a3;
283pub const SYS_semtimedop_time64: c_long = 0x1a4;
284pub const SYS_rt_sigtimedwait_time64: c_long = 0x1a5;
285pub const SYS_futex_time64: c_long = 0x1a6;
286pub const SYS_sched_rr_get_interval_time64: c_long = 0x1a7;
287pub const SYS_pidfd_send_signal: c_long = 0x1a8;
288pub const SYS_io_uring_setup: c_long = 0x1a9;
289pub const SYS_io_uring_enter: c_long = 0x1aa;
290pub const SYS_io_uring_register: c_long = 0x1ab;
291pub const SYS_open_tree: c_long = 0x1ac;
292pub const SYS_move_mount: c_long = 0x1ad;
293pub const SYS_fsopen: c_long = 0x1ae;
294pub const SYS_fsconfig: c_long = 0x1af;
295pub const SYS_fsmount: c_long = 0x1b0;
296pub const SYS_fspick: c_long = 0x1b1;
297pub const SYS_pidfd_open: c_long = 0x1b2;
298pub const SYS_clone3: c_long = 0x1b3;
299pub const SYS_openat2: c_long = 0x1b5;
300pub const SYS_pidfd_getfd: c_long = 0x1b6;
301pub const SYS_faccessat2: c_long = 0x1b7;
302pub const SYS_process_madvise: c_long = 0x1b8;
303pub const SYS_epoll_pwait2: c_long = 0x1b9;
304pub const SYS_mount_setattr: c_long = 0x1ba;
305pub const SYS_landlock_create_ruleset: c_long = 0x1bc;
306pub const SYS_landlock_add_rule: c_long = 0x1bd;
307pub const SYS_landlock_restrict_self: c_long = 0x1be;
308pub const SYS_memfd_secret: c_long = 0x1bf;
309pub const SYS_process_mrelease: c_long = 0x1c0;
310pub const SYS_futex_waitv: c_long = 0x1c1;
311pub const SYS_set_mempolicy_home_node: c_long = 0x1c2;
312pub const SYS_cachestat: c_long = 0x1c3;
313pub const SYS_fchmodat2: c_long = 0x1c4;
314pub const SYS_map_shadow_stack: c_long = 0x1c5;
315pub const SYS_futex_wake: c_long = 0x1c6;
316pub const SYS_futex_wait: c_long = 0x1c7;
317pub const SYS_futex_requeue: c_long = 0x1c8;
318pub const SYS_statmount: c_long = 0x1c9;
319pub const SYS_listmount: c_long = 0x1ca;
320pub const SYS_lsm_get_self_attr: c_long = 0x1cb;
321pub const SYS_lsm_set_self_attr: c_long = 0x1cc;
322pub const SYS_lsm_list_modules: c_long = 0x1cd;
323pub const SYS_mseal: c_long = 0x1ce;
324pub const SYS_setxattrat: c_long = 0x1cf;
325pub const SYS_getxattrat: c_long = 0x1d0;
326pub const SYS_listxattrat: c_long = 0x1d1;
327pub const SYS_removexattrat: c_long = 0x1d2;
328pub const SYS_open_tree_attr: c_long = 0x1d3;
329pub const SYS_file_getattr: c_long = 0x1d4;
330pub const SYS_file_setattr: c_long = 0x1d5;
331pub const SYS_listns: c_long = 0x1d6;
332
333/// Minimum valid system call number.
334pub(crate) const SYS_CALL_BASE_INDEX: c_long = 0x0;
335
336/// String table of system calls names.
337pub(crate) static SYS_CALL_NAME: &[&str] = &[
338    "io_setup",
339    "io_destroy",
340    "io_submit",
341    "io_cancel",
342    "",
343    "setxattr",
344    "lsetxattr",
345    "fsetxattr",
346    "getxattr",
347    "lgetxattr",
348    "fgetxattr",
349    "listxattr",
350    "llistxattr",
351    "flistxattr",
352    "removexattr",
353    "lremovexattr",
354    "fremovexattr",
355    "getcwd",
356    "lookup_dcookie",
357    "eventfd2",
358    "epoll_create1",
359    "epoll_ctl",
360    "epoll_pwait",
361    "dup",
362    "dup3",
363    "fcntl64",
364    "inotify_init1",
365    "inotify_add_watch",
366    "inotify_rm_watch",
367    "ioctl",
368    "ioprio_set",
369    "ioprio_get",
370    "flock",
371    "mknodat",
372    "mkdirat",
373    "unlinkat",
374    "symlinkat",
375    "linkat",
376    "",
377    "umount2",
378    "mount",
379    "pivot_root",
380    "nfsservctl",
381    "statfs64",
382    "fstatfs64",
383    "truncate64",
384    "ftruncate64",
385    "fallocate",
386    "faccessat",
387    "chdir",
388    "fchdir",
389    "chroot",
390    "fchmod",
391    "fchmodat",
392    "fchownat",
393    "fchown",
394    "openat",
395    "close",
396    "vhangup",
397    "pipe2",
398    "quotactl",
399    "getdents64",
400    "_llseek",
401    "read",
402    "write",
403    "readv",
404    "writev",
405    "pread64",
406    "pwrite64",
407    "preadv",
408    "pwritev",
409    "sendfile64",
410    "",
411    "",
412    "signalfd4",
413    "vmsplice",
414    "splice",
415    "tee",
416    "readlinkat",
417    "",
418    "",
419    "sync",
420    "fsync",
421    "fdatasync",
422    "sync_file_range",
423    "timerfd_create",
424    "",
425    "",
426    "",
427    "acct",
428    "capget",
429    "capset",
430    "personality",
431    "exit",
432    "exit_group",
433    "waitid",
434    "set_tid_address",
435    "unshare",
436    "",
437    "set_robust_list",
438    "get_robust_list",
439    "nanosleep",
440    "getitimer",
441    "setitimer",
442    "kexec_load",
443    "init_module",
444    "delete_module",
445    "timer_create",
446    "",
447    "timer_getoverrun",
448    "",
449    "timer_delete",
450    "",
451    "",
452    "",
453    "",
454    "syslog",
455    "ptrace",
456    "sched_setparam",
457    "sched_setscheduler",
458    "sched_getscheduler",
459    "sched_getparam",
460    "sched_setaffinity",
461    "sched_getaffinity",
462    "sched_yield",
463    "sched_get_priority_max",
464    "sched_get_priority_min",
465    "",
466    "restart_syscall",
467    "kill",
468    "tkill",
469    "tgkill",
470    "sigaltstack",
471    "rt_sigsuspend",
472    "rt_sigaction",
473    "rt_sigprocmask",
474    "rt_sigpending",
475    "",
476    "rt_sigqueueinfo",
477    "rt_sigreturn",
478    "setpriority",
479    "getpriority",
480    "reboot",
481    "setregid",
482    "setgid",
483    "setreuid",
484    "setuid",
485    "setresuid",
486    "getresuid",
487    "setresgid",
488    "getresgid",
489    "setfsuid",
490    "setfsgid",
491    "times",
492    "setpgid",
493    "getpgid",
494    "getsid",
495    "setsid",
496    "getgroups",
497    "setgroups",
498    "uname",
499    "sethostname",
500    "setdomainname",
501    "",
502    "",
503    "getrusage",
504    "umask",
505    "prctl",
506    "getcpu",
507    "",
508    "",
509    "",
510    "getpid",
511    "getppid",
512    "getuid",
513    "geteuid",
514    "getgid",
515    "getegid",
516    "gettid",
517    "sysinfo",
518    "mq_open",
519    "mq_unlink",
520    "",
521    "",
522    "mq_notify",
523    "mq_getsetattr",
524    "msgget",
525    "msgctl",
526    "msgrcv",
527    "msgsnd",
528    "semget",
529    "semctl",
530    "",
531    "semop",
532    "shmget",
533    "shmctl",
534    "shmat",
535    "shmdt",
536    "socket",
537    "socketpair",
538    "bind",
539    "listen",
540    "accept",
541    "connect",
542    "getsockname",
543    "getpeername",
544    "sendto",
545    "recvfrom",
546    "setsockopt",
547    "getsockopt",
548    "shutdown",
549    "sendmsg",
550    "recvmsg",
551    "readahead",
552    "brk",
553    "munmap",
554    "mremap",
555    "add_key",
556    "request_key",
557    "keyctl",
558    "clone",
559    "execve",
560    "mmap2",
561    "fadvise64_64",
562    "swapon",
563    "swapoff",
564    "mprotect",
565    "msync",
566    "mlock",
567    "munlock",
568    "mlockall",
569    "munlockall",
570    "mincore",
571    "madvise",
572    "remap_file_pages",
573    "mbind",
574    "get_mempolicy",
575    "set_mempolicy",
576    "migrate_pages",
577    "move_pages",
578    "rt_tgsigqueueinfo",
579    "perf_event_open",
580    "accept4",
581    "",
582    "arch_specific_syscall",
583    "",
584    "",
585    "",
586    "",
587    "",
588    "",
589    "",
590    "",
591    "",
592    "",
593    "",
594    "",
595    "",
596    "",
597    "",
598    "",
599    "prlimit64",
600    "fanotify_init",
601    "fanotify_mark",
602    "name_to_handle_at",
603    "open_by_handle_at",
604    "",
605    "syncfs",
606    "setns",
607    "sendmmsg",
608    "process_vm_readv",
609    "process_vm_writev",
610    "kcmp",
611    "finit_module",
612    "sched_setattr",
613    "sched_getattr",
614    "renameat2",
615    "seccomp",
616    "getrandom",
617    "memfd_create",
618    "bpf",
619    "execveat",
620    "userfaultfd",
621    "membarrier",
622    "mlock2",
623    "copy_file_range",
624    "preadv2",
625    "pwritev2",
626    "pkey_mprotect",
627    "pkey_alloc",
628    "pkey_free",
629    "statx",
630    "",
631    "rseq",
632    "kexec_file_load",
633    "",
634    "",
635    "",
636    "",
637    "",
638    "",
639    "",
640    "",
641    "",
642    "",
643    "",
644    "",
645    "",
646    "",
647    "",
648    "",
649    "",
650    "",
651    "",
652    "",
653    "",
654    "",
655    "",
656    "",
657    "",
658    "",
659    "",
660    "",
661    "",
662    "",
663    "",
664    "",
665    "",
666    "",
667    "",
668    "",
669    "",
670    "",
671    "",
672    "",
673    "",
674    "",
675    "",
676    "",
677    "",
678    "",
679    "",
680    "",
681    "",
682    "",
683    "",
684    "",
685    "",
686    "",
687    "",
688    "",
689    "",
690    "",
691    "",
692    "",
693    "",
694    "",
695    "",
696    "",
697    "",
698    "",
699    "",
700    "",
701    "",
702    "",
703    "",
704    "",
705    "",
706    "",
707    "",
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    "clock_gettime64",
742    "clock_settime64",
743    "clock_adjtime64",
744    "clock_getres_time64",
745    "clock_nanosleep_time64",
746    "timer_gettime64",
747    "timer_settime64",
748    "timerfd_gettime64",
749    "timerfd_settime64",
750    "utimensat_time64",
751    "pselect6_time64",
752    "ppoll_time64",
753    "",
754    "io_pgetevents_time64",
755    "recvmmsg_time64",
756    "mq_timedsend_time64",
757    "mq_timedreceive_time64",
758    "semtimedop_time64",
759    "rt_sigtimedwait_time64",
760    "futex_time64",
761    "sched_rr_get_interval_time64",
762    "pidfd_send_signal",
763    "io_uring_setup",
764    "io_uring_enter",
765    "io_uring_register",
766    "open_tree",
767    "move_mount",
768    "fsopen",
769    "fsconfig",
770    "fsmount",
771    "fspick",
772    "pidfd_open",
773    "clone3",
774    "",
775    "openat2",
776    "pidfd_getfd",
777    "faccessat2",
778    "process_madvise",
779    "epoll_pwait2",
780    "mount_setattr",
781    "",
782    "landlock_create_ruleset",
783    "landlock_add_rule",
784    "landlock_restrict_self",
785    "memfd_secret",
786    "process_mrelease",
787    "futex_waitv",
788    "set_mempolicy_home_node",
789    "cachestat",
790    "fchmodat2",
791    "map_shadow_stack",
792    "futex_wake",
793    "futex_wait",
794    "futex_requeue",
795    "statmount",
796    "listmount",
797    "lsm_get_self_attr",
798    "lsm_set_self_attr",
799    "lsm_list_modules",
800    "mseal",
801    "setxattrat",
802    "getxattrat",
803    "listxattrat",
804    "removexattrat",
805    "open_tree_attr",
806    "file_getattr",
807    "file_setattr",
808    "listns",
809];