syscallsubr.h revision 191673
1139825Simp/*-
2102779Siedowse * Copyright (c) 2002 Ian Dowse.  All rights reserved.
3102779Siedowse *
4102779Siedowse * Redistribution and use in source and binary forms, with or without
5102779Siedowse * modification, are permitted provided that the following conditions
6102779Siedowse * are met:
7102779Siedowse * 1. Redistributions of source code must retain the above copyright
8102779Siedowse *    notice, this list of conditions and the following disclaimer.
9102779Siedowse * 2. Redistributions in binary form must reproduce the above copyright
10102779Siedowse *    notice, this list of conditions and the following disclaimer in the
11102779Siedowse *    documentation and/or other materials provided with the distribution.
12102779Siedowse *
13102779Siedowse * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14102779Siedowse * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15102779Siedowse * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16102779Siedowse * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17102779Siedowse * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18102779Siedowse * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19102779Siedowse * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20102779Siedowse * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21102779Siedowse * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22102779Siedowse * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23102779Siedowse * SUCH DAMAGE.
24102779Siedowse *
25102779Siedowse * $FreeBSD: head/sys/sys/syscallsubr.h 191673 2009-04-29 21:14:15Z jamie $
26102779Siedowse */
27102779Siedowse
28102779Siedowse#ifndef _SYS_SYSCALLSUBR_H_
29102779Siedowse#define _SYS_SYSCALLSUBR_H_
30102779Siedowse
31102779Siedowse#include <sys/signal.h>
32102779Siedowse#include <sys/uio.h>
33132313Sdwmalone#include <sys/socket.h>
34136221Sdavidxu#include <sys/mac.h>
35141471Sjhb#include <sys/mount.h>
36102779Siedowse
37160765Sjhbstruct file;
38141471Sjhbstruct itimerval;
39141471Sjhbstruct image_args;
40135764Sjhbstruct mbuf;
41135764Sjhbstruct msghdr;
42141471Sjhbstruct msqid_ds;
43139739Sjhbstruct rlimit;
44136152Sjhbstruct rusage;
45159991Sjhbunion semun;
46110294Sumestruct sockaddr;
47141471Sjhbstruct stat;
48142933Spsstruct kevent;
49146950Spsstruct kevent_copyops;
50156114Spsstruct sendfile_args;
51170404Sjhbstruct thr_param;
52110294Sume
53102870Siedowseint	kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg,
54102870Siedowse	    u_int buflen);
55160249Sjhbint	kern_accept(struct thread *td, int s, struct sockaddr **name,
56160765Sjhb	    socklen_t *namelen, struct file **fp);
57102779Siedowseint	kern_access(struct thread *td, char *path, enum uio_seg pathseg,
58102779Siedowse	    int flags);
59177786Skibint	kern_accessat(struct thread *td, int fd, char *path,
60177786Skib	    enum uio_seg pathseg, int flags, int mode);
61144445Sjhbint	kern_adjtime(struct thread *td, struct timeval *delta,
62144445Sjhb	    struct timeval *olddelta);
63177997Skibint	kern_alternate_path(struct thread *td, const char *prefix, const char *path,
64177997Skib	    enum uio_seg pathseg, char **pathbuf, int create, int dirfd);
65110294Sumeint	kern_bind(struct thread *td, int fd, struct sockaddr *sa);
66102779Siedowseint	kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
67102779Siedowseint	kern_chmod(struct thread *td, char *path, enum uio_seg pathseg,
68102779Siedowse	    int mode);
69102779Siedowseint	kern_chown(struct thread *td, char *path, enum uio_seg pathseg, int uid,
70102779Siedowse	    int gid);
71151357Spsint	kern_clock_getres(struct thread *td, clockid_t clock_id,
72151357Sps	    struct timespec *ts);
73151357Spsint	kern_clock_gettime(struct thread *td, clockid_t clock_id,
74151357Sps	    struct timespec *ats);
75151357Spsint	kern_clock_settime(struct thread *td, clockid_t clock_id,
76151357Sps	    struct timespec *ats);
77160190Sjhbint	kern_close(struct thread *td, int fd);
78110294Sumeint	kern_connect(struct thread *td, int fd, struct sockaddr *sa);
79155401Sjhbint	kern_eaccess(struct thread *td, char *path, enum uio_seg pathseg,
80155401Sjhb	    int flags);
81140992Ssobomaxint	kern_execve(struct thread *td, struct image_args *args,
82139739Sjhb	    struct mac *mac_p);
83177786Skibint	kern_fchmodat(struct thread *td, int fd, char *path,
84177786Skib	    enum uio_seg pathseg, mode_t mode, int flag);
85177786Skibint	kern_fchownat(struct thread *td, int fd, char *path,
86177786Skib	    enum uio_seg pathseg, int uid, int gid, int flag);
87102868Siedowseint	kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
88141471Sjhbint	kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
89141471Sjhbint	kern_fstat(struct thread *td, int fd, struct stat *sbp);
90141471Sjhbint	kern_fstatfs(struct thread *td, int fd, struct statfs *buf);
91175140Sjhbint	kern_ftruncate(struct thread *td, int fd, off_t length);
92102779Siedowseint	kern_futimes(struct thread *td, int fd, struct timeval *tptr,
93102779Siedowse	    enum uio_seg tptrseg);
94184183Sjhbint	kern_getdirentries(struct thread *td, int fd, char *buf, u_int count,
95184183Sjhb	    long *basep);
96147302Spjdint	kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize,
97147178Spjd	    enum uio_seg bufseg, int flags);
98160139Sjhbint	kern_getgroups(struct thread *td, u_int *ngrp, gid_t *groups);
99140836Ssobomaxint	kern_getitimer(struct thread *, u_int, struct itimerval *);
100160249Sjhbint	kern_getpeername(struct thread *td, int fd, struct sockaddr **sa,
101160249Sjhb	    socklen_t *alen);
102136152Sjhbint	kern_getrusage(struct thread *td, int who, struct rusage *rup);
103160249Sjhbint	kern_getsockname(struct thread *td, int fd, struct sockaddr **sa,
104160249Sjhb	    socklen_t *alen);
105132313Sdwmaloneint	kern_getsockopt(struct thread *td, int s, int level, int name,
106132313Sdwmalone	    void *optval, enum uio_seg valseg, socklen_t *valsize);
107160192Sjhbint	kern_ioctl(struct thread *td, int fd, u_long com, caddr_t data);
108191673Sjamieint	kern_jail_get(struct thread *td, struct uio *options, int flags);
109191673Sjamieint	kern_jail_set(struct thread *td, struct uio *options, int flags);
110146950Spsint	kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
111146950Sps	    struct kevent_copyops *k_ops, const struct timespec *timeout);
112159588Sjhbint	kern_kldload(struct thread *td, const char *file, int *fileid);
113159588Sjhbint	kern_kldunload(struct thread *td, int fileid, int flags);
114102779Siedowseint	kern_lchown(struct thread *td, char *path, enum uio_seg pathseg,
115102779Siedowse	    int uid, int gid);
116102779Siedowseint	kern_link(struct thread *td, char *path, char *link,
117102779Siedowse	    enum uio_seg segflg);
118177786Skibint	kern_linkat(struct thread *td, int fd1, int fd2, char *path1,
119177786Skib	    char *path2, enum uio_seg segflg, int follow);
120141471Sjhbint	kern_lstat(struct thread *td, char *path, enum uio_seg pathseg,
121141471Sjhb	    struct stat *sbp);
122102779Siedowseint	kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg,
123102779Siedowse	    struct timeval *tptr, enum uio_seg tptrseg);
124102779Siedowseint	kern_mkdir(struct thread *td, char *path, enum uio_seg segflg,
125102779Siedowse	    int mode);
126177786Skibint	kern_mkdirat(struct thread *td, int fd, char *path,
127177786Skib	    enum uio_seg segflg, int mode);
128102779Siedowseint	kern_mkfifo(struct thread *td, char *path, enum uio_seg pathseg,
129102779Siedowse	    int mode);
130177786Skibint	kern_mkfifoat(struct thread *td, int fd, char *path,
131177786Skib	    enum uio_seg pathseg, int mode);
132102779Siedowseint	kern_mknod(struct thread *td, char *path, enum uio_seg pathseg,
133102779Siedowse	    int mode, int dev);
134177786Skibint	kern_mknodat(struct thread *td, int fd, char *path,
135177786Skib	    enum uio_seg pathseg, int mode, int dev);
136141471Sjhbint	kern_msgctl(struct thread *, int, int, struct msqid_ds *);
137165403Sjkimint	kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
138165403Sjkimint	kern_msgrcv(struct thread *, int, void *, size_t, long, int, long *);
139140483Spsint     kern_nanosleep(struct thread *td, struct timespec *rqt,
140140483Sps	    struct timespec *rmt);
141102779Siedowseint	kern_open(struct thread *td, char *path, enum uio_seg pathseg,
142102779Siedowse	    int flags, int mode);
143177786Skibint	kern_openat(struct thread *td, int fd, char *path,
144177786Skib	    enum uio_seg pathseg, int flags, int mode);
145141484Sjhbint	kern_pathconf(struct thread *td, char *path, enum uio_seg pathseg,
146141484Sjhb	    int name);
147184849Sedint	kern_pipe(struct thread *td, int fildes[2]);
148147813Sjhbint	kern_preadv(struct thread *td, int fd, struct uio *auio, off_t offset);
149102946Siedowseint	kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
150102946Siedowse	    int data);
151147813Sjhbint	kern_pwritev(struct thread *td, int fd, struct uio *auio, off_t offset);
152102779Siedowseint	kern_readlink(struct thread *td, char *path, enum uio_seg pathseg,
153176215Sru	    char *buf, enum uio_seg bufseg, size_t count);
154177786Skibint	kern_readlinkat(struct thread *td, int fd, char *path,
155177786Skib	    enum uio_seg pathseg, char *buf, enum uio_seg bufseg, size_t count);
156144445Sjhbint	kern_readv(struct thread *td, int fd, struct uio *auio);
157160249Sjhbint	kern_recvit(struct thread *td, int s, struct msghdr *mp,
158160249Sjhb	    enum uio_seg fromseg, struct mbuf **controlp);
159102779Siedowseint	kern_rename(struct thread *td, char *from, char *to,
160102779Siedowse	    enum uio_seg pathseg);
161177786Skibint	kern_renameat(struct thread *td, int oldfd, char *old, int newfd,
162177786Skib	    char *new, enum uio_seg pathseg);
163102779Siedowseint	kern_rmdir(struct thread *td, char *path, enum uio_seg pathseg);
164177786Skibint	kern_rmdirat(struct thread *td, int fd, char *path,
165177786Skib	    enum uio_seg pathseg);
166144445Sjhbint	kern_sched_rr_get_interval(struct thread *td, pid_t pid,
167144445Sjhb	    struct timespec *ts);
168159991Sjhbint	kern_semctl(struct thread *td, int semid, int semnum, int cmd,
169160187Sjhb	    union semun *arg, register_t *rval);
170102779Siedowseint	kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
171102779Siedowse	    fd_set *fd_ex, struct timeval *tvp);
172156114Spsint	kern_sendfile(struct thread *td, struct sendfile_args *uap,
173156114Sps	    struct uio *hdr_uio, struct uio *trl_uio, int compat);
174114749Sdwmaloneint	kern_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
175141029Ssobomax	    struct mbuf *control, enum uio_seg segflg);
176160139Sjhbint	kern_setgroups(struct thread *td, u_int ngrp, gid_t *groups);
177140836Ssobomaxint	kern_setitimer(struct thread *, u_int, struct itimerval *,
178140836Ssobomax	    struct itimerval *);
179139739Sjhbint	kern_setrlimit(struct thread *, u_int, struct rlimit *);
180132313Sdwmaloneint	kern_setsockopt(struct thread *td, int s, int level, int name,
181132313Sdwmalone	    void *optval, enum uio_seg valseg, socklen_t valsize);
182144445Sjhbint	kern_settimeofday(struct thread *td, struct timeval *tv,
183144445Sjhb	    struct timezone *tzp);
184114724Smbrint	kern_shmat(struct thread *td, int shmid, const void *shmaddr,
185122088Sfjoe	    int shmflg);
186114724Smbrint	kern_shmctl(struct thread *td, int shmid, int cmd, void *buf,
187122088Sfjoe	    size_t *bufsz);
188102779Siedowseint	kern_sigaction(struct thread *td, int sig, struct sigaction *act,
189105950Speter	    struct sigaction *oact, int flags);
190102779Siedowseint	kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss);
191113685Sjhbint	kern_sigprocmask(struct thread *td, int how,
192113685Sjhb	    sigset_t *set, sigset_t *oset, int old);
193102779Siedowseint	kern_sigsuspend(struct thread *td, sigset_t mask);
194141471Sjhbint	kern_stat(struct thread *td, char *path, enum uio_seg pathseg,
195141471Sjhb	    struct stat *sbp);
196177786Skibint	kern_statat(struct thread *td, int flag, int fd, char *path,
197177786Skib	    enum uio_seg pathseg, struct stat *sbp);
198188849Sedint	kern_statat_vnhook(struct thread *td, int flag, int fd, char *path,
199188849Sed	    enum uio_seg pathseg, struct stat *sbp,
200188849Sed	    void (*hook)(struct vnode *vp, struct stat *sbp));
201141471Sjhbint	kern_statfs(struct thread *td, char *path, enum uio_seg pathseg,
202141471Sjhb	    struct statfs *buf);
203102779Siedowseint	kern_symlink(struct thread *td, char *path, char *link,
204102779Siedowse	    enum uio_seg segflg);
205177786Skibint	kern_symlinkat(struct thread *td, char *path1, int fd, char *path2,
206177786Skib	    enum uio_seg segflg);
207170404Sjhbint	kern_thr_new(struct thread *td, struct thr_param *param);
208170404Sjhbint	kern_thr_suspend(struct thread *td, struct timespec *tsp);
209102779Siedowseint	kern_truncate(struct thread *td, char *path, enum uio_seg pathseg,
210102779Siedowse	    off_t length);
211102779Siedowseint	kern_unlink(struct thread *td, char *path, enum uio_seg pathseg);
212177786Skibint	kern_unlinkat(struct thread *td, int fd, char *path,
213177786Skib	    enum uio_seg pathseg);
214102779Siedowseint	kern_utimes(struct thread *td, char *path, enum uio_seg pathseg,
215102779Siedowse	    struct timeval *tptr, enum uio_seg tptrseg);
216177786Skibint	kern_utimesat(struct thread *td, int fd, char *path,
217177786Skib	    enum uio_seg pathseg, struct timeval *tptr, enum uio_seg tptrseg);
218139739Sjhbint	kern_wait(struct thread *td, pid_t pid, int *status, int options,
219139739Sjhb	    struct rusage *rup);
220144445Sjhbint	kern_writev(struct thread *td, int fd, struct uio *auio);
221102779Siedowse
222105950Speter/* flags for kern_sigaction */
223105950Speter#define	KSA_OSIGSET	0x0001	/* uses osigact_t */
224105950Speter#define	KSA_FREEBSD4	0x0002	/* uses ucontext4 */
225105950Speter
226102779Siedowse#endif /* !_SYS_SYSCALLSUBR_H_ */
227