xref: /xnu-10002.81.5/bsd/kern/syscalls.master (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1;/*
2;	derived from: FreeBSD @(#)syscalls.master	8.2 (Berkeley) 1/13/94
3;
4; System call name/number master file.
5; This is file processed by .../xnu/bsd/kern/makesyscalls.sh and creates:
6;	.../xnu/bsd/kern/init_sysent.c
7;	.../xnu/bsd/kern/syscalls.c
8;	.../xnu/bsd/sys/syscall.h
9;	.../xnu/bsd/sys/sysproto.h
10;	.../xnu/bsd/security/audit_syscalls.c
11
12; Columns -> | Number Audit Files | { Name and Args } | { Comments }
13;	Number:  	system call number, must be in order
14;	Audit:		the audit event associated with the system call
15;			A value of AUE_NULL means no auditing, but it also means that
16;			there is no audit event for the call at this time. For the
17;			case where the event exists, but we don't want auditing, the
18;			event should be #defined to AUE_NULL in audit_kevents.h.
19;	Files:		with files to generate - "ALL" or any combo of:
20;					"T" for syscall table (in init_sysent.c)
21;					"N" for syscall names (in syscalls.c)
22;					"H" for syscall headers (in syscall.h)
23;					"P" for syscall prototypes (in sysproto.h)
24;	Name and Args:	function prototype, optionally followed by
25;			NO_SYSCALL_STUB (which mean no system call stub will
26;			be generated in libSystem) and ending with a semicolon.
27;			(Note: functions prefixed by double-underbar are
28;			automatically given the NO_SYSCALL_STUB attribute.)
29;	Comments:  	additional comments about the sys call copied to output files
30
31; `#ifdef`'s, `#include`'s, `#if`'s etc. are copied to all output files.
32
33; N.B.: makesyscalls.sh and createsyscalls.pl must be updated to account
34; for any new argument types.
35;*/
36
37#include <sys/appleapiopts.h>
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/types.h>
41#include <sys/sysent.h>
42#include <sys/sysproto.h>
43#include <nfs/nfs_conf.h>
44
450	AUE_NULL	ALL	{ int nosys(void); }   { indirect syscall }
461	AUE_EXIT	ALL	{ void exit(int rval) NO_SYSCALL_STUB; }
472	AUE_FORK	ALL	{ int fork(void) NO_SYSCALL_STUB; }
483	AUE_NULL	ALL	{ user_ssize_t read(int fd, user_addr_t cbuf, user_size_t nbyte); }
494	AUE_NULL	ALL	{ user_ssize_t write(int fd, user_addr_t cbuf, user_size_t nbyte); }
505	AUE_OPEN_RWTC	ALL	{ int open(user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
516	AUE_CLOSE	ALL	{ int sys_close(int fd); }
527	AUE_WAIT4	ALL	{ int wait4(int pid, user_addr_t status, int options, user_addr_t rusage) NO_SYSCALL_STUB; }
538	AUE_NULL	ALL	{ int enosys(void); }   { old creat }
549	AUE_LINK	ALL	{ int link(user_addr_t path, user_addr_t link); }
5510	AUE_UNLINK	ALL	{ int unlink(user_addr_t path) NO_SYSCALL_STUB; }
5611	AUE_NULL	ALL	{ int enosys(void); }   { old execv }
5712	AUE_CHDIR	ALL	{ int chdir(user_addr_t path); }
5813	AUE_FCHDIR	ALL	{ int fchdir(int fd); }
5914	AUE_MKNOD	ALL	{ int mknod(user_addr_t path, int mode, int dev); }
6015	AUE_CHMOD	ALL	{ int chmod(user_addr_t path, int mode) NO_SYSCALL_STUB; }
6116	AUE_CHOWN	ALL	{ int chown(user_addr_t path, int uid, int gid); }
6217	AUE_NULL	ALL	{ int enosys(void); }   { old break }
6318	AUE_GETFSSTAT	ALL	{ int getfsstat(user_addr_t buf, int bufsize, int flags); }
6419	AUE_NULL	ALL	{ int enosys(void); }   { old lseek }
6520	AUE_GETPID	ALL	{ int getpid(void); }
6621	AUE_NULL	ALL	{ int enosys(void); }   { old mount }
6722	AUE_NULL	ALL	{ int enosys(void); }   { old umount }
6823	AUE_SETUID	ALL	{ int setuid(uid_t uid); }
6924	AUE_GETUID	ALL	{ int getuid(void); }
7025	AUE_GETEUID	ALL	{ int geteuid(void); }
7126	AUE_PTRACE	ALL	{ int ptrace(int req, pid_t pid, caddr_t addr, int data); }
72#if SOCKETS
7327	AUE_RECVMSG	ALL	{ int recvmsg(int s, struct msghdr *msg, int flags) NO_SYSCALL_STUB; }
7428	AUE_SENDMSG	ALL	{ int sendmsg(int s, caddr_t msg, int flags) NO_SYSCALL_STUB; }
7529	AUE_RECVFROM	ALL	{ int recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, int *fromlenaddr) NO_SYSCALL_STUB; }
7630	AUE_ACCEPT	ALL	{ int accept(int s, caddr_t name, socklen_t	*anamelen) NO_SYSCALL_STUB; }
7731	AUE_GETPEERNAME	ALL	{ int getpeername(int fdes, caddr_t asa, socklen_t *alen) NO_SYSCALL_STUB; }
7832	AUE_GETSOCKNAME	ALL	{ int getsockname(int fdes, caddr_t asa, socklen_t *alen) NO_SYSCALL_STUB; }
79#else
8027	AUE_NULL	ALL	{ int nosys(void); }
8128	AUE_NULL	ALL	{ int nosys(void); }
8229	AUE_NULL	ALL	{ int nosys(void); }
8330	AUE_NULL	ALL	{ int nosys(void); }
8431	AUE_NULL	ALL	{ int nosys(void); }
8532	AUE_NULL	ALL	{ int nosys(void); }
86#endif /* SOCKETS */
8733	AUE_ACCESS	ALL	{ int access(user_addr_t path, int flags); }
8834	AUE_CHFLAGS	ALL	{ int chflags(char *path, int flags); }
8935	AUE_FCHFLAGS	ALL	{ int fchflags(int fd, int flags); }
9036	AUE_SYNC	ALL	{ int sync(void); }
9137	AUE_KILL	ALL	{ int kill(int pid, int signum, int posix) NO_SYSCALL_STUB; }
9238	AUE_NULL	ALL	{ int sys_crossarch_trap(uint32_t name) NO_SYSCALL_STUB; }
9339	AUE_GETPPID	ALL	{ int getppid(void); }
9440	AUE_NULL	ALL	{ int nosys(void); }   { old lstat }
9541	AUE_DUP		ALL	{ int sys_dup(u_int fd); }
9642	AUE_PIPE	ALL	{ int pipe(void); }
9743	AUE_GETEGID	ALL	{ int getegid(void); }
9844	AUE_NULL	ALL	{ int nosys(void); } { old profil }
9945	AUE_NULL	ALL	{ int nosys(void); } { old ktrace }
10046	AUE_SIGACTION	ALL	{ int sigaction(int signum, struct __sigaction *nsa, struct sigaction *osa) NO_SYSCALL_STUB; }
10147	AUE_GETGID	ALL	{ int getgid(void); }
10248	AUE_SIGPROCMASK	ALL	{ int sigprocmask(int how, user_addr_t mask, user_addr_t omask); }
10349	AUE_GETLOGIN	ALL	{ int getlogin(char *namebuf, u_int namelen) NO_SYSCALL_STUB; }
10450	AUE_SETLOGIN	ALL	{ int setlogin(char *namebuf) NO_SYSCALL_STUB; }
10551	AUE_ACCT	ALL	{ int acct(char *path); }
10652	AUE_SIGPENDING	ALL	{ int sigpending(struct sigvec *osv); }
10753	AUE_SIGALTSTACK	ALL	{ int sigaltstack(struct sigaltstack *nss, struct sigaltstack *oss) NO_SYSCALL_STUB ; }
10854	AUE_IOCTL	ALL	{ int ioctl(int fd, u_long com, caddr_t data) NO_SYSCALL_STUB; }
10955	AUE_REBOOT	ALL	{ int reboot(int opt, char *msg) NO_SYSCALL_STUB; }
11056	AUE_REVOKE	ALL	{ int revoke(char *path); }
11157	AUE_SYMLINK	ALL	{ int symlink(char *path, char *link); }
11258	AUE_READLINK	ALL	{ int readlink(char *path, char *buf, int count); }
11359	AUE_EXECVE	ALL	{ int execve(char *fname, char **argp, char **envp) NO_SYSCALL_STUB; }
11460	AUE_UMASK	ALL	{ int umask(int newmask); }
11561	AUE_CHROOT	ALL	{ int chroot(user_addr_t path); }
11662	AUE_NULL	ALL	{ int nosys(void); }   { old fstat }
11763	AUE_NULL	ALL	{ int nosys(void); }   { used internally and reserved }
11864	AUE_NULL	ALL	{ int nosys(void); }   { old getpagesize }
11965	AUE_MSYNC	ALL	{ int msync(caddr_t addr, size_t len, int flags) NO_SYSCALL_STUB; }
120#if CONFIG_VFORK
12166	AUE_VFORK	ALL	{ int vfork(void) NO_SYSCALL_STUB; }
122#else
12366	AUE_NULL	ALL	{ int nosys(void); }   { old vfork }
124#endif
12567	AUE_NULL	ALL	{ int nosys(void); }   { old vread }
12668	AUE_NULL	ALL	{ int nosys(void); }   { old vwrite }
12769	AUE_NULL	ALL	{ int nosys(void); }   { old sbrk }
12870	AUE_NULL	ALL	{ int nosys(void); }   { old sstk }
12971	AUE_NULL	ALL	{ int nosys(void); }   { old mmap }
13072	AUE_NULL	ALL	{ int nosys(void); }   { old vadvise }
13173	AUE_MUNMAP	ALL	{ int munmap(caddr_t addr, size_t len) NO_SYSCALL_STUB; }
13274	AUE_MPROTECT	ALL	{ int mprotect(caddr_t addr, size_t len, int prot) NO_SYSCALL_STUB; }
13375	AUE_MADVISE	ALL	{ int madvise(caddr_t addr, size_t len, int behav); }
13476	AUE_NULL	ALL	{ int nosys(void); }   { old vhangup }
13577	AUE_NULL	ALL	{ int nosys(void); }   { old vlimit }
13678	AUE_MINCORE	ALL	{ int mincore(user_addr_t addr, user_size_t len, user_addr_t vec); }
13779	AUE_GETGROUPS	ALL	{ int getgroups(u_int gidsetsize, gid_t *gidset); }
13880	AUE_SETGROUPS	ALL	{ int setgroups(u_int gidsetsize, gid_t *gidset); }
13981	AUE_GETPGRP	ALL	{ int getpgrp(void); }
14082	AUE_SETPGRP	ALL	{ int setpgid(int pid, int pgid); }
14183	AUE_SETITIMER	ALL	{ int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }
14284	AUE_NULL	ALL	{ int nosys(void); }   { old wait }
14385	AUE_SWAPON 	ALL	{ int swapon(void); }
14486	AUE_GETITIMER	ALL	{ int getitimer(u_int which, struct itimerval *itv); }
14587	AUE_NULL	ALL	{ int nosys(void); }   { old gethostname }
14688	AUE_NULL	ALL	{ int nosys(void); }   { old sethostname }
14789	AUE_GETDTABLESIZE	ALL	{ int sys_getdtablesize(void); }
14890	AUE_DUP2	ALL	{ int sys_dup2(u_int from, u_int to); }
14991	AUE_NULL	ALL	{ int nosys(void); }   { old getdopt }
15092	AUE_FCNTL	ALL	{ int sys_fcntl(int fd, int cmd, long arg) NO_SYSCALL_STUB; }
15193	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; }
15294	AUE_NULL	ALL	{ int nosys(void); }   { old setdopt }
15395	AUE_FSYNC	ALL	{ int fsync(int fd); }
15496	AUE_SETPRIORITY	ALL	{ int setpriority(int which, id_t who, int prio) NO_SYSCALL_STUB; }
155#if SOCKETS
15697	AUE_SOCKET	ALL	{ int socket(int domain, int type, int protocol); }
15798	AUE_CONNECT	ALL	{ int connect(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
158#else
15997	AUE_NULL	ALL	{ int nosys(void); }
16098	AUE_NULL	ALL	{ int nosys(void); }
161#endif /* SOCKETS */
16299	AUE_NULL	ALL	{ int nosys(void); }   { old accept }
163100	AUE_GETPRIORITY	ALL	{ int getpriority(int which, id_t who); }
164101	AUE_NULL	ALL	{ int nosys(void); }   { old send }
165102	AUE_NULL	ALL	{ int nosys(void); }   { old recv }
166103	AUE_NULL	ALL	{ int nosys(void); }   { old sigreturn }
167#if SOCKETS
168104	AUE_BIND	ALL	{ int bind(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
169105	AUE_SETSOCKOPT	ALL	{ int setsockopt(int s, int level, int name, caddr_t val, socklen_t valsize); }
170106	AUE_LISTEN	ALL	{ int listen(int s, int backlog) NO_SYSCALL_STUB; }
171#else
172104	AUE_NULL	ALL	{ int nosys(void); }
173105	AUE_NULL	ALL	{ int nosys(void); }
174106	AUE_NULL	ALL	{ int nosys(void); }
175#endif /* SOCKETS */
176107	AUE_NULL	ALL	{ int nosys(void); }   { old vtimes }
177108	AUE_NULL	ALL	{ int nosys(void); }   { old sigvec }
178109	AUE_NULL	ALL	{ int nosys(void); }   { old sigblock }
179110	AUE_NULL	ALL	{ int nosys(void); }   { old sigsetmask }
180111	AUE_NULL	ALL	{ int sigsuspend(sigset_t mask) NO_SYSCALL_STUB; }
181112	AUE_NULL	ALL	{ int nosys(void); }   { old sigstack }
182#if SOCKETS
183113	AUE_NULL	ALL	{ int nosys(void); }   { old recvmsg }
184114	AUE_NULL	ALL	{ int nosys(void); }   { old sendmsg }
185#else
186113	AUE_NULL	ALL	{ int nosys(void); }
187114	AUE_NULL	ALL	{ int nosys(void); }
188#endif /* SOCKETS */
189115	AUE_NULL	ALL	{ int nosys(void); }   { old vtrace }
190116	AUE_GETTIMEOFDAY	ALL	{ int gettimeofday(struct timeval *tp, struct timezone *tzp, uint64_t *mach_absolute_time) NO_SYSCALL_STUB; }
191117	AUE_GETRUSAGE	ALL	{ int getrusage(int who, struct rusage *rusage); }
192#if SOCKETS
193118	AUE_GETSOCKOPT	ALL	{ int getsockopt(int s, int level, int name, caddr_t val, socklen_t *avalsize); }
194#else
195118	AUE_NULL	ALL	{ int nosys(void); }
196#endif /* SOCKETS */
197119	AUE_NULL	ALL	{ int nosys(void); }   { old resuba }
198120	AUE_READV	ALL	{ user_ssize_t readv(int fd, struct iovec *iovp, u_int iovcnt); }
199121	AUE_WRITEV	ALL	{ user_ssize_t writev(int fd, struct iovec *iovp, u_int iovcnt); }
200122	AUE_SETTIMEOFDAY	ALL	{ int settimeofday(struct timeval *tv, struct timezone *tzp) NO_SYSCALL_STUB; }
201123	AUE_FCHOWN	ALL	{ int fchown(int fd, int uid, int gid); }
202124	AUE_FCHMOD	ALL	{ int fchmod(int fd, int mode) NO_SYSCALL_STUB; }
203125	AUE_NULL	ALL	{ int nosys(void); }   { old recvfrom }
204126	AUE_SETREUID	ALL	{ int setreuid(uid_t ruid, uid_t euid) NO_SYSCALL_STUB; }
205127	AUE_SETREGID	ALL	{ int setregid(gid_t rgid, gid_t egid) NO_SYSCALL_STUB; }
206128	AUE_RENAME	ALL	{ int rename(char *from, char *to) NO_SYSCALL_STUB; }
207129	AUE_NULL	ALL	{ int nosys(void); }   { old truncate }
208130	AUE_NULL	ALL	{ int nosys(void); }   { old ftruncate }
209131	AUE_FLOCK	ALL	{ int sys_flock(int fd, int how); }
210132	AUE_MKFIFO	ALL	{ int mkfifo(user_addr_t path, int mode); }
211#if SOCKETS
212133	AUE_SENDTO	ALL	{ int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, socklen_t tolen) NO_SYSCALL_STUB; }
213134	AUE_SHUTDOWN	ALL	{ int shutdown(int s, int how); }
214135	AUE_SOCKETPAIR	ALL	{ int socketpair(int domain, int type, int protocol, int *rsv) NO_SYSCALL_STUB; }
215#else
216133	AUE_NULL	ALL	{ int nosys(void); }
217134	AUE_NULL	ALL	{ int nosys(void); }
218135	AUE_NULL	ALL	{ int nosys(void); }
219#endif /* SOCKETS */
220136	AUE_MKDIR	ALL	{ int mkdir(user_addr_t path, int mode); }
221137	AUE_RMDIR	ALL	{ int rmdir(char *path) NO_SYSCALL_STUB; }
222138	AUE_UTIMES	ALL	{ int utimes(char *path, struct timeval *tptr); }
223139	AUE_FUTIMES	ALL	{ int futimes(int fd, struct timeval *tptr); }
224140	AUE_ADJTIME	ALL	{ int adjtime(struct timeval *delta, struct timeval *olddelta); }
225141	AUE_NULL	ALL	{ int nosys(void); }   { old getpeername }
226142	AUE_SYSCTL	ALL	{ int gethostuuid(unsigned char *uuid_buf, const struct timespec *timeoutp) NO_SYSCALL_STUB; }
227143	AUE_NULL	ALL	{ int nosys(void); }   { old sethostid 	}
228144	AUE_NULL	ALL	{ int nosys(void); }   { old getrlimit }
229145	AUE_NULL	ALL	{ int nosys(void); }   { old setrlimit }
230146	AUE_NULL	ALL	{ int nosys(void); }   { old killpg }
231147	AUE_SETSID	ALL	{ int setsid(void); }
232148	AUE_NULL	ALL	{ int nosys(void); }   { old setquota }
233149	AUE_NULL	ALL	{ int nosys(void); }   { old qquota }
234150	AUE_NULL	ALL	{ int nosys(void); }   { old getsockname }
235151	AUE_GETPGID	ALL	{ int getpgid(pid_t pid); }
236152	AUE_SETPRIVEXEC	ALL	{ int setprivexec(int flag); }
237153	AUE_PREAD	ALL	{ user_ssize_t pread(int fd, user_addr_t buf, user_size_t nbyte, off_t offset); }
238154	AUE_PWRITE	ALL	{ user_ssize_t pwrite(int fd, user_addr_t buf, user_size_t nbyte, off_t offset); }
239
240#if NFSSERVER	/* XXX */
241155	AUE_NFS_SVC	ALL	{ int nfssvc(int flag, caddr_t argp); }
242#else
243155	AUE_NULL	ALL	{ int nosys(void); }
244#endif
245
246156	AUE_NULL	ALL	{ int nosys(void); }   { old getdirentries }
247157	AUE_STATFS	ALL	{ int statfs(char *path, struct statfs *buf); }
248158	AUE_FSTATFS	ALL	{ int fstatfs(int fd, struct statfs *buf); }
249159	AUE_UNMOUNT	ALL	{ int unmount(user_addr_t path, int flags); }
250160	AUE_NULL	ALL	{ int nosys(void); }   { old async_daemon }
251
252#if NFSSERVER	/* XXX */
253161	AUE_NFS_GETFH	ALL	{ int getfh(char *fname, fhandle_t *fhp); }
254#else
255161	AUE_NULL	ALL	{ int nosys(void); }
256#endif
257
258162	AUE_NULL	ALL	{ int nosys(void); }   { old getdomainname }
259163	AUE_NULL	ALL	{ int nosys(void); }   { old setdomainname }
260164	AUE_NULL	ALL	{ int nosys(void); }
261165	AUE_QUOTACTL	ALL	{ int quotactl(const char *path, int cmd, int uid, caddr_t arg); }
262166	AUE_NULL	ALL	{ int nosys(void); }   { old exportfs }
263167	AUE_MOUNT	ALL	{ int mount(char *type, char *path, int flags, caddr_t data); }
264168	AUE_NULL	ALL	{ int nosys(void); }   { old ustat }
265169	AUE_CSOPS	ALL	{ int csops(pid_t pid, uint32_t ops, user_addr_t useraddr, user_size_t usersize); }
266170	AUE_CSOPS	ALL	{ int csops_audittoken(pid_t pid, uint32_t ops, user_addr_t useraddr, user_size_t usersize, user_addr_t uaudittoken); }
267171	AUE_NULL	ALL	{ int nosys(void); }   { old wait3 }
268172	AUE_NULL	ALL	{ int nosys(void); }   { old rpause	}
269173	AUE_WAITID	ALL	{ int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options); }
270174	AUE_NULL	ALL	{ int nosys(void); }   { old getdents }
271175	AUE_NULL	ALL	{ int nosys(void); }   { old gc_control }
272176	AUE_NULL	ALL	{ int nosys(void); }   { old add_profil }
273177	AUE_NULL	ALL	{ int kdebug_typefilter(void** addr, size_t* size) NO_SYSCALL_STUB; }
274178	AUE_NULL	ALL 	{ uint64_t kdebug_trace_string(uint32_t debugid, uint64_t str_id, const char *str) NO_SYSCALL_STUB; }
275179	AUE_NULL	ALL 	{ int kdebug_trace64(uint32_t code, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4) NO_SYSCALL_STUB; }
276180	AUE_NULL	ALL 	{ int kdebug_trace(uint32_t code, u_long arg1, u_long arg2, u_long arg3, u_long arg4) NO_SYSCALL_STUB; }
277181	AUE_SETGID	ALL	{ int setgid(gid_t gid); }
278182	AUE_SETEGID	ALL	{ int setegid(gid_t egid); }
279183	AUE_SETEUID	ALL	{ int seteuid(uid_t euid); }
280184	AUE_SIGRETURN	ALL	{ int sigreturn(struct ucontext *uctx, int infostyle, user_addr_t token) NO_SYSCALL_STUB; }
281185 AUE_NULL    ALL { int sys_panic_with_data(uuid_t uuid, void *addr, uint32_t len, uint32_t flags, const char *msg); }
282186	AUE_NULL	ALL	{ int thread_selfcounts(uint32_t kind, user_addr_t buf, user_size_t size); }
283187	AUE_FDATASYNC	ALL	{ int fdatasync(int fd); }
284188	AUE_STAT	ALL	{ int stat(user_addr_t path, user_addr_t ub); }
285189	AUE_FSTAT	ALL	{ int sys_fstat(int fd, user_addr_t ub); }
286190	AUE_LSTAT	ALL	{ int lstat(user_addr_t path, user_addr_t ub); }
287191	AUE_PATHCONF	ALL	{ int pathconf(char *path, int name); }
288192	AUE_FPATHCONF	ALL	{ int sys_fpathconf(int fd, int name); }
289193	AUE_NULL	ALL	{ int nosys(void); }	{ old getfsstat }
290194	AUE_GETRLIMIT	ALL	{ int getrlimit(u_int which, struct rlimit *rlp) NO_SYSCALL_STUB; }
291195	AUE_SETRLIMIT	ALL	{ int setrlimit(u_int which, struct rlimit *rlp) NO_SYSCALL_STUB; }
292196	AUE_GETDIRENTRIES	ALL	{ int getdirentries(int fd, char *buf, u_int count, long *basep); }
293197	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; }
294198	AUE_NULL	ALL	{ int nosys(void); } 	{ old __syscall }
295199	AUE_LSEEK	ALL	{ off_t lseek(int fd, off_t offset, int whence); }
296200	AUE_TRUNCATE	ALL	{ int truncate(char *path, off_t length); }
297201	AUE_FTRUNCATE	ALL	{ int ftruncate(int fd, off_t length); }
298202	AUE_SYSCTL	ALL 	{ int sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen) NO_SYSCALL_STUB; }
299203	AUE_MLOCK	ALL	{ int mlock(caddr_t addr, size_t len); }
300204	AUE_MUNLOCK	ALL	{ int munlock(caddr_t addr, size_t len); }
301205	AUE_UNDELETE	ALL	{ int undelete(user_addr_t path); }
302
303206	AUE_NULL	ALL	{ int nosys(void); } { old ATsocket }
304207	AUE_NULL	ALL	{ int nosys(void); } { old ATgetmsg }
305208	AUE_NULL	ALL	{ int nosys(void); } { old ATputmsg }
306209	AUE_NULL	ALL	{ int nosys(void); } { old ATsndreq }
307210	AUE_NULL	ALL	{ int nosys(void); } { old ATsndrsp }
308211	AUE_NULL	ALL	{ int nosys(void); } { old ATgetreq }
309212	AUE_NULL	ALL	{ int nosys(void); } { old ATgetrsp }
310213	AUE_NULL	ALL	{ int nosys(void); } 	{ Reserved for AppleTalk }
311
312214	AUE_NULL	ALL	{ int nosys(void); }
313215	AUE_NULL	ALL	{ int nosys(void); }
314
315; System Calls 216 - 230 are reserved for calls to support HFS/HFS Plus
316; file system semantics. Currently, we only use 215-227.  The rest is
317; for future expansion in anticipation of new MacOS APIs for HFS Plus.
318; These calls are not conditionalized because while they are specific
319; to HFS semantics, they are not specific to the HFS filesystem.
320; We expect all filesystems to recognize the call and report that it is
321; not supported or to actually implement it.
322
323; 216-> 219 used to be mkcomplex and {f,l}statv variants. They are gone now.
324216	AUE_NULL	ALL	{ int open_dprotected_np(user_addr_t path, int flags, int class, int dpflags, int mode) NO_SYSCALL_STUB; }
325217	AUE_FSGETPATH_EXTENDED	ALL	{ user_ssize_t fsgetpath_ext(user_addr_t buf, size_t bufsize, user_addr_t fsid, uint64_t objid, uint32_t options); }
326218	AUE_NULL	ALL	{ int openat_dprotected_np(int fd, user_addr_t path, int flags, int class, int dpflags, int mode, int authfd) NO_SYSCALL_STUB; }
327219	AUE_NULL	ALL	{ int nosys(void); }	{ old fstatv }
328220	AUE_GETATTRLIST	ALL	{ int getattrlist(const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options) NO_SYSCALL_STUB; }
329221	AUE_SETATTRLIST	ALL	{ int setattrlist(const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options) NO_SYSCALL_STUB; }
330222	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); }
331223	AUE_EXCHANGEDATA	ALL	{ int exchangedata(const char *path1, const char *path2, u_long options); }
332224	AUE_NULL		ALL { int nosys(void); } { old checkuseraccess or fsgetpath }
333225	AUE_SEARCHFS	ALL	{ int searchfs(const char *path, struct fssearchblock *searchblock, uint32_t *nummatches, uint32_t scriptcode, uint32_t options, struct searchstate *state); }
334226	AUE_DELETE	ALL	{ int delete(user_addr_t path) NO_SYSCALL_STUB; }       { private delete (Carbon semantics) }
335227	AUE_COPYFILE	ALL	{ int copyfile(char *from, char *to, int mode, int flags) NO_SYSCALL_STUB; }
336228	AUE_FGETATTRLIST	ALL	{ int fgetattrlist(int fd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
337229	AUE_FSETATTRLIST	ALL	{ int fsetattrlist(int fd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
338230	AUE_POLL	ALL	{ int poll(struct pollfd *fds, u_int nfds, int timeout); }
339231	AUE_NULL	ALL	{ int nosys(void); } { old watchevent }
340232	AUE_NULL	ALL	{ int nosys(void); } { old waitevent }
341233	AUE_NULL	ALL	{ int nosys(void); } { old modwatch }
342234	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); }
343235	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); }
344236	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); }
345237	AUE_FSETXATTR	ALL	{ int fsetxattr(int fd, user_addr_t attrname, user_addr_t value, size_t size, uint32_t position, int options); }
346238	AUE_REMOVEXATTR	ALL	{ int removexattr(user_addr_t path, user_addr_t attrname, int options); }
347239	AUE_FREMOVEXATTR	ALL	{ int fremovexattr(int fd, user_addr_t attrname, int options); }
348240	AUE_LISTXATTR	ALL	{ user_ssize_t listxattr(user_addr_t path, user_addr_t namebuf, size_t bufsize, int options); }
349241	AUE_FLISTXATTR	ALL	{ user_ssize_t flistxattr(int fd, user_addr_t namebuf, size_t bufsize, int options); }
350242	AUE_FSCTL	ALL	{ int fsctl(const char *path, u_long cmd, caddr_t data, u_int options); }
351243	AUE_INITGROUPS	ALL	{ int initgroups(u_int gidsetsize, gid_t *gidset, int gmuid) NO_SYSCALL_STUB; }
352244	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; }
353245	AUE_FFSCTL	ALL	{ int ffsctl(int fd, u_long cmd, caddr_t data, u_int options); }
354246	AUE_NULL	ALL	{ int nosys(void); }
355247	AUE_NULL	ALL	{ int nosys(void); } { old nfsclnt }
356
357#if NFSSERVER	/* XXX */
358248	AUE_FHOPEN	ALL	{ int fhopen(const struct fhandle *u_fhp, int flags); }
359#else
360248	AUE_NULL	ALL	{ int nosys(void); }
361#endif
362
363249	AUE_NULL	ALL	{ int nosys(void); }
364250	AUE_MINHERIT	ALL	{ int minherit(void *addr, size_t len, int inherit); }
365#if SYSV_SEM
366251	AUE_SEMSYS	ALL	{ int semsys(u_int which, int a2, int a3, int a4, int a5) NO_SYSCALL_STUB; }
367#else
368251	AUE_NULL	ALL	{ int nosys(void); }
369#endif
370#if SYSV_MSG
371252	AUE_MSGSYS	ALL	{ int msgsys(u_int which, int a2, int a3, int a4, int a5) NO_SYSCALL_STUB; }
372#else
373252	AUE_NULL	ALL	{ int nosys(void); }
374#endif
375#if SYSV_SHM
376253	AUE_SHMSYS	ALL	{ int shmsys(u_int which, int a2, int a3, int a4) NO_SYSCALL_STUB; }
377#else
378253	AUE_NULL	ALL	{ int nosys(void); }
379#endif
380#if SYSV_SEM
381254	AUE_SEMCTL	ALL	{ int semctl(int semid, int semnum, int cmd, semun_t arg) NO_SYSCALL_STUB; }
382255	AUE_SEMGET	ALL	{ int semget(key_t key, int	nsems, int semflg); }
383256	AUE_SEMOP	ALL	{ int semop(int semid, struct sembuf *sops, int nsops); }
384257	AUE_NULL	ALL	{ int nosys(void); }	{ old semconfig }
385#else
386254	AUE_NULL	ALL	{ int nosys(void); }
387255	AUE_NULL	ALL	{ int nosys(void); }
388256	AUE_NULL	ALL	{ int nosys(void); }
389257	AUE_NULL	ALL	{ int nosys(void); }
390#endif
391#if SYSV_MSG
392258	AUE_MSGCTL	ALL	{ int msgctl(int msqid, int cmd, struct	msqid_ds *buf) NO_SYSCALL_STUB; }
393259	AUE_MSGGET	ALL	{ int msgget(key_t key, int msgflg); }
394260	AUE_MSGSND	ALL	{ int msgsnd(int msqid, void *msgp, size_t msgsz, int msgflg); }
395261	AUE_MSGRCV	ALL	{ user_ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
396#else
397258	AUE_NULL	ALL	{ int nosys(void); }
398259	AUE_NULL	ALL	{ int nosys(void); }
399260	AUE_NULL	ALL	{ int nosys(void); }
400261	AUE_NULL	ALL	{ int nosys(void); }
401#endif
402#if SYSV_SHM
403262	AUE_SHMAT	ALL	{ user_addr_t shmat(int shmid, void *shmaddr, int shmflg); }
404263	AUE_SHMCTL	ALL	{ int shmctl(int shmid, int cmd, struct shmid_ds *buf) NO_SYSCALL_STUB; }
405264	AUE_SHMDT	ALL	{ int shmdt(void *shmaddr); }
406265	AUE_SHMGET	ALL	{ int shmget(key_t key, size_t size, int shmflg); }
407#else
408262	AUE_NULL	ALL	{ int nosys(void); }
409263	AUE_NULL	ALL	{ int nosys(void); }
410264	AUE_NULL	ALL	{ int nosys(void); }
411265	AUE_NULL	ALL	{ int nosys(void); }
412#endif
413266	AUE_SHMOPEN	ALL	{ int shm_open(const char *name, int oflag, int mode) NO_SYSCALL_STUB; }
414267	AUE_SHMUNLINK	ALL	{ int shm_unlink(const char *name); }
415268	AUE_SEMOPEN	ALL	{ user_addr_t sem_open(const char *name, int oflag, int mode, int value) NO_SYSCALL_STUB; }
416269	AUE_SEMCLOSE	ALL	{ int sem_close(sem_t *sem); }
417270	AUE_SEMUNLINK	ALL	{ int sem_unlink(const char *name); }
418271	AUE_SEMWAIT	ALL	{ int sem_wait(sem_t *sem); }
419272	AUE_SEMTRYWAIT	ALL	{ int sem_trywait(sem_t *sem); }
420273	AUE_SEMPOST	ALL	{ int sem_post(sem_t *sem); }
421274	AUE_SYSCTL	ALL 	{ int sys_sysctlbyname(const char *name, size_t namelen, void *old, size_t *oldlenp, void *new, size_t newlen) NO_SYSCALL_STUB; }
422275	AUE_NULL	ALL	{ int enosys(void); } { old sem_init }
423276	AUE_NULL	ALL	{ int enosys(void); } { old sem_destroy }
424277	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; }
425278	AUE_UMASK_EXTENDED	ALL	{ int umask_extended(int newmask, user_addr_t xsecurity) NO_SYSCALL_STUB; }
426279	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; }
427280	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; }
428281	AUE_FSTAT_EXTENDED	ALL	{ int sys_fstat_extended(int fd, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
429282	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; }
430283	AUE_FCHMOD_EXTENDED	ALL	{ int fchmod_extended(int fd, uid_t uid, gid_t gid, int mode, user_addr_t xsecurity) NO_SYSCALL_STUB; }
431284	AUE_ACCESS_EXTENDED	ALL	{ int access_extended(user_addr_t entries, size_t size, user_addr_t results, uid_t uid) NO_SYSCALL_STUB; }
432285	AUE_SETTID	ALL	{ int sys_settid(uid_t uid, gid_t gid) NO_SYSCALL_STUB; }
433286	AUE_GETTID	ALL	{ int gettid(uid_t *uidp, gid_t *gidp) NO_SYSCALL_STUB; }
434287	AUE_SETSGROUPS	ALL	{ int setsgroups(int setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
435288	AUE_GETSGROUPS	ALL	{ int getsgroups(user_addr_t setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
436289	AUE_SETWGROUPS	ALL	{ int setwgroups(int setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
437290	AUE_GETWGROUPS	ALL	{ int getwgroups(user_addr_t setlen, user_addr_t guidset) NO_SYSCALL_STUB; }
438291	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; }
439292	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; }
440#if CONFIG_EXT_RESOLVER
441293	AUE_IDENTITYSVC	ALL	{ int identitysvc(int opcode, user_addr_t message) NO_SYSCALL_STUB; }
442#else
443293	AUE_NULL	ALL	{ int nosys(void); }
444#endif
445294	AUE_NULL	ALL	{ int shared_region_check_np(uint64_t *start_address) NO_SYSCALL_STUB; }
446295	AUE_NULL	ALL	{ int nosys(void); } { old shared_region_map_np }
447296	AUE_NULL	ALL	{ int vm_pressure_monitor(int wait_for_pressure, int nsecs_monitored, uint32_t *pages_reclaimed); }
448#if PSYNCH
449297	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; }
450298	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; }
451299	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; }
452300	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; }
453301	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; }
454302	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; }
455303	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; }
456304	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; }
457305	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; }
458306	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; }
459307	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; }
460308	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; }
461309	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; }
462#else
463297	AUE_NULL	ALL	{ int nosys(void); } { old reset_shared_file }
464298	AUE_NULL	ALL	{ int nosys(void); } { old new_system_shared_regions }
465299	AUE_NULL	ALL	{ int enosys(void); } { old shared_region_map_file_np }
466300	AUE_NULL	ALL	{ int enosys(void); } { old shared_region_make_private_np }
467301	AUE_NULL	ALL	{ int nosys(void); }
468302	AUE_NULL	ALL	{ int nosys(void); }
469303	AUE_NULL	ALL	{ int nosys(void); }
470304	AUE_NULL	ALL	{ int nosys(void); }
471305	AUE_NULL	ALL	{ int nosys(void); }
472306	AUE_NULL	ALL	{ int nosys(void); }
473307	AUE_NULL	ALL	{ int nosys(void); }
474308	AUE_NULL	ALL	{ int nosys(void); }
475309	AUE_NULL	ALL	{ int nosys(void); }
476#endif
477310	AUE_GETSID	ALL	{ int getsid(pid_t pid); }
478311	AUE_SETTIDWITHPID	ALL	{ int sys_settid_with_pid(pid_t pid, int assume) NO_SYSCALL_STUB; }
479#if PSYNCH
480312	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; }
481#else
482312	AUE_NULL	ALL	{ int nosys(void); } { old __pthread_cond_timedwait }
483#endif
484313	AUE_NULL	ALL	{ int aio_fsync(int op, user_addr_t aiocbp); }
485314 	AUE_NULL	ALL	{ user_ssize_t aio_return(user_addr_t aiocbp); }
486315	AUE_NULL	ALL	{ int aio_suspend(user_addr_t aiocblist, int nent, user_addr_t timeoutp); }
487316	AUE_NULL	ALL	{ int aio_cancel(int fd, user_addr_t aiocbp); }
488317	AUE_NULL	ALL	{ int aio_error(user_addr_t aiocbp); }
489318	AUE_NULL	ALL	{ int aio_read(user_addr_t aiocbp); }
490319	AUE_NULL	ALL	{ int aio_write(user_addr_t aiocbp); }
491320	AUE_LIOLISTIO	ALL	{ int lio_listio(int mode, user_addr_t aiocblist, int nent, user_addr_t sigp); }
492321	AUE_NULL	ALL	{ int nosys(void); } { old __pthread_cond_wait }
493322	AUE_IOPOLICYSYS	ALL	{ int iopolicysys(int cmd, void *arg) NO_SYSCALL_STUB; }
494323	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; }
495324	AUE_MLOCKALL	ALL	{ int mlockall(int how); }
496325	AUE_MUNLOCKALL	ALL	{ int munlockall(int how); }
497326	AUE_NULL	ALL	{ int nosys(void); }
498327	AUE_ISSETUGID	ALL	{ int issetugid(void); }
499328	AUE_PTHREADKILL	ALL	{ int __pthread_kill(int thread_port, int sig); }
500329	AUE_PTHREADSIGMASK	ALL	{ int __pthread_sigmask(int how, user_addr_t set, user_addr_t oset); }
501330	AUE_SIGWAIT	ALL	{ int __sigwait(user_addr_t set, user_addr_t sig); }
502331	AUE_NULL	ALL	{ int __disable_threadsignal(int value); }
503332	AUE_NULL	ALL	{ int __pthread_markcancel(int thread_port); }
504333	AUE_NULL	ALL	{ int __pthread_canceled(int  action); }
505
506;#if OLD_SEMWAIT_SIGNAL
507;334	AUE_NULL	ALL	{ int nosys(void); }   { old __semwait_signal }
508;#else
509334     AUE_SEMWAITSIGNAL       ALL     { int __semwait_signal(int cond_sem, int mutex_sem, int timeout, int relative, int64_t tv_sec, int32_t tv_nsec); }
510;#endif
511
512335	AUE_NULL	ALL	{ int nosys(void); }   { old utrace }
513336	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; }
514#if SENDFILE
515337	AUE_SENDFILE	ALL	{ int sendfile(int fd, int s, off_t offset, off_t *nbytes, struct sf_hdtr *hdtr, int flags); }
516#else /* !SENDFILE */
517337	AUE_NULL	ALL	{ int nosys(void); }
518#endif /* SENDFILE */
519338	AUE_STAT64	ALL	{ int stat64(user_addr_t path, user_addr_t ub); }
520339	AUE_FSTAT64	ALL	{ int sys_fstat64(int fd, user_addr_t ub); }
521340	AUE_LSTAT64	ALL	{ int lstat64(user_addr_t path, user_addr_t ub); }
522341	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; }
523342	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; }
524343	AUE_FSTAT64_EXTENDED	ALL	{ int sys_fstat64_extended(int fd, user_addr_t ub, user_addr_t xsecurity, user_addr_t xsecurity_size) NO_SYSCALL_STUB; }
525344	AUE_GETDIRENTRIES64	ALL	{ user_ssize_t getdirentries64(int fd, void *buf, user_size_t bufsize, off_t *position) NO_SYSCALL_STUB; }
526345	AUE_STATFS64	ALL	{ int statfs64(char *path, struct statfs64 *buf); }
527346	AUE_FSTATFS64	ALL	{ int fstatfs64(int fd, struct statfs64 *buf); }
528347	AUE_GETFSSTAT64	ALL	{ int getfsstat64(user_addr_t buf, int bufsize, int flags); }
529348	AUE_NULL	ALL	{ int __pthread_chdir(user_addr_t path); }
530349	AUE_NULL	ALL	{ int __pthread_fchdir(int fd); }
531350	AUE_AUDIT	ALL	{ int audit(void *record, int length); }
532351	AUE_AUDITON	ALL	{ int auditon(int cmd, void *data, int length); }
533352	AUE_NULL	ALL	{ int nosys(void); }
534353	AUE_GETAUID	ALL	{ int getauid(au_id_t *auid); }
535354	AUE_SETAUID	ALL	{ int setauid(au_id_t *auid); }
536355	AUE_NULL	ALL	{ int nosys(void); }	{ old getaudit }
537356	AUE_NULL	ALL	{ int nosys(void); }	{ old setaudit }
538357	AUE_GETAUDIT_ADDR	ALL	{ int getaudit_addr(struct auditinfo_addr *auditinfo_addr, int length); }
539358	AUE_SETAUDIT_ADDR	ALL	{ int setaudit_addr(struct auditinfo_addr *auditinfo_addr, int length); }
540359	AUE_AUDITCTL	ALL	{ int auditctl(char *path); }
541360	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; }
542361	AUE_NULL	ALL	{ int bsdthread_terminate(user_addr_t stackaddr, size_t freesize, uint32_t port, user_addr_t sema_or_ulock) NO_SYSCALL_STUB; }
543362	AUE_KQUEUE	ALL	{ int kqueue(void); }
544363	AUE_NULL	ALL	{ int kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }
545364	AUE_LCHOWN	ALL	{ int lchown(user_addr_t path, uid_t owner, gid_t group) NO_SYSCALL_STUB; }
546365	AUE_NULL	ALL	{ int nosys(void); }	{ old stack_snapshot }
547366	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; }
548367	AUE_WORKQOPEN	ALL	{ int workq_open(void) NO_SYSCALL_STUB; }
549368	AUE_WORKQOPS	ALL	{ int workq_kernreturn(int options, user_addr_t item, int affinity, int prio) NO_SYSCALL_STUB; }
550369	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); }
551370     AUE_NULL        ALL     { int nosys(void); }   { old __semwait_signal }
552371     AUE_NULL        ALL     { int nosys(void); }   { old __semwait_signal }
553372	AUE_NULL	ALL	{ uint64_t thread_selfid (void) NO_SYSCALL_STUB; }
554373	AUE_LEDGER	ALL	{ int ledger(int cmd, caddr_t arg1, caddr_t arg2, caddr_t arg3); }
555374	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); }
556375	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); }
557376	AUE_NULL	ALL	{ int nosys(void); }
558377	AUE_NULL	ALL	{ int nosys(void); }
559378	AUE_NULL	ALL	{ int nosys(void); }
560379	AUE_NULL	ALL	{ int nosys(void); }
561380	AUE_MAC_EXECVE	ALL	{ int __mac_execve(char *fname, char **argp, char **envp, struct mac *mac_p); }
562#if CONFIG_MACF
563381	AUE_MAC_SYSCALL	ALL	{ int __mac_syscall(char *policy, int call, user_addr_t arg); }
564382	AUE_MAC_GET_FILE	ALL	{ int __mac_get_file(char *path_p, struct mac *mac_p); }
565383	AUE_MAC_SET_FILE	ALL	{ int __mac_set_file(char *path_p, struct mac *mac_p); }
566384	AUE_MAC_GET_LINK	ALL	{ int __mac_get_link(char *path_p, struct mac *mac_p); }
567385	AUE_MAC_SET_LINK	ALL	{ int __mac_set_link(char *path_p, struct mac *mac_p); }
568386	AUE_MAC_GET_PROC	ALL	{ int __mac_get_proc(struct mac *mac_p); }
569387	AUE_MAC_SET_PROC	ALL	{ int __mac_set_proc(struct mac *mac_p); }
570388	AUE_MAC_GET_FD	ALL	{ int __mac_get_fd(int fd, struct mac *mac_p); }
571389	AUE_MAC_SET_FD	ALL	{ int __mac_set_fd(int fd, struct mac *mac_p); }
572390	AUE_MAC_GET_PID	ALL	{ int __mac_get_pid(pid_t pid, struct mac *mac_p); }
573#else
574381     AUE_MAC_SYSCALL ALL     { int enosys(void); }
575382     AUE_MAC_GET_FILE        ALL     { int nosys(void); }
576383     AUE_MAC_SET_FILE        ALL     { int nosys(void); }
577384     AUE_MAC_GET_LINK        ALL     { int nosys(void); }
578385     AUE_MAC_SET_LINK        ALL     { int nosys(void); }
579386     AUE_MAC_GET_PROC        ALL     { int nosys(void); }
580387     AUE_MAC_SET_PROC        ALL     { int nosys(void); }
581388     AUE_MAC_GET_FD  ALL     { int nosys(void); }
582389     AUE_MAC_SET_FD  ALL     { int nosys(void); }
583390     AUE_MAC_GET_PID ALL     { int nosys(void); }
584#endif
585391	AUE_NULL	ALL	{ int enosys(void); }
586392	AUE_NULL	ALL	{ int enosys(void); }
587393	AUE_NULL	ALL	{ int enosys(void); }
588394	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; }
589395	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; }
590396	AUE_NULL	ALL	{ user_ssize_t read_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; }
591397	AUE_NULL	ALL	{ user_ssize_t write_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; }
592398	AUE_OPEN_RWTC	ALL	{ int open_nocancel(user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
593399	AUE_CLOSE	ALL	{ int sys_close_nocancel(int fd) NO_SYSCALL_STUB; }
594400	AUE_WAIT4	ALL	{ int wait4_nocancel(int pid, user_addr_t status, int options, user_addr_t rusage) NO_SYSCALL_STUB; }
595#if SOCKETS
596401	AUE_RECVMSG	ALL	{ int recvmsg_nocancel(int s, struct msghdr *msg, int flags) NO_SYSCALL_STUB; }
597402	AUE_SENDMSG	ALL	{ int sendmsg_nocancel(int s, caddr_t msg, int flags) NO_SYSCALL_STUB; }
598403	AUE_RECVFROM	ALL	{ int recvfrom_nocancel(int s, void *buf, size_t len, int flags, struct sockaddr *from, int *fromlenaddr) NO_SYSCALL_STUB; }
599404	AUE_ACCEPT	ALL	{ int accept_nocancel(int s, caddr_t name, socklen_t	*anamelen) NO_SYSCALL_STUB; }
600#else
601401	AUE_NULL	ALL	{ int nosys(void); }
602402	AUE_NULL	ALL	{ int nosys(void); }
603403	AUE_NULL	ALL	{ int nosys(void); }
604404	AUE_NULL	ALL	{ int nosys(void); }
605#endif /* SOCKETS */
606405	AUE_MSYNC	ALL	{ int msync_nocancel(caddr_t addr, size_t len, int flags) NO_SYSCALL_STUB; }
607406	AUE_FCNTL	ALL	{ int sys_fcntl_nocancel(int fd, int cmd, long arg) NO_SYSCALL_STUB; }
608407	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; }
609408	AUE_FSYNC	ALL	{ int fsync_nocancel(int fd) NO_SYSCALL_STUB; }
610#if SOCKETS
611409	AUE_CONNECT	ALL	{ int connect_nocancel(int s, caddr_t name, socklen_t namelen) NO_SYSCALL_STUB; }
612#else
613409	AUE_NULL	ALL	{ int nosys(void); }
614#endif /* SOCKETS */
615410	AUE_NULL	ALL	{ int sigsuspend_nocancel(sigset_t mask) NO_SYSCALL_STUB; }
616411	AUE_READV	ALL	{ user_ssize_t readv_nocancel(int fd, struct iovec *iovp, u_int iovcnt) NO_SYSCALL_STUB; }
617412	AUE_WRITEV	ALL	{ user_ssize_t writev_nocancel(int fd, struct iovec *iovp, u_int iovcnt) NO_SYSCALL_STUB; }
618#if SOCKETS
619413	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; }
620#else
621413	AUE_NULL	ALL	{ int nosys(void); }
622#endif /* SOCKETS */
623414	AUE_PREAD	ALL	{ user_ssize_t pread_nocancel(int fd, user_addr_t buf, user_size_t nbyte, off_t offset) NO_SYSCALL_STUB; }
624415	AUE_PWRITE	ALL	{ user_ssize_t pwrite_nocancel(int fd, user_addr_t buf, user_size_t nbyte, off_t offset) NO_SYSCALL_STUB; }
625416	AUE_WAITID	ALL	{ int waitid_nocancel(idtype_t idtype, id_t id, siginfo_t *infop, int options) NO_SYSCALL_STUB; }
626417	AUE_POLL	ALL	{ int poll_nocancel(struct pollfd *fds, u_int nfds, int timeout) NO_SYSCALL_STUB; }
627#if SYSV_MSG
628418	AUE_MSGSND	ALL	{ int msgsnd_nocancel(int msqid, void *msgp, size_t msgsz, int msgflg) NO_SYSCALL_STUB; }
629419	AUE_MSGRCV	ALL	{ user_ssize_t msgrcv_nocancel(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg) NO_SYSCALL_STUB; }
630#else
631418	AUE_NULL	ALL	{ int nosys(void); }
632419	AUE_NULL	ALL	{ int nosys(void); }
633#endif
634420	AUE_SEMWAIT	ALL	{ int sem_wait_nocancel(sem_t *sem) NO_SYSCALL_STUB; }
635421	AUE_NULL	ALL	{ int aio_suspend_nocancel(user_addr_t aiocblist, int nent, user_addr_t timeoutp) NO_SYSCALL_STUB; }
636422	AUE_SIGWAIT	ALL	{ int __sigwait_nocancel(user_addr_t set, user_addr_t sig) NO_SYSCALL_STUB; }
637423     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); }
638424	AUE_MAC_MOUNT	ALL	{ int __mac_mount(char *type, char *path, int flags, caddr_t data, struct mac *mac_p); }
639#if CONFIG_MACF
640425	AUE_MAC_GET_MOUNT	ALL	{ int __mac_get_mount(char *path, struct mac *mac_p); }
641#else
642425     AUE_MAC_GET_MOUNT       ALL     { int nosys(void); }
643#endif
644426	AUE_MAC_GETFSSTAT	ALL	{ int __mac_getfsstat(user_addr_t buf, int bufsize, user_addr_t mac, int macsize, int flags); }
645427	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) }
646428	AUE_NULL	ALL	{ mach_port_name_t audit_session_self(void); }
647429	AUE_NULL	ALL	{ int audit_session_join(mach_port_name_t port); }
648430	AUE_NULL	ALL	{ int sys_fileport_makeport(int fd, user_addr_t portnamep); }
649431	AUE_NULL	ALL	{ int sys_fileport_makefd(mach_port_name_t port); }
650432	AUE_NULL	ALL	{ int audit_session_port(au_asid_t asid, user_addr_t portnamep); }
651433	AUE_NULL	ALL	{ int pid_suspend(int pid); }
652434	AUE_NULL	ALL	{ int pid_resume(int pid); }
653#if CONFIG_EMBEDDED
654435	AUE_NULL	ALL	{ int pid_hibernate(int pid); }
655#else
656435     AUE_NULL        ALL     { int nosys(void); }
657#endif
658#if SOCKETS
659436	AUE_NULL	ALL	{ int pid_shutdown_sockets(int pid, int level); }
660#else
661436	AUE_NULL	ALL	{ int nosys(void); }
662#endif
663437	AUE_NULL	ALL	{ int nosys(void); } { old shared_region_slide_np }
664438	AUE_NULL	ALL	{ int nosys(void); } { old shared_region_map_and_slide_np }
665439	AUE_NULL	ALL	{ int kas_info(int selector, void *value, size_t *size); }
666#if CONFIG_MEMORYSTATUS
667440	AUE_NULL	ALL	{ int memorystatus_control(uint32_t command, int32_t pid, uint32_t flags, user_addr_t buffer, size_t buffersize); }
668#else
669440	AUE_NULL	ALL	{ int nosys(void); }
670#endif
671441	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; }
672442	AUE_CLOSE	ALL	{ int guarded_close_np(int fd, const guardid_t *guard); }
673443	AUE_KQUEUE	ALL	{ int guarded_kqueue_np(const guardid_t *guard, u_int guardflags); }
674444	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); }
675445	AUE_USRCTL	ALL	{ int usrctl(uint32_t flags); }
676446	AUE_NULL	ALL	{ int proc_rlimit_control(pid_t pid, int flavor, void *arg); }
677#if SOCKETS
678447	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); }
679448	AUE_NULL	ALL	{ int disconnectx(int s, sae_associd_t aid, sae_connid_t cid); }
680449	AUE_NULL	ALL	{ int peeloff(int s, sae_associd_t aid); }
681450	AUE_SOCKET	ALL	{ int socket_delegate(int domain, int type, int protocol, pid_t epid); }
682#else
683447	AUE_NULL	ALL	{ int nosys(void); }
684448	AUE_NULL	ALL	{ int nosys(void); }
685449	AUE_NULL	ALL	{ int nosys(void); }
686450	AUE_NULL	ALL	{ int nosys(void); }
687#endif /* SOCKETS */
688451	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; }
689#if CONFIG_PROC_UUID_POLICY
690452	AUE_NULL	ALL	{ int proc_uuid_policy(uint32_t operation, uuid_t uuid, size_t uuidlen, uint32_t flags); }
691#else
692452	AUE_NULL	ALL	{ int nosys(void); }
693#endif
694#if CONFIG_MEMORYSTATUS
695453	AUE_NULL	ALL	{ int memorystatus_get_level(user_addr_t level); }
696#else
697453	AUE_NULL	ALL	{ int nosys(void); }
698#endif
699454	AUE_NULL	ALL	{ int system_override(uint64_t timeout, uint64_t flags); }
700455	AUE_NULL	ALL	{ int vfs_purge(void); }
701456	AUE_NULL	ALL	{ int sfi_ctl(uint32_t operation, uint32_t sfi_class, uint64_t time, uint64_t *out_time) NO_SYSCALL_STUB; }
702457	AUE_NULL	ALL	{ int sfi_pidctl(uint32_t operation, pid_t pid, uint32_t sfi_flags, uint32_t *out_sfi_flags) NO_SYSCALL_STUB; }
703#if CONFIG_COALITIONS
704458	AUE_NULL	ALL	{ int coalition(uint32_t operation, uint64_t *cid, uint32_t flags) NO_SYSCALL_STUB; }
705459	AUE_NULL	ALL	{ int coalition_info(uint32_t flavor, uint64_t *cid, void *buffer, size_t *bufsize) NO_SYSCALL_STUB; }
706#else
707458	AUE_NULL	ALL	{ int enosys(void); }
708459	AUE_NULL	ALL	{ int enosys(void); }
709#endif /* COALITIONS */
710#if NECP
711460 AUE_NECP	ALL { int necp_match_policy(uint8_t *parameters, size_t parameters_size, struct necp_aggregate_result *returned_result); }
712#else
713460	AUE_NULL	ALL	{ int nosys(void); }
714#endif /* NECP */
715461	AUE_GETATTRLISTBULK	ALL	{ int getattrlistbulk(int dirfd, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, uint64_t options); }
716462	AUE_CLONEFILEAT	ALL     { int clonefileat(int src_dirfd, user_addr_t src, int dst_dirfd, user_addr_t dst, uint32_t flags); }
717463	AUE_OPENAT_RWTC	ALL	{ int openat(int fd, user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
718464	AUE_OPENAT_RWTC	ALL	{ int openat_nocancel(int fd, user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; }
719465	AUE_RENAMEAT	ALL	{ int renameat(int fromfd, char *from, int tofd, char *to) NO_SYSCALL_STUB; }
720466	AUE_FACCESSAT	ALL	{ int faccessat(int fd, user_addr_t path, int amode, int flag); }
721467	AUE_FCHMODAT	ALL	{ int fchmodat(int fd, user_addr_t path, int mode, int flag); }
722468	AUE_FCHOWNAT	ALL	{ int fchownat(int fd, user_addr_t path, uid_t uid,gid_t gid, int flag); }
723469	AUE_FSTATAT	ALL	{ int fstatat(int fd, user_addr_t path, user_addr_t ub, int flag); }
724470	AUE_FSTATAT	ALL	{ int fstatat64(int fd, user_addr_t path, user_addr_t ub, int flag); }
725471	AUE_LINKAT	ALL	{ int linkat(int fd1, user_addr_t path, int fd2, user_addr_t link, int flag); }
726472	AUE_UNLINKAT	ALL	{ int unlinkat(int fd, user_addr_t path, int flag) NO_SYSCALL_STUB; }
727473	AUE_READLINKAT	ALL	{ int readlinkat(int fd, user_addr_t path, user_addr_t buf, size_t bufsize); }
728474	AUE_SYMLINKAT	ALL	{ int symlinkat(user_addr_t *path1, int fd, user_addr_t path2); }
729475	AUE_MKDIRAT	ALL	{ int mkdirat(int fd, user_addr_t path, int mode); }
730476	AUE_GETATTRLISTAT	ALL	{ int getattrlistat(int fd, const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, u_long options); }
731477	AUE_NULL	ALL	{ int proc_trace_log(pid_t pid, uint64_t uniqueid); }
732478	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; }
733479	AUE_OPENBYID_RWT	ALL	{ int openbyid_np(user_addr_t fsid, user_addr_t objid, int oflags); }
734#if SOCKETS
735480	AUE_NULL	ALL	{ user_ssize_t recvmsg_x(int s, struct msghdr_x *msgp, u_int cnt, int flags); }
736481	AUE_NULL	ALL	{ user_ssize_t sendmsg_x(int s, struct msghdr_x *msgp, u_int cnt, int flags); }
737#else
738480	AUE_NULL	ALL	{ int nosys(void); }
739481	AUE_NULL	ALL	{ int nosys(void); }
740#endif /* SOCKETS */
741482	AUE_NULL	ALL	{ uint64_t thread_selfusage(void) NO_SYSCALL_STUB; }
742#if CONFIG_CSR
743483	AUE_NULL	ALL	{ int csrctl(uint32_t op, user_addr_t useraddr, user_addr_t usersize) NO_SYSCALL_STUB; }
744#else
745483	AUE_NULL	ALL	{ int enosys(void); }
746#endif /* CSR */
747484	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; }
748485	AUE_NULL	ALL	{ user_ssize_t guarded_write_np(int fd, const guardid_t *guard, user_addr_t cbuf, user_size_t nbyte); }
749486	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); }
750487	AUE_WRITEV	ALL	{ user_ssize_t guarded_writev_np(int fd, const guardid_t *guard, struct iovec *iovp, int iovcnt); }
751488	AUE_RENAMEAT	ALL	{ int renameatx_np(int fromfd, char *from, int tofd, char *to, u_int flags) NO_SYSCALL_STUB; }
752#if CONFIG_CODE_DECRYPTION
753489	AUE_MPROTECT	ALL	{ int mremap_encrypted(caddr_t addr, size_t len, uint32_t cryptid, uint32_t cputype, uint32_t cpusubtype); }
754#else
755489	AUE_NULL	ALL	{ int enosys(void); }
756#endif
757#if NETWORKING
758490	AUE_NETAGENT	ALL	{ int netagent_trigger(uuid_t agent_uuid, size_t agent_uuidlen); }
759#else
760490	AUE_NULL	ALL	{ int nosys(void); }
761#endif /* NETWORKING */
762491	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; }
763#if CONFIG_TELEMETRY
764492	AUE_STACKSNAPSHOT ALL	{ int microstackshot(user_addr_t tracebuf, uint32_t tracebuf_size, uint32_t flags) NO_SYSCALL_STUB; }
765#else
766492	AUE_NULL	ALL { int enosys(void); }
767#endif /* CONFIG_TELEMETRY */
768#if PGO
769493 	AUE_NULL	ALL	{ user_ssize_t grab_pgo_data (user_addr_t uuid, int flags, user_addr_t buffer, user_ssize_t size); }
770#else
771493	AUE_NULL	ALL { int enosys(void); }
772#endif
773#if CONFIG_PERSONAS
774494	AUE_PERSONA	ALL	{ int persona(uint32_t operation, uint32_t flags, struct kpersona_info *info, uid_t *id, size_t *idlen, char *path) NO_SYSCALL_STUB; }
775#else
776494	AUE_NULL	ALL	{ int enosys(void); }
777#endif
778495	AUE_NULL	ALL	{ int enosys(void); }
779496	AUE_NULL	ALL	{ uint64_t mach_eventlink_signal(mach_port_name_t eventlink_port, uint64_t signal_count) NO_SYSCALL_STUB; }
780497	AUE_NULL	ALL	{ uint64_t mach_eventlink_wait_until(mach_port_name_t eventlink_port, uint64_t wait_count, uint64_t deadline, uint32_t clock_id, uint32_t option) NO_SYSCALL_STUB; }
781498	AUE_NULL	ALL	{ uint64_t mach_eventlink_signal_wait_until(mach_port_name_t eventlink_port, uint64_t wait_count, uint64_t signal_count, uint64_t deadline, uint32_t clock_id, uint32_t option) NO_SYSCALL_STUB; }
782499	AUE_NULL	ALL	{ int work_interval_ctl(uint32_t operation, uint64_t work_interval_id, void *arg, size_t len) NO_SYSCALL_STUB; }
783500	AUE_NULL	ALL	{ int getentropy(void *buffer, size_t size); }
784#if NECP
785501	AUE_NECP	ALL	{ int necp_open(int flags); } }
786502	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); }
787#else
788501	AUE_NULL	ALL	{ int enosys(void); }
789502	AUE_NULL	ALL	{ int enosys(void); }
790#endif /* NECP */
791#if SKYWALK
792503	AUE_NEXUS	ALL	{ int __nexus_open(struct nxctl_init *init, uint32_t init_len); }
793504	AUE_NEXUS	ALL	{ int __nexus_register(int ctl, struct nxprov_reg *reg, uint32_t reg_len, uuid_t *prov_uuid, uint32_t prov_uuid_len); }
794505	AUE_NEXUS	ALL	{ int __nexus_deregister(int ctl, uuid_t prov_uuid, uint32_t prov_uuid_len); }
795506	AUE_NEXUS	ALL	{ int __nexus_create(int ctl, uuid_t prov_uuid, uint32_t prov_uuid_len, uuid_t *nx_uuid, uint32_t nx_uuid_len); }
796507	AUE_NEXUS	ALL	{ int __nexus_destroy(int ctl, uuid_t nx_uuid, uint32_t nx_uuid_len); }
797508	AUE_NEXUS	ALL	{ int __nexus_get_opt(int ctl, uint32_t opt, void *aoptval, uint32_t *aoptlen); }
798509	AUE_NEXUS	ALL	{ int __nexus_set_opt(int ctl, uint32_t opt, const void *aoptval, uint32_t optlen); }
799510	AUE_CHANNEL	ALL	{ int __channel_open(struct ch_init *init, uint32_t init_len); }
800511	AUE_CHANNEL	ALL	{ int __channel_get_info(int c, struct ch_info *cinfo, uint32_t cinfolen); }
801512	AUE_CHANNEL	ALL	{ int __channel_sync(int c, int mode, int flags); }
802513	AUE_CHANNEL	ALL	{ int __channel_get_opt(int c, uint32_t opt, void *aoptval, uint32_t *aoptlen); }
803514	AUE_CHANNEL	ALL	{ int __channel_set_opt(int c, uint32_t opt, const void *aoptval, uint32_t optlen); }
804#else
805503	AUE_NULL	ALL	{ int enosys(void); }
806504	AUE_NULL	ALL	{ int enosys(void); }
807505	AUE_NULL	ALL	{ int enosys(void); }
808506	AUE_NULL	ALL	{ int enosys(void); }
809507	AUE_NULL	ALL	{ int enosys(void); }
810508	AUE_NULL	ALL	{ int enosys(void); }
811509	AUE_NULL	ALL	{ int enosys(void); }
812510	AUE_NULL	ALL	{ int enosys(void); }
813511	AUE_NULL	ALL	{ int enosys(void); }
814512	AUE_NULL	ALL	{ int enosys(void); }
815513	AUE_NULL	ALL	{ int enosys(void); }
816514	AUE_NULL	ALL	{ int enosys(void); }
817#endif /* !SKYWALK */
818515	AUE_NULL	ALL	{ int sys_ulock_wait(uint32_t operation, void *addr, uint64_t value, uint32_t timeout) NO_SYSCALL_STUB; }
819516	AUE_NULL	ALL	{ int sys_ulock_wake(uint32_t operation, void *addr, uint64_t wake_value) NO_SYSCALL_STUB; }
820517	AUE_FCLONEFILEAT	ALL     { int fclonefileat(int src_fd, int dst_dirfd, user_addr_t dst, uint32_t flags); }
821518	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; }
822519	AUE_NULL	ALL	{ int enosys(void); }
823520	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; }
824521	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; }
825#if NECP
826522	AUE_NECP	ALL	{ int necp_session_open(int flags); } }
827523	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); }
828#else /* NECP */
829522	AUE_NULL	ALL	{ int enosys(void); }
830523	AUE_NULL	ALL	{ int enosys(void); }
831#endif /* NECP */
832524	AUE_SETATTRLISTAT	ALL	{ int setattrlistat(int fd, const char *path, struct attrlist *alist, void *attributeBuffer, size_t bufferSize, uint32_t options); }
833525	AUE_NET		ALL	{ int net_qos_guideline(struct net_qos_param *param, uint32_t param_len); }
834526	AUE_FMOUNT	ALL	{ int fmount(const char *type, int fd, int flags, void *data); }
835527	AUE_NULL	ALL	{ int ntp_adjtime(struct timex *tp); }
836528	AUE_NULL	ALL	{ int ntp_gettime(struct ntptimeval *ntvp); }
837529	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); }
838530	AUE_WORKLOOPCTL	ALL	{ int kqueue_workloop_ctl(user_addr_t cmd, uint64_t options, user_addr_t addr, size_t sz) NO_SYSCALL_STUB; }
839531	AUE_NULL	ALL	{ uint64_t __mach_bridge_remote_time(uint64_t local_timestamp); }
840#if CONFIG_COALITIONS
841532 AUE_NULL  ALL { int coalition_ledger(uint32_t operation, uint64_t *cid, void *buffer, size_t *bufsize) NO_SYSCALL_STUB; }
842#else
843532   AUE_NULL    ALL { int enosys(void); }
844#endif // CONFIG_COALITIONS
845533     AUE_NULL        ALL     { int log_data(unsigned int tag, unsigned int flags, void *buffer, unsigned int size) NO_SYSCALL_STUB; }
846534 AUE_NULL	ALL	{ uint64_t memorystatus_available_memory(void) NO_SYSCALL_STUB; }
847535 AUE_NULL	ALL { int enosys(void); }
848536	AUE_NULL	ALL	{ int shared_region_map_and_slide_2_np(uint32_t files_count, const struct shared_file_np *files, uint32_t mappings_count, const struct shared_file_mapping_slide_np *mappings) NO_SYSCALL_STUB; }
849537	AUE_NULL	ALL { int pivot_root(const char *new_rootfs_path_before, const char *old_rootfs_path_after); }
850538 AUE_TASKINSPECTFORPID	ALL { int task_inspect_for_pid(mach_port_name_t target_tport, int pid, mach_port_name_t *t); }
851539 AUE_TASKREADFORPID	ALL { int task_read_for_pid(mach_port_name_t target_tport, int pid, mach_port_name_t *t); }
852540	AUE_PREADV	ALL	{ user_ssize_t sys_preadv(int fd, struct iovec *iovp, int iovcnt, off_t offset); }
853541	AUE_PWRITEV	ALL	{ user_ssize_t sys_pwritev(int fd, struct iovec *iovp, int iovcnt, off_t offset); }
854542	AUE_PREADV	ALL	{ user_ssize_t sys_preadv_nocancel(int fd, struct iovec *iovp, int iovcnt, off_t offset) NO_SYSCALL_STUB; }
855543	AUE_PWRITEV	ALL	{ user_ssize_t sys_pwritev_nocancel(int fd, struct iovec *iovp, int iovcnt, off_t offset) NO_SYSCALL_STUB; }
856544	AUE_NULL        ALL     { int sys_ulock_wait2(uint32_t operation, void *addr, uint64_t value, uint64_t timeout, uint64_t value2) NO_SYSCALL_STUB; }
857545	AUE_PROCINFO	ALL	{ int proc_info_extended_id(int32_t callnum, int32_t pid, uint32_t flavor, uint32_t flags, uint64_t ext_id, uint64_t arg, user_addr_t buffer, int32_t buffersize) NO_SYSCALL_STUB; }
858#if SOCKETS
859546     AUE_TRACKERACTION       ALL     { int tracker_action(int action, char *buffer, size_t buffer_size); }
860#else
861546	AUE_NULL	ALL	{ int nosys(void); }
862#endif /* SOCKETS */
863547 AUE_DEBUG_SYSCALL_REJECT	ALL { int debug_syscall_reject(uint64_t packed_selectors) NO_SYSCALL_STUB; }
864548 AUE_DEBUG_SYSCALL_REJECT_CONFIG	ALL { int sys_debug_syscall_reject_config(uint64_t packed_selectors1, uint64_t packed_selectors2, uint64_t flags) NO_SYSCALL_STUB; }
865549 AUE_NULL	ALL { int graftdmg(int dmg_fd, const char *mountdir, uint32_t graft_type, graftdmg_args_un *gda); }
866550	AUE_NULL	ALL	{ int map_with_linking_np(void *regions, uint32_t region_count, void *link_info, uint32_t link_info_size) NO_SYSCALL_STUB; }
867551	AUE_FREADLINK	ALL	{ int freadlink(int fd, user_addr_t buf, user_size_t bufsize); }
868552 AUE_NULL    ALL { int sys_record_system_event(uint32_t type, uint32_t subsystem, const char *event, const char *payload) NO_SYSCALL_STUB; }
869553 AUE_MKFIFOAT	ALL	{ int mkfifoat(int fd, user_addr_t path, int mode); }
870554 AUE_MKNODAT	ALL	{ int mknodat(int fd, user_addr_t path, int mode, int dev); }
871555 AUE_NULL	ALL { int ungraftdmg(const char *mountdir, uint64_t flags); }
872