1 /* 2 * Copyright (c) 1982, 1986, 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_vnops.c 8.2 (Berkeley) 1/21/94 39 * $FreeBSD$ 40 */ 41 42 #include <sys/param.h> 43 #include <sys/systm.h> 44 #include <sys/fcntl.h> 45 #include <sys/file.h> 46 #include <sys/stat.h> 47 #include <sys/proc.h> 48 #include <sys/lock.h> 49 #include <sys/mount.h> 50 #include <sys/mutex.h> 51 #include <sys/namei.h> 52 #include <sys/vnode.h> 53 #include <sys/bio.h> 54 #include <sys/buf.h> 55 #include <sys/filio.h> 56 #include <sys/sx.h> 57 #include <sys/ttycom.h> 58 #include <sys/conf.h> 59 #include <sys/syslog.h> 60 61 #include <machine/limits.h> 62 63 static int vn_closefile(struct file *fp, struct thread *td); 64 static int vn_ioctl(struct file *fp, u_long com, caddr_t data, 65 struct thread *td); 66 static int vn_read(struct file *fp, struct uio *uio, 67 struct ucred *cred, int flags, struct thread *td); 68 static int vn_poll(struct file *fp, int events, struct ucred *cred, 69 struct thread *td); 70 static int vn_kqfilter(struct file *fp, struct knote *kn); 71 static int vn_statfile(struct file *fp, struct stat *sb, struct thread *td); 72 static int vn_write(struct file *fp, struct uio *uio, 73 struct ucred *cred, int flags, struct thread *td); 74 75 struct fileops vnops = { 76 vn_read, vn_write, vn_ioctl, vn_poll, vn_kqfilter, 77 vn_statfile, vn_closefile 78 }; 79 80 int 81 vn_open(ndp, flagp, cmode) 82 register struct nameidata *ndp; 83 int *flagp, cmode; 84 { 85 struct thread *td = ndp->ni_cnd.cn_thread; 86 87 return (vn_open_cred(ndp, flagp, cmode, td->td_ucred)); 88 } 89 90 /* 91 * Common code for vnode open operations. 92 * Check permissions, and call the VOP_OPEN or VOP_CREATE routine. 93 * 94 * Note that this does NOT free nameidata for the successful case, 95 * due to the NDINIT being done elsewhere. 96 */ 97 int 98 vn_open_cred(ndp, flagp, cmode, cred) 99 register struct nameidata *ndp; 100 int *flagp, cmode; 101 struct ucred *cred; 102 { 103 struct vnode *vp; 104 struct mount *mp; 105 struct thread *td = ndp->ni_cnd.cn_thread; 106 struct vattr vat; 107 struct vattr *vap = &vat; 108 int mode, fmode, error; 109 #ifdef LOOKUP_SHARED 110 int exclusive; /* The current intended lock state */ 111 112 exclusive = 0; 113 #endif 114 115 restart: 116 fmode = *flagp; 117 if (fmode & O_CREAT) { 118 ndp->ni_cnd.cn_nameiop = CREATE; 119 ndp->ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF; 120 if ((fmode & O_EXCL) == 0 && (fmode & O_NOFOLLOW) == 0) 121 ndp->ni_cnd.cn_flags |= FOLLOW; 122 bwillwrite(); 123 if ((error = namei(ndp)) != 0) 124 return (error); 125 if (ndp->ni_vp == NULL) { 126 VATTR_NULL(vap); 127 vap->va_type = VREG; 128 vap->va_mode = cmode; 129 if (fmode & O_EXCL) 130 vap->va_vaflags |= VA_EXCLUSIVE; 131 if (vn_start_write(ndp->ni_dvp, &mp, V_NOWAIT) != 0) { 132 NDFREE(ndp, NDF_ONLY_PNBUF); 133 vput(ndp->ni_dvp); 134 if ((error = vn_start_write(NULL, &mp, 135 V_XSLEEP | PCATCH)) != 0) 136 return (error); 137 goto restart; 138 } 139 VOP_LEASE(ndp->ni_dvp, td, cred, LEASE_WRITE); 140 error = VOP_CREATE(ndp->ni_dvp, &ndp->ni_vp, 141 &ndp->ni_cnd, vap); 142 vput(ndp->ni_dvp); 143 vn_finished_write(mp); 144 if (error) { 145 NDFREE(ndp, NDF_ONLY_PNBUF); 146 return (error); 147 } 148 ASSERT_VOP_UNLOCKED(ndp->ni_dvp, "create"); 149 ASSERT_VOP_LOCKED(ndp->ni_vp, "create"); 150 fmode &= ~O_TRUNC; 151 vp = ndp->ni_vp; 152 #ifdef LOOKUP_SHARED 153 exclusive = 1; 154 #endif 155 } else { 156 if (ndp->ni_dvp == ndp->ni_vp) 157 vrele(ndp->ni_dvp); 158 else 159 vput(ndp->ni_dvp); 160 ndp->ni_dvp = NULL; 161 vp = ndp->ni_vp; 162 if (fmode & O_EXCL) { 163 error = EEXIST; 164 goto bad; 165 } 166 fmode &= ~O_CREAT; 167 } 168 } else { 169 ndp->ni_cnd.cn_nameiop = LOOKUP; 170 #ifdef LOOKUP_SHARED 171 ndp->ni_cnd.cn_flags = 172 ((fmode & O_NOFOLLOW) ? NOFOLLOW : FOLLOW) | 173 LOCKSHARED | LOCKLEAF; 174 #else 175 ndp->ni_cnd.cn_flags = 176 ((fmode & O_NOFOLLOW) ? NOFOLLOW : FOLLOW) | LOCKLEAF; 177 #endif 178 if ((error = namei(ndp)) != 0) 179 return (error); 180 vp = ndp->ni_vp; 181 } 182 if (vp->v_type == VLNK) { 183 error = EMLINK; 184 goto bad; 185 } 186 if (vp->v_type == VSOCK) { 187 error = EOPNOTSUPP; 188 goto bad; 189 } 190 if ((fmode & O_CREAT) == 0) { 191 mode = 0; 192 if (fmode & (FWRITE | O_TRUNC)) { 193 if (vp->v_type == VDIR) { 194 error = EISDIR; 195 goto bad; 196 } 197 error = vn_writechk(vp); 198 if (error) 199 goto bad; 200 mode |= VWRITE; 201 } 202 if (fmode & FREAD) 203 mode |= VREAD; 204 if (mode) { 205 error = VOP_ACCESS(vp, mode, cred, td); 206 if (error) 207 goto bad; 208 } 209 } 210 if ((error = VOP_OPEN(vp, fmode, cred, td)) != 0) 211 goto bad; 212 /* 213 * Make sure that a VM object is created for VMIO support. 214 */ 215 if (vn_canvmio(vp) == TRUE) { 216 #ifdef LOOKUP_SHARED 217 int flock; 218 219 if (!exclusive && VOP_GETVOBJECT(vp, NULL) != 0) 220 VOP_LOCK(vp, LK_UPGRADE, td); 221 /* 222 * In cases where the object is marked as dead object_create 223 * will unlock and relock exclusive. It is safe to call in 224 * here with a shared lock because we only examine fields that 225 * the shared lock guarantees will be stable. In the UPGRADE 226 * case it is not likely that anyone has used this vnode yet 227 * so there will be no contention. The logic after this call 228 * restores the requested locking state. 229 */ 230 #endif 231 if ((error = vfs_object_create(vp, td, cred)) != 0) { 232 VOP_UNLOCK(vp, 0, td); 233 VOP_CLOSE(vp, fmode, cred, td); 234 NDFREE(ndp, NDF_ONLY_PNBUF); 235 vrele(vp); 236 *flagp = fmode; 237 return (error); 238 } 239 #ifdef LOOKUP_SHARED 240 flock = VOP_ISLOCKED(vp, td); 241 if (!exclusive && flock == LK_EXCLUSIVE) 242 VOP_LOCK(vp, LK_DOWNGRADE, td); 243 #endif 244 } 245 246 if (fmode & FWRITE) 247 vp->v_writecount++; 248 *flagp = fmode; 249 return (0); 250 bad: 251 NDFREE(ndp, NDF_ONLY_PNBUF); 252 vput(vp); 253 *flagp = fmode; 254 return (error); 255 } 256 257 /* 258 * Check for write permissions on the specified vnode. 259 * Prototype text segments cannot be written. 260 */ 261 int 262 vn_writechk(vp) 263 register struct vnode *vp; 264 { 265 266 /* 267 * If there's shared text associated with 268 * the vnode, try to free it up once. If 269 * we fail, we can't allow writing. 270 */ 271 if (vp->v_flag & VTEXT) 272 return (ETXTBSY); 273 return (0); 274 } 275 276 /* 277 * Vnode close call 278 */ 279 int 280 vn_close(vp, flags, cred, td) 281 register struct vnode *vp; 282 int flags; 283 struct ucred *cred; 284 struct thread *td; 285 { 286 int error; 287 288 if (flags & FWRITE) 289 vp->v_writecount--; 290 error = VOP_CLOSE(vp, flags, cred, td); 291 /* 292 * XXX - In certain instances VOP_CLOSE has to do the vrele 293 * itself. If the vrele has been done, it will return EAGAIN 294 * to indicate that the vrele should not be done again. When 295 * this happens, we just return success. The correct thing to 296 * do would be to have all VOP_CLOSE instances do the vrele. 297 */ 298 if (error == EAGAIN) 299 return (0); 300 vrele(vp); 301 return (error); 302 } 303 304 /* 305 * Sequential heuristic - detect sequential operation 306 */ 307 static __inline 308 int 309 sequential_heuristic(struct uio *uio, struct file *fp) 310 { 311 312 if ((uio->uio_offset == 0 && fp->f_seqcount > 0) || 313 uio->uio_offset == fp->f_nextoff) { 314 /* 315 * XXX we assume that the filesystem block size is 316 * the default. Not true, but still gives us a pretty 317 * good indicator of how sequential the read operations 318 * are. 319 */ 320 fp->f_seqcount += (uio->uio_resid + BKVASIZE - 1) / BKVASIZE; 321 if (fp->f_seqcount >= 127) 322 fp->f_seqcount = 127; 323 return(fp->f_seqcount << 16); 324 } 325 326 /* 327 * Not sequential, quick draw-down of seqcount 328 */ 329 if (fp->f_seqcount > 1) 330 fp->f_seqcount = 1; 331 else 332 fp->f_seqcount = 0; 333 return(0); 334 } 335 336 /* 337 * Package up an I/O request on a vnode into a uio and do it. 338 */ 339 int 340 vn_rdwr(rw, vp, base, len, offset, segflg, ioflg, cred, aresid, td) 341 enum uio_rw rw; 342 struct vnode *vp; 343 caddr_t base; 344 int len; 345 off_t offset; 346 enum uio_seg segflg; 347 int ioflg; 348 struct ucred *cred; 349 int *aresid; 350 struct thread *td; 351 { 352 struct uio auio; 353 struct iovec aiov; 354 struct mount *mp; 355 int error; 356 357 if ((ioflg & IO_NODELOCKED) == 0) { 358 mp = NULL; 359 if (rw == UIO_WRITE && 360 vp->v_type != VCHR && 361 (error = vn_start_write(vp, &mp, V_WAIT | PCATCH)) != 0) 362 return (error); 363 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 364 } 365 auio.uio_iov = &aiov; 366 auio.uio_iovcnt = 1; 367 aiov.iov_base = base; 368 aiov.iov_len = len; 369 auio.uio_resid = len; 370 auio.uio_offset = offset; 371 auio.uio_segflg = segflg; 372 auio.uio_rw = rw; 373 auio.uio_td = td; 374 if (rw == UIO_READ) { 375 error = VOP_READ(vp, &auio, ioflg, cred); 376 } else { 377 error = VOP_WRITE(vp, &auio, ioflg, cred); 378 } 379 if (aresid) 380 *aresid = auio.uio_resid; 381 else 382 if (auio.uio_resid && error == 0) 383 error = EIO; 384 if ((ioflg & IO_NODELOCKED) == 0) { 385 vn_finished_write(mp); 386 VOP_UNLOCK(vp, 0, td); 387 } 388 return (error); 389 } 390 391 /* 392 * Package up an I/O request on a vnode into a uio and do it. The I/O 393 * request is split up into smaller chunks and we try to avoid saturating 394 * the buffer cache while potentially holding a vnode locked, so we 395 * check bwillwrite() before calling vn_rdwr(). We also call uio_yield() 396 * to give other processes a chance to lock the vnode (either other processes 397 * core'ing the same binary, or unrelated processes scanning the directory). 398 */ 399 int 400 vn_rdwr_inchunks(rw, vp, base, len, offset, segflg, ioflg, cred, aresid, td) 401 enum uio_rw rw; 402 struct vnode *vp; 403 caddr_t base; 404 int len; 405 off_t offset; 406 enum uio_seg segflg; 407 int ioflg; 408 struct ucred *cred; 409 int *aresid; 410 struct thread *td; 411 { 412 int error = 0; 413 414 do { 415 int chunk = (len > MAXBSIZE) ? MAXBSIZE : len; 416 417 if (rw != UIO_READ && vp->v_type == VREG) 418 bwillwrite(); 419 error = vn_rdwr(rw, vp, base, chunk, offset, segflg, 420 ioflg, cred, aresid, td); 421 len -= chunk; /* aresid calc already includes length */ 422 if (error) 423 break; 424 offset += chunk; 425 base += chunk; 426 uio_yield(); 427 } while (len); 428 if (aresid) 429 *aresid += len; 430 return (error); 431 } 432 433 /* 434 * File table vnode read routine. 435 */ 436 static int 437 vn_read(fp, uio, cred, flags, td) 438 struct file *fp; 439 struct uio *uio; 440 struct ucred *cred; 441 struct thread *td; 442 int flags; 443 { 444 struct vnode *vp; 445 int error, ioflag; 446 447 mtx_lock(&Giant); 448 KASSERT(uio->uio_td == td, ("uio_td %p is not td %p", 449 uio->uio_td, td)); 450 vp = (struct vnode *)fp->f_data; 451 ioflag = 0; 452 if (fp->f_flag & FNONBLOCK) 453 ioflag |= IO_NDELAY; 454 if (fp->f_flag & O_DIRECT) 455 ioflag |= IO_DIRECT; 456 VOP_LEASE(vp, td, cred, LEASE_READ); 457 vn_lock(vp, LK_SHARED | LK_NOPAUSE | LK_RETRY, td); 458 if ((flags & FOF_OFFSET) == 0) 459 uio->uio_offset = fp->f_offset; 460 461 ioflag |= sequential_heuristic(uio, fp); 462 463 error = VOP_READ(vp, uio, ioflag, cred); 464 if ((flags & FOF_OFFSET) == 0) 465 fp->f_offset = uio->uio_offset; 466 fp->f_nextoff = uio->uio_offset; 467 VOP_UNLOCK(vp, 0, td); 468 mtx_unlock(&Giant); 469 return (error); 470 } 471 472 /* 473 * File table vnode write routine. 474 */ 475 static int 476 vn_write(fp, uio, cred, flags, td) 477 struct file *fp; 478 struct uio *uio; 479 struct ucred *cred; 480 struct thread *td; 481 int flags; 482 { 483 struct vnode *vp; 484 struct mount *mp; 485 int error, ioflag; 486 487 mtx_lock(&Giant); 488 KASSERT(uio->uio_td == td, ("uio_td %p is not td %p", 489 uio->uio_td, td)); 490 vp = (struct vnode *)fp->f_data; 491 if (vp->v_type == VREG) 492 bwillwrite(); 493 ioflag = IO_UNIT; 494 if (vp->v_type == VREG && (fp->f_flag & O_APPEND)) 495 ioflag |= IO_APPEND; 496 if (fp->f_flag & FNONBLOCK) 497 ioflag |= IO_NDELAY; 498 if (fp->f_flag & O_DIRECT) 499 ioflag |= IO_DIRECT; 500 if ((fp->f_flag & O_FSYNC) || 501 (vp->v_mount && (vp->v_mount->mnt_flag & MNT_SYNCHRONOUS))) 502 ioflag |= IO_SYNC; 503 mp = NULL; 504 if (vp->v_type != VCHR && 505 (error = vn_start_write(vp, &mp, V_WAIT | PCATCH)) != 0) { 506 mtx_unlock(&Giant); 507 return (error); 508 } 509 VOP_LEASE(vp, td, cred, LEASE_WRITE); 510 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 511 if ((flags & FOF_OFFSET) == 0) 512 uio->uio_offset = fp->f_offset; 513 ioflag |= sequential_heuristic(uio, fp); 514 error = VOP_WRITE(vp, uio, ioflag, cred); 515 if ((flags & FOF_OFFSET) == 0) 516 fp->f_offset = uio->uio_offset; 517 fp->f_nextoff = uio->uio_offset; 518 VOP_UNLOCK(vp, 0, td); 519 vn_finished_write(mp); 520 mtx_unlock(&Giant); 521 return (error); 522 } 523 524 /* 525 * File table vnode stat routine. 526 */ 527 static int 528 vn_statfile(fp, sb, td) 529 struct file *fp; 530 struct stat *sb; 531 struct thread *td; 532 { 533 struct vnode *vp = (struct vnode *)fp->f_data; 534 int error; 535 536 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 537 error = vn_stat(vp, sb, td); 538 VOP_UNLOCK(vp, 0, td); 539 540 return (error); 541 } 542 543 /* 544 * Stat a vnode; implementation for the stat syscall 545 */ 546 int 547 vn_stat(vp, sb, td) 548 struct vnode *vp; 549 register struct stat *sb; 550 struct thread *td; 551 { 552 struct vattr vattr; 553 register struct vattr *vap; 554 int error; 555 u_short mode; 556 557 vap = &vattr; 558 error = VOP_GETATTR(vp, vap, td->td_ucred, td); 559 if (error) 560 return (error); 561 562 /* 563 * Zero the spare stat fields 564 */ 565 bzero(sb, sizeof *sb); 566 567 /* 568 * Copy from vattr table 569 */ 570 if (vap->va_fsid != VNOVAL) 571 sb->st_dev = vap->va_fsid; 572 else 573 sb->st_dev = vp->v_mount->mnt_stat.f_fsid.val[0]; 574 sb->st_ino = vap->va_fileid; 575 mode = vap->va_mode; 576 switch (vap->va_type) { 577 case VREG: 578 mode |= S_IFREG; 579 break; 580 case VDIR: 581 mode |= S_IFDIR; 582 break; 583 case VBLK: 584 mode |= S_IFBLK; 585 break; 586 case VCHR: 587 mode |= S_IFCHR; 588 break; 589 case VLNK: 590 mode |= S_IFLNK; 591 /* This is a cosmetic change, symlinks do not have a mode. */ 592 if (vp->v_mount->mnt_flag & MNT_NOSYMFOLLOW) 593 sb->st_mode &= ~ACCESSPERMS; /* 0000 */ 594 else 595 sb->st_mode |= ACCESSPERMS; /* 0777 */ 596 break; 597 case VSOCK: 598 mode |= S_IFSOCK; 599 break; 600 case VFIFO: 601 mode |= S_IFIFO; 602 break; 603 default: 604 return (EBADF); 605 }; 606 sb->st_mode = mode; 607 sb->st_nlink = vap->va_nlink; 608 sb->st_uid = vap->va_uid; 609 sb->st_gid = vap->va_gid; 610 sb->st_rdev = vap->va_rdev; 611 if (vap->va_size > OFF_MAX) 612 return (EOVERFLOW); 613 sb->st_size = vap->va_size; 614 sb->st_atimespec = vap->va_atime; 615 sb->st_mtimespec = vap->va_mtime; 616 sb->st_ctimespec = vap->va_ctime; 617 sb->st_createtimespec = vap->va_createtime; 618 619 /* 620 * According to www.opengroup.org, the meaning of st_blksize is 621 * "a filesystem-specific preferred I/O block size for this 622 * object. In some filesystem types, this may vary from file 623 * to file" 624 * Default to PAGE_SIZE after much discussion. 625 */ 626 627 if (vap->va_type == VREG) { 628 sb->st_blksize = vap->va_blocksize; 629 } else if (vn_isdisk(vp, NULL)) { 630 sb->st_blksize = vp->v_rdev->si_bsize_best; 631 if (sb->st_blksize < vp->v_rdev->si_bsize_phys) 632 sb->st_blksize = vp->v_rdev->si_bsize_phys; 633 if (sb->st_blksize < BLKDEV_IOSIZE) 634 sb->st_blksize = BLKDEV_IOSIZE; 635 } else { 636 sb->st_blksize = PAGE_SIZE; 637 } 638 639 sb->st_flags = vap->va_flags; 640 if (suser(td)) 641 sb->st_gen = 0; 642 else 643 sb->st_gen = vap->va_gen; 644 645 #if (S_BLKSIZE == 512) 646 /* Optimize this case */ 647 sb->st_blocks = vap->va_bytes >> 9; 648 #else 649 sb->st_blocks = vap->va_bytes / S_BLKSIZE; 650 #endif 651 return (0); 652 } 653 654 /* 655 * File table vnode ioctl routine. 656 */ 657 static int 658 vn_ioctl(fp, com, data, td) 659 struct file *fp; 660 u_long com; 661 caddr_t data; 662 struct thread *td; 663 { 664 register struct vnode *vp = ((struct vnode *)fp->f_data); 665 struct vnode *vpold; 666 struct vattr vattr; 667 int error; 668 669 switch (vp->v_type) { 670 671 case VREG: 672 case VDIR: 673 if (com == FIONREAD) { 674 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 675 error = VOP_GETATTR(vp, &vattr, td->td_ucred, td); 676 VOP_UNLOCK(vp, 0, td); 677 if (error) 678 return (error); 679 *(int *)data = vattr.va_size - fp->f_offset; 680 return (0); 681 } 682 if (com == FIONBIO || com == FIOASYNC) /* XXX */ 683 return (0); /* XXX */ 684 /* fall into ... */ 685 686 default: 687 #if 0 688 return (ENOTTY); 689 #endif 690 case VFIFO: 691 case VCHR: 692 case VBLK: 693 if (com == FIODTYPE) { 694 if (vp->v_type != VCHR && vp->v_type != VBLK) 695 return (ENOTTY); 696 *(int *)data = devsw(vp->v_rdev)->d_flags & D_TYPEMASK; 697 return (0); 698 } 699 error = VOP_IOCTL(vp, com, data, fp->f_flag, td->td_ucred, td); 700 if (error == 0 && com == TIOCSCTTY) { 701 702 /* Do nothing if reassigning same control tty */ 703 sx_slock(&proctree_lock); 704 if (td->td_proc->p_session->s_ttyvp == vp) { 705 sx_sunlock(&proctree_lock); 706 return (0); 707 } 708 709 vpold = td->td_proc->p_session->s_ttyvp; 710 VREF(vp); 711 SESS_LOCK(td->td_proc->p_session); 712 td->td_proc->p_session->s_ttyvp = vp; 713 SESS_UNLOCK(td->td_proc->p_session); 714 715 sx_sunlock(&proctree_lock); 716 717 /* Get rid of reference to old control tty */ 718 if (vpold) 719 vrele(vpold); 720 } 721 return (error); 722 } 723 } 724 725 /* 726 * File table vnode poll routine. 727 */ 728 static int 729 vn_poll(fp, events, cred, td) 730 struct file *fp; 731 int events; 732 struct ucred *cred; 733 struct thread *td; 734 { 735 736 return (VOP_POLL(((struct vnode *)fp->f_data), events, cred, td)); 737 } 738 739 /* 740 * Check that the vnode is still valid, and if so 741 * acquire requested lock. 742 */ 743 int 744 #ifndef DEBUG_LOCKS 745 vn_lock(vp, flags, td) 746 #else 747 debug_vn_lock(vp, flags, td, filename, line) 748 #endif 749 struct vnode *vp; 750 int flags; 751 struct thread *td; 752 #ifdef DEBUG_LOCKS 753 const char *filename; 754 int line; 755 #endif 756 { 757 int error; 758 759 do { 760 if ((flags & LK_INTERLOCK) == 0) 761 mtx_lock(&vp->v_interlock); 762 if ((vp->v_flag & VXLOCK) && vp->v_vxproc != curthread) { 763 vp->v_flag |= VXWANT; 764 msleep(vp, &vp->v_interlock, PINOD | PDROP, 765 "vn_lock", 0); 766 error = ENOENT; 767 } else { 768 #if 0 769 /* this can now occur in normal operation */ 770 if (vp->v_vxproc != NULL) 771 log(LOG_INFO, "VXLOCK interlock avoided in vn_lock\n"); 772 #endif 773 #ifdef DEBUG_LOCKS 774 vp->filename = filename; 775 vp->line = line; 776 #endif 777 error = VOP_LOCK(vp, 778 flags | LK_NOPAUSE | LK_INTERLOCK, td); 779 if (error == 0) 780 return (error); 781 } 782 flags &= ~LK_INTERLOCK; 783 } while (flags & LK_RETRY); 784 return (error); 785 } 786 787 /* 788 * File table vnode close routine. 789 */ 790 static int 791 vn_closefile(fp, td) 792 struct file *fp; 793 struct thread *td; 794 { 795 796 fp->f_ops = &badfileops; 797 return (vn_close(((struct vnode *)fp->f_data), fp->f_flag, 798 fp->f_cred, td)); 799 } 800 801 /* 802 * Preparing to start a filesystem write operation. If the operation is 803 * permitted, then we bump the count of operations in progress and 804 * proceed. If a suspend request is in progress, we wait until the 805 * suspension is over, and then proceed. 806 */ 807 int 808 vn_start_write(vp, mpp, flags) 809 struct vnode *vp; 810 struct mount **mpp; 811 int flags; 812 { 813 struct mount *mp; 814 int error; 815 816 /* 817 * If a vnode is provided, get and return the mount point that 818 * to which it will write. 819 */ 820 if (vp != NULL) { 821 if ((error = VOP_GETWRITEMOUNT(vp, mpp)) != 0) { 822 *mpp = NULL; 823 if (error != EOPNOTSUPP) 824 return (error); 825 return (0); 826 } 827 } 828 if ((mp = *mpp) == NULL) 829 return (0); 830 /* 831 * Check on status of suspension. 832 */ 833 while ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0) { 834 if (flags & V_NOWAIT) 835 return (EWOULDBLOCK); 836 error = tsleep(&mp->mnt_flag, (PUSER - 1) | (flags & PCATCH), 837 "suspfs", 0); 838 if (error) 839 return (error); 840 } 841 if (flags & V_XSLEEP) 842 return (0); 843 mp->mnt_writeopcount++; 844 return (0); 845 } 846 847 /* 848 * Secondary suspension. Used by operations such as vop_inactive 849 * routines that are needed by the higher level functions. These 850 * are allowed to proceed until all the higher level functions have 851 * completed (indicated by mnt_writeopcount dropping to zero). At that 852 * time, these operations are halted until the suspension is over. 853 */ 854 int 855 vn_write_suspend_wait(vp, mp, flags) 856 struct vnode *vp; 857 struct mount *mp; 858 int flags; 859 { 860 int error; 861 862 if (vp != NULL) { 863 if ((error = VOP_GETWRITEMOUNT(vp, &mp)) != 0) { 864 if (error != EOPNOTSUPP) 865 return (error); 866 return (0); 867 } 868 } 869 /* 870 * If we are not suspended or have not yet reached suspended 871 * mode, then let the operation proceed. 872 */ 873 if (mp == NULL || (mp->mnt_kern_flag & MNTK_SUSPENDED) == 0) 874 return (0); 875 if (flags & V_NOWAIT) 876 return (EWOULDBLOCK); 877 /* 878 * Wait for the suspension to finish. 879 */ 880 return (tsleep(&mp->mnt_flag, (PUSER - 1) | (flags & PCATCH), 881 "suspfs", 0)); 882 } 883 884 /* 885 * Filesystem write operation has completed. If we are suspending and this 886 * operation is the last one, notify the suspender that the suspension is 887 * now in effect. 888 */ 889 void 890 vn_finished_write(mp) 891 struct mount *mp; 892 { 893 894 if (mp == NULL) 895 return; 896 mp->mnt_writeopcount--; 897 if (mp->mnt_writeopcount < 0) 898 panic("vn_finished_write: neg cnt"); 899 if ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0 && 900 mp->mnt_writeopcount <= 0) 901 wakeup(&mp->mnt_writeopcount); 902 } 903 904 /* 905 * Request a filesystem to suspend write operations. 906 */ 907 void 908 vfs_write_suspend(mp) 909 struct mount *mp; 910 { 911 struct thread *td = curthread; 912 913 if (mp->mnt_kern_flag & MNTK_SUSPEND) 914 return; 915 mp->mnt_kern_flag |= MNTK_SUSPEND; 916 if (mp->mnt_writeopcount > 0) 917 (void) tsleep(&mp->mnt_writeopcount, PUSER - 1, "suspwt", 0); 918 VFS_SYNC(mp, MNT_WAIT, td->td_ucred, td); 919 mp->mnt_kern_flag |= MNTK_SUSPENDED; 920 } 921 922 /* 923 * Request a filesystem to resume write operations. 924 */ 925 void 926 vfs_write_resume(mp) 927 struct mount *mp; 928 { 929 930 if ((mp->mnt_kern_flag & MNTK_SUSPEND) == 0) 931 return; 932 mp->mnt_kern_flag &= ~(MNTK_SUSPEND | MNTK_SUSPENDED); 933 wakeup(&mp->mnt_writeopcount); 934 wakeup(&mp->mnt_flag); 935 } 936 937 /* 938 * Implement kqueues for files by translating it to vnode operation. 939 */ 940 static int 941 vn_kqfilter(struct file *fp, struct knote *kn) 942 { 943 944 return (VOP_KQFILTER(((struct vnode *)fp->f_data), kn)); 945 } 946 947 /* 948 * Simplified in-kernel wrapper calls for extended attribute access. 949 * Both calls pass in a NULL credential, authorizing as "kernel" access. 950 * Set IO_NODELOCKED in ioflg if the vnode is already locked. 951 */ 952 int 953 vn_extattr_get(struct vnode *vp, int ioflg, int attrnamespace, 954 const char *attrname, int *buflen, char *buf, struct thread *td) 955 { 956 struct uio auio; 957 struct iovec iov; 958 int error; 959 960 iov.iov_len = *buflen; 961 iov.iov_base = buf; 962 963 auio.uio_iov = &iov; 964 auio.uio_iovcnt = 1; 965 auio.uio_rw = UIO_READ; 966 auio.uio_segflg = UIO_SYSSPACE; 967 auio.uio_td = td; 968 auio.uio_offset = 0; 969 auio.uio_resid = *buflen; 970 971 if ((ioflg & IO_NODELOCKED) == 0) 972 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 973 974 /* authorize attribute retrieval as kernel */ 975 error = VOP_GETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, NULL, 976 td); 977 978 if ((ioflg & IO_NODELOCKED) == 0) 979 VOP_UNLOCK(vp, 0, td); 980 981 if (error == 0) { 982 *buflen = *buflen - auio.uio_resid; 983 } 984 985 return (error); 986 } 987 988 /* 989 * XXX failure mode if partially written? 990 */ 991 int 992 vn_extattr_set(struct vnode *vp, int ioflg, int attrnamespace, 993 const char *attrname, int buflen, char *buf, struct thread *td) 994 { 995 struct uio auio; 996 struct iovec iov; 997 struct mount *mp; 998 int error; 999 1000 iov.iov_len = buflen; 1001 iov.iov_base = buf; 1002 1003 auio.uio_iov = &iov; 1004 auio.uio_iovcnt = 1; 1005 auio.uio_rw = UIO_WRITE; 1006 auio.uio_segflg = UIO_SYSSPACE; 1007 auio.uio_td = td; 1008 auio.uio_offset = 0; 1009 auio.uio_resid = buflen; 1010 1011 if ((ioflg & IO_NODELOCKED) == 0) { 1012 if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0) 1013 return (error); 1014 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 1015 } 1016 1017 /* authorize attribute setting as kernel */ 1018 error = VOP_SETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, td); 1019 1020 if ((ioflg & IO_NODELOCKED) == 0) { 1021 vn_finished_write(mp); 1022 VOP_UNLOCK(vp, 0, td); 1023 } 1024 1025 return (error); 1026 } 1027 1028 int 1029 vn_extattr_rm(struct vnode *vp, int ioflg, int attrnamespace, 1030 const char *attrname, struct thread *td) 1031 { 1032 struct mount *mp; 1033 int error; 1034 1035 if ((ioflg & IO_NODELOCKED) == 0) { 1036 if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0) 1037 return (error); 1038 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td); 1039 } 1040 1041 /* authorize attribute removal as kernel */ 1042 error = VOP_SETEXTATTR(vp, attrnamespace, attrname, NULL, NULL, td); 1043 1044 if ((ioflg & IO_NODELOCKED) == 0) { 1045 vn_finished_write(mp); 1046 VOP_UNLOCK(vp, 0, td); 1047 } 1048 1049 return (error); 1050 } 1051