1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1989, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed 8 * to Berkeley by John Heidemann of the UCLA Ficus project. 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. Neither the name of the University nor the names of its contributors 19 * may be used to endorse or promote products derived from this software 20 * without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35 #include <sys/param.h> 36 #include <sys/systm.h> 37 #include <sys/bio.h> 38 #include <sys/buf.h> 39 #include <sys/conf.h> 40 #include <sys/event.h> 41 #include <sys/filio.h> 42 #include <sys/kernel.h> 43 #include <sys/limits.h> 44 #include <sys/lock.h> 45 #include <sys/lockf.h> 46 #include <sys/malloc.h> 47 #include <sys/mount.h> 48 #include <sys/namei.h> 49 #include <sys/rwlock.h> 50 #include <sys/fcntl.h> 51 #include <sys/unistd.h> 52 #include <sys/vnode.h> 53 #include <sys/dirent.h> 54 #include <sys/poll.h> 55 #include <sys/stat.h> 56 #include <security/audit/audit.h> 57 #include <sys/priv.h> 58 59 #include <security/mac/mac_framework.h> 60 61 #include <vm/vm.h> 62 #include <vm/vm_object.h> 63 #include <vm/vm_extern.h> 64 #include <vm/pmap.h> 65 #include <vm/vm_map.h> 66 #include <vm/vm_page.h> 67 #include <vm/vm_pager.h> 68 #include <vm/vnode_pager.h> 69 70 static int vop_nolookup(struct vop_lookup_args *); 71 static int vop_norename(struct vop_rename_args *); 72 static int vop_nostrategy(struct vop_strategy_args *); 73 static int dirent_exists(struct vnode *vp, const char *dirname, 74 struct thread *td); 75 76 static int vop_stdis_text(struct vop_is_text_args *ap); 77 static int vop_stdunset_text(struct vop_unset_text_args *ap); 78 static int vop_stdadd_writecount(struct vop_add_writecount_args *ap); 79 static int vop_stdcopy_file_range(struct vop_copy_file_range_args *ap); 80 static int vop_stdfdatasync(struct vop_fdatasync_args *ap); 81 static int vop_stdgetpages_async(struct vop_getpages_async_args *ap); 82 static int vop_stdread_pgcache(struct vop_read_pgcache_args *ap); 83 static int vop_stdstat(struct vop_stat_args *ap); 84 static int vop_stdvput_pair(struct vop_vput_pair_args *ap); 85 86 /* 87 * This vnode table stores what we want to do if the filesystem doesn't 88 * implement a particular VOP. 89 * 90 * If there is no specific entry here, we will return EOPNOTSUPP. 91 * 92 * Note that every filesystem has to implement either vop_access 93 * or vop_accessx; failing to do so will result in immediate crash 94 * due to stack overflow, as vop_stdaccess() calls vop_stdaccessx(), 95 * which calls vop_stdaccess() etc. 96 */ 97 98 struct vop_vector default_vnodeops = { 99 .vop_default = NULL, 100 .vop_bypass = VOP_EOPNOTSUPP, 101 102 .vop_access = vop_stdaccess, 103 .vop_accessx = vop_stdaccessx, 104 .vop_advise = vop_stdadvise, 105 .vop_advlock = vop_stdadvlock, 106 .vop_advlockasync = vop_stdadvlockasync, 107 .vop_advlockpurge = vop_stdadvlockpurge, 108 .vop_allocate = vop_stdallocate, 109 .vop_deallocate = vop_stddeallocate, 110 .vop_bmap = vop_stdbmap, 111 .vop_close = VOP_NULL, 112 .vop_fsync = VOP_NULL, 113 .vop_stat = vop_stdstat, 114 .vop_fdatasync = vop_stdfdatasync, 115 .vop_getpages = vop_stdgetpages, 116 .vop_getpages_async = vop_stdgetpages_async, 117 .vop_getwritemount = vop_stdgetwritemount, 118 .vop_inactive = VOP_NULL, 119 .vop_need_inactive = vop_stdneed_inactive, 120 .vop_ioctl = vop_stdioctl, 121 .vop_kqfilter = vop_stdkqfilter, 122 .vop_islocked = vop_stdislocked, 123 .vop_lock1 = vop_stdlock, 124 .vop_lookup = vop_nolookup, 125 .vop_open = VOP_NULL, 126 .vop_pathconf = VOP_EINVAL, 127 .vop_poll = vop_nopoll, 128 .vop_putpages = vop_stdputpages, 129 .vop_readlink = VOP_EINVAL, 130 .vop_read_pgcache = vop_stdread_pgcache, 131 .vop_rename = vop_norename, 132 .vop_revoke = VOP_PANIC, 133 .vop_strategy = vop_nostrategy, 134 .vop_unlock = vop_stdunlock, 135 .vop_vptocnp = vop_stdvptocnp, 136 .vop_vptofh = vop_stdvptofh, 137 .vop_unp_bind = vop_stdunp_bind, 138 .vop_unp_connect = vop_stdunp_connect, 139 .vop_unp_detach = vop_stdunp_detach, 140 .vop_is_text = vop_stdis_text, 141 .vop_set_text = vop_stdset_text, 142 .vop_unset_text = vop_stdunset_text, 143 .vop_add_writecount = vop_stdadd_writecount, 144 .vop_copy_file_range = vop_stdcopy_file_range, 145 .vop_vput_pair = vop_stdvput_pair, 146 }; 147 VFS_VOP_VECTOR_REGISTER(default_vnodeops); 148 149 /* 150 * Series of placeholder functions for various error returns for 151 * VOPs. 152 */ 153 154 int 155 vop_eopnotsupp(struct vop_generic_args *ap) 156 { 157 /* 158 printf("vop_notsupp[%s]\n", ap->a_desc->vdesc_name); 159 */ 160 161 return (EOPNOTSUPP); 162 } 163 164 int 165 vop_ebadf(struct vop_generic_args *ap) 166 { 167 168 return (EBADF); 169 } 170 171 int 172 vop_enotty(struct vop_generic_args *ap) 173 { 174 175 return (ENOTTY); 176 } 177 178 int 179 vop_einval(struct vop_generic_args *ap) 180 { 181 182 return (EINVAL); 183 } 184 185 int 186 vop_enoent(struct vop_generic_args *ap) 187 { 188 189 return (ENOENT); 190 } 191 192 int 193 vop_eagain(struct vop_generic_args *ap) 194 { 195 196 return (EAGAIN); 197 } 198 199 int 200 vop_null(struct vop_generic_args *ap) 201 { 202 203 return (0); 204 } 205 206 /* 207 * Helper function to panic on some bad VOPs in some filesystems. 208 */ 209 int 210 vop_panic(struct vop_generic_args *ap) 211 { 212 213 panic("filesystem goof: vop_panic[%s]", ap->a_desc->vdesc_name); 214 } 215 216 /* 217 * vop_std<something> and vop_no<something> are default functions for use by 218 * filesystems that need the "default reasonable" implementation for a 219 * particular operation. 220 * 221 * The documentation for the operations they implement exists (if it exists) 222 * in the VOP_<SOMETHING>(9) manpage (all uppercase). 223 */ 224 225 /* 226 * Default vop for filesystems that do not support name lookup 227 */ 228 static int 229 vop_nolookup(struct vop_lookup_args *ap) 230 { 231 232 *ap->a_vpp = NULL; 233 return (ENOTDIR); 234 } 235 236 /* 237 * vop_norename: 238 * 239 * Handle unlock and reference counting for arguments of vop_rename 240 * for filesystems that do not implement rename operation. 241 */ 242 static int 243 vop_norename(struct vop_rename_args *ap) 244 { 245 246 vop_rename_fail(ap); 247 return (EOPNOTSUPP); 248 } 249 250 /* 251 * vop_nostrategy: 252 * 253 * Strategy routine for VFS devices that have none. 254 * 255 * BIO_ERROR and B_INVAL must be cleared prior to calling any strategy 256 * routine. Typically this is done for a BIO_READ strategy call. 257 * Typically B_INVAL is assumed to already be clear prior to a write 258 * and should not be cleared manually unless you just made the buffer 259 * invalid. BIO_ERROR should be cleared either way. 260 */ 261 262 static int 263 vop_nostrategy (struct vop_strategy_args *ap) 264 { 265 printf("No strategy for buffer at %p\n", ap->a_bp); 266 vn_printf(ap->a_vp, "vnode "); 267 ap->a_bp->b_ioflags |= BIO_ERROR; 268 ap->a_bp->b_error = EOPNOTSUPP; 269 bufdone(ap->a_bp); 270 return (EOPNOTSUPP); 271 } 272 273 /* 274 * Check if a named file exists in a given directory vnode 275 * 276 * Returns 0 if the file exists, ENOENT if it doesn't, or errors returned by 277 * vn_dir_next_dirent(). 278 */ 279 static int 280 dirent_exists(struct vnode *vp, const char *dirname, struct thread *td) 281 { 282 char *dirbuf; 283 int error, eofflag; 284 size_t dirbuflen, len; 285 off_t off; 286 struct dirent *dp; 287 struct vattr va; 288 289 ASSERT_VOP_LOCKED(vp, "vnode not locked"); 290 KASSERT(vp->v_type == VDIR, ("vp %p is not a directory", vp)); 291 292 error = VOP_GETATTR(vp, &va, td->td_ucred); 293 if (error != 0) 294 return (error); 295 296 dirbuflen = MAX(DEV_BSIZE, GENERIC_MAXDIRSIZ); 297 if (dirbuflen < va.va_blocksize) 298 dirbuflen = va.va_blocksize; 299 dirbuf = malloc(dirbuflen, M_TEMP, M_WAITOK); 300 301 len = 0; 302 off = 0; 303 eofflag = 0; 304 305 for (;;) { 306 error = vn_dir_next_dirent(vp, td, dirbuf, dirbuflen, 307 &dp, &len, &off, &eofflag); 308 if (error != 0) 309 goto out; 310 311 if (len == 0) 312 break; 313 314 if (dp->d_type != DT_WHT && dp->d_fileno != 0 && 315 strcmp(dp->d_name, dirname) == 0) 316 goto out; 317 } 318 319 error = ENOENT; 320 321 out: 322 free(dirbuf, M_TEMP); 323 return (error); 324 } 325 326 int 327 vop_stdaccess(struct vop_access_args *ap) 328 { 329 330 KASSERT((ap->a_accmode & ~(VEXEC | VWRITE | VREAD | VADMIN | 331 VAPPEND)) == 0, ("invalid bit in accmode")); 332 333 return (VOP_ACCESSX(ap->a_vp, ap->a_accmode, ap->a_cred, ap->a_td)); 334 } 335 336 int 337 vop_stdaccessx(struct vop_accessx_args *ap) 338 { 339 int error; 340 accmode_t accmode = ap->a_accmode; 341 342 error = vfs_unixify_accmode(&accmode); 343 if (error != 0) 344 return (error); 345 346 if (accmode == 0) 347 return (0); 348 349 return (VOP_ACCESS(ap->a_vp, accmode, ap->a_cred, ap->a_td)); 350 } 351 352 /* 353 * Advisory record locking support 354 */ 355 int 356 vop_stdadvlock(struct vop_advlock_args *ap) 357 { 358 struct vnode *vp; 359 struct mount *mp; 360 struct vattr vattr; 361 int error; 362 363 vp = ap->a_vp; 364 365 /* 366 * Provide atomicity of open(O_CREAT | O_EXCL | O_EXLOCK) for 367 * local filesystems. See vn_open_cred() for reciprocal part. 368 */ 369 mp = vp->v_mount; 370 if (mp != NULL && (mp->mnt_flag & MNT_LOCAL) != 0 && 371 ap->a_op == F_SETLK && (ap->a_flags & F_FIRSTOPEN) == 0) { 372 VI_LOCK(vp); 373 while ((vp->v_iflag & VI_FOPENING) != 0) 374 msleep(vp, VI_MTX(vp), PLOCK, "lockfo", 0); 375 VI_UNLOCK(vp); 376 } 377 378 if (ap->a_fl->l_whence == SEEK_END) { 379 /* 380 * The NFSv4 server must avoid doing a vn_lock() here, since it 381 * can deadlock the nfsd threads, due to a LOR. Fortunately 382 * the NFSv4 server always uses SEEK_SET and this code is 383 * only required for the SEEK_END case. 384 */ 385 vn_lock(vp, LK_SHARED | LK_RETRY); 386 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred); 387 VOP_UNLOCK(vp); 388 if (error) 389 return (error); 390 } else 391 vattr.va_size = 0; 392 393 return (lf_advlock(ap, &(vp->v_lockf), vattr.va_size)); 394 } 395 396 int 397 vop_stdadvlockasync(struct vop_advlockasync_args *ap) 398 { 399 struct vnode *vp; 400 struct vattr vattr; 401 int error; 402 403 vp = ap->a_vp; 404 if (ap->a_fl->l_whence == SEEK_END) { 405 /* The size argument is only needed for SEEK_END. */ 406 vn_lock(vp, LK_SHARED | LK_RETRY); 407 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred); 408 VOP_UNLOCK(vp); 409 if (error) 410 return (error); 411 } else 412 vattr.va_size = 0; 413 414 return (lf_advlockasync(ap, &(vp->v_lockf), vattr.va_size)); 415 } 416 417 int 418 vop_stdadvlockpurge(struct vop_advlockpurge_args *ap) 419 { 420 struct vnode *vp; 421 422 vp = ap->a_vp; 423 lf_purgelocks(vp, &vp->v_lockf); 424 return (0); 425 } 426 427 /* 428 * vop_stdpathconf: 429 * 430 * Standard implementation of POSIX pathconf, to get information about limits 431 * for a filesystem. 432 * Override per filesystem for the case where the filesystem has smaller 433 * limits. 434 */ 435 int 436 vop_stdpathconf(struct vop_pathconf_args *ap) 437 { 438 439 switch (ap->a_name) { 440 case _PC_ASYNC_IO: 441 *ap->a_retval = _POSIX_ASYNCHRONOUS_IO; 442 return (0); 443 case _PC_PATH_MAX: 444 *ap->a_retval = PATH_MAX; 445 return (0); 446 case _PC_ACL_EXTENDED: 447 case _PC_ACL_NFS4: 448 case _PC_CAP_PRESENT: 449 case _PC_DEALLOC_PRESENT: 450 case _PC_INF_PRESENT: 451 case _PC_MAC_PRESENT: 452 *ap->a_retval = 0; 453 return (0); 454 default: 455 return (EINVAL); 456 } 457 /* NOTREACHED */ 458 } 459 460 /* 461 * Standard lock, unlock and islocked functions. 462 */ 463 int 464 vop_stdlock(struct vop_lock1_args *ap) 465 { 466 struct vnode *vp = ap->a_vp; 467 struct mtx *ilk; 468 469 ilk = VI_MTX(vp); 470 return (lockmgr_lock_flags(vp->v_vnlock, ap->a_flags, 471 &ilk->lock_object, ap->a_file, ap->a_line)); 472 } 473 474 /* See above. */ 475 int 476 vop_stdunlock(struct vop_unlock_args *ap) 477 { 478 struct vnode *vp = ap->a_vp; 479 480 return (lockmgr_unlock(vp->v_vnlock)); 481 } 482 483 /* See above. */ 484 int 485 vop_stdislocked(struct vop_islocked_args *ap) 486 { 487 488 return (lockstatus(ap->a_vp->v_vnlock)); 489 } 490 491 /* 492 * Variants of the above set. 493 * 494 * Differences are: 495 * - shared locking disablement is not supported 496 * - v_vnlock pointer is not honored 497 */ 498 int 499 vop_lock(struct vop_lock1_args *ap) 500 { 501 struct vnode *vp = ap->a_vp; 502 int flags = ap->a_flags; 503 struct mtx *ilk; 504 505 MPASS(vp->v_vnlock == &vp->v_lock); 506 507 if (__predict_false((flags & ~(LK_TYPE_MASK | LK_NODDLKTREAT | LK_RETRY)) != 0)) 508 goto other; 509 510 switch (flags & LK_TYPE_MASK) { 511 case LK_SHARED: 512 return (lockmgr_slock(&vp->v_lock, flags, ap->a_file, ap->a_line)); 513 case LK_EXCLUSIVE: 514 return (lockmgr_xlock(&vp->v_lock, flags, ap->a_file, ap->a_line)); 515 } 516 other: 517 ilk = VI_MTX(vp); 518 return (lockmgr_lock_flags(&vp->v_lock, flags, 519 &ilk->lock_object, ap->a_file, ap->a_line)); 520 } 521 522 int 523 vop_unlock(struct vop_unlock_args *ap) 524 { 525 struct vnode *vp = ap->a_vp; 526 527 MPASS(vp->v_vnlock == &vp->v_lock); 528 529 return (lockmgr_unlock(&vp->v_lock)); 530 } 531 532 int 533 vop_islocked(struct vop_islocked_args *ap) 534 { 535 struct vnode *vp = ap->a_vp; 536 537 MPASS(vp->v_vnlock == &vp->v_lock); 538 539 return (lockstatus(&vp->v_lock)); 540 } 541 542 /* 543 * Return true for select/poll. 544 */ 545 int 546 vop_nopoll(struct vop_poll_args *ap) 547 { 548 549 if (ap->a_events & ~POLLSTANDARD) 550 return (POLLNVAL); 551 return (ap->a_events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)); 552 } 553 554 /* 555 * Implement poll for local filesystems that support it. 556 */ 557 int 558 vop_stdpoll(struct vop_poll_args *ap) 559 { 560 if (ap->a_events & ~POLLSTANDARD) 561 return (vn_pollrecord(ap->a_vp, ap->a_td, ap->a_events)); 562 return (ap->a_events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)); 563 } 564 565 /* 566 * Return our mount point, as we will take charge of the writes. 567 */ 568 int 569 vop_stdgetwritemount(struct vop_getwritemount_args *ap) 570 { 571 struct mount *mp; 572 struct vnode *vp; 573 574 /* 575 * Note that having a reference does not prevent forced unmount from 576 * setting ->v_mount to NULL after the lock gets released. This is of 577 * no consequence for typical consumers (most notably vn_start_write) 578 * since in this case the vnode is VIRF_DOOMED. Unmount might have 579 * progressed far enough that its completion is only delayed by the 580 * reference obtained here. The consumer only needs to concern itself 581 * with releasing it. 582 */ 583 vp = ap->a_vp; 584 mp = vfs_ref_from_vp(vp); 585 *(ap->a_mpp) = mp; 586 return (0); 587 } 588 589 /* 590 * If the file system doesn't implement VOP_BMAP, then return sensible defaults: 591 * - Return the vnode's bufobj instead of any underlying device's bufobj 592 * - Calculate the physical block number as if there were equal size 593 * consecutive blocks, but 594 * - Report no contiguous runs of blocks. 595 */ 596 int 597 vop_stdbmap(struct vop_bmap_args *ap) 598 { 599 600 if (ap->a_bop != NULL) 601 *ap->a_bop = &ap->a_vp->v_bufobj; 602 if (ap->a_bnp != NULL) 603 *ap->a_bnp = ap->a_bn * btodb(ap->a_vp->v_mount->mnt_stat.f_iosize); 604 if (ap->a_runp != NULL) 605 *ap->a_runp = 0; 606 if (ap->a_runb != NULL) 607 *ap->a_runb = 0; 608 return (0); 609 } 610 611 int 612 vop_stdfsync(struct vop_fsync_args *ap) 613 { 614 615 return (vn_fsync_buf(ap->a_vp, ap->a_waitfor)); 616 } 617 618 static int 619 vop_stdfdatasync(struct vop_fdatasync_args *ap) 620 { 621 622 return (VOP_FSYNC(ap->a_vp, MNT_WAIT, ap->a_td)); 623 } 624 625 int 626 vop_stdfdatasync_buf(struct vop_fdatasync_args *ap) 627 { 628 629 return (vn_fsync_buf(ap->a_vp, MNT_WAIT)); 630 } 631 632 /* XXX Needs good comment and more info in the manpage (VOP_GETPAGES(9)). */ 633 int 634 vop_stdgetpages(struct vop_getpages_args *ap) 635 { 636 637 return vnode_pager_generic_getpages(ap->a_vp, ap->a_m, 638 ap->a_count, ap->a_rbehind, ap->a_rahead, NULL, NULL); 639 } 640 641 static int 642 vop_stdgetpages_async(struct vop_getpages_async_args *ap) 643 { 644 int error; 645 646 error = VOP_GETPAGES(ap->a_vp, ap->a_m, ap->a_count, ap->a_rbehind, 647 ap->a_rahead); 648 if (ap->a_iodone != NULL) 649 ap->a_iodone(ap->a_arg, ap->a_m, ap->a_count, error); 650 return (error); 651 } 652 653 int 654 vop_stdkqfilter(struct vop_kqfilter_args *ap) 655 { 656 return vfs_kqfilter(ap); 657 } 658 659 /* XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */ 660 int 661 vop_stdputpages(struct vop_putpages_args *ap) 662 { 663 664 return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count, 665 ap->a_sync, ap->a_rtvals); 666 } 667 668 int 669 vop_stdvptofh(struct vop_vptofh_args *ap) 670 { 671 return (EOPNOTSUPP); 672 } 673 674 int 675 vop_stdvptocnp(struct vop_vptocnp_args *ap) 676 { 677 struct vnode *const vp = ap->a_vp; 678 struct vnode **const dvp = ap->a_vpp; 679 char *buf = ap->a_buf; 680 size_t *buflen = ap->a_buflen; 681 char *dirbuf; 682 int i = *buflen; 683 int error = 0, covered = 0; 684 int eofflag, flags, locked; 685 size_t dirbuflen, len; 686 off_t off; 687 ino_t fileno; 688 struct vattr va; 689 struct nameidata nd; 690 struct thread *const td = curthread; 691 struct ucred *const cred = td->td_ucred; 692 struct dirent *dp; 693 struct vnode *mvp; 694 695 if (vp->v_type != VDIR) 696 return (ENOENT); 697 698 error = VOP_GETATTR(vp, &va, cred); 699 if (error) 700 return (error); 701 702 VREF(vp); 703 locked = VOP_ISLOCKED(vp); 704 VOP_UNLOCK(vp); 705 NDINIT_ATVP(&nd, LOOKUP, FOLLOW | LOCKSHARED | LOCKLEAF, UIO_SYSSPACE, 706 "..", vp); 707 flags = FREAD; 708 error = vn_open_cred(&nd, &flags, 0, VN_OPEN_NOAUDIT, cred, NULL); 709 if (error) { 710 vn_lock(vp, locked | LK_RETRY); 711 return (error); 712 } 713 NDFREE_PNBUF(&nd); 714 715 mvp = *dvp = nd.ni_vp; 716 717 if (vp->v_mount != (*dvp)->v_mount && 718 ((*dvp)->v_vflag & VV_ROOT) && 719 ((*dvp)->v_mount->mnt_flag & MNT_UNION)) { 720 *dvp = (*dvp)->v_mount->mnt_vnodecovered; 721 VREF(mvp); 722 VOP_UNLOCK(mvp); 723 vn_close(mvp, FREAD, cred, td); 724 VREF(*dvp); 725 vn_lock(*dvp, LK_SHARED | LK_RETRY); 726 covered = 1; 727 } 728 729 fileno = va.va_fileid; 730 731 dirbuflen = MAX(DEV_BSIZE, GENERIC_MAXDIRSIZ); 732 if (dirbuflen < va.va_blocksize) 733 dirbuflen = va.va_blocksize; 734 dirbuf = malloc(dirbuflen, M_TEMP, M_WAITOK); 735 736 if ((*dvp)->v_type != VDIR) { 737 error = ENOENT; 738 goto out; 739 } 740 741 len = 0; 742 off = 0; 743 eofflag = 0; 744 745 for (;;) { 746 /* call VOP_READDIR of parent */ 747 error = vn_dir_next_dirent(*dvp, td, 748 dirbuf, dirbuflen, &dp, &len, &off, &eofflag); 749 if (error != 0) 750 goto out; 751 752 if (len == 0) { 753 error = ENOENT; 754 goto out; 755 } 756 757 if ((dp->d_type != DT_WHT) && 758 (dp->d_fileno == fileno)) { 759 if (covered) { 760 VOP_UNLOCK(*dvp); 761 vn_lock(mvp, LK_SHARED | LK_RETRY); 762 if (dirent_exists(mvp, dp->d_name, td) == 0) { 763 error = ENOENT; 764 VOP_UNLOCK(mvp); 765 vn_lock(*dvp, LK_SHARED | LK_RETRY); 766 goto out; 767 } 768 VOP_UNLOCK(mvp); 769 vn_lock(*dvp, LK_SHARED | LK_RETRY); 770 } 771 i -= dp->d_namlen; 772 773 if (i < 0) { 774 error = ENOMEM; 775 goto out; 776 } 777 if (dp->d_namlen == 1 && dp->d_name[0] == '.') { 778 error = ENOENT; 779 } else { 780 bcopy(dp->d_name, buf + i, dp->d_namlen); 781 error = 0; 782 } 783 goto out; 784 } 785 } 786 787 out: 788 free(dirbuf, M_TEMP); 789 if (!error) { 790 *buflen = i; 791 vref(*dvp); 792 } 793 if (covered) { 794 vput(*dvp); 795 vrele(mvp); 796 } else { 797 VOP_UNLOCK(mvp); 798 vn_close(mvp, FREAD, cred, td); 799 } 800 vn_lock(vp, locked | LK_RETRY); 801 return (error); 802 } 803 804 int 805 vop_stdallocate(struct vop_allocate_args *ap) 806 { 807 #ifdef __notyet__ 808 struct statfs *sfs; 809 off_t maxfilesize = 0; 810 #endif 811 struct iovec aiov; 812 struct vattr vattr, *vap; 813 struct uio auio; 814 off_t fsize, len, cur, offset; 815 uint8_t *buf; 816 struct thread *td; 817 struct vnode *vp; 818 size_t iosize; 819 int error; 820 821 buf = NULL; 822 error = 0; 823 td = curthread; 824 vap = &vattr; 825 vp = ap->a_vp; 826 len = *ap->a_len; 827 offset = *ap->a_offset; 828 829 error = VOP_GETATTR(vp, vap, ap->a_cred); 830 if (error != 0) 831 goto out; 832 fsize = vap->va_size; 833 iosize = vap->va_blocksize; 834 if (iosize == 0) 835 iosize = BLKDEV_IOSIZE; 836 if (iosize > maxphys) 837 iosize = maxphys; 838 buf = malloc(iosize, M_TEMP, M_WAITOK); 839 840 #ifdef __notyet__ 841 /* 842 * Check if the filesystem sets f_maxfilesize; if not use 843 * VOP_SETATTR to perform the check. 844 */ 845 sfs = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK); 846 error = VFS_STATFS(vp->v_mount, sfs, td); 847 if (error == 0) 848 maxfilesize = sfs->f_maxfilesize; 849 free(sfs, M_STATFS); 850 if (error != 0) 851 goto out; 852 if (maxfilesize) { 853 if (offset > maxfilesize || len > maxfilesize || 854 offset + len > maxfilesize) { 855 error = EFBIG; 856 goto out; 857 } 858 } else 859 #endif 860 if (offset + len > vap->va_size) { 861 /* 862 * Test offset + len against the filesystem's maxfilesize. 863 */ 864 VATTR_NULL(vap); 865 vap->va_size = offset + len; 866 error = VOP_SETATTR(vp, vap, ap->a_cred); 867 if (error != 0) 868 goto out; 869 VATTR_NULL(vap); 870 vap->va_size = fsize; 871 error = VOP_SETATTR(vp, vap, ap->a_cred); 872 if (error != 0) 873 goto out; 874 } 875 876 for (;;) { 877 /* 878 * Read and write back anything below the nominal file 879 * size. There's currently no way outside the filesystem 880 * to know whether this area is sparse or not. 881 */ 882 cur = iosize; 883 if ((offset % iosize) != 0) 884 cur -= (offset % iosize); 885 if (cur > len) 886 cur = len; 887 if (offset < fsize) { 888 aiov.iov_base = buf; 889 aiov.iov_len = cur; 890 auio.uio_iov = &aiov; 891 auio.uio_iovcnt = 1; 892 auio.uio_offset = offset; 893 auio.uio_resid = cur; 894 auio.uio_segflg = UIO_SYSSPACE; 895 auio.uio_rw = UIO_READ; 896 auio.uio_td = td; 897 error = VOP_READ(vp, &auio, ap->a_ioflag, ap->a_cred); 898 if (error != 0) 899 break; 900 if (auio.uio_resid > 0) { 901 bzero(buf + cur - auio.uio_resid, 902 auio.uio_resid); 903 } 904 } else { 905 bzero(buf, cur); 906 } 907 908 aiov.iov_base = buf; 909 aiov.iov_len = cur; 910 auio.uio_iov = &aiov; 911 auio.uio_iovcnt = 1; 912 auio.uio_offset = offset; 913 auio.uio_resid = cur; 914 auio.uio_segflg = UIO_SYSSPACE; 915 auio.uio_rw = UIO_WRITE; 916 auio.uio_td = td; 917 918 error = VOP_WRITE(vp, &auio, ap->a_ioflag, ap->a_cred); 919 if (error != 0) 920 break; 921 922 len -= cur; 923 offset += cur; 924 if (len == 0) 925 break; 926 if (should_yield()) 927 break; 928 } 929 930 out: 931 *ap->a_len = len; 932 *ap->a_offset = offset; 933 free(buf, M_TEMP); 934 return (error); 935 } 936 937 static int 938 vp_zerofill(struct vnode *vp, struct vattr *vap, off_t *offsetp, off_t *lenp, 939 int ioflag, struct ucred *cred) 940 { 941 int iosize; 942 int error = 0; 943 struct iovec aiov; 944 struct uio auio; 945 struct thread *td; 946 off_t offset, len; 947 948 iosize = vap->va_blocksize; 949 td = curthread; 950 offset = *offsetp; 951 len = *lenp; 952 953 if (iosize == 0) 954 iosize = BLKDEV_IOSIZE; 955 /* If va_blocksize is 512 bytes, iosize will be 4 kilobytes */ 956 iosize = min(iosize * 8, ZERO_REGION_SIZE); 957 958 while (len > 0) { 959 int xfersize = iosize; 960 if (offset % iosize != 0) 961 xfersize -= offset % iosize; 962 if (xfersize > len) 963 xfersize = len; 964 965 aiov.iov_base = __DECONST(void *, zero_region); 966 aiov.iov_len = xfersize; 967 auio.uio_iov = &aiov; 968 auio.uio_iovcnt = 1; 969 auio.uio_offset = offset; 970 auio.uio_resid = xfersize; 971 auio.uio_segflg = UIO_SYSSPACE; 972 auio.uio_rw = UIO_WRITE; 973 auio.uio_td = td; 974 975 error = VOP_WRITE(vp, &auio, ioflag, cred); 976 if (error != 0) { 977 len -= xfersize - auio.uio_resid; 978 offset += xfersize - auio.uio_resid; 979 break; 980 } 981 982 len -= xfersize; 983 offset += xfersize; 984 } 985 986 *offsetp = offset; 987 *lenp = len; 988 return (error); 989 } 990 991 int 992 vop_stddeallocate(struct vop_deallocate_args *ap) 993 { 994 struct vnode *vp; 995 off_t offset, len; 996 struct ucred *cred; 997 int error; 998 struct vattr va; 999 off_t noff, xfersize, rem; 1000 1001 vp = ap->a_vp; 1002 offset = *ap->a_offset; 1003 cred = ap->a_cred; 1004 1005 error = VOP_GETATTR(vp, &va, cred); 1006 if (error) 1007 return (error); 1008 1009 len = omin((off_t)va.va_size - offset, *ap->a_len); 1010 while (len > 0) { 1011 noff = offset; 1012 error = vn_bmap_seekhole_locked(vp, FIOSEEKDATA, &noff, cred); 1013 if (error) { 1014 if (error != ENXIO) 1015 /* XXX: Is it okay to fallback further? */ 1016 goto out; 1017 1018 /* 1019 * No more data region to be filled 1020 */ 1021 offset += len; 1022 len = 0; 1023 error = 0; 1024 break; 1025 } 1026 KASSERT(noff >= offset, ("FIOSEEKDATA going backward")); 1027 if (noff != offset) { 1028 xfersize = omin(noff - offset, len); 1029 len -= xfersize; 1030 offset += xfersize; 1031 if (len == 0) 1032 break; 1033 } 1034 error = vn_bmap_seekhole_locked(vp, FIOSEEKHOLE, &noff, cred); 1035 if (error) 1036 goto out; 1037 1038 /* Fill zeroes */ 1039 xfersize = rem = omin(noff - offset, len); 1040 error = vp_zerofill(vp, &va, &offset, &rem, ap->a_ioflag, cred); 1041 if (error) { 1042 len -= xfersize - rem; 1043 goto out; 1044 } 1045 1046 len -= xfersize; 1047 if (should_yield()) 1048 break; 1049 } 1050 /* Handle the case when offset is beyond EOF */ 1051 if (len < 0) 1052 len = 0; 1053 out: 1054 *ap->a_offset = offset; 1055 *ap->a_len = len; 1056 return (error); 1057 } 1058 1059 int 1060 vop_stdadvise(struct vop_advise_args *ap) 1061 { 1062 struct vnode *vp; 1063 struct bufobj *bo; 1064 daddr_t startn, endn; 1065 off_t bstart, bend, start, end; 1066 int bsize, error; 1067 1068 vp = ap->a_vp; 1069 switch (ap->a_advice) { 1070 case POSIX_FADV_WILLNEED: 1071 /* 1072 * Do nothing for now. Filesystems should provide a 1073 * custom method which starts an asynchronous read of 1074 * the requested region. 1075 */ 1076 error = 0; 1077 break; 1078 case POSIX_FADV_DONTNEED: 1079 error = 0; 1080 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); 1081 if (VN_IS_DOOMED(vp)) { 1082 VOP_UNLOCK(vp); 1083 break; 1084 } 1085 1086 /* 1087 * Round to block boundaries (and later possibly further to 1088 * page boundaries). Applications cannot reasonably be aware 1089 * of the boundaries, and the rounding must be to expand at 1090 * both extremities to cover enough. It still doesn't cover 1091 * read-ahead. For partial blocks, this gives unnecessary 1092 * discarding of buffers but is efficient enough since the 1093 * pages usually remain in VMIO for some time. 1094 */ 1095 bsize = vp->v_bufobj.bo_bsize; 1096 bstart = rounddown(ap->a_start, bsize); 1097 bend = roundup(ap->a_end, bsize); 1098 1099 /* 1100 * Deactivate pages in the specified range from the backing VM 1101 * object. Pages that are resident in the buffer cache will 1102 * remain wired until their corresponding buffers are released 1103 * below. 1104 */ 1105 if (vp->v_object != NULL) { 1106 start = trunc_page(bstart); 1107 end = round_page(bend); 1108 VM_OBJECT_RLOCK(vp->v_object); 1109 vm_object_page_noreuse(vp->v_object, OFF_TO_IDX(start), 1110 OFF_TO_IDX(end)); 1111 VM_OBJECT_RUNLOCK(vp->v_object); 1112 } 1113 1114 bo = &vp->v_bufobj; 1115 BO_RLOCK(bo); 1116 startn = bstart / bsize; 1117 endn = bend / bsize; 1118 error = bnoreuselist(&bo->bo_clean, bo, startn, endn); 1119 if (error == 0) 1120 error = bnoreuselist(&bo->bo_dirty, bo, startn, endn); 1121 BO_RUNLOCK(bo); 1122 VOP_UNLOCK(vp); 1123 break; 1124 default: 1125 error = EINVAL; 1126 break; 1127 } 1128 return (error); 1129 } 1130 1131 int 1132 vop_stdunp_bind(struct vop_unp_bind_args *ap) 1133 { 1134 1135 ap->a_vp->v_unpcb = ap->a_unpcb; 1136 return (0); 1137 } 1138 1139 int 1140 vop_stdunp_connect(struct vop_unp_connect_args *ap) 1141 { 1142 1143 *ap->a_unpcb = ap->a_vp->v_unpcb; 1144 return (0); 1145 } 1146 1147 int 1148 vop_stdunp_detach(struct vop_unp_detach_args *ap) 1149 { 1150 1151 ap->a_vp->v_unpcb = NULL; 1152 return (0); 1153 } 1154 1155 static int 1156 vop_stdis_text(struct vop_is_text_args *ap) 1157 { 1158 1159 return (atomic_load_int(&ap->a_vp->v_writecount) < 0); 1160 } 1161 1162 int 1163 vop_stdset_text(struct vop_set_text_args *ap) 1164 { 1165 struct vnode *vp; 1166 int n; 1167 bool gotref; 1168 1169 vp = ap->a_vp; 1170 1171 n = atomic_load_int(&vp->v_writecount); 1172 for (;;) { 1173 if (__predict_false(n > 0)) { 1174 return (ETXTBSY); 1175 } 1176 1177 /* 1178 * Transition point, we may need to grab a reference on the vnode. 1179 * 1180 * Take the ref early As a safety measure against bogus calls 1181 * to vop_stdunset_text. 1182 */ 1183 if (n == 0) { 1184 gotref = false; 1185 if ((vn_irflag_read(vp) & VIRF_TEXT_REF) != 0) { 1186 vref(vp); 1187 gotref = true; 1188 } 1189 if (atomic_fcmpset_int(&vp->v_writecount, &n, -1)) { 1190 return (0); 1191 } 1192 if (gotref) { 1193 vunref(vp); 1194 } 1195 continue; 1196 } 1197 1198 MPASS(n < 0); 1199 if (atomic_fcmpset_int(&vp->v_writecount, &n, n - 1)) { 1200 return (0); 1201 } 1202 } 1203 __assert_unreachable(); 1204 } 1205 1206 static int 1207 vop_stdunset_text(struct vop_unset_text_args *ap) 1208 { 1209 struct vnode *vp; 1210 int n; 1211 1212 vp = ap->a_vp; 1213 1214 n = atomic_load_int(&vp->v_writecount); 1215 for (;;) { 1216 if (__predict_false(n >= 0)) { 1217 return (EINVAL); 1218 } 1219 1220 /* 1221 * Transition point, we may need to release a reference on the vnode. 1222 */ 1223 if (n == -1) { 1224 if (atomic_fcmpset_int(&vp->v_writecount, &n, 0)) { 1225 if ((vn_irflag_read(vp) & VIRF_TEXT_REF) != 0) { 1226 vunref(vp); 1227 } 1228 return (0); 1229 } 1230 continue; 1231 } 1232 1233 MPASS(n < -1); 1234 if (atomic_fcmpset_int(&vp->v_writecount, &n, n + 1)) { 1235 return (0); 1236 } 1237 } 1238 __assert_unreachable(); 1239 } 1240 1241 static int __always_inline 1242 vop_stdadd_writecount_impl(struct vop_add_writecount_args *ap, bool handle_msync) 1243 { 1244 struct vnode *vp; 1245 struct mount *mp __diagused; 1246 int n; 1247 1248 vp = ap->a_vp; 1249 1250 #ifdef INVARIANTS 1251 mp = vp->v_mount; 1252 if (mp != NULL) { 1253 if (handle_msync) { 1254 VNPASS((mp->mnt_kern_flag & MNTK_NOMSYNC) == 0, vp); 1255 } else { 1256 VNPASS((mp->mnt_kern_flag & MNTK_NOMSYNC) != 0, vp); 1257 } 1258 } 1259 #endif 1260 1261 n = atomic_load_int(&vp->v_writecount); 1262 for (;;) { 1263 if (__predict_false(n < 0)) { 1264 return (ETXTBSY); 1265 } 1266 1267 VNASSERT(n + ap->a_inc >= 0, vp, 1268 ("neg writecount increment %d + %d = %d", n, ap->a_inc, 1269 n + ap->a_inc)); 1270 if (n == 0) { 1271 if (handle_msync) { 1272 vlazy(vp); 1273 } 1274 } 1275 1276 if (atomic_fcmpset_int(&vp->v_writecount, &n, n + ap->a_inc)) { 1277 return (0); 1278 } 1279 } 1280 __assert_unreachable(); 1281 } 1282 1283 int 1284 vop_stdadd_writecount(struct vop_add_writecount_args *ap) 1285 { 1286 1287 return (vop_stdadd_writecount_impl(ap, true)); 1288 } 1289 1290 int 1291 vop_stdadd_writecount_nomsync(struct vop_add_writecount_args *ap) 1292 { 1293 1294 return (vop_stdadd_writecount_impl(ap, false)); 1295 } 1296 1297 int 1298 vop_stdneed_inactive(struct vop_need_inactive_args *ap) 1299 { 1300 1301 return (1); 1302 } 1303 1304 int 1305 vop_stdioctl(struct vop_ioctl_args *ap) 1306 { 1307 struct vnode *vp; 1308 struct vattr va; 1309 off_t *offp; 1310 int error; 1311 1312 switch (ap->a_command) { 1313 case FIOSEEKDATA: 1314 case FIOSEEKHOLE: 1315 vp = ap->a_vp; 1316 error = vn_lock(vp, LK_SHARED); 1317 if (error != 0) 1318 return (EBADF); 1319 if (vp->v_type == VREG) 1320 error = VOP_GETATTR(vp, &va, ap->a_cred); 1321 else 1322 error = ENOTTY; 1323 if (error == 0) { 1324 offp = ap->a_data; 1325 if (*offp < 0 || *offp >= va.va_size) 1326 error = ENXIO; 1327 else if (ap->a_command == FIOSEEKHOLE) 1328 *offp = va.va_size; 1329 } 1330 VOP_UNLOCK(vp); 1331 break; 1332 default: 1333 error = ENOTTY; 1334 break; 1335 } 1336 return (error); 1337 } 1338 1339 /* 1340 * vfs default ops 1341 * used to fill the vfs function table to get reasonable default return values. 1342 */ 1343 int 1344 vfs_stdroot(struct mount *mp, int flags, struct vnode **vpp) 1345 { 1346 1347 return (EOPNOTSUPP); 1348 } 1349 1350 int 1351 vfs_stdstatfs(struct mount *mp, struct statfs *sbp) 1352 { 1353 1354 return (EOPNOTSUPP); 1355 } 1356 1357 int 1358 vfs_stdquotactl(struct mount *mp, int cmds, uid_t uid, void *arg, bool *mp_busy) 1359 { 1360 return (EOPNOTSUPP); 1361 } 1362 1363 int 1364 vfs_stdsync(struct mount *mp, int waitfor) 1365 { 1366 struct vnode *vp, *mvp; 1367 struct thread *td; 1368 int error, lockreq, allerror = 0; 1369 1370 td = curthread; 1371 lockreq = LK_EXCLUSIVE | LK_INTERLOCK; 1372 if (waitfor != MNT_WAIT) 1373 lockreq |= LK_NOWAIT; 1374 /* 1375 * Force stale buffer cache information to be flushed. 1376 */ 1377 loop: 1378 MNT_VNODE_FOREACH_ALL(vp, mp, mvp) { 1379 if (vp->v_bufobj.bo_dirty.bv_cnt == 0) { 1380 VI_UNLOCK(vp); 1381 continue; 1382 } 1383 if ((error = vget(vp, lockreq)) != 0) { 1384 if (error == ENOENT) { 1385 MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp); 1386 goto loop; 1387 } 1388 continue; 1389 } 1390 error = VOP_FSYNC(vp, waitfor, td); 1391 if (error) 1392 allerror = error; 1393 vput(vp); 1394 } 1395 return (allerror); 1396 } 1397 1398 int 1399 vfs_stdnosync(struct mount *mp, int waitfor) 1400 { 1401 1402 return (0); 1403 } 1404 1405 static int 1406 vop_stdcopy_file_range(struct vop_copy_file_range_args *ap) 1407 { 1408 int error; 1409 1410 error = vn_generic_copy_file_range(ap->a_invp, ap->a_inoffp, 1411 ap->a_outvp, ap->a_outoffp, ap->a_lenp, ap->a_flags, ap->a_incred, 1412 ap->a_outcred, ap->a_fsizetd); 1413 return (error); 1414 } 1415 1416 int 1417 vfs_stdvget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) 1418 { 1419 1420 return (EOPNOTSUPP); 1421 } 1422 1423 int 1424 vfs_stdfhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) 1425 { 1426 1427 return (EOPNOTSUPP); 1428 } 1429 1430 int 1431 vfs_stdinit(struct vfsconf *vfsp) 1432 { 1433 1434 return (0); 1435 } 1436 1437 int 1438 vfs_stduninit(struct vfsconf *vfsp) 1439 { 1440 1441 return(0); 1442 } 1443 1444 int 1445 vfs_stdextattrctl(struct mount *mp, int cmd, struct vnode *filename_vp, 1446 int attrnamespace, const char *attrname) 1447 { 1448 1449 if (filename_vp != NULL) 1450 VOP_UNLOCK(filename_vp); 1451 return (EOPNOTSUPP); 1452 } 1453 1454 int 1455 vfs_stdsysctl(struct mount *mp, fsctlop_t op, struct sysctl_req *req) 1456 { 1457 1458 return (EOPNOTSUPP); 1459 } 1460 1461 static vop_bypass_t * 1462 bp_by_off(struct vop_vector *vop, struct vop_generic_args *a) 1463 { 1464 1465 return (*(vop_bypass_t **)((char *)vop + a->a_desc->vdesc_vop_offset)); 1466 } 1467 1468 int 1469 vop_sigdefer(struct vop_vector *vop, struct vop_generic_args *a) 1470 { 1471 vop_bypass_t *bp; 1472 int prev_stops, rc; 1473 1474 bp = bp_by_off(vop, a); 1475 MPASS(bp != NULL); 1476 1477 prev_stops = sigdeferstop(SIGDEFERSTOP_SILENT); 1478 rc = bp(a); 1479 sigallowstop(prev_stops); 1480 return (rc); 1481 } 1482 1483 static int 1484 vop_stdstat(struct vop_stat_args *a) 1485 { 1486 struct vattr vattr; 1487 struct vattr *vap; 1488 struct vnode *vp; 1489 struct stat *sb; 1490 int error; 1491 u_short mode; 1492 1493 vp = a->a_vp; 1494 sb = a->a_sb; 1495 1496 error = vop_stat_helper_pre(a); 1497 if (error != 0) 1498 return (error); 1499 1500 vap = &vattr; 1501 1502 /* 1503 * Initialize defaults for new and unusual fields, so that file 1504 * systems which don't support these fields don't need to know 1505 * about them. 1506 */ 1507 vap->va_birthtime.tv_sec = -1; 1508 vap->va_birthtime.tv_nsec = 0; 1509 vap->va_fsid = VNOVAL; 1510 vap->va_gen = 0; 1511 vap->va_rdev = NODEV; 1512 1513 error = VOP_GETATTR(vp, vap, a->a_active_cred); 1514 if (error) 1515 goto out; 1516 1517 /* 1518 * Zero the spare stat fields 1519 */ 1520 bzero(sb, sizeof *sb); 1521 1522 /* 1523 * Copy from vattr table 1524 */ 1525 if (vap->va_fsid != VNOVAL) 1526 sb->st_dev = vap->va_fsid; 1527 else 1528 sb->st_dev = vp->v_mount->mnt_stat.f_fsid.val[0]; 1529 sb->st_ino = vap->va_fileid; 1530 mode = vap->va_mode; 1531 switch (vap->va_type) { 1532 case VREG: 1533 mode |= S_IFREG; 1534 break; 1535 case VDIR: 1536 mode |= S_IFDIR; 1537 break; 1538 case VBLK: 1539 mode |= S_IFBLK; 1540 break; 1541 case VCHR: 1542 mode |= S_IFCHR; 1543 break; 1544 case VLNK: 1545 mode |= S_IFLNK; 1546 break; 1547 case VSOCK: 1548 mode |= S_IFSOCK; 1549 break; 1550 case VFIFO: 1551 mode |= S_IFIFO; 1552 break; 1553 default: 1554 error = EBADF; 1555 goto out; 1556 } 1557 sb->st_mode = mode; 1558 sb->st_nlink = vap->va_nlink; 1559 sb->st_uid = vap->va_uid; 1560 sb->st_gid = vap->va_gid; 1561 sb->st_rdev = vap->va_rdev; 1562 if (vap->va_size > OFF_MAX) { 1563 error = EOVERFLOW; 1564 goto out; 1565 } 1566 sb->st_size = vap->va_size; 1567 sb->st_atim.tv_sec = vap->va_atime.tv_sec; 1568 sb->st_atim.tv_nsec = vap->va_atime.tv_nsec; 1569 sb->st_mtim.tv_sec = vap->va_mtime.tv_sec; 1570 sb->st_mtim.tv_nsec = vap->va_mtime.tv_nsec; 1571 sb->st_ctim.tv_sec = vap->va_ctime.tv_sec; 1572 sb->st_ctim.tv_nsec = vap->va_ctime.tv_nsec; 1573 sb->st_birthtim.tv_sec = vap->va_birthtime.tv_sec; 1574 sb->st_birthtim.tv_nsec = vap->va_birthtime.tv_nsec; 1575 1576 /* 1577 * According to www.opengroup.org, the meaning of st_blksize is 1578 * "a filesystem-specific preferred I/O block size for this 1579 * object. In some filesystem types, this may vary from file 1580 * to file" 1581 * Use minimum/default of PAGE_SIZE (e.g. for VCHR). 1582 */ 1583 1584 sb->st_blksize = max(PAGE_SIZE, vap->va_blocksize); 1585 sb->st_flags = vap->va_flags; 1586 sb->st_blocks = vap->va_bytes / S_BLKSIZE; 1587 sb->st_gen = vap->va_gen; 1588 out: 1589 return (vop_stat_helper_post(a, error)); 1590 } 1591 1592 static int 1593 vop_stdread_pgcache(struct vop_read_pgcache_args *ap __unused) 1594 { 1595 return (EJUSTRETURN); 1596 } 1597 1598 static int 1599 vop_stdvput_pair(struct vop_vput_pair_args *ap) 1600 { 1601 struct vnode *dvp, *vp, **vpp; 1602 1603 dvp = ap->a_dvp; 1604 vpp = ap->a_vpp; 1605 vput(dvp); 1606 if (vpp != NULL && ap->a_unlock_vp && (vp = *vpp) != NULL) 1607 vput(vp); 1608 return (0); 1609 } 1610