syscallsubr.h revision 141471
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 141471 2005-02-07 18:44:55Z jhb $
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
37141471Sjhbstruct itimerval;
38141471Sjhbstruct image_args;
39135764Sjhbstruct mbuf;
40135764Sjhbstruct msghdr;
41141471Sjhbstruct msqid_ds;
42139739Sjhbstruct rlimit;
43136152Sjhbstruct rusage;
44110294Sumestruct sockaddr;
45141471Sjhbstruct stat;
46110294Sume
47102870Siedowseint	kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg,
48102870Siedowse	    u_int buflen);
49102779Siedowseint	kern_access(struct thread *td, char *path, enum uio_seg pathseg,
50102779Siedowse	    int flags);
51141471Sjhbint	kern_alternate_path(struct thread *td, const char *prefix, char *path,
52141471Sjhb	    enum uio_seg pathseg, char **pathbuf, int create);
53110294Sumeint	kern_bind(struct thread *td, int fd, struct sockaddr *sa);
54102779Siedowseint	kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
55102779Siedowseint	kern_chmod(struct thread *td, char *path, enum uio_seg pathseg,
56102779Siedowse	    int mode);
57102779Siedowseint	kern_chown(struct thread *td, char *path, enum uio_seg pathseg, int uid,
58102779Siedowse	    int gid);
59110294Sumeint	kern_connect(struct thread *td, int fd, struct sockaddr *sa);
60140992Ssobomaxint	kern_execve(struct thread *td, struct image_args *args,
61139739Sjhb	    struct mac *mac_p);
62102868Siedowseint	kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
63141471Sjhbint	kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
64141471Sjhbint	kern_fstat(struct thread *td, int fd, struct stat *sbp);
65141471Sjhbint	kern_fstatfs(struct thread *td, int fd, struct statfs *buf);
66102779Siedowseint	kern_futimes(struct thread *td, int fd, struct timeval *tptr,
67102779Siedowse	    enum uio_seg tptrseg);
68140836Ssobomaxint	kern_getitimer(struct thread *, u_int, struct itimerval *);
69136152Sjhbint	kern_getrusage(struct thread *td, int who, struct rusage *rup);
70132313Sdwmaloneint	kern_getsockopt(struct thread *td, int s, int level, int name,
71132313Sdwmalone	    void *optval, enum uio_seg valseg, socklen_t *valsize);
72102779Siedowseint	kern_lchown(struct thread *td, char *path, enum uio_seg pathseg,
73102779Siedowse	    int uid, int gid);
74102779Siedowseint	kern_link(struct thread *td, char *path, char *link,
75102779Siedowse	    enum uio_seg segflg);
76141471Sjhbint	kern_lstat(struct thread *td, char *path, enum uio_seg pathseg,
77141471Sjhb	    struct stat *sbp);
78102779Siedowseint	kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg,
79102779Siedowse	    struct timeval *tptr, enum uio_seg tptrseg);
80102779Siedowseint	kern_mkdir(struct thread *td, char *path, enum uio_seg segflg,
81102779Siedowse	    int mode);
82102779Siedowseint	kern_mkfifo(struct thread *td, char *path, enum uio_seg pathseg,
83102779Siedowse	    int mode);
84102779Siedowseint	kern_mknod(struct thread *td, char *path, enum uio_seg pathseg,
85102779Siedowse	    int mode, int dev);
86141471Sjhbint	kern_msgctl(struct thread *, int, int, struct msqid_ds *);
87140483Spsint     kern_nanosleep(struct thread *td, struct timespec *rqt,
88140483Sps	    struct timespec *rmt);
89102779Siedowseint	kern_open(struct thread *td, char *path, enum uio_seg pathseg,
90102779Siedowse	    int flags, int mode);
91102946Siedowseint	kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
92102946Siedowse	    int data);
93102779Siedowseint	kern_readlink(struct thread *td, char *path, enum uio_seg pathseg,
94102779Siedowse	    char *buf, enum uio_seg bufseg, int count);
95102779Siedowseint	kern_rename(struct thread *td, char *from, char *to,
96102779Siedowse	    enum uio_seg pathseg);
97102779Siedowseint	kern_rmdir(struct thread *td, char *path, enum uio_seg pathseg);
98102779Siedowseint	kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
99102779Siedowse	    fd_set *fd_ex, struct timeval *tvp);
100114749Sdwmaloneint	kern_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
101141029Ssobomax	    struct mbuf *control, enum uio_seg segflg);
102140836Ssobomaxint	kern_setitimer(struct thread *, u_int, struct itimerval *,
103140836Ssobomax	    struct itimerval *);
104139739Sjhbint	kern_setrlimit(struct thread *, u_int, struct rlimit *);
105132313Sdwmaloneint	kern_setsockopt(struct thread *td, int s, int level, int name,
106132313Sdwmalone	    void *optval, enum uio_seg valseg, socklen_t valsize);
107114724Smbrint	kern_shmat(struct thread *td, int shmid, const void *shmaddr,
108122088Sfjoe	    int shmflg);
109114724Smbrint	kern_shmctl(struct thread *td, int shmid, int cmd, void *buf,
110122088Sfjoe	    size_t *bufsz);
111102779Siedowseint	kern_sigaction(struct thread *td, int sig, struct sigaction *act,
112105950Speter	    struct sigaction *oact, int flags);
113102779Siedowseint	kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss);
114113685Sjhbint	kern_sigprocmask(struct thread *td, int how,
115113685Sjhb	    sigset_t *set, sigset_t *oset, int old);
116102779Siedowseint	kern_sigsuspend(struct thread *td, sigset_t mask);
117141471Sjhbint	kern_stat(struct thread *td, char *path, enum uio_seg pathseg,
118141471Sjhb	    struct stat *sbp);
119141471Sjhbint	kern_statfs(struct thread *td, char *path, enum uio_seg pathseg,
120141471Sjhb	    struct statfs *buf);
121102779Siedowseint	kern_symlink(struct thread *td, char *path, char *link,
122102779Siedowse	    enum uio_seg segflg);
123102779Siedowseint	kern_truncate(struct thread *td, char *path, enum uio_seg pathseg,
124102779Siedowse	    off_t length);
125102779Siedowseint	kern_unlink(struct thread *td, char *path, enum uio_seg pathseg);
126102779Siedowseint	kern_utimes(struct thread *td, char *path, enum uio_seg pathseg,
127102779Siedowse	    struct timeval *tptr, enum uio_seg tptrseg);
128139739Sjhbint	kern_wait(struct thread *td, pid_t pid, int *status, int options,
129139739Sjhb	    struct rusage *rup);
130102779Siedowse
131105950Speter/* flags for kern_sigaction */
132105950Speter#define	KSA_OSIGSET	0x0001	/* uses osigact_t */
133105950Speter#define	KSA_FREEBSD4	0x0002	/* uses ucontext4 */
134105950Speter
135102779Siedowse#endif /* !_SYS_SYSCALLSUBR_H_ */
136