blob: 22b82f13dd7ff1eec38c36777e99355662cfe57b [file] [log] [blame]
Elliott Hughes5e522792013-09-24 00:30:25 -07001# This file is used to automatically generate bionic's system call stubs.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08002#
Elliott Hughes5e522792013-09-24 00:30:25 -07003# Each non-blank, non-comment line has the following format:
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08004#
H.J. Lu6fe4e872013-10-04 10:03:17 -07005# return_type func_name[|alias_list][:syscall_name[:socketcall_id]]([parameter_list]) arch_list
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08006#
Elliott Hughes5e522792013-09-24 00:30:25 -07007# where:
Elliott Hughes2b499042020-02-13 14:21:55 -08008# arch_list ::= "all" | arches
9# arches ::= arch | arch "," arches
10# arch ::= "arm" | "arm64" | "x86" | "x86_64" | "lp32" | "lp64"
Elliott Hughes5e522792013-09-24 00:30:25 -070011#
12# Note:
Elliott Hughesa51916b2013-04-03 10:08:09 -070013# - syscall_name corresponds to the name of the syscall, which may differ from
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080014# the exported function name (example: the exit syscall is implemented by the _exit()
15# function, which is not the same as the standard C exit() function which calls it)
Elliott Hughes5e522792013-09-24 00:30:25 -070016#
H.J. Lu6fe4e872013-10-04 10:03:17 -070017# - alias_list is optional comma separated list of function aliases.
18#
Elliott Hughes5e522792013-09-24 00:30:25 -070019# - The call_id parameter, given that func_name and syscall_name have
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080020# been provided, allows the user to specify dispatch style syscalls.
21# For example, socket() syscall on i386 actually becomes:
22# socketcall(__NR_socket, 1, *(rest of args on stack)).
23#
Elliott Hughes5e522792013-09-24 00:30:25 -070024# - Each parameter type is assumed to be stored in 32 bits.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080025#
Elliott Hughes782c4852019-04-16 12:31:00 -070026# This file is processed by a python script named gensyscalls.py, run via
27# genrules in Android.bp.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080028
Elliott Hughes5e522792013-09-24 00:30:25 -070029int execve(const char*, char* const*, char* const*) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080030
Elliott Hughes2b499042020-02-13 14:21:55 -080031uid_t getuid:getuid32() lp32
32uid_t getuid:getuid() lp64
33gid_t getgid:getgid32() lp32
34gid_t getgid:getgid() lp64
35uid_t geteuid:geteuid32() lp32
36uid_t geteuid:geteuid() lp64
37gid_t getegid:getegid32() lp32
38gid_t getegid:getegid() lp64
39uid_t getresuid:getresuid32(uid_t* ruid, uid_t* euid, uid_t* suid) lp32
40uid_t getresuid:getresuid(uid_t* ruid, uid_t* euid, uid_t* suid) lp64
41gid_t getresgid:getresgid32(gid_t* rgid, gid_t* egid, gid_t* sgid) lp32
42gid_t getresgid:getresgid(gid_t* rgid, gid_t* egid, gid_t* sgid) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -070043ssize_t readahead(int, off64_t, size_t) all
Elliott Hughes2b499042020-02-13 14:21:55 -080044int getgroups:getgroups32(int, gid_t*) lp32
45int getgroups:getgroups(int, gid_t*) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -070046pid_t getpgid(pid_t) all
47pid_t getppid() all
48pid_t getsid(pid_t) all
49pid_t setsid() all
Elliott Hughes2b499042020-02-13 14:21:55 -080050int setgid:setgid32(gid_t) lp32
51int setgid:setgid(gid_t) lp64
52int setuid:setuid32(uid_t) lp32
53int setuid:setuid(uid_t) lp64
54int setreuid:setreuid32(uid_t, uid_t) lp32
55int setreuid:setreuid(uid_t, uid_t) lp64
56int setresuid:setresuid32(uid_t, uid_t, uid_t) lp32
57int setresuid:setresuid(uid_t, uid_t, uid_t) lp64
58int setresgid:setresgid32(gid_t, gid_t, gid_t) lp32
59int setresgid:setresgid(gid_t, gid_t, gid_t) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -070060void* __brk:brk(void*) all
Christopher Ferrised459702013-12-02 17:44:53 -080061int kill(pid_t, int) all
Christopher Ferrised459702013-12-02 17:44:53 -080062int tgkill(pid_t tgid, pid_t tid, int sig) all
Elliott Hughes5e522792013-09-24 00:30:25 -070063int __ptrace:ptrace(int request, int pid, void* addr, void* data) all
Elliott Hughes0f461e32014-01-09 10:17:03 -080064
65# <sys/resource.h>
66int getrusage(int, struct rusage*) all
Elliott Hughes8f0e42f2016-11-29 15:10:29 -080067int __getpriority:getpriority(int, id_t) all
68int setpriority(int, id_t, int) all
Elliott Hughes0f461e32014-01-09 10:17:03 -080069# On LP64, rlimit and rlimit64 are the same.
70# On 32-bit systems we use prlimit64 to implement the rlimit64 functions.
Elliott Hughes2b499042020-02-13 14:21:55 -080071int getrlimit:ugetrlimit(int, struct rlimit*) lp32
Elliott Hughes8251d442018-11-09 13:55:21 -080072int getrlimit|getrlimit64(int, struct rlimit*) lp64
73int setrlimit(int, const struct rlimit*) lp32
74int setrlimit|setrlimit64(int, const struct rlimit*) lp64
75int prlimit64|prlimit(pid_t, int, struct rlimit64*, const struct rlimit64*) lp64
76int prlimit64(pid_t, int, struct rlimit64*, const struct rlimit64*) lp32
Elliott Hughes0f461e32014-01-09 10:17:03 -080077
Elliott Hughes2b499042020-02-13 14:21:55 -080078int setgroups:setgroups32(int, const gid_t*) lp32
79int setgroups:setgroups(int, const gid_t*) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -070080int setpgid(pid_t, pid_t) all
Elliott Hughes2b499042020-02-13 14:21:55 -080081int setregid:setregid32(gid_t, gid_t) lp32
82int setregid:setregid(gid_t, gid_t) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -070083int chroot(const char*) all
Elliott Hughes9c07aee2014-07-18 15:55:41 -070084int prctl(int, unsigned long, unsigned long, unsigned long, unsigned long) all
Elliott Hughes4906e562013-10-04 14:55:30 -070085long __arch_prctl:arch_prctl(int, unsigned long) x86_64
Elliott Hughes5e522792013-09-24 00:30:25 -070086int capget(cap_user_header_t header, cap_user_data_t data) all
87int capset(cap_user_header_t header, const cap_user_data_t data) all
88int sigaltstack(const stack_t*, stack_t*) all
89int acct(const char* filepath) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080090
91# file descriptors
Elliott Hughes5e522792013-09-24 00:30:25 -070092ssize_t read(int, void*, size_t) all
93ssize_t write(int, const void*, size_t) all
Elliott Hughes8251d442018-11-09 13:55:21 -080094ssize_t pread64(int, void*, size_t, off64_t) lp32
95ssize_t pread64|pread(int, void*, size_t, off_t) lp64
96ssize_t pwrite64(int, void*, size_t, off64_t) lp32
97ssize_t pwrite64|pwrite(int, void*, size_t, off_t) lp64
Elliott Hughes6f4594d2015-08-26 13:27:43 -070098
99# On LP32, preadv/pwritev don't use off64_t --- they use pairs of 32-bit
Elliott Hughescf59e192021-10-13 18:25:21 -0700100# arguments to avoid problems on architectures like arm32 where 64-bit arguments
Elliott Hughes6f4594d2015-08-26 13:27:43 -0700101# must be in a register pair starting with an even-numbered register.
102# See linux/fs/read_write.c and https://lwn.net/Articles/311630/.
Elliott Hughescf59e192021-10-13 18:25:21 -0700103# Note that there's an unused always-0 second long even on LP64!
104ssize_t __preadv64:preadv(int, const struct iovec*, int, long, long) all
105ssize_t __pwritev64:pwritev(int, const struct iovec*, int, long, long) all
106ssize_t __preadv64v2:preadv2(int, const struct iovec*, int, long, long, int) all
107ssize_t __pwritev64v2:pwritev2(int, const struct iovec*, int, long, long, int) all
Elliott Hughes6f4594d2015-08-26 13:27:43 -0700108
Elliott Hughes50080a22019-06-19 12:47:53 -0700109int __close:close(int) all
Elliott Hughes7086ad62014-06-19 16:39:01 -0700110pid_t __getpid:getpid() all
Elliott Hughes3d24d2b2019-08-05 13:53:01 -0700111int memfd_create(const char*, unsigned) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700112int munmap(void*, size_t) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700113void* __mremap:mremap(void*, size_t, size_t, int, void*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700114int msync(const void*, size_t, int) all
115int mprotect(const void*, size_t, int) all
Yabin Cuiefbb6fb2014-12-03 11:11:50 -0800116int madvise(void*, size_t, int) all
Elliott Hughes39899f52021-04-06 16:38:37 -0700117ssize_t process_madvise(int, const struct iovec*, size_t, int, unsigned int) all
Elliott Hughes3d24d2b2019-08-05 13:53:01 -0700118int mlock(const void* addr, size_t len) all
119int mlock2(const void* addr, size_t len, int flags) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700120int munlock(const void* addr, size_t len) all
121int mlockall(int flags) all
122int munlockall() all
123int mincore(void* start, size_t length, unsigned char* vec) all
124int __ioctl:ioctl(int, int, void*) all
Josh Gao753361a2016-11-29 14:26:15 -0800125ssize_t readv(int, const struct iovec*, int) all
126ssize_t writev(int, const struct iovec*, int) all
Elliott Hughes8251d442018-11-09 13:55:21 -0800127int __fcntl64:fcntl64(int, int, void*) lp32
Josh Gao97271922019-11-06 13:15:00 -0800128int __fcntl:fcntl(int, int, void*) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -0700129int flock(int, int) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700130int __fchmod:fchmod(int, mode_t) all
Josh Gao1fad5282020-04-29 17:00:13 -0700131int __pipe2:pipe2(int*, int) all
Josh Gao97271922019-11-06 13:15:00 -0800132int __dup:dup(int) all
133int __dup3:dup3(int, int, int) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700134int fsync(int) all
135int fdatasync(int) all
Elliott Hughes2b499042020-02-13 14:21:55 -0800136int fchown:fchown32(int, uid_t, gid_t) lp32
137int fchown:fchown(int, uid_t, gid_t) lp64
Elliott Hughes5e522792013-09-24 00:30:25 -0700138void sync(void) all
Elliott Hughes896362e2017-08-24 16:31:49 -0700139int syncfs(int) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700140int __fsetxattr:fsetxattr(int, const char*, const void*, size_t, int) all
141ssize_t __fgetxattr:fgetxattr(int, const char*, void*, size_t) all
142ssize_t __flistxattr:flistxattr(int, char*, size_t) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700143int fremovexattr(int, const char*) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800144
Elliott Hughes2b499042020-02-13 14:21:55 -0800145int __getdents64:getdents64(unsigned int, struct dirent*, unsigned int) all
Chris Dearman50432122014-02-05 16:59:23 -0800146
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700147int __openat:openat(int, const char*, int, mode_t) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700148int __faccessat:faccessat(int, const char*, int) all
149int __fchmodat:fchmodat(int, const char*, mode_t) all
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700150int fchownat(int, const char*, uid_t, gid_t, int) all
Elliott Hughes8251d442018-11-09 13:55:21 -0800151int fstatat64|fstatat:fstatat64(int, const char*, struct stat*, int) lp32
Elliott Hughesde1cf852021-09-07 09:17:14 -0700152int fstatat64|fstatat:newfstatat(int, const char*, struct stat*, int) lp64
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700153int linkat(int, const char*, int, const char*, int) all
154int mkdirat(int, const char*, mode_t) all
155int mknodat(int, const char*, mode_t, dev_t) all
156int readlinkat(int, const char*, char*, size_t) all
157int renameat(int, const char*, int, const char*) all
Elliott Hughes05b675e2019-04-17 13:01:06 -0700158int renameat2(int, const char*, int, const char*, unsigned) all
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700159int symlinkat(const char*, int, const char*) all
160int unlinkat(int, const char*, int) all
161int utimensat(int, const char*, const struct timespec times[2], int) all
162
Elliott Hughesa6519d62013-10-17 16:56:40 -0700163# Paired off_t/off64_t system calls. On 64-bit systems,
164# sizeof(off_t) == sizeof(off64_t), so there we emit two symbols that are
165# aliases. On 32-bit systems, we have two different system calls.
166# That means that every system call in this section should take three lines.
Elliott Hughes8251d442018-11-09 13:55:21 -0800167off_t lseek(int, off_t, int) lp32
168int __llseek:_llseek(int, unsigned long, unsigned long, off64_t*, int) lp32
169off_t lseek|lseek64(int, off_t, int) lp64
170int ftruncate64(int, off64_t) lp32
171int ftruncate|ftruncate64(int, off_t) lp64
172ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count) lp32
173ssize_t sendfile64(int out_fd, int in_fd, off64_t* offset, size_t count) lp32
174ssize_t sendfile|sendfile64(int out_fd, int in_fd, off_t* offset, size_t count) lp64
175int truncate(const char*, off_t) lp32
176int truncate64(const char*, off64_t) lp32
177int truncate|truncate64(const char*, off_t) lp64
Serban Constantinescued76a932013-12-12 09:36:27 +0000178# (mmap only gets two lines because we only used the 64-bit variant on 32-bit systems.)
Elliott Hughes8251d442018-11-09 13:55:21 -0800179void* __mmap2:mmap2(void*, size_t, int, int, int, long) lp32
180void* mmap|mmap64(void*, size_t, int, int, int, off_t) lp64
Elliott Hughesf64b8ea2014-02-03 16:20:46 -0800181# (fallocate only gets two lines because there is no 32-bit variant.)
Elliott Hughes8251d442018-11-09 13:55:21 -0800182int fallocate64:fallocate(int, int, off64_t, off64_t) lp32
183int fallocate|fallocate64(int, int, off_t, off_t) lp64
Elliott Hughesa6519d62013-10-17 16:56:40 -0700184
Elliott Hughesb587f332014-09-10 17:39:00 -0700185# posix_fadvise64 is awkward: arm has shuffled arguments,
186# the POSIX functions don't set errno, and no architecture has posix_fadvise.
187int __arm_fadvise64_64:arm_fadvise64_64(int, int, off64_t, off64_t) arm
Elliott Hughes9990b392014-09-11 10:10:08 -0700188int __fadvise64:fadvise64_64(int, off64_t, off64_t, int) x86
Elliott Hughes2b499042020-02-13 14:21:55 -0800189int __fadvise64:fadvise64(int, off64_t, off64_t, int) lp64
Elliott Hughesb587f332014-09-10 17:39:00 -0700190
Elliott Hughes8251d442018-11-09 13:55:21 -0800191int __fstatfs64:fstatfs64(int, size_t, struct statfs*) lp32
192int __fstatfs:fstatfs(int, struct statfs*) lp64
193int __statfs64:statfs64(const char*, size_t, struct statfs*) lp32
194int __statfs:statfs(const char*, struct statfs*) lp64
Elliott Hughesdb1ea342014-01-17 18:42:49 -0800195
Elliott Hughesde1cf852021-09-07 09:17:14 -0700196int fstat64|fstat:fstat64(int, struct stat*) lp32
197int fstat64|fstat:fstat(int, struct stat*) lp64
Elliott Hughesdb1ea342014-01-17 18:42:49 -0800198
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800199# file system
Elliott Hughes5e522792013-09-24 00:30:25 -0700200int chdir(const char*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700201int mount(const char*, const char*, const char*, unsigned long, const void*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700202int umount2(const char*, int) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700203int __getcwd:getcwd(char* buf, size_t size) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700204int fchdir(int) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700205int setxattr(const char*, const char*, const void*, size_t, int) all
206int lsetxattr(const char*, const char*, const void*, size_t, int) all
207ssize_t getxattr(const char*, const char*, void*, size_t) all
208ssize_t lgetxattr(const char*, const char*, void*, size_t) all
209ssize_t listxattr(const char*, char*, size_t) all
210ssize_t llistxattr(const char*, char*, size_t) all
211int removexattr(const char*, const char*) all
212int lremovexattr(const char*, const char*) all
Elliott Hughes733cedd2020-02-21 23:21:28 -0800213int statx(int, const char*, int, unsigned, struct statx*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700214int swapon(const char*, int) all
215int swapoff(const char*) all
Stephen Smalley5eb686d2012-01-13 07:45:16 -0500216
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800217# time
Elliott Hughes5e522792013-09-24 00:30:25 -0700218int settimeofday(const struct timeval*, const struct timezone*) all
219clock_t times(struct tms*) all
220int nanosleep(const struct timespec*, struct timespec*) all
Haruki Hasegawa18160252014-10-13 00:50:47 +0900221int clock_settime(clockid_t, const struct timespec*) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700222int __clock_nanosleep:clock_nanosleep(clockid_t, int, const struct timespec*, struct timespec*) all
Elliott Hughes51d158f2020-01-06 14:29:06 -0800223int getitimer(int, struct itimerval*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700224int setitimer(int, const struct itimerval*, struct itimerval*) all
Elliott Hughes4b558f52014-03-04 15:58:02 -0800225int __timer_create:timer_create(clockid_t clockid, struct sigevent* evp, __kernel_timer_t* timerid) all
226int __timer_settime:timer_settime(__kernel_timer_t, int, const struct itimerspec*, struct itimerspec*) all
227int __timer_gettime:timer_gettime(__kernel_timer_t, struct itimerspec*) all
228int __timer_getoverrun:timer_getoverrun(__kernel_timer_t) all
229int __timer_delete:timer_delete(__kernel_timer_t) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700230int timerfd_create(clockid_t, int) all
231int timerfd_settime(int, int, const struct itimerspec*, struct itimerspec*) all
232int timerfd_gettime(int, struct itimerspec*) all
Greg Hackmann3f3f6c52016-01-27 17:13:51 -0800233int adjtimex(struct timex*) all
Elliott Hughes5f26c6b2016-02-03 13:19:10 -0800234int clock_adjtime(clockid_t, struct timex*) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800235
236# signals
Elliott Hughes8251d442018-11-09 13:55:21 -0800237int __sigaction:sigaction(int, const struct sigaction*, struct sigaction*) lp32
Elliott Hughes1f5af922013-10-15 18:01:56 -0700238int __rt_sigaction:rt_sigaction(int, const struct sigaction*, struct sigaction*, size_t) all
Elliott Hughes5905d6f2018-01-30 15:09:51 -0800239int __rt_sigpending:rt_sigpending(sigset64_t*, size_t) all
240int __rt_sigprocmask:rt_sigprocmask(int, const sigset64_t*, sigset64_t*, size_t) all
241int __rt_sigsuspend:rt_sigsuspend(const sigset64_t*, size_t) all
242int __rt_sigtimedwait:rt_sigtimedwait(const sigset64_t*, siginfo_t*, const timespec*, size_t) all
Elliott Hughes50080a22019-06-19 12:47:53 -0700243int __rt_sigqueueinfo:rt_sigqueueinfo(pid_t, int, siginfo_t*) all
Elliott Hughes5905d6f2018-01-30 15:09:51 -0800244int __signalfd4:signalfd4(int, const sigset64_t*, size_t, int) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800245
246# sockets
Elliott Hughes2b499042020-02-13 14:21:55 -0800247int __socket:socket(int, int, int) arm,lp64
Josh Gaob107eab2020-04-29 17:17:56 -0700248int __socketpair:socketpair(int, int, int, int*) arm,lp64
Bram Bonnébca8a442021-04-08 09:34:36 +0000249int bind(int, struct sockaddr*, socklen_t) arm,lp64
Elliott Hughes2b499042020-02-13 14:21:55 -0800250int __connect:connect(int, struct sockaddr*, socklen_t) arm,lp64
251int listen(int, int) arm,lp64
252int __accept4:accept4(int, struct sockaddr*, socklen_t*, int) arm,lp64
253int getsockname(int, struct sockaddr*, socklen_t*) arm,lp64
254int getpeername(int, struct sockaddr*, socklen_t*) arm,lp64
255ssize_t __sendto:sendto(int, const void*, size_t, int, const struct sockaddr*, socklen_t) arm,lp64
256ssize_t recvfrom(int, void*, size_t, unsigned int, struct sockaddr*, socklen_t*) arm,lp64
257int shutdown(int, int) arm,lp64
258int setsockopt(int, int, int, const void*, socklen_t) arm,lp64
259int getsockopt(int, int, int, void*, socklen_t*) arm,lp64
260ssize_t __recvmsg:recvmsg(int, struct msghdr*, unsigned int) arm,lp64
261ssize_t __sendmsg:sendmsg(int, const struct msghdr*, unsigned int) arm,lp64
262int __recvmmsg:recvmmsg(int, struct mmsghdr*, unsigned int, int, const struct timespec*) arm,lp64
263int __sendmmsg:sendmmsg(int, struct mmsghdr*, unsigned int, int) arm,lp64
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800264
265# sockets for x86. These are done as an "indexed" call to socketcall syscall.
Sreeram Ramachandran903b7882014-05-19 13:39:57 -0700266int __socket:socketcall:1(int, int, int) x86
Bram Bonnébca8a442021-04-08 09:34:36 +0000267int bind:socketcall:2(int, struct sockaddr*, int) x86
Sreeram Ramachandranceb5bd72014-05-12 11:19:16 -0700268int __connect:socketcall:3(int, struct sockaddr*, socklen_t) x86
Elliott Hughes5e522792013-09-24 00:30:25 -0700269int listen:socketcall:4(int, int) x86
Elliott Hughes5e522792013-09-24 00:30:25 -0700270int getsockname:socketcall:6(int, struct sockaddr*, socklen_t*) x86
271int getpeername:socketcall:7(int, struct sockaddr*, socklen_t*) x86
Josh Gaob107eab2020-04-29 17:17:56 -0700272int __socketpair:socketcall:8(int, int, int, int*) x86
Elliott Hughes51d158f2020-01-06 14:29:06 -0800273ssize_t __sendto:socketcall:11(int, const void*, size_t, int, const struct sockaddr*, socklen_t) x86
274ssize_t recvfrom:socketcall:12(int, void*, size_t, unsigned int, struct sockaddr*, socklen_t*) x86
Elliott Hughes5e522792013-09-24 00:30:25 -0700275int shutdown:socketcall:13(int, int) x86
276int setsockopt:socketcall:14(int, int, int, const void*, socklen_t) x86
277int getsockopt:socketcall:15(int, int, int, void*, socklen_t*) x86
Elliott Hughes5c6a3f92019-06-13 14:24:45 -0700278int __sendmsg:socketcall:16(int, const struct msghdr*, unsigned int) x86
Josh Gao97271922019-11-06 13:15:00 -0800279int __recvmsg:socketcall:17(int, struct msghdr*, unsigned int) x86
Sreeram Ramachandran903b7882014-05-19 13:39:57 -0700280int __accept4:socketcall:18(int, struct sockaddr*, socklen_t*, int) x86
Josh Gao97271922019-11-06 13:15:00 -0800281int __recvmmsg:socketcall:19(int, struct mmsghdr*, unsigned int, int, const struct timespec*) x86
Elliott Hughes5c6a3f92019-06-13 14:24:45 -0700282int __sendmmsg:socketcall:20(int, struct mmsghdr*, unsigned int, int) x86
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800283
284# scheduler & real-time
Elliott Hughes5e522792013-09-24 00:30:25 -0700285int sched_setscheduler(pid_t pid, int policy, const struct sched_param* param) all
286int sched_getscheduler(pid_t pid) all
287int sched_yield(void) all
288int sched_setparam(pid_t pid, const struct sched_param* param) all
289int sched_getparam(pid_t pid, struct sched_param* param) all
290int sched_get_priority_max(int policy) all
291int sched_get_priority_min(int policy) all
292int sched_rr_get_interval(pid_t pid, struct timespec* interval) all
293int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set) all
Elliott Hughes887e1142014-01-02 12:05:50 -0800294int setns(int, int) all
295int unshare(int) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700296int __sched_getaffinity:sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set) all
Elliott Hughes887e1142014-01-02 12:05:50 -0800297int __getcpu:getcpu(unsigned*, unsigned*, void*) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800298
299# other
Elliott Hughes5e522792013-09-24 00:30:25 -0700300int uname(struct utsname*) all
301mode_t umask(mode_t) all
Elliott Hughes1f5af922013-10-15 18:01:56 -0700302int __reboot:reboot(int, int, int, void*) all
Elliott Hughes5e522792013-09-24 00:30:25 -0700303int init_module(void*, unsigned long, const char*) all
304int delete_module(const char*, unsigned int) all
305int klogctl:syslog(int, char*, int) all
306int sysinfo(struct sysinfo*) all
307int personality(unsigned long) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800308
Elliott Hughes3f525d42014-06-24 16:32:01 -0700309ssize_t tee(int, int, size_t, unsigned int) all
310ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int) all
311ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int) all
312
Josh Gaoa38331d2020-04-29 17:06:14 -0700313int __epoll_create1:epoll_create1(int) all
Elliott Hughescac7b9d2013-10-23 09:48:29 -0700314int epoll_ctl(int, int op, int, struct epoll_event*) all
Elliott Hughes5905d6f2018-01-30 15:09:51 -0800315int __epoll_pwait:epoll_pwait(int, struct epoll_event*, int, int, const sigset64_t*, size_t) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800316
Josh Gao7de41242020-04-29 17:08:46 -0700317int __eventfd:eventfd2(unsigned int, int) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800318
Elliott Hughes9f525642014-04-08 17:14:01 -0700319void _exit|_Exit:exit_group(int) all
Elliott Hughes6b53c232013-10-24 22:36:58 -0700320void __exit:exit(int) all
321
Elliott Hughescac7b9d2013-10-23 09:48:29 -0700322int inotify_init1(int) all
323int inotify_add_watch(int, const char*, unsigned int) all
324int inotify_rm_watch(int, unsigned int) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800325
Elliott Hughes11952072013-10-24 15:15:14 -0700326int __pselect6:pselect6(int, fd_set*, fd_set*, fd_set*, timespec*, void*) all
Elliott Hughes5905d6f2018-01-30 15:09:51 -0800327int __ppoll:ppoll(pollfd*, unsigned int, timespec*, const sigset64_t*, size_t) all
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800328
Elliott Hughesbe57a402015-06-10 17:24:20 -0700329ssize_t process_vm_readv(pid_t, const struct iovec*, unsigned long, const struct iovec*, unsigned long, unsigned long) all
330ssize_t process_vm_writev(pid_t, const struct iovec*, unsigned long, const struct iovec*, unsigned long, unsigned long) all
331
Elliott Hugheseafad492016-04-05 23:01:42 -0700332int quotactl(int, const char*, int, char*) all
333
Elliott Hughes36d61882013-11-19 13:31:58 -0800334int __set_tid_address:set_tid_address(int*) all
335
Elliott Hughes79310992014-07-30 15:05:09 -0700336int setfsgid(gid_t) all
337int setfsuid(uid_t) all
338
Greg Hackmanne2faf072016-03-03 08:37:53 -0800339int setdomainname(const char*, size_t) all
Elliott Hughesb86a4c72014-11-07 16:07:13 -0800340int sethostname(const char*, size_t) all
341
Elliott Hughesde1cf852021-09-07 09:17:14 -0700342int __sync_file_range:sync_file_range(int, off64_t, off64_t, unsigned int) x86,lp64
Elliott Hughes7f72ad42016-04-05 11:56:03 -0700343int __sync_file_range2:sync_file_range2(int, unsigned int, off64_t, off64_t) arm
344
Elliott Hughes6b53c232013-10-24 22:36:58 -0700345pid_t wait4(pid_t, int*, int, struct rusage*) all
Elliott Hughes51d158f2020-01-06 14:29:06 -0800346int __waitid:waitid(int, pid_t, siginfo_t*, int, void*) all
Elliott Hughes6b53c232013-10-24 22:36:58 -0700347
Elliott Hughesa6519d62013-10-17 16:56:40 -0700348# ARM-specific
Elliott Hughes5e522792013-09-24 00:30:25 -0700349int __set_tls:__ARM_NR_set_tls(void*) arm
350int cacheflush:__ARM_NR_cacheflush(long start, long end, long flags) arm
Raghu Gandham1fa0d842012-01-27 17:51:42 -0800351
Elliott Hughesdcbef062014-05-12 16:11:06 -0700352# x86-specific
353int __set_thread_area:set_thread_area(void*) x86
Elliott Hughes625993d2014-07-15 16:53:13 -0700354
355# vdso stuff.
Elliott Hughes21809782017-12-11 11:40:40 -0800356int __clock_getres:clock_getres(clockid_t, struct timespec*) all
Elliott Hughes51d158f2020-01-06 14:29:06 -0800357int __clock_gettime:clock_gettime(clockid_t, struct timespec*) all
358int __gettimeofday:gettimeofday(struct timeval*, struct timezone*) all
Elliott Hughes8465e962017-09-27 16:33:35 -0700359
360# <sys/random.h>
361ssize_t getrandom(void*, size_t, unsigned) all
Josh Gao3de19152021-02-22 18:09:48 -0800362
363# <sys/pidfd.h>
364int __pidfd_open:pidfd_open(pid_t, unsigned int) all
365int __pidfd_getfd:pidfd_getfd(int, int, unsigned int) all
366int pidfd_send_signal(int, int, siginfo_t*, unsigned int) all