syscallsubr.h revision 122088
1/*
2 * Copyright (c) 2002 Ian Dowse.  All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 *
25 * $FreeBSD: head/sys/sys/syscallsubr.h 122088 2003-11-05 01:53:10Z fjoe $
26 */
27
28#ifndef _SYS_SYSCALLSUBR_H_
29#define _SYS_SYSCALLSUBR_H_
30
31#include <sys/signal.h>
32#include <sys/uio.h>
33
34struct sockaddr;
35struct msghdr;
36struct mbuf;
37
38int	kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg,
39	    u_int buflen);
40int	kern_access(struct thread *td, char *path, enum uio_seg pathseg,
41	    int flags);
42int	kern_bind(struct thread *td, int fd, struct sockaddr *sa);
43int	kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
44int	kern_chmod(struct thread *td, char *path, enum uio_seg pathseg,
45	    int mode);
46int	kern_chown(struct thread *td, char *path, enum uio_seg pathseg, int uid,
47	    int gid);
48int	kern_connect(struct thread *td, int fd, struct sockaddr *sa);
49int	kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
50int	kern_futimes(struct thread *td, int fd, struct timeval *tptr,
51	    enum uio_seg tptrseg);
52int	kern_lchown(struct thread *td, char *path, enum uio_seg pathseg,
53	    int uid, int gid);
54int	kern_link(struct thread *td, char *path, char *link,
55	    enum uio_seg segflg);
56int	kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg,
57	    struct timeval *tptr, enum uio_seg tptrseg);
58int	kern_mkdir(struct thread *td, char *path, enum uio_seg segflg,
59	    int mode);
60int	kern_mkfifo(struct thread *td, char *path, enum uio_seg pathseg,
61	    int mode);
62int	kern_mknod(struct thread *td, char *path, enum uio_seg pathseg,
63	    int mode, int dev);
64int	kern_open(struct thread *td, char *path, enum uio_seg pathseg,
65	    int flags, int mode);
66int	kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
67	    int data);
68int	kern_readlink(struct thread *td, char *path, enum uio_seg pathseg,
69	    char *buf, enum uio_seg bufseg, int count);
70int	kern_rename(struct thread *td, char *from, char *to,
71	    enum uio_seg pathseg);
72int	kern_rmdir(struct thread *td, char *path, enum uio_seg pathseg);
73int	kern_select(struct thread *td, int nd, fd_set *fd_in, fd_set *fd_ou,
74	    fd_set *fd_ex, struct timeval *tvp);
75int	kern_sendit(struct thread *td, int s, struct msghdr *mp, int flags,
76	    struct mbuf *control);
77int	kern_shmat(struct thread *td, int shmid, const void *shmaddr,
78	    int shmflg);
79int	kern_shmctl(struct thread *td, int shmid, int cmd, void *buf,
80	    size_t *bufsz);
81int	kern_sigaction(struct thread *td, int sig, struct sigaction *act,
82	    struct sigaction *oact, int flags);
83int	kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss);
84int	kern_sigprocmask(struct thread *td, int how,
85	    sigset_t *set, sigset_t *oset, int old);
86int	kern_sigsuspend(struct thread *td, sigset_t mask);
87int	kern_symlink(struct thread *td, char *path, char *link,
88	    enum uio_seg segflg);
89int	kern_truncate(struct thread *td, char *path, enum uio_seg pathseg,
90	    off_t length);
91int	kern_unlink(struct thread *td, char *path, enum uio_seg pathseg);
92int	kern_utimes(struct thread *td, char *path, enum uio_seg pathseg,
93	    struct timeval *tptr, enum uio_seg tptrseg);
94
95/* flags for kern_sigaction */
96#define	KSA_OSIGSET	0x0001	/* uses osigact_t */
97#define	KSA_FREEBSD4	0x0002	/* uses ucontext4 */
98
99#endif /* !_SYS_SYSCALLSUBR_H_ */
100