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