| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | /* |
| 2 | * Copyright (c) 1989, 1993 | |
| 3 | * The Regents of the University of California. All rights reserved. | |
| 4 | * | |
| 5 | * Redistribution and use in source and binary forms, with or without | |
| 6 | * modification, are permitted provided that the following conditions | |
| 7 | * are met: | |
| 8 | * 1. Redistributions of source code must retain the above copyright | |
| 9 | * notice, this list of conditions and the following disclaimer. | |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 11 | * notice, this list of conditions and the following disclaimer in the | |
| 12 | * documentation and/or other materials provided with the distribution. | |
| 13 | * 3. All advertising materials mentioning features or use of this software | |
| 14 | * must display the following acknowledgement: | |
| 15 | * This product includes software developed by the University of | |
| 16 | * California, Berkeley and its contributors. | |
| 17 | * 4. Neither the name of the University nor the names of its contributors | |
| 18 | * may be used to endorse or promote products derived from this software | |
| 19 | * without specific prior written permission. | |
| 20 | * | |
| 21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 31 | * SUCH DAMAGE. | |
| 32 | * | |
| 33 | * @(#)vnode.h 8.7 (Berkeley) 2/4/94 | |
| 34 | * $FreeBSD: src/sys/sys/vnode.h,v 1.111.2.19 2002/12/29 18:19:53 dillon Exp $ | |
| 67863d04 | 35 | * $DragonFly: src/sys/sys/vnode.h,v 1.83 2008/09/17 21:44:19 dillon Exp $ |
| 984263bc MD |
36 | */ |
| 37 | ||
| 38 | #ifndef _SYS_VNODE_H_ | |
| 39 | #define _SYS_VNODE_H_ | |
| 40 | ||
| 03d6a592 MD |
41 | #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES) |
| 42 | ||
| 43 | #ifndef _SYS_QUEUE_H_ | |
| 984263bc | 44 | #include <sys/queue.h> |
| 03d6a592 MD |
45 | #endif |
| 46 | #ifndef _SYS_LOCK_H_ | |
| 984263bc | 47 | #include <sys/lock.h> |
| 03d6a592 | 48 | #endif |
| 9183fa5b MD |
49 | #ifndef _SYS_SELINFO_H_ |
| 50 | #include <sys/selinfo.h> | |
| 03d6a592 MD |
51 | #endif |
| 52 | #ifndef _SYS_BIOTRACK_H_ | |
| 81b5c339 | 53 | #include <sys/biotrack.h> |
| 03d6a592 MD |
54 | #endif |
| 55 | #ifndef _SYS_UIO_H_ | |
| 984263bc | 56 | #include <sys/uio.h> |
| 03d6a592 MD |
57 | #endif |
| 58 | #ifndef _SYS_ACL_H_ | |
| 984263bc | 59 | #include <sys/acl.h> |
| 03d6a592 MD |
60 | #endif |
| 61 | #ifndef _SYS_NAMECACHE_H_ | |
| 7ea21ed1 | 62 | #include <sys/namecache.h> |
| 03d6a592 MD |
63 | #endif |
| 64 | #ifndef _SYS_THREAD_H_ | |
| 77a8676e HP |
65 | #include <sys/thread.h> |
| 66 | #endif | |
| 03d6a592 | 67 | #ifndef _SYS_VFSOPS_H_ |
| 0961aa92 | 68 | #include <sys/vfsops.h> |
| 03d6a592 MD |
69 | #endif |
| 70 | #ifndef _SYS_VFSCACHE_H_ | |
| 0961aa92 | 71 | #include <sys/vfscache.h> |
| 03d6a592 MD |
72 | #endif |
| 73 | #ifndef _SYS_TREE_H_ | |
| 6bae6177 | 74 | #include <sys/tree.h> |
| 03d6a592 | 75 | #endif |
| a3d02589 MD |
76 | #ifndef _SYS_SYSLINK_RPC_H_ |
| 77 | #include <sys/syslink_rpc.h> | |
| 31bd717a | 78 | #endif |
| 3c37c940 MD |
79 | #ifndef _SYS_SYSREF_H_ |
| 80 | #include <sys/sysref.h> | |
| 81 | #endif | |
| 9bfc4d6d MD |
82 | #ifndef _SYS_CCMS_H_ |
| 83 | #include <sys/ccms.h> | |
| 84 | #endif | |
| 03d6a592 | 85 | #ifndef _MACHINE_LOCK_H_ |
| 984263bc | 86 | #include <machine/lock.h> |
| 03d6a592 | 87 | #endif |
| 984263bc MD |
88 | |
| 89 | /* | |
| 90 | * The vnode is the focus of all file activity in UNIX. There is a | |
| 91 | * unique vnode allocated for each active file, each current directory, | |
| 92 | * each mounted-on file, text file, and the root. | |
| 93 | */ | |
| 94 | ||
| 95 | /* | |
| 984263bc MD |
96 | * Each underlying filesystem allocates its own private area and hangs |
| 97 | * it from v_data. If non-null, this area is freed in getnewvnode(). | |
| 98 | */ | |
| 99 | TAILQ_HEAD(buflists, buf); | |
| 100 | ||
| 6ddb7618 MD |
101 | /* |
| 102 | * Range locks protect offset ranges in files and directories at a high | |
| 103 | * level, allowing the actual I/O to be broken down into smaller pieces. | |
| 104 | * Range locks will eventually be integrated into the clustered cache | |
| 105 | * coherency infrastructure. | |
| 106 | * | |
| 107 | * We use a simple data structure for now, but eventually this should | |
| 108 | * probably be a btree or red-black tree. | |
| 109 | */ | |
| 110 | struct vrangelock; | |
| 111 | ||
| 112 | TAILQ_HEAD(vrangelock_list, vrangelock); | |
| 113 | ||
| 114 | struct vrangehead { | |
| 115 | struct vrangelock_list vh_list; | |
| 116 | }; | |
| 117 | ||
| 118 | struct vrangelock { | |
| 119 | TAILQ_ENTRY(vrangelock) vr_node; | |
| 120 | int vr_flags; | |
| 121 | off_t vr_offset; | |
| 122 | off_t vr_length; | |
| 123 | }; | |
| 124 | ||
| 125 | #define RNGL_WAITING 0x0001 /* waiting for lock, else has lock */ | |
| 126 | #define RNGL_CHECK 0x0002 /* check for work on unlock */ | |
| 127 | #define RNGL_SHARED 0x0004 /* shared lock, else exclusive */ | |
| 128 | #define RNGL_ONLIST 0x0008 /* sanity check */ | |
| 129 | ||
| 130 | static __inline | |
| 131 | void | |
| 132 | vrange_init(struct vrangelock *vr, int flags, off_t offset, off_t length) | |
| 133 | { | |
| 134 | vr->vr_flags = flags; | |
| 135 | vr->vr_offset = offset; | |
| 136 | vr->vr_length = length; | |
| 137 | } | |
| 138 | ||
| 139 | #ifdef _KERNEL | |
| 140 | ||
| 141 | void vrange_lock(struct vnode *vp, struct vrangelock *vr); | |
| 142 | void vrange_unlock(struct vnode *vp, struct vrangelock *vr); | |
| 143 | ||
| 144 | static __inline | |
| 145 | void | |
| 146 | vrange_lock_shared(struct vnode *vp, struct vrangelock *vr, | |
| 147 | off_t offset, off_t length) | |
| 148 | { | |
| 149 | vrange_init(vr, RNGL_SHARED, offset, length); | |
| 150 | vrange_lock(vp, vr); | |
| 151 | } | |
| 152 | ||
| 153 | static __inline | |
| 154 | void | |
| 155 | vrange_lock_excl(struct vnode *vp, struct vrangelock *vr, | |
| 156 | off_t offset, off_t length) | |
| 157 | { | |
| 158 | vrange_init(vr, 0, offset, length); | |
| 159 | vrange_lock(vp, vr); | |
| 160 | } | |
| 161 | ||
| 162 | #endif | |
| 0961aa92 | 163 | |
| 984263bc | 164 | /* |
| 6ddb7618 MD |
165 | * The vnode infrastructure is being reorgranized. Most reference-related |
| 166 | * fields are locked by the BGL, and most file I/O related operations and | |
| 167 | * vnode teardown functions are locked by the vnode lock. | |
| 168 | * | |
| 169 | * File read operations require a shared lock, file write operations require | |
| 170 | * an exclusive lock. Most directory operations (read or write) currently | |
| 171 | * require an exclusive lock due to the side effects stored in the directory | |
| 172 | * inode (which we intend to fix). | |
| 173 | * | |
| 174 | * File reads and writes are further protected by a range lock. The intention | |
| 175 | * is to be able to break I/O operations down into more easily managed pieces | |
| 176 | * so vm_page arrays can be passed through rather then UIOs. This work will | |
| 177 | * occur in multiple stages. The range locks will also eventually be used to | |
| 178 | * deal with clustered cache coherency issues and, more immediately, to | |
| 179 | * protect operations associated with the kernel-managed journaling module. | |
| e4c9c0c8 | 180 | * |
| 6ddb7618 MD |
181 | * NOTE: The vnode operations vector, v_ops, is a double-indirect that |
| 182 | * typically points to &v_mount->mnt_vn_use_ops. We use a double | |
| 183 | * pointer because mnt_vn_use_ops may change dynamically when e.g. | |
| 184 | * journaling is turned on or off. | |
| 57f7b636 MD |
185 | * |
| 186 | * NOTE: v_filesize is currently only applicable when a VM object is | |
| 187 | * associated with the vnode. Otherwise it will be set to NOOFFSET. | |
| 984263bc | 188 | */ |
| 6bae6177 | 189 | RB_HEAD(buf_rb_tree, buf); |
| 1f1ea522 | 190 | RB_HEAD(buf_rb_hash, buf); |
| 6bae6177 | 191 | |
| 984263bc | 192 | struct vnode { |
| 6b008938 | 193 | int v_flag; /* vnode flags (see below) */ |
| 81b5c339 | 194 | int v_writecount; |
| e4c9c0c8 | 195 | int v_opencount; /* number of explicit opens */ |
| 3c37c940 MD |
196 | int v_auxrefs; /* auxiliary references */ |
| 197 | struct sysref v_sysref; /* normal references */ | |
| 81b5c339 MD |
198 | struct bio_track v_track_read; /* track I/O's in progress */ |
| 199 | struct bio_track v_track_write; /* track I/O's in progress */ | |
| 66a1ddf5 MD |
200 | struct mount *v_mount; /* ptr to vfs we are in */ |
| 201 | struct vop_ops **v_ops; /* vnode operations vector */ | |
| 984263bc MD |
202 | TAILQ_ENTRY(vnode) v_freelist; /* vnode freelist */ |
| 203 | TAILQ_ENTRY(vnode) v_nmntvnodes; /* vnodes for mount point */ | |
| 6bae6177 | 204 | struct buf_rb_tree v_rbclean_tree; /* RB tree of clean bufs */ |
| 54df1108 | 205 | struct buf_rb_tree v_rbdirty_tree; /* RB tree of dirty bufs */ |
| 1f1ea522 | 206 | struct buf_rb_hash v_rbhash_tree; /* RB tree general lookup */ |
| 984263bc | 207 | LIST_ENTRY(vnode) v_synclist; /* vnodes with dirty buffers */ |
| 984263bc MD |
208 | enum vtype v_type; /* vnode type */ |
| 209 | union { | |
| 984263bc MD |
210 | struct socket *vu_socket; /* unix ipc (VSOCK) */ |
| 211 | struct { | |
| 0e9b9130 MD |
212 | int vu_umajor; /* device number for attach */ |
| 213 | int vu_uminor; | |
| 0de08e6d MD |
214 | struct cdev *vu_cdevinfo; /* device (VCHR, VBLK) */ |
| 215 | SLIST_ENTRY(vnode) vu_cdevnext; | |
| 216 | } vu_cdev; | |
| 984263bc MD |
217 | struct fifoinfo *vu_fifoinfo; /* fifo (VFIFO) */ |
| 218 | } v_un; | |
| 57f7b636 | 219 | off_t v_filesize; /* file EOF or NOOFFSET */ |
| 54078292 MD |
220 | off_t v_lazyw; /* lazy write iterator */ |
| 221 | off_t v_lastw; /* last write (write cluster) */ | |
| 222 | off_t v_cstart; /* start block of cluster */ | |
| 223 | off_t v_lasta; /* last allocation */ | |
| 984263bc MD |
224 | int v_clen; /* length of current cluster */ |
| 225 | struct vm_object *v_object; /* Place to store VM object */ | |
| 3446c007 | 226 | struct lock v_lock; /* file/dir ops lock */ |
| 984263bc | 227 | enum vtagtype v_tag; /* type of underlying data */ |
| 597aea93 | 228 | void *v_data; /* private data for fs */ |
| 7ea21ed1 | 229 | struct namecache_list v_namecache; /* associated nc entries */ |
| 984263bc | 230 | struct { |
| 8a8d5d85 | 231 | struct lwkt_token vpi_token; /* lock to protect below */ |
| 984263bc MD |
232 | struct selinfo vpi_selinfo; /* identity of poller(s) */ |
| 233 | short vpi_events; /* what they are looking for */ | |
| 234 | short vpi_revents; /* what has happened */ | |
| 235 | } v_pollinfo; | |
| 29802dbb | 236 | struct vmresident *v_resident; /* optional vmresident */ |
| 6ddb7618 | 237 | struct vrangehead v_range; /* range lock */ |
| 9bfc4d6d | 238 | struct ccms_dataspace v_ccms; /* cache coherency */ |
| 984263bc MD |
239 | #ifdef DEBUG_LOCKS |
| 240 | const char *filename; /* Source file doing locking */ | |
| 241 | int line; /* Line number doing locking */ | |
| 242 | #endif | |
| 5fd012e0 | 243 | void *v_xaddr; |
| 984263bc | 244 | }; |
| 984263bc | 245 | #define v_socket v_un.vu_socket |
| 0e9b9130 MD |
246 | #define v_umajor v_un.vu_cdev.vu_umajor |
| 247 | #define v_uminor v_un.vu_cdev.vu_uminor | |
| 0de08e6d MD |
248 | #define v_rdev v_un.vu_cdev.vu_cdevinfo |
| 249 | #define v_cdevnext v_un.vu_cdev.vu_cdevnext | |
| 984263bc | 250 | #define v_fifoinfo v_un.vu_fifoinfo |
| 9d265729 | 251 | #define v_spinlock v_lock.lk_spinlock |
| 984263bc MD |
252 | |
| 253 | #define VN_POLLEVENT(vp, events) \ | |
| 254 | do { \ | |
| 255 | if ((vp)->v_pollinfo.vpi_events & (events)) \ | |
| 256 | vn_pollevent((vp), (events)); \ | |
| 257 | } while (0) | |
| 258 | ||
| 259 | /* | |
| 260 | * Vnode flags. | |
| 261 | */ | |
| 262 | #define VROOT 0x00001 /* root of its file system */ | |
| 263 | #define VTEXT 0x00002 /* vnode is a pure text prototype */ | |
| 264 | #define VSYSTEM 0x00004 /* vnode being used by kernel */ | |
| 265 | #define VISTTY 0x00008 /* vnode represents a tty */ | |
| 5fd012e0 | 266 | #define VCTTYISOPEN 0x00010 /* controlling terminal tty is open */ |
| 12693083 | 267 | #define VCKPT 0x00020 /* checkpoint-restored vnode */ |
| 6b008938 | 268 | #define VFSMID 0x00040 /* request FSMID update */ |
| 7749886d | 269 | #define VMAYHAVELOCKS 0x00080 /* there may be posix or flock locks on vp */ |
| 67863d04 | 270 | #define VPFSROOT 0x00100 /* may be a pseudo filesystem root */ |
| 5fd012e0 | 271 | /* open for business 0x00200 */ |
| 81b5c339 | 272 | /* open for business 0x00400 */ |
| 984263bc | 273 | /* open for business 0x00800 */ |
| 3c37c940 | 274 | #define VCACHED 0x01000 /* No active references but has cache value */ |
| 984263bc | 275 | #define VOBJBUF 0x02000 /* Allocate buffers in VM object */ |
| 3c37c940 | 276 | #define VINACTIVE 0x04000 /* The vnode is inactive (did VOP_INACTIVE) */ |
| 984263bc MD |
277 | #define VAGE 0x08000 /* Insert vnode at head of free list */ |
| 278 | #define VOLOCK 0x10000 /* vnode is locked waiting for an object */ | |
| 279 | #define VOWANT 0x20000 /* a process is waiting for VOLOCK */ | |
| 5fd012e0 | 280 | #define VRECLAIMED 0x40000 /* This vnode has been destroyed */ |
| 984263bc | 281 | #define VFREE 0x80000 /* This vnode is on the freelist */ |
| 5fd012e0 | 282 | /* open for business 0x100000 */ |
| 984263bc | 283 | #define VONWORKLST 0x200000 /* On syncer work-list */ |
| 1d505369 | 284 | #define VMOUNT 0x400000 /* Mount in progress */ |
| 597aea93 | 285 | #define VOBJDIRTY 0x800000 /* object might be dirty */ |
| 984263bc MD |
286 | |
| 287 | /* | |
| 5fd012e0 MD |
288 | * vmntvnodescan() flags |
| 289 | */ | |
| 19b97e01 MD |
290 | #define VMSC_GETVP 0x01 |
| 291 | #define VMSC_GETVX 0x02 | |
| 5fd012e0 | 292 | #define VMSC_NOWAIT 0x10 |
| 19b97e01 | 293 | #define VMSC_ONEPASS 0x20 |
| 5fd012e0 MD |
294 | |
| 295 | /* | |
| 984263bc MD |
296 | * Flags for ioflag. (high 16 bits used to ask for read-ahead and |
| 297 | * help with write clustering) | |
| 298 | */ | |
| 908b5ff6 MD |
299 | #define IO_UNIT 0x0001 /* do I/O as atomic unit */ |
| 300 | #define IO_APPEND 0x0002 /* append write to end */ | |
| 301 | #define IO_SYNC 0x0004 /* do I/O synchronously */ | |
| 302 | #define IO_NODELOCKED 0x0008 /* underlying node already locked */ | |
| 303 | #define IO_NDELAY 0x0010 /* FNDELAY flag set in file table */ | |
| 304 | #define IO_VMIO 0x0020 /* data already in VMIO space */ | |
| 305 | #define IO_INVAL 0x0040 /* invalidate after I/O */ | |
| 306 | #define IO_ASYNC 0x0080 /* bawrite rather then bdwrite */ | |
| 597aea93 | 307 | #define IO_DIRECT 0x0100 /* attempt to bypass buffer cache */ |
| cb63d1bc | 308 | #define IO_RECURSE 0x0200 /* possibly device-recursive (vn) */ |
| 597aea93 | 309 | #define IO_CORE 0x0400 /* I/O is part of core dump */ |
| 984263bc | 310 | |
| 597aea93 DR |
311 | #define IO_SEQMAX 0x7F /* seq heuristic max value */ |
| 312 | #define IO_SEQSHIFT 16 /* seq heuristic in upper 16 bits */ | |
| 984263bc MD |
313 | |
| 314 | /* | |
| 21739618 MD |
315 | * Modes. Note that these V-modes must match file S_I*USR, SUID, SGID, |
| 316 | * and SVTX flag bits. | |
| 984263bc MD |
317 | */ |
| 318 | #define VSUID 04000 /* set user id on execution */ | |
| 319 | #define VSGID 02000 /* set group id on execution */ | |
| 320 | #define VSVTX 01000 /* save swapped text even after use */ | |
| 321 | #define VREAD 00400 /* read, write, execute permissions */ | |
| 322 | #define VWRITE 00200 | |
| 323 | #define VEXEC 00100 | |
| 324 | ||
| 325 | /* | |
| 326 | * Token indicating no attribute value yet assigned. | |
| 327 | */ | |
| 328 | #define VNOVAL (-1) | |
| 329 | ||
| 330 | /* | |
| 331 | * LK_TIMELOCK timeout for vnode locks (used mainly by the pageout daemon) | |
| 332 | */ | |
| 597aea93 | 333 | #define VLKTIMEOUT (hz / 20 + 1) |
| 984263bc MD |
334 | |
| 335 | #ifdef _KERNEL | |
| 336 | ||
| 984263bc MD |
337 | /* |
| 338 | * Convert between vnode types and inode formats (since POSIX.1 | |
| 339 | * defines mode word of stat structure in terms of inode formats). | |
| 340 | */ | |
| 597aea93 DR |
341 | extern enum vtype iftovt_tab[]; |
| 342 | extern int vttoif_tab[]; | |
| 343 | #define IFTOVT(mode) (iftovt_tab[((mode) & S_IFMT) >> 12]) | |
| 344 | #define VTTOIF(indx) (vttoif_tab[(int)(indx)]) | |
| 345 | #define MAKEIMODE(indx, mode) (int)(VTTOIF(indx) | (mode)) | |
| 984263bc MD |
346 | |
| 347 | /* | |
| 348 | * Flags to various vnode functions. | |
| 349 | */ | |
| 350 | #define SKIPSYSTEM 0x0001 /* vflush: skip vnodes marked VSYSTEM */ | |
| 351 | #define FORCECLOSE 0x0002 /* vflush: force file closure */ | |
| 352 | #define WRITECLOSE 0x0004 /* vflush: only close writable files */ | |
| 353 | #define DOCLOSE 0x0008 /* vclean: close active files */ | |
| 354 | #define V_SAVE 0x0001 /* vinvalbuf: sync file first */ | |
| 984263bc | 355 | |
| 984263bc MD |
356 | #ifdef DIAGNOSTIC |
| 357 | #define VATTR_NULL(vap) vattr_null(vap) | |
| 358 | #else | |
| 359 | #define VATTR_NULL(vap) (*(vap) = va_null) /* initialize a vattr */ | |
| 360 | #endif /* DIAGNOSTIC */ | |
| 361 | ||
| 362 | #define NULLVP ((struct vnode *)NULL) | |
| 363 | ||
| 364 | #define VNODEOP_SET(f) \ | |
| 66a1ddf5 MD |
365 | SYSINIT(f##init, SI_SUB_VFS, SI_ORDER_SECOND, vfs_nadd_vnodeops_sysinit, &f); \ |
| 366 | SYSUNINIT(f##uninit, SI_SUB_VFS, SI_ORDER_SECOND,vfs_nrm_vnodeops_sysinit, &f); | |
| 984263bc MD |
367 | |
| 368 | /* | |
| 369 | * Global vnode data. | |
| 370 | */ | |
| 70aac194 MD |
371 | struct objcache; |
| 372 | ||
| 984263bc | 373 | extern struct vnode *rootvnode; /* root (i.e. "/") vnode */ |
| 28623bf9 | 374 | extern struct nchandle rootnch; /* root (i.e. "/") namecache */ |
| 984263bc MD |
375 | extern int desiredvnodes; /* number of vnodes desired */ |
| 376 | extern time_t syncdelay; /* max time to delay syncing data */ | |
| 377 | extern time_t filedelay; /* time to delay syncing files */ | |
| 378 | extern time_t dirdelay; /* time to delay syncing directories */ | |
| 379 | extern time_t metadelay; /* time to delay syncing metadata */ | |
| 70aac194 | 380 | extern struct objcache *namei_oc; |
| 984263bc MD |
381 | extern int prtactive; /* nonzero to call vprint() */ |
| 382 | extern struct vattr va_null; /* predefined null vattr structure */ | |
| 383 | extern int vfs_ioopt; | |
| 5fd012e0 MD |
384 | extern int numvnodes; |
| 385 | extern int freevnodes; | |
| fad57d0e | 386 | extern int vfs_fastdev; /* fast specfs device access */ |
| 984263bc | 387 | |
| 984263bc MD |
388 | /* |
| 389 | * Interlock for scanning list of vnodes attached to a mountpoint | |
| 390 | */ | |
| 8a8d5d85 | 391 | extern struct lwkt_token mntvnode_token; |
| 984263bc MD |
392 | |
| 393 | /* | |
| 394 | * This macro is very helpful in defining those offsets in the vdesc struct. | |
| 395 | * | |
| 396 | * This is stolen from X11R4. I ignored all the fancy stuff for | |
| 397 | * Crays, so if you decide to port this to such a serious machine, | |
| 398 | * you might want to consult Intrinsic.h's XtOffset{,Of,To}. | |
| 399 | */ | |
| 597aea93 | 400 | #define VOPARG_OFFSET(p_type,field) \ |
| 984263bc | 401 | ((int) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL))) |
| 597aea93 | 402 | #define VOPARG_OFFSETOF(s_type,field) \ |
| 984263bc | 403 | VOPARG_OFFSET(s_type*,field) |
| 597aea93 | 404 | #define VOPARG_OFFSETTO(S_TYPE,S_OFFSET,STRUCT_P) \ |
| 984263bc MD |
405 | ((S_TYPE)(((char*)(STRUCT_P))+(S_OFFSET))) |
| 406 | ||
| 625ddaba | 407 | typedef int (*vnodeopv_entry_t)(struct vop_generic_args *); |
| 984263bc | 408 | |
| 984263bc MD |
409 | /* |
| 410 | * VOCALL calls an op given an ops vector. We break it out because BSD's | |
| 411 | * vclean changes the ops vector and then wants to call ops with the old | |
| 412 | * vector. | |
| 413 | */ | |
| 2d3e977e MD |
414 | |
| 415 | typedef int (*vocall_func_t)(struct vop_generic_args *); | |
| 416 | ||
| 984263bc | 417 | /* |
| 0961aa92 MD |
418 | * This call executes the vops vector for the offset stored in the ap's |
| 419 | * descriptor of the passed vops rather then the one related to the | |
| 420 | * ap's vop_ops structure. It is used to chain VOPS calls on behalf of | |
| 421 | * filesystems from a VFS's context ONLY (that is, from a VFS's own vops | |
| 422 | * vector function). | |
| 984263bc | 423 | */ |
| 0961aa92 | 424 | #define VOCALL(vops, ap) \ |
| 31bd717a | 425 | (*(vocall_func_t *)((char *)(vops)+((ap)->a_desc->sd_offset)))(ap) |
| 0961aa92 | 426 | |
| 597aea93 | 427 | #define VDESC(OP) (& __CONCAT(OP,_desc)) |
| 984263bc MD |
428 | |
| 429 | /* | |
| 984263bc MD |
430 | * Public vnode manipulation functions. |
| 431 | */ | |
| 984263bc MD |
432 | struct file; |
| 433 | struct mount; | |
| fad57d0e | 434 | struct nlookupdata; |
| 984263bc | 435 | struct proc; |
| dadab5e9 | 436 | struct thread; |
| 984263bc | 437 | struct stat; |
| 984263bc MD |
438 | struct ucred; |
| 439 | struct uio; | |
| 440 | struct vattr; | |
| 441 | struct vnode; | |
| 984263bc | 442 | |
| a8873631 | 443 | struct vnode *getsynthvnode(const char *devname); |
| 0e9b9130 | 444 | void addaliasu (struct vnode *vp, int x, int y); |
| b13267a5 | 445 | int v_associate_rdev(struct vnode *vp, cdev_t dev); |
| e4c9c0c8 | 446 | void v_release_rdev(struct vnode *vp); |
| b13267a5 | 447 | int bdevvp (cdev_t dev, struct vnode **vpp); |
| 5fd012e0 | 448 | struct vnode *allocvnode(int lktimeout, int lkflags); |
| 3c37c940 | 449 | int freesomevnodes(int count); |
| 6ddb7618 | 450 | int getnewvnode (enum vtagtype tag, struct mount *mp, |
| 3446c007 | 451 | struct vnode **vpp, int timo, int lkflags); |
| 6ddb7618 MD |
452 | int getspecialvnode (enum vtagtype tag, struct mount *mp, |
| 453 | struct vop_ops **ops, struct vnode **vpp, int timo, | |
| 454 | int lkflags); | |
| b153f746 RG |
455 | int spec_vnoperate (struct vop_generic_args *); |
| 456 | int speedup_syncer (void); | |
| 597aea93 DR |
457 | void vattr_null (struct vattr *vap); |
| 458 | int vcount (struct vnode *vp); | |
| b13267a5 | 459 | int vfinddev (cdev_t dev, enum vtype type, struct vnode **vpp); |
| 66a1ddf5 MD |
460 | void vfs_nadd_vnodeops_sysinit (void *); |
| 461 | void vfs_nrm_vnodeops_sysinit (void *); | |
| 462 | void vfs_add_vnodeops(struct mount *, struct vop_ops *, struct vop_ops **); | |
| 463 | void vfs_rm_vnodeops(struct mount *, struct vop_ops *, struct vop_ops **); | |
| b153f746 | 464 | int vflush (struct mount *mp, int rootrefs, int flags); |
| 5fd012e0 | 465 | int vmntvnodescan(struct mount *mp, int flags, |
| 41a01a4d | 466 | int (*fastfunc)(struct mount *mp, struct vnode *vp, void *data), |
| 5fd012e0 MD |
467 | int (*slowfunc)(struct mount *mp, struct vnode *vp, void *data), |
| 468 | void *data); | |
| 469 | void insmntque(struct vnode *vp, struct mount *mp); | |
| 41a01a4d | 470 | |
| 3c37c940 | 471 | void vclean_vxlocked (struct vnode *vp, int flags); |
| cf683bae | 472 | void vclean_unlocked (struct vnode *vp); |
| 3c37c940 | 473 | void vgone_vxlocked (struct vnode *vp); |
| 6b008938 | 474 | void vupdatefsmid (struct vnode *vp); |
| b8477cda | 475 | int vrevoke (struct vnode *vp, struct ucred *cred); |
| 87de5057 MD |
476 | int vinvalbuf (struct vnode *vp, int save, int slpflag, int slptimeo); |
| 477 | int vtruncbuf (struct vnode *vp, off_t length, int blksize); | |
| 4e0ecc94 | 478 | int vfsync(struct vnode *vp, int waitfor, int passes, |
| 6bae6177 MD |
479 | int (*checkdef)(struct buf *), |
| 480 | int (*waitoutput)(struct vnode *, struct thread *)); | |
| 1c843a13 | 481 | int vinitvmio(struct vnode *vp, off_t filesize); |
| b153f746 | 482 | void vprint (char *label, struct vnode *vp); |
| 87de5057 | 483 | int vrecycle (struct vnode *vp); |
| 2ec4b00d | 484 | int vmaxiosize (struct vnode *vp); |
| 81b5c339 | 485 | void vn_strategy(struct vnode *vp, struct bio *bio); |
| 87de5057 | 486 | int vn_close (struct vnode *vp, int flags); |
| b153f746 | 487 | int vn_isdisk (struct vnode *vp, int *errp); |
| ca466bae | 488 | int vn_lock (struct vnode *vp, int flags); |
| a11aaa81 MD |
489 | int vn_islocked (struct vnode *vp); |
| 490 | void vn_unlock (struct vnode *vp); | |
| 984263bc | 491 | #ifdef DEBUG_LOCKS |
| ca466bae MD |
492 | int debug_vn_lock (struct vnode *vp, int flags, |
| 493 | const char *filename, int line); | |
| 494 | #define vn_lock(vp,flags) debug_vn_lock(vp, flags, __FILE__, __LINE__) | |
| 984263bc | 495 | #endif |
| b310dfc4 | 496 | |
| 5d72d6ed | 497 | int vn_get_namelen(struct vnode *, int *); |
| fad57d0e | 498 | void vn_setspecops (struct file *fp); |
| b310dfc4 | 499 | int vn_fullpath (struct proc *p, struct vnode *vn, char **retbuf, char **freebuf); |
| fad57d0e | 500 | int vn_open (struct nlookupdata *ndp, struct file *fp, int fmode, int cmode); |
| a8873631 | 501 | int vn_opendisk (const char *devname, int fmode, struct vnode **vpp); |
| b153f746 RG |
502 | void vn_pollevent (struct vnode *vp, int events); |
| 503 | void vn_pollgone (struct vnode *vp); | |
| 87de5057 | 504 | int vn_pollrecord (struct vnode *vp, int events); |
| b153f746 | 505 | int vn_rdwr (enum uio_rw rw, struct vnode *vp, caddr_t base, |
| 984263bc | 506 | int len, off_t offset, enum uio_seg segflg, int ioflg, |
| 87de5057 | 507 | struct ucred *cred, int *aresid); |
| b153f746 | 508 | int vn_rdwr_inchunks (enum uio_rw rw, struct vnode *vp, caddr_t base, |
| 984263bc | 509 | int len, off_t offset, enum uio_seg segflg, int ioflg, |
| 87de5057 MD |
510 | struct ucred *cred, int *aresid); |
| 511 | int vn_stat (struct vnode *vp, struct stat *sb, struct ucred *cred); | |
| b13267a5 | 512 | cdev_t vn_todev (struct vnode *vp); |
| b153f746 | 513 | void vfs_timestamp (struct timespec *); |
| 349433c9 | 514 | void vn_mark_atime(struct vnode *vp, struct thread *td); |
| 28623bf9 MD |
515 | int vn_writechk (struct vnode *vp, struct nchandle *nch); |
| 516 | int ncp_writechk(struct nchandle *nch); | |
| 8ddc6004 MD |
517 | int vop_stdopen (struct vop_open_args *ap); |
| 518 | int vop_stdclose (struct vop_close_args *ap); | |
| 1787385d MD |
519 | int vop_stdgetpages(struct vop_getpages_args *ap); |
| 520 | int vop_stdputpages(struct vop_putpages_args *ap); | |
| 349433c9 | 521 | int vop_stdmarkatime(struct vop_markatime_args *ap); |
| 2d3e977e | 522 | int vop_nopoll (struct vop_poll_args *ap); |
| 2d3e977e MD |
523 | int vop_stdpathconf (struct vop_pathconf_args *ap); |
| 524 | int vop_stdpoll (struct vop_poll_args *ap); | |
| b153f746 RG |
525 | int vop_eopnotsupp (struct vop_generic_args *ap); |
| 526 | int vop_ebadf (struct vop_generic_args *ap); | |
| 527 | int vop_einval (struct vop_generic_args *ap); | |
| 528 | int vop_enotty (struct vop_generic_args *ap); | |
| 529 | int vop_defaultop (struct vop_generic_args *ap); | |
| 530 | int vop_null (struct vop_generic_args *ap); | |
| 531 | int vop_panic (struct vop_generic_args *ap); | |
| fc46f680 JS |
532 | int vop_write_dirent(int *, struct uio *, ino_t, uint8_t, uint16_t, |
| 533 | const char *); | |
| b153f746 | 534 | |
| fad57d0e MD |
535 | int vop_compat_nresolve(struct vop_nresolve_args *ap); |
| 536 | int vop_compat_nlookupdotdot(struct vop_nlookupdotdot_args *ap); | |
| 537 | int vop_compat_ncreate(struct vop_ncreate_args *ap); | |
| 538 | int vop_compat_nmkdir(struct vop_nmkdir_args *ap); | |
| 539 | int vop_compat_nmknod(struct vop_nmknod_args *ap); | |
| 540 | int vop_compat_nlink(struct vop_nlink_args *ap); | |
| 541 | int vop_compat_nsymlink(struct vop_nsymlink_args *ap); | |
| 542 | int vop_compat_nwhiteout(struct vop_nwhiteout_args *ap); | |
| 543 | int vop_compat_nremove(struct vop_nremove_args *ap); | |
| 544 | int vop_compat_nrmdir(struct vop_nrmdir_args *ap); | |
| 545 | int vop_compat_nrename(struct vop_nrename_args *ap); | |
| 546 | ||
| e3332475 | 547 | void vx_lock (struct vnode *vp); |
| 5fd012e0 | 548 | void vx_unlock (struct vnode *vp); |
| e3332475 | 549 | void vx_get (struct vnode *vp); |
| 5fd012e0 MD |
550 | int vx_get_nonblock (struct vnode *vp); |
| 551 | void vx_put (struct vnode *vp); | |
| 87de5057 | 552 | int vget (struct vnode *vp, int lockflag); |
| 597aea93 | 553 | void vput (struct vnode *vp); |
| 5fd012e0 MD |
554 | void vhold (struct vnode *); |
| 555 | void vdrop (struct vnode *); | |
| b153f746 | 556 | void vref (struct vnode *vp); |
| 5fd012e0 MD |
557 | void vrele (struct vnode *vp); |
| 558 | void vsetflags (struct vnode *vp, int flags); | |
| 559 | void vclrflags (struct vnode *vp, int flags); | |
| 560 | ||
| 561 | void vfs_subr_init(void); | |
| 562 | void vfs_mount_init(void); | |
| 563 | void vfs_lock_init(void); | |
| 564 | void vfs_sync_init(void); | |
| 565 | ||
| 566 | void vn_syncer_add_to_worklist(struct vnode *, int); | |
| 567 | void vnlru_proc_wait(void); | |
| 568 | ||
| 66a1ddf5 MD |
569 | extern struct vop_ops default_vnode_vops; |
| 570 | extern struct vop_ops spec_vnode_vops; | |
| 571 | extern struct vop_ops dead_vnode_vops; | |
| 572 | ||
| 573 | extern struct vop_ops *default_vnode_vops_p; | |
| 574 | extern struct vop_ops *spec_vnode_vops_p; | |
| 575 | extern struct vop_ops *dead_vnode_vops_p; | |
| 984263bc | 576 | |
| 03d6a592 | 577 | #endif /* _KERNEL */ |
| 984263bc | 578 | |
| 03d6a592 MD |
579 | #endif /* _KERNEL || _KERNEL_STRUCTURES */ |
| 580 | #endif /* !_SYS_VNODE_H_ */ |