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, LIBCOMPAT, 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 psuedo-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 COMPAT4 #ifdef (FreeBSD 4 compat) 29; COMPAT6 included on COMPAT6 #ifdef (FreeBSD 6 compat) 30; COMPAT7 included on COMPAT7 #ifdef (FreeBSD 7 compat) 31; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h 32; OBSOL obsolete, not included in system, only specifies name 33; UNIMPL not implemented, placeholder only 34; NOSTD implemented but as a lkm that can be statically 35; compiled in; sysent entry will be filled with lkmressys 36; so the SYSCALL_MODULE macro works 37; NOARGS same as STD except do not create structure in sys/sysproto.h 38; NODEF same as STD except only have the entry in the syscall table 39; added. Meaning - do not create structure or function 40; prototype in sys/sysproto.h 41; NOPROTO same as STD except do not create structure or 42; function prototype in sys/sysproto.h. Does add a 43; definition to syscall.h besides adding a sysent. 44 45; 46; Please copy any additions and changes to the following compatability tables: 47; sys/compat/freebsd32/syscalls.master 48 49; #ifdef's, etc. may be included, and are copied to the output files. 50 51#include <sys/param.h> 52#include <sys/sysent.h> 53#include <sys/sysproto.h> 54 55; Reserved/unimplemented system calls in the range 0-150 inclusive 56; are reserved for use in future Berkeley releases. 57; Additional system calls implemented in vendor and other 58; redistributions should be placed in the reserved range at the end 59; of the current calls. 60 610 AUE_NULL STD { int nosys(void); } syscall nosys_args int 621 AUE_EXIT STD { void sys_exit(int rval); } exit \ 63 sys_exit_args void 642 AUE_FORK STD { int fork(void); } 653 AUE_NULL STD { ssize_t read(int fd, void *buf, \ 66 size_t nbyte); } 674 AUE_NULL STD { ssize_t write(int fd, const void *buf, \ 68 size_t nbyte); } 695 AUE_OPEN_RWTC STD { int open(char *path, int flags, int mode); } 70; XXX should be { int open(const char *path, int flags, ...); } 71; but we're not ready for `const' or varargs. 72; XXX man page says `mode_t mode'. 736 AUE_CLOSE STD { int close(int fd); } 747 AUE_WAIT4 STD { int wait4(int pid, int *status, \ 75 int options, struct rusage *rusage); } \ 76 wait4 wait_args int 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 STD { 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 flags); } 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 flags); } 12034 AUE_CHFLAGS STD { int chflags(char *path, int flags); } 12135 AUE_FCHFLAGS STD { int fchflags(int fd, int 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 STD { 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(const 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 STD { ssize_t freebsd6_pread(int fd, void *buf, \ 348 size_t nbyte, int pad, off_t offset); } 349174 AUE_PWRITE STD { ssize_t freebsd6_pwrite(int fd, \ 350 const void *buf, \ 351 size_t nbyte, int pad, off_t offset); } 352175 AUE_NULL 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 STD { int stat(char *path, struct stat *ub); } 368189 AUE_FSTAT STD { int fstat(int fd, struct stat *sb); } 369190 AUE_LSTAT STD { int lstat(char *path, struct stat *ub); } 370191 AUE_PATHCONF STD { int pathconf(char *path, int name); } 371192 AUE_FPATHCONF STD { int fpathconf(int fd, int name); } 372193 AUE_NULL UNIMPL nosys 373194 AUE_GETRLIMIT STD { int getrlimit(u_int which, \ 374 struct rlimit *rlp); } getrlimit \ 375 __getrlimit_args int 376195 AUE_SETRLIMIT STD { int setrlimit(u_int which, \ 377 struct rlimit *rlp); } setrlimit \ 378 __setrlimit_args int 379196 AUE_GETDIRENTRIES STD { int getdirentries(int fd, char *buf, \ 380 u_int count, long *basep); } 381197 AUE_MMAP STD { caddr_t freebsd6_mmap(caddr_t addr, \ 382 size_t len, int prot, int flags, int fd, \ 383 int pad, off_t pos); } 384198 AUE_NULL NOPROTO { int nosys(void); } __syscall \ 385 __syscall_args int 386199 AUE_LSEEK STD { off_t freebsd6_lseek(int fd, int pad, \ 387 off_t offset, int whence); } 388200 AUE_TRUNCATE STD { int freebsd6_truncate(char *path, int pad, \ 389 off_t length); } 390201 AUE_FTRUNCATE STD { int freebsd6_ftruncate(int fd, int pad, \ 391 off_t length); } 392202 AUE_SYSCTL STD { int __sysctl(int *name, u_int namelen, \ 393 void *old, size_t *oldlenp, void *new, \ 394 size_t newlen); } __sysctl sysctl_args int 395203 AUE_MLOCK STD { int mlock(const void *addr, size_t len); } 396204 AUE_MUNLOCK STD { int munlock(const void *addr, size_t len); } 397205 AUE_UNDELETE STD { int undelete(char *path); } 398206 AUE_FUTIMES STD { int futimes(int fd, struct timeval *tptr); } 399207 AUE_GETPGID STD { int getpgid(pid_t pid); } 400208 AUE_NULL UNIMPL newreboot (NetBSD) 401209 AUE_POLL STD { int poll(struct pollfd *fds, u_int nfds, \ 402 int timeout); } 403 404; 405; The following are reserved for loadable syscalls 406; 407210 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 408211 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 409212 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 410213 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 411214 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 412215 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 413216 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 414217 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 415218 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 416219 AUE_NULL NODEF lkmnosys lkmnosys nosys_args int 417 418; 419; The following were introduced with NetBSD/4.4Lite-2 420220 AUE_SEMCTL COMPAT7|NOSTD { int __semctl(int semid, int semnum, \ 421 int cmd, union semun_old *arg); } 422221 AUE_SEMGET NOSTD { int semget(key_t key, int nsems, \ 423 int semflg); } 424222 AUE_SEMOP NOSTD { int semop(int semid, struct sembuf *sops, \ 425 size_t nsops); } 426223 AUE_NULL UNIMPL semconfig 427224 AUE_MSGCTL COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \ 428 struct msqid_ds_old *buf); } 429225 AUE_MSGGET NOSTD { int msgget(key_t key, int msgflg); } 430226 AUE_MSGSND NOSTD { int msgsnd(int msqid, const void *msgp, \ 431 size_t msgsz, int msgflg); } 432227 AUE_MSGRCV NOSTD { int msgrcv(int msqid, void *msgp, \ 433 size_t msgsz, long msgtyp, int msgflg); } 434228 AUE_SHMAT NOSTD { int shmat(int shmid, const void *shmaddr, \ 435 int shmflg); } 436229 AUE_SHMCTL COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \ 437 struct shmid_ds_old *buf); } 438230 AUE_SHMDT NOSTD { int shmdt(const void *shmaddr); } 439231 AUE_SHMGET NOSTD { int shmget(key_t key, size_t size, \ 440 int shmflg); } 441; 442232 AUE_NULL STD { int clock_gettime(clockid_t clock_id, \ 443 struct timespec *tp); } 444233 AUE_CLOCK_SETTIME STD { int clock_settime( \ 445 clockid_t clock_id, \ 446 const struct timespec *tp); } 447234 AUE_NULL STD { int clock_getres(clockid_t clock_id, \ 448 struct timespec *tp); } 449235 AUE_NULL STD { int ktimer_create(clockid_t clock_id, \ 450 struct sigevent *evp, int *timerid); } 451236 AUE_NULL STD { int ktimer_delete(int timerid); } 452237 AUE_NULL STD { int ktimer_settime(int timerid, int flags, \ 453 const struct itimerspec *value, \ 454 struct itimerspec *ovalue); } 455238 AUE_NULL STD { int ktimer_gettime(int timerid, struct \ 456 itimerspec *value); } 457239 AUE_NULL STD { int ktimer_getoverrun(int timerid); } 458240 AUE_NULL STD { int nanosleep(const struct timespec *rqtp, \ 459 struct timespec *rmtp); } 460241 AUE_NULL UNIMPL nosys 461242 AUE_NULL UNIMPL nosys 462243 AUE_NULL UNIMPL nosys 463244 AUE_NULL UNIMPL nosys 464245 AUE_NULL UNIMPL nosys 465246 AUE_NULL UNIMPL nosys 466247 AUE_NULL UNIMPL nosys 467248 AUE_NULL STD { int ntp_gettime(struct ntptimeval *ntvp); } 468249 AUE_NULL UNIMPL nosys 469; syscall numbers initially used in OpenBSD 470250 AUE_MINHERIT STD { int minherit(void *addr, size_t len, \ 471 int inherit); } 472251 AUE_RFORK STD { int rfork(int flags); } 473252 AUE_POLL STD { int openbsd_poll(struct pollfd *fds, \ 474 u_int nfds, int timeout); } 475253 AUE_ISSETUGID STD { int issetugid(void); } 476254 AUE_LCHOWN STD { int lchown(char *path, int uid, int gid); } 477255 AUE_NULL NOSTD { int aio_read(struct aiocb *aiocbp); } 478256 AUE_NULL NOSTD { int aio_write(struct aiocb *aiocbp); } 479257 AUE_NULL NOSTD { int lio_listio(int mode, \ 480 struct aiocb * const *acb_list, \ 481 int nent, struct sigevent *sig); } 482258 AUE_NULL UNIMPL nosys 483259 AUE_NULL UNIMPL nosys 484260 AUE_NULL UNIMPL nosys 485261 AUE_NULL UNIMPL nosys 486262 AUE_NULL UNIMPL nosys 487263 AUE_NULL UNIMPL nosys 488264 AUE_NULL UNIMPL nosys 489265 AUE_NULL UNIMPL nosys 490266 AUE_NULL UNIMPL nosys 491267 AUE_NULL UNIMPL nosys 492268 AUE_NULL UNIMPL nosys 493269 AUE_NULL UNIMPL nosys 494270 AUE_NULL UNIMPL nosys 495271 AUE_NULL UNIMPL nosys 496272 AUE_O_GETDENTS STD { int getdents(int fd, char *buf, \ 497 size_t count); } 498273 AUE_NULL UNIMPL nosys 499274 AUE_LCHMOD STD { int lchmod(char *path, mode_t mode); } 500275 AUE_LCHOWN NOPROTO { int lchown(char *path, uid_t uid, \ 501 gid_t gid); } netbsd_lchown lchown_args \ 502 int 503276 AUE_LUTIMES STD { int lutimes(char *path, \ 504 struct timeval *tptr); } 505277 AUE_MSYNC NOPROTO { int msync(void *addr, size_t len, \ 506 int flags); } netbsd_msync msync_args int 507278 AUE_STAT STD { int nstat(char *path, struct nstat *ub); } 508279 AUE_FSTAT STD { int nfstat(int fd, struct nstat *sb); } 509280 AUE_LSTAT STD { int nlstat(char *path, struct nstat *ub); } 510281 AUE_NULL UNIMPL nosys 511282 AUE_NULL UNIMPL nosys 512283 AUE_NULL UNIMPL nosys 513284 AUE_NULL UNIMPL nosys 514285 AUE_NULL UNIMPL nosys 515286 AUE_NULL UNIMPL nosys 516287 AUE_NULL UNIMPL nosys 517288 AUE_NULL UNIMPL nosys 518; 289 and 290 from NetBSD (OpenBSD: 267 and 268) 519289 AUE_PREADV STD { ssize_t preadv(int fd, struct iovec *iovp, \ 520 u_int iovcnt, off_t offset); } 521290 AUE_PWRITEV STD { ssize_t pwritev(int fd, struct iovec *iovp, \ 522 u_int iovcnt, off_t offset); } 523291 AUE_NULL UNIMPL nosys 524292 AUE_NULL UNIMPL nosys 525293 AUE_NULL UNIMPL nosys 526294 AUE_NULL UNIMPL nosys 527295 AUE_NULL UNIMPL nosys 528296 AUE_NULL UNIMPL nosys 529; XXX 297 is 300 in NetBSD 530297 AUE_FHSTATFS COMPAT4 { int fhstatfs( \ 531 const struct fhandle *u_fhp, \ 532 struct ostatfs *buf); } 533298 AUE_FHOPEN STD { int fhopen(const struct fhandle *u_fhp, \ 534 int flags); } 535299 AUE_FHSTAT STD { int fhstat(const struct fhandle *u_fhp, \ 536 struct stat *sb); } 537; syscall numbers for FreeBSD 538300 AUE_NULL STD { int modnext(int modid); } 539301 AUE_NULL STD { int modstat(int modid, \ 540 struct module_stat *stat); } 541302 AUE_NULL STD { int modfnext(int modid); } 542303 AUE_NULL STD { int modfind(const char *name); } 543304 AUE_MODLOAD STD { int kldload(const char *file); } 544305 AUE_MODUNLOAD STD { int kldunload(int fileid); } 545306 AUE_NULL STD { int kldfind(const char *file); } 546307 AUE_NULL STD { int kldnext(int fileid); } 547308 AUE_NULL STD { int kldstat(int fileid, struct \ 548 kld_file_stat* stat); } 549309 AUE_NULL STD { int kldfirstmod(int fileid); } 550310 AUE_GETSID STD { int getsid(pid_t pid); } 551311 AUE_SETRESUID STD { int setresuid(uid_t ruid, uid_t euid, \ 552 uid_t suid); } 553312 AUE_SETRESGID STD { int setresgid(gid_t rgid, gid_t egid, \ 554 gid_t sgid); } 555313 AUE_NULL OBSOL signanosleep 556314 AUE_NULL NOSTD { int aio_return(struct aiocb *aiocbp); } 557315 AUE_NULL NOSTD { int aio_suspend( \ 558 struct aiocb * const * aiocbp, int nent, \ 559 const struct timespec *timeout); } 560316 AUE_NULL NOSTD { int aio_cancel(int fd, \ 561 struct aiocb *aiocbp); } 562317 AUE_NULL NOSTD { int aio_error(struct aiocb *aiocbp); } 563318 AUE_NULL NOSTD { int oaio_read(struct oaiocb *aiocbp); } 564319 AUE_NULL NOSTD { int oaio_write(struct oaiocb *aiocbp); } 565320 AUE_NULL NOSTD { int olio_listio(int mode, \ 566 struct oaiocb * const *acb_list, \ 567 int nent, struct osigevent *sig); } 568321 AUE_NULL STD { int yield(void); } 569322 AUE_NULL OBSOL thr_sleep 570323 AUE_NULL OBSOL thr_wakeup 571324 AUE_MLOCKALL STD { int mlockall(int how); } 572325 AUE_MUNLOCKALL STD { int munlockall(void); } 573326 AUE_GETCWD STD { int __getcwd(u_char *buf, u_int buflen); } 574 575327 AUE_NULL STD { int sched_setparam (pid_t pid, \ 576 const struct sched_param *param); } 577328 AUE_NULL STD { int sched_getparam (pid_t pid, struct \ 578 sched_param *param); } 579 580329 AUE_NULL STD { int sched_setscheduler (pid_t pid, int \ 581 policy, const struct sched_param \ 582 *param); } 583330 AUE_NULL STD { int sched_getscheduler (pid_t pid); } 584 585331 AUE_NULL STD { int sched_yield (void); } 586332 AUE_NULL STD { int sched_get_priority_max (int policy); } 587333 AUE_NULL STD { int sched_get_priority_min (int policy); } 588334 AUE_NULL STD { int sched_rr_get_interval (pid_t pid, \ 589 struct timespec *interval); } 590335 AUE_NULL STD { int utrace(const void *addr, size_t len); } 591336 AUE_SENDFILE COMPAT4 { int sendfile(int fd, int s, \ 592 off_t offset, size_t nbytes, \ 593 struct sf_hdtr *hdtr, off_t *sbytes, \ 594 int flags); } 595337 AUE_NULL STD { int kldsym(int fileid, int cmd, \ 596 void *data); } 597338 AUE_JAIL STD { int jail(struct jail *jail); } 598339 AUE_NULL UNIMPL pioctl 599340 AUE_SIGPROCMASK STD { int sigprocmask(int how, \ 600 const sigset_t *set, sigset_t *oset); } 601341 AUE_SIGSUSPEND STD { int sigsuspend(const sigset_t *sigmask); } 602342 AUE_SIGACTION COMPAT4 { int sigaction(int sig, const \ 603 struct sigaction *act, \ 604 struct sigaction *oact); } 605343 AUE_SIGPENDING STD { int sigpending(sigset_t *set); } 606344 AUE_SIGRETURN COMPAT4 { int sigreturn( \ 607 const struct ucontext4 *sigcntxp); } 608345 AUE_SIGWAIT STD { int sigtimedwait(const sigset_t *set, \ 609 siginfo_t *info, \ 610 const struct timespec *timeout); } 611346 AUE_NULL STD { int sigwaitinfo(const sigset_t *set, \ 612 siginfo_t *info); } 613347 AUE_NULL STD { int __acl_get_file(const char *path, \ 614 acl_type_t type, struct acl *aclp); } 615348 AUE_NULL STD { int __acl_set_file(const char *path, \ 616 acl_type_t type, struct acl *aclp); } 617349 AUE_NULL STD { int __acl_get_fd(int filedes, \ 618 acl_type_t type, struct acl *aclp); } 619350 AUE_NULL STD { int __acl_set_fd(int filedes, \ 620 acl_type_t type, struct acl *aclp); } 621351 AUE_NULL STD { int __acl_delete_file(const char *path, \ 622 acl_type_t type); } 623352 AUE_NULL STD { int __acl_delete_fd(int filedes, \ 624 acl_type_t type); } 625353 AUE_NULL STD { int __acl_aclcheck_file(const char *path, \ 626 acl_type_t type, struct acl *aclp); } 627354 AUE_NULL STD { int __acl_aclcheck_fd(int filedes, \ 628 acl_type_t type, struct acl *aclp); } 629355 AUE_EXTATTRCTL STD { int extattrctl(const char *path, int cmd, \ 630 const char *filename, int attrnamespace, \ 631 const char *attrname); } 632356 AUE_EXTATTR_SET_FILE STD { int extattr_set_file( \ 633 const char *path, int attrnamespace, \ 634 const char *attrname, void *data, \ 635 size_t nbytes); } 636357 AUE_EXTATTR_GET_FILE STD { ssize_t extattr_get_file( \ 637 const char *path, int attrnamespace, \ 638 const char *attrname, void *data, \ 639 size_t nbytes); } 640358 AUE_EXTATTR_DELETE_FILE STD { int extattr_delete_file(const char *path, \ 641 int attrnamespace, \ 642 const char *attrname); } 643359 AUE_NULL NOSTD { int aio_waitcomplete( \ 644 struct aiocb **aiocbp, \ 645 struct timespec *timeout); } 646360 AUE_GETRESUID STD { int getresuid(uid_t *ruid, uid_t *euid, \ 647 uid_t *suid); } 648361 AUE_GETRESGID STD { int getresgid(gid_t *rgid, gid_t *egid, \ 649 gid_t *sgid); } 650362 AUE_KQUEUE STD { int kqueue(void); } 651363 AUE_NULL STD { int kevent(int fd, \ 652 struct kevent *changelist, int nchanges, \ 653 struct kevent *eventlist, int nevents, \ 654 const struct timespec *timeout); } 655364 AUE_NULL UNIMPL __cap_get_proc 656365 AUE_NULL UNIMPL __cap_set_proc 657366 AUE_NULL UNIMPL __cap_get_fd 658367 AUE_NULL UNIMPL __cap_get_file 659368 AUE_NULL UNIMPL __cap_set_fd 660369 AUE_NULL UNIMPL __cap_set_file 661370 AUE_NULL UNIMPL nosys 662371 AUE_EXTATTR_SET_FD STD { int extattr_set_fd(int fd, \ 663 int attrnamespace, const char *attrname, \ 664 void *data, size_t nbytes); } 665372 AUE_EXTATTR_GET_FD STD { ssize_t extattr_get_fd(int fd, \ 666 int attrnamespace, const char *attrname, \ 667 void *data, size_t nbytes); } 668373 AUE_EXTATTR_DELETE_FD STD { int extattr_delete_fd(int fd, \ 669 int attrnamespace, \ 670 const char *attrname); } 671374 AUE_NULL STD { int __setugid(int flag); } 672375 AUE_NULL UNIMPL nfsclnt 673376 AUE_EACCESS STD { int eaccess(char *path, int flags); } 674377 AUE_NULL UNIMPL afs_syscall 675378 AUE_NMOUNT STD { int nmount(struct iovec *iovp, \ 676 unsigned int iovcnt, int flags); } 677379 AUE_NULL UNIMPL kse_exit 678380 AUE_NULL UNIMPL kse_wakeup 679381 AUE_NULL UNIMPL kse_create 680382 AUE_NULL UNIMPL kse_thr_interrupt 681383 AUE_NULL UNIMPL kse_release 682384 AUE_NULL STD { int __mac_get_proc(struct mac *mac_p); } 683385 AUE_NULL STD { int __mac_set_proc(struct mac *mac_p); } 684386 AUE_NULL STD { int __mac_get_fd(int fd, \ 685 struct mac *mac_p); } 686387 AUE_NULL STD { int __mac_get_file(const char *path_p, \ 687 struct mac *mac_p); } 688388 AUE_NULL STD { int __mac_set_fd(int fd, \ 689 struct mac *mac_p); } 690389 AUE_NULL STD { int __mac_set_file(const char *path_p, \ 691 struct mac *mac_p); } 692390 AUE_NULL STD { int kenv(int what, const char *name, \ 693 char *value, int len); } 694391 AUE_LCHFLAGS STD { int lchflags(const char *path, int flags); } 695392 AUE_NULL STD { int uuidgen(struct uuid *store, \ 696 int count); } 697393 AUE_SENDFILE STD { int sendfile(int fd, int s, off_t offset, \ 698 size_t nbytes, struct sf_hdtr *hdtr, \ 699 off_t *sbytes, int flags); } 700394 AUE_NULL STD { int mac_syscall(const char *policy, \ 701 int call, void *arg); } 702395 AUE_GETFSSTAT STD { int getfsstat(struct statfs *buf, \ 703 long bufsize, int flags); } 704396 AUE_STATFS STD { int statfs(char *path, \ 705 struct statfs *buf); } 706397 AUE_FSTATFS STD { int fstatfs(int fd, struct statfs *buf); } 707398 AUE_FHSTATFS STD { int fhstatfs(const struct fhandle *u_fhp, \ 708 struct statfs *buf); } 709399 AUE_NULL UNIMPL nosys 710400 AUE_NULL NOSTD { int ksem_close(semid_t id); } 711401 AUE_NULL NOSTD { int ksem_post(semid_t id); } 712402 AUE_NULL NOSTD { int ksem_wait(semid_t id); } 713403 AUE_NULL NOSTD { int ksem_trywait(semid_t id); } 714404 AUE_NULL NOSTD { int ksem_init(semid_t *idp, \ 715 unsigned int value); } 716405 AUE_NULL NOSTD { int ksem_open(semid_t *idp, \ 717 const char *name, int oflag, \ 718 mode_t mode, unsigned int value); } 719406 AUE_NULL NOSTD { int ksem_unlink(const char *name); } 720407 AUE_NULL NOSTD { int ksem_getvalue(semid_t id, int *val); } 721408 AUE_NULL NOSTD { int ksem_destroy(semid_t id); } 722409 AUE_NULL STD { int __mac_get_pid(pid_t pid, \ 723 struct mac *mac_p); } 724410 AUE_NULL STD { int __mac_get_link(const char *path_p, \ 725 struct mac *mac_p); } 726411 AUE_NULL STD { int __mac_set_link(const char *path_p, \ 727 struct mac *mac_p); } 728412 AUE_EXTATTR_SET_LINK STD { int extattr_set_link( \ 729 const char *path, int attrnamespace, \ 730 const char *attrname, void *data, \ 731 size_t nbytes); } 732413 AUE_EXTATTR_GET_LINK STD { ssize_t extattr_get_link( \ 733 const char *path, int attrnamespace, \ 734 const char *attrname, void *data, \ 735 size_t nbytes); } 736414 AUE_EXTATTR_DELETE_LINK STD { int extattr_delete_link( \ 737 const char *path, int attrnamespace, \ 738 const char *attrname); } 739415 AUE_NULL STD { int __mac_execve(char *fname, char **argv, \ 740 char **envv, struct mac *mac_p); } 741416 AUE_SIGACTION STD { int sigaction(int sig, \ 742 const struct sigaction *act, \ 743 struct sigaction *oact); } 744417 AUE_SIGRETURN STD { int sigreturn( \ 745 const struct __ucontext *sigcntxp); } 746418 AUE_NULL UNIMPL __xstat 747419 AUE_NULL UNIMPL __xfstat 748420 AUE_NULL UNIMPL __xlstat 749421 AUE_NULL STD { int getcontext(struct __ucontext *ucp); } 750422 AUE_NULL STD { int setcontext( \ 751 const struct __ucontext *ucp); } 752423 AUE_NULL STD { int swapcontext(struct __ucontext *oucp, \ 753 const struct __ucontext *ucp); } 754424 AUE_SWAPOFF STD { int swapoff(const char *name); } 755425 AUE_NULL STD { int __acl_get_link(const char *path, \ 756 acl_type_t type, struct acl *aclp); } 757426 AUE_NULL STD { int __acl_set_link(const char *path, \ 758 acl_type_t type, struct acl *aclp); } 759427 AUE_NULL STD { int __acl_delete_link(const char *path, \ 760 acl_type_t type); } 761428 AUE_NULL STD { int __acl_aclcheck_link(const char *path, \ 762 acl_type_t type, struct acl *aclp); } 763429 AUE_SIGWAIT STD { int sigwait(const sigset_t *set, \ 764 int *sig); } 765430 AUE_NULL STD { int thr_create(ucontext_t *ctx, long *id, \ 766 int flags); } 767431 AUE_NULL STD { void thr_exit(long *state); } 768432 AUE_NULL STD { int thr_self(long *id); } 769433 AUE_NULL STD { int thr_kill(long id, int sig); } 770434 AUE_NULL STD { int _umtx_lock(struct umtx *umtx); } 771435 AUE_NULL STD { int _umtx_unlock(struct umtx *umtx); } 772436 AUE_NULL STD { int jail_attach(int jid); } 773437 AUE_EXTATTR_LIST_FD STD { ssize_t extattr_list_fd(int fd, \ 774 int attrnamespace, void *data, \ 775 size_t nbytes); } 776438 AUE_EXTATTR_LIST_FILE STD { ssize_t extattr_list_file( \ 777 const char *path, int attrnamespace, \ 778 void *data, size_t nbytes); } 779439 AUE_EXTATTR_LIST_LINK STD { ssize_t extattr_list_link( \ 780 const char *path, int attrnamespace, \ 781 void *data, size_t nbytes); } 782440 AUE_NULL UNIMPL kse_switchin 783441 AUE_NULL NOSTD { int ksem_timedwait(semid_t id, \ 784 const struct timespec *abstime); } 785442 AUE_NULL STD { int thr_suspend( \ 786 const struct timespec *timeout); } 787443 AUE_NULL STD { int thr_wake(long id); } 788444 AUE_MODUNLOAD STD { int kldunloadf(int fileid, int flags); } 789445 AUE_AUDIT STD { int audit(const void *record, \ 790 u_int length); } 791446 AUE_AUDITON STD { int auditon(int cmd, void *data, \ 792 u_int length); } 793447 AUE_GETAUID STD { int getauid(uid_t *auid); } 794448 AUE_SETAUID STD { int setauid(uid_t *auid); } 795449 AUE_GETAUDIT STD { int getaudit(struct auditinfo *auditinfo); } 796450 AUE_SETAUDIT STD { int setaudit(struct auditinfo *auditinfo); } 797451 AUE_GETAUDIT_ADDR STD { int getaudit_addr( \ 798 struct auditinfo_addr *auditinfo_addr, \ 799 u_int length); } 800452 AUE_SETAUDIT_ADDR STD { int setaudit_addr( \ 801 struct auditinfo_addr *auditinfo_addr, \ 802 u_int length); } 803453 AUE_AUDITCTL STD { int auditctl(char *path); } 804454 AUE_NULL STD { int _umtx_op(void *obj, int op, \ 805 u_long val, void *uaddr1, void *uaddr2); } 806455 AUE_NULL STD { int thr_new(struct thr_param *param, \ 807 int param_size); } 808456 AUE_NULL STD { int sigqueue(pid_t pid, int signum, void *value); } 809457 AUE_NULL NOSTD { int kmq_open(const char *path, int flags, \ 810 mode_t mode, const struct mq_attr *attr); } 811458 AUE_NULL NOSTD { int kmq_setattr(int mqd, \ 812 const struct mq_attr *attr, \ 813 struct mq_attr *oattr); } 814459 AUE_NULL NOSTD { int kmq_timedreceive(int mqd, \ 815 char *msg_ptr, size_t msg_len, \ 816 unsigned *msg_prio, \ 817 const struct timespec *abs_timeout); } 818460 AUE_NULL NOSTD { int kmq_timedsend(int mqd, \ 819 const char *msg_ptr, size_t msg_len,\ 820 unsigned msg_prio, \ 821 const struct timespec *abs_timeout);} 822461 AUE_NULL NOSTD { int kmq_notify(int mqd, \ 823 const struct sigevent *sigev); } 824462 AUE_NULL NOSTD { int kmq_unlink(const char *path); } 825463 AUE_NULL STD { int abort2(const char *why, int nargs, void **args); } 826464 AUE_NULL STD { int thr_set_name(long id, const char *name); } 827465 AUE_NULL NOSTD { int aio_fsync(int op, struct aiocb *aiocbp); } 828466 AUE_RTPRIO STD { int rtprio_thread(int function, \ 829 lwpid_t lwpid, struct rtprio *rtp); } 830467 AUE_NULL UNIMPL nosys 831468 AUE_NULL UNIMPL nosys 832469 AUE_NULL UNIMPL __getpath_fromfd 833470 AUE_NULL UNIMPL __getpath_fromaddr 834471 AUE_NULL STD { int sctp_peeloff(int sd, uint32_t name); } 835472 AUE_NULL STD { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \ 836 caddr_t to, __socklen_t tolen, \ 837 struct sctp_sndrcvinfo *sinfo, int flags); } 838473 AUE_NULL STD { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \ 839 caddr_t to, __socklen_t tolen, \ 840 struct sctp_sndrcvinfo *sinfo, int flags); } 841474 AUE_NULL STD { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \ 842 struct sockaddr * from, __socklen_t *fromlenaddr, \ 843 struct sctp_sndrcvinfo *sinfo, int *msg_flags); } 844475 AUE_PREAD STD { ssize_t pread(int fd, void *buf, \ 845 size_t nbyte, off_t offset); } 846476 AUE_PWRITE STD { ssize_t pwrite(int fd, const void *buf, \ 847 size_t nbyte, off_t offset); } 848477 AUE_MMAP STD { caddr_t mmap(caddr_t addr, size_t len, \ 849 int prot, int flags, int fd, off_t pos); } 850478 AUE_LSEEK STD { off_t lseek(int fd, off_t offset, \ 851 int whence); } 852479 AUE_TRUNCATE STD { int truncate(char *path, off_t length); } 853480 AUE_FTRUNCATE STD { int ftruncate(int fd, off_t length); } 854481 AUE_KILL STD { int thr_kill2(pid_t pid, long id, int sig); } 855482 AUE_SHMOPEN STD { int shm_open(const char *path, int flags, \ 856 mode_t mode); } 857483 AUE_SHMUNLINK STD { int shm_unlink(const char *path); } 858484 AUE_NULL STD { int cpuset(cpusetid_t *setid); } 859485 AUE_NULL STD { int cpuset_setid(cpuwhich_t which, id_t id, \ 860 cpusetid_t setid); } 861486 AUE_NULL STD { int cpuset_getid(cpulevel_t level, \ 862 cpuwhich_t which, id_t id, \ 863 cpusetid_t *setid); } 864487 AUE_NULL STD { int cpuset_getaffinity(cpulevel_t level, \ 865 cpuwhich_t which, id_t id, size_t cpusetsize, \ 866 cpuset_t *mask); } 867488 AUE_NULL STD { int cpuset_setaffinity(cpulevel_t level, \ 868 cpuwhich_t which, id_t id, size_t cpusetsize, \ 869 const cpuset_t *mask); } 870489 AUE_FACCESSAT STD { int faccessat(int fd, char *path, int mode, \ 871 int flag); } 872490 AUE_FCHMODAT STD { int fchmodat(int fd, char *path, mode_t mode, \ 873 int flag); } 874491 AUE_FCHOWNAT STD { int fchownat(int fd, char *path, uid_t uid, \ 875 gid_t gid, int flag); } 876492 AUE_FEXECVE STD { int fexecve(int fd, char **argv, \ 877 char **envv); } 878493 AUE_FSTATAT STD { int fstatat(int fd, char *path, \ 879 struct stat *buf, int flag); } 880494 AUE_FUTIMESAT STD { int futimesat(int fd, char *path, \ 881 struct timeval *times); } 882495 AUE_LINKAT STD { int linkat(int fd1, char *path1, int fd2, \ 883 char *path2, int flag); } 884496 AUE_MKDIRAT STD { int mkdirat(int fd, char *path, mode_t mode); } 885497 AUE_MKFIFOAT STD { int mkfifoat(int fd, char *path, mode_t mode); } 886498 AUE_MKNODAT STD { int mknodat(int fd, char *path, mode_t mode, \ 887 dev_t dev); } 888; XXX: see the comment for open 889499 AUE_OPENAT_RWTC STD { int openat(int fd, char *path, int flag, \ 890 mode_t mode); } 891500 AUE_READLINKAT STD { int readlinkat(int fd, char *path, char *buf, \ 892 size_t bufsize); } 893501 AUE_RENAMEAT STD { int renameat(int oldfd, char *old, int newfd, \ 894 char *new); } 895502 AUE_SYMLINKAT STD { int symlinkat(char *path1, int fd, \ 896 char *path2); } 897503 AUE_UNLINKAT STD { int unlinkat(int fd, char *path, int flag); } 898504 AUE_POSIX_OPENPT STD { int posix_openpt(int flags); } 899; 505 is initialised by the kgssapi code, if present. 900505 AUE_NULL NOSTD { int gssd_syscall(char *path); } 901506 AUE_NULL STD { int jail_get(struct iovec *iovp, \ 902 unsigned int iovcnt, int flags); } 903507 AUE_NULL STD { int jail_set(struct iovec *iovp, \ 904 unsigned int iovcnt, int flags); } 905508 AUE_NULL STD { int jail_remove(int jid); } 906509 AUE_CLOSEFROM STD { int closefrom(int lowfd); } 907510 AUE_SEMCTL NOSTD { int __semctl(int semid, int semnum, \ 908 int cmd, union semun *arg); } 909511 AUE_MSGCTL NOSTD { int msgctl(int msqid, int cmd, \ 910 struct msqid_ds *buf); } 911512 AUE_SHMCTL NOSTD { int shmctl(int shmid, int cmd, \ 912 struct shmid_ds *buf); } 913513 AUE_LPATHCONF STD { int lpathconf(char *path, int name); } 914; Please copy any additions and changes to the following compatability tables: 915; sys/compat/freebsd32/syscalls.master 916