Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 1 | # This file is used to automatically generate bionic's system call stubs. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 2 | # |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 3 | # Each non-blank, non-comment line has the following format: |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 4 | # |
H.J. Lu | 6fe4e87 | 2013-10-04 10:03:17 -0700 | [diff] [blame] | 5 | # return_type func_name[|alias_list][:syscall_name[:socketcall_id]]([parameter_list]) arch_list |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 6 | # |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 7 | # where: |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 8 | # arch_list ::= "all" | arches |
| 9 | # arches ::= arch | arch "," arches |
| 10 | # arch ::= "arm" | "arm64" | "x86" | "x86_64" | "lp32" | "lp64" |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 11 | # |
| 12 | # Note: |
Elliott Hughes | a51916b | 2013-04-03 10:08:09 -0700 | [diff] [blame] | 13 | # - syscall_name corresponds to the name of the syscall, which may differ from |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 14 | # 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 Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 16 | # |
H.J. Lu | 6fe4e87 | 2013-10-04 10:03:17 -0700 | [diff] [blame] | 17 | # - alias_list is optional comma separated list of function aliases. |
| 18 | # |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 19 | # - The call_id parameter, given that func_name and syscall_name have |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 20 | # 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 Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 24 | # - Each parameter type is assumed to be stored in 32 bits. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 25 | # |
Elliott Hughes | 782c485 | 2019-04-16 12:31:00 -0700 | [diff] [blame] | 26 | # This file is processed by a python script named gensyscalls.py, run via |
| 27 | # genrules in Android.bp. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 28 | |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 29 | int execve(const char*, char* const*, char* const*) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 30 | |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 31 | uid_t getuid:getuid32() lp32 |
| 32 | uid_t getuid:getuid() lp64 |
| 33 | gid_t getgid:getgid32() lp32 |
| 34 | gid_t getgid:getgid() lp64 |
| 35 | uid_t geteuid:geteuid32() lp32 |
| 36 | uid_t geteuid:geteuid() lp64 |
| 37 | gid_t getegid:getegid32() lp32 |
| 38 | gid_t getegid:getegid() lp64 |
| 39 | uid_t getresuid:getresuid32(uid_t* ruid, uid_t* euid, uid_t* suid) lp32 |
| 40 | uid_t getresuid:getresuid(uid_t* ruid, uid_t* euid, uid_t* suid) lp64 |
| 41 | gid_t getresgid:getresgid32(gid_t* rgid, gid_t* egid, gid_t* sgid) lp32 |
| 42 | gid_t getresgid:getresgid(gid_t* rgid, gid_t* egid, gid_t* sgid) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 43 | ssize_t readahead(int, off64_t, size_t) all |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 44 | int getgroups:getgroups32(int, gid_t*) lp32 |
| 45 | int getgroups:getgroups(int, gid_t*) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 46 | pid_t getpgid(pid_t) all |
| 47 | pid_t getppid() all |
| 48 | pid_t getsid(pid_t) all |
| 49 | pid_t setsid() all |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 50 | int setgid:setgid32(gid_t) lp32 |
| 51 | int setgid:setgid(gid_t) lp64 |
| 52 | int setuid:setuid32(uid_t) lp32 |
| 53 | int setuid:setuid(uid_t) lp64 |
| 54 | int setreuid:setreuid32(uid_t, uid_t) lp32 |
| 55 | int setreuid:setreuid(uid_t, uid_t) lp64 |
| 56 | int setresuid:setresuid32(uid_t, uid_t, uid_t) lp32 |
| 57 | int setresuid:setresuid(uid_t, uid_t, uid_t) lp64 |
| 58 | int setresgid:setresgid32(gid_t, gid_t, gid_t) lp32 |
| 59 | int setresgid:setresgid(gid_t, gid_t, gid_t) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 60 | void* __brk:brk(void*) all |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 61 | int kill(pid_t, int) all |
Christopher Ferris | ed45970 | 2013-12-02 17:44:53 -0800 | [diff] [blame] | 62 | int tgkill(pid_t tgid, pid_t tid, int sig) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 63 | int __ptrace:ptrace(int request, int pid, void* addr, void* data) all |
Elliott Hughes | 0f461e3 | 2014-01-09 10:17:03 -0800 | [diff] [blame] | 64 | |
| 65 | # <sys/resource.h> |
| 66 | int getrusage(int, struct rusage*) all |
Elliott Hughes | 8f0e42f | 2016-11-29 15:10:29 -0800 | [diff] [blame] | 67 | int __getpriority:getpriority(int, id_t) all |
| 68 | int setpriority(int, id_t, int) all |
Elliott Hughes | 0f461e3 | 2014-01-09 10:17:03 -0800 | [diff] [blame] | 69 | # On LP64, rlimit and rlimit64 are the same. |
| 70 | # On 32-bit systems we use prlimit64 to implement the rlimit64 functions. |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 71 | int getrlimit:ugetrlimit(int, struct rlimit*) lp32 |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 72 | int getrlimit|getrlimit64(int, struct rlimit*) lp64 |
| 73 | int setrlimit(int, const struct rlimit*) lp32 |
| 74 | int setrlimit|setrlimit64(int, const struct rlimit*) lp64 |
| 75 | int prlimit64|prlimit(pid_t, int, struct rlimit64*, const struct rlimit64*) lp64 |
| 76 | int prlimit64(pid_t, int, struct rlimit64*, const struct rlimit64*) lp32 |
Elliott Hughes | 0f461e3 | 2014-01-09 10:17:03 -0800 | [diff] [blame] | 77 | |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 78 | int setgroups:setgroups32(int, const gid_t*) lp32 |
| 79 | int setgroups:setgroups(int, const gid_t*) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 80 | int setpgid(pid_t, pid_t) all |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 81 | int setregid:setregid32(gid_t, gid_t) lp32 |
| 82 | int setregid:setregid(gid_t, gid_t) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 83 | int chroot(const char*) all |
Elliott Hughes | 9c07aee | 2014-07-18 15:55:41 -0700 | [diff] [blame] | 84 | int prctl(int, unsigned long, unsigned long, unsigned long, unsigned long) all |
Elliott Hughes | 4906e56 | 2013-10-04 14:55:30 -0700 | [diff] [blame] | 85 | long __arch_prctl:arch_prctl(int, unsigned long) x86_64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 86 | int capget(cap_user_header_t header, cap_user_data_t data) all |
| 87 | int capset(cap_user_header_t header, const cap_user_data_t data) all |
| 88 | int sigaltstack(const stack_t*, stack_t*) all |
| 89 | int acct(const char* filepath) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 90 | |
| 91 | # file descriptors |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 92 | ssize_t read(int, void*, size_t) all |
| 93 | ssize_t write(int, const void*, size_t) all |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 94 | ssize_t pread64(int, void*, size_t, off64_t) lp32 |
| 95 | ssize_t pread64|pread(int, void*, size_t, off_t) lp64 |
| 96 | ssize_t pwrite64(int, void*, size_t, off64_t) lp32 |
| 97 | ssize_t pwrite64|pwrite(int, void*, size_t, off_t) lp64 |
Elliott Hughes | 6f4594d | 2015-08-26 13:27:43 -0700 | [diff] [blame] | 98 | |
| 99 | # On LP32, preadv/pwritev don't use off64_t --- they use pairs of 32-bit |
Elliott Hughes | cf59e19 | 2021-10-13 18:25:21 -0700 | [diff] [blame] | 100 | # arguments to avoid problems on architectures like arm32 where 64-bit arguments |
Elliott Hughes | 6f4594d | 2015-08-26 13:27:43 -0700 | [diff] [blame] | 101 | # 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 Hughes | cf59e19 | 2021-10-13 18:25:21 -0700 | [diff] [blame] | 103 | # Note that there's an unused always-0 second long even on LP64! |
| 104 | ssize_t __preadv64:preadv(int, const struct iovec*, int, long, long) all |
| 105 | ssize_t __pwritev64:pwritev(int, const struct iovec*, int, long, long) all |
| 106 | ssize_t __preadv64v2:preadv2(int, const struct iovec*, int, long, long, int) all |
| 107 | ssize_t __pwritev64v2:pwritev2(int, const struct iovec*, int, long, long, int) all |
Elliott Hughes | 6f4594d | 2015-08-26 13:27:43 -0700 | [diff] [blame] | 108 | |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 109 | int __close:close(int) all |
Maciej Żenczykowski | b65e105 | 2022-01-21 11:19:55 -0800 | [diff] [blame] | 110 | int close_range(unsigned int, unsigned int, int) all |
zijunzhao | c2e412e | 2022-04-22 18:08:09 +0000 | [diff] [blame^] | 111 | ssize_t copy_file_range(int, off64_t*, int, off64_t*, size_t, unsigned int) all |
Elliott Hughes | 7086ad6 | 2014-06-19 16:39:01 -0700 | [diff] [blame] | 112 | pid_t __getpid:getpid() all |
Elliott Hughes | 3d24d2b | 2019-08-05 13:53:01 -0700 | [diff] [blame] | 113 | int memfd_create(const char*, unsigned) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 114 | int munmap(void*, size_t) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 115 | void* __mremap:mremap(void*, size_t, size_t, int, void*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 116 | int msync(const void*, size_t, int) all |
| 117 | int mprotect(const void*, size_t, int) all |
Yabin Cui | efbb6fb | 2014-12-03 11:11:50 -0800 | [diff] [blame] | 118 | int madvise(void*, size_t, int) all |
Elliott Hughes | 39899f5 | 2021-04-06 16:38:37 -0700 | [diff] [blame] | 119 | ssize_t process_madvise(int, const struct iovec*, size_t, int, unsigned int) all |
Elliott Hughes | 3d24d2b | 2019-08-05 13:53:01 -0700 | [diff] [blame] | 120 | int mlock(const void* addr, size_t len) all |
| 121 | int mlock2(const void* addr, size_t len, int flags) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 122 | int munlock(const void* addr, size_t len) all |
| 123 | int mlockall(int flags) all |
| 124 | int munlockall() all |
| 125 | int mincore(void* start, size_t length, unsigned char* vec) all |
| 126 | int __ioctl:ioctl(int, int, void*) all |
Josh Gao | 753361a | 2016-11-29 14:26:15 -0800 | [diff] [blame] | 127 | ssize_t readv(int, const struct iovec*, int) all |
| 128 | ssize_t writev(int, const struct iovec*, int) all |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 129 | int __fcntl64:fcntl64(int, int, void*) lp32 |
Josh Gao | 9727192 | 2019-11-06 13:15:00 -0800 | [diff] [blame] | 130 | int __fcntl:fcntl(int, int, void*) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 131 | int flock(int, int) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 132 | int __fchmod:fchmod(int, mode_t) all |
Josh Gao | 1fad528 | 2020-04-29 17:00:13 -0700 | [diff] [blame] | 133 | int __pipe2:pipe2(int*, int) all |
Josh Gao | 9727192 | 2019-11-06 13:15:00 -0800 | [diff] [blame] | 134 | int __dup:dup(int) all |
| 135 | int __dup3:dup3(int, int, int) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 136 | int fsync(int) all |
| 137 | int fdatasync(int) all |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 138 | int fchown:fchown32(int, uid_t, gid_t) lp32 |
| 139 | int fchown:fchown(int, uid_t, gid_t) lp64 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 140 | void sync(void) all |
Elliott Hughes | 896362e | 2017-08-24 16:31:49 -0700 | [diff] [blame] | 141 | int syncfs(int) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 142 | int __fsetxattr:fsetxattr(int, const char*, const void*, size_t, int) all |
| 143 | ssize_t __fgetxattr:fgetxattr(int, const char*, void*, size_t) all |
| 144 | ssize_t __flistxattr:flistxattr(int, char*, size_t) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 145 | int fremovexattr(int, const char*) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 146 | |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 147 | int __getdents64:getdents64(unsigned int, struct dirent*, unsigned int) all |
Chris Dearman | 5043212 | 2014-02-05 16:59:23 -0800 | [diff] [blame] | 148 | |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 149 | int __openat:openat(int, const char*, int, mode_t) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 150 | int __faccessat:faccessat(int, const char*, int) all |
| 151 | int __fchmodat:fchmodat(int, const char*, mode_t) all |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 152 | int fchownat(int, const char*, uid_t, gid_t, int) all |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 153 | int fstatat64|fstatat:fstatat64(int, const char*, struct stat*, int) lp32 |
Elliott Hughes | de1cf85 | 2021-09-07 09:17:14 -0700 | [diff] [blame] | 154 | int fstatat64|fstatat:newfstatat(int, const char*, struct stat*, int) lp64 |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 155 | int linkat(int, const char*, int, const char*, int) all |
| 156 | int mkdirat(int, const char*, mode_t) all |
| 157 | int mknodat(int, const char*, mode_t, dev_t) all |
| 158 | int readlinkat(int, const char*, char*, size_t) all |
| 159 | int renameat(int, const char*, int, const char*) all |
Elliott Hughes | 05b675e | 2019-04-17 13:01:06 -0700 | [diff] [blame] | 160 | int renameat2(int, const char*, int, const char*, unsigned) all |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 161 | int symlinkat(const char*, int, const char*) all |
| 162 | int unlinkat(int, const char*, int) all |
| 163 | int utimensat(int, const char*, const struct timespec times[2], int) all |
| 164 | |
Elliott Hughes | a6519d6 | 2013-10-17 16:56:40 -0700 | [diff] [blame] | 165 | # Paired off_t/off64_t system calls. On 64-bit systems, |
| 166 | # sizeof(off_t) == sizeof(off64_t), so there we emit two symbols that are |
| 167 | # aliases. On 32-bit systems, we have two different system calls. |
| 168 | # That means that every system call in this section should take three lines. |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 169 | off_t lseek(int, off_t, int) lp32 |
| 170 | int __llseek:_llseek(int, unsigned long, unsigned long, off64_t*, int) lp32 |
| 171 | off_t lseek|lseek64(int, off_t, int) lp64 |
| 172 | int ftruncate64(int, off64_t) lp32 |
| 173 | int ftruncate|ftruncate64(int, off_t) lp64 |
| 174 | ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count) lp32 |
| 175 | ssize_t sendfile64(int out_fd, int in_fd, off64_t* offset, size_t count) lp32 |
| 176 | ssize_t sendfile|sendfile64(int out_fd, int in_fd, off_t* offset, size_t count) lp64 |
| 177 | int truncate(const char*, off_t) lp32 |
| 178 | int truncate64(const char*, off64_t) lp32 |
| 179 | int truncate|truncate64(const char*, off_t) lp64 |
Serban Constantinescu | ed76a93 | 2013-12-12 09:36:27 +0000 | [diff] [blame] | 180 | # (mmap only gets two lines because we only used the 64-bit variant on 32-bit systems.) |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 181 | void* __mmap2:mmap2(void*, size_t, int, int, int, long) lp32 |
| 182 | void* mmap|mmap64(void*, size_t, int, int, int, off_t) lp64 |
Elliott Hughes | f64b8ea | 2014-02-03 16:20:46 -0800 | [diff] [blame] | 183 | # (fallocate only gets two lines because there is no 32-bit variant.) |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 184 | int fallocate64:fallocate(int, int, off64_t, off64_t) lp32 |
| 185 | int fallocate|fallocate64(int, int, off_t, off_t) lp64 |
Elliott Hughes | a6519d6 | 2013-10-17 16:56:40 -0700 | [diff] [blame] | 186 | |
Elliott Hughes | b587f33 | 2014-09-10 17:39:00 -0700 | [diff] [blame] | 187 | # posix_fadvise64 is awkward: arm has shuffled arguments, |
| 188 | # the POSIX functions don't set errno, and no architecture has posix_fadvise. |
| 189 | int __arm_fadvise64_64:arm_fadvise64_64(int, int, off64_t, off64_t) arm |
Elliott Hughes | 9990b39 | 2014-09-11 10:10:08 -0700 | [diff] [blame] | 190 | int __fadvise64:fadvise64_64(int, off64_t, off64_t, int) x86 |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 191 | int __fadvise64:fadvise64(int, off64_t, off64_t, int) lp64 |
Elliott Hughes | b587f33 | 2014-09-10 17:39:00 -0700 | [diff] [blame] | 192 | |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 193 | int __fstatfs64:fstatfs64(int, size_t, struct statfs*) lp32 |
| 194 | int __fstatfs:fstatfs(int, struct statfs*) lp64 |
| 195 | int __statfs64:statfs64(const char*, size_t, struct statfs*) lp32 |
| 196 | int __statfs:statfs(const char*, struct statfs*) lp64 |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 197 | |
Elliott Hughes | de1cf85 | 2021-09-07 09:17:14 -0700 | [diff] [blame] | 198 | int fstat64|fstat:fstat64(int, struct stat*) lp32 |
| 199 | int fstat64|fstat:fstat(int, struct stat*) lp64 |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 200 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 201 | # file system |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 202 | int chdir(const char*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 203 | int mount(const char*, const char*, const char*, unsigned long, const void*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 204 | int umount2(const char*, int) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 205 | int __getcwd:getcwd(char* buf, size_t size) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 206 | int fchdir(int) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 207 | int setxattr(const char*, const char*, const void*, size_t, int) all |
| 208 | int lsetxattr(const char*, const char*, const void*, size_t, int) all |
| 209 | ssize_t getxattr(const char*, const char*, void*, size_t) all |
| 210 | ssize_t lgetxattr(const char*, const char*, void*, size_t) all |
| 211 | ssize_t listxattr(const char*, char*, size_t) all |
| 212 | ssize_t llistxattr(const char*, char*, size_t) all |
| 213 | int removexattr(const char*, const char*) all |
| 214 | int lremovexattr(const char*, const char*) all |
Elliott Hughes | 733cedd | 2020-02-21 23:21:28 -0800 | [diff] [blame] | 215 | int statx(int, const char*, int, unsigned, struct statx*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 216 | int swapon(const char*, int) all |
| 217 | int swapoff(const char*) all |
Stephen Smalley | 5eb686d | 2012-01-13 07:45:16 -0500 | [diff] [blame] | 218 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 219 | # time |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 220 | int settimeofday(const struct timeval*, const struct timezone*) all |
| 221 | clock_t times(struct tms*) all |
| 222 | int nanosleep(const struct timespec*, struct timespec*) all |
Haruki Hasegawa | 1816025 | 2014-10-13 00:50:47 +0900 | [diff] [blame] | 223 | int clock_settime(clockid_t, const struct timespec*) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 224 | int __clock_nanosleep:clock_nanosleep(clockid_t, int, const struct timespec*, struct timespec*) all |
Elliott Hughes | 51d158f | 2020-01-06 14:29:06 -0800 | [diff] [blame] | 225 | int getitimer(int, struct itimerval*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 226 | int setitimer(int, const struct itimerval*, struct itimerval*) all |
Elliott Hughes | 4b558f5 | 2014-03-04 15:58:02 -0800 | [diff] [blame] | 227 | int __timer_create:timer_create(clockid_t clockid, struct sigevent* evp, __kernel_timer_t* timerid) all |
| 228 | int __timer_settime:timer_settime(__kernel_timer_t, int, const struct itimerspec*, struct itimerspec*) all |
| 229 | int __timer_gettime:timer_gettime(__kernel_timer_t, struct itimerspec*) all |
| 230 | int __timer_getoverrun:timer_getoverrun(__kernel_timer_t) all |
| 231 | int __timer_delete:timer_delete(__kernel_timer_t) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 232 | int timerfd_create(clockid_t, int) all |
| 233 | int timerfd_settime(int, int, const struct itimerspec*, struct itimerspec*) all |
| 234 | int timerfd_gettime(int, struct itimerspec*) all |
Greg Hackmann | 3f3f6c5 | 2016-01-27 17:13:51 -0800 | [diff] [blame] | 235 | int adjtimex(struct timex*) all |
Elliott Hughes | 5f26c6b | 2016-02-03 13:19:10 -0800 | [diff] [blame] | 236 | int clock_adjtime(clockid_t, struct timex*) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 237 | |
| 238 | # signals |
Elliott Hughes | 8251d44 | 2018-11-09 13:55:21 -0800 | [diff] [blame] | 239 | int __sigaction:sigaction(int, const struct sigaction*, struct sigaction*) lp32 |
Elliott Hughes | 1f5af92 | 2013-10-15 18:01:56 -0700 | [diff] [blame] | 240 | int __rt_sigaction:rt_sigaction(int, const struct sigaction*, struct sigaction*, size_t) all |
Elliott Hughes | 5905d6f | 2018-01-30 15:09:51 -0800 | [diff] [blame] | 241 | int __rt_sigpending:rt_sigpending(sigset64_t*, size_t) all |
| 242 | int __rt_sigprocmask:rt_sigprocmask(int, const sigset64_t*, sigset64_t*, size_t) all |
| 243 | int __rt_sigsuspend:rt_sigsuspend(const sigset64_t*, size_t) all |
| 244 | int __rt_sigtimedwait:rt_sigtimedwait(const sigset64_t*, siginfo_t*, const timespec*, size_t) all |
Elliott Hughes | 50080a2 | 2019-06-19 12:47:53 -0700 | [diff] [blame] | 245 | int __rt_sigqueueinfo:rt_sigqueueinfo(pid_t, int, siginfo_t*) all |
Elliott Hughes | 5905d6f | 2018-01-30 15:09:51 -0800 | [diff] [blame] | 246 | int __signalfd4:signalfd4(int, const sigset64_t*, size_t, int) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 247 | |
| 248 | # sockets |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 249 | int __socket:socket(int, int, int) arm,lp64 |
Josh Gao | b107eab | 2020-04-29 17:17:56 -0700 | [diff] [blame] | 250 | int __socketpair:socketpair(int, int, int, int*) arm,lp64 |
Bram Bonné | bca8a44 | 2021-04-08 09:34:36 +0000 | [diff] [blame] | 251 | int bind(int, struct sockaddr*, socklen_t) arm,lp64 |
Elliott Hughes | 2b49904 | 2020-02-13 14:21:55 -0800 | [diff] [blame] | 252 | int __connect:connect(int, struct sockaddr*, socklen_t) arm,lp64 |
| 253 | int listen(int, int) arm,lp64 |
| 254 | int __accept4:accept4(int, struct sockaddr*, socklen_t*, int) arm,lp64 |
| 255 | int getsockname(int, struct sockaddr*, socklen_t*) arm,lp64 |
| 256 | int getpeername(int, struct sockaddr*, socklen_t*) arm,lp64 |
| 257 | ssize_t __sendto:sendto(int, const void*, size_t, int, const struct sockaddr*, socklen_t) arm,lp64 |
| 258 | ssize_t recvfrom(int, void*, size_t, unsigned int, struct sockaddr*, socklen_t*) arm,lp64 |
| 259 | int shutdown(int, int) arm,lp64 |
| 260 | int setsockopt(int, int, int, const void*, socklen_t) arm,lp64 |
| 261 | int getsockopt(int, int, int, void*, socklen_t*) arm,lp64 |
| 262 | ssize_t __recvmsg:recvmsg(int, struct msghdr*, unsigned int) arm,lp64 |
| 263 | ssize_t __sendmsg:sendmsg(int, const struct msghdr*, unsigned int) arm,lp64 |
| 264 | int __recvmmsg:recvmmsg(int, struct mmsghdr*, unsigned int, int, const struct timespec*) arm,lp64 |
| 265 | int __sendmmsg:sendmmsg(int, struct mmsghdr*, unsigned int, int) arm,lp64 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 266 | |
| 267 | # sockets for x86. These are done as an "indexed" call to socketcall syscall. |
Sreeram Ramachandran | 903b788 | 2014-05-19 13:39:57 -0700 | [diff] [blame] | 268 | int __socket:socketcall:1(int, int, int) x86 |
Bram Bonné | bca8a44 | 2021-04-08 09:34:36 +0000 | [diff] [blame] | 269 | int bind:socketcall:2(int, struct sockaddr*, int) x86 |
Sreeram Ramachandran | ceb5bd7 | 2014-05-12 11:19:16 -0700 | [diff] [blame] | 270 | int __connect:socketcall:3(int, struct sockaddr*, socklen_t) x86 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 271 | int listen:socketcall:4(int, int) x86 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 272 | int getsockname:socketcall:6(int, struct sockaddr*, socklen_t*) x86 |
| 273 | int getpeername:socketcall:7(int, struct sockaddr*, socklen_t*) x86 |
Josh Gao | b107eab | 2020-04-29 17:17:56 -0700 | [diff] [blame] | 274 | int __socketpair:socketcall:8(int, int, int, int*) x86 |
Elliott Hughes | 51d158f | 2020-01-06 14:29:06 -0800 | [diff] [blame] | 275 | ssize_t __sendto:socketcall:11(int, const void*, size_t, int, const struct sockaddr*, socklen_t) x86 |
| 276 | ssize_t recvfrom:socketcall:12(int, void*, size_t, unsigned int, struct sockaddr*, socklen_t*) x86 |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 277 | int shutdown:socketcall:13(int, int) x86 |
| 278 | int setsockopt:socketcall:14(int, int, int, const void*, socklen_t) x86 |
| 279 | int getsockopt:socketcall:15(int, int, int, void*, socklen_t*) x86 |
Elliott Hughes | 5c6a3f9 | 2019-06-13 14:24:45 -0700 | [diff] [blame] | 280 | int __sendmsg:socketcall:16(int, const struct msghdr*, unsigned int) x86 |
Josh Gao | 9727192 | 2019-11-06 13:15:00 -0800 | [diff] [blame] | 281 | int __recvmsg:socketcall:17(int, struct msghdr*, unsigned int) x86 |
Sreeram Ramachandran | 903b788 | 2014-05-19 13:39:57 -0700 | [diff] [blame] | 282 | int __accept4:socketcall:18(int, struct sockaddr*, socklen_t*, int) x86 |
Josh Gao | 9727192 | 2019-11-06 13:15:00 -0800 | [diff] [blame] | 283 | int __recvmmsg:socketcall:19(int, struct mmsghdr*, unsigned int, int, const struct timespec*) x86 |
Elliott Hughes | 5c6a3f9 | 2019-06-13 14:24:45 -0700 | [diff] [blame] | 284 | int __sendmmsg:socketcall:20(int, struct mmsghdr*, unsigned int, int) x86 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 285 | |
| 286 | # scheduler & real-time |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 287 | int sched_setscheduler(pid_t pid, int policy, const struct sched_param* param) all |
| 288 | int sched_getscheduler(pid_t pid) all |
| 289 | int sched_yield(void) all |
| 290 | int sched_setparam(pid_t pid, const struct sched_param* param) all |
| 291 | int sched_getparam(pid_t pid, struct sched_param* param) all |
| 292 | int sched_get_priority_max(int policy) all |
| 293 | int sched_get_priority_min(int policy) all |
| 294 | int sched_rr_get_interval(pid_t pid, struct timespec* interval) all |
| 295 | int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set) all |
Elliott Hughes | 887e114 | 2014-01-02 12:05:50 -0800 | [diff] [blame] | 296 | int setns(int, int) all |
| 297 | int unshare(int) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 298 | int __sched_getaffinity:sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set) all |
Elliott Hughes | 887e114 | 2014-01-02 12:05:50 -0800 | [diff] [blame] | 299 | int __getcpu:getcpu(unsigned*, unsigned*, void*) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 300 | |
| 301 | # other |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 302 | int uname(struct utsname*) all |
| 303 | mode_t umask(mode_t) all |
Elliott Hughes | 1f5af92 | 2013-10-15 18:01:56 -0700 | [diff] [blame] | 304 | int __reboot:reboot(int, int, int, void*) all |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 305 | int init_module(void*, unsigned long, const char*) all |
| 306 | int delete_module(const char*, unsigned int) all |
| 307 | int klogctl:syslog(int, char*, int) all |
| 308 | int sysinfo(struct sysinfo*) all |
| 309 | int personality(unsigned long) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 310 | |
Alessio Balsini | 5afe3f8 | 2021-11-11 18:43:00 +0000 | [diff] [blame] | 311 | int bpf(int, union bpf_attr *, unsigned int) all |
| 312 | |
Elliott Hughes | 3f525d4 | 2014-06-24 16:32:01 -0700 | [diff] [blame] | 313 | ssize_t tee(int, int, size_t, unsigned int) all |
| 314 | ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int) all |
| 315 | ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int) all |
| 316 | |
Josh Gao | a38331d | 2020-04-29 17:06:14 -0700 | [diff] [blame] | 317 | int __epoll_create1:epoll_create1(int) all |
Elliott Hughes | cac7b9d | 2013-10-23 09:48:29 -0700 | [diff] [blame] | 318 | int epoll_ctl(int, int op, int, struct epoll_event*) all |
Elliott Hughes | 5905d6f | 2018-01-30 15:09:51 -0800 | [diff] [blame] | 319 | int __epoll_pwait:epoll_pwait(int, struct epoll_event*, int, int, const sigset64_t*, size_t) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 320 | |
Josh Gao | 7de4124 | 2020-04-29 17:08:46 -0700 | [diff] [blame] | 321 | int __eventfd:eventfd2(unsigned int, int) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 322 | |
Elliott Hughes | 9f52564 | 2014-04-08 17:14:01 -0700 | [diff] [blame] | 323 | void _exit|_Exit:exit_group(int) all |
Elliott Hughes | 6b53c23 | 2013-10-24 22:36:58 -0700 | [diff] [blame] | 324 | void __exit:exit(int) all |
| 325 | |
Elliott Hughes | cac7b9d | 2013-10-23 09:48:29 -0700 | [diff] [blame] | 326 | int inotify_init1(int) all |
| 327 | int inotify_add_watch(int, const char*, unsigned int) all |
| 328 | int inotify_rm_watch(int, unsigned int) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 329 | |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 330 | int __pselect6:pselect6(int, fd_set*, fd_set*, fd_set*, timespec*, void*) all |
Elliott Hughes | 5905d6f | 2018-01-30 15:09:51 -0800 | [diff] [blame] | 331 | int __ppoll:ppoll(pollfd*, unsigned int, timespec*, const sigset64_t*, size_t) all |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 332 | |
Elliott Hughes | be57a40 | 2015-06-10 17:24:20 -0700 | [diff] [blame] | 333 | ssize_t process_vm_readv(pid_t, const struct iovec*, unsigned long, const struct iovec*, unsigned long, unsigned long) all |
| 334 | ssize_t process_vm_writev(pid_t, const struct iovec*, unsigned long, const struct iovec*, unsigned long, unsigned long) all |
| 335 | |
Elliott Hughes | eafad49 | 2016-04-05 23:01:42 -0700 | [diff] [blame] | 336 | int quotactl(int, const char*, int, char*) all |
| 337 | |
Elliott Hughes | 36d6188 | 2013-11-19 13:31:58 -0800 | [diff] [blame] | 338 | int __set_tid_address:set_tid_address(int*) all |
| 339 | |
Elliott Hughes | 7931099 | 2014-07-30 15:05:09 -0700 | [diff] [blame] | 340 | int setfsgid(gid_t) all |
| 341 | int setfsuid(uid_t) all |
| 342 | |
Greg Hackmann | e2faf07 | 2016-03-03 08:37:53 -0800 | [diff] [blame] | 343 | int setdomainname(const char*, size_t) all |
Elliott Hughes | b86a4c7 | 2014-11-07 16:07:13 -0800 | [diff] [blame] | 344 | int sethostname(const char*, size_t) all |
| 345 | |
Elliott Hughes | de1cf85 | 2021-09-07 09:17:14 -0700 | [diff] [blame] | 346 | int __sync_file_range:sync_file_range(int, off64_t, off64_t, unsigned int) x86,lp64 |
Elliott Hughes | 7f72ad4 | 2016-04-05 11:56:03 -0700 | [diff] [blame] | 347 | int __sync_file_range2:sync_file_range2(int, unsigned int, off64_t, off64_t) arm |
| 348 | |
Elliott Hughes | 6b53c23 | 2013-10-24 22:36:58 -0700 | [diff] [blame] | 349 | pid_t wait4(pid_t, int*, int, struct rusage*) all |
Elliott Hughes | 51d158f | 2020-01-06 14:29:06 -0800 | [diff] [blame] | 350 | int __waitid:waitid(int, pid_t, siginfo_t*, int, void*) all |
Elliott Hughes | 6b53c23 | 2013-10-24 22:36:58 -0700 | [diff] [blame] | 351 | |
Elliott Hughes | a6519d6 | 2013-10-17 16:56:40 -0700 | [diff] [blame] | 352 | # ARM-specific |
Elliott Hughes | 5e52279 | 2013-09-24 00:30:25 -0700 | [diff] [blame] | 353 | int __set_tls:__ARM_NR_set_tls(void*) arm |
| 354 | int cacheflush:__ARM_NR_cacheflush(long start, long end, long flags) arm |
Raghu Gandham | 1fa0d84 | 2012-01-27 17:51:42 -0800 | [diff] [blame] | 355 | |
Elliott Hughes | dcbef06 | 2014-05-12 16:11:06 -0700 | [diff] [blame] | 356 | # x86-specific |
| 357 | int __set_thread_area:set_thread_area(void*) x86 |
Elliott Hughes | 625993d | 2014-07-15 16:53:13 -0700 | [diff] [blame] | 358 | |
| 359 | # vdso stuff. |
Elliott Hughes | 2180978 | 2017-12-11 11:40:40 -0800 | [diff] [blame] | 360 | int __clock_getres:clock_getres(clockid_t, struct timespec*) all |
Elliott Hughes | 51d158f | 2020-01-06 14:29:06 -0800 | [diff] [blame] | 361 | int __clock_gettime:clock_gettime(clockid_t, struct timespec*) all |
| 362 | int __gettimeofday:gettimeofday(struct timeval*, struct timezone*) all |
Elliott Hughes | 8465e96 | 2017-09-27 16:33:35 -0700 | [diff] [blame] | 363 | |
| 364 | # <sys/random.h> |
| 365 | ssize_t getrandom(void*, size_t, unsigned) all |
Josh Gao | 3de1915 | 2021-02-22 18:09:48 -0800 | [diff] [blame] | 366 | |
| 367 | # <sys/pidfd.h> |
| 368 | int __pidfd_open:pidfd_open(pid_t, unsigned int) all |
| 369 | int __pidfd_getfd:pidfd_getfd(int, int, unsigned int) all |
| 370 | int pidfd_send_signal(int, int, siginfo_t*, unsigned int) all |