Merge from vendor branch GROFF:
[dragonfly.git] / sys / sys / kern_syscall.h
1 /*
2  * KERN_SYSCALL.H       - Split syscall prototypes
3  *
4  * Copyright (c) 2003 David P. Reese, Jr. <daver@gomerbud.com>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $DragonFly: src/sys/sys/kern_syscall.h,v 1.28 2005/08/09 20:14:16 joerg Exp $
29  */
30
31 #ifndef _SYS_KERN_SYSCALL_H_
32 #define _SYS_KERN_SYSCALL_H_
33
34 #ifndef _KERNEL
35 #error "This file should not be included by userland programs."
36 #endif
37
38 #include <sys/uio.h>
39
40 enum dup_type {DUP_FIXED, DUP_VARIABLE};
41 union fcntl_dat;
42 struct image_args;
43 struct mbuf;
44 struct msghdr;
45 struct namecache;
46 struct nlookupdata;
47 struct rlimit;
48 struct rusage;
49 struct sigaction;
50 struct sigaltstack;
51 struct __sigset;
52 struct sf_hdtr;
53 struct sockaddr;
54 struct socket;
55 struct sockopt;
56 struct stat;
57 struct statfs;
58 struct timeval;
59 struct uio;
60 struct vnode;
61 struct file;
62
63 /*
64  * Prototypes for syscalls in kern/kern_descrip.c
65  */
66 int kern_dup(enum dup_type type, int old, int new, int *res);
67 int kern_fcntl(int fd, int cmd, union fcntl_dat *dat);
68 int kern_fstat(int fd, struct stat *st);
69
70 /*
71  * Prototypes for syscalls in kern/kern_exec.c
72  */
73 int kern_execve(struct nlookupdata *nd, struct image_args *args);
74
75 /*
76  * Prototypes for syscalls in kern/kern_exit.c
77  */
78 int kern_wait(pid_t pid, int *status, int options, struct rusage *rusage,
79         int *res);
80
81 /*
82  * Prototypes for syscalls in kern/kern_sig.c
83  */
84 int kern_sigaction(int sig, struct sigaction *act, struct sigaction *oact);
85 int kern_sigprocmask(int how, struct __sigset *set, struct __sigset *oset);
86 int kern_sigpending(struct __sigset *set);
87 int kern_sigsuspend(struct __sigset *mask);
88 int kern_sigaltstack(struct sigaltstack *ss, struct sigaltstack *oss);
89 int kern_kill(int sig, int id);
90
91 /*
92  * Prototypes for syscalls in kern/sys_generic.c
93  */
94 int kern_readv(int fd, struct uio *auio, int flags, int *res);
95 int kern_writev(int fd, struct uio *auio, int flags, int *res);
96
97 /*
98  * Prototypes for syscalls in kern/kern_resource.c
99  */
100 int kern_setrlimit(u_int which, struct rlimit *limp);
101 int kern_getrlimit(u_int which, struct rlimit *limp);
102
103 /*
104  * Prototypes for syscalls in kern/uipc_syscalls.c
105  */
106 int kern_accept(int s, struct sockaddr **name, int *namelen, int *res);
107 int kern_bind(int s, struct sockaddr *sa);
108 int kern_connect(int s, struct sockaddr *sa);
109 int kern_listen(int s, int backlog);
110 int kern_getpeername(int s, struct sockaddr **name, int *namelen);
111 int kern_getsockopt(int s, struct sockopt *sopt);
112 int kern_getsockname(int s, struct sockaddr **name, int *namelen);
113 int kern_recvmsg(int s, struct sockaddr **sa, struct uio *auio,
114         struct mbuf **control, int *flags, int *res);
115 int kern_shutdown(int s, int how);
116 int kern_sendfile(struct vnode *vp, int s, off_t offset, size_t nbytes,
117         struct mbuf *mheader, off_t *sbytes, int flags);
118 int kern_sendmsg(int s, struct sockaddr *sa, struct uio *auio,
119         struct mbuf *control, int flags, int *res);
120 int kern_setsockopt(int s, struct sockopt *sopt);
121 int kern_socket(int domain, int type, int protocol, int *res);
122 int kern_socketpair(int domain, int type, int protocol, int *sockv);
123
124 /*
125  * Prototypes for syscalls in kern/vfs_syscalls.c
126  */
127 int kern_access(struct nlookupdata *nd, int aflags);
128 int kern_chdir(struct nlookupdata *nd);
129 int kern_chmod(struct nlookupdata *nd, int mode);
130 int kern_chown(struct nlookupdata *nd, int uid, int gid);
131 int kern_chroot(struct namecache *ncp);
132 int kern_fstatfs(int fd, struct statfs *buf);
133 int kern_ftruncate(int fd, off_t length);
134 int kern_futimes(int fd, struct timeval *tptr);
135 int kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res,
136                        enum uio_seg);
137 int kern_link(struct nlookupdata *nd, struct nlookupdata *linknd);
138 int kern_lseek(int fd, off_t offset, int whence, off_t *res);
139 int kern_mountctl(const char *path, int op, struct file *fp,
140                 const void *ctl, int ctllen,
141                 void *buf, int buflen, int *res);
142 int kern_mkdir(struct nlookupdata *nd, int mode);
143 int kern_mkfifo(struct nlookupdata *nd, int mode);
144 int kern_mknod(struct nlookupdata *nd, int mode, int dev);
145 int kern_open(struct nlookupdata *nd, int flags, int mode, int *res);
146 int kern_close(int fd);
147 int kern_closefrom(int fd);
148 int kern_readlink(struct nlookupdata *nd, char *buf, int count, int *res);
149 int kern_rename(struct nlookupdata *fromnd, struct nlookupdata *tond);
150 int kern_rmdir(struct nlookupdata *nd);
151 int kern_stat(struct nlookupdata *nd, struct stat *st);
152 int kern_statfs(struct nlookupdata *nd, struct statfs *buf);
153 int kern_symlink(struct nlookupdata *nd, char *path, int mode);
154 int kern_truncate(struct nlookupdata *nd, off_t length);
155 int kern_unlink(struct nlookupdata *nd);
156 int kern_utimes(struct nlookupdata *nd, struct timeval *tptr);
157
158 /*
159  * Prototypes for syscalls in kern/vfs_cache.c
160  */
161 char *kern_getcwd(char *, size_t, int *);
162
163 /*
164  * Prototypes for syscalls in vm/vm_mmap.c
165  */
166 int kern_mmap(caddr_t addr, size_t len, int prot, int flags, int fd,
167         off_t pos, void **res);
168
169 #endif /* !_SYS_KERN_SYSCALL_H_ */