syscalls.master revision 1.44 1 1.44 jdolecek $NetBSD: syscalls.master,v 1.44 2000/12/01 21:02:56 jdolecek Exp $
2 1.1 fvdl
3 1.1 fvdl ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
4 1.1 fvdl
5 1.26 erh ; NetBSD i386 COMPAT_LINUX system call name/number "master" file.
6 1.1 fvdl ; (See syscalls.conf to see what it is processed into.)
7 1.1 fvdl ;
8 1.1 fvdl ; Fields: number type [type-dependent ...]
9 1.1 fvdl ; number system call number, must be in order
10 1.1 fvdl ; type one of STD, OBSOL, UNIMPL, NODEF, NOARGS, or one of
11 1.1 fvdl ; the compatibility options defined in syscalls.conf.
12 1.1 fvdl ;
13 1.1 fvdl ; types:
14 1.1 fvdl ; STD always included
15 1.1 fvdl ; OBSOL obsolete, not included in system
16 1.1 fvdl ; UNIMPL unimplemented, not included in system
17 1.1 fvdl ; NODEF included, but don't define the syscall number
18 1.1 fvdl ; NOARGS included, but don't define the syscall args structure
19 1.26 erh ; INDIR included, but don't define the syscall args structure
20 1.26 erh ; and allow it to be "really" varargs.
21 1.1 fvdl ;
22 1.1 fvdl ; The compat options are defined in the syscalls.conf file, and the
23 1.1 fvdl ; compat option name is prefixed to the syscall name. Other than
24 1.1 fvdl ; that, they're like NODEF (for 'compat' options), or STD (for
25 1.1 fvdl ; 'libcompat' options).
26 1.1 fvdl ;
27 1.1 fvdl ; The type-dependent arguments are as follows:
28 1.1 fvdl ; For STD, NODEF, NOARGS, and compat syscalls:
29 1.1 fvdl ; { pseudo-proto } [alias]
30 1.1 fvdl ; For other syscalls:
31 1.1 fvdl ; [comment]
32 1.1 fvdl ;
33 1.1 fvdl ; #ifdef's, etc. may be included, and are copied to the output files.
34 1.22 thorpej ; #include's are copied to the syscall names and switch definition files only.
35 1.28 christos
36 1.44 jdolecek if defined(_KERNEL) && !defined(_LKM)
37 1.28 christos #include "opt_compat_43.h"
38 1.44 jdolecek endif
39 1.1 fvdl
40 1.1 fvdl #include <sys/param.h>
41 1.32 abs #include <sys/poll.h>
42 1.1 fvdl #include <sys/systm.h>
43 1.1 fvdl #include <sys/signal.h>
44 1.1 fvdl #include <sys/mount.h>
45 1.1 fvdl #include <sys/syscallargs.h>
46 1.13 mycroft
47 1.27 christos #include <compat/linux/common/linux_types.h>
48 1.27 christos #include <compat/linux/common/linux_signal.h>
49 1.27 christos #include <compat/linux/common/linux_siginfo.h>
50 1.27 christos #include <compat/linux/common/linux_machdep.h>
51 1.27 christos
52 1.27 christos #include <compat/linux/linux_syscallargs.h>
53 1.13 mycroft
54 1.1 fvdl
55 1.13 mycroft 0 NOARGS { int sys_nosys(void); } syscall
56 1.13 mycroft 1 NOARGS { int sys_exit(int rval); }
57 1.14 mycroft 2 NOARGS { int sys_fork(void); }
58 1.13 mycroft 3 NOARGS { int sys_read(int fd, char *buf, u_int nbyte); }
59 1.13 mycroft 4 NOARGS { int sys_write(int fd, char *buf, u_int nbyte); }
60 1.29 christos 5 STD { int linux_sys_open(const char *path, int flags, \
61 1.29 christos int mode); }
62 1.13 mycroft 6 NOARGS { int sys_close(int fd); }
63 1.13 mycroft 7 STD { int linux_sys_waitpid(int pid, int *status, \
64 1.13 mycroft int options);}
65 1.29 christos 8 STD { int linux_sys_creat(const char *path, int mode); }
66 1.29 christos 9 NOARGS { int sys_link(const char *path, const char *link); }
67 1.29 christos 10 STD { int linux_sys_unlink(const char *path); }
68 1.29 christos 11 STD { int linux_sys_execve(const char *path, char **argp, \
69 1.13 mycroft char **envp); }
70 1.29 christos 12 STD { int linux_sys_chdir(const char *path); }
71 1.13 mycroft 13 STD { int linux_sys_time(linux_time_t *t); }
72 1.29 christos 14 STD { int linux_sys_mknod(const char *path, int mode, \
73 1.29 christos int dev); }
74 1.29 christos 15 STD { int linux_sys_chmod(const char *path, int mode); }
75 1.29 christos 16 STD { int linux_sys_lchown(const char *path, \
76 1.29 christos int uid, int gid); }
77 1.26 erh ;17 - no longer in linux source.
78 1.13 mycroft 17 STD { int linux_sys_break(char *nsize); }
79 1.13 mycroft 18 OBSOL ostat
80 1.13 mycroft 19 NOARGS { long compat_43_sys_lseek(int fd, long offset, \
81 1.13 mycroft int whence); }
82 1.13 mycroft 20 NOARGS { pid_t sys_getpid(void); }
83 1.13 mycroft 21 UNIMPL mount
84 1.13 mycroft 22 UNIMPL umount
85 1.13 mycroft 23 NOARGS { int sys_setuid(uid_t uid); }
86 1.13 mycroft 24 NOARGS { uid_t sys_getuid(void); }
87 1.35 tron 25 STD { int linux_sys_stime(linux_time_t *t); }
88 1.39 tron 26 STD { int linux_sys_ptrace(int request, int pid, \
89 1.39 tron int addr, int data); }
90 1.13 mycroft 27 STD { int linux_sys_alarm(unsigned int secs); }
91 1.13 mycroft 28 OBSOL ofstat
92 1.13 mycroft 29 STD { int linux_sys_pause(void); }
93 1.29 christos 30 STD { int linux_sys_utime(const char *path, \
94 1.13 mycroft struct linux_utimbuf *times); }
95 1.26 erh 31 OBSOL stty
96 1.26 erh 32 OBSOL gtty
97 1.29 christos 33 STD { int linux_sys_access(const char *path, int flags); }
98 1.17 augustss 34 STD { int linux_sys_nice(int incr); }
99 1.26 erh 35 OBSOL ftime
100 1.13 mycroft 36 NOARGS { int sys_sync(void); }
101 1.13 mycroft 37 STD { int linux_sys_kill(int pid, int signum); }
102 1.29 christos 38 STD { int linux_sys_rename(const char *from, \
103 1.29 christos const char *to); }
104 1.29 christos 39 STD { int linux_sys_mkdir(const char *path, int mode); }
105 1.29 christos 40 STD { int linux_sys_rmdir(const char *path); }
106 1.13 mycroft 41 NOARGS { int sys_dup(u_int fd); }
107 1.13 mycroft 42 STD { int linux_sys_pipe(int *pfds); }
108 1.13 mycroft 43 STD { int linux_sys_times(struct times *tms); }
109 1.26 erh 44 OBSOL prof
110 1.13 mycroft 45 STD { int linux_sys_brk(char *nsize); }
111 1.13 mycroft 46 NOARGS { int sys_setgid(gid_t gid); }
112 1.13 mycroft 47 NOARGS { gid_t sys_getgid(void); }
113 1.37 tron 48 STD { int linux_sys_signal(int signum, \
114 1.13 mycroft linux_handler_t handler); }
115 1.13 mycroft 49 NOARGS { uid_t sys_geteuid(void); }
116 1.13 mycroft 50 NOARGS { gid_t sys_getegid(void); }
117 1.13 mycroft 51 NOARGS { int sys_acct(char *path); }
118 1.26 erh 52 OBSOL phys
119 1.26 erh 53 OBSOL lock
120 1.13 mycroft 54 STD { int linux_sys_ioctl(int fd, u_long com, \
121 1.13 mycroft caddr_t data); }
122 1.13 mycroft 55 STD { int linux_sys_fcntl(int fd, int cmd, void *arg); }
123 1.26 erh 56 OBSOL mpx
124 1.13 mycroft 57 NOARGS { int sys_setpgid(int pid, int pgid); }
125 1.26 erh 58 OBSOL ulimit
126 1.13 mycroft 59 STD { int linux_sys_oldolduname(struct linux_oldold_utsname *up); }
127 1.13 mycroft 60 NOARGS { int sys_umask(int newmask); }
128 1.13 mycroft 61 NOARGS { int sys_chroot(char *path); }
129 1.13 mycroft 62 UNIMPL ustat
130 1.13 mycroft 63 NOARGS { int sys_dup2(u_int from, u_int to); }
131 1.13 mycroft 64 NOARGS { pid_t sys_getppid(void); }
132 1.13 mycroft 65 NOARGS { int sys_getpgrp(void); }
133 1.13 mycroft 66 NOARGS { int sys_setsid(void); }
134 1.13 mycroft 67 STD { int linux_sys_sigaction(int signum, \
135 1.26 erh const struct linux_old_sigaction *nsa, \
136 1.26 erh struct linux_old_sigaction *osa); }
137 1.13 mycroft 68 STD { int linux_sys_siggetmask(void); }
138 1.26 erh 69 STD { int linux_sys_sigsetmask(linux_old_sigset_t mask); }
139 1.13 mycroft 70 STD { int linux_sys_setreuid(int ruid, int euid); }
140 1.13 mycroft 71 STD { int linux_sys_setregid(int rgid, int egid); }
141 1.13 mycroft 72 STD { int linux_sys_sigsuspend(caddr_t restart, \
142 1.13 mycroft int oldmask, int mask); }
143 1.26 erh 73 STD { int linux_sys_sigpending(linux_old_sigset_t *set); }
144 1.13 mycroft 74 NOARGS { int compat_43_sys_sethostname(char *hostname, \
145 1.13 mycroft u_int len);}
146 1.13 mycroft 75 NOARGS { int compat_43_sys_setrlimit(u_int which, \
147 1.20 mycroft struct orlimit *rlp); }
148 1.13 mycroft 76 NOARGS { int compat_43_sys_getrlimit(u_int which, \
149 1.20 mycroft struct orlimit *rlp); }
150 1.13 mycroft 77 NOARGS { int sys_getrusage(int who, struct rusage *rusage); }
151 1.13 mycroft 78 NOARGS { int sys_gettimeofday(struct timeval *tp, \
152 1.13 mycroft struct timezone *tzp); }
153 1.13 mycroft 79 NOARGS { int sys_settimeofday(struct timeval *tp, \
154 1.13 mycroft struct timezone *tzp); }
155 1.13 mycroft 80 NOARGS { int sys_getgroups(u_int gidsetsize, gid_t *gidset); }
156 1.13 mycroft 81 NOARGS { int sys_setgroups(u_int gidsetsize, gid_t *gidset); }
157 1.26 erh 82 STD { int linux_sys_oldselect(struct linux_oldselect *lsp); }
158 1.29 christos 83 STD { int linux_sys_symlink(const char *path, \
159 1.29 christos const char *to); }
160 1.29 christos 84 NOARGS { int compat_43_sys_lstat(const char *path, \
161 1.21 christos struct stat43 *up); } oolstat
162 1.29 christos 85 STD { int linux_sys_readlink(const char *name, char *buf, \
163 1.13 mycroft int count); }
164 1.29 christos 86 STD { int linux_sys_uselib(const char *path); }
165 1.44 jdolecek 87 STD { int linux_sys_swapon(char *name); }
166 1.41 erh 88 STD { int linux_sys_reboot(int magic1, int magic2, \
167 1.41 erh int cmd, void *arg); }
168 1.13 mycroft 89 STD { int linux_sys_readdir(int fd, caddr_t dent, \
169 1.1 fvdl unsigned int count); }
170 1.26 erh 90 STD { int linux_sys_old_mmap(struct linux_oldmmap *lmp); }
171 1.13 mycroft 91 NOARGS { int sys_munmap(caddr_t addr, int len); }
172 1.29 christos 92 STD { int linux_sys_truncate(const char *path, \
173 1.29 christos long length); }
174 1.13 mycroft 93 NOARGS { int compat_43_sys_ftruncate(int fd, long length); }
175 1.13 mycroft 94 NOARGS { int sys_fchmod(int fd, int mode); }
176 1.13 mycroft 95 STD { int linux_sys_fchown(int fd, int uid, int gid); }
177 1.13 mycroft 96 NOARGS { int sys_getpriority(int which, int who); }
178 1.13 mycroft 97 NOARGS { int sys_setpriority(int which, int who, int prio); }
179 1.13 mycroft 98 NOARGS { int sys_profil(caddr_t samples, u_int size, \
180 1.13 mycroft u_int offset, u_int scale); }
181 1.29 christos 99 STD { int linux_sys_statfs(const char *path, \
182 1.13 mycroft struct linux_statfs *sp); }
183 1.13 mycroft 100 STD { int linux_sys_fstatfs(int fd, \
184 1.13 mycroft struct linux_statfs *sp); }
185 1.13 mycroft 101 STD { int linux_sys_ioperm(unsigned int lo, \
186 1.13 mycroft unsigned int hi, int val); }
187 1.13 mycroft 102 STD { int linux_sys_socketcall(int what, void *args); }
188 1.26 erh 103 UNIMPL syslog
189 1.13 mycroft 104 NOARGS { int sys_setitimer(u_int which, \
190 1.13 mycroft struct itimerval *itv, struct itimerval *oitv); }
191 1.13 mycroft 105 NOARGS { int sys_getitimer(u_int which, \
192 1.13 mycroft struct itimerval *itv); }
193 1.29 christos 106 STD { int linux_sys_stat(const char *path, \
194 1.13 mycroft struct linux_stat *sp); }
195 1.29 christos 107 STD { int linux_sys_lstat(const char *path, \
196 1.13 mycroft struct linux_stat *sp); }
197 1.13 mycroft 108 STD { int linux_sys_fstat(int fd, struct linux_stat *sp); }
198 1.13 mycroft 109 STD { int linux_sys_olduname(struct linux_old_utsname *up); }
199 1.13 mycroft 110 STD { int linux_sys_iopl(int level); }
200 1.13 mycroft 111 UNIMPL vhangup
201 1.13 mycroft 112 UNIMPL idle
202 1.26 erh 113 UNIMPL vm86old
203 1.13 mycroft 114 STD { int linux_sys_wait4(int pid, int *status, \
204 1.13 mycroft int options, struct rusage *rusage); }
205 1.13 mycroft 115 UNIMPL swapoff
206 1.13 mycroft 116 UNIMPL sysinfo
207 1.13 mycroft 117 STD { int linux_sys_ipc(int what, int a1, int a2, int a3, \
208 1.13 mycroft caddr_t ptr); }
209 1.13 mycroft 118 NOARGS { int sys_fsync(int fd); }
210 1.13 mycroft 119 STD { int linux_sys_sigreturn(struct linux_sigcontext *scp); }
211 1.33 thorpej 120 STD { int linux_sys_clone(int flags, void *stack); }
212 1.44 jdolecek 121 STD { int linux_sys_setdomainname(char *domainname, \
213 1.13 mycroft int len); }
214 1.13 mycroft 122 STD { int linux_sys_uname(struct linux_utsname *up); }
215 1.13 mycroft 123 STD { int linux_sys_modify_ldt(int func, void *ptr, \
216 1.13 mycroft size_t bytecount); }
217 1.13 mycroft 124 UNIMPL adjtimex
218 1.13 mycroft 125 NOARGS { int sys_mprotect(caddr_t addr, int len, int prot); }
219 1.13 mycroft 126 STD { int linux_sys_sigprocmask(int how, \
220 1.26 erh const linux_old_sigset_t *set, \
221 1.26 erh linux_old_sigset_t *oset); }
222 1.13 mycroft 127 UNIMPL create_module
223 1.13 mycroft 128 UNIMPL init_module
224 1.13 mycroft 129 UNIMPL delete_module
225 1.13 mycroft 130 UNIMPL get_kernel_syms
226 1.13 mycroft 131 UNIMPL quotactl
227 1.13 mycroft 132 STD { int linux_sys_getpgid(int pid); }
228 1.13 mycroft 133 NOARGS { int sys_fchdir(int fd); }
229 1.13 mycroft 134 UNIMPL bdflush
230 1.13 mycroft 135 UNIMPL sysfs
231 1.13 mycroft 136 STD { int linux_sys_personality(int per); }
232 1.13 mycroft 137 UNIMPL afs_syscall
233 1.40 abs 138 STD { int linux_sys_setfsuid(uid_t uid); }
234 1.40 abs 139 NOARGS { int linux_sys_getfsuid(void); }
235 1.13 mycroft 140 STD { int linux_sys_llseek(int fd, u_int32_t ohigh, \
236 1.13 mycroft u_int32_t olow, caddr_t res, int whence); }
237 1.26 erh 141 STD { int linux_sys_getdents(int fd, \
238 1.26 erh struct linux_dirent *dent, unsigned int count); }
239 1.13 mycroft 142 STD { int linux_sys_select(int nfds, fd_set *readfds, \
240 1.13 mycroft fd_set *writefds, fd_set *exceptfds, \
241 1.13 mycroft struct timeval *timeout); }
242 1.13 mycroft 143 NOARGS { int sys_flock(int fd, int how); }
243 1.15 fvdl 144 STD { int linux_sys_msync(caddr_t addr, int len, int fl); }
244 1.15 fvdl 145 NOARGS { int sys_readv(int fd, struct iovec *iovp, \
245 1.15 fvdl u_int iovcnt); }
246 1.15 fvdl 146 NOARGS { int sys_writev(int fd, struct iovec *iovp, \
247 1.15 fvdl u_int iovcnt); }
248 1.23 mycroft 147 NOARGS { pid_t sys_getsid(pid_t pid); }
249 1.16 fvdl 148 STD { int linux_sys_fdatasync(int fd); }
250 1.16 fvdl 149 STD { int linux_sys___sysctl(struct linux___sysctl *lsp); }
251 1.16 fvdl 150 NOARGS { int sys_mlock(caddr_t addr, size_t len); }
252 1.16 fvdl 151 NOARGS { int sys_munlock(caddr_t addr, size_t len); }
253 1.43 jdolecek 152 NOARGS { int sys_mlockall(int flags); }
254 1.43 jdolecek 153 NOARGS { int sys_munlockall(void); }
255 1.36 tron 154 STD { int linux_sys_sched_setparam(pid_t pid, \
256 1.36 tron const struct linux_sched_param *sp); }
257 1.36 tron 155 STD { int linux_sys_sched_getparam(pid_t pid, \
258 1.36 tron struct linux_sched_param *sp); }
259 1.36 tron 156 STD { int linux_sys_sched_setscheduler(pid_t pid, \
260 1.36 tron int policy, const struct linux_sched_param *sp); }
261 1.36 tron 157 STD { int linux_sys_sched_getscheduler(pid_t pid); }
262 1.36 tron 158 STD { int linux_sys_sched_yield(void); }
263 1.36 tron 159 STD { int linux_sys_sched_get_priority_max(int policy); }
264 1.36 tron 160 STD { int linux_sys_sched_get_priority_min(int policy); }
265 1.36 tron 161 UNIMPL sys_sched_rr_get_interval
266 1.24 perry 162 NOARGS { int sys_nanosleep(const struct timespec *rqtp, \
267 1.24 perry struct timespec *rmtp); }
268 1.19 mycroft 163 STD { void *linux_sys_mremap(void *old_address, \
269 1.19 mycroft size_t old_size, size_t new_size, u_long flags); }
270 1.34 thorpej 164 STD { int linux_sys_setresuid(uid_t ruid, uid_t euid, \
271 1.34 thorpej uid_t suid); }
272 1.34 thorpej 165 STD { int linux_sys_getresuid(uid_t *ruid, uid_t *euid, \
273 1.34 thorpej uid_t *suid); }
274 1.26 erh 166 UNIMPL vm86
275 1.26 erh 167 UNIMPL query_module
276 1.32 abs 168 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
277 1.32 abs int timeout); }
278 1.26 erh 169 UNIMPL nfsservctl
279 1.34 thorpej 170 STD { int linux_sys_setresgid(gid_t rgid, gid_t egid, \
280 1.34 thorpej gid_t sgid); }
281 1.34 thorpej 171 STD { int linux_sys_getresgid(gid_t *rgid, gid_t *egid, \
282 1.34 thorpej gid_t *sgid); }
283 1.26 erh 172 UNIMPL prctl
284 1.26 erh 173 STD { int linux_sys_rt_sigreturn( \
285 1.26 erh struct linux_rt_sigframe *sfp); }
286 1.26 erh 174 STD { int linux_sys_rt_sigaction(int signum, \
287 1.26 erh const struct linux_sigaction *nsa, \
288 1.26 erh struct linux_sigaction *osa, \
289 1.26 erh size_t sigsetsize); }
290 1.26 erh 175 STD { int linux_sys_rt_sigprocmask(int how, \
291 1.26 erh const linux_sigset_t *set, \
292 1.26 erh linux_sigset_t *oset, \
293 1.26 erh size_t sigsetsize); }
294 1.26 erh 176 STD { int linux_sys_rt_sigpending( \
295 1.26 erh linux_sigset_t *set, \
296 1.26 erh size_t sigsetsize); }
297 1.26 erh 177 UNIMPL rt_sigtimedwait
298 1.26 erh ; XXX XAX int here? sigset_t here? siginfo_t
299 1.26 erh 178 STD { int linux_sys_rt_queueinfo(int pid, int signum, \
300 1.26 erh void *uinfo); }
301 1.26 erh 179 STD { int linux_sys_rt_sigsuspend(linux_sigset_t *unewset, \
302 1.26 erh size_t sigsetsize); }
303 1.38 tron 180 STD { int linux_sys_pread(int fd, char *buf, \
304 1.38 tron size_t nbyte, linux_off_t offset); }
305 1.38 tron 181 STD { int linux_sys_pwrite(int fd, char *buf, \
306 1.38 tron size_t nbyte, linux_off_t offset); }
307 1.29 christos 182 STD { int linux_sys_chown(const char *path, int uid, \
308 1.29 christos int gid); }
309 1.31 tron 183 NOARGS { int sys___getcwd(char *bufp, size_t length); }
310 1.26 erh 184 UNIMPL capget
311 1.26 erh 185 UNIMPL capset
312 1.42 christos 186 STD { int linux_sys_sigaltstack( \
313 1.42 christos const struct linux_sigaltstack *ss, \
314 1.42 christos struct linux_sigaltstack *oss); }
315 1.34 thorpej 187 UNIMPL sendfile
316 1.34 thorpej 188 UNIMPL getpmsg
317 1.34 thorpej 189 UNIMPL putpmsg
318 1.34 thorpej 190 NOARGS { int sys___vfork14(void); }
319