]> git.saurik.com Git - apple/xnu.git/blame - bsd/kern/syscalls.master
xnu-4903.221.2.tar.gz
[apple/xnu.git] / bsd / kern / syscalls.master
CommitLineData
91447636
A
1; derived from: FreeBSD @(#)syscalls.master 8.2 (Berkeley) 1/13/94
2;
3; System call name/number master file.
4; This is file processed by .../xnu/bsd/kern/makesyscalls.sh and creates:
5; .../xnu/bsd/kern/init_sysent.c
6; .../xnu/bsd/kern/syscalls.c
7; .../xnu/bsd/sys/syscall.h
8; .../xnu/bsd/sys/sysproto.h
b0d623f7 9; .../xnu/bsd/security/audit_syscalls.c
91447636 10
b0d623f7 11; Columns -> | Number Audit Files | { Name and Args } | { Comments }
91447636 12; Number: system call number, must be in order
b0d623f7
A
13; Audit: the audit event associated with the system call
14; A value of AUE_NULL means no auditing, but it also means that
15; there is no audit event for the call at this time. For the
16; case where the event exists, but we don't want auditing, the
17; event should be #defined to AUE_NULL in audit_kevents.h.
91447636
A
18; Files: with files to generate - "ALL" or any combo of:
19; "T" for syscall table (in init_sysent.c)
20; "N" for syscall names (in syscalls.c)
21; "H" for syscall headers (in syscall.h)
22; "P" for syscall prototypes (in sysproto.h)
2d21ac55
A
23; Name and Args: function prototype, optionally followed by
24; NO_SYSCALL_STUB (which mean no system call stub will
25; be generated in libSystem) and ending with a semicolon.
26; (Note: functions prefixed by double-underbar are
27; automatically given the NO_SYSCALL_STUB attribute.)
91447636
A
28; Comments: additional comments about the sys call copied to output files
29
30; #ifdef's, #include's, #if's etc. are copied to all output files.
2d21ac55
A
31; N.B.: makesyscalls.sh and createsyscalls.pl must be updated to account
32; for any new argument types.
91447636
A
33
34#include <sys/appleapiopts.h>
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/types.h>
38#include <sys/sysent.h>
39#include <sys/sysproto.h>
40
b0d623f7 410 AUE_NULL ALL { int nosys(void); } { indirect syscall }
6d2010ae
A
421 AUE_EXIT ALL { void exit(int rval) NO_SYSCALL_STUB; }
432 AUE_FORK ALL { int fork(void) NO_SYSCALL_STUB; }
b0d623f7
A
443 AUE_NULL ALL { user_ssize_t read(int fd, user_addr_t cbuf, user_size_t nbyte); }
454 AUE_NULL ALL { user_ssize_t write(int fd, user_addr_t cbuf, user_size_t nbyte); }
6d2010ae 465 AUE_OPEN_RWTC ALL { int open(user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
b0d623f7 476 AUE_CLOSE ALL { int close(int fd); }
6d2010ae 487 AUE_WAIT4 ALL { int wait4(int pid, user_addr_t status, int options, user_addr_t rusage) NO_SYSCALL_STUB; }
fe8ab488 498 AUE_NULL ALL { int enosys(void); } { old creat }
b0d623f7 509 AUE_LINK ALL { int link(user_addr_t path, user_addr_t link); }
6d2010ae 5110 AUE_UNLINK ALL { int unlink(user_addr_t path) NO_SYSCALL_STUB; }
fe8ab488 5211 AUE_NULL ALL { int enosys(void); } { old execv }
b0d623f7
A
5312 AUE_CHDIR ALL { int chdir(user_addr_t path); }
5413 AUE_FCHDIR ALL { int fchdir(int fd); }
5514 AUE_MKNOD ALL { int mknod(user_addr_t path, int mode, int dev); }
6d2010ae 5615 AUE_CHMOD ALL { int chmod(user_addr_t path, int mode) NO_SYSCALL_STUB; }
b0d623f7 5716 AUE_CHOWN ALL { int chown(user_addr_t path, int uid, int gid); }
fe8ab488 5817 AUE_NULL ALL { int enosys(void); } { old break }
b0d623f7 5918 AUE_GETFSSTAT ALL { int getfsstat(user_addr_t buf, int bufsize, int flags); }
fe8ab488 6019 AUE_NULL ALL { int enosys(void); } { old lseek }
b0d623f7 6120 AUE_GETPID ALL { int getpid(void); }
fe8ab488
A
6221 AUE_NULL ALL { int enosys(void); } { old mount }
6322 AUE_NULL ALL { int enosys(void); } { old umount }
b0d623f7
A
6423 AUE_SETUID ALL { int setuid(uid_t uid); }
6524 AUE_GETUID ALL { int getuid(void); }
6625 AUE_GETEUID ALL { int geteuid(void); }
6726 AUE_PTRACE ALL { int ptrace(int req, pid_t pid, caddr_t addr, int data); }
2d21ac55 68#if SOCKETS
6d2010ae
A
6927 AUE_RECVMSG ALL { int recvmsg(int s, struct msghdr *msg, int flags) NO_SYSCALL_STUB; }
7028 AUE_SENDMSG ALL { int sendmsg(int s, caddr_t msg, int flags) NO_SYSCALL_STUB; }
7129 AUE_RECVFROM ALL { int recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, int *fromlenaddr) NO_SYSCALL_STUB; }
7230 AUE_ACCEPT ALL { int accept(int s, caddr_t name, socklen_t *anamelen) NO_SYSCALL_STUB; }
7331 AUE_GETPEERNAME ALL { int getpeername(int fdes, caddr_t asa, socklen_t *alen) NO_SYSCALL_STUB; }
7432 AUE_GETSOCKNAME ALL { int getsockname(int fdes, caddr_t asa, socklen_t *alen) NO_SYSCALL_STUB; }
2d21ac55 75#else
b0d623f7
A
7627 AUE_NULL ALL { int nosys(void); }
7728 AUE_NULL ALL { int nosys(void); }
7829 AUE_NULL ALL { int nosys(void); }
7930 AUE_NULL ALL { int nosys(void); }
8031 AUE_NULL ALL { int nosys(void); }
8132 AUE_NULL ALL { int nosys(void); }
2d21ac55 82#endif /* SOCKETS */
b0d623f7
A
8333 AUE_ACCESS ALL { int access(user_addr_t path, int flags); }
8434 AUE_CHFLAGS ALL { int chflags(char *path, int flags); }
8535 AUE_FCHFLAGS ALL { int fchflags(int fd, int flags); }
8636 AUE_SYNC ALL { int sync(void); }
6d2010ae 8737 AUE_KILL ALL { int kill(int pid, int signum, int posix) NO_SYSCALL_STUB; }
b0d623f7
A
8838 AUE_NULL ALL { int nosys(void); } { old stat }
8939 AUE_GETPPID ALL { int getppid(void); }
9040 AUE_NULL ALL { int nosys(void); } { old lstat }
9141 AUE_DUP ALL { int dup(u_int fd); }
9242 AUE_PIPE ALL { int pipe(void); }
9343 AUE_GETEGID ALL { int getegid(void); }
316670eb 9444 AUE_NULL ALL { int nosys(void); } { old profil }
b0d623f7 9545 AUE_NULL ALL { int nosys(void); } { old ktrace }
6d2010ae 9646 AUE_SIGACTION ALL { int sigaction(int signum, struct __sigaction *nsa, struct sigaction *osa) NO_SYSCALL_STUB; }
b0d623f7
A
9747 AUE_GETGID ALL { int getgid(void); }
9848 AUE_SIGPROCMASK ALL { int sigprocmask(int how, user_addr_t mask, user_addr_t omask); }
6d2010ae
A
9949 AUE_GETLOGIN ALL { int getlogin(char *namebuf, u_int namelen) NO_SYSCALL_STUB; }
10050 AUE_SETLOGIN ALL { int setlogin(char *namebuf) NO_SYSCALL_STUB; }
b0d623f7
A
10151 AUE_ACCT ALL { int acct(char *path); }
10252 AUE_SIGPENDING ALL { int sigpending(struct sigvec *osv); }
6d2010ae
A
10353 AUE_SIGALTSTACK ALL { int sigaltstack(struct sigaltstack *nss, struct sigaltstack *oss) NO_SYSCALL_STUB ; }
10454 AUE_IOCTL ALL { int ioctl(int fd, u_long com, caddr_t data) NO_SYSCALL_STUB; }
d9a64523 10555 AUE_REBOOT ALL { int reboot(int opt, char *msg) NO_SYSCALL_STUB; }
b0d623f7
A
10656 AUE_REVOKE ALL { int revoke(char *path); }
10757 AUE_SYMLINK ALL { int symlink(char *path, char *link); }
10858 AUE_READLINK ALL { int readlink(char *path, char *buf, int count); }
10959 AUE_EXECVE ALL { int execve(char *fname, char **argp, char **envp); }
11060 AUE_UMASK ALL { int umask(int newmask); }
11161 AUE_CHROOT ALL { int chroot(user_addr_t path); }
11262 AUE_NULL ALL { int nosys(void); } { old fstat }
39037602 11363 AUE_NULL ALL { int nosys(void); } { used internally and reserved }
b0d623f7 11464 AUE_NULL ALL { int nosys(void); } { old getpagesize }
6d2010ae 11565 AUE_MSYNC ALL { int msync(caddr_t addr, size_t len, int flags) NO_SYSCALL_STUB; }
b0d623f7
A
11666 AUE_VFORK ALL { int vfork(void); }
11767 AUE_NULL ALL { int nosys(void); } { old vread }
11868 AUE_NULL ALL { int nosys(void); } { old vwrite }
11969 AUE_NULL ALL { int nosys(void); } { old sbrk }
12070 AUE_NULL ALL { int nosys(void); } { old sstk }
12171 AUE_NULL ALL { int nosys(void); } { old mmap }
12272 AUE_NULL ALL { int nosys(void); } { old vadvise }
6d2010ae
A
12373 AUE_MUNMAP ALL { int munmap(caddr_t addr, size_t len) NO_SYSCALL_STUB; }
12474 AUE_MPROTECT ALL { int mprotect(caddr_t addr, size_t len, int prot) NO_SYSCALL_STUB; }
b0d623f7
A
12575 AUE_MADVISE ALL { int madvise(caddr_t addr, size_t len, int behav); }
12676 AUE_NULL ALL { int nosys(void); } { old vhangup }
12777 AUE_NULL ALL { int nosys(void); } { old vlimit }
12878 AUE_MINCORE ALL { int mincore(user_addr_t addr, user_size_t len, user_addr_t vec); }
12979 AUE_GETGROUPS ALL { int getgroups(u_int gidsetsize, gid_t *gidset); }
13080 AUE_SETGROUPS ALL { int setgroups(u_int gidsetsize, gid_t *gidset); }
13181 AUE_GETPGRP ALL { int getpgrp(void); }
13282 AUE_SETPGRP ALL { int setpgid(int pid, int pgid); }
13383 AUE_SETITIMER ALL { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }
13484 AUE_NULL ALL { int nosys(void); } { old wait }
13585 AUE_SWAPON ALL { int swapon(void); }
13686 AUE_GETITIMER ALL { int getitimer(u_int which, struct itimerval *itv); }
13787 AUE_NULL ALL { int nosys(void); } { old gethostname }
13888 AUE_NULL ALL { int nosys(void); } { old sethostname }
13989 AUE_GETDTABLESIZE ALL { int getdtablesize(void); }
14090 AUE_DUP2 ALL { int dup2(u_int from, u_int to); }
14191 AUE_NULL ALL { int nosys(void); } { old getdopt }
6d2010ae
A
14292 AUE_FCNTL ALL { int fcntl(int fd, int cmd, long arg) NO_SYSCALL_STUB; }
14393 AUE_SELECT ALL { int select(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, struct timeval *tv) NO_SYSCALL_STUB; }
b0d623f7
A
14494 AUE_NULL ALL { int nosys(void); } { old setdopt }
14595 AUE_FSYNC ALL { int fsync(int fd); }
fe8ab488 14696 AUE_SETPRIORITY ALL { int setpriority(int which, id_t who, int prio) NO_SYSCALL_STUB; }
2d21ac55 147#if SOCKETS
b0d623f7 14897 AUE_SOCKET ALL { int socket(int domain, int type, int protocol); }
6d2010ae 14998 AUE_CONNECT ALL { int connect(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
2d21ac55 150#else
b0d623f7
A
15197 AUE_NULL ALL { int nosys(void); }
15298 AUE_NULL ALL { int nosys(void); }
2d21ac55 153#endif /* SOCKETS */
b0d623f7
A
15499 AUE_NULL ALL { int nosys(void); } { old accept }
155100 AUE_GETPRIORITY ALL { int getpriority(int which, id_t who); }
156101 AUE_NULL ALL { int nosys(void); } { old send }
157102 AUE_NULL ALL { int nosys(void); } { old recv }
158103 AUE_NULL ALL { int nosys(void); } { old sigreturn }
2d21ac55 159#if SOCKETS
6d2010ae 160104 AUE_BIND ALL { int bind(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
b0d623f7 161105 AUE_SETSOCKOPT ALL { int setsockopt(int s, int level, int name, caddr_t val, socklen_t valsize); }
6d2010ae 162106 AUE_LISTEN ALL { int listen(int s, int backlog) NO_SYSCALL_STUB; }
2d21ac55 163#else
b0d623f7
A
164104 AUE_NULL ALL { int nosys(void); }
165105 AUE_NULL ALL { int nosys(void); }
166106 AUE_NULL ALL { int nosys(void); }
2d21ac55 167#endif /* SOCKETS */
b0d623f7
A
168107 AUE_NULL ALL { int nosys(void); } { old vtimes }
169108 AUE_NULL ALL { int nosys(void); } { old sigvec }
170109 AUE_NULL ALL { int nosys(void); } { old sigblock }
171110 AUE_NULL ALL { int nosys(void); } { old sigsetmask }
6d2010ae 172111 AUE_NULL ALL { int sigsuspend(sigset_t mask) NO_SYSCALL_STUB; }
b0d623f7 173112 AUE_NULL ALL { int nosys(void); } { old sigstack }
2d21ac55 174#if SOCKETS
b0d623f7
A
175113 AUE_NULL ALL { int nosys(void); } { old recvmsg }
176114 AUE_NULL ALL { int nosys(void); } { old sendmsg }
2d21ac55 177#else
b0d623f7
A
178113 AUE_NULL ALL { int nosys(void); }
179114 AUE_NULL ALL { int nosys(void); }
2d21ac55 180#endif /* SOCKETS */
b0d623f7 181115 AUE_NULL ALL { int nosys(void); } { old vtrace }
39037602 182116 AUE_GETTIMEOFDAY ALL { int gettimeofday(struct timeval *tp, struct timezone *tzp, uint64_t *mach_absolute_time) NO_SYSCALL_STUB; }
b0d623f7 183117 AUE_GETRUSAGE ALL { int getrusage(int who, struct rusage *rusage); }
2d21ac55 184#if SOCKETS
b0d623f7 185118 AUE_GETSOCKOPT ALL { int getsockopt(int s, int level, int name, caddr_t val, socklen_t *avalsize); }
2d21ac55 186#else
b0d623f7 187118 AUE_NULL ALL { int nosys(void); }
2d21ac55 188#endif /* SOCKETS */
b0d623f7
A
189119 AUE_NULL ALL { int nosys(void); } { old resuba }
190120 AUE_READV ALL { user_ssize_t readv(int fd, struct iovec *iovp, u_int iovcnt); }
191121 AUE_WRITEV ALL { user_ssize_t writev(int fd, struct iovec *iovp, u_int iovcnt); }
6d2010ae 192122 AUE_SETTIMEOFDAY ALL { int settimeofday(struct timeval *tv, struct timezone *tzp) NO_SYSCALL_STUB; }
b0d623f7 193123 AUE_FCHOWN ALL { int fchown(int fd, int uid, int gid); }
6d2010ae 194124 AUE_FCHMOD ALL { int fchmod(int fd, int mode) NO_SYSCALL_STUB; }
b0d623f7 195125 AUE_NULL ALL { int nosys(void); } { old recvfrom }
6d2010ae
A
196126 AUE_SETREUID ALL { int setreuid(uid_t ruid, uid_t euid) NO_SYSCALL_STUB; }
197127 AUE_SETREGID ALL { int setregid(gid_t rgid, gid_t egid) NO_SYSCALL_STUB; }
198128 AUE_RENAME ALL { int rename(char *from, char *to) NO_SYSCALL_STUB; }
b0d623f7
A
199129 AUE_NULL ALL { int nosys(void); } { old truncate }
200130 AUE_NULL ALL { int nosys(void); } { old ftruncate }
201131 AUE_FLOCK ALL { int flock(int fd, int how); }
202132 AUE_MKFIFO ALL { int mkfifo(user_addr_t path, int mode); }
2d21ac55 203#if SOCKETS
6d2010ae 204133 AUE_SENDTO ALL { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, socklen_t tolen) NO_SYSCALL_STUB; }
b0d623f7 205134 AUE_SHUTDOWN ALL { int shutdown(int s, int how); }
6d2010ae 206135 AUE_SOCKETPAIR ALL { int socketpair(int domain, int type, int protocol, int *rsv) NO_SYSCALL_STUB; }
2d21ac55 207#else
b0d623f7
A
208133 AUE_NULL ALL { int nosys(void); }
209134 AUE_NULL ALL { int nosys(void); }
210135 AUE_NULL ALL { int nosys(void); }
2d21ac55 211#endif /* SOCKETS */
b0d623f7 212136 AUE_MKDIR ALL { int mkdir(user_addr_t path, int mode); }
6d2010ae 213137 AUE_RMDIR ALL { int rmdir(char *path) NO_SYSCALL_STUB; }
b0d623f7
A
214138 AUE_UTIMES ALL { int utimes(char *path, struct timeval *tptr); }
215139 AUE_FUTIMES ALL { int futimes(int fd, struct timeval *tptr); }
216140 AUE_ADJTIME ALL { int adjtime(struct timeval *delta, struct timeval *olddelta); }
217141 AUE_NULL ALL { int nosys(void); } { old getpeername }
39236c6e 218142 AUE_SYSCTL ALL { int gethostuuid(unsigned char *uuid_buf, const struct timespec *timeoutp, int spi) NO_SYSCALL_STUB; }
b0d623f7
A
219143 AUE_NULL ALL { int nosys(void); } { old sethostid }
220144 AUE_NULL ALL { int nosys(void); } { old getrlimit }
221145 AUE_NULL ALL { int nosys(void); } { old setrlimit }
222146 AUE_NULL ALL { int nosys(void); } { old killpg }
223147 AUE_SETSID ALL { int setsid(void); }
224148 AUE_NULL ALL { int nosys(void); } { old setquota }
225149 AUE_NULL ALL { int nosys(void); } { old qquota }
226150 AUE_NULL ALL { int nosys(void); } { old getsockname }
227151 AUE_GETPGID ALL { int getpgid(pid_t pid); }
228152 AUE_SETPRIVEXEC ALL { int setprivexec(int flag); }
229153 AUE_PREAD ALL { user_ssize_t pread(int fd, user_addr_t buf, user_size_t nbyte, off_t offset); }
230154 AUE_PWRITE ALL { user_ssize_t pwrite(int fd, user_addr_t buf, user_size_t nbyte, off_t offset); }
91447636
A
231
232#if NFSSERVER
b0d623f7 233155 AUE_NFS_SVC ALL { int nfssvc(int flag, caddr_t argp); }
91447636 234#else
b0d623f7 235155 AUE_NULL ALL { int nosys(void); }
91447636
A
236#endif
237
b0d623f7
A
238156 AUE_NULL ALL { int nosys(void); } { old getdirentries }
239157 AUE_STATFS ALL { int statfs(char *path, struct statfs *buf); }
240158 AUE_FSTATFS ALL { int fstatfs(int fd, struct statfs *buf); }
241159 AUE_UNMOUNT ALL { int unmount(user_addr_t path, int flags); }
242160 AUE_NULL ALL { int nosys(void); } { old async_daemon }
91447636 243
2d21ac55 244#if NFSSERVER
b0d623f7 245161 AUE_NFS_GETFH ALL { int getfh(char *fname, fhandle_t *fhp); }
91447636 246#else
b0d623f7 247161 AUE_NULL ALL { int nosys(void); }
91447636
A
248#endif
249
b0d623f7
A
250162 AUE_NULL ALL { int nosys(void); } { old getdomainname }
251163 AUE_NULL ALL { int nosys(void); } { old setdomainname }
252164 AUE_NULL ALL { int nosys(void); }
253165 AUE_QUOTACTL ALL { int quotactl(const char *path, int cmd, int uid, caddr_t arg); }
254166 AUE_NULL ALL { int nosys(void); } { old exportfs }
255167 AUE_MOUNT ALL { int mount(char *type, char *path, int flags, caddr_t data); }
256168 AUE_NULL ALL { int nosys(void); } { old ustat }
257169 AUE_CSOPS ALL { int csops(pid_t pid, uint32_t ops, user_addr_t useraddr, user_size_t usersize); }
316670eb 258170 AUE_CSOPS ALL { int csops_audittoken(pid_t pid, uint32_t ops, user_addr_t useraddr, user_size_t usersize, user_addr_t uaudittoken); }
b0d623f7
A
259171 AUE_NULL ALL { int nosys(void); } { old wait3 }
260172 AUE_NULL ALL { int nosys(void); } { old rpause }
261173 AUE_WAITID ALL { int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options); }
262174 AUE_NULL ALL { int nosys(void); } { old getdents }
263175 AUE_NULL ALL { int nosys(void); } { old gc_control }
316670eb 264176 AUE_NULL ALL { int nosys(void); } { old add_profil }
5ba3f43e
A
265177 AUE_NULL ALL { int kdebug_typefilter(void** addr, size_t* size) NO_SYSCALL_STUB; }
266178 AUE_NULL ALL { uint64_t kdebug_trace_string(uint32_t debugid, uint64_t str_id, const char *str) NO_SYSCALL_STUB; }
267179 AUE_NULL ALL { int kdebug_trace64(uint32_t code, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4) NO_SYSCALL_STUB; }
268180 AUE_NULL ALL { int kdebug_trace(uint32_t code, u_long arg1, u_long arg2, u_long arg3, u_long arg4) NO_SYSCALL_STUB; }
b0d623f7
A
269181 AUE_SETGID ALL { int setgid(gid_t gid); }
270182 AUE_SETEGID ALL { int setegid(gid_t egid); }
271183 AUE_SETEUID ALL { int seteuid(uid_t euid); }
d9a64523 272184 AUE_SIGRETURN ALL { int sigreturn(struct ucontext *uctx, int infostyle, user_addr_t token) NO_SYSCALL_STUB; }
39037602 273185 AUE_NULL ALL { int enosys(void); } { old chud }
5ba3f43e 274186 AUE_NULL ALL { int thread_selfcounts(int type, user_addr_t buf, user_size_t nbytes); }
b0d623f7
A
275187 AUE_FDATASYNC ALL { int fdatasync(int fd); }
276188 AUE_STAT ALL { int stat(user_addr_t path, user_addr_t ub); }
277189 AUE_FSTAT ALL { int fstat(int fd, user_addr_t ub); }
278190 AUE_LSTAT ALL { int lstat(user_addr_t path, user_addr_t ub); }
279191 AUE_PATHCONF ALL { int pathconf(char *path, int name); }
280192 AUE_FPATHCONF ALL { int fpathconf(int fd, int name); }
39037602 281193 AUE_NULL ALL { int nosys(void); } { old getfsstat }
6d2010ae
A
282194 AUE_GETRLIMIT ALL { int getrlimit(u_int which, struct rlimit *rlp) NO_SYSCALL_STUB; }
283195 AUE_SETRLIMIT ALL { int setrlimit(u_int which, struct rlimit *rlp) NO_SYSCALL_STUB; }
b0d623f7 284196 AUE_GETDIRENTRIES ALL { int getdirentries(int fd, char *buf, u_int count, long *basep); }
6d2010ae 285197 AUE_MMAP ALL { user_addr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, off_t pos) NO_SYSCALL_STUB; }
39037602 286198 AUE_NULL ALL { int nosys(void); } { old __syscall }
b0d623f7
A
287199 AUE_LSEEK ALL { off_t lseek(int fd, off_t offset, int whence); }
288200 AUE_TRUNCATE ALL { int truncate(char *path, off_t length); }
289201 AUE_FTRUNCATE ALL { int ftruncate(int fd, off_t length); }
fe8ab488 290202 AUE_SYSCTL ALL { int sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen) NO_SYSCALL_STUB; }
b0d623f7
A
291203 AUE_MLOCK ALL { int mlock(caddr_t addr, size_t len); }
292204 AUE_MUNLOCK ALL { int munlock(caddr_t addr, size_t len); }
293205 AUE_UNDELETE ALL { int undelete(user_addr_t path); }
91447636 294
39236c6e
A
295206 AUE_NULL ALL { int nosys(void); } { old ATsocket }
296207 AUE_NULL ALL { int nosys(void); } { old ATgetmsg }
297208 AUE_NULL ALL { int nosys(void); } { old ATputmsg }
298209 AUE_NULL ALL { int nosys(void); } { old ATsndreq }
299210 AUE_NULL ALL { int nosys(void); } { old ATsndrsp }
300211 AUE_NULL ALL { int nosys(void); } { old ATgetreq }
301212 AUE_NULL ALL { int nosys(void); } { old ATgetrsp }
b0d623f7 302213 AUE_NULL ALL { int nosys(void); } { Reserved for AppleTalk }
91447636 303
b0d623f7
A
304214 AUE_NULL ALL { int nosys(void); }
305215 AUE_NULL ALL { int nosys(void); }
91447636
A
306
307; System Calls 216 - 230 are reserved for calls to support HFS/HFS Plus
308; file system semantics. Currently, we only use 215-227. The rest is
309; for future expansion in anticipation of new MacOS APIs for HFS Plus.
2d21ac55 310; These calls are not conditionalized because while they are specific
91447636
A
311; to HFS semantics, they are not specific to the HFS filesystem.
312; We expect all filesystems to recognize the call and report that it is
313; not supported or to actually implement it.
316670eb
A
314
315; 216-> 219 used to be mkcomplex and {f,l}statv variants. They are gone now.
316216 AUE_NULL ALL { int open_dprotected_np(user_addr_t path, int flags, int class, int dpflags, int mode) NO_SYSCALL_STUB; }
39037602
A
317217 AUE_NULL ALL { int nosys(void); } { old statv }
318218 AUE_NULL ALL { int nosys(void); } { old lstatv }
319219 AUE_NULL ALL { int nosys(void); } { old fstatv }
6d2010ae
A
320220 AUE_GETATTRLIST ALL { int getattrlist(const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options) NO_SYSCALL_STUB; }
321221 AUE_SETATTRLIST ALL { int setattrlist(const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options) NO_SYSCALL_STUB; }
b0d623f7
A
322222 AUE_GETDIRENTRIESATTR ALL { int getdirentriesattr(int fd, struct attrlist *alist, void *buffer, size_t buffersize, u_long *count, u_long *basep, u_long *newstate, u_long options); }
323223 AUE_EXCHANGEDATA ALL { int exchangedata(const char *path1, const char *path2, u_long options); }
39037602 324224 AUE_NULL ALL { int nosys(void); } { old checkuseraccess or fsgetpath }
b0d623f7
A
325225 AUE_SEARCHFS ALL { int searchfs(const char *path, struct fssearchblock *searchblock, uint32_t *nummatches, uint32_t scriptcode, uint32_t options, struct searchstate *state); }
326226 AUE_DELETE ALL { int delete(user_addr_t path) NO_SYSCALL_STUB; } { private delete (Carbon semantics) }
327227 AUE_COPYFILE ALL { int copyfile(char *from, char *to, int mode, int flags) NO_SYSCALL_STUB; }
328228 AUE_FGETATTRLIST ALL { int fgetattrlist(int fd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
329229 AUE_FSETATTRLIST ALL { int fsetattrlist(int fd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
330230 AUE_POLL ALL { int poll(struct pollfd *fds, u_int nfds, int timeout); }
331231 AUE_WATCHEVENT ALL { int watchevent(struct eventreq *u_req, int u_eventmask); }
332232 AUE_WAITEVENT ALL { int waitevent(struct eventreq *u_req, struct timeval *tv); }
333233 AUE_MODWATCH ALL { int modwatch(struct eventreq *u_req, int u_eventmask); }
334234 AUE_GETXATTR ALL { user_ssize_t getxattr(user_addr_t path, user_addr_t attrname, user_addr_t value, size_t size, uint32_t position, int options); }
335235 AUE_FGETXATTR ALL { user_ssize_t fgetxattr(int fd, user_addr_t attrname, user_addr_t value, size_t size, uint32_t position, int options); }
336236 AUE_SETXATTR ALL { int setxattr(user_addr_t path, user_addr_t attrname, user_addr_t value, size_t size, uint32_t position, int options); }
337237 AUE_FSETXATTR ALL { int fsetxattr(int fd, user_addr_t attrname, user_addr_t value, size_t size, uint32_t position, int options); }
338238 AUE_REMOVEXATTR ALL { int removexattr(user_addr_t path, user_addr_t attrname, int options); }
339239 AUE_FREMOVEXATTR ALL { int fremovexattr(int fd, user_addr_t attrname, int options); }
340240 AUE_LISTXATTR ALL { user_ssize_t listxattr(user_addr_t path, user_addr_t namebuf, size_t bufsize, int options); }
341241 AUE_FLISTXATTR ALL { user_ssize_t flistxattr(int fd, user_addr_t namebuf, size_t bufsize, int options); }
342242 AUE_FSCTL ALL { int fsctl(const char *path, u_long cmd, caddr_t data, u_int options); }
6d2010ae
A
343243 AUE_INITGROUPS ALL { int initgroups(u_int gidsetsize, gid_t *gidset, int gmuid) NO_SYSCALL_STUB; }
344244 AUE_POSIX_SPAWN ALL { int posix_spawn(pid_t *pid, const char *path, const struct _posix_spawn_args_desc *adesc, char **argv, char **envp) NO_SYSCALL_STUB; }
b0d623f7
A
345245 AUE_FFSCTL ALL { int ffsctl(int fd, u_long cmd, caddr_t data, u_int options); }
346246 AUE_NULL ALL { int nosys(void); }
91447636 347
2d21ac55 348#if NFSCLIENT
b0d623f7 349247 AUE_NULL ALL { int nfsclnt(int flag, caddr_t argp); }
91447636 350#else
b0d623f7 351247 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
352#endif
353#if NFSSERVER
b0d623f7 354248 AUE_FHOPEN ALL { int fhopen(const struct fhandle *u_fhp, int flags); }
2d21ac55 355#else
b0d623f7 356248 AUE_NULL ALL { int nosys(void); }
2d21ac55 357#endif
91447636 358
b0d623f7
A
359249 AUE_NULL ALL { int nosys(void); }
360250 AUE_MINHERIT ALL { int minherit(void *addr, size_t len, int inherit); }
2d21ac55 361#if SYSV_SEM
39236c6e 362251 AUE_SEMSYS ALL { int semsys(u_int which, int a2, int a3, int a4, int a5) NO_SYSCALL_STUB; }
2d21ac55 363#else
b0d623f7 364251 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
365#endif
366#if SYSV_MSG
39236c6e 367252 AUE_MSGSYS ALL { int msgsys(u_int which, int a2, int a3, int a4, int a5) NO_SYSCALL_STUB; }
2d21ac55 368#else
b0d623f7 369252 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
370#endif
371#if SYSV_SHM
39236c6e 372253 AUE_SHMSYS ALL { int shmsys(u_int which, int a2, int a3, int a4) NO_SYSCALL_STUB; }
2d21ac55 373#else
b0d623f7 374253 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
375#endif
376#if SYSV_SEM
6d2010ae 377254 AUE_SEMCTL ALL { int semctl(int semid, int semnum, int cmd, semun_t arg) NO_SYSCALL_STUB; }
b0d623f7
A
378255 AUE_SEMGET ALL { int semget(key_t key, int nsems, int semflg); }
379256 AUE_SEMOP ALL { int semop(int semid, struct sembuf *sops, int nsops); }
39037602 380257 AUE_NULL ALL { int nosys(void); } { old semconfig }
2d21ac55 381#else
b0d623f7
A
382254 AUE_NULL ALL { int nosys(void); }
383255 AUE_NULL ALL { int nosys(void); }
384256 AUE_NULL ALL { int nosys(void); }
385257 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
386#endif
387#if SYSV_MSG
6d2010ae 388258 AUE_MSGCTL ALL { int msgctl(int msqid, int cmd, struct msqid_ds *buf) NO_SYSCALL_STUB; }
b0d623f7
A
389259 AUE_MSGGET ALL { int msgget(key_t key, int msgflg); }
390260 AUE_MSGSND ALL { int msgsnd(int msqid, void *msgp, size_t msgsz, int msgflg); }
391261 AUE_MSGRCV ALL { user_ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
2d21ac55 392#else
b0d623f7
A
393258 AUE_NULL ALL { int nosys(void); }
394259 AUE_NULL ALL { int nosys(void); }
395260 AUE_NULL ALL { int nosys(void); }
396261 AUE_NULL ALL { int nosys(void); }
2d21ac55
A
397#endif
398#if SYSV_SHM
b0d623f7 399262 AUE_SHMAT ALL { user_addr_t shmat(int shmid, void *shmaddr, int shmflg); }
6d2010ae 400263 AUE_SHMCTL ALL { int shmctl(int shmid, int cmd, struct shmid_ds *buf) NO_SYSCALL_STUB; }
b0d623f7
A
401264 AUE_SHMDT ALL { int shmdt(void *shmaddr); }
402265 AUE_SHMGET ALL { int shmget(key_t key, size_t size, int shmflg); }
2d21ac55 403#else
b0d623f7
A
404262 AUE_NULL ALL { int nosys(void); }
405263 AUE_NULL ALL { int nosys(void); }
406264 AUE_NULL ALL { int nosys(void); }
407265 AUE_NULL ALL { int nosys(void); }
2d21ac55 408#endif
39236c6e 409266 AUE_SHMOPEN ALL { int shm_open(const char *name, int oflag, int mode) NO_SYSCALL_STUB; }
b0d623f7 410267 AUE_SHMUNLINK ALL { int shm_unlink(const char *name); }
316670eb 411268 AUE_SEMOPEN ALL { user_addr_t sem_open(const char *name, int oflag, int mode, int value) NO_SYSCALL_STUB; }
b0d623f7
A
412269 AUE_SEMCLOSE ALL { int sem_close(sem_t *sem); }
413270 AUE_SEMUNLINK ALL { int sem_unlink(const char *name); }
414271 AUE_SEMWAIT ALL { int sem_wait(sem_t *sem); }
415272 AUE_SEMTRYWAIT ALL { int sem_trywait(sem_t *sem); }
416273 AUE_SEMPOST ALL { int sem_post(sem_t *sem); }
fe8ab488
A
417274 AUE_SYSCTL ALL { int sysctlbyname(const char *name, size_t namelen, void *old, size_t *oldlenp, void *new, size_t newlen) NO_SYSCALL_STUB; }
418275 AUE_NULL ALL { int enosys(void); } { old sem_init }
419276 AUE_NULL ALL { int enosys(void); } { old sem_destroy }
b0d623f7
A
420277 AUE_OPEN_EXTENDED_RWTC ALL { int open_extended(user_addr_t path, int flags, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
421278 AUE_UMASK_EXTENDED ALL { int umask_extended(int newmask, user_addr_t xsecurity) NO_SYSCALL_STUB; }
422279 AUE_STAT_EXTENDED ALL { int stat_extended(user_addr_t path, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
423280 AUE_LSTAT_EXTENDED ALL { int lstat_extended(user_addr_t path, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
424281 AUE_FSTAT_EXTENDED ALL { int fstat_extended(int fd, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
425282 AUE_CHMOD_EXTENDED ALL { int chmod_extended(user_addr_t path, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
426283 AUE_FCHMOD_EXTENDED ALL { int fchmod_extended(int fd, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
427284 AUE_ACCESS_EXTENDED ALL { int access_extended(user_addr_t entries, size_t size, user_addr_t results, uid_t uid) NO_SYSCALL_STUB; }
428285 AUE_SETTID ALL { int settid(uid_t uid, gid_t gid) NO_SYSCALL_STUB; }
429286 AUE_GETTID ALL { int gettid(uid_t *uidp, gid_t *gidp) NO_SYSCALL_STUB; }
430287 AUE_SETSGROUPS ALL { int setsgroups(int setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
431288 AUE_GETSGROUPS ALL { int getsgroups(user_addr_t setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
432289 AUE_SETWGROUPS ALL { int setwgroups(int setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
433290 AUE_GETWGROUPS ALL { int getwgroups(user_addr_t setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
434291 AUE_MKFIFO_EXTENDED ALL { int mkfifo_extended(user_addr_t path, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
435292 AUE_MKDIR_EXTENDED ALL { int mkdir_extended(user_addr_t path, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
316670eb 436#if CONFIG_EXT_RESOLVER
b0d623f7 437293 AUE_IDENTITYSVC ALL { int identitysvc(int opcode, user_addr_t message) NO_SYSCALL_STUB; }
316670eb
A
438#else
439293 AUE_NULL ALL { int nosys(void); }
440#endif
b0d623f7 441294 AUE_NULL ALL { int shared_region_check_np(uint64_t *start_address) NO_SYSCALL_STUB; }
6d2010ae 442295 AUE_NULL ALL { int nosys(void); } { old shared_region_map_np }
b0d623f7
A
443296 AUE_NULL ALL { int vm_pressure_monitor(int wait_for_pressure, int nsecs_monitored, uint32_t *pages_reclaimed); }
444#if PSYNCH
445297 AUE_NULL ALL { uint32_t psynch_rw_longrdlock(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
446298 AUE_NULL ALL { uint32_t psynch_rw_yieldwrlock(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
447299 AUE_NULL ALL { int psynch_rw_downgrade(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
448300 AUE_NULL ALL { uint32_t psynch_rw_upgrade(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
449301 AUE_NULL ALL { uint32_t psynch_mutexwait(user_addr_t mutex, uint32_t mgen, uint32_t ugen, uint64_t tid, uint32_t flags) NO_SYSCALL_STUB; }
450302 AUE_NULL ALL { uint32_t psynch_mutexdrop(user_addr_t mutex, uint32_t mgen, uint32_t ugen, uint64_t tid, uint32_t flags) NO_SYSCALL_STUB; }
6d2010ae
A
451303 AUE_NULL ALL { uint32_t psynch_cvbroad(user_addr_t cv, uint64_t cvlsgen, uint64_t cvudgen, uint32_t flags, user_addr_t mutex, uint64_t mugen, uint64_t tid) NO_SYSCALL_STUB; }
452304 AUE_NULL ALL { uint32_t psynch_cvsignal(user_addr_t cv, uint64_t cvlsgen, uint32_t cvugen, int thread_port, user_addr_t mutex, uint64_t mugen, uint64_t tid, uint32_t flags) NO_SYSCALL_STUB; }
453305 AUE_NULL ALL { uint32_t psynch_cvwait(user_addr_t cv, uint64_t cvlsgen, uint32_t cvugen, user_addr_t mutex, uint64_t mugen, uint32_t flags, int64_t sec, uint32_t nsec) NO_SYSCALL_STUB; }
b0d623f7
A
454306 AUE_NULL ALL { uint32_t psynch_rw_rdlock(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
455307 AUE_NULL ALL { uint32_t psynch_rw_wrlock(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
456308 AUE_NULL ALL { uint32_t psynch_rw_unlock(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
457309 AUE_NULL ALL { uint32_t psynch_rw_unlock2(user_addr_t rwlock, uint32_t lgenval, uint32_t ugenval, uint32_t rw_wc, int flags) NO_SYSCALL_STUB; }
2d21ac55 458#else
b0d623f7
A
459297 AUE_NULL ALL { int nosys(void); } { old reset_shared_file }
460298 AUE_NULL ALL { int nosys(void); } { old new_system_shared_regions }
461299 AUE_NULL ALL { int enosys(void); } { old shared_region_map_file_np }
462300 AUE_NULL ALL { int enosys(void); } { old shared_region_make_private_np }
463301 AUE_NULL ALL { int nosys(void); }
464302 AUE_NULL ALL { int nosys(void); }
465303 AUE_NULL ALL { int nosys(void); }
466304 AUE_NULL ALL { int nosys(void); }
467305 AUE_NULL ALL { int nosys(void); }
468306 AUE_NULL ALL { int nosys(void); }
469307 AUE_NULL ALL { int nosys(void); }
470308 AUE_NULL ALL { int nosys(void); }
471309 AUE_NULL ALL { int nosys(void); }
2d21ac55 472#endif
b0d623f7
A
473310 AUE_GETSID ALL { int getsid(pid_t pid); }
474311 AUE_SETTIDWITHPID ALL { int settid_with_pid(pid_t pid, int assume) NO_SYSCALL_STUB; }
6d2010ae
A
475#if PSYNCH
476312 AUE_NULL ALL { int psynch_cvclrprepost(user_addr_t cv, uint32_t cvgen, uint32_t cvugen, uint32_t cvsgen, uint32_t prepocnt, uint32_t preposeq, uint32_t flags) NO_SYSCALL_STUB; }
477#else
b0d623f7 478312 AUE_NULL ALL { int nosys(void); } { old __pthread_cond_timedwait }
6d2010ae 479#endif
b0d623f7
A
480313 AUE_NULL ALL { int aio_fsync(int op, user_addr_t aiocbp); }
481314 AUE_NULL ALL { user_ssize_t aio_return(user_addr_t aiocbp); }
482315 AUE_NULL ALL { int aio_suspend(user_addr_t aiocblist, int nent, user_addr_t timeoutp); }
483316 AUE_NULL ALL { int aio_cancel(int fd, user_addr_t aiocbp); }
484317 AUE_NULL ALL { int aio_error(user_addr_t aiocbp); }
485318 AUE_NULL ALL { int aio_read(user_addr_t aiocbp); }
486319 AUE_NULL ALL { int aio_write(user_addr_t aiocbp); }
487320 AUE_LIOLISTIO ALL { int lio_listio(int mode, user_addr_t aiocblist, int nent, user_addr_t sigp); }
488321 AUE_NULL ALL { int nosys(void); } { old __pthread_cond_wait }
489322 AUE_IOPOLICYSYS ALL { int iopolicysys(int cmd, void *arg) NO_SYSCALL_STUB; }
6d2010ae 490323 AUE_NULL ALL { int process_policy(int scope, int action, int policy, int policy_subtype, user_addr_t attrp, pid_t target_pid, uint64_t target_threadid) NO_SYSCALL_STUB; }
b0d623f7
A
491324 AUE_MLOCKALL ALL { int mlockall(int how); }
492325 AUE_MUNLOCKALL ALL { int munlockall(int how); }
493326 AUE_NULL ALL { int nosys(void); }
494327 AUE_ISSETUGID ALL { int issetugid(void); }
495328 AUE_PTHREADKILL ALL { int __pthread_kill(int thread_port, int sig); }
496329 AUE_PTHREADSIGMASK ALL { int __pthread_sigmask(int how, user_addr_t set, user_addr_t oset); }
497330 AUE_SIGWAIT ALL { int __sigwait(user_addr_t set, user_addr_t sig); }
498331 AUE_NULL ALL { int __disable_threadsignal(int value); }
499332 AUE_NULL ALL { int __pthread_markcancel(int thread_port); }
500333 AUE_NULL ALL { int __pthread_canceled(int action); }
501
502;#if OLD_SEMWAIT_SIGNAL
503;334 AUE_NULL ALL { int nosys(void); } { old __semwait_signal }
504;#else
505334 AUE_SEMWAITSIGNAL ALL { int __semwait_signal(int cond_sem, int mutex_sem, int timeout, int relative, int64_t tv_sec, int32_t tv_nsec); }
506;#endif
2d21ac55 507
b0d623f7
A
508335 AUE_NULL ALL { int nosys(void); } { old utrace }
509336 AUE_PROCINFO ALL { int proc_info(int32_t callnum,int32_t pid,uint32_t flavor, uint64_t arg,user_addr_t buffer,int32_t buffersize) NO_SYSCALL_STUB; }
510#if SENDFILE
511337 AUE_SENDFILE ALL { int sendfile(int fd, int s, off_t offset, off_t *nbytes, struct sf_hdtr *hdtr, int flags); }
512#else /* !SENDFILE */
513337 AUE_NULL ALL { int nosys(void); }
514#endif /* SENDFILE */
515338 AUE_STAT64 ALL { int stat64(user_addr_t path, user_addr_t ub); }
516339 AUE_FSTAT64 ALL { int fstat64(int fd, user_addr_t ub); }
517340 AUE_LSTAT64 ALL { int lstat64(user_addr_t path, user_addr_t ub); }
518341 AUE_STAT64_EXTENDED ALL { int stat64_extended(user_addr_t path, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
519342 AUE_LSTAT64_EXTENDED ALL { int lstat64_extended(user_addr_t path, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
520343 AUE_FSTAT64_EXTENDED ALL { int fstat64_extended(int fd, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
521344 AUE_GETDIRENTRIES64 ALL { user_ssize_t getdirentries64(int fd, void *buf, user_size_t bufsize, off_t *position) NO_SYSCALL_STUB; }
522345 AUE_STATFS64 ALL { int statfs64(char *path, struct statfs64 *buf); }
523346 AUE_FSTATFS64 ALL { int fstatfs64(int fd, struct statfs64 *buf); }
524347 AUE_GETFSSTAT64 ALL { int getfsstat64(user_addr_t buf, int bufsize, int flags); }
525348 AUE_NULL ALL { int __pthread_chdir(user_addr_t path); }
526349 AUE_NULL ALL { int __pthread_fchdir(int fd); }
527350 AUE_AUDIT ALL { int audit(void *record, int length); }
528351 AUE_AUDITON ALL { int auditon(int cmd, void *data, int length); }
529352 AUE_NULL ALL { int nosys(void); }
530353 AUE_GETAUID ALL { int getauid(au_id_t *auid); }
531354 AUE_SETAUID ALL { int setauid(au_id_t *auid); }
316670eb
A
532355 AUE_NULL ALL { int nosys(void); } { old getaudit }
533356 AUE_NULL ALL { int nosys(void); } { old setaudit }
b0d623f7
A
534357 AUE_GETAUDIT_ADDR ALL { int getaudit_addr(struct auditinfo_addr *auditinfo_addr, int length); }
535358 AUE_SETAUDIT_ADDR ALL { int setaudit_addr(struct auditinfo_addr *auditinfo_addr, int length); }
536359 AUE_AUDITCTL ALL { int auditctl(char *path); }
593a1d5f 537#if CONFIG_WORKQUEUE
b0d623f7
A
538360 AUE_NULL ALL { user_addr_t bsdthread_create(user_addr_t func, user_addr_t func_arg, user_addr_t stack, user_addr_t pthread, uint32_t flags) NO_SYSCALL_STUB; }
539361 AUE_NULL ALL { int bsdthread_terminate(user_addr_t stackaddr, size_t freesize, uint32_t port, uint32_t sem) NO_SYSCALL_STUB; }
593a1d5f 540#else
b0d623f7
A
541360 AUE_NULL ALL { int nosys(void); }
542361 AUE_NULL ALL { int nosys(void); }
543#endif /* CONFIG_WORKQUEUE */
544362 AUE_KQUEUE ALL { int kqueue(void); }
545363 AUE_NULL ALL { int kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }
6d2010ae 546364 AUE_LCHOWN ALL { int lchown(user_addr_t path, uid_t owner, gid_t group) NO_SYSCALL_STUB; }
39037602 547365 AUE_NULL ALL { int nosys(void); } { old stack_snapshot }
593a1d5f 548#if CONFIG_WORKQUEUE
fe8ab488 549366 AUE_NULL ALL { int bsdthread_register(user_addr_t threadstart, user_addr_t wqthread, uint32_t flags, user_addr_t stack_addr_hint, user_addr_t targetconc_ptr, uint32_t dispatchqueue_offset, uint32_t tsd_offset) NO_SYSCALL_STUB; }
b0d623f7
A
550367 AUE_WORKQOPEN ALL { int workq_open(void) NO_SYSCALL_STUB; }
551368 AUE_WORKQOPS ALL { int workq_kernreturn(int options, user_addr_t item, int affinity, int prio) NO_SYSCALL_STUB; }
552#else
553366 AUE_NULL ALL { int nosys(void); }
554367 AUE_NULL ALL { int nosys(void); }
555368 AUE_NULL ALL { int nosys(void); }
556#endif /* CONFIG_WORKQUEUE */
557369 AUE_NULL ALL { int kevent64(int fd, const struct kevent64_s *changelist, int nchanges, struct kevent64_s *eventlist, int nevents, unsigned int flags, const struct timespec *timeout); }
558#if OLD_SEMWAIT_SIGNAL
559370 AUE_SEMWAITSIGNAL ALL { int __old_semwait_signal(int cond_sem, int mutex_sem, int timeout, int relative, const struct timespec *ts); }
560371 AUE_SEMWAITSIGNAL ALL { int __old_semwait_signal_nocancel(int cond_sem, int mutex_sem, int timeout, int relative, const struct timespec *ts) NO_SYSCALL_STUB; }
593a1d5f 561#else
b0d623f7
A
562370 AUE_NULL ALL { int nosys(void); } { old __semwait_signal }
563371 AUE_NULL ALL { int nosys(void); } { old __semwait_signal }
593a1d5f 564#endif
d1ecb069 565372 AUE_NULL ALL { uint64_t thread_selfid (void) NO_SYSCALL_STUB; }
316670eb 566373 AUE_LEDGER ALL { int ledger(int cmd, caddr_t arg1, caddr_t arg2, caddr_t arg3); }
3e170ce0 567374 AUE_NULL ALL { int kevent_qos(int fd, const struct kevent_qos_s *changelist, int nchanges, struct kevent_qos_s *eventlist, int nevents, void *data_out, size_t *data_available, unsigned int flags); }
5ba3f43e 568375 AUE_NULL ALL { int kevent_id(uint64_t id, const struct kevent_qos_s *changelist, int nchanges, struct kevent_qos_s *eventlist, int nevents, void *data_out, size_t *data_available, unsigned int flags); }
b0d623f7
A
569376 AUE_NULL ALL { int nosys(void); }
570377 AUE_NULL ALL { int nosys(void); }
571378 AUE_NULL ALL { int nosys(void); }
572379 AUE_NULL ALL { int nosys(void); }
573380 AUE_MAC_EXECVE ALL { int __mac_execve(char *fname, char **argp, char **envp, struct mac *mac_p); }
39236c6e 574#if CONFIG_MACF
b0d623f7
A
575381 AUE_MAC_SYSCALL ALL { int __mac_syscall(char *policy, int call, user_addr_t arg); }
576382 AUE_MAC_GET_FILE ALL { int __mac_get_file(char *path_p, struct mac *mac_p); }
577383 AUE_MAC_SET_FILE ALL { int __mac_set_file(char *path_p, struct mac *mac_p); }
578384 AUE_MAC_GET_LINK ALL { int __mac_get_link(char *path_p, struct mac *mac_p); }
579385 AUE_MAC_SET_LINK ALL { int __mac_set_link(char *path_p, struct mac *mac_p); }
580386 AUE_MAC_GET_PROC ALL { int __mac_get_proc(struct mac *mac_p); }
581387 AUE_MAC_SET_PROC ALL { int __mac_set_proc(struct mac *mac_p); }
582388 AUE_MAC_GET_FD ALL { int __mac_get_fd(int fd, struct mac *mac_p); }
583389 AUE_MAC_SET_FD ALL { int __mac_set_fd(int fd, struct mac *mac_p); }
584390 AUE_MAC_GET_PID ALL { int __mac_get_pid(pid_t pid, struct mac *mac_p); }
39236c6e
A
585#else
586381 AUE_MAC_SYSCALL ALL { int enosys(void); }
587382 AUE_MAC_GET_FILE ALL { int nosys(void); }
588383 AUE_MAC_SET_FILE ALL { int nosys(void); }
589384 AUE_MAC_GET_LINK ALL { int nosys(void); }
590385 AUE_MAC_SET_LINK ALL { int nosys(void); }
591386 AUE_MAC_GET_PROC ALL { int nosys(void); }
592387 AUE_MAC_SET_PROC ALL { int nosys(void); }
593388 AUE_MAC_GET_FD ALL { int nosys(void); }
594389 AUE_MAC_SET_FD ALL { int nosys(void); }
595390 AUE_MAC_GET_PID ALL { int nosys(void); }
39236c6e 596#endif
3e170ce0
A
597391 AUE_NULL ALL { int enosys(void); }
598392 AUE_NULL ALL { int enosys(void); }
599393 AUE_NULL ALL { int enosys(void); }
4bd07ac2
A
600394 AUE_SELECT ALL { int pselect(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, const struct timespec *ts, const struct sigset_t *mask) NO_SYSCALL_STUB; }
601395 AUE_SELECT ALL { int pselect_nocancel(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, const struct timespec *ts, const struct sigset_t *mask) NO_SYSCALL_STUB; }
b0d623f7
A
602396 AUE_NULL ALL { user_ssize_t read_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; }
603397 AUE_NULL ALL { user_ssize_t write_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; }
604398 AUE_OPEN_RWTC ALL { int open_nocancel(user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
605399 AUE_CLOSE ALL { int close_nocancel(int fd) NO_SYSCALL_STUB; }
606400 AUE_WAIT4 ALL { int wait4_nocancel(int pid, user_addr_t status, int options, user_addr_t rusage) NO_SYSCALL_STUB; }
2d21ac55 607#if SOCKETS
b0d623f7
A
608401 AUE_RECVMSG ALL { int recvmsg_nocancel(int s, struct msghdr *msg, int flags) NO_SYSCALL_STUB; }
609402 AUE_SENDMSG ALL { int sendmsg_nocancel(int s, caddr_t msg, int flags) NO_SYSCALL_STUB; }
610403 AUE_RECVFROM ALL { int recvfrom_nocancel(int s, void *buf, size_t len, int flags, struct sockaddr *from, int *fromlenaddr) NO_SYSCALL_STUB; }
611404 AUE_ACCEPT ALL { int accept_nocancel(int s, caddr_t name, socklen_t *anamelen) NO_SYSCALL_STUB; }
2d21ac55 612#else
b0d623f7
A
613401 AUE_NULL ALL { int nosys(void); }
614402 AUE_NULL ALL { int nosys(void); }
615403 AUE_NULL ALL { int nosys(void); }
616404 AUE_NULL ALL { int nosys(void); }
2d21ac55 617#endif /* SOCKETS */
b0d623f7
A
618405 AUE_MSYNC ALL { int msync_nocancel(caddr_t addr, size_t len, int flags) NO_SYSCALL_STUB; }
619406 AUE_FCNTL ALL { int fcntl_nocancel(int fd, int cmd, long arg) NO_SYSCALL_STUB; }
620407 AUE_SELECT ALL { int select_nocancel(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, struct timeval *tv) NO_SYSCALL_STUB; }
621408 AUE_FSYNC ALL { int fsync_nocancel(int fd) NO_SYSCALL_STUB; }
2d21ac55 622#if SOCKETS
b0d623f7 623409 AUE_CONNECT ALL { int connect_nocancel(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
2d21ac55 624#else
b0d623f7 625409 AUE_NULL ALL { int nosys(void); }
2d21ac55 626#endif /* SOCKETS */
b0d623f7
A
627410 AUE_NULL ALL { int sigsuspend_nocancel(sigset_t mask) NO_SYSCALL_STUB; }
628411 AUE_READV ALL { user_ssize_t readv_nocancel(int fd, struct iovec *iovp, u_int iovcnt) NO_SYSCALL_STUB; }
629412 AUE_WRITEV ALL { user_ssize_t writev_nocancel(int fd, struct iovec *iovp, u_int iovcnt) NO_SYSCALL_STUB; }
2d21ac55 630#if SOCKETS
b0d623f7 631413 AUE_SENDTO ALL { int sendto_nocancel(int s, caddr_t buf, size_t len, int flags, caddr_t to, socklen_t tolen) NO_SYSCALL_STUB; }
2d21ac55 632#else
b0d623f7 633413 AUE_NULL ALL { int nosys(void); }
2d21ac55 634#endif /* SOCKETS */
b0d623f7
A
635414 AUE_PREAD ALL { user_ssize_t pread_nocancel(int fd, user_addr_t buf, user_size_t nbyte, off_t offset) NO_SYSCALL_STUB; }
636415 AUE_PWRITE ALL { user_ssize_t pwrite_nocancel(int fd, user_addr_t buf, user_size_t nbyte, off_t offset) NO_SYSCALL_STUB; }
637416 AUE_WAITID ALL { int waitid_nocancel(idtype_t idtype, id_t id, siginfo_t *infop, int options) NO_SYSCALL_STUB; }
638417 AUE_POLL ALL { int poll_nocancel(struct pollfd *fds, u_int nfds, int timeout) NO_SYSCALL_STUB; }
2d21ac55 639#if SYSV_MSG
b0d623f7
A
640418 AUE_MSGSND ALL { int msgsnd_nocancel(int msqid, void *msgp, size_t msgsz, int msgflg) NO_SYSCALL_STUB; }
641419 AUE_MSGRCV ALL { user_ssize_t msgrcv_nocancel(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) NO_SYSCALL_STUB; }
91447636 642#else
b0d623f7
A
643418 AUE_NULL ALL { int nosys(void); }
644419 AUE_NULL ALL { int nosys(void); }
91447636 645#endif
b0d623f7
A
646420 AUE_SEMWAIT ALL { int sem_wait_nocancel(sem_t *sem) NO_SYSCALL_STUB; }
647421 AUE_NULL ALL { int aio_suspend_nocancel(user_addr_t aiocblist, int nent, user_addr_t timeoutp) NO_SYSCALL_STUB; }
648422 AUE_SIGWAIT ALL { int __sigwait_nocancel(user_addr_t set, user_addr_t sig) NO_SYSCALL_STUB; }
649;#if OLD_SEMWAIT_SIGNAL
650;423 AUE_NULL ALL { int nosys(void); } { old __semwait_signal_nocancel }
651;#else
6d2010ae 652423 AUE_SEMWAITSIGNAL ALL { int __semwait_signal_nocancel(int cond_sem, int mutex_sem, int timeout, int relative, int64_t tv_sec, int32_t tv_nsec); }
b0d623f7
A
653;#endif
654424 AUE_MAC_MOUNT ALL { int __mac_mount(char *type, char *path, int flags, caddr_t data, struct mac *mac_p); }
39236c6e 655#if CONFIG_MACF
b0d623f7 656425 AUE_MAC_GET_MOUNT ALL { int __mac_get_mount(char *path, struct mac *mac_p); }
39236c6e
A
657#else
658425 AUE_MAC_GET_MOUNT ALL { int nosys(void); }
659#endif
b0d623f7 660426 AUE_MAC_GETFSSTAT ALL { int __mac_getfsstat(user_addr_t buf, int bufsize, user_addr_t mac, int macsize, int flags); }
39037602 661427 AUE_FSGETPATH ALL { user_ssize_t fsgetpath(user_addr_t buf, size_t bufsize, user_addr_t fsid, uint64_t objid); } { private fsgetpath (File Manager SPI) }
b0d623f7
A
662428 AUE_NULL ALL { mach_port_name_t audit_session_self(void); }
663429 AUE_NULL ALL { int audit_session_join(mach_port_name_t port); }
6d2010ae
A
664430 AUE_NULL ALL { int fileport_makeport(int fd, user_addr_t portnamep); }
665431 AUE_NULL ALL { int fileport_makefd(mach_port_name_t port); }
666432 AUE_NULL ALL { int audit_session_port(au_asid_t asid, user_addr_t portnamep); }
667433 AUE_NULL ALL { int pid_suspend(int pid); }
668434 AUE_NULL ALL { int pid_resume(int pid); }
5ba3f43e
A
669#if CONFIG_EMBEDDED
670435 AUE_NULL ALL { int pid_hibernate(int pid); }
671#else
39236c6e 672435 AUE_NULL ALL { int nosys(void); }
5ba3f43e
A
673#endif
674#if SOCKETS
675436 AUE_NULL ALL { int pid_shutdown_sockets(int pid, int level); }
676#else
6d2010ae 677436 AUE_NULL ALL { int nosys(void); }
5ba3f43e 678#endif
6d2010ae
A
679437 AUE_NULL ALL { int nosys(void); } { old shared_region_slide_np }
680438 AUE_NULL ALL { int shared_region_map_and_slide_np(int fd, uint32_t count, const struct shared_file_mapping_np *mappings, uint32_t slide, uint64_t* slide_start, uint32_t slide_size) NO_SYSCALL_STUB; }
316670eb 681439 AUE_NULL ALL { int kas_info(int selector, void *value, size_t *size); }
39236c6e
A
682#if CONFIG_MEMORYSTATUS
683440 AUE_NULL ALL { int memorystatus_control(uint32_t command, int32_t pid, uint32_t flags, user_addr_t buffer, size_t buffersize); }
684#else
685440 AUE_NULL ALL { int nosys(void); }
686#endif
5ba3f43e 687441 AUE_OPEN_RWTC ALL { int guarded_open_np(user_addr_t path, const guardid_t *guard, u_int guardflags, int flags, int mode) NO_SYSCALL_STUB; }
39236c6e
A
688442 AUE_CLOSE ALL { int guarded_close_np(int fd, const guardid_t *guard); }
689443 AUE_KQUEUE ALL { int guarded_kqueue_np(const guardid_t *guard, u_int guardflags); }
690444 AUE_NULL ALL { int change_fdguard_np(int fd, const guardid_t *guard, u_int guardflags, const guardid_t *nguard, u_int nguardflags, int *fdflagsp); }
490019cf 691445 AUE_USRCTL ALL { int usrctl(uint32_t flags); }
39236c6e
A
692446 AUE_NULL ALL { int proc_rlimit_control(pid_t pid, int flavor, void *arg); }
693#if SOCKETS
3e170ce0
A
694447 AUE_CONNECT ALL { int connectx(int socket, const sa_endpoints_t *endpoints, sae_associd_t associd, unsigned int flags, const struct iovec *iov, unsigned int iovcnt, size_t *len, sae_connid_t *connid); }
695448 AUE_NULL ALL { int disconnectx(int s, sae_associd_t aid, sae_connid_t cid); }
696449 AUE_NULL ALL { int peeloff(int s, sae_associd_t aid); }
39236c6e
A
697450 AUE_SOCKET ALL { int socket_delegate(int domain, int type, int protocol, pid_t epid); }
698#else
699447 AUE_NULL ALL { int nosys(void); }
700448 AUE_NULL ALL { int nosys(void); }
701449 AUE_NULL ALL { int nosys(void); }
702450 AUE_NULL ALL { int nosys(void); }
703#endif /* SOCKETS */
39236c6e 704451 AUE_NULL ALL { int telemetry(uint64_t cmd, uint64_t deadline, uint64_t interval, uint64_t leeway, uint64_t arg4, uint64_t arg5) NO_SYSCALL_STUB; }
39236c6e
A
705#if CONFIG_PROC_UUID_POLICY
706452 AUE_NULL ALL { int proc_uuid_policy(uint32_t operation, uuid_t uuid, size_t uuidlen, uint32_t flags); }
707#else
708452 AUE_NULL ALL { int nosys(void); }
709#endif
710#if CONFIG_MEMORYSTATUS
711453 AUE_NULL ALL { int memorystatus_get_level(user_addr_t level); }
712#else
713453 AUE_NULL ALL { int nosys(void); }
714#endif
715454 AUE_NULL ALL { int system_override(uint64_t timeout, uint64_t flags); }
716455 AUE_NULL ALL { int vfs_purge(void); }
fe8ab488
A
717456 AUE_NULL ALL { int sfi_ctl(uint32_t operation, uint32_t sfi_class, uint64_t time, uint64_t *out_time) NO_SYSCALL_STUB; }
718457 AUE_NULL ALL { int sfi_pidctl(uint32_t operation, pid_t pid, uint32_t sfi_flags, uint32_t *out_sfi_flags) NO_SYSCALL_STUB; }
719#if CONFIG_COALITIONS
720458 AUE_NULL ALL { int coalition(uint32_t operation, uint64_t *cid, uint32_t flags) NO_SYSCALL_STUB; }
721459 AUE_NULL ALL { int coalition_info(uint32_t flavor, uint64_t *cid, void *buffer, size_t *bufsize) NO_SYSCALL_STUB; }
722#else
723458 AUE_NULL ALL { int enosys(void); }
724459 AUE_NULL ALL { int enosys(void); }
725#endif /* COALITIONS */
726#if NECP
39037602 727460 AUE_NECP ALL { int necp_match_policy(uint8_t *parameters, size_t parameters_size, struct necp_aggregate_result *returned_result); }
fe8ab488
A
728#else
729460 AUE_NULL ALL { int nosys(void); }
730#endif /* NECP */
731461 AUE_GETATTRLISTBULK ALL { int getattrlistbulk(int dirfd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, uint64_t options); }
39037602 732462 AUE_CLONEFILEAT ALL { int clonefileat(int src_dirfd, user_addr_t src, int dst_dirfd, user_addr_t dst, uint32_t flags); }
fe8ab488
A
733463 AUE_OPENAT_RWTC ALL { int openat(int fd, user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
734464 AUE_OPENAT_RWTC ALL { int openat_nocancel(int fd, user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
735465 AUE_RENAMEAT ALL { int renameat(int fromfd, char *from, int tofd, char *to) NO_SYSCALL_STUB; }
736466 AUE_FACCESSAT ALL { int faccessat(int fd, user_addr_t path, int amode, int flag); }
737467 AUE_FCHMODAT ALL { int fchmodat(int fd, user_addr_t path, int mode, int flag); }
738468 AUE_FCHOWNAT ALL { int fchownat(int fd, user_addr_t path, uid_t uid,gid_t gid, int flag); }
739469 AUE_FSTATAT ALL { int fstatat(int fd, user_addr_t path, user_addr_t ub, int flag); }
740470 AUE_FSTATAT ALL { int fstatat64(int fd, user_addr_t path, user_addr_t ub, int flag); }
741471 AUE_LINKAT ALL { int linkat(int fd1, user_addr_t path, int fd2, user_addr_t link, int flag); }
742472 AUE_UNLINKAT ALL { int unlinkat(int fd, user_addr_t path, int flag) NO_SYSCALL_STUB; }
743473 AUE_READLINKAT ALL { int readlinkat(int fd, user_addr_t path, user_addr_t buf, size_t bufsize); }
744474 AUE_SYMLINKAT ALL { int symlinkat(user_addr_t *path1, int fd, user_addr_t path2); }
745475 AUE_MKDIRAT ALL { int mkdirat(int fd, user_addr_t path, int mode); }
746476 AUE_GETATTRLISTAT ALL { int getattrlistat(int fd, const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
747477 AUE_NULL ALL { int proc_trace_log(pid_t pid, uint64_t uniqueid); }
748478 AUE_NULL ALL { int bsdthread_ctl(user_addr_t cmd, user_addr_t arg1, user_addr_t arg2, user_addr_t arg3) NO_SYSCALL_STUB; }
749479 AUE_OPENBYID_RWT ALL { int openbyid_np(user_addr_t fsid, user_addr_t objid, int oflags); }
750#if SOCKETS
751480 AUE_NULL ALL { user_ssize_t recvmsg_x(int s, struct msghdr_x *msgp, u_int cnt, int flags); }
752481 AUE_NULL ALL { user_ssize_t sendmsg_x(int s, struct msghdr_x *msgp, u_int cnt, int flags); }
753#else
754480 AUE_NULL ALL { int nosys(void); }
755481 AUE_NULL ALL { int nosys(void); }
756#endif /* SOCKETS */
757482 AUE_NULL ALL { uint64_t thread_selfusage(void) NO_SYSCALL_STUB; }
758#if CONFIG_CSR
759483 AUE_NULL ALL { int csrctl(uint32_t op, user_addr_t useraddr, user_addr_t usersize) NO_SYSCALL_STUB; }
760#else
761483 AUE_NULL ALL { int enosys(void); }
762#endif /* CSR */
5ba3f43e 763484 AUE_NULL ALL { int guarded_open_dprotected_np(user_addr_t path, const guardid_t *guard, u_int guardflags, int flags, int dpclass, int dpflags, int mode) NO_SYSCALL_STUB; }
fe8ab488
A
764485 AUE_NULL ALL { user_ssize_t guarded_write_np(int fd, const guardid_t *guard, user_addr_t cbuf, user_size_t nbyte); }
765486 AUE_PWRITE ALL { user_ssize_t guarded_pwrite_np(int fd, const guardid_t *guard, user_addr_t buf, user_size_t nbyte, off_t offset); }
3e170ce0 766487 AUE_WRITEV ALL { user_ssize_t guarded_writev_np(int fd, const guardid_t *guard, struct iovec *iovp, int iovcnt); }
39037602 767488 AUE_RENAMEAT ALL { int renameatx_np(int fromfd, char *from, int tofd, char *to, u_int flags) NO_SYSCALL_STUB; }
fe8ab488
A
768#if CONFIG_CODE_DECRYPTION
769489 AUE_MPROTECT ALL { int mremap_encrypted(caddr_t addr, size_t len, uint32_t cryptid, uint32_t cputype, uint32_t cpusubtype); }
770#else
771489 AUE_NULL ALL { int enosys(void); }
772#endif
3e170ce0 773#if NETWORKING
39037602 774490 AUE_NETAGENT ALL { int netagent_trigger(uuid_t agent_uuid, size_t agent_uuidlen); }
3e170ce0
A
775#else
776490 AUE_NULL ALL { int nosys(void); }
777#endif /* NETWORKING */
778491 AUE_STACKSNAPSHOT ALL { int stack_snapshot_with_config(int stackshot_config_version, user_addr_t stackshot_config, size_t stackshot_config_size) NO_SYSCALL_STUB; }
779#if CONFIG_TELEMETRY
780492 AUE_STACKSNAPSHOT ALL { int microstackshot(user_addr_t tracebuf, uint32_t tracebuf_size, uint32_t flags) NO_SYSCALL_STUB; }
781#else
782492 AUE_NULL ALL { int enosys(void); }
783#endif /* CONFIG_TELEMETRY */
813fb2f6 784#if PGO
3e170ce0 785493 AUE_NULL ALL { user_ssize_t grab_pgo_data (user_addr_t uuid, int flags, user_addr_t buffer, user_ssize_t size); }
813fb2f6
A
786#else
787493 AUE_NULL ALL { int enosys(void); }
788#endif
490019cf
A
789#if CONFIG_PERSONAS
790494 AUE_PERSONA ALL { int persona(uint32_t operation, uint32_t flags, struct kpersona_info *info, uid_t *id, size_t *idlen) NO_SYSCALL_STUB; }
791#else
3e170ce0 792494 AUE_NULL ALL { int enosys(void); }
490019cf 793#endif
3e170ce0
A
794495 AUE_NULL ALL { int enosys(void); }
795496 AUE_NULL ALL { int enosys(void); }
39037602 796497 AUE_NULL ALL { int enosys(void); }
3e170ce0
A
797498 AUE_NULL ALL { int enosys(void); }
798499 AUE_NULL ALL { int work_interval_ctl(uint32_t operation, uint64_t work_interval_id, void *arg, size_t len) NO_SYSCALL_STUB; }
39037602
A
799500 AUE_NULL ALL { int getentropy(void *buffer, size_t size); }
800#if NECP
801501 AUE_NECP ALL { int necp_open(int flags); } }
802502 AUE_NECP ALL { int necp_client_action(int necp_fd, uint32_t action, uuid_t client_id, size_t client_id_len, uint8_t *buffer, size_t buffer_size); }
803#else
804501 AUE_NULL ALL { int enosys(void); }
805502 AUE_NULL ALL { int enosys(void); }
806#endif /* NECP */
807503 AUE_NULL ALL { int enosys(void); }
808504 AUE_NULL ALL { int enosys(void); }
809505 AUE_NULL ALL { int enosys(void); }
810506 AUE_NULL ALL { int enosys(void); }
811507 AUE_NULL ALL { int enosys(void); }
812508 AUE_NULL ALL { int enosys(void); }
813509 AUE_NULL ALL { int enosys(void); }
814510 AUE_NULL ALL { int enosys(void); }
815511 AUE_NULL ALL { int enosys(void); }
816512 AUE_NULL ALL { int enosys(void); }
817513 AUE_NULL ALL { int enosys(void); }
818514 AUE_NULL ALL { int enosys(void); }
819515 AUE_NULL ALL { int ulock_wait(uint32_t operation, void *addr, uint64_t value, uint32_t timeout) NO_SYSCALL_STUB; }
820516 AUE_NULL ALL { int ulock_wake(uint32_t operation, void *addr, uint64_t wake_value) NO_SYSCALL_STUB; }
821517 AUE_FCLONEFILEAT ALL { int fclonefileat(int src_fd, int dst_dirfd, user_addr_t dst, uint32_t flags); }
822518 AUE_NULL ALL { int fs_snapshot(uint32_t op, int dirfd, user_addr_t name1, user_addr_t name2, user_addr_t data, uint32_t flags) NO_SYSCALL_STUB; }
823519 AUE_NULL ALL { int enosys(void); }
824520 AUE_KILL ALL { int terminate_with_payload(int pid, uint32_t reason_namespace, uint64_t reason_code, void *payload, uint32_t payload_size, const char *reason_string, uint64_t reason_flags) NO_SYSCALL_STUB; }
825521 AUE_EXIT ALL { void abort_with_payload(uint32_t reason_namespace, uint64_t reason_code, void *payload, uint32_t payload_size, const char *reason_string, uint64_t reason_flags) NO_SYSCALL_STUB; }
5ba3f43e
A
826#if NECP
827522 AUE_NECP ALL { int necp_session_open(int flags); } }
828523 AUE_NECP ALL { int necp_session_action(int necp_fd, uint32_t action, uint8_t *in_buffer, size_t in_buffer_length, uint8_t *out_buffer, size_t out_buffer_length); }
829#else /* NECP */
830522 AUE_NULL ALL { int enosys(void); }
831523 AUE_NULL ALL { int enosys(void); }
832#endif /* NECP */
833524 AUE_SETATTRLISTAT ALL { int setattrlistat(int fd, const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, uint32_t options); }
834525 AUE_NET ALL { int net_qos_guideline(struct net_qos_param *param, uint32_t param_len); }
835526 AUE_FMOUNT ALL { int fmount(const char *type, int fd, int flags, void *data); }
836527 AUE_NULL ALL { int ntp_adjtime(struct timex *tp); }
837528 AUE_NULL ALL { int ntp_gettime(struct ntptimeval *ntvp); }
838529 AUE_NULL ALL { int os_fault_with_payload(uint32_t reason_namespace, uint64_t reason_code, void *payload, uint32_t payload_size, const char *reason_string, uint64_t reason_flags); }
d9a64523
A
839#if CONFIG_WORKQUEUE
840530 AUE_WORKLOOPCTL ALL { int kqueue_workloop_ctl(user_addr_t cmd, uint64_t options, user_addr_t addr, size_t sz) NO_SYSCALL_STUB; }
841#else
d26ffc64 842530 AUE_NULL ALL { int enosys(void); }
d9a64523 843#endif // CONFIG_WORKQUEUE
d26ffc64 844531 AUE_NULL ALL { int enosys(void); }