kernel: some boottime sanitychecks
[minix.git] / include / sys / file.h
blob96a0cfac4b6441ff4d01e8a619ec0297c5540b46
1 /* $NetBSD: file.h,v 1.71 2009/12/24 19:01:12 elad Exp $ */
3 /*-
4 * Copyright (c) 2009 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Andrew Doran.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * Copyright (c) 1982, 1986, 1989, 1993
34 * The Regents of the University of California. All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
60 * @(#)file.h 8.3 (Berkeley) 1/9/95
63 #ifndef _SYS_FILE_H_
64 #define _SYS_FILE_H_
66 #include <sys/fcntl.h>
67 #include <sys/unistd.h>
69 #ifdef _KERNEL
70 #include <sys/mallocvar.h>
71 #include <sys/queue.h>
72 #include <sys/mutex.h>
73 #include <sys/condvar.h>
75 struct proc;
76 struct lwp;
77 struct uio;
78 struct iovec;
79 struct stat;
80 struct knote;
83 * Kernel file descriptor. One entry for each open kernel vnode and
84 * socket.
86 * This structure is exported via the KERN_FILE and KERN_FILE2 sysctl
87 * calls. Only add members to the end, do not delete them.
89 struct file {
90 off_t f_offset; /* first, is 64-bit */
91 kauth_cred_t f_cred; /* creds associated with descriptor */
92 const struct fileops {
93 int (*fo_read) (struct file *, off_t *, struct uio *,
94 kauth_cred_t, int);
95 int (*fo_write) (struct file *, off_t *, struct uio *,
96 kauth_cred_t, int);
97 int (*fo_ioctl) (struct file *, u_long, void *);
98 int (*fo_fcntl) (struct file *, u_int, void *);
99 int (*fo_poll) (struct file *, int);
100 int (*fo_stat) (struct file *, struct stat *);
101 int (*fo_close) (struct file *);
102 int (*fo_kqfilter) (struct file *, struct knote *);
103 void (*fo_restart) (struct file *);
104 void (*fo_spare1) (void);
105 void (*fo_spare2) (void);
106 } *f_ops;
107 void *f_data; /* descriptor data, e.g. vnode/socket */
108 LIST_ENTRY(file) f_list; /* list of active files */
109 kmutex_t f_lock; /* lock on structure */
110 int f_flag; /* see fcntl.h */
111 u_int f_marker; /* traversal marker (sysctl) */
112 #define DTYPE_VNODE 1 /* file */
113 #define DTYPE_SOCKET 2 /* communications endpoint */
114 #define DTYPE_PIPE 3 /* pipe */
115 #define DTYPE_KQUEUE 4 /* event queue */
116 #define DTYPE_MISC 5 /* misc file descriptor type */
117 #define DTYPE_CRYPTO 6 /* crypto */
118 #define DTYPE_MQUEUE 7 /* message queue */
119 #define DTYPE_NAMES \
120 "0", "file", "socket", "pipe", "kqueue", "misc", "crypto", "mqueue"
121 u_int f_type; /* descriptor type */
122 u_int f_advice; /* access pattern hint; UVM_ADV_* */
123 u_int f_count; /* reference count */
124 u_int f_msgcount; /* references from message queue */
125 u_int f_unpcount; /* deferred close: see uipc_usrreq.c */
126 SLIST_ENTRY(file) f_unplist; /* deferred close: see uipc_usrreq.c */
130 * Flags for fo_read and fo_write and do_fileread/write/v
132 #define FOF_UPDATE_OFFSET 0x0001 /* update the file offset */
133 #define FOF_IOV_SYSSPACE 0x0100 /* iov structure in kernel memory */
135 LIST_HEAD(filelist, file);
136 extern struct filelist filehead; /* head of list of open files */
137 extern u_int maxfiles; /* kernel limit on # of open files */
138 extern u_int nfiles; /* actual number of open files */
140 extern const struct fileops vnops; /* vnode operations for files */
142 int dofileread(int, struct file *, void *, size_t,
143 off_t *, int, register_t *);
144 int dofilewrite(int, struct file *, const void *,
145 size_t, off_t *, int, register_t *);
147 int do_filereadv(int, const struct iovec *, int, off_t *,
148 int, register_t *);
149 int do_filewritev(int, const struct iovec *, int, off_t *,
150 int, register_t *);
152 int fsetown(pid_t *, u_long, const void *);
153 int fgetown(pid_t, u_long, void *);
154 void fownsignal(pid_t, int, int, int, void *);
156 /* Commonly used fileops */
157 int fnullop_fcntl(struct file *, u_int, void *);
158 int fnullop_poll(struct file *, int);
159 int fnullop_kqfilter(struct file *, struct knote *);
160 int fbadop_read(struct file *, off_t *, struct uio *, kauth_cred_t, int);
161 int fbadop_write(struct file *, off_t *, struct uio *, kauth_cred_t, int);
162 int fbadop_ioctl(struct file *, u_long, void *);
163 int fbadop_close(struct file *);
164 int fbadop_stat(struct file *, struct stat *);
165 void fnullop_restart(struct file *);
167 #endif /* _KERNEL */
169 #endif /* _SYS_FILE_H_ */