1 $FreeBSD$ 2; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 3; 4; System call name/number master file. 5; Processed to created init_sysent.c, syscalls.c and syscall.h. 6 7; Columns: number audit type name alt{name,tag,rtyp}/comments 8; number system call number, must be in order 9; audit the audit event associated with the system call 10; A value of AUE_NULL means no auditing, but it also means that 11; there is no audit event for the call at this time. For the 12; case where the event exists, but we don't want auditing, the 13; event should be #defined to AUE_NULL in audit_kevents.h. 14; type one of STD, OBSOL, UNIMPL, COMPAT, COMPAT4, COMPAT6, 15; COMPAT7, COMPAT11, NODEF, NOARGS, NOPROTO, NOSTD 16; The COMPAT* options may be combined with one or more NO* 17; options separated by '|' with no spaces (e.g. COMPAT|NOARGS) 18; name pseudo-prototype of syscall routine 19; If one of the following alts is different, then all appear: 20; altname name of system call if different 21; alttag name of args struct tag if different from [o]`name'"_args" 22; altrtyp return type if not int (bogus - syscalls always return int) 23; for UNIMPL/OBSOL, name continues with comments 24 25; types: 26; STD always included 27; COMPAT included on COMPAT #ifdef 28; COMPAT4 included on COMPAT_FREEBSD4 #ifdef (FreeBSD 4 compat) 29; COMPAT6 included on COMPAT_FREEBSD6 #ifdef (FreeBSD 6 compat) 30; COMPAT7 included on COMPAT_FREEBSD7 #ifdef (FreeBSD 7 compat) 31; COMPAT10 included on COMPAT_FREEBSD10 #ifdef (FreeBSD 10 compat) 32; COMPAT11 included on COMPAT11 #ifdef (FreeBSD 11 compat) 33; OBSOL obsolete, not included in system, only specifies name 34; UNIMPL not implemented, placeholder only 35; NOSTD implemented but as a lkm that can be statically 36; compiled in; sysent entry will be filled with lkmressys 37; so the SYSCALL_MODULE macro works 38; NOARGS same as STD except do not create structure in sys/sysproto.h 39; NODEF same as STD except only have the entry in the syscall table 40; added. Meaning - do not create structure or function 41; prototype in sys/sysproto.h 42; NOPROTO same as STD except do not create structure or 43; function prototype in sys/sysproto.h. Does add a 44; definition to syscall.h besides adding a sysent. 45; NOTSTATIC syscall is loadable 46; 47; Please copy any additions and changes to the following compatability tables: 48; sys/compat/freebsd32/syscalls.master 49 50; #ifdef's, etc. may be included, and are copied to the output files. 51 52#include <sys/param.h> 53#include <sys/sysent.h> 54#include <sys/sysproto.h> 55 56; Reserved/unimplemented system calls in the range 0-150 inclusive 57; are reserved for use in future Berkeley releases. 58; Additional system calls implemented in vendor and other 59; redistributions should be placed in the reserved range at the end 60; of the current calls. 61 620 AUE_NULL STD { int nosys(void); } syscall nosys_args int 631 AUE_EXIT STD { void sys_exit(int rval); } exit \ 64 sys_exit_args void 652 AUE_FORK STD { int fork(void); } 663 AUE_READ STD { ssize_t read(int fd, void *buf, \ 67 size_t nbyte); } 684 AUE_WRITE STD { ssize_t write(int fd, const void *buf, \ 69 size_t nbyte); } 705 AUE_OPEN_RWTC STD { int open(char *path, int flags, int mode); } 71; XXX should be { int open(const char *path, int flags, ...); } 72; but we're not ready for `const' or varargs. 73; XXX man page says `mode_t mode'. 746 AUE_CLOSE STD { int close(int fd); } 757 AUE_WAIT4 STD { int wait4(int pid, int *status, \ 76 int options, struct rusage *rusage); } 778 AUE_CREAT COMPAT { int creat(char *path, int mode); } 789 AUE_LINK STD { int link(char *path, char *link); } 7910 AUE_UNLINK STD { int unlink(char *path); } 8011 AUE_NULL OBSOL execv 8112 AUE_CHDIR STD { int chdir(char *path); } 8213 AUE_FCHDIR STD { int fchdir(int fd); } 8314 AUE_MKNOD COMPAT11 { int mknod(char *path, int mode, int dev); } 8415 AUE_CHMOD STD { int chmod(char *path, int mode); } 8516 AUE_CHOWN STD { int chown(char *path, int uid, int gid); } 8617 AUE_NULL STD { int obreak(char *nsize); } break \ 87 obreak_args int 8818 AUE_GETFSSTAT COMPAT4 { int getfsstat(struct ostatfs *buf, \ 89 long bufsize, int mode); } 9019 AUE_LSEEK COMPAT { long lseek(int fd, long offset, \ 91 int whence); } 9220 AUE_GETPID STD { pid_t getpid(void); } 9321 AUE_MOUNT STD { int mount(char *type, char *path, \ 94 int flags, caddr_t data); } 95; XXX `path' should have type `const char *' but we're not ready for that. 9622 AUE_UMOUNT STD { int unmount(char *path, int flags); } 9723 AUE_SETUID STD { int setuid(uid_t uid); } 9824 AUE_GETUID STD { uid_t getuid(void); } 9925 AUE_GETEUID STD { uid_t geteuid(void); } 10026 AUE_PTRACE STD { int ptrace(int req, pid_t pid, \ 101 caddr_t addr, int data); } 10227 AUE_RECVMSG STD { int recvmsg(int s, struct msghdr *msg, \ 103 int flags); } 10428 AUE_SENDMSG STD { int sendmsg(int s, struct msghdr *msg, \ 105 int flags); } 10629 AUE_RECVFROM STD { int recvfrom(int s, caddr_t buf, \ 107 size_t len, int flags, \ 108 struct sockaddr * __restrict from, \ 109 __socklen_t * __restrict fromlenaddr); } 11030 AUE_ACCEPT STD { int accept(int s, \ 111 struct sockaddr * __restrict name, \ 112 __socklen_t * __restrict anamelen); } 11331 AUE_GETPEERNAME STD { int getpeername(int fdes, \ 114 struct sockaddr * __restrict asa, \ 115 __socklen_t * __restrict alen); } 11632 AUE_GETSOCKNAME STD { int getsockname(int fdes, \ 117 struct sockaddr * __restrict asa, \ 118 __socklen_t * __restrict alen); } 11933 AUE_ACCESS STD { int access(char *path, int amode); } 12034 AUE_CHFLAGS STD { int chflags(const char *path, u_long flags); } 12135 AUE_FCHFLAGS STD { int fchflags(int fd, u_long flags); } 12236 AUE_SYNC STD { int sync(void); } 12337 AUE_KILL STD { int kill(int pid, int signum); } 12438 AUE_STAT COMPAT { int stat(char *path, struct ostat *ub); } 12539 AUE_GETPPID STD { pid_t getppid(void); } 12640 AUE_LSTAT COMPAT { int lstat(char *path, struct ostat *ub); } 12741 AUE_DUP STD { int dup(u_int fd); } 12842 AUE_PIPE COMPAT10 { int pipe(void); } 12943 AUE_GETEGID STD { gid_t getegid(void); } 13044 AUE_PROFILE STD { int profil(caddr_t samples, size_t size, \ 131 size_t offset, u_int scale); } 13245 AUE_KTRACE STD { int ktrace(const char *fname, int ops, \ 133 int facs, int pid); } 13446 AUE_SIGACTION COMPAT { int sigaction(int signum, \ 135 struct osigaction *nsa, \ 136 struct osigaction *osa); } 13747 AUE_GETGID STD { gid_t getgid(void); } 13848 AUE_SIGPROCMASK COMPAT { int sigprocmask(int how, osigset_t mask); } 139; XXX note nonstandard (bogus) calling convention - the libc stub passes 140; us the mask, not a pointer to it, and we return the old mask as the 141; (int) return value. 14249 AUE_GETLOGIN STD { int getlogin(char *namebuf, u_int \ 143 namelen); } 14450 AUE_SETLOGIN STD { int setlogin(char *namebuf); } 14551 AUE_ACCT STD { int acct(char *path); } 14652 AUE_SIGPENDING COMPAT { int sigpending(void); } 14753 AUE_SIGALTSTACK STD { int sigaltstack(stack_t *ss, \ 148 stack_t *oss); } 14954 AUE_IOCTL STD { int ioctl(int fd, u_long com, \ 150 caddr_t data); } 15155 AUE_REBOOT STD { int reboot(int opt); } 15256 AUE_REVOKE STD { int revoke(char *path); } 15357 AUE_SYMLINK STD { int symlink(char *path, char *link); } 15458 AUE_READLINK STD { ssize_t readlink(char *path, char *buf, \ 155 size_t count); } 15659 AUE_EXECVE STD { int execve(char *fname, char **argv, \ 157 char **envv); } 15860 AUE_UMASK STD { int umask(int newmask); } umask umask_args \ 159 int 16061 AUE_CHROOT STD { int chroot(char *path); } 16162 AUE_FSTAT COMPAT { int fstat(int fd, struct ostat *sb); } 16263 AUE_NULL COMPAT { int getkerninfo(int op, char *where, \ 163 size_t *size, int arg); } getkerninfo \ 164 getkerninfo_args int 16564 AUE_NULL COMPAT { int getpagesize(void); } getpagesize \ 166 getpagesize_args int 16765 AUE_MSYNC STD { int msync(void *addr, size_t len, \ 168 int flags); } 16966 AUE_VFORK STD { int vfork(void); } 17067 AUE_NULL OBSOL vread 17168 AUE_NULL OBSOL vwrite 17269 AUE_SBRK STD { int sbrk(int incr); } 17370 AUE_SSTK STD { int sstk(int incr); } 17471 AUE_MMAP COMPAT { int mmap(void *addr, int len, int prot, \ 175 int flags, int fd, long pos); } 17672 AUE_O_VADVISE STD { int ovadvise(int anom); } vadvise \ 177 ovadvise_args int 17873 AUE_MUNMAP STD { int munmap(void *addr, size_t len); } 17974 AUE_MPROTECT STD { int mprotect(void *addr, size_t len, \ 180 int prot); } 18175 AUE_MADVISE STD { int madvise(void *addr, size_t len, \ 182 int behav); } 18376 AUE_NULL OBSOL vhangup 18477 AUE_NULL OBSOL vlimit 18578 AUE_MINCORE STD { int mincore(const void *addr, size_t len, \ 186 char *vec); } 18779 AUE_GETGROUPS STD { int getgroups(u_int gidsetsize, \ 188 gid_t *gidset); } 18980 AUE_SETGROUPS STD { int setgroups(u_int gidsetsize, \ 190 gid_t *gidset); } 19181 AUE_GETPGRP STD { int getpgrp(void); } 19282 AUE_SETPGRP STD { int setpgid(int pid, int pgid); } 19383 AUE_SETITIMER STD { int setitimer(u_int which, struct \ 194 itimerval *itv, struct itimerval *oitv); } 19584 AUE_WAIT4 COMPAT { int wait(void); } 19685 AUE_SWAPON STD { int swapon(char *name); } 19786 AUE_GETITIMER STD { int getitimer(u_int which, \ 198 struct itimerval *itv); } 19987 AUE_SYSCTL COMPAT { int gethostname(char *hostname, \ 200 u_int len); } gethostname \ 201 gethostname_args int 20288 AUE_SYSCTL COMPAT { int sethostname(char *hostname, \ 203 u_int len); } sethostname \ 204 sethostname_args int 20589 AUE_GETDTABLESIZE STD { int getdtablesize(void); } 20690 AUE_DUP2 STD { int dup2(u_int from, u_int to); } 20791 AUE_NULL UNIMPL getdopt 20892 AUE_FCNTL STD { int fcntl(int fd, int cmd, long arg); } 209; XXX should be { int fcntl(int fd, int cmd, ...); } 210; but we're not ready for varargs. 21193 AUE_SELECT STD { int select(int nd, fd_set *in, fd_set *ou, \ 212 fd_set *ex, struct timeval *tv); } 21394 AUE_NULL UNIMPL setdopt 21495 AUE_FSYNC STD { int fsync(int fd); } 21596 AUE_SETPRIORITY STD { int setpriority(int which, int who, \ 216 int prio); } 21797 AUE_SOCKET STD { int socket(int domain, int type, \ 218 int protocol); } 21998 AUE_CONNECT STD { int connect(int s, caddr_t name, \ 220 int namelen); } 22199 AUE_ACCEPT COMPAT|NOARGS { int accept(int s, caddr_t name, \ 222 int *anamelen); } accept accept_args int 223100 AUE_GETPRIORITY STD { int getpriority(int which, int who); } 224101 AUE_SEND COMPAT { int send(int s, caddr_t buf, int len, \ 225 int flags); } 226102 AUE_RECV COMPAT { int recv(int s, caddr_t buf, int len, \ 227 int flags); } 228103 AUE_SIGRETURN COMPAT { int sigreturn( \ 229 struct osigcontext *sigcntxp); } 230104 AUE_BIND STD { int bind(int s, caddr_t name, \ 231 int namelen); } 232105 AUE_SETSOCKOPT STD { int setsockopt(int s, int level, int name, \ 233 caddr_t val, int valsize); } 234106 AUE_LISTEN STD { int listen(int s, int backlog); } 235107 AUE_NULL OBSOL vtimes 236108 AUE_NULL COMPAT { int sigvec(int signum, struct sigvec *nsv, \ 237 struct sigvec *osv); } 238109 AUE_NULL COMPAT { int sigblock(int mask); } 239110 AUE_NULL COMPAT { int sigsetmask(int mask); } 240111 AUE_NULL COMPAT { int sigsuspend(osigset_t mask); } 241; XXX note nonstandard (bogus) calling convention - the libc stub passes 242; us the mask, not a pointer to it. 243112 AUE_NULL COMPAT { int sigstack(struct sigstack *nss, \ 244 struct sigstack *oss); } 245113 AUE_RECVMSG COMPAT { int recvmsg(int s, struct omsghdr *msg, \ 246 int flags); } 247114 AUE_SENDMSG COMPAT { int sendmsg(int s, caddr_t msg, \ 248 int flags); } 249115 AUE_NULL OBSOL vtrace 250116 AUE_GETTIMEOFDAY STD { int gettimeofday(struct timeval *tp, \ 251 struct timezone *tzp); } 252117 AUE_GETRUSAGE STD { int getrusage(int who, \ 253 struct rusage *rusage); } 254118 AUE_GETSOCKOPT STD { int getsockopt(int s, int level, int name, \ 255 caddr_t val, int *avalsize); } 256119 AUE_NULL UNIMPL resuba (BSD/OS 2.x) 257120 AUE_READV STD { int readv(int fd, struct iovec *iovp, \ 258 u_int iovcnt); } 259121 AUE_WRITEV STD { int writev(int fd, struct iovec *iovp, \ 260 u_int iovcnt); } 261122 AUE_SETTIMEOFDAY STD { int settimeofday(struct timeval *tv, \ 262 struct timezone *tzp); } 263123 AUE_FCHOWN STD { int fchown(int fd, int uid, int gid); } 264124 AUE_FCHMOD STD { int fchmod(int fd, int mode); } 265125 AUE_RECVFROM COMPAT|NOARGS { int recvfrom(int s, caddr_t buf, \ 266 size_t len, int flags, caddr_t from, int \ 267 *fromlenaddr); } recvfrom recvfrom_args \ 268 int 269126 AUE_SETREUID STD { int setreuid(int ruid, int euid); } 270127 AUE_SETREGID STD { int setregid(int rgid, int egid); } 271128 AUE_RENAME STD { int rename(char *from, char *to); } 272129 AUE_TRUNCATE COMPAT { int truncate(char *path, long length); } 273130 AUE_FTRUNCATE COMPAT { int ftruncate(int fd, long length); } 274131 AUE_FLOCK STD { int flock(int fd, int how); } 275132 AUE_MKFIFO STD { int mkfifo(char *path, int mode); } 276133 AUE_SENDTO STD { int sendto(int s, caddr_t buf, size_t len, \ 277 int flags, caddr_t to, int tolen); } 278134 AUE_SHUTDOWN STD { int shutdown(int s, int how); } 279135 AUE_SOCKETPAIR STD { int socketpair(int domain, int type, \ 280 int protocol, int *rsv); } 281136 AUE_MKDIR STD { int mkdir(char *path, int mode); } 282137 AUE_RMDIR STD { int rmdir(char *path); } 283138 AUE_UTIMES STD { int utimes(char *path, \ 284 struct timeval *tptr); } 285139 AUE_NULL OBSOL 4.2 sigreturn 286140 AUE_ADJTIME STD { int adjtime(struct timeval *delta, \ 287 struct timeval *olddelta); } 288141 AUE_GETPEERNAME COMPAT { int getpeername(int fdes, caddr_t asa, \ 289 int *alen); } 290142 AUE_SYSCTL COMPAT { long gethostid(void); } 291143 AUE_SYSCTL COMPAT { int sethostid(long hostid); } 292144 AUE_GETRLIMIT COMPAT { int getrlimit(u_int which, struct \ 293 orlimit *rlp); } 294145 AUE_SETRLIMIT COMPAT { int setrlimit(u_int which, \ 295 struct orlimit *rlp); } 296146 AUE_KILLPG COMPAT { int killpg(int pgid, int signum); } 297147 AUE_SETSID STD { int setsid(void); } 298148 AUE_QUOTACTL STD { int quotactl(char *path, int cmd, int uid, \ 299 caddr_t arg); } 300149 AUE_O_QUOTA COMPAT { int quota(void); } 301150 AUE_GETSOCKNAME COMPAT|NOARGS { int getsockname(int fdec, \ 302 caddr_t asa, int *alen); } getsockname \ 303 getsockname_args int 304 305; Syscalls 151-180 inclusive are reserved for vendor-specific 306; system calls. (This includes various calls added for compatibity 307; with other Unix variants.) 308; Some of these calls are now supported by BSD... 309151 AUE_NULL UNIMPL sem_lock (BSD/OS 2.x) 310152 AUE_NULL UNIMPL sem_wakeup (BSD/OS 2.x) 311153 AUE_NULL UNIMPL asyncdaemon (BSD/OS 2.x) 312; 154 is initialised by the NLM code, if present. 313154 AUE_NULL NOSTD { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); } 314; 155 is initialized by the NFS code, if present. 315155 AUE_NFS_SVC NOSTD { int nfssvc(int flag, caddr_t argp); } 316156 AUE_GETDIRENTRIES COMPAT { int getdirentries(int fd, char *buf, \ 317 u_int count, long *basep); } 318157 AUE_STATFS COMPAT4 { int statfs(char *path, \ 319 struct ostatfs *buf); } 320158 AUE_FSTATFS COMPAT4 { int fstatfs(int fd, \ 321 struct ostatfs *buf); } 322159 AUE_NULL UNIMPL nosys 323160 AUE_LGETFH STD { int lgetfh(char *fname, \ 324 struct fhandle *fhp); } 325161 AUE_NFS_GETFH STD { int getfh(char *fname, \ 326 struct fhandle *fhp); } 327162 AUE_SYSCTL COMPAT4 { int getdomainname(char *domainname, \ 328 int len); } 329163 AUE_SYSCTL COMPAT4 { int setdomainname(char *domainname, \ 330 int len); } 331164 AUE_NULL COMPAT4 { int uname(struct utsname *name); } 332165 AUE_SYSARCH STD { int sysarch(int op, char *parms); } 333166 AUE_RTPRIO STD { int rtprio(int function, pid_t pid, \ 334 struct rtprio *rtp); } 335167 AUE_NULL UNIMPL nosys 336168 AUE_NULL UNIMPL nosys 337169 AUE_SEMSYS NOSTD { int semsys(int which, int a2, int a3, \ 338 int a4, int a5); } 339; XXX should be { int semsys(int which, ...); } 340170 AUE_MSGSYS NOSTD { int msgsys(int which, int a2, int a3, \ 341 int a4, int a5, int a6); } 342; XXX should be { int msgsys(int which, ...); } 343171 AUE_SHMSYS NOSTD { int shmsys(int which, int a2, int a3, \ 344 int a4); } 345; XXX should be { int shmsys(int which, ...); } 346172 AUE_NULL UNIMPL nosys 347173 AUE_PREAD COMPAT6 { ssize_t pread(int fd, void *buf, \ 348 size_t nbyte, int pad, off_t offset); } 349174 AUE_PWRITE COMPAT6 { ssize_t pwrite(int fd, \ 350 const void *buf, \ 351 size_t nbyte, int pad, off_t offset); } 352175 AUE_SETFIB STD { int setfib(int fibnum); } 353176 AUE_NTP_ADJTIME STD { int ntp_adjtime(struct timex *tp); } 354177 AUE_NULL UNIMPL sfork (BSD/OS 2.x) 355178 AUE_NULL UNIMPL getdescriptor (BSD/OS 2.x) 356179 AUE_NULL UNIMPL setdescriptor (BSD/OS 2.x) 357180 AUE_NULL UNIMPL nosys 358 359; Syscalls 181-199 are used by/reserved for BSD 360181 AUE_SETGID STD { int setgid(gid_t gid); } 361182 AUE_SETEGID STD { int setegid(gid_t egid); } 362183 AUE_SETEUID STD { int seteuid(uid_t euid); } 363184 AUE_NULL UNIMPL lfs_bmapv 364185 AUE_NULL UNIMPL lfs_markv 365186 AUE_NULL UNIMPL lfs_segclean 366187 AUE_NULL UNIMPL lfs_segwait 367188 AUE_STAT COMPAT11 { int stat(char *path, \ 368 struct freebsd11_stat *ub); } 369189 AUE_FSTAT COMPAT11 { int fstat(int fd, \ 370 struct freebsd11_stat *sb); } 371190 AUE_LSTAT COMPAT11 { int lstat(char *path, \ 372 struct freebsd11_stat *ub); } 373191 AUE_PATHCONF STD { int pathconf(char *path, int name); } 374192 AUE_FPATHCONF STD { int fpathconf(int fd, int name); } 375193 AUE_NULL UNIMPL nosys 376194 AUE_GETRLIMIT STD { int getrlimit(u_int which, \ 377 struct rlimit *rlp); } getrlimit \ 378 __getrlimit_args int 379195 AUE_SETRLIMIT STD { int setrlimit(u_int which, \ 380 struct rlimit *rlp); } setrlimit \ 381 __setrlimit_args int 382196 AUE_GETDIRENTRIES COMPAT11 { int getdirentries(int fd, char *buf, \ 383 u_int count, long *basep); } 384197 AUE_MMAP COMPAT6 { caddr_t mmap(caddr_t addr, \ 385 size_t len, int prot, int flags, int fd, \ 386 int pad, off_t pos); } 387198 AUE_NULL NOPROTO { int nosys(void); } __syscall \ 388 __syscall_args int 389199 AUE_LSEEK COMPAT6 { off_t lseek(int fd, int pad, \ 390 off_t offset, int whence); } 391200 AUE_TRUNCATE COMPAT6 { int truncate(char *path, int pad, \ 392 off_t length); } 393201 AUE_FTRUNCATE COMPAT6 { int ftruncate(int fd, int pad, \ 394 off_t length); } 395202 AUE_SYSCTL STD { int __sysctl(int *name, u_int namelen, \ 396 void *old, size_t *oldlenp, void *new, \ 397 size_t newlen); } __sysctl sysctl_args int 398203 AUE_MLOCK STD { int mlock(const void *addr, size_t len); } 399204 AUE_MUNLOCK STD { int munlock(const void *addr, size_t len); } 400205 AUE_UNDELETE STD { int undelete(char *path); } 401206 AUE_FUTIMES STD { int futimes(int fd, struct timeval *tptr); } 402207 AUE_GETPGID STD { int getpgid(pid_t pid); } 403208 AUE_NULL UNIMPL nosys 404209 AUE_POLL STD { int poll(struct pollfd *fds, u_int nfds, \ 405 int timeout); } 406 407; 408; The following are reserved for loadable syscalls 409; 410210 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 411211 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 412212 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 413213 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 414214 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 415215 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 416216 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 417217 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 418218 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 419219 AUE_NULL NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int 420 421220 AUE_SEMCTL COMPAT7|NOSTD { int __semctl(int semid, int semnum, \ 422 int cmd, union semun_old *arg); } 423221 AUE_SEMGET NOSTD { int semget(key_t key, int nsems, \ 424 int semflg); } 425222 AUE_SEMOP NOSTD { int semop(int semid, struct sembuf *sops, \ 426 size_t nsops); } 427223 AUE_NULL UNIMPL semconfig 428224 AUE_MSGCTL COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \ 429 struct msqid_ds_old *buf); } 430225 AUE_MSGGET NOSTD { int msgget(key_t key, int msgflg); } 431226 AUE_MSGSND NOSTD { int msgsnd(int msqid, const void *msgp, \ 432 size_t msgsz, int msgflg); } 433227 AUE_MSGRCV NOSTD { ssize_t msgrcv(int msqid, void *msgp, \ 434 size_t msgsz, long msgtyp, int msgflg); } 435228 AUE_SHMAT NOSTD { int shmat(int shmid, const void *shmaddr, \ 436 int shmflg); } 437229 AUE_SHMCTL COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \ 438 struct shmid_ds_old *buf); } 439230 AUE_SHMDT NOSTD { int shmdt(const void *shmaddr); } 440231 AUE_SHMGET NOSTD { int shmget(key_t key, size_t size, \ 441 int shmflg); } 442; 443232 AUE_NULL STD { int clock_gettime(clockid_t clock_id, \ 444 struct timespec *tp); } 445233 AUE_CLOCK_SETTIME STD { int clock_settime( \ 446 clockid_t clock_id, \ 447 const struct timespec *tp); } 448234 AUE_NULL STD { int clock_getres(clockid_t clock_id, \ 449 struct timespec *tp); } 450235 AUE_NULL STD { int ktimer_create(clockid_t clock_id, \ 451 struct sigevent *evp, int *timerid); } 452236 AUE_NULL STD { int ktimer_delete(int timerid); } 453237 AUE_NULL STD { int ktimer_settime(int timerid, int flags, \ 454 const struct itimerspec *value, \ 455 struct itimerspec *ovalue); } 456238 AUE_NULL STD { int ktimer_gettime(int timerid, struct \ 457 itimerspec *value); } 458239 AUE_NULL STD { int ktimer_getoverrun(int timerid); } 459240 AUE_NULL STD { int nanosleep(const struct timespec *rqtp, \ 460 struct timespec *rmtp); } 461241 AUE_NULL STD { int ffclock_getcounter(ffcounter *ffcount); } 462242 AUE_NULL STD { int ffclock_setestimate( \ 463 struct ffclock_estimate *cest); } 464243 AUE_NULL STD { int ffclock_getestimate( \ 465 struct ffclock_estimate *cest); } 466244 AUE_NULL STD { int clock_nanosleep(clockid_t clock_id, \ 467 int flags, const struct timespec *rqtp, \ 468 struct timespec *rmtp); } 469245 AUE_NULL UNIMPL nosys 470246 AUE_NULL UNIMPL nosys 471247 AUE_NULL STD { int clock_getcpuclockid2(id_t id,\ 472 int which, clockid_t *clock_id); } 473248 AUE_NULL STD { int ntp_gettime(struct ntptimeval *ntvp); } 474249 AUE_NULL UNIMPL nosys 475250 AUE_MINHERIT STD { int minherit(void *addr, size_t len, \ 476 int inherit); } 477251 AUE_RFORK STD { int rfork(int flags); } 478252 AUE_POLL OBSOL openbsd_poll 479253 AUE_ISSETUGID STD { int issetugid(void); } 480254 AUE_LCHOWN STD { int lchown(char *path, int uid, int gid); } 481255 AUE_AIO_READ STD { int aio_read(struct aiocb *aiocbp); } 482256 AUE_AIO_WRITE STD { int aio_write(struct aiocb *aiocbp); } 483257 AUE_LIO_LISTIO STD { int lio_listio(int mode, \ 484 struct aiocb * const *acb_list, \ 485 int nent, struct sigevent *sig); } 486258 AUE_NULL UNIMPL nosys 487259 AUE_NULL UNIMPL nosys 488260 AUE_NULL UNIMPL nosys 489261 AUE_NULL UNIMPL nosys 490262 AUE_NULL UNIMPL nosys 491263 AUE_NULL UNIMPL nosys 492264 AUE_NULL UNIMPL nosys 493265 AUE_NULL UNIMPL nosys 494266 AUE_NULL UNIMPL nosys 495267 AUE_NULL UNIMPL nosys 496268 AUE_NULL UNIMPL nosys 497269 AUE_NULL UNIMPL nosys 498270 AUE_NULL UNIMPL nosys 499271 AUE_NULL UNIMPL nosys 500272 AUE_O_GETDENTS COMPAT11 { int getdents(int fd, char *buf, \ 501 size_t count); } 502273 AUE_NULL UNIMPL nosys 503274 AUE_LCHMOD STD { int lchmod(char *path, mode_t mode); } 504275 AUE_LCHOWN NOPROTO { int lchown(char *path, uid_t uid, \ 505 gid_t gid); } netbsd_lchown lchown_args \ 506 int 507276 AUE_LUTIMES STD { int lutimes(char *path, \ 508 struct timeval *tptr); } 509277 AUE_MSYNC NOPROTO { int msync(void *addr, size_t len, \ 510 int flags); } netbsd_msync msync_args int 511278 AUE_STAT COMPAT11 { int nstat(char *path, struct nstat *ub); } 512279 AUE_FSTAT COMPAT11 { int nfstat(int fd, struct nstat *sb); } 513280 AUE_LSTAT COMPAT11 { int nlstat(char *path, struct nstat *ub); } 514281 AUE_NULL UNIMPL nosys 515282 AUE_NULL UNIMPL nosys 516283 AUE_NULL UNIMPL nosys 517284 AUE_NULL UNIMPL nosys 518285 AUE_NULL UNIMPL nosys 519286 AUE_NULL UNIMPL nosys 520287 AUE_NULL UNIMPL nosys 521288 AUE_NULL UNIMPL nosys 522289 AUE_PREADV STD { ssize_t preadv(int fd, struct iovec *iovp, \ 523 u_int iovcnt, off_t offset); } 524290 AUE_PWRITEV STD { ssize_t pwritev(int fd, struct iovec *iovp, \ 525 u_int iovcnt, off_t offset); } 526291 AUE_NULL UNIMPL nosys 527292 AUE_NULL UNIMPL nosys 528293 AUE_NULL UNIMPL nosys 529294 AUE_NULL UNIMPL nosys 530295 AUE_NULL UNIMPL nosys 531296 AUE_NULL UNIMPL nosys 532297 AUE_FHSTATFS COMPAT4 { int fhstatfs( \ 533 const struct fhandle *u_fhp, \ 534 struct ostatfs *buf); } 535298 AUE_FHOPEN STD { int fhopen(const struct fhandle *u_fhp, \ 536 int flags); } 537299 AUE_FHSTAT COMPAT11 { int fhstat(const struct fhandle *u_fhp, \ 538 struct freebsd11_stat *sb); } 539300 AUE_NULL STD { int modnext(int modid); } 540301 AUE_NULL STD { int modstat(int modid, \ 541 struct module_stat *stat); } 542302 AUE_NULL STD { int modfnext(int modid); } 543303 AUE_NULL STD { int modfind(const char *name); } 544304 AUE_MODLOAD STD { int kldload(const char *file); } 545305 AUE_MODUNLOAD STD { int kldunload(int fileid); } 546306 AUE_NULL STD { int kldfind(const char *file); } 547307 AUE_NULL STD { int kldnext(int fileid); } 548308 AUE_NULL STD { int kldstat(int fileid, struct \ 549 kld_file_stat* stat); } 550309 AUE_NULL STD { int kldfirstmod(int fileid); } 551310 AUE_GETSID STD { int getsid(pid_t pid); } 552311 AUE_SETRESUID STD { int setresuid(uid_t ruid, uid_t euid, \ 553 uid_t suid); } 554312 AUE_SETRESGID STD { int setresgid(gid_t rgid, gid_t egid, \ 555 gid_t sgid); } 556313 AUE_NULL OBSOL signanosleep 557314 AUE_AIO_RETURN STD { ssize_t aio_return(struct aiocb *aiocbp); } 558315 AUE_AIO_SUSPEND STD { int aio_suspend( \ 559 struct aiocb * const * aiocbp, int nent, \ 560 const struct timespec *timeout); } 561316 AUE_AIO_CANCEL STD { int aio_cancel(int fd, \ 562 struct aiocb *aiocbp); } 563317 AUE_AIO_ERROR STD { int aio_error(struct aiocb *aiocbp); } 564318 AUE_AIO_READ COMPAT6 { int aio_read(struct oaiocb *aiocbp); } 565319 AUE_AIO_WRITE COMPAT6 { int aio_write(struct oaiocb *aiocbp); } 566320 AUE_LIO_LISTIO COMPAT6 { int lio_listio(int mode, \ 567 struct oaiocb * const *acb_list, \ 568 int nent, struct osigevent *sig); } 569321 AUE_NULL STD { int yield(void); } 570322 AUE_NULL OBSOL thr_sleep 571323 AUE_NULL OBSOL thr_wakeup 572324 AUE_MLOCKALL STD { int mlockall(int how); } 573325 AUE_MUNLOCKALL STD { int munlockall(void); } 574326 AUE_GETCWD STD { int __getcwd(char *buf, size_t buflen); } 575 576327 AUE_NULL STD { int sched_setparam (pid_t pid, \ 577 const struct sched_param *param); } 578328 AUE_NULL STD { int sched_getparam (pid_t pid, struct \ 579 sched_param *param); } 580 581329 AUE_NULL STD { int sched_setscheduler (pid_t pid, int \ 582 policy, const struct sched_param \ 583 *param); } 584330 AUE_NULL STD { int sched_getscheduler (pid_t pid); } 585 586331 AUE_NULL STD { int sched_yield (void); } 587332 AUE_NULL STD { int sched_get_priority_max (int policy); } 588333 AUE_NULL STD { int sched_get_priority_min (int policy); } 589334 AUE_NULL STD { int sched_rr_get_interval (pid_t pid, \ 590 struct timespec *interval); } 591335 AUE_NULL STD { int utrace(const void *addr, size_t len); } 592336 AUE_SENDFILE COMPAT4 { int sendfile(int fd, int s, \ 593 off_t offset, size_t nbytes, \ 594 struct sf_hdtr *hdtr, off_t *sbytes, \ 595 int flags); } 596337 AUE_NULL STD { int kldsym(int fileid, int cmd, \ 597 void *data); } 598338 AUE_JAIL STD { int jail(struct jail *jail); } 599339 AUE_NULL NOSTD|NOTSTATIC { int nnpfs_syscall(int operation, \ 600 char *a_pathP, int a_opcode, \ 601 void *a_paramsP, int a_followSymlinks); } 602340 AUE_SIGPROCMASK STD { int sigprocmask(int how, \ 603 const sigset_t *set, sigset_t *oset); } 604341 AUE_SIGSUSPEND STD { int sigsuspend(const sigset_t *sigmask); } 605342 AUE_SIGACTION COMPAT4 { int sigaction(int sig, const \ 606 struct sigaction *act, \ 607 struct sigaction *oact); } 608343 AUE_SIGPENDING STD { int sigpending(sigset_t *set); } 609344 AUE_SIGRETURN COMPAT4 { int sigreturn( \ 610 const struct ucontext4 *sigcntxp); } 611345 AUE_SIGWAIT STD { int sigtimedwait(const sigset_t *set, \ 612 siginfo_t *info, \ 613 const struct timespec *timeout); } 614346 AUE_NULL STD { int sigwaitinfo(const sigset_t *set, \ 615 siginfo_t *info); } 616347 AUE_ACL_GET_FILE STD { int __acl_get_file(const char *path, \ 617 acl_type_t type, struct acl *aclp); } 618348 AUE_ACL_SET_FILE STD { int __acl_set_file(const char *path, \ 619 acl_type_t type, struct acl *aclp); } 620349 AUE_ACL_GET_FD STD { int __acl_get_fd(int filedes, \ 621 acl_type_t type, struct acl *aclp); } 622350 AUE_ACL_SET_FD STD { int __acl_set_fd(int filedes, \ 623 acl_type_t type, struct acl *aclp); } 624351 AUE_ACL_DELETE_FILE STD { int __acl_delete_file(const char *path, \ 625 acl_type_t type); } 626352 AUE_ACL_DELETE_FD STD { int __acl_delete_fd(int filedes, \ 627 acl_type_t type); } 628353 AUE_ACL_CHECK_FILE STD { int __acl_aclcheck_file(const char *path, \ 629 acl_type_t type, struct acl *aclp); } 630354 AUE_ACL_CHECK_FD STD { int __acl_aclcheck_fd(int filedes, \ 631 acl_type_t type, struct acl *aclp); } 632355 AUE_EXTATTRCTL STD { int extattrctl(const char *path, int cmd, \ 633 const char *filename, int attrnamespace, \ 634 const char *attrname); } 635356 AUE_EXTATTR_SET_FILE STD { ssize_t extattr_set_file( \ 636 const char *path, int attrnamespace, \ 637 const char *attrname, void *data, \ 638 size_t nbytes); } 639357 AUE_EXTATTR_GET_FILE STD { ssize_t extattr_get_file( \ 640 const char *path, int attrnamespace, \ 641 const char *attrname, void *data, \ 642 size_t nbytes); } 643358 AUE_EXTATTR_DELETE_FILE STD { int extattr_delete_file(const char *path, \ 644 int attrnamespace, \ 645 const char *attrname); } 646359 AUE_AIO_WAITCOMPLETE STD { ssize_t aio_waitcomplete( \ 647 struct aiocb **aiocbp, \ 648 struct timespec *timeout); } 649360 AUE_GETRESUID STD { int getresuid(uid_t *ruid, uid_t *euid, \ 650 uid_t *suid); } 651361 AUE_GETRESGID STD { int getresgid(gid_t *rgid, gid_t *egid, \ 652 gid_t *sgid); } 653362 AUE_KQUEUE STD { int kqueue(void); } 654363 AUE_KEVENT COMPAT11 { int kevent(int fd, \ 655 struct kevent_freebsd11 *changelist, \ 656 int nchanges, \ 657 struct kevent_freebsd11 *eventlist, \ 658 int nevents, \ 659 const struct timespec *timeout); } 660364 AUE_NULL UNIMPL __cap_get_proc 661365 AUE_NULL UNIMPL __cap_set_proc 662366 AUE_NULL UNIMPL __cap_get_fd 663367 AUE_NULL UNIMPL __cap_get_file 664368 AUE_NULL UNIMPL __cap_set_fd 665369 AUE_NULL UNIMPL __cap_set_file 666370 AUE_NULL UNIMPL nosys 667371 AUE_EXTATTR_SET_FD STD { ssize_t extattr_set_fd(int fd, \ 668 int attrnamespace, const char *attrname, \ 669 void *data, size_t nbytes); } 670372 AUE_EXTATTR_GET_FD STD { ssize_t extattr_get_fd(int fd, \ 671 int attrnamespace, const char *attrname, \ 672 void *data, size_t nbytes); } 673373 AUE_EXTATTR_DELETE_FD STD { int extattr_delete_fd(int fd, \ 674 int attrnamespace, \ 675 const char *attrname); } 676374 AUE_SETUGID STD { int __setugid(int flag); } 677375 AUE_NULL UNIMPL nfsclnt 678376 AUE_EACCESS STD { int eaccess(char *path, int amode); } 679377 AUE_NULL NOSTD|NOTSTATIC { int afs3_syscall(long syscall, \ 680 long parm1, long parm2, long parm3, \ 681 long parm4, long parm5, long parm6); } 682378 AUE_NMOUNT STD { int nmount(struct iovec *iovp, \ 683 unsigned int iovcnt, int flags); } 684379 AUE_NULL UNIMPL kse_exit 685380 AUE_NULL UNIMPL kse_wakeup 686381 AUE_NULL UNIMPL kse_create 687382 AUE_NULL UNIMPL kse_thr_interrupt 688383 AUE_NULL UNIMPL kse_release 689384 AUE_NULL STD { int __mac_get_proc(struct mac *mac_p); } 690385 AUE_NULL STD { int __mac_set_proc(struct mac *mac_p); } 691386 AUE_NULL STD { int __mac_get_fd(int fd, \ 692 struct mac *mac_p); } 693387 AUE_NULL STD { int __mac_get_file(const char *path_p, \ 694 struct mac *mac_p); } 695388 AUE_NULL STD { int __mac_set_fd(int fd, \ 696 struct mac *mac_p); } 697389 AUE_NULL STD { int __mac_set_file(const char *path_p, \ 698 struct mac *mac_p); } 699390 AUE_NULL STD { int kenv(int what, const char *name, \ 700 char *value, int len); } 701391 AUE_LCHFLAGS STD { int lchflags(const char *path, \ 702 u_long flags); } 703392 AUE_NULL STD { int uuidgen(struct uuid *store, \ 704 int count); } 705393 AUE_SENDFILE STD { int sendfile(int fd, int s, off_t offset, \ 706 size_t nbytes, struct sf_hdtr *hdtr, \ 707 off_t *sbytes, int flags); } 708394 AUE_NULL STD { int mac_syscall(const char *policy, \ 709 int call, void *arg); } 710395 AUE_GETFSSTAT COMPAT11 { int getfsstat(struct freebsd11_statfs *buf, \ 711 long bufsize, int mode); } 712396 AUE_STATFS COMPAT11 { int statfs(char *path, \ 713 struct freebsd11_statfs *buf); } 714397 AUE_FSTATFS COMPAT11 { int fstatfs(int fd, \ 715 struct freebsd11_statfs *buf); } 716398 AUE_FHSTATFS COMPAT11 { int fhstatfs(const struct fhandle *u_fhp, \ 717 struct freebsd11_statfs *buf); } 718399 AUE_NULL UNIMPL nosys 719400 AUE_SEMCLOSE NOSTD { int ksem_close(semid_t id); } 720401 AUE_SEMPOST NOSTD { int ksem_post(semid_t id); } 721402 AUE_SEMWAIT NOSTD { int ksem_wait(semid_t id); } 722403 AUE_SEMTRYWAIT NOSTD { int ksem_trywait(semid_t id); } 723404 AUE_SEMINIT NOSTD { int ksem_init(semid_t *idp, \ 724 unsigned int value); } 725405 AUE_SEMOPEN NOSTD { int ksem_open(semid_t *idp, \ 726 const char *name, int oflag, \ 727 mode_t mode, unsigned int value); } 728406 AUE_SEMUNLINK NOSTD { int ksem_unlink(const char *name); } 729407 AUE_SEMGETVALUE NOSTD { int ksem_getvalue(semid_t id, int *val); } 730408 AUE_SEMDESTROY NOSTD { int ksem_destroy(semid_t id); } 731409 AUE_NULL STD { int __mac_get_pid(pid_t pid, \ 732 struct mac *mac_p); } 733410 AUE_NULL STD { int __mac_get_link(const char *path_p, \ 734 struct mac *mac_p); } 735411 AUE_NULL STD { int __mac_set_link(const char *path_p, \ 736 struct mac *mac_p); } 737412 AUE_EXTATTR_SET_LINK STD { ssize_t extattr_set_link( \ 738 const char *path, int attrnamespace, \ 739 const char *attrname, void *data, \ 740 size_t nbytes); } 741413 AUE_EXTATTR_GET_LINK STD { ssize_t extattr_get_link( \ 742 const char *path, int attrnamespace, \ 743 const char *attrname, void *data, \ 744 size_t nbytes); } 745414 AUE_EXTATTR_DELETE_LINK STD { int extattr_delete_link( \ 746 const char *path, int attrnamespace, \ 747 const char *attrname); } 748415 AUE_NULL STD { int __mac_execve(char *fname, char **argv, \ 749 char **envv, struct mac *mac_p); } 750416 AUE_SIGACTION STD { int sigaction(int sig, \ 751 const struct sigaction *act, \ 752 struct sigaction *oact); } 753417 AUE_SIGRETURN STD { int sigreturn( \ 754 const struct __ucontext *sigcntxp); } 755418 AUE_NULL UNIMPL __xstat 756419 AUE_NULL UNIMPL __xfstat 757420 AUE_NULL UNIMPL __xlstat 758421 AUE_NULL STD { int getcontext(struct __ucontext *ucp); } 759422 AUE_NULL STD { int setcontext( \ 760 const struct __ucontext *ucp); } 761423 AUE_NULL STD { int swapcontext(struct __ucontext *oucp, \ 762 const struct __ucontext *ucp); } 763424 AUE_SWAPOFF STD { int swapoff(const char *name); } 764425 AUE_ACL_GET_LINK STD { int __acl_get_link(const char *path, \ 765 acl_type_t type, struct acl *aclp); } 766426 AUE_ACL_SET_LINK STD { int __acl_set_link(const char *path, \ 767 acl_type_t type, struct acl *aclp); } 768427 AUE_ACL_DELETE_LINK STD { int __acl_delete_link(const char *path, \ 769 acl_type_t type); } 770428 AUE_ACL_CHECK_LINK STD { int __acl_aclcheck_link(const char *path, \ 771 acl_type_t type, struct acl *aclp); } 772429 AUE_SIGWAIT STD { int sigwait(const sigset_t *set, \ 773 int *sig); } 774430 AUE_THR_CREATE STD { int thr_create(ucontext_t *ctx, long *id, \ 775 int flags); } 776431 AUE_THR_EXIT STD { void thr_exit(long *state); } 777432 AUE_NULL STD { int thr_self(long *id); } 778433 AUE_THR_KILL STD { int thr_kill(long id, int sig); } 779434 AUE_NULL UNIMPL nosys 780435 AUE_NULL UNIMPL nosys 781436 AUE_JAIL_ATTACH STD { int jail_attach(int jid); } 782437 AUE_EXTATTR_LIST_FD STD { ssize_t extattr_list_fd(int fd, \ 783 int attrnamespace, void *data, \ 784 size_t nbytes); } 785438 AUE_EXTATTR_LIST_FILE STD { ssize_t extattr_list_file( \ 786 const char *path, int attrnamespace, \ 787 void *data, size_t nbytes); } 788439 AUE_EXTATTR_LIST_LINK STD { ssize_t extattr_list_link( \ 789 const char *path, int attrnamespace, \ 790 void *data, size_t nbytes); } 791440 AUE_NULL UNIMPL kse_switchin 792441 AUE_SEMWAIT NOSTD { int ksem_timedwait(semid_t id, \ 793 const struct timespec *abstime); } 794442 AUE_NULL STD { int thr_suspend( \ 795 const struct timespec *timeout); } 796443 AUE_NULL STD { int thr_wake(long id); } 797444 AUE_MODUNLOAD STD { int kldunloadf(int fileid, int flags); } 798445 AUE_AUDIT STD { int audit(const void *record, \ 799 u_int length); } 800446 AUE_AUDITON STD { int auditon(int cmd, void *data, \ 801 u_int length); } 802447 AUE_GETAUID STD { int getauid(uid_t *auid); } 803448 AUE_SETAUID STD { int setauid(uid_t *auid); } 804449 AUE_GETAUDIT STD { int getaudit(struct auditinfo *auditinfo); } 805450 AUE_SETAUDIT STD { int setaudit(struct auditinfo *auditinfo); } 806451 AUE_GETAUDIT_ADDR STD { int getaudit_addr( \ 807 struct auditinfo_addr *auditinfo_addr, \ 808 u_int length); } 809452 AUE_SETAUDIT_ADDR STD { int setaudit_addr( \ 810 struct auditinfo_addr *auditinfo_addr, \ 811 u_int length); } 812453 AUE_AUDITCTL STD { int auditctl(char *path); } 813454 AUE_NULL STD { int _umtx_op(void *obj, int op, \ 814 u_long val, void *uaddr1, void *uaddr2); } 815455 AUE_THR_NEW STD { int thr_new(struct thr_param *param, \ 816 int param_size); } 817456 AUE_NULL STD { int sigqueue(pid_t pid, int signum, void *value); } 818457 AUE_MQ_OPEN NOSTD { int kmq_open(const char *path, int flags, \ 819 mode_t mode, const struct mq_attr *attr); } 820458 AUE_MQ_SETATTR NOSTD { int kmq_setattr(int mqd, \ 821 const struct mq_attr *attr, \ 822 struct mq_attr *oattr); } 823459 AUE_MQ_TIMEDRECEIVE NOSTD { int kmq_timedreceive(int mqd, \ 824 char *msg_ptr, size_t msg_len, \ 825 unsigned *msg_prio, \ 826 const struct timespec *abs_timeout); } 827460 AUE_MQ_TIMEDSEND NOSTD { int kmq_timedsend(int mqd, \ 828 const char *msg_ptr, size_t msg_len,\ 829 unsigned msg_prio, \ 830 const struct timespec *abs_timeout);} 831461 AUE_MQ_NOTIFY NOSTD { int kmq_notify(int mqd, \ 832 const struct sigevent *sigev); } 833462 AUE_MQ_UNLINK NOSTD { int kmq_unlink(const char *path); } 834463 AUE_NULL STD { int abort2(const char *why, int nargs, void **args); } 835464 AUE_NULL STD { int thr_set_name(long id, const char *name); } 836465 AUE_AIO_FSYNC STD { int aio_fsync(int op, struct aiocb *aiocbp); } 837466 AUE_RTPRIO STD { int rtprio_thread(int function, \ 838 lwpid_t lwpid, struct rtprio *rtp); } 839467 AUE_NULL UNIMPL nosys 840468 AUE_NULL UNIMPL nosys 841469 AUE_NULL UNIMPL __getpath_fromfd 842470 AUE_NULL UNIMPL __getpath_fromaddr 843471 AUE_SCTP_PEELOFF NOSTD { int sctp_peeloff(int sd, uint32_t name); } 844472 AUE_SCTP_GENERIC_SENDMSG NOSTD { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \ 845 caddr_t to, __socklen_t tolen, \ 846 struct sctp_sndrcvinfo *sinfo, int flags); } 847473 AUE_SCTP_GENERIC_SENDMSG_IOV NOSTD { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \ 848 caddr_t to, __socklen_t tolen, \ 849 struct sctp_sndrcvinfo *sinfo, int flags); } 850474 AUE_SCTP_GENERIC_RECVMSG NOSTD { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \ 851 struct sockaddr * from, __socklen_t *fromlenaddr, \ 852 struct sctp_sndrcvinfo *sinfo, int *msg_flags); } 853475 AUE_PREAD STD { ssize_t pread(int fd, void *buf, \ 854 size_t nbyte, off_t offset); } 855476 AUE_PWRITE STD { ssize_t pwrite(int fd, const void *buf, \ 856 size_t nbyte, off_t offset); } 857477 AUE_MMAP STD { caddr_t mmap(caddr_t addr, size_t len, \ 858 int prot, int flags, int fd, off_t pos); } 859478 AUE_LSEEK STD { off_t lseek(int fd, off_t offset, \ 860 int whence); } 861479 AUE_TRUNCATE STD { int truncate(char *path, off_t length); } 862480 AUE_FTRUNCATE STD { int ftruncate(int fd, off_t length); } 863481 AUE_THR_KILL2 STD { int thr_kill2(pid_t pid, long id, int sig); } 864482 AUE_SHMOPEN STD { int shm_open(const char *path, int flags, \ 865 mode_t mode); } 866483 AUE_SHMUNLINK STD { int shm_unlink(const char *path); } 867484 AUE_NULL STD { int cpuset(cpusetid_t *setid); } 868485 AUE_NULL STD { int cpuset_setid(cpuwhich_t which, id_t id, \ 869 cpusetid_t setid); } 870486 AUE_NULL STD { int cpuset_getid(cpulevel_t level, \ 871 cpuwhich_t which, id_t id, \ 872 cpusetid_t *setid); } 873487 AUE_NULL STD { int cpuset_getaffinity(cpulevel_t level, \ 874 cpuwhich_t which, id_t id, size_t cpusetsize, \ 875 cpuset_t *mask); } 876488 AUE_NULL STD { int cpuset_setaffinity(cpulevel_t level, \ 877 cpuwhich_t which, id_t id, size_t cpusetsize, \ 878 const cpuset_t *mask); } 879489 AUE_FACCESSAT STD { int faccessat(int fd, char *path, int amode, \ 880 int flag); } 881490 AUE_FCHMODAT STD { int fchmodat(int fd, char *path, mode_t mode, \ 882 int flag); } 883491 AUE_FCHOWNAT STD { int fchownat(int fd, char *path, uid_t uid, \ 884 gid_t gid, int flag); } 885492 AUE_FEXECVE STD { int fexecve(int fd, char **argv, \ 886 char **envv); } 887493 AUE_FSTATAT COMPAT11 { int fstatat(int fd, char *path, \ 888 struct freebsd11_stat *buf, int flag); } 889494 AUE_FUTIMESAT STD { int futimesat(int fd, char *path, \ 890 struct timeval *times); } 891495 AUE_LINKAT STD { int linkat(int fd1, char *path1, int fd2, \ 892 char *path2, int flag); } 893496 AUE_MKDIRAT STD { int mkdirat(int fd, char *path, mode_t mode); } 894497 AUE_MKFIFOAT STD { int mkfifoat(int fd, char *path, mode_t mode); } 895498 AUE_MKNODAT COMPAT11 { int mknodat(int fd, char *path, mode_t mode, \ 896 uint32_t dev); } 897; XXX: see the comment for open 898499 AUE_OPENAT_RWTC STD { int openat(int fd, char *path, int flag, \ 899 mode_t mode); } 900500 AUE_READLINKAT STD { int readlinkat(int fd, char *path, char *buf, \ 901 size_t bufsize); } 902501 AUE_RENAMEAT STD { int renameat(int oldfd, char *old, int newfd, \ 903 char *new); } 904502 AUE_SYMLINKAT STD { int symlinkat(char *path1, int fd, \ 905 char *path2); } 906503 AUE_UNLINKAT STD { int unlinkat(int fd, char *path, int flag); } 907504 AUE_POSIX_OPENPT STD { int posix_openpt(int flags); } 908; 505 is initialised by the kgssapi code, if present. 909505 AUE_NULL NOSTD { int gssd_syscall(char *path); } 910506 AUE_JAIL_GET STD { int jail_get(struct iovec *iovp, \ 911 unsigned int iovcnt, int flags); } 912507 AUE_JAIL_SET STD { int jail_set(struct iovec *iovp, \ 913 unsigned int iovcnt, int flags); } 914508 AUE_JAIL_REMOVE STD { int jail_remove(int jid); } 915509 AUE_CLOSEFROM STD { int closefrom(int lowfd); } 916510 AUE_SEMCTL NOSTD { int __semctl(int semid, int semnum, \ 917 int cmd, union semun *arg); } 918511 AUE_MSGCTL NOSTD { int msgctl(int msqid, int cmd, \ 919 struct msqid_ds *buf); } 920512 AUE_SHMCTL NOSTD { int shmctl(int shmid, int cmd, \ 921 struct shmid_ds *buf); } 922513 AUE_LPATHCONF STD { int lpathconf(char *path, int name); } 923514 AUE_NULL OBSOL cap_new 924515 AUE_CAP_RIGHTS_GET STD { int __cap_rights_get(int version, \ 925 int fd, cap_rights_t *rightsp); } 926516 AUE_CAP_ENTER STD { int cap_enter(void); } 927517 AUE_CAP_GETMODE STD { int cap_getmode(u_int *modep); } 928518 AUE_PDFORK STD { int pdfork(int *fdp, int flags); } 929519 AUE_PDKILL STD { int pdkill(int fd, int signum); } 930520 AUE_PDGETPID STD { int pdgetpid(int fd, pid_t *pidp); } 931521 AUE_PDWAIT UNIMPL pdwait4 932522 AUE_SELECT STD { int pselect(int nd, fd_set *in, \ 933 fd_set *ou, fd_set *ex, \ 934 const struct timespec *ts, \ 935 const sigset_t *sm); } 936523 AUE_GETLOGINCLASS STD { int getloginclass(char *namebuf, \ 937 size_t namelen); } 938524 AUE_SETLOGINCLASS STD { int setloginclass(const char *namebuf); } 939525 AUE_NULL STD { int rctl_get_racct(const void *inbufp, \ 940 size_t inbuflen, void *outbufp, \ 941 size_t outbuflen); } 942526 AUE_NULL STD { int rctl_get_rules(const void *inbufp, \ 943 size_t inbuflen, void *outbufp, \ 944 size_t outbuflen); } 945527 AUE_NULL STD { int rctl_get_limits(const void *inbufp, \ 946 size_t inbuflen, void *outbufp, \ 947 size_t outbuflen); } 948528 AUE_NULL STD { int rctl_add_rule(const void *inbufp, \ 949 size_t inbuflen, void *outbufp, \ 950 size_t outbuflen); } 951529 AUE_NULL STD { int rctl_remove_rule(const void *inbufp, \ 952 size_t inbuflen, void *outbufp, \ 953 size_t outbuflen); } 954530 AUE_POSIX_FALLOCATE STD { int posix_fallocate(int fd, \ 955 off_t offset, off_t len); } 956531 AUE_POSIX_FADVISE STD { int posix_fadvise(int fd, off_t offset, \ 957 off_t len, int advice); } 958532 AUE_WAIT6 STD { int wait6(idtype_t idtype, id_t id, \ 959 int *status, int options, \ 960 struct __wrusage *wrusage, \ 961 siginfo_t *info); } 962533 AUE_CAP_RIGHTS_LIMIT STD { int cap_rights_limit(int fd, \ 963 cap_rights_t *rightsp); } 964534 AUE_CAP_IOCTLS_LIMIT STD { int cap_ioctls_limit(int fd, \ 965 const u_long *cmds, size_t ncmds); } 966535 AUE_CAP_IOCTLS_GET STD { ssize_t cap_ioctls_get(int fd, \ 967 u_long *cmds, size_t maxcmds); } 968536 AUE_CAP_FCNTLS_LIMIT STD { int cap_fcntls_limit(int fd, \ 969 uint32_t fcntlrights); } 970537 AUE_CAP_FCNTLS_GET STD { int cap_fcntls_get(int fd, \ 971 uint32_t *fcntlrightsp); } 972538 AUE_BINDAT STD { int bindat(int fd, int s, caddr_t name, \ 973 int namelen); } 974539 AUE_CONNECTAT STD { int connectat(int fd, int s, caddr_t name, \ 975 int namelen); } 976540 AUE_CHFLAGSAT STD { int chflagsat(int fd, const char *path, \ 977 u_long flags, int atflag); } 978541 AUE_ACCEPT STD { int accept4(int s, \ 979 struct sockaddr * __restrict name, \ 980 __socklen_t * __restrict anamelen, \ 981 int flags); } 982542 AUE_PIPE STD { int pipe2(int *fildes, int flags); } 983543 AUE_AIO_MLOCK STD { int aio_mlock(struct aiocb *aiocbp); } 984544 AUE_PROCCTL STD { int procctl(idtype_t idtype, id_t id, \ 985 int com, void *data); } 986545 AUE_POLL STD { int ppoll(struct pollfd *fds, u_int nfds, \ 987 const struct timespec *ts, \ 988 const sigset_t *set); } 989546 AUE_FUTIMES STD { int futimens(int fd, \ 990 struct timespec *times); } 991547 AUE_FUTIMESAT STD { int utimensat(int fd, \ 992 char *path, \ 993 struct timespec *times, int flag); } 994548 AUE_NULL UNIMPL numa_getaffinity 995549 AUE_NULL UNIMPL numa_setaffinity 996550 AUE_FSYNC STD { int fdatasync(int fd); } 997551 AUE_FSTAT STD { int fstat(int fd, struct stat *sb); } 998552 AUE_FSTATAT STD { int fstatat(int fd, char *path, \ 999 struct stat *buf, int flag); } 1000553 AUE_FHSTAT STD { int fhstat(const struct fhandle *u_fhp, \ 1001 struct stat *sb); } 1002554 AUE_GETDIRENTRIES STD { ssize_t getdirentries(int fd, char *buf, \ 1003 size_t count, off_t *basep); } 1004555 AUE_STATFS STD { int statfs(char *path, struct statfs *buf); } 1005556 AUE_FSTATFS STD { int fstatfs(int fd, struct statfs *buf); } 1006557 AUE_GETFSSTAT STD { int getfsstat(struct statfs *buf, \ 1007 long bufsize, int mode); } 1008558 AUE_FHSTATFS STD { int fhstatfs(const struct fhandle *u_fhp, \ 1009 struct statfs *buf); } 1010559 AUE_MKNODAT STD { int mknodat(int fd, char *path, mode_t mode, \ 1011 dev_t dev); } 1012560 AUE_KEVENT STD { int kevent(int fd, \ 1013 struct kevent *changelist, int nchanges, \ 1014 struct kevent *eventlist, int nevents, \ 1015 const struct timespec *timeout); } 1016561 AUE_NULL STD { int cpuset_getdomain(cpulevel_t level, \ 1017 cpuwhich_t which, id_t id, \ 1018 size_t domainsetsize, domainset_t *mask, \ 1019 int *policy); } 1020562 AUE_NULL STD { int cpuset_setdomain(cpulevel_t level, \ 1021 cpuwhich_t which, id_t id, \ 1022 size_t domainsetsize, domainset_t *mask, \ 1023 int policy); } 1024563 AUE_NULL STD { int getrandom(void *buf, size_t buflen, \ 1025 unsigned int flags); } 1026 1027; Please copy any additions and changes to the following compatability tables: 1028; sys/compat/freebsd32/syscalls.master 1029; vim: syntax=off 1030