| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | /* |
| 2 | * Copyright (c) 1989, 1993 | |
| 3 | * The Regents of the University of California. All rights reserved. | |
| 4 | * (c) UNIX System Laboratories, Inc. | |
| 5 | * All or some portions of this file are derived from material licensed | |
| 6 | * to the University of California by American Telephone and Telegraph | |
| 7 | * Co. or Unix System Laboratories, Inc. and are reproduced herein with | |
| 8 | * the permission of UNIX System Laboratories, Inc. | |
| 9 | * | |
| 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. | |
| 18 | * 3. All advertising materials mentioning features or use of this software | |
| 19 | * must display the following acknowledgement: | |
| 20 | * This product includes software developed by the University of | |
| 21 | * California, Berkeley and its contributors. | |
| 22 | * 4. Neither the name of the University nor the names of its contributors | |
| 23 | * may be used to endorse or promote products derived from this software | |
| 24 | * without specific prior written permission. | |
| 25 | * | |
| 26 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 27 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 28 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 29 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 30 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 31 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 32 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 33 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 34 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 35 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 36 | * SUCH DAMAGE. | |
| 37 | * | |
| 38 | * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 | |
| 39 | * $FreeBSD: src/sys/kern/vfs_subr.c,v 1.249.2.30 2003/04/04 20:35:57 tegge Exp $ | |
| 40 | */ | |
| 41 | ||
| 42 | /* | |
| 43 | * External virtual filesystem routines | |
| 44 | */ | |
| 45 | #include "opt_ddb.h" | |
| 46 | ||
| 47 | #include <sys/param.h> | |
| 48 | #include <sys/systm.h> | |
| 49 | #include <sys/buf.h> | |
| 50 | #include <sys/conf.h> | |
| 51 | #include <sys/dirent.h> | |
| 52 | #include <sys/domain.h> | |
| 53 | #include <sys/eventhandler.h> | |
| 54 | #include <sys/fcntl.h> | |
| b8477cda | 55 | #include <sys/file.h> |
| 984263bc MD |
56 | #include <sys/kernel.h> |
| 57 | #include <sys/kthread.h> | |
| 58 | #include <sys/malloc.h> | |
| 59 | #include <sys/mbuf.h> | |
| 60 | #include <sys/mount.h> | |
| 3b0783db | 61 | #include <sys/priv.h> |
| 984263bc MD |
62 | #include <sys/proc.h> |
| 63 | #include <sys/reboot.h> | |
| 64 | #include <sys/socket.h> | |
| 65 | #include <sys/stat.h> | |
| 66 | #include <sys/sysctl.h> | |
| 67 | #include <sys/syslog.h> | |
| 5d72d6ed | 68 | #include <sys/unistd.h> |
| 984263bc MD |
69 | #include <sys/vmmeter.h> |
| 70 | #include <sys/vnode.h> | |
| 71 | ||
| 72 | #include <machine/limits.h> | |
| 73 | ||
| 74 | #include <vm/vm.h> | |
| 75 | #include <vm/vm_object.h> | |
| 76 | #include <vm/vm_extern.h> | |
| 6ef943a3 | 77 | #include <vm/vm_kern.h> |
| 984263bc MD |
78 | #include <vm/pmap.h> |
| 79 | #include <vm/vm_map.h> | |
| 80 | #include <vm/vm_page.h> | |
| 81 | #include <vm/vm_pager.h> | |
| 82 | #include <vm/vnode_pager.h> | |
| 83 | #include <vm/vm_zone.h> | |
| 84 | ||
| 3020e3be | 85 | #include <sys/buf2.h> |
| f5865223 | 86 | #include <sys/thread2.h> |
| 3c37c940 | 87 | #include <sys/sysref2.h> |
| 2247fe02 | 88 | #include <sys/mplock2.h> |
| 3020e3be | 89 | |
| 984263bc MD |
90 | static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure"); |
| 91 | ||
| 5fd012e0 | 92 | int numvnodes; |
| 0c52fa62 SG |
93 | SYSCTL_INT(_debug, OID_AUTO, numvnodes, CTLFLAG_RD, &numvnodes, 0, |
| 94 | "Number of vnodes allocated"); | |
| 28271622 MD |
95 | int verbose_reclaims; |
| 96 | SYSCTL_INT(_debug, OID_AUTO, verbose_reclaims, CTLFLAG_RD, &verbose_reclaims, 0, | |
| 97 | "Output filename of reclaimed vnode(s)"); | |
| 984263bc MD |
98 | |
| 99 | enum vtype iftovt_tab[16] = { | |
| 100 | VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON, | |
| 101 | VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD, | |
| 102 | }; | |
| 103 | int vttoif_tab[9] = { | |
| 104 | 0, S_IFREG, S_IFDIR, S_IFBLK, S_IFCHR, S_IFLNK, | |
| 105 | S_IFSOCK, S_IFIFO, S_IFMT, | |
| 106 | }; | |
| 107 | ||
| 984263bc | 108 | static int reassignbufcalls; |
| 093e85dc SG |
109 | SYSCTL_INT(_vfs, OID_AUTO, reassignbufcalls, CTLFLAG_RW, &reassignbufcalls, |
| 110 | 0, "Number of times buffers have been reassigned to the proper list"); | |
| 111 | ||
| 7608650f | 112 | static int check_buf_overlap = 2; /* invasive check */ |
| 093e85dc SG |
113 | SYSCTL_INT(_vfs, OID_AUTO, check_buf_overlap, CTLFLAG_RW, &check_buf_overlap, |
| 114 | 0, "Enable overlapping buffer checks"); | |
| 984263bc | 115 | |
| 984263bc | 116 | int nfs_mount_type = -1; |
| 8a8d5d85 | 117 | static struct lwkt_token spechash_token; |
| 984263bc | 118 | struct nfs_public nfs_pub; /* publicly exported FS */ |
| 984263bc MD |
119 | |
| 120 | int desiredvnodes; | |
| 121 | SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW, | |
| dd98570a | 122 | &desiredvnodes, 0, "Maximum number of vnodes"); |
| 984263bc | 123 | |
| 402ed7e1 RG |
124 | static void vfs_free_addrlist (struct netexport *nep); |
| 125 | static int vfs_free_netcred (struct radix_node *rn, void *w); | |
| 126 | static int vfs_hang_addrlist (struct mount *mp, struct netexport *nep, | |
| 1aa89f17 | 127 | const struct export_args *argp); |
| 984263bc | 128 | |
| 41a01a4d | 129 | /* |
| 6bae6177 MD |
130 | * Red black tree functions |
| 131 | */ | |
| 132 | static int rb_buf_compare(struct buf *b1, struct buf *b2); | |
| 54078292 MD |
133 | RB_GENERATE2(buf_rb_tree, buf, b_rbnode, rb_buf_compare, off_t, b_loffset); |
| 134 | RB_GENERATE2(buf_rb_hash, buf, b_rbhash, rb_buf_compare, off_t, b_loffset); | |
| 6bae6177 MD |
135 | |
| 136 | static int | |
| 137 | rb_buf_compare(struct buf *b1, struct buf *b2) | |
| 138 | { | |
| 54078292 | 139 | if (b1->b_loffset < b2->b_loffset) |
| 6bae6177 | 140 | return(-1); |
| 54078292 | 141 | if (b1->b_loffset > b2->b_loffset) |
| 6bae6177 MD |
142 | return(1); |
| 143 | return(0); | |
| 144 | } | |
| 145 | ||
| 146 | /* | |
| 44b1cf3d | 147 | * Returns non-zero if the vnode is a candidate for lazy msyncing. |
| aed76ef1 MD |
148 | * |
| 149 | * NOTE: v_object is not stable (this scan can race), however the | |
| 150 | * mntvnodescan code holds vmobj_token so any VM object we | |
| 151 | * do find will remain stable storage. | |
| 41a01a4d | 152 | */ |
| 5fd012e0 | 153 | static __inline int |
| 3c37c940 | 154 | vshouldmsync(struct vnode *vp) |
| 41a01a4d | 155 | { |
| aed76ef1 MD |
156 | vm_object_t object; |
| 157 | ||
| 3c37c940 | 158 | if (vp->v_auxrefs != 0 || vp->v_sysref.refcnt > 0) |
| 44b1cf3d | 159 | return (0); /* other holders */ |
| aed76ef1 MD |
160 | object = vp->v_object; |
| 161 | cpu_ccfence(); | |
| 162 | if (object && (object->ref_count || object->resident_page_count)) | |
| 163 | return(0); | |
| 5fd012e0 | 164 | return (1); |
| 41a01a4d | 165 | } |
| 5fd012e0 | 166 | |
| 984263bc | 167 | /* |
| 5fd012e0 MD |
168 | * Initialize the vnode management data structures. |
| 169 | * | |
| 170 | * Called from vfsinit() | |
| 984263bc MD |
171 | */ |
| 172 | void | |
| 5fd012e0 | 173 | vfs_subr_init(void) |
| 984263bc | 174 | { |
| 7c457ac8 MD |
175 | int factor1; |
| 176 | int factor2; | |
| 177 | ||
| 6ef943a3 | 178 | /* |
| 55d3a838 MD |
179 | * Desiredvnodes is kern.maxvnodes. We want to scale it |
| 180 | * according to available system memory but we may also have | |
| 181 | * to limit it based on available KVM, which is capped on 32 bit | |
| 182 | * systems. | |
| b867f3d9 MD |
183 | * |
| 184 | * WARNING! For machines with 64-256M of ram we have to be sure | |
| 185 | * that the default limit scales down well due to HAMMER | |
| 186 | * taking up significantly more memory per-vnode vs UFS. | |
| 187 | * We want around ~5800 on a 128M machine. | |
| 6ef943a3 | 188 | */ |
| 7c457ac8 MD |
189 | factor1 = 20 * (sizeof(struct vm_object) + sizeof(struct vnode)); |
| 190 | factor2 = 22 * (sizeof(struct vm_object) + sizeof(struct vnode)); | |
| 191 | desiredvnodes = | |
| 192 | imin((int64_t)vmstats.v_page_count * PAGE_SIZE / factor1, | |
| 193 | KvaSize / factor2); | |
| 194 | desiredvnodes = imax(desiredvnodes, maxproc * 8); | |
| 6ef943a3 | 195 | |
| a3c18566 | 196 | lwkt_token_init(&spechash_token, "spechash"); |
| 984263bc MD |
197 | } |
| 198 | ||
| 199 | /* | |
| 200 | * Knob to control the precision of file timestamps: | |
| 201 | * | |
| 202 | * 0 = seconds only; nanoseconds zeroed. | |
| 203 | * 1 = seconds and nanoseconds, accurate within 1/HZ. | |
| 204 | * 2 = seconds and nanoseconds, truncated to microseconds. | |
| 205 | * >=3 = seconds and nanoseconds, maximum precision. | |
| 206 | */ | |
| 207 | enum { TSP_SEC, TSP_HZ, TSP_USEC, TSP_NSEC }; | |
| 208 | ||
| 209 | static int timestamp_precision = TSP_SEC; | |
| 210 | SYSCTL_INT(_vfs, OID_AUTO, timestamp_precision, CTLFLAG_RW, | |
| 093e85dc | 211 | ×tamp_precision, 0, "Precision of file timestamps"); |
| 984263bc MD |
212 | |
| 213 | /* | |
| 214 | * Get a current timestamp. | |
| 627531fa MD |
215 | * |
| 216 | * MPSAFE | |
| 984263bc MD |
217 | */ |
| 218 | void | |
| dd98570a | 219 | vfs_timestamp(struct timespec *tsp) |
| 984263bc MD |
220 | { |
| 221 | struct timeval tv; | |
| 222 | ||
| 223 | switch (timestamp_precision) { | |
| 224 | case TSP_SEC: | |
| 225 | tsp->tv_sec = time_second; | |
| 226 | tsp->tv_nsec = 0; | |
| 227 | break; | |
| 228 | case TSP_HZ: | |
| 229 | getnanotime(tsp); | |
| 230 | break; | |
| 231 | case TSP_USEC: | |
| 232 | microtime(&tv); | |
| 233 | TIMEVAL_TO_TIMESPEC(&tv, tsp); | |
| 234 | break; | |
| 235 | case TSP_NSEC: | |
| 236 | default: | |
| 237 | nanotime(tsp); | |
| 238 | break; | |
| 239 | } | |
| 240 | } | |
| 241 | ||
| 242 | /* | |
| 243 | * Set vnode attributes to VNOVAL | |
| 244 | */ | |
| 245 | void | |
| dd98570a | 246 | vattr_null(struct vattr *vap) |
| 984263bc | 247 | { |
| 984263bc MD |
248 | vap->va_type = VNON; |
| 249 | vap->va_size = VNOVAL; | |
| 250 | vap->va_bytes = VNOVAL; | |
| 251 | vap->va_mode = VNOVAL; | |
| 252 | vap->va_nlink = VNOVAL; | |
| 253 | vap->va_uid = VNOVAL; | |
| 254 | vap->va_gid = VNOVAL; | |
| 255 | vap->va_fsid = VNOVAL; | |
| 256 | vap->va_fileid = VNOVAL; | |
| 257 | vap->va_blocksize = VNOVAL; | |
| 0e9b9130 MD |
258 | vap->va_rmajor = VNOVAL; |
| 259 | vap->va_rminor = VNOVAL; | |
| 984263bc MD |
260 | vap->va_atime.tv_sec = VNOVAL; |
| 261 | vap->va_atime.tv_nsec = VNOVAL; | |
| 262 | vap->va_mtime.tv_sec = VNOVAL; | |
| 263 | vap->va_mtime.tv_nsec = VNOVAL; | |
| 264 | vap->va_ctime.tv_sec = VNOVAL; | |
| 265 | vap->va_ctime.tv_nsec = VNOVAL; | |
| 266 | vap->va_flags = VNOVAL; | |
| 267 | vap->va_gen = VNOVAL; | |
| 268 | vap->va_vaflags = 0; | |
| 50626622 | 269 | /* va_*_uuid fields are only valid if related flags are set */ |
| 984263bc MD |
270 | } |
| 271 | ||
| 272 | /* | |
| 984263bc | 273 | * Flush out and invalidate all buffers associated with a vnode. |
| 5fd012e0 MD |
274 | * |
| 275 | * vp must be locked. | |
| 984263bc | 276 | */ |
| 6bae6177 MD |
277 | static int vinvalbuf_bp(struct buf *bp, void *data); |
| 278 | ||
| 279 | struct vinvalbuf_bp_info { | |
| 280 | struct vnode *vp; | |
| 281 | int slptimeo; | |
| f2770c70 | 282 | int lkflags; |
| 6bae6177 | 283 | int flags; |
| c5724852 | 284 | int clean; |
| 6bae6177 MD |
285 | }; |
| 286 | ||
| 984263bc | 287 | int |
| 87de5057 | 288 | vinvalbuf(struct vnode *vp, int flags, int slpflag, int slptimeo) |
| 984263bc | 289 | { |
| 6bae6177 | 290 | struct vinvalbuf_bp_info info; |
| 984263bc | 291 | vm_object_t object; |
| 0202303b MD |
292 | int error; |
| 293 | ||
| 3b998fa9 | 294 | lwkt_gettoken(&vp->v_token); |
| 984263bc | 295 | |
| 6bae6177 MD |
296 | /* |
| 297 | * If we are being asked to save, call fsync to ensure that the inode | |
| 298 | * is updated. | |
| 299 | */ | |
| 984263bc | 300 | if (flags & V_SAVE) { |
| a9a20f98 | 301 | error = bio_track_wait(&vp->v_track_write, slpflag, slptimeo); |
| 0202303b | 302 | if (error) |
| a9a20f98 | 303 | goto done; |
| 6bae6177 | 304 | if (!RB_EMPTY(&vp->v_rbdirty_tree)) { |
| 52174f71 | 305 | if ((error = VOP_FSYNC(vp, MNT_WAIT, 0)) != 0) |
| a9a20f98 | 306 | goto done; |
| 1bb61199 MD |
307 | |
| 308 | /* | |
| 309 | * Dirty bufs may be left or generated via races | |
| 310 | * in circumstances where vinvalbuf() is called on | |
| 311 | * a vnode not undergoing reclamation. Only | |
| 312 | * panic if we are trying to reclaim the vnode. | |
| 313 | */ | |
| 314 | if ((vp->v_flag & VRECLAIMED) && | |
| a9a20f98 | 315 | (bio_track_active(&vp->v_track_write) || |
| 1bb61199 | 316 | !RB_EMPTY(&vp->v_rbdirty_tree))) { |
| 984263bc | 317 | panic("vinvalbuf: dirty bufs"); |
| 1bb61199 | 318 | } |
| 984263bc | 319 | } |
| 984263bc | 320 | } |
| 6bae6177 | 321 | info.slptimeo = slptimeo; |
| f2770c70 MD |
322 | info.lkflags = LK_EXCLUSIVE | LK_SLEEPFAIL; |
| 323 | if (slpflag & PCATCH) | |
| 324 | info.lkflags |= LK_PCATCH; | |
| 6bae6177 MD |
325 | info.flags = flags; |
| 326 | info.vp = vp; | |
| 327 | ||
| 328 | /* | |
| 329 | * Flush the buffer cache until nothing is left. | |
| 330 | */ | |
| 331 | while (!RB_EMPTY(&vp->v_rbclean_tree) || | |
| 0202303b | 332 | !RB_EMPTY(&vp->v_rbdirty_tree)) { |
| c5724852 | 333 | info.clean = 1; |
| 6bae6177 | 334 | error = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, NULL, |
| 65c6c519 | 335 | vinvalbuf_bp, &info); |
| 6bae6177 | 336 | if (error == 0) { |
| c5724852 | 337 | info.clean = 0; |
| 6bae6177 MD |
338 | error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL, |
| 339 | vinvalbuf_bp, &info); | |
| 984263bc MD |
340 | } |
| 341 | } | |
| 342 | ||
| 343 | /* | |
| a9a20f98 MD |
344 | * Wait for I/O completion. We may block in the pip code so we have |
| 345 | * to re-check. | |
| 984263bc MD |
346 | */ |
| 347 | do { | |
| a9a20f98 | 348 | bio_track_wait(&vp->v_track_write, 0, 0); |
| 7540ab49 | 349 | if ((object = vp->v_object) != NULL) { |
| 00db03f1 | 350 | refcount_wait(&object->paging_in_progress, "vnvlbx"); |
| 984263bc | 351 | } |
| a9a20f98 | 352 | } while (bio_track_active(&vp->v_track_write)); |
| 984263bc | 353 | |
| 984263bc MD |
354 | /* |
| 355 | * Destroy the copy in the VM cache, too. | |
| 356 | */ | |
| 7540ab49 | 357 | if ((object = vp->v_object) != NULL) { |
| 984263bc MD |
358 | vm_object_page_remove(object, 0, 0, |
| 359 | (flags & V_SAVE) ? TRUE : FALSE); | |
| 360 | } | |
| 984263bc | 361 | |
| 6bae6177 | 362 | if (!RB_EMPTY(&vp->v_rbdirty_tree) || !RB_EMPTY(&vp->v_rbclean_tree)) |
| 984263bc | 363 | panic("vinvalbuf: flush failed"); |
| 1f1ea522 MD |
364 | if (!RB_EMPTY(&vp->v_rbhash_tree)) |
| 365 | panic("vinvalbuf: flush failed, buffers still present"); | |
| a9a20f98 MD |
366 | error = 0; |
| 367 | done: | |
| 3b998fa9 | 368 | lwkt_reltoken(&vp->v_token); |
| a9a20f98 | 369 | return (error); |
| 984263bc MD |
370 | } |
| 371 | ||
| 6bae6177 MD |
372 | static int |
| 373 | vinvalbuf_bp(struct buf *bp, void *data) | |
| 374 | { | |
| 375 | struct vinvalbuf_bp_info *info = data; | |
| 376 | int error; | |
| 377 | ||
| 378 | if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) { | |
| c5724852 | 379 | atomic_add_int(&bp->b_refs, 1); |
| f2770c70 MD |
380 | error = BUF_TIMELOCK(bp, info->lkflags, |
| 381 | "vinvalbuf", info->slptimeo); | |
| c5724852 | 382 | atomic_subtract_int(&bp->b_refs, 1); |
| 6bae6177 MD |
383 | if (error == 0) { |
| 384 | BUF_UNLOCK(bp); | |
| 385 | error = ENOLCK; | |
| 386 | } | |
| 387 | if (error == ENOLCK) | |
| 388 | return(0); | |
| 389 | return (-error); | |
| 390 | } | |
| 65c6c519 MD |
391 | KKASSERT(bp->b_vp == info->vp); |
| 392 | ||
| 6bae6177 | 393 | /* |
| c5724852 MD |
394 | * Must check clean/dirty status after successfully locking as |
| 395 | * it may race. | |
| 396 | */ | |
| 397 | if ((info->clean && (bp->b_flags & B_DELWRI)) || | |
| 398 | (info->clean == 0 && (bp->b_flags & B_DELWRI) == 0)) { | |
| 399 | BUF_UNLOCK(bp); | |
| 400 | return(0); | |
| 401 | } | |
| 402 | ||
| 403 | /* | |
| 404 | * Note that vfs_bio_awrite expects buffers to reside | |
| 405 | * on a queue, while bwrite() and brelse() do not. | |
| 27bc0cb1 MD |
406 | * |
| 407 | * NOTE: NO B_LOCKED CHECK. Also no buf_checkwrite() | |
| 408 | * check. This code will write out the buffer, period. | |
| 6bae6177 MD |
409 | */ |
| 410 | if (((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI) && | |
| 411 | (info->flags & V_SAVE)) { | |
| c5724852 MD |
412 | if (bp->b_flags & B_CLUSTEROK) { |
| 413 | vfs_bio_awrite(bp); | |
| 6bae6177 MD |
414 | } else { |
| 415 | bremfree(bp); | |
| c5724852 | 416 | bawrite(bp); |
| 6bae6177 | 417 | } |
| 135bd6a8 MD |
418 | } else if (info->flags & V_SAVE) { |
| 419 | /* | |
| 420 | * Cannot set B_NOCACHE on a clean buffer as this will | |
| 421 | * destroy the VM backing store which might actually | |
| 422 | * be dirty (and unsynchronized). | |
| 423 | */ | |
| 424 | bremfree(bp); | |
| 425 | bp->b_flags |= (B_INVAL | B_RELBUF); | |
| 135bd6a8 | 426 | brelse(bp); |
| 6bae6177 MD |
427 | } else { |
| 428 | bremfree(bp); | |
| 429 | bp->b_flags |= (B_INVAL | B_NOCACHE | B_RELBUF); | |
| 6bae6177 MD |
430 | brelse(bp); |
| 431 | } | |
| 432 | return(0); | |
| 433 | } | |
| 434 | ||
| 984263bc MD |
435 | /* |
| 436 | * Truncate a file's buffer and pages to a specified length. This | |
| 437 | * is in lieu of the old vinvalbuf mechanism, which performed unneeded | |
| 438 | * sync activity. | |
| 5fd012e0 MD |
439 | * |
| 440 | * The vnode must be locked. | |
| 984263bc | 441 | */ |
| 6bae6177 MD |
442 | static int vtruncbuf_bp_trunc_cmp(struct buf *bp, void *data); |
| 443 | static int vtruncbuf_bp_trunc(struct buf *bp, void *data); | |
| 444 | static int vtruncbuf_bp_metasync_cmp(struct buf *bp, void *data); | |
| 445 | static int vtruncbuf_bp_metasync(struct buf *bp, void *data); | |
| 446 | ||
| c5724852 MD |
447 | struct vtruncbuf_info { |
| 448 | struct vnode *vp; | |
| 449 | off_t truncloffset; | |
| 450 | int clean; | |
| 451 | }; | |
| 452 | ||
| 984263bc | 453 | int |
| 87de5057 | 454 | vtruncbuf(struct vnode *vp, off_t length, int blksize) |
| 984263bc | 455 | { |
| c5724852 | 456 | struct vtruncbuf_info info; |
| c4b46cb4 | 457 | const char *filename; |
| 0202303b | 458 | int count; |
| 984263bc MD |
459 | |
| 460 | /* | |
| 54078292 | 461 | * Round up to the *next* block, then destroy the buffers in question. |
| 6bae6177 MD |
462 | * Since we are only removing some of the buffers we must rely on the |
| 463 | * scan count to determine whether a loop is necessary. | |
| 984263bc | 464 | */ |
| 54078292 | 465 | if ((count = (int)(length % blksize)) != 0) |
| c5724852 | 466 | info.truncloffset = length + (blksize - count); |
| 54078292 | 467 | else |
| c5724852 MD |
468 | info.truncloffset = length; |
| 469 | info.vp = vp; | |
| 984263bc | 470 | |
| 3b998fa9 | 471 | lwkt_gettoken(&vp->v_token); |
| 6bae6177 | 472 | do { |
| c5724852 | 473 | info.clean = 1; |
| 6bae6177 MD |
474 | count = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, |
| 475 | vtruncbuf_bp_trunc_cmp, | |
| c5724852 MD |
476 | vtruncbuf_bp_trunc, &info); |
| 477 | info.clean = 0; | |
| 6bae6177 MD |
478 | count += RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, |
| 479 | vtruncbuf_bp_trunc_cmp, | |
| c5724852 | 480 | vtruncbuf_bp_trunc, &info); |
| 6bae6177 | 481 | } while(count); |
| 984263bc | 482 | |
| 6bae6177 MD |
483 | /* |
| 484 | * For safety, fsync any remaining metadata if the file is not being | |
| 485 | * truncated to 0. Since the metadata does not represent the entire | |
| 486 | * dirty list we have to rely on the hit count to ensure that we get | |
| 487 | * all of it. | |
| 488 | */ | |
| 984263bc | 489 | if (length > 0) { |
| 6bae6177 MD |
490 | do { |
| 491 | count = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, | |
| 492 | vtruncbuf_bp_metasync_cmp, | |
| c5724852 | 493 | vtruncbuf_bp_metasync, &info); |
| 6bae6177 | 494 | } while (count); |
| 984263bc MD |
495 | } |
| 496 | ||
| 6bae6177 | 497 | /* |
| c4b46cb4 | 498 | * Clean out any left over VM backing store. |
| 0202303b | 499 | * |
| 135bd6a8 MD |
500 | * It is possible to have in-progress I/O from buffers that were |
| 501 | * not part of the truncation. This should not happen if we | |
| 502 | * are truncating to 0-length. | |
| 6bae6177 | 503 | */ |
| 0202303b MD |
504 | vnode_pager_setsize(vp, length); |
| 505 | bio_track_wait(&vp->v_track_write, 0, 0); | |
| 506 | ||
| f63911bf MD |
507 | /* |
| 508 | * Debugging only | |
| 509 | */ | |
| b12defdc | 510 | spin_lock(&vp->v_spin); |
| c4b46cb4 MD |
511 | filename = TAILQ_FIRST(&vp->v_namecache) ? |
| 512 | TAILQ_FIRST(&vp->v_namecache)->nc_name : "?"; | |
| b12defdc | 513 | spin_unlock(&vp->v_spin); |
| c4b46cb4 | 514 | |
| c4b46cb4 MD |
515 | /* |
| 516 | * Make sure no buffers were instantiated while we were trying | |
| 517 | * to clean out the remaining VM pages. This could occur due | |
| 518 | * to busy dirty VM pages being flushed out to disk. | |
| 519 | */ | |
| 520 | do { | |
| c5724852 | 521 | info.clean = 1; |
| c4b46cb4 MD |
522 | count = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, |
| 523 | vtruncbuf_bp_trunc_cmp, | |
| c5724852 MD |
524 | vtruncbuf_bp_trunc, &info); |
| 525 | info.clean = 0; | |
| c4b46cb4 MD |
526 | count += RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, |
| 527 | vtruncbuf_bp_trunc_cmp, | |
| c5724852 | 528 | vtruncbuf_bp_trunc, &info); |
| c4b46cb4 | 529 | if (count) { |
| 6ea70f76 | 530 | kprintf("Warning: vtruncbuf(): Had to re-clean %d " |
| c4b46cb4 MD |
531 | "left over buffers in %s\n", count, filename); |
| 532 | } | |
| 533 | } while(count); | |
| 984263bc | 534 | |
| 3b998fa9 | 535 | lwkt_reltoken(&vp->v_token); |
| b1f72a5c | 536 | |
| 984263bc MD |
537 | return (0); |
| 538 | } | |
| 539 | ||
| 540 | /* | |
| 6bae6177 MD |
541 | * The callback buffer is beyond the new file EOF and must be destroyed. |
| 542 | * Note that the compare function must conform to the RB_SCAN's requirements. | |
| 543 | */ | |
| 544 | static | |
| 545 | int | |
| 546 | vtruncbuf_bp_trunc_cmp(struct buf *bp, void *data) | |
| 547 | { | |
| c5724852 MD |
548 | struct vtruncbuf_info *info = data; |
| 549 | ||
| 550 | if (bp->b_loffset >= info->truncloffset) | |
| 6bae6177 MD |
551 | return(0); |
| 552 | return(-1); | |
| 553 | } | |
| 554 | ||
| 555 | static | |
| 556 | int | |
| 557 | vtruncbuf_bp_trunc(struct buf *bp, void *data) | |
| 558 | { | |
| c5724852 MD |
559 | struct vtruncbuf_info *info = data; |
| 560 | ||
| 6bae6177 MD |
561 | /* |
| 562 | * Do not try to use a buffer we cannot immediately lock, but sleep | |
| 563 | * anyway to prevent a livelock. The code will loop until all buffers | |
| 564 | * can be acted upon. | |
| c5724852 MD |
565 | * |
| 566 | * We must always revalidate the buffer after locking it to deal | |
| 567 | * with MP races. | |
| 6bae6177 MD |
568 | */ |
| 569 | if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) { | |
| c5724852 | 570 | atomic_add_int(&bp->b_refs, 1); |
| 6bae6177 MD |
571 | if (BUF_LOCK(bp, LK_EXCLUSIVE|LK_SLEEPFAIL) == 0) |
| 572 | BUF_UNLOCK(bp); | |
| c5724852 MD |
573 | atomic_subtract_int(&bp->b_refs, 1); |
| 574 | } else if ((info->clean && (bp->b_flags & B_DELWRI)) || | |
| 575 | (info->clean == 0 && (bp->b_flags & B_DELWRI) == 0) || | |
| 576 | bp->b_vp != info->vp || | |
| 577 | vtruncbuf_bp_trunc_cmp(bp, data)) { | |
| 578 | BUF_UNLOCK(bp); | |
| 6bae6177 MD |
579 | } else { |
| 580 | bremfree(bp); | |
| 135bd6a8 | 581 | bp->b_flags |= (B_INVAL | B_RELBUF | B_NOCACHE); |
| 6bae6177 MD |
582 | brelse(bp); |
| 583 | } | |
| 584 | return(1); | |
| 585 | } | |
| 586 | ||
| 587 | /* | |
| 588 | * Fsync all meta-data after truncating a file to be non-zero. Only metadata | |
| 54078292 | 589 | * blocks (with a negative loffset) are scanned. |
| 6bae6177 MD |
590 | * Note that the compare function must conform to the RB_SCAN's requirements. |
| 591 | */ | |
| 592 | static int | |
| c5724852 | 593 | vtruncbuf_bp_metasync_cmp(struct buf *bp, void *data __unused) |
| 6bae6177 | 594 | { |
| 54078292 | 595 | if (bp->b_loffset < 0) |
| 6bae6177 MD |
596 | return(0); |
| 597 | return(1); | |
| 598 | } | |
| 599 | ||
| 600 | static int | |
| 601 | vtruncbuf_bp_metasync(struct buf *bp, void *data) | |
| 602 | { | |
| c5724852 | 603 | struct vtruncbuf_info *info = data; |
| 6bae6177 | 604 | |
| c5724852 MD |
605 | if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) { |
| 606 | atomic_add_int(&bp->b_refs, 1); | |
| 607 | if (BUF_LOCK(bp, LK_EXCLUSIVE|LK_SLEEPFAIL) == 0) | |
| 608 | BUF_UNLOCK(bp); | |
| 609 | atomic_subtract_int(&bp->b_refs, 1); | |
| 610 | } else if ((bp->b_flags & B_DELWRI) == 0 || | |
| 611 | bp->b_vp != info->vp || | |
| 612 | vtruncbuf_bp_metasync_cmp(bp, data)) { | |
| 613 | BUF_UNLOCK(bp); | |
| 6bae6177 | 614 | } else { |
| c5724852 MD |
615 | bremfree(bp); |
| 616 | if (bp->b_vp == info->vp) | |
| 617 | bawrite(bp); | |
| 618 | else | |
| 619 | bwrite(bp); | |
| 6bae6177 | 620 | } |
| c5724852 | 621 | return(1); |
| 6bae6177 MD |
622 | } |
| 623 | ||
| 624 | /* | |
| 625 | * vfsync - implements a multipass fsync on a file which understands | |
| 626 | * dependancies and meta-data. The passed vnode must be locked. The | |
| 627 | * waitfor argument may be MNT_WAIT or MNT_NOWAIT, or MNT_LAZY. | |
| 628 | * | |
| 629 | * When fsyncing data asynchronously just do one consolidated pass starting | |
| 630 | * with the most negative block number. This may not get all the data due | |
| 631 | * to dependancies. | |
| 632 | * | |
| 633 | * When fsyncing data synchronously do a data pass, then a metadata pass, | |
| 634 | * then do additional data+metadata passes to try to get all the data out. | |
| 635 | */ | |
| 636 | static int vfsync_wait_output(struct vnode *vp, | |
| 637 | int (*waitoutput)(struct vnode *, struct thread *)); | |
| c5724852 | 638 | static int vfsync_dummy_cmp(struct buf *bp __unused, void *data __unused); |
| 6bae6177 MD |
639 | static int vfsync_data_only_cmp(struct buf *bp, void *data); |
| 640 | static int vfsync_meta_only_cmp(struct buf *bp, void *data); | |
| 641 | static int vfsync_lazy_range_cmp(struct buf *bp, void *data); | |
| 642 | static int vfsync_bp(struct buf *bp, void *data); | |
| 643 | ||
| 644 | struct vfsync_info { | |
| 645 | struct vnode *vp; | |
| 646 | int synchronous; | |
| 647 | int syncdeps; | |
| 648 | int lazycount; | |
| 649 | int lazylimit; | |
| 54078292 | 650 | int skippedbufs; |
| 6bae6177 | 651 | int (*checkdef)(struct buf *); |
| c5724852 | 652 | int (*cmpfunc)(struct buf *, void *); |
| 6bae6177 MD |
653 | }; |
| 654 | ||
| 655 | int | |
| 4e0ecc94 | 656 | vfsync(struct vnode *vp, int waitfor, int passes, |
| 6bae6177 MD |
657 | int (*checkdef)(struct buf *), |
| 658 | int (*waitoutput)(struct vnode *, struct thread *)) | |
| 659 | { | |
| 660 | struct vfsync_info info; | |
| 661 | int error; | |
| 662 | ||
| 663 | bzero(&info, sizeof(info)); | |
| 664 | info.vp = vp; | |
| 6bae6177 MD |
665 | if ((info.checkdef = checkdef) == NULL) |
| 666 | info.syncdeps = 1; | |
| 667 | ||
| 3b998fa9 | 668 | lwkt_gettoken(&vp->v_token); |
| e43a034f | 669 | |
| 6bae6177 | 670 | switch(waitfor) { |
| 28271622 | 671 | case MNT_LAZY | MNT_NOWAIT: |
| 6bae6177 MD |
672 | case MNT_LAZY: |
| 673 | /* | |
| 674 | * Lazy (filesystem syncer typ) Asynchronous plus limit the | |
| 675 | * number of data (not meta) pages we try to flush to 1MB. | |
| 676 | * A non-zero return means that lazy limit was reached. | |
| 677 | */ | |
| 678 | info.lazylimit = 1024 * 1024; | |
| 679 | info.syncdeps = 1; | |
| c5724852 | 680 | info.cmpfunc = vfsync_lazy_range_cmp; |
| 6bae6177 MD |
681 | error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, |
| 682 | vfsync_lazy_range_cmp, vfsync_bp, &info); | |
| c5724852 | 683 | info.cmpfunc = vfsync_meta_only_cmp; |
| 6bae6177 | 684 | RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, |
| c5724852 | 685 | vfsync_meta_only_cmp, vfsync_bp, &info); |
| 6bae6177 MD |
686 | if (error == 0) |
| 687 | vp->v_lazyw = 0; | |
| 688 | else if (!RB_EMPTY(&vp->v_rbdirty_tree)) | |
| 77912481 | 689 | vn_syncer_add(vp, 1); |
| 6bae6177 MD |
690 | error = 0; |
| 691 | break; | |
| 692 | case MNT_NOWAIT: | |
| 693 | /* | |
| 694 | * Asynchronous. Do a data-only pass and a meta-only pass. | |
| 695 | */ | |
| 696 | info.syncdeps = 1; | |
| c5724852 | 697 | info.cmpfunc = vfsync_data_only_cmp; |
| 6bae6177 MD |
698 | RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_data_only_cmp, |
| 699 | vfsync_bp, &info); | |
| c5724852 | 700 | info.cmpfunc = vfsync_meta_only_cmp; |
| 6bae6177 MD |
701 | RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_meta_only_cmp, |
| 702 | vfsync_bp, &info); | |
| 703 | error = 0; | |
| 704 | break; | |
| 705 | default: | |
| 706 | /* | |
| 707 | * Synchronous. Do a data-only pass, then a meta-data+data | |
| 708 | * pass, then additional integrated passes to try to get | |
| 709 | * all the dependancies flushed. | |
| 710 | */ | |
| c5724852 | 711 | info.cmpfunc = vfsync_data_only_cmp; |
| 6bae6177 MD |
712 | RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_data_only_cmp, |
| 713 | vfsync_bp, &info); | |
| 714 | error = vfsync_wait_output(vp, waitoutput); | |
| 715 | if (error == 0) { | |
| 54078292 | 716 | info.skippedbufs = 0; |
| c5724852 | 717 | info.cmpfunc = vfsync_dummy_cmp; |
| 6bae6177 MD |
718 | RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL, |
| 719 | vfsync_bp, &info); | |
| 720 | error = vfsync_wait_output(vp, waitoutput); | |
| 20045e8c MD |
721 | if (info.skippedbufs) { |
| 722 | kprintf("Warning: vfsync skipped %d dirty " | |
| 723 | "bufs in pass2!\n", info.skippedbufs); | |
| 724 | } | |
| 6bae6177 MD |
725 | } |
| 726 | while (error == 0 && passes > 0 && | |
| 0202303b MD |
727 | !RB_EMPTY(&vp->v_rbdirty_tree) |
| 728 | ) { | |
| 6bae6177 MD |
729 | if (--passes == 0) { |
| 730 | info.synchronous = 1; | |
| 731 | info.syncdeps = 1; | |
| 732 | } | |
| c5724852 | 733 | info.cmpfunc = vfsync_dummy_cmp; |
| 6bae6177 | 734 | error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL, |
| c5724852 | 735 | vfsync_bp, &info); |
| 6bae6177 MD |
736 | if (error < 0) |
| 737 | error = -error; | |
| 738 | info.syncdeps = 1; | |
| 739 | if (error == 0) | |
| 740 | error = vfsync_wait_output(vp, waitoutput); | |
| 741 | } | |
| 742 | break; | |
| 743 | } | |
| 3b998fa9 | 744 | lwkt_reltoken(&vp->v_token); |
| 6bae6177 MD |
745 | return(error); |
| 746 | } | |
| 747 | ||
| 748 | static int | |
| a9a20f98 MD |
749 | vfsync_wait_output(struct vnode *vp, |
| 750 | int (*waitoutput)(struct vnode *, struct thread *)) | |
| 6bae6177 | 751 | { |
| a9a20f98 | 752 | int error; |
| 6bae6177 | 753 | |
| a9a20f98 | 754 | error = bio_track_wait(&vp->v_track_write, 0, 0); |
| 6bae6177 MD |
755 | if (waitoutput) |
| 756 | error = waitoutput(vp, curthread); | |
| 757 | return(error); | |
| 758 | } | |
| 759 | ||
| 760 | static int | |
| c5724852 MD |
761 | vfsync_dummy_cmp(struct buf *bp __unused, void *data __unused) |
| 762 | { | |
| 763 | return(0); | |
| 764 | } | |
| 765 | ||
| 766 | static int | |
| 6bae6177 MD |
767 | vfsync_data_only_cmp(struct buf *bp, void *data) |
| 768 | { | |
| 54078292 | 769 | if (bp->b_loffset < 0) |
| 6bae6177 MD |
770 | return(-1); |
| 771 | return(0); | |
| 772 | } | |
| 773 | ||
| 774 | static int | |
| 775 | vfsync_meta_only_cmp(struct buf *bp, void *data) | |
| 776 | { | |
| 54078292 | 777 | if (bp->b_loffset < 0) |
| 6bae6177 MD |
778 | return(0); |
| 779 | return(1); | |
| 780 | } | |
| 781 | ||
| 782 | static int | |
| 783 | vfsync_lazy_range_cmp(struct buf *bp, void *data) | |
| 784 | { | |
| 785 | struct vfsync_info *info = data; | |
| c5724852 | 786 | |
| 54078292 | 787 | if (bp->b_loffset < info->vp->v_lazyw) |
| 6bae6177 MD |
788 | return(-1); |
| 789 | return(0); | |
| 790 | } | |
| 791 | ||
| 792 | static int | |
| 793 | vfsync_bp(struct buf *bp, void *data) | |
| 794 | { | |
| 795 | struct vfsync_info *info = data; | |
| 796 | struct vnode *vp = info->vp; | |
| 797 | int error; | |
| 798 | ||
| 799 | /* | |
| c5724852 MD |
800 | * Ignore buffers that we cannot immediately lock. |
| 801 | */ | |
| 802 | if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) { | |
| c5724852 MD |
803 | ++info->skippedbufs; |
| 804 | return(0); | |
| 805 | } | |
| 806 | ||
| 807 | /* | |
| 808 | * We must revalidate the buffer after locking. | |
| 6bae6177 | 809 | */ |
| c5724852 MD |
810 | if ((bp->b_flags & B_DELWRI) == 0 || |
| 811 | bp->b_vp != info->vp || | |
| 812 | info->cmpfunc(bp, data)) { | |
| 813 | BUF_UNLOCK(bp); | |
| 6bae6177 | 814 | return(0); |
| c5724852 | 815 | } |
| 6bae6177 MD |
816 | |
| 817 | /* | |
| c5724852 MD |
818 | * If syncdeps is not set we do not try to write buffers which have |
| 819 | * dependancies. | |
| 6bae6177 | 820 | */ |
| c5724852 MD |
821 | if (!info->synchronous && info->syncdeps == 0 && info->checkdef(bp)) { |
| 822 | BUF_UNLOCK(bp); | |
| 6bae6177 | 823 | return(0); |
| 54078292 | 824 | } |
| 6bae6177 MD |
825 | |
| 826 | /* | |
| 827 | * B_NEEDCOMMIT (primarily used by NFS) is a state where the buffer | |
| 828 | * has been written but an additional handshake with the device | |
| 829 | * is required before we can dispose of the buffer. We have no idea | |
| 830 | * how to do this so we have to skip these buffers. | |
| 831 | */ | |
| 832 | if (bp->b_flags & B_NEEDCOMMIT) { | |
| 833 | BUF_UNLOCK(bp); | |
| 834 | return(0); | |
| 835 | } | |
| 836 | ||
| 17a8ba12 | 837 | /* |
| c5724852 MD |
838 | * Ask bioops if it is ok to sync. If not the VFS may have |
| 839 | * set B_LOCKED so we have to cycle the buffer. | |
| 17a8ba12 MD |
840 | */ |
| 841 | if (LIST_FIRST(&bp->b_dep) != NULL && buf_checkwrite(bp)) { | |
| 842 | bremfree(bp); | |
| 843 | brelse(bp); | |
| 844 | return(0); | |
| 845 | } | |
| 846 | ||
| 6bae6177 MD |
847 | if (info->synchronous) { |
| 848 | /* | |
| 849 | * Synchronous flushing. An error may be returned. | |
| 850 | */ | |
| 851 | bremfree(bp); | |
| 6bae6177 | 852 | error = bwrite(bp); |
| 6bae6177 MD |
853 | } else { |
| 854 | /* | |
| 855 | * Asynchronous flushing. A negative return value simply | |
| 856 | * stops the scan and is not considered an error. We use | |
| 857 | * this to support limited MNT_LAZY flushes. | |
| 858 | */ | |
| 54078292 | 859 | vp->v_lazyw = bp->b_loffset; |
| 6bae6177 | 860 | if ((vp->v_flag & VOBJBUF) && (bp->b_flags & B_CLUSTEROK)) { |
| 6bae6177 MD |
861 | info->lazycount += vfs_bio_awrite(bp); |
| 862 | } else { | |
| 863 | info->lazycount += bp->b_bufsize; | |
| 864 | bremfree(bp); | |
| 6bae6177 | 865 | bawrite(bp); |
| 6bae6177 | 866 | } |
| aa1bfd98 | 867 | waitrunningbufspace(); |
| 6bae6177 MD |
868 | if (info->lazylimit && info->lazycount >= info->lazylimit) |
| 869 | error = 1; | |
| 870 | else | |
| 871 | error = 0; | |
| 872 | } | |
| 873 | return(-error); | |
| 874 | } | |
| 875 | ||
| 876 | /* | |
| 984263bc | 877 | * Associate a buffer with a vnode. |
| b1c20cfa MD |
878 | * |
| 879 | * MPSAFE | |
| 984263bc | 880 | */ |
| b1c20cfa | 881 | int |
| 7608650f | 882 | bgetvp(struct vnode *vp, struct buf *bp, int testsize) |
| 984263bc | 883 | { |
| 984263bc | 884 | KASSERT(bp->b_vp == NULL, ("bgetvp: not free")); |
| 9e45bec7 | 885 | KKASSERT((bp->b_flags & (B_HASHED|B_DELWRI|B_VNCLEAN|B_VNDIRTY)) == 0); |
| 984263bc | 886 | |
| 0202303b | 887 | /* |
| 984263bc MD |
888 | * Insert onto list for new vnode. |
| 889 | */ | |
| 3b998fa9 | 890 | lwkt_gettoken(&vp->v_token); |
| c5724852 | 891 | |
| b1c20cfa | 892 | if (buf_rb_hash_RB_INSERT(&vp->v_rbhash_tree, bp)) { |
| 3b998fa9 | 893 | lwkt_reltoken(&vp->v_token); |
| b1c20cfa MD |
894 | return (EEXIST); |
| 895 | } | |
| 7608650f MD |
896 | |
| 897 | /* | |
| 898 | * Diagnostics (mainly for HAMMER debugging). Check for | |
| 899 | * overlapping buffers. | |
| 900 | */ | |
| 901 | if (check_buf_overlap) { | |
| 902 | struct buf *bx; | |
| 903 | bx = buf_rb_hash_RB_PREV(bp); | |
| 904 | if (bx) { | |
| 905 | if (bx->b_loffset + bx->b_bufsize > bp->b_loffset) { | |
| 906 | kprintf("bgetvp: overlapl %016jx/%d %016jx " | |
| 907 | "bx %p bp %p\n", | |
| 908 | (intmax_t)bx->b_loffset, | |
| 909 | bx->b_bufsize, | |
| 910 | (intmax_t)bp->b_loffset, | |
| 911 | bx, bp); | |
| 912 | if (check_buf_overlap > 1) | |
| 913 | panic("bgetvp - overlapping buffer"); | |
| 914 | } | |
| 915 | } | |
| 916 | bx = buf_rb_hash_RB_NEXT(bp); | |
| 917 | if (bx) { | |
| 918 | if (bp->b_loffset + testsize > bx->b_loffset) { | |
| 919 | kprintf("bgetvp: overlapr %016jx/%d %016jx " | |
| 920 | "bp %p bx %p\n", | |
| 921 | (intmax_t)bp->b_loffset, | |
| 922 | testsize, | |
| 923 | (intmax_t)bx->b_loffset, | |
| 924 | bp, bx); | |
| 925 | if (check_buf_overlap > 1) | |
| 926 | panic("bgetvp - overlapping buffer"); | |
| 927 | } | |
| 928 | } | |
| 929 | } | |
| 1f1ea522 MD |
930 | bp->b_vp = vp; |
| 931 | bp->b_flags |= B_HASHED; | |
| 9e45bec7 | 932 | bp->b_flags |= B_VNCLEAN; |
| 6bae6177 | 933 | if (buf_rb_tree_RB_INSERT(&vp->v_rbclean_tree, bp)) |
| 1f1ea522 | 934 | panic("reassignbuf: dup lblk/clean vp %p bp %p", vp, bp); |
| b1c20cfa | 935 | vhold(vp); |
| 3b998fa9 | 936 | lwkt_reltoken(&vp->v_token); |
| b1c20cfa | 937 | return(0); |
| 984263bc MD |
938 | } |
| 939 | ||
| 940 | /* | |
| 941 | * Disassociate a buffer from a vnode. | |
| 77912481 MD |
942 | * |
| 943 | * MPSAFE | |
| 984263bc MD |
944 | */ |
| 945 | void | |
| dd98570a | 946 | brelvp(struct buf *bp) |
| 984263bc MD |
947 | { |
| 948 | struct vnode *vp; | |
| 984263bc MD |
949 | |
| 950 | KASSERT(bp->b_vp != NULL, ("brelvp: NULL")); | |
| 951 | ||
| 952 | /* | |
| 953 | * Delete from old vnode list, if on one. | |
| 954 | */ | |
| 955 | vp = bp->b_vp; | |
| 3b998fa9 | 956 | lwkt_gettoken(&vp->v_token); |
| 9e45bec7 MD |
957 | if (bp->b_flags & (B_VNDIRTY | B_VNCLEAN)) { |
| 958 | if (bp->b_flags & B_VNDIRTY) | |
| 6bae6177 MD |
959 | buf_rb_tree_RB_REMOVE(&vp->v_rbdirty_tree, bp); |
| 960 | else | |
| 961 | buf_rb_tree_RB_REMOVE(&vp->v_rbclean_tree, bp); | |
| 9e45bec7 | 962 | bp->b_flags &= ~(B_VNDIRTY | B_VNCLEAN); |
| 984263bc | 963 | } |
| 1f1ea522 MD |
964 | if (bp->b_flags & B_HASHED) { |
| 965 | buf_rb_hash_RB_REMOVE(&vp->v_rbhash_tree, bp); | |
| 966 | bp->b_flags &= ~B_HASHED; | |
| 967 | } | |
| 77912481 MD |
968 | if ((vp->v_flag & VONWORKLST) && RB_EMPTY(&vp->v_rbdirty_tree)) |
| 969 | vn_syncer_remove(vp); | |
| 5fd012e0 | 970 | bp->b_vp = NULL; |
| 77912481 | 971 | |
| 3b998fa9 | 972 | lwkt_reltoken(&vp->v_token); |
| 0202303b | 973 | |
| 5fd012e0 | 974 | vdrop(vp); |
| 984263bc MD |
975 | } |
| 976 | ||
| 977 | /* | |
| 1f1ea522 MD |
978 | * Reassign the buffer to the proper clean/dirty list based on B_DELWRI. |
| 979 | * This routine is called when the state of the B_DELWRI bit is changed. | |
| b1c20cfa | 980 | * |
| c5724852 | 981 | * Must be called with vp->v_token held. |
| b1c20cfa | 982 | * MPSAFE |
| 984263bc MD |
983 | */ |
| 984 | void | |
| 1f1ea522 | 985 | reassignbuf(struct buf *bp) |
| 984263bc | 986 | { |
| 1f1ea522 | 987 | struct vnode *vp = bp->b_vp; |
| 984263bc | 988 | int delay; |
| 984263bc | 989 | |
| c5724852 | 990 | ASSERT_LWKT_TOKEN_HELD(&vp->v_token); |
| 984263bc MD |
991 | ++reassignbufcalls; |
| 992 | ||
| 993 | /* | |
| 994 | * B_PAGING flagged buffers cannot be reassigned because their vp | |
| 995 | * is not fully linked in. | |
| 996 | */ | |
| 997 | if (bp->b_flags & B_PAGING) | |
| 998 | panic("cannot reassign paging buffer"); | |
| 999 | ||
| 984263bc | 1000 | if (bp->b_flags & B_DELWRI) { |
| 1f1ea522 MD |
1001 | /* |
| 1002 | * Move to the dirty list, add the vnode to the worklist | |
| 1003 | */ | |
| 9e45bec7 | 1004 | if (bp->b_flags & B_VNCLEAN) { |
| 1f1ea522 | 1005 | buf_rb_tree_RB_REMOVE(&vp->v_rbclean_tree, bp); |
| 9e45bec7 | 1006 | bp->b_flags &= ~B_VNCLEAN; |
| 1f1ea522 | 1007 | } |
| 9e45bec7 | 1008 | if ((bp->b_flags & B_VNDIRTY) == 0) { |
| 1f1ea522 MD |
1009 | if (buf_rb_tree_RB_INSERT(&vp->v_rbdirty_tree, bp)) { |
| 1010 | panic("reassignbuf: dup lblk vp %p bp %p", | |
| 1011 | vp, bp); | |
| 1012 | } | |
| 9e45bec7 | 1013 | bp->b_flags |= B_VNDIRTY; |
| 1f1ea522 MD |
1014 | } |
| 1015 | if ((vp->v_flag & VONWORKLST) == 0) { | |
| 1016 | switch (vp->v_type) { | |
| 984263bc MD |
1017 | case VDIR: |
| 1018 | delay = dirdelay; | |
| 1019 | break; | |
| 1020 | case VCHR: | |
| 1021 | case VBLK: | |
| 1f1ea522 MD |
1022 | if (vp->v_rdev && |
| 1023 | vp->v_rdev->si_mountpoint != NULL) { | |
| 984263bc MD |
1024 | delay = metadelay; |
| 1025 | break; | |
| 1026 | } | |
| 1027 | /* fall through */ | |
| 1028 | default: | |
| 1029 | delay = filedelay; | |
| 1030 | } | |
| 77912481 | 1031 | vn_syncer_add(vp, delay); |
| 984263bc | 1032 | } |
| 984263bc | 1033 | } else { |
| 1f1ea522 MD |
1034 | /* |
| 1035 | * Move to the clean list, remove the vnode from the worklist | |
| 1036 | * if no dirty blocks remain. | |
| 1037 | */ | |
| 9e45bec7 | 1038 | if (bp->b_flags & B_VNDIRTY) { |
| 1f1ea522 | 1039 | buf_rb_tree_RB_REMOVE(&vp->v_rbdirty_tree, bp); |
| 9e45bec7 | 1040 | bp->b_flags &= ~B_VNDIRTY; |
| 1f1ea522 | 1041 | } |
| 9e45bec7 | 1042 | if ((bp->b_flags & B_VNCLEAN) == 0) { |
| 1f1ea522 MD |
1043 | if (buf_rb_tree_RB_INSERT(&vp->v_rbclean_tree, bp)) { |
| 1044 | panic("reassignbuf: dup lblk vp %p bp %p", | |
| 1045 | vp, bp); | |
| 1046 | } | |
| 9e45bec7 | 1047 | bp->b_flags |= B_VNCLEAN; |
| 1f1ea522 MD |
1048 | } |
| 1049 | if ((vp->v_flag & VONWORKLST) && | |
| 1050 | RB_EMPTY(&vp->v_rbdirty_tree)) { | |
| 77912481 | 1051 | vn_syncer_remove(vp); |
| 984263bc | 1052 | } |
| 984263bc | 1053 | } |
| 984263bc MD |
1054 | } |
| 1055 | ||
| 1056 | /* | |
| 2d5beb81 MD |
1057 | * Create a vnode for a block device. Used for mounting the root file |
| 1058 | * system. | |
| 1059 | * | |
| 1060 | * A vref()'d vnode is returned. | |
| 984263bc | 1061 | */ |
| cd29885a | 1062 | extern struct vop_ops *devfs_vnode_dev_vops_p; |
| 984263bc | 1063 | int |
| b13267a5 | 1064 | bdevvp(cdev_t dev, struct vnode **vpp) |
| 984263bc | 1065 | { |
| 1fd87d54 | 1066 | struct vnode *vp; |
| 984263bc MD |
1067 | struct vnode *nvp; |
| 1068 | int error; | |
| 1069 | ||
| 028066b1 | 1070 | if (dev == NULL) { |
| 984263bc MD |
1071 | *vpp = NULLVP; |
| 1072 | return (ENXIO); | |
| 1073 | } | |
| aec8eea4 MD |
1074 | error = getspecialvnode(VT_NON, NULL, &devfs_vnode_dev_vops_p, |
| 1075 | &nvp, 0, 0); | |
| 984263bc MD |
1076 | if (error) { |
| 1077 | *vpp = NULLVP; | |
| 1078 | return (error); | |
| 1079 | } | |
| 1080 | vp = nvp; | |
| e4c9c0c8 | 1081 | vp->v_type = VCHR; |
| 9b823501 | 1082 | #if 0 |
| cd29885a | 1083 | vp->v_rdev = dev; |
| 9b823501 AH |
1084 | #endif |
| 1085 | v_associate_rdev(vp, dev); | |
| 0e9b9130 MD |
1086 | vp->v_umajor = dev->si_umajor; |
| 1087 | vp->v_uminor = dev->si_uminor; | |
| 5fd012e0 | 1088 | vx_unlock(vp); |
| 984263bc MD |
1089 | *vpp = vp; |
| 1090 | return (0); | |
| 5fd012e0 | 1091 | } |
| 41a01a4d | 1092 | |
| 984263bc | 1093 | int |
| b13267a5 | 1094 | v_associate_rdev(struct vnode *vp, cdev_t dev) |
| 984263bc | 1095 | { |
| 0e9b9130 | 1096 | if (dev == NULL) |
| 5fd012e0 MD |
1097 | return(ENXIO); |
| 1098 | if (dev_is_good(dev) == 0) | |
| 1099 | return(ENXIO); | |
| 1100 | KKASSERT(vp->v_rdev == NULL); | |
| 5fd012e0 | 1101 | vp->v_rdev = reference_dev(dev); |
| 3b998fa9 | 1102 | lwkt_gettoken(&spechash_token); |
| 0de08e6d | 1103 | SLIST_INSERT_HEAD(&dev->si_hlist, vp, v_cdevnext); |
| 3b998fa9 | 1104 | lwkt_reltoken(&spechash_token); |
| 5fd012e0 MD |
1105 | return(0); |
| 1106 | } | |
| 984263bc | 1107 | |
| 5fd012e0 MD |
1108 | void |
| 1109 | v_release_rdev(struct vnode *vp) | |
| 1110 | { | |
| b13267a5 | 1111 | cdev_t dev; |
| 984263bc | 1112 | |
| 5fd012e0 | 1113 | if ((dev = vp->v_rdev) != NULL) { |
| 3b998fa9 | 1114 | lwkt_gettoken(&spechash_token); |
| 0de08e6d | 1115 | SLIST_REMOVE(&dev->si_hlist, vp, vnode, v_cdevnext); |
| 5fd012e0 | 1116 | vp->v_rdev = NULL; |
| 5fd012e0 | 1117 | release_dev(dev); |
| 3b998fa9 | 1118 | lwkt_reltoken(&spechash_token); |
| 984263bc | 1119 | } |
| 984263bc MD |
1120 | } |
| 1121 | ||
| 1122 | /* | |
| b13267a5 | 1123 | * Add a vnode to the alias list hung off the cdev_t. We only associate |
| 5fd012e0 MD |
1124 | * the device number with the vnode. The actual device is not associated |
| 1125 | * until the vnode is opened (usually in spec_open()), and will be | |
| 1126 | * disassociated on last close. | |
| 984263bc | 1127 | */ |
| 5fd012e0 | 1128 | void |
| 0e9b9130 | 1129 | addaliasu(struct vnode *nvp, int x, int y) |
| 984263bc | 1130 | { |
| 5fd012e0 MD |
1131 | if (nvp->v_type != VBLK && nvp->v_type != VCHR) |
| 1132 | panic("addaliasu on non-special vnode"); | |
| 0e9b9130 MD |
1133 | nvp->v_umajor = x; |
| 1134 | nvp->v_uminor = y; | |
| 984263bc MD |
1135 | } |
| 1136 | ||
| 1137 | /* | |
| cf683bae MD |
1138 | * Simple call that a filesystem can make to try to get rid of a |
| 1139 | * vnode. It will fail if anyone is referencing the vnode (including | |
| 1140 | * the caller). | |
| 1141 | * | |
| 1142 | * The filesystem can check whether its in-memory inode structure still | |
| 1143 | * references the vp on return. | |
| 1144 | */ | |
| 1145 | void | |
| 1146 | vclean_unlocked(struct vnode *vp) | |
| 1147 | { | |
| 1148 | vx_get(vp); | |
| 1149 | if (sysref_isactive(&vp->v_sysref) == 0) | |
| 2b4ed70b | 1150 | vgone_vxlocked(vp); |
| cf683bae MD |
1151 | vx_put(vp); |
| 1152 | } | |
| 1153 | ||
| 1154 | /* | |
| 5fd012e0 MD |
1155 | * Disassociate a vnode from its underlying filesystem. |
| 1156 | * | |
| 3c37c940 MD |
1157 | * The vnode must be VX locked and referenced. In all normal situations |
| 1158 | * there are no active references. If vclean_vxlocked() is called while | |
| 1159 | * there are active references, the vnode is being ripped out and we have | |
| 1160 | * to call VOP_CLOSE() as appropriate before we can reclaim it. | |
| 984263bc | 1161 | */ |
| 5fd012e0 | 1162 | void |
| 3c37c940 | 1163 | vclean_vxlocked(struct vnode *vp, int flags) |
| 984263bc MD |
1164 | { |
| 1165 | int active; | |
| 8ddc6004 | 1166 | int n; |
| 7540ab49 | 1167 | vm_object_t object; |
| 28271622 | 1168 | struct namecache *ncp; |
| 984263bc MD |
1169 | |
| 1170 | /* | |
| 5fd012e0 | 1171 | * If the vnode has already been reclaimed we have nothing to do. |
| 984263bc | 1172 | */ |
| 3c37c940 | 1173 | if (vp->v_flag & VRECLAIMED) |
| 5fd012e0 | 1174 | return; |
| 2247fe02 | 1175 | vsetflags(vp, VRECLAIMED); |
| 984263bc | 1176 | |
| 28271622 MD |
1177 | if (verbose_reclaims) { |
| 1178 | if ((ncp = TAILQ_FIRST(&vp->v_namecache)) != NULL) | |
| 1179 | kprintf("Debug: reclaim %p %s\n", vp, ncp->nc_name); | |
| 1180 | } | |
| 1181 | ||
| 984263bc | 1182 | /* |
| 5fd012e0 | 1183 | * Scrap the vfs cache |
| 984263bc | 1184 | */ |
| 6b008938 | 1185 | while (cache_inval_vp(vp, 0) != 0) { |
| 28271622 MD |
1186 | kprintf("Warning: vnode %p clean/cache_resolution " |
| 1187 | "race detected\n", vp); | |
| 25cb3304 MD |
1188 | tsleep(vp, 0, "vclninv", 2); |
| 1189 | } | |
| 41a01a4d | 1190 | |
| 984263bc | 1191 | /* |
| 5fd012e0 MD |
1192 | * Check to see if the vnode is in use. If so we have to reference it |
| 1193 | * before we clean it out so that its count cannot fall to zero and | |
| 1194 | * generate a race against ourselves to recycle it. | |
| 984263bc | 1195 | */ |
| 3c37c940 | 1196 | active = sysref_isactive(&vp->v_sysref); |
| 984263bc MD |
1197 | |
| 1198 | /* | |
| 5fd012e0 | 1199 | * Clean out any buffers associated with the vnode and destroy its |
| 7540ab49 | 1200 | * object, if it has one. |
| 984263bc | 1201 | */ |
| 87de5057 | 1202 | vinvalbuf(vp, V_SAVE, 0, 0); |
| 7540ab49 | 1203 | |
| 984263bc | 1204 | /* |
| 8ddc6004 MD |
1205 | * If purging an active vnode (typically during a forced unmount |
| 1206 | * or reboot), it must be closed and deactivated before being | |
| 1207 | * reclaimed. This isn't really all that safe, but what can | |
| 1208 | * we do? XXX. | |
| 5fd012e0 MD |
1209 | * |
| 1210 | * Note that neither of these routines unlocks the vnode. | |
| 984263bc | 1211 | */ |
| 8ddc6004 MD |
1212 | if (active && (flags & DOCLOSE)) { |
| 1213 | while ((n = vp->v_opencount) != 0) { | |
| 1214 | if (vp->v_writecount) | |
| 87de5057 | 1215 | VOP_CLOSE(vp, FWRITE|FNONBLOCK); |
| 8ddc6004 | 1216 | else |
| 87de5057 | 1217 | VOP_CLOSE(vp, FNONBLOCK); |
| 8ddc6004 | 1218 | if (vp->v_opencount == n) { |
| 6ea70f76 | 1219 | kprintf("Warning: unable to force-close" |
| 8ddc6004 MD |
1220 | " vnode %p\n", vp); |
| 1221 | break; | |
| 1222 | } | |
| 1223 | } | |
| 5fd012e0 MD |
1224 | } |
| 1225 | ||
| 1226 | /* | |
| 64e0b2d3 | 1227 | * If the vnode has not been deactivated, deactivated it. Deactivation |
| e3bc9a94 MD |
1228 | * can create new buffers and VM pages so we have to call vinvalbuf() |
| 1229 | * again to make sure they all get flushed. | |
| 1230 | * | |
| 1231 | * This can occur if a file with a link count of 0 needs to be | |
| 1232 | * truncated. | |
| 2247fe02 MD |
1233 | * |
| 1234 | * If the vnode is already dead don't try to deactivate it. | |
| 5fd012e0 MD |
1235 | */ |
| 1236 | if ((vp->v_flag & VINACTIVE) == 0) { | |
| 2247fe02 MD |
1237 | vsetflags(vp, VINACTIVE); |
| 1238 | if (vp->v_mount) | |
| 1239 | VOP_INACTIVE(vp); | |
| e3bc9a94 MD |
1240 | vinvalbuf(vp, V_SAVE, 0, 0); |
| 1241 | } | |
| 1242 | ||
| 1243 | /* | |
| 1244 | * If the vnode has an object, destroy it. | |
| 1245 | */ | |
| b12defdc MD |
1246 | while ((object = vp->v_object) != NULL) { |
| 1247 | vm_object_hold(object); | |
| 1248 | if (object == vp->v_object) | |
| 1249 | break; | |
| 1250 | vm_object_drop(object); | |
| 1251 | } | |
| 1252 | ||
| 398c240d | 1253 | if (object != NULL) { |
| e3bc9a94 | 1254 | if (object->ref_count == 0) { |
| b12defdc | 1255 | if ((object->flags & OBJ_DEAD) == 0) |
| e3bc9a94 | 1256 | vm_object_terminate(object); |
| b12defdc | 1257 | vm_object_drop(object); |
| 212f39f5 | 1258 | vclrflags(vp, VOBJBUF); |
| e3bc9a94 MD |
1259 | } else { |
| 1260 | vm_pager_deallocate(object); | |
| 212f39f5 | 1261 | vclrflags(vp, VOBJBUF); |
| b12defdc | 1262 | vm_object_drop(object); |
| e3bc9a94 | 1263 | } |
| 984263bc | 1264 | } |
| e3bc9a94 MD |
1265 | KKASSERT((vp->v_flag & VOBJBUF) == 0); |
| 1266 | ||
| 984263bc | 1267 | /* |
| 2247fe02 | 1268 | * Reclaim the vnode if not already dead. |
| 984263bc | 1269 | */ |
| 2247fe02 | 1270 | if (vp->v_mount && VOP_RECLAIM(vp)) |
| 984263bc MD |
1271 | panic("vclean: cannot reclaim"); |
| 1272 | ||
| 984263bc MD |
1273 | /* |
| 1274 | * Done with purge, notify sleepers of the grim news. | |
| 1275 | */ | |
| 66a1ddf5 | 1276 | vp->v_ops = &dead_vnode_vops_p; |
| 22a90887 | 1277 | vn_gone(vp); |
| 984263bc | 1278 | vp->v_tag = VT_NON; |
| 64e0b2d3 MD |
1279 | |
| 1280 | /* | |
| 1281 | * If we are destroying an active vnode, reactivate it now that | |
| 1282 | * we have reassociated it with deadfs. This prevents the system | |
| 1283 | * from crashing on the vnode due to it being unexpectedly marked | |
| 1284 | * as inactive or reclaimed. | |
| 1285 | */ | |
| 1286 | if (active && (flags & DOCLOSE)) { | |
| 2247fe02 | 1287 | vclrflags(vp, VINACTIVE | VRECLAIMED); |
| 64e0b2d3 | 1288 | } |
| 984263bc MD |
1289 | } |
| 1290 | ||
| 1291 | /* | |
| 1292 | * Eliminate all activity associated with the requested vnode | |
| 1293 | * and with all vnodes aliased to the requested vnode. | |
| dd98570a | 1294 | * |
| b8477cda | 1295 | * The vnode must be referenced but should not be locked. |
| 984263bc MD |
1296 | */ |
| 1297 | int | |
| b8477cda | 1298 | vrevoke(struct vnode *vp, struct ucred *cred) |
| 984263bc | 1299 | { |
| b8477cda | 1300 | struct vnode *vq; |
| a32446b7 | 1301 | struct vnode *vqn; |
| b13267a5 | 1302 | cdev_t dev; |
| b8477cda | 1303 | int error; |
| e4c9c0c8 MD |
1304 | |
| 1305 | /* | |
| 1306 | * If the vnode has a device association, scrap all vnodes associated | |
| 1307 | * with the device. Don't let the device disappear on us while we | |
| 1308 | * are scrapping the vnodes. | |
| 5fd012e0 MD |
1309 | * |
| 1310 | * The passed vp will probably show up in the list, do not VX lock | |
| 1311 | * it twice! | |
| a32446b7 MD |
1312 | * |
| 1313 | * Releasing the vnode's rdev here can mess up specfs's call to | |
| 1314 | * device close, so don't do it. The vnode has been disassociated | |
| 1315 | * and the device will be closed after the last ref on the related | |
| 1316 | * fp goes away (if not still open by e.g. the kernel). | |
| e4c9c0c8 | 1317 | */ |
| b8477cda MD |
1318 | if (vp->v_type != VCHR) { |
| 1319 | error = fdrevoke(vp, DTYPE_VNODE, cred); | |
| 1320 | return (error); | |
| 1321 | } | |
| e4c9c0c8 | 1322 | if ((dev = vp->v_rdev) == NULL) { |
| cd29885a | 1323 | return(0); |
| e4c9c0c8 MD |
1324 | } |
| 1325 | reference_dev(dev); | |
| 3b998fa9 | 1326 | lwkt_gettoken(&spechash_token); |
| a32446b7 MD |
1327 | |
| 1328 | vqn = SLIST_FIRST(&dev->si_hlist); | |
| 1329 | if (vqn) | |
| 1330 | vref(vqn); | |
| 1331 | while ((vq = vqn) != NULL) { | |
| 1332 | vqn = SLIST_NEXT(vqn, v_cdevnext); | |
| 1333 | if (vqn) | |
| 1334 | vref(vqn); | |
| b8477cda | 1335 | fdrevoke(vq, DTYPE_VNODE, cred); |
| a32446b7 | 1336 | /*v_release_rdev(vq);*/ |
| b8477cda | 1337 | vrele(vq); |
| 984263bc | 1338 | } |
| 3b998fa9 | 1339 | lwkt_reltoken(&spechash_token); |
| a32446b7 | 1340 | dev_drevoke(dev); |
| 9b823501 | 1341 | release_dev(dev); |
| 984263bc MD |
1342 | return (0); |
| 1343 | } | |
| 1344 | ||
| 1345 | /* | |
| 3c37c940 MD |
1346 | * This is called when the object underlying a vnode is being destroyed, |
| 1347 | * such as in a remove(). Try to recycle the vnode immediately if the | |
| 1348 | * only active reference is our reference. | |
| c0c70b27 MD |
1349 | * |
| 1350 | * Directory vnodes in the namecache with children cannot be immediately | |
| 1351 | * recycled because numerous VOP_N*() ops require them to be stable. | |
| 1b7df30a MD |
1352 | * |
| 1353 | * To avoid recursive recycling from VOP_INACTIVE implemenetations this | |
| 1354 | * function is a NOP if VRECLAIMED is already set. | |
| 984263bc MD |
1355 | */ |
| 1356 | int | |
| 87de5057 | 1357 | vrecycle(struct vnode *vp) |
| 984263bc | 1358 | { |
| 1b7df30a | 1359 | if (vp->v_sysref.refcnt <= 1 && (vp->v_flag & VRECLAIMED) == 0) { |
| c0c70b27 MD |
1360 | if (cache_inval_vp_nonblock(vp)) |
| 1361 | return(0); | |
| 3c37c940 | 1362 | vgone_vxlocked(vp); |
| 984263bc MD |
1363 | return (1); |
| 1364 | } | |
| 984263bc MD |
1365 | return (0); |
| 1366 | } | |
| 1367 | ||
| 1368 | /* | |
| 2ec4b00d MD |
1369 | * Return the maximum I/O size allowed for strategy calls on VP. |
| 1370 | * | |
| 1371 | * If vp is VCHR or VBLK we dive the device, otherwise we use | |
| 1372 | * the vp's mount info. | |
| 1373 | */ | |
| 1374 | int | |
| 1375 | vmaxiosize(struct vnode *vp) | |
| 1376 | { | |
| 1377 | if (vp->v_type == VBLK || vp->v_type == VCHR) { | |
| 1378 | return(vp->v_rdev->si_iosize_max); | |
| 1379 | } else { | |
| 1380 | return(vp->v_mount->mnt_iosize_max); | |
| 1381 | } | |
| 1382 | } | |
| 1383 | ||
| 1384 | /* | |
| 5fd012e0 MD |
1385 | * Eliminate all activity associated with a vnode in preparation for reuse. |
| 1386 | * | |
| 57ac0c99 MD |
1387 | * The vnode must be VX locked and refd and will remain VX locked and refd |
| 1388 | * on return. This routine may be called with the vnode in any state, as | |
| 1389 | * long as it is VX locked. The vnode will be cleaned out and marked | |
| 1390 | * VRECLAIMED but will not actually be reused until all existing refs and | |
| 1391 | * holds go away. | |
| 5fd012e0 MD |
1392 | * |
| 1393 | * NOTE: This routine may be called on a vnode which has not yet been | |
| 1394 | * already been deactivated (VOP_INACTIVE), or on a vnode which has | |
| 1395 | * already been reclaimed. | |
| 1396 | * | |
| 1397 | * This routine is not responsible for placing us back on the freelist. | |
| 1398 | * Instead, it happens automatically when the caller releases the VX lock | |
| 1399 | * (assuming there aren't any other references). | |
| 984263bc | 1400 | */ |
| e3332475 | 1401 | void |
| 3c37c940 | 1402 | vgone_vxlocked(struct vnode *vp) |
| e3332475 | 1403 | { |
| 984263bc | 1404 | /* |
| 5fd012e0 | 1405 | * assert that the VX lock is held. This is an absolute requirement |
| 3c37c940 | 1406 | * now for vgone_vxlocked() to be called. |
| 984263bc | 1407 | */ |
| 5fd012e0 | 1408 | KKASSERT(vp->v_lock.lk_exclusivecount == 1); |
| 984263bc | 1409 | |
| 2247fe02 MD |
1410 | get_mplock(); |
| 1411 | ||
| 984263bc | 1412 | /* |
| 5fd012e0 | 1413 | * Clean out the filesystem specific data and set the VRECLAIMED |
| e3332475 | 1414 | * bit. Also deactivate the vnode if necessary. |
| 984263bc | 1415 | */ |
| 3c37c940 | 1416 | vclean_vxlocked(vp, DOCLOSE); |
| 984263bc MD |
1417 | |
| 1418 | /* | |
| 1419 | * Delete from old mount point vnode list, if on one. | |
| 1420 | */ | |
| 1b7df30a MD |
1421 | if (vp->v_mount != NULL) { |
| 1422 | KKASSERT(vp->v_data == NULL); | |
| 5fd012e0 | 1423 | insmntque(vp, NULL); |
| 1b7df30a | 1424 | } |
| dd98570a | 1425 | |
| 984263bc MD |
1426 | /* |
| 1427 | * If special device, remove it from special device alias list | |
| 1fbb5fc0 MD |
1428 | * if it is on one. This should normally only occur if a vnode is |
| 1429 | * being revoked as the device should otherwise have been released | |
| 1430 | * naturally. | |
| 984263bc MD |
1431 | */ |
| 1432 | if ((vp->v_type == VBLK || vp->v_type == VCHR) && vp->v_rdev != NULL) { | |
| e4c9c0c8 | 1433 | v_release_rdev(vp); |
| 984263bc MD |
1434 | } |
| 1435 | ||
| 1436 | /* | |
| 5fd012e0 | 1437 | * Set us to VBAD |
| 984263bc | 1438 | */ |
| 984263bc | 1439 | vp->v_type = VBAD; |
| 2247fe02 | 1440 | rel_mplock(); |
| 984263bc MD |
1441 | } |
| 1442 | ||
| 1443 | /* | |
| 1444 | * Lookup a vnode by device number. | |
| 3875f5b0 MD |
1445 | * |
| 1446 | * Returns non-zero and *vpp set to a vref'd vnode on success. | |
| 1447 | * Returns zero on failure. | |
| 984263bc MD |
1448 | */ |
| 1449 | int | |
| b13267a5 | 1450 | vfinddev(cdev_t dev, enum vtype type, struct vnode **vpp) |
| 984263bc MD |
1451 | { |
| 1452 | struct vnode *vp; | |
| 1453 | ||
| 3b998fa9 | 1454 | lwkt_gettoken(&spechash_token); |
| 0de08e6d | 1455 | SLIST_FOREACH(vp, &dev->si_hlist, v_cdevnext) { |
| 984263bc MD |
1456 | if (type == vp->v_type) { |
| 1457 | *vpp = vp; | |
| 3875f5b0 | 1458 | vref(vp); |
| 3b998fa9 | 1459 | lwkt_reltoken(&spechash_token); |
| 984263bc MD |
1460 | return (1); |
| 1461 | } | |
| 1462 | } | |
| 3b998fa9 | 1463 | lwkt_reltoken(&spechash_token); |
| 984263bc MD |
1464 | return (0); |
| 1465 | } | |
| 1466 | ||
| 1467 | /* | |
| e4c9c0c8 MD |
1468 | * Calculate the total number of references to a special device. This |
| 1469 | * routine may only be called for VBLK and VCHR vnodes since v_rdev is | |
| 028066b1 | 1470 | * an overloaded field. Since udev2dev can now return NULL, we have |
| e4c9c0c8 | 1471 | * to check for a NULL v_rdev. |
| 984263bc MD |
1472 | */ |
| 1473 | int | |
| b13267a5 | 1474 | count_dev(cdev_t dev) |
| 984263bc | 1475 | { |
| e4c9c0c8 MD |
1476 | struct vnode *vp; |
| 1477 | int count = 0; | |
| 984263bc | 1478 | |
| e4c9c0c8 | 1479 | if (SLIST_FIRST(&dev->si_hlist)) { |
| 3b998fa9 | 1480 | lwkt_gettoken(&spechash_token); |
| 0de08e6d | 1481 | SLIST_FOREACH(vp, &dev->si_hlist, v_cdevnext) { |
| 9b823501 | 1482 | count += vp->v_opencount; |
| e4c9c0c8 | 1483 | } |
| 3b998fa9 | 1484 | lwkt_reltoken(&spechash_token); |
| e4c9c0c8 MD |
1485 | } |
| 1486 | return(count); | |
| 984263bc MD |
1487 | } |
| 1488 | ||
| 984263bc | 1489 | int |
| e4c9c0c8 MD |
1490 | vcount(struct vnode *vp) |
| 1491 | { | |
| 1492 | if (vp->v_rdev == NULL) | |
| 1493 | return(0); | |
| 1494 | return(count_dev(vp->v_rdev)); | |
| 984263bc MD |
1495 | } |
| 1496 | ||
| 1497 | /* | |
| 1c843a13 MD |
1498 | * Initialize VMIO for a vnode. This routine MUST be called before a |
| 1499 | * VFS can issue buffer cache ops on a vnode. It is typically called | |
| 1500 | * when a vnode is initialized from its inode. | |
| 7540ab49 MD |
1501 | */ |
| 1502 | int | |
| b0d18f7d | 1503 | vinitvmio(struct vnode *vp, off_t filesize, int blksize, int boff) |
| 7540ab49 | 1504 | { |
| 7540ab49 MD |
1505 | vm_object_t object; |
| 1506 | int error = 0; | |
| 1507 | ||
| 1508 | retry: | |
| b12defdc MD |
1509 | while ((object = vp->v_object) != NULL) { |
| 1510 | vm_object_hold(object); | |
| 1511 | if (object == vp->v_object) | |
| 1512 | break; | |
| 1513 | vm_object_drop(object); | |
| 1514 | } | |
| 1515 | ||
| 1516 | if (object == NULL) { | |
| b0d18f7d | 1517 | object = vnode_pager_alloc(vp, filesize, 0, 0, blksize, boff); |
| b12defdc | 1518 | |
| 7540ab49 MD |
1519 | /* |
| 1520 | * Dereference the reference we just created. This assumes | |
| 1521 | * that the object is associated with the vp. | |
| 1522 | */ | |
| b12defdc | 1523 | vm_object_hold(object); |
| 7540ab49 | 1524 | object->ref_count--; |
| 3c37c940 | 1525 | vrele(vp); |
| 7540ab49 MD |
1526 | } else { |
| 1527 | if (object->flags & OBJ_DEAD) { | |
| a11aaa81 | 1528 | vn_unlock(vp); |
| 2de4f77e MD |
1529 | if (vp->v_object == object) |
| 1530 | vm_object_dead_sleep(object, "vodead"); | |
| ca466bae | 1531 | vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); |
| b12defdc | 1532 | vm_object_drop(object); |
| 7540ab49 MD |
1533 | goto retry; |
| 1534 | } | |
| 1535 | } | |
| 1536 | KASSERT(vp->v_object != NULL, ("vinitvmio: NULL object")); | |
| 2247fe02 | 1537 | vsetflags(vp, VOBJBUF); |
| b12defdc | 1538 | vm_object_drop(object); |
| 2de4f77e | 1539 | |
| 7540ab49 MD |
1540 | return (error); |
| 1541 | } | |
| 1542 | ||
| 1543 | ||
| 1544 | /* | |
| 984263bc MD |
1545 | * Print out a description of a vnode. |
| 1546 | */ | |
| 1547 | static char *typename[] = | |
| 1548 | {"VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD"}; | |
| 1549 | ||
| 1550 | void | |
| dd98570a | 1551 | vprint(char *label, struct vnode *vp) |
| 984263bc MD |
1552 | { |
| 1553 | char buf[96]; | |
| 1554 | ||
| 1555 | if (label != NULL) | |
| 6ea70f76 | 1556 | kprintf("%s: %p: ", label, (void *)vp); |
| 984263bc | 1557 | else |
| 6ea70f76 | 1558 | kprintf("%p: ", (void *)vp); |
| 3c37c940 MD |
1559 | kprintf("type %s, sysrefs %d, writecount %d, holdcnt %d,", |
| 1560 | typename[vp->v_type], | |
| 1561 | vp->v_sysref.refcnt, vp->v_writecount, vp->v_auxrefs); | |
| 984263bc MD |
1562 | buf[0] = '\0'; |
| 1563 | if (vp->v_flag & VROOT) | |
| 1564 | strcat(buf, "|VROOT"); | |
| 67863d04 MD |
1565 | if (vp->v_flag & VPFSROOT) |
| 1566 | strcat(buf, "|VPFSROOT"); | |
| 984263bc MD |
1567 | if (vp->v_flag & VTEXT) |
| 1568 | strcat(buf, "|VTEXT"); | |
| 1569 | if (vp->v_flag & VSYSTEM) | |
| 1570 | strcat(buf, "|VSYSTEM"); | |
| 984263bc MD |
1571 | if (vp->v_flag & VFREE) |
| 1572 | strcat(buf, "|VFREE"); | |
| 1573 | if (vp->v_flag & VOBJBUF) | |
| 1574 | strcat(buf, "|VOBJBUF"); | |
| 1575 | if (buf[0] != '\0') | |
| 6ea70f76 | 1576 | kprintf(" flags (%s)", &buf[1]); |
| 984263bc | 1577 | if (vp->v_data == NULL) { |
| 6ea70f76 | 1578 | kprintf("\n"); |
| 984263bc | 1579 | } else { |
| 6ea70f76 | 1580 | kprintf("\n\t"); |
| 984263bc MD |
1581 | VOP_PRINT(vp); |
| 1582 | } | |
| 1583 | } | |
| 1584 | ||
| 3b0783db SK |
1585 | /* |
| 1586 | * Do the usual access checking. | |
| 1587 | * file_mode, uid and gid are from the vnode in question, | |
| 1588 | * while acc_mode and cred are from the VOP_ACCESS parameter list | |
| 1589 | */ | |
| 1590 | int | |
| 1591 | vaccess(enum vtype type, mode_t file_mode, uid_t uid, gid_t gid, | |
| 1592 | mode_t acc_mode, struct ucred *cred) | |
| 1593 | { | |
| 1594 | mode_t mask; | |
| aa8969cf | 1595 | int ismember; |
| 3b0783db SK |
1596 | |
| 1597 | /* | |
| 1598 | * Super-user always gets read/write access, but execute access depends | |
| 1599 | * on at least one execute bit being set. | |
| 1600 | */ | |
| 1601 | if (priv_check_cred(cred, PRIV_ROOT, 0) == 0) { | |
| 1602 | if ((acc_mode & VEXEC) && type != VDIR && | |
| 1603 | (file_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0) | |
| 1604 | return (EACCES); | |
| 1605 | return (0); | |
| 1606 | } | |
| 1607 | ||
| 1608 | mask = 0; | |
| 1609 | ||
| 1610 | /* Otherwise, check the owner. */ | |
| 1611 | if (cred->cr_uid == uid) { | |
| 1612 | if (acc_mode & VEXEC) | |
| 1613 | mask |= S_IXUSR; | |
| 1614 | if (acc_mode & VREAD) | |
| 1615 | mask |= S_IRUSR; | |
| 1616 | if (acc_mode & VWRITE) | |
| 1617 | mask |= S_IWUSR; | |
| 1618 | return ((file_mode & mask) == mask ? 0 : EACCES); | |
| 1619 | } | |
| 1620 | ||
| 1621 | /* Otherwise, check the groups. */ | |
| 1622 | ismember = groupmember(gid, cred); | |
| 1623 | if (cred->cr_svgid == gid || ismember) { | |
| 1624 | if (acc_mode & VEXEC) | |
| 1625 | mask |= S_IXGRP; | |
| 1626 | if (acc_mode & VREAD) | |
| 1627 | mask |= S_IRGRP; | |
| 1628 | if (acc_mode & VWRITE) | |
| 1629 | mask |= S_IWGRP; | |
| 1630 | return ((file_mode & mask) == mask ? 0 : EACCES); | |
| 1631 | } | |
| 1632 | ||
| 1633 | /* Otherwise, check everyone else. */ | |
| 1634 | if (acc_mode & VEXEC) | |
| 1635 | mask |= S_IXOTH; | |
| 1636 | if (acc_mode & VREAD) | |
| 1637 | mask |= S_IROTH; | |
| 1638 | if (acc_mode & VWRITE) | |
| 1639 | mask |= S_IWOTH; | |
| 1640 | return ((file_mode & mask) == mask ? 0 : EACCES); | |
| 1641 | } | |
| 1642 | ||
| 984263bc MD |
1643 | #ifdef DDB |
| 1644 | #include <ddb/ddb.h> | |
| 861905fb MD |
1645 | |
| 1646 | static int db_show_locked_vnodes(struct mount *mp, void *data); | |
| 1647 | ||
| 984263bc MD |
1648 | /* |
| 1649 | * List all of the locked vnodes in the system. | |
| 1650 | * Called when debugging the kernel. | |
| 1651 | */ | |
| 1652 | DB_SHOW_COMMAND(lockedvnodes, lockedvnodes) | |
| 1653 | { | |
| 6ea70f76 | 1654 | kprintf("Locked vnodes\n"); |
| 861905fb MD |
1655 | mountlist_scan(db_show_locked_vnodes, NULL, |
| 1656 | MNTSCAN_FORWARD|MNTSCAN_NOBUSY); | |
| 1657 | } | |
| 1658 | ||
| 1659 | static int | |
| 1660 | db_show_locked_vnodes(struct mount *mp, void *data __unused) | |
| 1661 | { | |
| 984263bc MD |
1662 | struct vnode *vp; |
| 1663 | ||
| 861905fb | 1664 | TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes) { |
| a11aaa81 | 1665 | if (vn_islocked(vp)) |
| 60233e58 | 1666 | vprint(NULL, vp); |
| 984263bc | 1667 | } |
| 861905fb | 1668 | return(0); |
| 984263bc MD |
1669 | } |
| 1670 | #endif | |
| 1671 | ||
| 1672 | /* | |
| 1673 | * Top level filesystem related information gathering. | |
| 1674 | */ | |
| 402ed7e1 | 1675 | static int sysctl_ovfs_conf (SYSCTL_HANDLER_ARGS); |
| 984263bc MD |
1676 | |
| 1677 | static int | |
| 1678 | vfs_sysctl(SYSCTL_HANDLER_ARGS) | |
| 1679 | { | |
| 1680 | int *name = (int *)arg1 - 1; /* XXX */ | |
| 1681 | u_int namelen = arg2 + 1; /* XXX */ | |
| 1682 | struct vfsconf *vfsp; | |
| 2613053d | 1683 | int maxtypenum; |
| 984263bc MD |
1684 | |
| 1685 | #if 1 || defined(COMPAT_PRELITE2) | |
| 1686 | /* Resolve ambiguity between VFS_VFSCONF and VFS_GENERIC. */ | |
| 1687 | if (namelen == 1) | |
| 1688 | return (sysctl_ovfs_conf(oidp, arg1, arg2, req)); | |
| 1689 | #endif | |
| 1690 | ||
| 1691 | #ifdef notyet | |
| 1692 | /* all sysctl names at this level are at least name and field */ | |
| 1693 | if (namelen < 2) | |
| 1694 | return (ENOTDIR); /* overloaded */ | |
| 1695 | if (name[0] != VFS_GENERIC) { | |
| 2613053d | 1696 | vfsp = vfsconf_find_by_typenum(name[0]); |
| 984263bc MD |
1697 | if (vfsp == NULL) |
| 1698 | return (EOPNOTSUPP); | |
| 1699 | return ((*vfsp->vfc_vfsops->vfs_sysctl)(&name[1], namelen - 1, | |
| 1700 | oldp, oldlenp, newp, newlen, p)); | |
| 1701 | } | |
| 1702 | #endif | |
| 1703 | switch (name[1]) { | |
| 1704 | case VFS_MAXTYPENUM: | |
| 1705 | if (namelen != 2) | |
| 1706 | return (ENOTDIR); | |
| 2613053d MN |
1707 | maxtypenum = vfsconf_get_maxtypenum(); |
| 1708 | return (SYSCTL_OUT(req, &maxtypenum, sizeof(maxtypenum))); | |
| 984263bc MD |
1709 | case VFS_CONF: |
| 1710 | if (namelen != 3) | |
| 1711 | return (ENOTDIR); /* overloaded */ | |
| 2613053d | 1712 | vfsp = vfsconf_find_by_typenum(name[2]); |
| 984263bc MD |
1713 | if (vfsp == NULL) |
| 1714 | return (EOPNOTSUPP); | |
| 1715 | return (SYSCTL_OUT(req, vfsp, sizeof *vfsp)); | |
| 1716 | } | |
| 1717 | return (EOPNOTSUPP); | |
| 1718 | } | |
| 1719 | ||
| 1720 | SYSCTL_NODE(_vfs, VFS_GENERIC, generic, CTLFLAG_RD, vfs_sysctl, | |
| 1721 | "Generic filesystem"); | |
| 1722 | ||
| 1723 | #if 1 || defined(COMPAT_PRELITE2) | |
| 1724 | ||
| 1725 | static int | |
| 2613053d | 1726 | sysctl_ovfs_conf_iter(struct vfsconf *vfsp, void *data) |
| 984263bc MD |
1727 | { |
| 1728 | int error; | |
| 984263bc | 1729 | struct ovfsconf ovfs; |
| 2613053d MN |
1730 | struct sysctl_req *req = (struct sysctl_req*) data; |
| 1731 | ||
| 1732 | bzero(&ovfs, sizeof(ovfs)); | |
| 1733 | ovfs.vfc_vfsops = vfsp->vfc_vfsops; /* XXX used as flag */ | |
| 1734 | strcpy(ovfs.vfc_name, vfsp->vfc_name); | |
| 1735 | ovfs.vfc_index = vfsp->vfc_typenum; | |
| 1736 | ovfs.vfc_refcount = vfsp->vfc_refcount; | |
| 1737 | ovfs.vfc_flags = vfsp->vfc_flags; | |
| 1738 | error = SYSCTL_OUT(req, &ovfs, sizeof ovfs); | |
| 1739 | if (error) | |
| 1740 | return error; /* abort iteration with error code */ | |
| 1741 | else | |
| 1742 | return 0; /* continue iterating with next element */ | |
| 1743 | } | |
| 984263bc | 1744 | |
| 2613053d MN |
1745 | static int |
| 1746 | sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS) | |
| 1747 | { | |
| 1748 | return vfsconf_each(sysctl_ovfs_conf_iter, (void*)req); | |
| 984263bc MD |
1749 | } |
| 1750 | ||
| 1751 | #endif /* 1 || COMPAT_PRELITE2 */ | |
| 1752 | ||
| 984263bc MD |
1753 | /* |
| 1754 | * Check to see if a filesystem is mounted on a block device. | |
| 1755 | */ | |
| 1756 | int | |
| e4c9c0c8 | 1757 | vfs_mountedon(struct vnode *vp) |
| 984263bc | 1758 | { |
| b13267a5 | 1759 | cdev_t dev; |
| 984263bc | 1760 | |
| 0e9b9130 | 1761 | if ((dev = vp->v_rdev) == NULL) { |
| cd29885a MD |
1762 | /* if (vp->v_type != VBLK) |
| 1763 | dev = get_dev(vp->v_uminor, vp->v_umajor); */ | |
| 0e9b9130 | 1764 | } |
| 028066b1 | 1765 | if (dev != NULL && dev->si_mountpoint) |
| 984263bc MD |
1766 | return (EBUSY); |
| 1767 | return (0); | |
| 1768 | } | |
| 1769 | ||
| 1770 | /* | |
| 1771 | * Unmount all filesystems. The list is traversed in reverse order | |
| 1772 | * of mounting to avoid dependencies. | |
| 1773 | */ | |
| 861905fb MD |
1774 | |
| 1775 | static int vfs_umountall_callback(struct mount *mp, void *data); | |
| 1776 | ||
| 984263bc | 1777 | void |
| dd98570a | 1778 | vfs_unmountall(void) |
| 984263bc | 1779 | { |
| 861905fb | 1780 | int count; |
| 984263bc | 1781 | |
| 861905fb MD |
1782 | do { |
| 1783 | count = mountlist_scan(vfs_umountall_callback, | |
| acde96db | 1784 | NULL, MNTSCAN_REVERSE|MNTSCAN_NOBUSY); |
| 861905fb MD |
1785 | } while (count); |
| 1786 | } | |
| 1787 | ||
| 1788 | static | |
| 1789 | int | |
| 1790 | vfs_umountall_callback(struct mount *mp, void *data) | |
| 1791 | { | |
| 861905fb MD |
1792 | int error; |
| 1793 | ||
| acde96db | 1794 | error = dounmount(mp, MNT_FORCE); |
| 861905fb MD |
1795 | if (error) { |
| 1796 | mountlist_remove(mp); | |
| 6ea70f76 | 1797 | kprintf("unmount of filesystem mounted from %s failed (", |
| 861905fb MD |
1798 | mp->mnt_stat.f_mntfromname); |
| 1799 | if (error == EBUSY) | |
| 6ea70f76 | 1800 | kprintf("BUSY)\n"); |
| 861905fb | 1801 | else |
| 6ea70f76 | 1802 | kprintf("%d)\n", error); |
| 984263bc | 1803 | } |
| 861905fb | 1804 | return(1); |
| 984263bc MD |
1805 | } |
| 1806 | ||
| 1807 | /* | |
| 177403a9 MD |
1808 | * Checks the mount flags for parameter mp and put the names comma-separated |
| 1809 | * into a string buffer buf with a size limit specified by len. | |
| 1810 | * | |
| 1811 | * It returns the number of bytes written into buf, and (*errorp) will be | |
| 1812 | * set to 0, EINVAL (if passed length is 0), or ENOSPC (supplied buffer was | |
| 1813 | * not large enough). The buffer will be 0-terminated if len was not 0. | |
| 1814 | */ | |
| 177403a9 | 1815 | size_t |
| dad088a5 MD |
1816 | vfs_flagstostr(int flags, const struct mountctl_opt *optp, |
| 1817 | char *buf, size_t len, int *errorp) | |
| 177403a9 MD |
1818 | { |
| 1819 | static const struct mountctl_opt optnames[] = { | |
| 1820 | { MNT_ASYNC, "asynchronous" }, | |
| 1821 | { MNT_EXPORTED, "NFS exported" }, | |
| 1822 | { MNT_LOCAL, "local" }, | |
| 1823 | { MNT_NOATIME, "noatime" }, | |
| 1824 | { MNT_NODEV, "nodev" }, | |
| 1825 | { MNT_NOEXEC, "noexec" }, | |
| 1826 | { MNT_NOSUID, "nosuid" }, | |
| 1827 | { MNT_NOSYMFOLLOW, "nosymfollow" }, | |
| 1828 | { MNT_QUOTA, "with-quotas" }, | |
| 1829 | { MNT_RDONLY, "read-only" }, | |
| 1830 | { MNT_SYNCHRONOUS, "synchronous" }, | |
| 1831 | { MNT_UNION, "union" }, | |
| 1832 | { MNT_NOCLUSTERR, "noclusterr" }, | |
| 1833 | { MNT_NOCLUSTERW, "noclusterw" }, | |
| 1834 | { MNT_SUIDDIR, "suiddir" }, | |
| 1835 | { MNT_SOFTDEP, "soft-updates" }, | |
| dad088a5 MD |
1836 | { MNT_IGNORE, "ignore" }, |
| 1837 | { 0, NULL} | |
| 177403a9 | 1838 | }; |
| 177403a9 MD |
1839 | int bwritten; |
| 1840 | int bleft; | |
| 1841 | int optlen; | |
| eac446c5 | 1842 | int actsize; |
| dad088a5 | 1843 | |
| 177403a9 | 1844 | *errorp = 0; |
| 177403a9 MD |
1845 | bwritten = 0; |
| 1846 | bleft = len - 1; /* leave room for trailing \0 */ | |
| eac446c5 MD |
1847 | |
| 1848 | /* | |
| 1849 | * Checks the size of the string. If it contains | |
| 1850 | * any data, then we will append the new flags to | |
| 1851 | * it. | |
| 1852 | */ | |
| 1853 | actsize = strlen(buf); | |
| 1854 | if (actsize > 0) | |
| 1855 | buf += actsize; | |
| 1856 | ||
| 1857 | /* Default flags if no flags passed */ | |
| 1858 | if (optp == NULL) | |
| 1859 | optp = optnames; | |
| 1860 | ||
| 177403a9 MD |
1861 | if (bleft < 0) { /* degenerate case, 0-length buffer */ |
| 1862 | *errorp = EINVAL; | |
| 1863 | return(0); | |
| 1864 | } | |
| 1865 | ||
| dad088a5 MD |
1866 | for (; flags && optp->o_opt; ++optp) { |
| 1867 | if ((flags & optp->o_opt) == 0) | |
| 177403a9 | 1868 | continue; |
| dad088a5 | 1869 | optlen = strlen(optp->o_name); |
| eac446c5 | 1870 | if (bwritten || actsize > 0) { |
| dad088a5 | 1871 | if (bleft < 2) { |
| 177403a9 MD |
1872 | *errorp = ENOSPC; |
| 1873 | break; | |
| 1874 | } | |
| 1875 | buf[bwritten++] = ','; | |
| dad088a5 MD |
1876 | buf[bwritten++] = ' '; |
| 1877 | bleft -= 2; | |
| 177403a9 MD |
1878 | } |
| 1879 | if (bleft < optlen) { | |
| 1880 | *errorp = ENOSPC; | |
| 1881 | break; | |
| 1882 | } | |
| dad088a5 | 1883 | bcopy(optp->o_name, buf + bwritten, optlen); |
| 177403a9 MD |
1884 | bwritten += optlen; |
| 1885 | bleft -= optlen; | |
| dad088a5 | 1886 | flags &= ~optp->o_opt; |
| 177403a9 MD |
1887 | } |
| 1888 | ||
| 1889 | /* | |
| 1890 | * Space already reserved for trailing \0 | |
| 1891 | */ | |
| 1892 | buf[bwritten] = 0; | |
| 1893 | return (bwritten); | |
| 1894 | } | |
| 1895 | ||
| 177403a9 | 1896 | /* |
| 984263bc MD |
1897 | * Build hash lists of net addresses and hang them off the mount point. |
| 1898 | * Called by ufs_mount() to set up the lists of export addresses. | |
| 1899 | */ | |
| 1900 | static int | |
| dd98570a | 1901 | vfs_hang_addrlist(struct mount *mp, struct netexport *nep, |
| 1aa89f17 | 1902 | const struct export_args *argp) |
| 984263bc | 1903 | { |
| 1fd87d54 RG |
1904 | struct netcred *np; |
| 1905 | struct radix_node_head *rnh; | |
| 1906 | int i; | |
| 984263bc MD |
1907 | struct radix_node *rn; |
| 1908 | struct sockaddr *saddr, *smask = 0; | |
| 1909 | struct domain *dom; | |
| 1910 | int error; | |
| 1911 | ||
| 1912 | if (argp->ex_addrlen == 0) { | |
| 1913 | if (mp->mnt_flag & MNT_DEFEXPORTED) | |
| 1914 | return (EPERM); | |
| 1915 | np = &nep->ne_defexported; | |
| 1916 | np->netc_exflags = argp->ex_flags; | |
| 1917 | np->netc_anon = argp->ex_anon; | |
| 1918 | np->netc_anon.cr_ref = 1; | |
| 1919 | mp->mnt_flag |= MNT_DEFEXPORTED; | |
| 1920 | return (0); | |
| 1921 | } | |
| 1922 | ||
| 0260ddf9 MD |
1923 | if (argp->ex_addrlen < 0 || argp->ex_addrlen > MLEN) |
| 1924 | return (EINVAL); | |
| 1925 | if (argp->ex_masklen < 0 || argp->ex_masklen > MLEN) | |
| 984263bc MD |
1926 | return (EINVAL); |
| 1927 | ||
| 1928 | i = sizeof(struct netcred) + argp->ex_addrlen + argp->ex_masklen; | |
| e7b4468c | 1929 | np = (struct netcred *) kmalloc(i, M_NETADDR, M_WAITOK | M_ZERO); |
| 984263bc MD |
1930 | saddr = (struct sockaddr *) (np + 1); |
| 1931 | if ((error = copyin(argp->ex_addr, (caddr_t) saddr, argp->ex_addrlen))) | |
| 1932 | goto out; | |
| 1933 | if (saddr->sa_len > argp->ex_addrlen) | |
| 1934 | saddr->sa_len = argp->ex_addrlen; | |
| 1935 | if (argp->ex_masklen) { | |
| dd98570a MD |
1936 | smask = (struct sockaddr *)((caddr_t)saddr + argp->ex_addrlen); |
| 1937 | error = copyin(argp->ex_mask, (caddr_t)smask, argp->ex_masklen); | |
| 984263bc MD |
1938 | if (error) |
| 1939 | goto out; | |
| 1940 | if (smask->sa_len > argp->ex_masklen) | |
| 1941 | smask->sa_len = argp->ex_masklen; | |
| 1942 | } | |
| 1943 | i = saddr->sa_family; | |
| 1944 | if ((rnh = nep->ne_rtable[i]) == 0) { | |
| 1945 | /* | |
| 1946 | * Seems silly to initialize every AF when most are not used, | |
| 1947 | * do so on demand here | |
| 1948 | */ | |
| 9c70fe43 | 1949 | SLIST_FOREACH(dom, &domains, dom_next) |
| 984263bc MD |
1950 | if (dom->dom_family == i && dom->dom_rtattach) { |
| 1951 | dom->dom_rtattach((void **) &nep->ne_rtable[i], | |
| 1952 | dom->dom_rtoffset); | |
| 1953 | break; | |
| 1954 | } | |
| 1955 | if ((rnh = nep->ne_rtable[i]) == 0) { | |
| 1956 | error = ENOBUFS; | |
| 1957 | goto out; | |
| 1958 | } | |
| 1959 | } | |
| 2e9572df | 1960 | rn = (*rnh->rnh_addaddr) ((char *) saddr, (char *) smask, rnh, |
| 984263bc MD |
1961 | np->netc_rnodes); |
| 1962 | if (rn == 0 || np != (struct netcred *) rn) { /* already exists */ | |
| 1963 | error = EPERM; | |
| 1964 | goto out; | |
| 1965 | } | |
| 1966 | np->netc_exflags = argp->ex_flags; | |
| 1967 | np->netc_anon = argp->ex_anon; | |
| 1968 | np->netc_anon.cr_ref = 1; | |
| 1969 | return (0); | |
| 1970 | out: | |
| efda3bd0 | 1971 | kfree(np, M_NETADDR); |
| 984263bc MD |
1972 | return (error); |
| 1973 | } | |
| 1974 | ||
| 1975 | /* ARGSUSED */ | |
| 1976 | static int | |
| dd98570a | 1977 | vfs_free_netcred(struct radix_node *rn, void *w) |
| 984263bc | 1978 | { |
| 1fd87d54 | 1979 | struct radix_node_head *rnh = (struct radix_node_head *) w; |
| 984263bc MD |
1980 | |
| 1981 | (*rnh->rnh_deladdr) (rn->rn_key, rn->rn_mask, rnh); | |
| efda3bd0 | 1982 | kfree((caddr_t) rn, M_NETADDR); |
| 984263bc MD |
1983 | return (0); |
| 1984 | } | |
| 1985 | ||
| 1986 | /* | |
| 1987 | * Free the net address hash lists that are hanging off the mount points. | |
| 1988 | */ | |
| 1989 | static void | |
| dd98570a | 1990 | vfs_free_addrlist(struct netexport *nep) |
| 984263bc | 1991 | { |
| 1fd87d54 RG |
1992 | int i; |
| 1993 | struct radix_node_head *rnh; | |
| 984263bc MD |
1994 | |
| 1995 | for (i = 0; i <= AF_MAX; i++) | |
| 1996 | if ((rnh = nep->ne_rtable[i])) { | |
| 1997 | (*rnh->rnh_walktree) (rnh, vfs_free_netcred, | |
| 1998 | (caddr_t) rnh); | |
| efda3bd0 | 1999 | kfree((caddr_t) rnh, M_RTABLE); |
| 984263bc MD |
2000 | nep->ne_rtable[i] = 0; |
| 2001 | } | |
| 2002 | } | |
| 2003 | ||
| 2004 | int | |
| 1aa89f17 MD |
2005 | vfs_export(struct mount *mp, struct netexport *nep, |
| 2006 | const struct export_args *argp) | |
| 984263bc MD |
2007 | { |
| 2008 | int error; | |
| 2009 | ||
| 2010 | if (argp->ex_flags & MNT_DELEXPORT) { | |
| 2011 | if (mp->mnt_flag & MNT_EXPUBLIC) { | |
| 2012 | vfs_setpublicfs(NULL, NULL, NULL); | |
| 2013 | mp->mnt_flag &= ~MNT_EXPUBLIC; | |
| 2014 | } | |
| 2015 | vfs_free_addrlist(nep); | |
| 2016 | mp->mnt_flag &= ~(MNT_EXPORTED | MNT_DEFEXPORTED); | |
| 2017 | } | |
| 2018 | if (argp->ex_flags & MNT_EXPORTED) { | |
| 2019 | if (argp->ex_flags & MNT_EXPUBLIC) { | |
| 2020 | if ((error = vfs_setpublicfs(mp, nep, argp)) != 0) | |
| 2021 | return (error); | |
| 2022 | mp->mnt_flag |= MNT_EXPUBLIC; | |
| 2023 | } | |
| 2024 | if ((error = vfs_hang_addrlist(mp, nep, argp))) | |
| 2025 | return (error); | |
| 2026 | mp->mnt_flag |= MNT_EXPORTED; | |
| 2027 | } | |
| 2028 | return (0); | |
| 2029 | } | |
| 2030 | ||
| 2031 | ||
| 2032 | /* | |
| 2033 | * Set the publicly exported filesystem (WebNFS). Currently, only | |
| 2034 | * one public filesystem is possible in the spec (RFC 2054 and 2055) | |
| 2035 | */ | |
| 2036 | int | |
| dd98570a | 2037 | vfs_setpublicfs(struct mount *mp, struct netexport *nep, |
| 1aa89f17 | 2038 | const struct export_args *argp) |
| 984263bc MD |
2039 | { |
| 2040 | int error; | |
| 2041 | struct vnode *rvp; | |
| 2042 | char *cp; | |
| 2043 | ||
| 2044 | /* | |
| 2045 | * mp == NULL -> invalidate the current info, the FS is | |
| 2046 | * no longer exported. May be called from either vfs_export | |
| 2047 | * or unmount, so check if it hasn't already been done. | |
| 2048 | */ | |
| 2049 | if (mp == NULL) { | |
| 2050 | if (nfs_pub.np_valid) { | |
| 2051 | nfs_pub.np_valid = 0; | |
| 2052 | if (nfs_pub.np_index != NULL) { | |
| 2053 | FREE(nfs_pub.np_index, M_TEMP); | |
| 2054 | nfs_pub.np_index = NULL; | |
| 2055 | } | |
| 2056 | } | |
| 2057 | return (0); | |
| 2058 | } | |
| 2059 | ||
| 2060 | /* | |
| 2061 | * Only one allowed at a time. | |
| 2062 | */ | |
| 2063 | if (nfs_pub.np_valid != 0 && mp != nfs_pub.np_mount) | |
| 2064 | return (EBUSY); | |
| 2065 | ||
| 2066 | /* | |
| 2067 | * Get real filehandle for root of exported FS. | |
| 2068 | */ | |
| 2069 | bzero((caddr_t)&nfs_pub.np_handle, sizeof(nfs_pub.np_handle)); | |
| 2070 | nfs_pub.np_handle.fh_fsid = mp->mnt_stat.f_fsid; | |
| 2071 | ||
| 2072 | if ((error = VFS_ROOT(mp, &rvp))) | |
| 2073 | return (error); | |
| 2074 | ||
| 2075 | if ((error = VFS_VPTOFH(rvp, &nfs_pub.np_handle.fh_fid))) | |
| 2076 | return (error); | |
| 2077 | ||
| 2078 | vput(rvp); | |
| 2079 | ||
| 2080 | /* | |
| 2081 | * If an indexfile was specified, pull it in. | |
| 2082 | */ | |
| 2083 | if (argp->ex_indexfile != NULL) { | |
| b80c9733 JS |
2084 | int namelen; |
| 2085 | ||
| 2086 | error = vn_get_namelen(rvp, &namelen); | |
| 2087 | if (error) | |
| 2088 | return (error); | |
| 2089 | MALLOC(nfs_pub.np_index, char *, namelen, M_TEMP, | |
| 984263bc MD |
2090 | M_WAITOK); |
| 2091 | error = copyinstr(argp->ex_indexfile, nfs_pub.np_index, | |
| 60233e58 | 2092 | namelen, NULL); |
| 984263bc MD |
2093 | if (!error) { |
| 2094 | /* | |
| 2095 | * Check for illegal filenames. | |
| 2096 | */ | |
| 2097 | for (cp = nfs_pub.np_index; *cp; cp++) { | |
| 2098 | if (*cp == '/') { | |
| 2099 | error = EINVAL; | |
| 2100 | break; | |
| 2101 | } | |
| 2102 | } | |
| 2103 | } | |
| 2104 | if (error) { | |
| 2105 | FREE(nfs_pub.np_index, M_TEMP); | |
| 2106 | return (error); | |
| 2107 | } | |
| 2108 | } | |
| 2109 | ||
| 2110 | nfs_pub.np_mount = mp; | |
| 2111 | nfs_pub.np_valid = 1; | |
| 2112 | return (0); | |
| 2113 | } | |
| 2114 | ||
| 2115 | struct netcred * | |
| dd98570a MD |
2116 | vfs_export_lookup(struct mount *mp, struct netexport *nep, |
| 2117 | struct sockaddr *nam) | |
| 984263bc | 2118 | { |
| 1fd87d54 RG |
2119 | struct netcred *np; |
| 2120 | struct radix_node_head *rnh; | |
| 984263bc MD |
2121 | struct sockaddr *saddr; |
| 2122 | ||
| 2123 | np = NULL; | |
| 2124 | if (mp->mnt_flag & MNT_EXPORTED) { | |
| 2125 | /* | |
| 2126 | * Lookup in the export list first. | |
| 2127 | */ | |
| 2128 | if (nam != NULL) { | |
| 2129 | saddr = nam; | |
| 2130 | rnh = nep->ne_rtable[saddr->sa_family]; | |
| 2131 | if (rnh != NULL) { | |
| 2132 | np = (struct netcred *) | |
| 2e9572df | 2133 | (*rnh->rnh_matchaddr)((char *)saddr, |
| 984263bc MD |
2134 | rnh); |
| 2135 | if (np && np->netc_rnodes->rn_flags & RNF_ROOT) | |
| 2136 | np = NULL; | |
| 2137 | } | |
| 2138 | } | |
| 2139 | /* | |
| 2140 | * If no address match, use the default if it exists. | |
| 2141 | */ | |
| 2142 | if (np == NULL && mp->mnt_flag & MNT_DEFEXPORTED) | |
| 2143 | np = &nep->ne_defexported; | |
| 2144 | } | |
| 2145 | return (np); | |
| 2146 | } | |
| 2147 | ||
| 2148 | /* | |
| 41a01a4d MD |
2149 | * perform msync on all vnodes under a mount point. The mount point must |
| 2150 | * be locked. This code is also responsible for lazy-freeing unreferenced | |
| 2151 | * vnodes whos VM objects no longer contain pages. | |
| 2152 | * | |
| 2153 | * NOTE: MNT_WAIT still skips vnodes in the VXLOCK state. | |
| 03a964e9 MD |
2154 | * |
| 2155 | * NOTE: XXX VOP_PUTPAGES and friends requires that the vnode be locked, | |
| 2156 | * but vnode_pager_putpages() doesn't lock the vnode. We have to do it | |
| 2157 | * way up in this high level function. | |
| 984263bc | 2158 | */ |
| 41a01a4d | 2159 | static int vfs_msync_scan1(struct mount *mp, struct vnode *vp, void *data); |
| 5fd012e0 | 2160 | static int vfs_msync_scan2(struct mount *mp, struct vnode *vp, void *data); |
| 41a01a4d | 2161 | |
| 984263bc MD |
2162 | void |
| 2163 | vfs_msync(struct mount *mp, int flags) | |
| 2164 | { | |
| 03a964e9 MD |
2165 | int vmsc_flags; |
| 2166 | ||
| 2bc7505b MD |
2167 | /* |
| 2168 | * tmpfs sets this flag to prevent msync(), sync, and the | |
| 2169 | * filesystem periodic syncer from trying to flush VM pages | |
| 2170 | * to swap. Only pure memory pressure flushes tmpfs VM pages | |
| 2171 | * to swap. | |
| 2172 | */ | |
| 2173 | if (mp->mnt_kern_flag & MNTK_NOMSYNC) | |
| 2174 | return; | |
| 2175 | ||
| 2176 | /* | |
| 2177 | * Ok, scan the vnodes for work. | |
| 2178 | */ | |
| 03a964e9 MD |
2179 | vmsc_flags = VMSC_GETVP; |
| 2180 | if (flags != MNT_WAIT) | |
| 2181 | vmsc_flags |= VMSC_NOWAIT; | |
| 2182 | vmntvnodescan(mp, vmsc_flags, vfs_msync_scan1, vfs_msync_scan2, | |
| 973c11b9 | 2183 | (void *)(intptr_t)flags); |
| 41a01a4d | 2184 | } |
| 984263bc | 2185 | |
| 41a01a4d MD |
2186 | /* |
| 2187 | * scan1 is a fast pre-check. There could be hundreds of thousands of | |
| 2188 | * vnodes, we cannot afford to do anything heavy weight until we have a | |
| 2189 | * fairly good indication that there is work to do. | |
| 2190 | */ | |
| 2191 | static | |
| 2192 | int | |
| 2193 | vfs_msync_scan1(struct mount *mp, struct vnode *vp, void *data) | |
| 2194 | { | |
| 973c11b9 | 2195 | int flags = (int)(intptr_t)data; |
| 984263bc | 2196 | |
| 5fd012e0 | 2197 | if ((vp->v_flag & VRECLAIMED) == 0) { |
| 3c37c940 | 2198 | if (vshouldmsync(vp)) |
| 5fd012e0 | 2199 | return(0); /* call scan2 */ |
| 41a01a4d MD |
2200 | if ((mp->mnt_flag & MNT_RDONLY) == 0 && |
| 2201 | (vp->v_flag & VOBJDIRTY) && | |
| a11aaa81 | 2202 | (flags == MNT_WAIT || vn_islocked(vp) == 0)) { |
| 5fd012e0 | 2203 | return(0); /* call scan2 */ |
| 41a01a4d MD |
2204 | } |
| 2205 | } | |
| 5fd012e0 MD |
2206 | |
| 2207 | /* | |
| 2208 | * do not call scan2, continue the loop | |
| 2209 | */ | |
| 41a01a4d MD |
2210 | return(-1); |
| 2211 | } | |
| 2212 | ||
| 03a964e9 MD |
2213 | /* |
| 2214 | * This callback is handed a locked vnode. | |
| 2215 | */ | |
| 41a01a4d MD |
2216 | static |
| 2217 | int | |
| 5fd012e0 | 2218 | vfs_msync_scan2(struct mount *mp, struct vnode *vp, void *data) |
| 41a01a4d MD |
2219 | { |
| 2220 | vm_object_t obj; | |
| 973c11b9 | 2221 | int flags = (int)(intptr_t)data; |
| 41a01a4d | 2222 | |
| 5fd012e0 | 2223 | if (vp->v_flag & VRECLAIMED) |
| 41a01a4d MD |
2224 | return(0); |
| 2225 | ||
| 7540ab49 MD |
2226 | if ((mp->mnt_flag & MNT_RDONLY) == 0 && (vp->v_flag & VOBJDIRTY)) { |
| 2227 | if ((obj = vp->v_object) != NULL) { | |
| 5fd012e0 MD |
2228 | vm_object_page_clean(obj, 0, 0, |
| 2229 | flags == MNT_WAIT ? OBJPC_SYNC : OBJPC_NOSYNC); | |
| 984263bc MD |
2230 | } |
| 2231 | } | |
| 41a01a4d | 2232 | return(0); |
| 984263bc MD |
2233 | } |
| 2234 | ||
| 2235 | /* | |
| 22a90887 | 2236 | * Wake up anyone interested in vp because it is being revoked. |
| 984263bc MD |
2237 | */ |
| 2238 | void | |
| 22a90887 | 2239 | vn_gone(struct vnode *vp) |
| 984263bc | 2240 | { |
| 3b998fa9 | 2241 | lwkt_gettoken(&vp->v_token); |
| 5b22f1a7 | 2242 | KNOTE(&vp->v_pollinfo.vpi_kqinfo.ki_note, NOTE_REVOKE); |
| 3b998fa9 | 2243 | lwkt_reltoken(&vp->v_token); |
| 984263bc MD |
2244 | } |
| 2245 | ||
| 984263bc | 2246 | /* |
| b13267a5 | 2247 | * extract the cdev_t from a VBLK or VCHR. The vnode must have been opened |
| e4c9c0c8 | 2248 | * (or v_rdev might be NULL). |
| 984263bc | 2249 | */ |
| b13267a5 | 2250 | cdev_t |
| e4c9c0c8 | 2251 | vn_todev(struct vnode *vp) |
| 984263bc MD |
2252 | { |
| 2253 | if (vp->v_type != VBLK && vp->v_type != VCHR) | |
| 028066b1 | 2254 | return (NULL); |
| e4c9c0c8 | 2255 | KKASSERT(vp->v_rdev != NULL); |
| 984263bc MD |
2256 | return (vp->v_rdev); |
| 2257 | } | |
| 2258 | ||
| 2259 | /* | |
| e4c9c0c8 MD |
2260 | * Check if vnode represents a disk device. The vnode does not need to be |
| 2261 | * opened. | |
| 2ad080fe MD |
2262 | * |
| 2263 | * MPALMOSTSAFE | |
| 984263bc MD |
2264 | */ |
| 2265 | int | |
| e4c9c0c8 | 2266 | vn_isdisk(struct vnode *vp, int *errp) |
| 984263bc | 2267 | { |
| b13267a5 | 2268 | cdev_t dev; |
| e4c9c0c8 | 2269 | |
| 0e9b9130 | 2270 | if (vp->v_type != VCHR) { |
| 984263bc MD |
2271 | if (errp != NULL) |
| 2272 | *errp = ENOTBLK; | |
| 2273 | return (0); | |
| 2274 | } | |
| e4c9c0c8 | 2275 | |
| cd29885a | 2276 | dev = vp->v_rdev; |
| 0e9b9130 | 2277 | |
| 028066b1 | 2278 | if (dev == NULL) { |
| 984263bc MD |
2279 | if (errp != NULL) |
| 2280 | *errp = ENXIO; | |
| 2281 | return (0); | |
| 2282 | } | |
| e4c9c0c8 | 2283 | if (dev_is_good(dev) == 0) { |
| 984263bc MD |
2284 | if (errp != NULL) |
| 2285 | *errp = ENXIO; | |
| 2286 | return (0); | |
| 2287 | } | |
| e4c9c0c8 | 2288 | if ((dev_dflags(dev) & D_DISK) == 0) { |
| 984263bc MD |
2289 | if (errp != NULL) |
| 2290 | *errp = ENOTBLK; | |
| 2291 | return (0); | |
| 2292 | } | |
| 2293 | if (errp != NULL) | |
| 2294 | *errp = 0; | |
| 2295 | return (1); | |
| 2296 | } | |
| 2297 | ||
| 5d72d6ed JS |
2298 | int |
| 2299 | vn_get_namelen(struct vnode *vp, int *namelen) | |
| 2300 | { | |
| 973c11b9 MD |
2301 | int error; |
| 2302 | register_t retval[2]; | |
| 5d72d6ed JS |
2303 | |
| 2304 | error = VOP_PATHCONF(vp, _PC_NAME_MAX, retval); | |
| 2305 | if (error) | |
| 2306 | return (error); | |
| 973c11b9 | 2307 | *namelen = (int)retval[0]; |
| 5d72d6ed JS |
2308 | return (0); |
| 2309 | } | |
| fc46f680 JS |
2310 | |
| 2311 | int | |
| b45c5139 MD |
2312 | vop_write_dirent(int *error, struct uio *uio, ino_t d_ino, uint8_t d_type, |
| 2313 | uint16_t d_namlen, const char *d_name) | |
| fc46f680 | 2314 | { |
| 01f31ab3 JS |
2315 | struct dirent *dp; |
| 2316 | size_t len; | |
| fc46f680 | 2317 | |
| 01f31ab3 JS |
2318 | len = _DIRENT_RECLEN(d_namlen); |
| 2319 | if (len > uio->uio_resid) | |
| fc46f680 JS |
2320 | return(1); |
| 2321 | ||
| efda3bd0 | 2322 | dp = kmalloc(len, M_TEMP, M_WAITOK | M_ZERO); |
| 01f31ab3 JS |
2323 | |
| 2324 | dp->d_ino = d_ino; | |
| 2325 | dp->d_namlen = d_namlen; | |
| fc46f680 JS |
2326 | dp->d_type = d_type; |
| 2327 | bcopy(d_name, dp->d_name, d_namlen); | |
| fc46f680 | 2328 | |
| 01f31ab3 JS |
2329 | *error = uiomove((caddr_t)dp, len, uio); |
| 2330 | ||
| efda3bd0 | 2331 | kfree(dp, M_TEMP); |
| fc46f680 JS |
2332 | |
| 2333 | return(0); | |
| 2334 | } | |
| 7540ab49 | 2335 | |
| 349433c9 MD |
2336 | void |
| 2337 | vn_mark_atime(struct vnode *vp, struct thread *td) | |
| 2338 | { | |
| 2339 | struct proc *p = td->td_proc; | |
| 2340 | struct ucred *cred = p ? p->p_ucred : proc0.p_ucred; | |
| 2341 | ||
| 2342 | if ((vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0) { | |
| 2343 | VOP_MARKATIME(vp, cred); | |
| 2344 | } | |
| 2345 | } |