150477Speter $FreeBSD$
214330Speter
314330Speter;	@(#)syscalls.master	8.1 (Berkeley) 7/19/93
414330Speter; System call name/number master file (or rather, slave, from LINUX).
568519Smarcel; Processed to create linux_sysent.c, linux_proto.h and linux_syscall.h.
614330Speter
7155374Srwatson; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
814330Speter;	number	system call number, must be in order
9146806Srwatson;	audit	the audit event associated with the system call
10146806Srwatson;		A value of AUE_NULL means no auditing, but it also means that
11146806Srwatson;		there is no audit event for the call at this time. For the
12146806Srwatson;		case where the event exists, but we don't want auditing, the
13146806Srwatson;		event should be #defined to AUE_NULL in audit_kevents.h.
14156842Snetchild;	type	one of STD, OBSOL, UNIMPL
1514330Speter;	name	psuedo-prototype of syscall routine
1614330Speter;		If one of the following alts is different, then all appear:
1714330Speter;	altname	name of system call if different
1814330Speter;	alttag	name of args struct tag if different from [o]`name'"_args"
1914330Speter;	altrtyp	return type if not int (bogus - syscalls always return int)
2014330Speter;		for UNIMPL/OBSOL, name continues with comments
2114330Speter
2214330Speter; types:
23160797Sjhb;	STD	always included
2414330Speter;	OBSOL	obsolete, not included in system, only specifies name
25160797Sjhb;	UNIMPL	not implemented, placeholder only
2614330Speter
2714330Speter#include <sys/param.h>
2814330Speter#include <sys/sysent.h>
2914330Speter#include <sys/sysproto.h>
30143197Ssobomax#include <compat/linux/linux_sysproto.h>
3114330Speter#include <i386/linux/linux.h>
3268583Smarcel#include <i386/linux/linux_proto.h>
3314330Speter
34143197Ssobomax; Isn't pretty, but there seems to be no other way to trap nosys
35143197Ssobomax#define	nosys	linux_nosys
36143197Ssobomax
3714330Speter; #ifdef's, etc. may be included, and are copied to the output files.
3814330Speter
39146806Srwatson0	AUE_NULL	UNIMPL	setup
40160798Sjhb1	AUE_EXIT	NOPROTO	{ void sys_exit(int rval); } exit \
41146806Srwatson				    sys_exit_args void
42160798Sjhb2	AUE_FORK	STD	{ int linux_fork(void); }
43160798Sjhb3	AUE_NULL	NOPROTO	{ int read(int fd, char *buf, \
44146806Srwatson				    u_int nbyte); }
45160798Sjhb4	AUE_NULL	NOPROTO	{ int write(int fd, char *buf, \
46146806Srwatson				    u_int nbyte); }
47160798Sjhb5	AUE_OPEN_RWTC	STD	{ int linux_open(char *path, l_int flags, \
48146806Srwatson				    l_int mode); }
49160798Sjhb6	AUE_CLOSE	NOPROTO	{ int close(int fd); }
50160798Sjhb7	AUE_WAIT4	STD	{ int linux_waitpid(l_pid_t pid, \
51146806Srwatson				    l_int *status, l_int options); }
52162527Srwatson8	AUE_CREAT	STD	{ int linux_creat(char *path, \
53146806Srwatson				    l_int mode); }
54160798Sjhb9	AUE_LINK	STD	{ int linux_link(char *path, char *to); }
55160798Sjhb10	AUE_UNLINK	STD	{ int linux_unlink(char *path); }
56160798Sjhb11	AUE_EXECVE	STD	{ int linux_execve(char *path, char **argp, \
57146806Srwatson				    char **envp); }
58160798Sjhb12	AUE_CHDIR	STD	{ int linux_chdir(char *path); }
59160798Sjhb13	AUE_NULL	STD	{ int linux_time(l_time_t *tm); }
60160798Sjhb14	AUE_MKNOD	STD	{ int linux_mknod(char *path, l_int mode, \
61146806Srwatson				    l_dev_t dev); }
62160798Sjhb15	AUE_CHMOD	STD	{ int linux_chmod(char *path, \
63146806Srwatson				    l_mode_t mode); }
64160798Sjhb16	AUE_LCHOWN	STD	{ int linux_lchown16(char *path, \
65146806Srwatson				    l_uid16_t uid, l_gid16_t gid); }
66146806Srwatson17	AUE_NULL	UNIMPL	break
67160798Sjhb18	AUE_STAT	STD	{ int linux_stat(char *path, \
68156842Snetchild				    struct linux_stat *up); }
69160798Sjhb19	AUE_LSEEK	STD	{ int linux_lseek(l_uint fdes, l_off_t off, \
70146806Srwatson				    l_int whence); }
71160798Sjhb20	AUE_GETPID	STD	{ int linux_getpid(void); }
72160798Sjhb21	AUE_MOUNT	STD	{ int linux_mount(char *specialfile, \
73146806Srwatson				    char *dir, char *filesystemtype, \
74146806Srwatson				    l_ulong rwflag, void *data); }
75160798Sjhb22	AUE_UMOUNT	STD	{ int linux_oldumount(char *path); }
76160798Sjhb23	AUE_SETUID	STD	{ int linux_setuid16(l_uid16_t uid); }
77160798Sjhb24	AUE_GETUID	STD	{ int linux_getuid16(void); }
78160798Sjhb25	AUE_SETTIMEOFDAY	STD	{ int linux_stime(void); }
79160798Sjhb26	AUE_PTRACE	STD	{ int linux_ptrace(l_long req, l_long pid, \
80146806Srwatson				    l_long addr, l_long data); }
81160798Sjhb27	AUE_NULL	STD	{ int linux_alarm(l_uint secs); }
82160798Sjhb28	AUE_FSTAT	STD	{ int linux_fstat(l_uint fd, \
83156842Snetchild				    struct linux_stat *up); }
84160798Sjhb29	AUE_NULL	STD	{ int linux_pause(void); }
85160798Sjhb30	AUE_UTIME	STD	{ int linux_utime(char *fname, \
86146806Srwatson				    struct l_utimbuf *times); }
87146806Srwatson31	AUE_NULL	UNIMPL	stty
88146806Srwatson32	AUE_NULL	UNIMPL	gtty
89227691Sed33	AUE_ACCESS	STD	{ int linux_access(char *path, l_int amode); }
90160798Sjhb34	AUE_NICE	STD	{ int linux_nice(l_int inc); }
91146806Srwatson35	AUE_NULL	UNIMPL	ftime
92160798Sjhb36	AUE_SYNC	NOPROTO	{ int sync(void); }
93160798Sjhb37	AUE_KILL	STD	{ int linux_kill(l_int pid, l_int signum); }
94160798Sjhb38	AUE_RENAME	STD	{ int linux_rename(char *from, char *to); }
95160798Sjhb39	AUE_MKDIR	STD	{ int linux_mkdir(char *path, l_int mode); }
96160798Sjhb40	AUE_RMDIR	STD	{ int linux_rmdir(char *path); }
97160798Sjhb41	AUE_DUP		NOPROTO	{ int dup(u_int fd); }
98234352Sjkim42	AUE_PIPE	STD	{ int linux_pipe(l_int *pipefds); }
99160798Sjhb43	AUE_NULL	STD	{ int linux_times(struct l_times_argv *buf); }
100146806Srwatson44	AUE_NULL	UNIMPL	prof
101160798Sjhb45	AUE_NULL	STD	{ int linux_brk(l_ulong dsend); }
102160798Sjhb46	AUE_SETGID	STD	{ int linux_setgid16(l_gid16_t gid); }
103160798Sjhb47	AUE_GETGID	STD	{ int linux_getgid16(void); }
104160798Sjhb48	AUE_NULL	STD	{ int linux_signal(l_int sig, \
105219559Savg				    void *handler); }
106160798Sjhb49	AUE_GETEUID	STD	{ int linux_geteuid16(void); }
107160798Sjhb50	AUE_GETEGID	STD	{ int linux_getegid16(void); }
108160798Sjhb51	AUE_ACCT	NOPROTO	{ int acct(char *path); }
109160798Sjhb52	AUE_UMOUNT	STD	{ int linux_umount(char *path, l_int flags); }
110146806Srwatson53	AUE_NULL	UNIMPL	lock
111160798Sjhb54	AUE_IOCTL	STD	{ int linux_ioctl(l_uint fd, l_uint cmd, \
112146806Srwatson				    l_ulong arg); }
113160798Sjhb55	AUE_FCNTL	STD	{ int linux_fcntl(l_uint fd, l_uint cmd, \
114146806Srwatson				    l_ulong arg); }
115146806Srwatson56	AUE_NULL	UNIMPL	mpx
116160798Sjhb57	AUE_SETPGRP	NOPROTO	{ int setpgid(int pid, int pgid); }
117146806Srwatson58	AUE_NULL	UNIMPL	ulimit
118160798Sjhb59	AUE_NULL	STD	{ int linux_olduname(void); }
119160798Sjhb60	AUE_UMASK	NOPROTO	{ int umask(int newmask); }
120160798Sjhb61	AUE_CHROOT	NOPROTO	{ int chroot(char *path); }
121160798Sjhb62	AUE_NULL	STD	{ int linux_ustat(l_dev_t dev, \
122146806Srwatson				    struct l_ustat *ubuf); }
123161305Snetchild63	AUE_DUP2	NOPROTO { int dup2(u_int from, u_int to); }
124161305Snetchild64	AUE_GETPPID	STD	{ int linux_getppid(void); }
125161305Snetchild65	AUE_GETPGRP	NOPROTO { int getpgrp(void); }
126161305Snetchild66	AUE_SETSID	NOPROTO { int setsid(void); }
127160798Sjhb67	AUE_NULL	STD	{ int linux_sigaction(l_int sig, \
128146806Srwatson				    l_osigaction_t *nsa, \
129146806Srwatson				    l_osigaction_t *osa); }
130160798Sjhb68	AUE_NULL	STD	{ int linux_sgetmask(void); }
131160798Sjhb69	AUE_NULL	STD	{ int linux_ssetmask(l_osigset_t mask); }
132160798Sjhb70	AUE_SETREUID	STD	{ int linux_setreuid16(l_uid16_t ruid, \
133146806Srwatson				    l_uid16_t euid); }
134160798Sjhb71	AUE_SETREGID	STD	{ int linux_setregid16(l_gid16_t rgid, \
135146806Srwatson				    l_gid16_t egid); }
136160798Sjhb72	AUE_NULL	STD	{ int linux_sigsuspend(l_int hist0, \
137146806Srwatson				    l_int hist1, l_osigset_t mask); }
138160798Sjhb73	AUE_NULL	STD	{ int linux_sigpending(l_osigset_t *mask); }
139160798Sjhb74	AUE_SYSCTL	STD	{ int linux_sethostname(char *hostname, \
140156842Snetchild				    u_int len); }
141160798Sjhb75	AUE_SETRLIMIT	STD	{ int linux_setrlimit(l_uint resource, \
142146806Srwatson				    struct l_rlimit *rlim); }
143160798Sjhb76	AUE_GETRLIMIT	STD	{ int linux_old_getrlimit(l_uint resource, \
144146806Srwatson				    struct l_rlimit *rlim); }
145160798Sjhb77	AUE_GETRUSAGE	NOPROTO	{ int getrusage(int who, \
146146806Srwatson				    struct rusage *rusage); }
147160798Sjhb78	AUE_NULL	NOPROTO	{ int gettimeofday( \
148155374Srwatson				    struct timeval *tp, \
149146806Srwatson				    struct timezone *tzp); }
150160798Sjhb79	AUE_SETTIMEOFDAY	NOPROTO	{ int settimeofday( \
151219559Savg				    struct timeval *tv, \
152146806Srwatson				    struct timezone *tzp); }
153160798Sjhb80	AUE_GETGROUPS	STD	{ int linux_getgroups16(l_uint gidsetsize, \
154146806Srwatson				    l_gid16_t *gidset); }
155160798Sjhb81	AUE_SETGROUPS	STD	{ int linux_setgroups16(l_uint gidsetsize, \
156146806Srwatson				    l_gid16_t *gidset); }
157160798Sjhb82	AUE_SELECT	STD	{ int linux_old_select( \
158146806Srwatson				    struct l_old_select_argv *ptr); }
159160798Sjhb83	AUE_SYMLINK	STD	{ int linux_symlink(char *path, char *to); }
160232799Snetchild; 84: oldlstat
161238917Sjhb84	AUE_LSTAT	STD	{ int linux_lstat(char *path, struct l_stat *up); }
162160798Sjhb85	AUE_READLINK	STD	{ int linux_readlink(char *name, char *buf, \
163146806Srwatson				    l_int count); }
164160798Sjhb86	AUE_USELIB	STD	{ int linux_uselib(char *library); }
165160798Sjhb87	AUE_SWAPON	NOPROTO	{ int swapon(char *name); }
166160798Sjhb88	AUE_REBOOT	STD	{ int linux_reboot(l_int magic1, \
167146806Srwatson				    l_int magic2, l_uint cmd, void *arg); }
168232799Snetchild; 89: old_readdir
169162525Srwatson89	AUE_GETDIRENTRIES	STD { int linux_readdir(l_uint fd, \
170146806Srwatson				    struct l_dirent *dent, l_uint count); }
171232799Snetchild; 90: old_mmap
172160798Sjhb90	AUE_MMAP	STD	{ int linux_mmap(struct l_mmap_argv *ptr); }
173160798Sjhb91	AUE_MUNMAP	NOPROTO	{ int munmap(caddr_t addr, int len); }
174160798Sjhb92	AUE_TRUNCATE	STD	{ int linux_truncate(char *path, \
175146806Srwatson				    l_ulong length); }
176160798Sjhb93	AUE_FTRUNCATE	STD	{ int linux_ftruncate(int fd, long length); }
177160798Sjhb94	AUE_FCHMOD	NOPROTO	{ int fchmod(int fd, int mode); }
178160798Sjhb95	AUE_FCHOWN	NOPROTO	{ int fchown(int fd, int uid, int gid); }
179160798Sjhb96	AUE_GETPRIORITY	STD	{ int linux_getpriority(int which, int who); }
180160798Sjhb97	AUE_SETPRIORITY	NOPROTO	{ int setpriority(int which, int who, \
181146806Srwatson				    int prio); }
182162525Srwatson98	AUE_PROFILE	UNIMPL	profil
183160798Sjhb99	AUE_STATFS	STD	{ int linux_statfs(char *path, \
184146806Srwatson				    struct l_statfs_buf *buf); }
185160798Sjhb100	AUE_FSTATFS	STD	{ int linux_fstatfs(l_uint fd, \
186146806Srwatson				    struct l_statfs_buf *buf); }
187160798Sjhb101	AUE_NULL	STD	{ int linux_ioperm(l_ulong start, \
188146806Srwatson				    l_ulong length, l_int enable); }
189160798Sjhb102	AUE_NULL	STD	{ int linux_socketcall(l_int what, \
190146806Srwatson				    l_ulong args); }
191160798Sjhb103	AUE_NULL	STD	{ int linux_syslog(l_int type, char *buf, \
192146806Srwatson				    l_int len); }
193160798Sjhb104	AUE_SETITIMER	STD	{ int linux_setitimer(l_int which, \
194146806Srwatson				    struct l_itimerval *itv, \
195146806Srwatson				    struct l_itimerval *oitv); }
196160798Sjhb105	AUE_GETITIMER	STD	{ int linux_getitimer(l_int which, \
197146806Srwatson				    struct l_itimerval *itv); }
198160798Sjhb106	AUE_STAT	STD	{ int linux_newstat(char *path, \
199146806Srwatson				    struct l_newstat *buf); }
200160798Sjhb107	AUE_LSTAT	STD	{ int linux_newlstat(char *path, \
201146806Srwatson				    struct l_newstat *buf); }
202160798Sjhb108	AUE_FSTAT	STD	{ int linux_newfstat(l_uint fd, \
203146806Srwatson				    struct l_newstat *buf); }
204232799Snetchild; 109: olduname
205160798Sjhb109	AUE_NULL	STD	{ int linux_uname(void); }
206234359Sjkim110	AUE_NULL	STD	{ int linux_iopl(l_int level); }
207160798Sjhb111	AUE_NULL	STD	{ int linux_vhangup(void); }
208146806Srwatson112	AUE_NULL	UNIMPL	idle
209160798Sjhb113	AUE_NULL	STD	{ int linux_vm86old(void); }
210160798Sjhb114	AUE_WAIT4	STD	{ int linux_wait4(l_pid_t pid, \
211146806Srwatson				    l_uint *status, l_int options, \
212146806Srwatson				    struct l_rusage *rusage); }
213160798Sjhb115	AUE_SWAPOFF	STD	{ int linux_swapoff(void); }
214160798Sjhb116	AUE_NULL	STD	{ int linux_sysinfo(struct l_sysinfo *info); }
215160798Sjhb117	AUE_NULL	STD	{ int linux_ipc(l_uint what, l_int arg1, \
216146806Srwatson				    l_int arg2, l_int arg3, void *ptr, \
217146806Srwatson				    l_long arg5); }
218160798Sjhb118	AUE_FSYNC	NOPROTO	{ int fsync(int fd); }
219160798Sjhb119	AUE_SIGRETURN	STD	{ int linux_sigreturn( \
220146806Srwatson				    struct l_sigframe *sfp); }
221161305Snetchild120	AUE_RFORK	STD	{ int linux_clone(l_int flags, void *stack, \
222218610Sdchagin				    void *parent_tidptr, void *tls, void * child_tidptr); }
223184789Sed121	AUE_SYSCTL	STD	{ int linux_setdomainname(char *name, \
224155374Srwatson				    int len); }
225160798Sjhb122	AUE_NULL	STD	{ int linux_newuname( \
226146806Srwatson				    struct l_new_utsname *buf); }
227160798Sjhb123	AUE_NULL	STD	{ int linux_modify_ldt(l_int func, \
228146806Srwatson				    void *ptr, l_ulong bytecount); }
229160798Sjhb124	AUE_ADJTIME	STD	{ int linux_adjtimex(void); }
230166727Sjkim125	AUE_MPROTECT	STD	{ int linux_mprotect(caddr_t addr, int len, \
231146806Srwatson				    int prot); }
232160798Sjhb126	AUE_SIGPROCMASK	STD	{ int linux_sigprocmask(l_int how, \
233146806Srwatson				    l_osigset_t *mask, l_osigset_t *omask); }
234160798Sjhb127	AUE_NULL	STD	{ int linux_create_module(void); }
235160798Sjhb128	AUE_NULL	STD	{ int linux_init_module(void); }
236160798Sjhb129	AUE_NULL	STD	{ int linux_delete_module(void); }
237160798Sjhb130	AUE_NULL	STD	{ int linux_get_kernel_syms(void); }
238160798Sjhb131	AUE_QUOTACTL	STD	{ int linux_quotactl(void); }
239160798Sjhb132	AUE_GETPGID	NOPROTO	{ int getpgid(int pid); }
240160798Sjhb133	AUE_FCHDIR	NOPROTO	{ int fchdir(int fd); }
241160798Sjhb134	AUE_BDFLUSH	STD	{ int linux_bdflush(void); }
242160798Sjhb135	AUE_NULL	STD	{ int linux_sysfs(l_int option, \
243146806Srwatson				    l_ulong arg1, l_ulong arg2); }
244160798Sjhb136	AUE_PERSONALITY	STD	{ int linux_personality(l_ulong per); }
245146806Srwatson137	AUE_NULL	UNIMPL	afs_syscall
246160798Sjhb138	AUE_SETFSUID	STD	{ int linux_setfsuid16(l_uid16_t uid); }
247160798Sjhb139	AUE_SETFSGID	STD	{ int linux_setfsgid16(l_gid16_t gid); }
248160798Sjhb140	AUE_LSEEK	STD	{ int linux_llseek(l_int fd, l_ulong ohigh, \
249146806Srwatson				    l_ulong olow, l_loff_t *res, \
250146806Srwatson				    l_uint whence); }
251162525Srwatson141	AUE_GETDIRENTRIES	STD { int linux_getdents(l_uint fd, \
252162525Srwatson				    void *dent, l_uint count); }
253232799Snetchild; 142: newselect
254160798Sjhb142	AUE_SELECT	STD	{ int linux_select(l_int nfds, \
255146806Srwatson				    l_fd_set *readfds, l_fd_set *writefds, \
256146806Srwatson				    l_fd_set *exceptfds, \
257146806Srwatson				    struct l_timeval *timeout); }
258160798Sjhb143	AUE_FLOCK	NOPROTO	{ int flock(int fd, int how); }
259160798Sjhb144	AUE_MSYNC	STD	{ int linux_msync(l_ulong addr, \
260146806Srwatson				    l_size_t len, l_int fl); }
261160798Sjhb145	AUE_READV	NOPROTO	{ int readv(int fd, struct iovec *iovp, \
262146806Srwatson				    u_int iovcnt); }
263160798Sjhb146	AUE_WRITEV	NOPROTO	{ int writev(int fd, struct iovec *iovp, \
264146806Srwatson				    u_int iovcnt); }
265160798Sjhb147	AUE_GETSID	STD	{ int linux_getsid(l_pid_t pid); }
266160798Sjhb148	AUE_NULL	STD	{ int linux_fdatasync(l_uint fd); }
267160798Sjhb149	AUE_SYSCTL	STD	{ int linux_sysctl( \
268146806Srwatson				    struct l___sysctl_args *args); }
269160798Sjhb150	AUE_MLOCK	NOPROTO	{ int mlock(const void *addr, size_t len); }
270160798Sjhb151	AUE_MUNLOCK	NOPROTO	{ int munlock(const void *addr, size_t len); }
271160798Sjhb152	AUE_MLOCKALL	NOPROTO	{ int mlockall(int how); }
272160798Sjhb153	AUE_MUNLOCKALL	NOPROTO	{ int munlockall(void); }
273160798Sjhb154	AUE_SCHED_SETPARAM	NOPROTO	{ int sched_setparam(pid_t pid, \
274146806Srwatson				    const struct sched_param *param); }
275160798Sjhb155	AUE_SCHED_GETPARAM	NOPROTO	{ int sched_getparam(pid_t pid, \
276146806Srwatson				    struct sched_param *param); }
277162525Srwatson156	AUE_SCHED_SETSCHEDULER	STD { int linux_sched_setscheduler( \
278162525Srwatson				    l_pid_t pid, l_int policy, \
279146806Srwatson				    struct l_sched_param *param); }
280162525Srwatson157	AUE_SCHED_GETSCHEDULER	STD { int linux_sched_getscheduler( \
281162525Srwatson				    l_pid_t pid); }
282160798Sjhb158	AUE_NULL	NOPROTO	{ int sched_yield(void); }
283162525Srwatson159	AUE_SCHED_GET_PRIORITY_MAX	STD { int linux_sched_get_priority_max( \
284146806Srwatson				    l_int policy); }
285162525Srwatson160	AUE_SCHED_GET_PRIORITY_MIN	STD { int linux_sched_get_priority_min( \
286146806Srwatson				    l_int policy); }
287160798Sjhb161	AUE_SCHED_RR_GET_INTERVAL	NOPROTO	{ int sched_rr_get_interval(l_pid_t pid, \
288146806Srwatson				    struct l_timespec *interval); }
289165410Sjkim162	AUE_NULL	STD	{ int linux_nanosleep( \
290165410Sjkim				    const struct l_timespec *rqtp, \
291165410Sjkim				    struct l_timespec *rmtp); }
292160798Sjhb163	AUE_NULL	STD	{ int linux_mremap(l_ulong addr, \
293146806Srwatson				    l_ulong old_len, l_ulong new_len, \
294146806Srwatson				    l_ulong flags, l_ulong new_addr); }
295160798Sjhb164	AUE_SETRESUID	STD	{ int linux_setresuid16(l_uid16_t ruid, \
296146806Srwatson				    l_uid16_t euid, l_uid16_t suid); }
297160798Sjhb165	AUE_GETRESUID	STD	{ int linux_getresuid16(l_uid16_t *ruid, \
298146806Srwatson				    l_uid16_t *euid, l_uid16_t *suid); }
299160798Sjhb166	AUE_NULL	STD	{ int linux_vm86(void); }
300160798Sjhb167	AUE_NULL	STD	{ int linux_query_module(void); }
301219559Savg168	AUE_POLL	NOPROTO	{ int poll(struct pollfd* fds, \
302146806Srwatson				    unsigned int nfds, long timeout); }
303160798Sjhb169	AUE_NULL	STD	{ int linux_nfsservctl(void); }
304160798Sjhb170	AUE_SETRESGID	STD	{ int linux_setresgid16(l_gid16_t rgid, \
305146806Srwatson				    l_gid16_t egid, l_gid16_t sgid); }
306160798Sjhb171	AUE_GETRESGID	STD	{ int linux_getresgid16(l_gid16_t *rgid, \
307146806Srwatson				    l_gid16_t *egid, l_gid16_t *sgid); }
308163734Snetchild172	AUE_PRCTL	STD	{ int linux_prctl(l_int option, l_int arg2, l_int arg3, \
309163734Snetchild				    l_int arg4, l_int arg5); }
310160798Sjhb173	AUE_NULL	STD	{ int linux_rt_sigreturn( \
311146806Srwatson				    struct l_ucontext *ucp); }
312160798Sjhb174	AUE_NULL	STD	{ int linux_rt_sigaction(l_int sig, \
313146806Srwatson				    l_sigaction_t *act, l_sigaction_t *oact, \
314146806Srwatson				    l_size_t sigsetsize); }
315160798Sjhb175	AUE_NULL	STD	{ int linux_rt_sigprocmask(l_int how, \
316146806Srwatson				    l_sigset_t *mask, l_sigset_t *omask, \
317146806Srwatson				    l_size_t sigsetsize); }
318160798Sjhb176	AUE_NULL	STD	{ int linux_rt_sigpending(l_sigset_t *set, \
319158406Snetchild				    l_size_t sigsetsize); }
320165689Snetchild177	AUE_NULL	STD	{ int linux_rt_sigtimedwait(l_sigset_t *mask, \
321165689Snetchild				    l_siginfo_t *ptr, \
322165689Snetchild				    struct l_timeval *timeout, \
323165689Snetchild				    l_size_t sigsetsize); }
324160798Sjhb178	AUE_NULL	STD	{ int linux_rt_sigqueueinfo(void); }
325160798Sjhb179	AUE_NULL	STD	{ int linux_rt_sigsuspend( \
326146806Srwatson				    l_sigset_t *newset, \
327146806Srwatson				    l_size_t sigsetsize); }
328160798Sjhb180	AUE_PREAD	STD	{ int linux_pread(l_uint fd, char *buf, \
329146806Srwatson				    l_size_t nbyte, l_loff_t offset); }
330160798Sjhb181	AUE_PWRITE	STD	{ int linux_pwrite(l_uint fd, char *buf, \
331146806Srwatson				    l_size_t nbyte, l_loff_t offset); }
332160798Sjhb182	AUE_CHOWN	STD	{ int linux_chown16(char *path, \
333146806Srwatson				    l_uid16_t uid, l_gid16_t gid); }
334160798Sjhb183	AUE_GETCWD	STD	{ int linux_getcwd(char *buf, \
335146806Srwatson				    l_ulong bufsize); }
336220028Savg184	AUE_CAPGET	STD	{ int linux_capget(struct l_user_cap_header *hdrp, \
337220028Savg				    struct l_user_cap_data *datap); }
338220028Savg185	AUE_CAPSET	STD	{ int linux_capset(struct l_user_cap_header *hdrp, \
339220028Savg				    struct l_user_cap_data *datap); }
340160798Sjhb186	AUE_NULL	STD	{ int linux_sigaltstack(l_stack_t *uss, \
341146806Srwatson				    l_stack_t *uoss); }
342160798Sjhb187	AUE_SENDFILE	STD	{ int linux_sendfile(void); }
343155374Srwatson188	AUE_GETPMSG	UNIMPL	getpmsg
344155374Srwatson189	AUE_PUTPMSG	UNIMPL	putpmsg
345160798Sjhb190	AUE_VFORK	STD	{ int linux_vfork(void); }
346232799Snetchild; 191: ugetrlimit
347160798Sjhb191	AUE_GETRLIMIT	STD	{ int linux_getrlimit(l_uint resource, \
348146806Srwatson				    struct l_rlimit *rlim); }
349160798Sjhb192	AUE_MMAP	STD	{ int linux_mmap2(l_ulong addr, l_ulong len, \
350146806Srwatson				    l_ulong prot, l_ulong flags, l_ulong fd, \
351146806Srwatson				    l_ulong pgoff); }
352160798Sjhb193	AUE_TRUNCATE	STD	{ int linux_truncate64(char *path, \
353146806Srwatson				    l_loff_t length); }
354160798Sjhb194	AUE_FTRUNCATE	STD	{ int linux_ftruncate64(l_uint fd, \
355146806Srwatson				    l_loff_t length); }
356234357Sjkim195	AUE_STAT	STD	{ int linux_stat64(const char *filename, \
357234357Sjkim				    struct l_stat64 *statbuf); }
358234357Sjkim196	AUE_LSTAT	STD	{ int linux_lstat64(const char *filename, \
359234357Sjkim				    struct l_stat64 *statbuf); }
360234357Sjkim197	AUE_FSTAT	STD	{ int linux_fstat64(l_int fd, \
361234357Sjkim				    struct l_stat64 *statbuf); }
362160798Sjhb198	AUE_LCHOWN	STD	{ int linux_lchown(char *path, l_uid_t uid, \
363146806Srwatson				    l_gid_t gid); }
364160798Sjhb199	AUE_GETUID	STD	{ int linux_getuid(void); }
365160798Sjhb200	AUE_GETGID	STD	{ int linux_getgid(void); }
366160798Sjhb201	AUE_GETEUID	NOPROTO	{ int geteuid(void); }
367160798Sjhb202	AUE_GETEGID	NOPROTO	{ int getegid(void); }
368160798Sjhb203	AUE_SETREUID	NOPROTO	{ int setreuid(uid_t ruid, uid_t euid); }
369160798Sjhb204	AUE_SETREGID	NOPROTO	{ int setregid(gid_t rgid, gid_t egid); }
370160798Sjhb205	AUE_GETGROUPS	STD	{ int linux_getgroups(l_int gidsetsize, \
371146806Srwatson				    l_gid_t *grouplist); }
372160798Sjhb206	AUE_SETGROUPS	STD	{ int linux_setgroups(l_int gidsetsize, \
373146806Srwatson				    l_gid_t *grouplist); }
374155374Srwatson207	AUE_FCHOWN	NODEF	fchown fchown fchown_args int
375160798Sjhb208	AUE_SETRESUID	NOPROTO	{ int setresuid(uid_t ruid, uid_t euid, \
376146806Srwatson				    uid_t suid); }
377160798Sjhb209	AUE_GETRESUID	NOPROTO	{ int getresuid(uid_t *ruid, uid_t *euid, \
378146806Srwatson				    uid_t *suid); }
379160798Sjhb210	AUE_SETRESGID	NOPROTO	{ int setresgid(gid_t rgid, gid_t egid, \
380146806Srwatson				    gid_t sgid); }
381160798Sjhb211	AUE_GETRESGID	NOPROTO	{ int getresgid(gid_t *rgid, gid_t *egid, \
382146806Srwatson				    gid_t *sgid); }
383160798Sjhb212	AUE_CHOWN	STD	{ int linux_chown(char *path, l_uid_t uid, \
384146806Srwatson				    l_gid_t gid); }
385160798Sjhb213	AUE_SETUID	NOPROTO	{ int setuid(uid_t uid); }
386160798Sjhb214	AUE_SETGID	NOPROTO	{ int setgid(gid_t gid); }
387160798Sjhb215	AUE_SETFSUID	STD	{ int linux_setfsuid(l_uid_t uid); }
388160798Sjhb216	AUE_SETFSGID	STD	{ int linux_setfsgid(l_gid_t gid); }
389160798Sjhb217	AUE_PIVOT_ROOT	STD	{ int linux_pivot_root(char *new_root, \
390146806Srwatson				    char *put_old); }
391160798Sjhb218	AUE_MINCORE	STD	{ int linux_mincore(l_ulong start, \
392146806Srwatson				    l_size_t len, u_char *vec); }
393160798Sjhb219	AUE_MADVISE	NOPROTO	{ int madvise(void *addr, size_t len, \
394146806Srwatson				    int behav); }
395162525Srwatson220	AUE_GETDIRENTRIES	STD { int linux_getdents64(l_uint fd, \
396146806Srwatson				    void *dirent, l_uint count); }
397160798Sjhb221	AUE_FCNTL	STD	{ int linux_fcntl64(l_uint fd, l_uint cmd, \
398146806Srwatson				    l_ulong arg); }
399146806Srwatson222	AUE_NULL	UNIMPL
400146806Srwatson223	AUE_NULL	UNIMPL
401160798Sjhb224	AUE_NULL	STD	{ long linux_gettid(void); }
402146806Srwatson225	AUE_NULL	UNIMPL	linux_readahead
403160798Sjhb226	AUE_NULL	STD	{ int linux_setxattr(void); }
404160798Sjhb227	AUE_NULL	STD	{ int linux_lsetxattr(void); }
405160798Sjhb228	AUE_NULL	STD	{ int linux_fsetxattr(void); }
406160798Sjhb229	AUE_NULL	STD	{ int linux_getxattr(void); }
407160798Sjhb230	AUE_NULL	STD	{ int linux_lgetxattr(void); }
408160798Sjhb231	AUE_NULL	STD	{ int linux_fgetxattr(void); }
409160798Sjhb232	AUE_NULL	STD	{ int linux_listxattr(void); }
410160798Sjhb233	AUE_NULL	STD	{ int linux_llistxattr(void); }
411160798Sjhb234	AUE_NULL	STD	{ int linux_flistxattr(void); }
412160798Sjhb235	AUE_NULL	STD	{ int linux_removexattr(void); }
413160798Sjhb236	AUE_NULL	STD	{ int linux_lremovexattr(void); }
414160798Sjhb237	AUE_NULL	STD	{ int linux_fremovexattr(void); }
415160798Sjhb238	AUE_NULL	STD	{ int linux_tkill(int tid, int sig); }
416155374Srwatson239	AUE_SENDFILE	UNIMPL	linux_sendfile64
417218101Sdchagin240	AUE_NULL	STD	{ int linux_sys_futex(void *uaddr, int op, uint32_t val, \
418218101Sdchagin					struct l_timespec *timeout, uint32_t *uaddr2, uint32_t val3); }
419177257Srdivacky241	AUE_NULL	STD	{ int linux_sched_setaffinity(l_pid_t pid, l_uint len, \
420177257Srdivacky					l_ulong *user_mask_ptr); }
421171998Skib242	AUE_NULL	STD	{ int linux_sched_getaffinity(l_pid_t pid, l_uint len, \
422171998Skib					l_ulong *user_mask_ptr); }
423161305Snetchild243	AUE_NULL	STD	{ int linux_set_thread_area(struct l_user_desc *desc); }
424161305Snetchild244	AUE_NULL	STD	{ int linux_get_thread_area(struct l_user_desc *desc); }
425163760Snetchild245	AUE_NULL	UNIMPL	linux_io_setup
426163760Snetchild246	AUE_NULL	UNIMPL	linux_io_destroy
427163760Snetchild247	AUE_NULL	UNIMPL	linux_io_getevents
428163760Snetchild248	AUE_NULL	UNIMPL	linux_io_submit
429163760Snetchild249	AUE_NULL	UNIMPL	linux_io_cancel
430228957Sjhb250	AUE_NULL	STD	{ int linux_fadvise64(int fd, l_loff_t offset, \
431228957Sjhb					l_size_t len, int advice); }
432146806Srwatson251	AUE_NULL	UNIMPL
433161305Snetchild252	AUE_EXIT	STD	{ int linux_exit_group(int error_code); }
434160798Sjhb253	AUE_NULL	STD	{ int linux_lookup_dcookie(void); }
435255675Srdivacky254	AUE_NULL	STD	{ int linux_epoll_create(void); }
436255675Srdivacky255	AUE_NULL	STD	{ int linux_epoll_ctl(void); }
437255675Srdivacky256	AUE_NULL	STD	{ int linux_epoll_wait(void); }
438160798Sjhb257	AUE_NULL	STD	{ int linux_remap_file_pages(void); }
439161305Snetchild258	AUE_NULL	STD	{ int linux_set_tid_address(int *tidptr); }
440161305Snetchild259	AUE_NULL	STD	{ int linux_timer_create(clockid_t clock_id, \
441161305Snetchild					struct sigevent *evp, l_timer_t *timerid); }
442161305Snetchild260	AUE_NULL	STD	{ int linux_timer_settime(l_timer_t timerid, \
443161305Snetchild					const struct itimerspec *new, struct itimerspec *old); }
444161305Snetchild261	AUE_NULL	STD	{ int linux_timer_gettime(l_timer_t timerid, struct itimerspec *setting); }
445161305Snetchild262	AUE_NULL	STD	{ int linux_timer_getoverrun(l_timer_t timerid); }
446161305Snetchild263	AUE_NULL	STD	{ int linux_timer_delete(l_timer_t timerid); }
447161305Snetchild264	AUE_CLOCK_SETTIME	STD	{ int linux_clock_settime(clockid_t which, struct l_timespec *tp); }
448161305Snetchild265	AUE_NULL	STD	{ int linux_clock_gettime(clockid_t which, struct l_timespec *tp); }
449161305Snetchild266	AUE_NULL	STD	{ int linux_clock_getres(clockid_t which, struct l_timespec *tp); }
450161305Snetchild267	AUE_NULL	STD	{ int linux_clock_nanosleep(clockid_t which, int flags, \
451161305Snetchild					struct l_timespec *rqtp, struct l_timespec *rmtp); }
452172220Sdwmalone268	AUE_STATFS	STD	{ int linux_statfs64(char *path, size_t bufsize, struct l_statfs64_buf *buf); }
453162525Srwatson269	AUE_FSTATFS	STD	{ int linux_fstatfs64(void); }
454161305Snetchild270	AUE_NULL	STD	{ int linux_tgkill(int tgid, int pid, int sig); }
455165689Snetchild271	AUE_UTIMES	STD	{ int linux_utimes(char *fname, \
456165689Snetchild					struct l_timeval *tptr); }
457228957Sjhb272	AUE_NULL	STD	{ int linux_fadvise64_64(int fd, \
458228957Sjhb					l_loff_t offset, l_loff_t len, \
459228957Sjhb					int advice); }
460232799Snetchild273	AUE_NULL	UNIMPL	vserver
461160798Sjhb274	AUE_NULL	STD	{ int linux_mbind(void); }
462160798Sjhb275	AUE_NULL	STD	{ int linux_get_mempolicy(void); }
463160798Sjhb276	AUE_NULL	STD	{ int linux_set_mempolicy(void); }
464232799Snetchild; linux 2.6.6:
465161305Snetchild277	AUE_NULL	STD	{ int linux_mq_open(const char *name, int oflag, mode_t mode, \
466161305Snetchild					struct mq_attr *attr); }
467161305Snetchild278	AUE_NULL	STD	{ int linux_mq_unlink(const char *name); }
468161305Snetchild279	AUE_NULL	STD	{ int linux_mq_timedsend(l_mqd_t mqd, const char *msg_ptr, \
469161305Snetchild					size_t msg_len, unsigned int msg_prio, const struct \
470161305Snetchild					l_timespec *abs_timeout); }
471161305Snetchild280	AUE_NULL	STD	{ int linux_mq_timedreceive(l_mqd_t mqd, char *msg_ptr, \
472161305Snetchild					size_t msg_len, unsigned int msg_prio, const struct \
473161305Snetchild					l_timespec *abs_timeout); }
474161305Snetchild281	AUE_NULL	STD	{ int linux_mq_notify(l_mqd_t mqd, const struct l_timespec *abs_timeout); }
475161305Snetchild282	AUE_NULL	STD	{ int linux_mq_getsetattr(l_mqd_t mqd, const struct mq_attr *attr, \
476161305Snetchild					struct mq_attr *oattr); }
477160798Sjhb283	AUE_NULL	STD	{ int linux_kexec_load(void); }
478160798Sjhb284	AUE_NULL	STD	{ int linux_waitid(void); }
479159799Snetchild285	AUE_NULL	UNIMPL
480232799Snetchild; linux 2.6.11:
481160798Sjhb286	AUE_NULL	STD	{ int linux_add_key(void); }
482160798Sjhb287	AUE_NULL	STD	{ int linux_request_key(void); }
483160798Sjhb288	AUE_NULL	STD	{ int linux_keyctl(void); }
484232799Snetchild; linux 2.6.13:
485160798Sjhb289	AUE_NULL	STD	{ int linux_ioprio_set(void); }
486160798Sjhb290	AUE_NULL	STD	{ int linux_ioprio_get(void); }
487160798Sjhb291	AUE_NULL	STD	{ int linux_inotify_init(void); }
488160798Sjhb292	AUE_NULL	STD	{ int linux_inotify_add_watch(void); }
489160798Sjhb293	AUE_NULL	STD	{ int linux_inotify_rm_watch(void); }
490232799Snetchild; linux 2.6.16:
491160798Sjhb294	AUE_NULL	STD	{ int linux_migrate_pages(void); }
492177997Skib295	AUE_OPEN_RWTC	STD	{ int linux_openat(l_int dfd, const char *filename, \
493168014Sjulian					l_int flags, l_int mode); }
494177997Skib296	AUE_MKDIRAT	STD	{ int linux_mkdirat(l_int dfd, const char *pathname, \
495177997Skib					l_int mode); }
496177997Skib297	AUE_MKNODAT	STD	{ int linux_mknodat(l_int dfd, const char *filename, \
497177997Skib					l_int mode, l_uint dev); }
498177997Skib298	AUE_FCHOWNAT	STD	{ int linux_fchownat(l_int dfd, const char *filename, \
499177997Skib					l_uid16_t uid, l_gid16_t gid, l_int flag); }
500177997Skib299	AUE_FUTIMESAT	STD	{ int linux_futimesat(l_int dfd, char *filename, \
501177997Skib					struct l_timeval *utimes); }
502177997Skib300	AUE_FSTATAT	STD	{ int linux_fstatat64(l_int dfd, char *pathname, \
503177997Skib					struct l_stat64 *statbuf, l_int flag); }
504177997Skib301	AUE_UNLINKAT	STD	{ int linux_unlinkat(l_int dfd, const char *pathname, \
505177997Skib					l_int flag); }
506177997Skib302	AUE_RENAMEAT	STD	{ int linux_renameat(l_int olddfd, const char *oldname, \
507177997Skib					l_int newdfd, const char *newname); }
508177997Skib303	AUE_LINKAT	STD	{ int linux_linkat(l_int olddfd, const char *oldname, \
509227693Sed					l_int newdfd, const char *newname, l_int flag); }
510177997Skib304	AUE_SYMLINKAT	STD	{ int linux_symlinkat(const char *oldname, l_int newdfd, \
511177997Skib					const char *newname); }
512177997Skib305	AUE_READLINKAT	STD	{ int linux_readlinkat(l_int dfd, const char *path, \
513177997Skib					char *buf, l_int bufsiz); }
514177997Skib306	AUE_FCHMODAT	STD	{ int linux_fchmodat(l_int dfd, const char *filename, \
515177997Skib					l_mode_t mode); }
516227693Sed307	AUE_FACCESSAT	STD	{ int linux_faccessat(l_int dfd, const char *filename, l_int amode, l_int flag); }
517160798Sjhb308	AUE_NULL	STD	{ int linux_pselect6(void); }
518160798Sjhb309	AUE_NULL	STD	{ int linux_ppoll(void); }
519160798Sjhb310	AUE_NULL	STD	{ int linux_unshare(void); }
520232799Snetchild; linux 2.6.17:
521178976Srdivacky311	AUE_NULL	STD	{ int linux_set_robust_list(struct linux_robust_list_head *head, \
522178976Srdivacky					l_size_t len); }
523178976Srdivacky312	AUE_NULL	STD	{ int linux_get_robust_list(l_int pid, struct linux_robust_list_head **head, \
524178976Srdivacky					l_size_t *len); }
525178257Sjkim313	AUE_NULL	STD	{ int linux_splice(void); }
526178257Sjkim314	AUE_NULL	STD	{ int linux_sync_file_range(void); }
527178257Sjkim315	AUE_NULL	STD	{ int linux_tee(void); }
528178257Sjkim316	AUE_NULL	STD	{ int linux_vmsplice(void); }
529232799Snetchild; linux 2.6.18:
530232799Snetchild317	AUE_NULL	STD	{ int linux_move_pages(void); }
531232799Snetchild; linux 2.6.19:
532232799Snetchild318	AUE_NULL	STD	{ int linux_getcpu(void); }
533232799Snetchild319	AUE_NULL	STD	{ int linux_epoll_pwait(void); }
534232799Snetchild; linux 2.6.22:
535232799Snetchild320	AUE_NULL	STD	{ int linux_utimensat(void); }
536232799Snetchild321	AUE_NULL	STD	{ int linux_signalfd(void); }
537232799Snetchild322	AUE_NULL	STD	{ int linux_timerfd_create(void); }
538232799Snetchild323	AUE_NULL	STD	{ int linux_eventfd(void); }
539232799Snetchild; linux 2.6.23:
540232799Snetchild324	AUE_NULL	STD	{ int linux_fallocate(void); }
541232799Snetchild; linux 2.6.25:
542232799Snetchild325	AUE_NULL	STD	{ int linux_timerfd_settime(void); }
543232799Snetchild326	AUE_NULL	STD	{ int linux_timerfd_gettime(void); }
544232799Snetchild; linux 2.6.27:
545232799Snetchild327	AUE_NULL	STD	{ int linux_signalfd4(void); }
546232799Snetchild328	AUE_NULL	STD	{ int linux_eventfd2(void); }
547255675Srdivacky329	AUE_NULL	STD	{ int linux_epoll_create1(void); }
548232799Snetchild330	AUE_NULL	STD	{ int linux_dup3(void); }
549234352Sjkim331	AUE_NULL	STD	{ int linux_pipe2(l_int *pipefds, l_int flags); }
550232799Snetchild332	AUE_NULL	STD	{ int linux_inotify_init1(void); }
551232799Snetchild; linux 2.6.30:
552232799Snetchild333	AUE_NULL	STD	{ int linux_preadv(void); }
553232799Snetchild334	AUE_NULL	STD	{ int linux_pwritev(void); }
554232799Snetchild; linux 2.6.31:
555232799Snetchild335	AUE_NULL	STD	{ int linux_rt_tsigqueueinfo(void); }
556232799Snetchild336	AUE_NULL	STD	{ int linux_perf_event_open(void); }
557232799Snetchild; linux 2.6.33:
558232799Snetchild337	AUE_NULL	STD	{ int linux_recvmmsg(void); }
559232799Snetchild338	AUE_NULL	STD	{ int linux_fanotify_init(void); }
560232799Snetchild339	AUE_NULL	STD	{ int linux_fanotify_mark(void); }
561232799Snetchild; linux 2.6.36:
562232799Snetchild340	AUE_NULL	STD	{ int linux_prlimit64(void); }
563232799Snetchild; later:
564232799Snetchild341	AUE_NULL	STD	{ int linux_name_to_handle_at(void); }
565232799Snetchild342	AUE_NULL	STD	{ int linux_open_by_handle_at(void); }
566232799Snetchild343	AUE_NULL	STD	{ int linux_clock_adjtime(void); }
567232799Snetchild344	AUE_NULL	STD	{ int linux_syncfs(void); }
568232799Snetchild345	AUE_NULL	STD	{ int linux_sendmmsg(void); }
569232799Snetchild346	AUE_NULL	STD	{ int linux_setns(void); }
570232799Snetchild347	AUE_NULL	STD	{ int linux_process_vm_readv(void); }
571232799Snetchild348	AUE_NULL	STD	{ int linux_process_vm_writev(void); }
572