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.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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
34 * @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94
35 * $FreeBSD: src/sys/kern/vfs_vnops.c,v 1.87.2.13 2002/12/29 18:19:53 dillon Exp $
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/fcntl.h>
45 #include <sys/mount.h>
46 #include <sys/nlookup.h>
47 #include <sys/vnode.h>
49 #include <sys/filio.h>
50 #include <sys/ttycom.h>
52 #include <sys/sysctl.h>
53 #include <sys/syslog.h>
55 #include <sys/thread2.h>
56 #include <sys/mplock2.h>
58 static int vn_closefile (struct file
*fp
);
59 static int vn_ioctl (struct file
*fp
, u_long com
, caddr_t data
,
60 struct ucred
*cred
, struct sysmsg
*msg
);
61 static int vn_read (struct file
*fp
, struct uio
*uio
,
62 struct ucred
*cred
, int flags
);
63 static int vn_kqfilter (struct file
*fp
, struct knote
*kn
);
64 static int vn_statfile (struct file
*fp
, struct stat
*sb
, struct ucred
*cred
);
65 static int vn_write (struct file
*fp
, struct uio
*uio
,
66 struct ucred
*cred
, int flags
);
68 struct fileops vnode_fileops
= {
72 .fo_kqfilter
= vn_kqfilter
,
73 .fo_stat
= vn_statfile
,
74 .fo_close
= vn_closefile
,
75 .fo_shutdown
= nofo_shutdown
79 * Common code for vnode open operations. Check permissions, and call
80 * the VOP_NOPEN or VOP_NCREATE routine.
82 * The caller is responsible for setting up nd with nlookup_init() and
83 * for cleaning it up with nlookup_done(), whether we return an error
86 * On success nd->nl_open_vp will hold a referenced and, if requested,
87 * locked vnode. A locked vnode is requested via NLC_LOCKVP. If fp
88 * is non-NULL the vnode will be installed in the file pointer.
90 * NOTE: If the caller wishes the namecache entry to be operated with
91 * a shared lock it must use NLC_SHAREDLOCK. If NLC_LOCKVP is set
92 * then the vnode lock will also be shared.
94 * NOTE: The vnode is referenced just once on return whether or not it
95 * is also installed in the file pointer.
98 vn_open(struct nlookupdata
*nd
, struct file
*fp
, int fmode
, int cmode
)
101 struct ucred
*cred
= nd
->nl_cred
;
103 struct vattr
*vap
= &vat
;
110 * Certain combinations are illegal
112 if ((fmode
& (FWRITE
| O_TRUNC
)) == O_TRUNC
)
116 * Lookup the path and create or obtain the vnode. After a
117 * successful lookup a locked nd->nl_nch will be returned.
119 * The result of this section should be a locked vnode.
121 * XXX with only a little work we should be able to avoid locking
122 * the vnode if FWRITE, O_CREAT, and O_TRUNC are *not* set.
124 nd
->nl_flags
|= NLC_OPEN
;
125 if (fmode
& O_APPEND
)
126 nd
->nl_flags
|= NLC_APPEND
;
128 nd
->nl_flags
|= NLC_TRUNCATE
;
130 nd
->nl_flags
|= NLC_READ
;
132 nd
->nl_flags
|= NLC_WRITE
;
133 if ((fmode
& O_EXCL
) == 0 && (fmode
& O_NOFOLLOW
) == 0)
134 nd
->nl_flags
|= NLC_FOLLOW
;
136 if (fmode
& O_CREAT
) {
138 * CONDITIONAL CREATE FILE CASE
140 * Setting NLC_CREATE causes a negative hit to store
141 * the negative hit ncp and not return an error. Then
142 * nc_error or nc_vp may be checked to see if the ncp
143 * represents a negative hit. NLC_CREATE also requires
144 * write permission on the governing directory or EPERM
147 nd
->nl_flags
|= NLC_CREATE
;
148 nd
->nl_flags
|= NLC_REFDVP
;
153 * NORMAL OPEN FILE CASE
162 * split case to allow us to re-resolve and retry the ncp in case
166 if (fmode
& O_CREAT
) {
167 if (nd
->nl_nch
.ncp
->nc_vp
== NULL
) {
168 if ((error
= ncp_writechk(&nd
->nl_nch
)) != 0)
172 vap
->va_mode
= cmode
;
174 vap
->va_vaflags
|= VA_EXCLUSIVE
;
175 error
= VOP_NCREATE(&nd
->nl_nch
, nd
->nl_dvp
, &vp
,
180 /* locked vnode is returned */
182 if (fmode
& O_EXCL
) {
185 error
= cache_vget(&nd
->nl_nch
, cred
,
193 if (nd
->nl_flags
& NLC_SHAREDLOCK
) {
194 error
= cache_vget(&nd
->nl_nch
, cred
, LK_SHARED
, &vp
);
196 error
= cache_vget(&nd
->nl_nch
, cred
,
204 * We have a locked vnode and ncp now. Note that the ncp will
205 * be cleaned up by the caller if nd->nl_nch is left intact.
207 if (vp
->v_type
== VLNK
) {
211 if (vp
->v_type
== VSOCK
) {
215 if (vp
->v_type
!= VDIR
&& (fmode
& O_DIRECTORY
)) {
219 if ((fmode
& O_CREAT
) == 0) {
220 if (fmode
& (FWRITE
| O_TRUNC
)) {
221 if (vp
->v_type
== VDIR
) {
225 error
= vn_writechk(vp
, &nd
->nl_nch
);
228 * Special stale handling, re-resolve the
231 if (error
== ESTALE
) {
234 if (nd
->nl_flags
& NLC_SHAREDLOCK
) {
235 cache_unlock(&nd
->nl_nch
);
236 cache_lock(&nd
->nl_nch
);
238 cache_setunresolved(&nd
->nl_nch
);
239 error
= cache_resolve(&nd
->nl_nch
,
248 if (fmode
& O_TRUNC
) {
249 vn_unlock(vp
); /* XXX */
250 vn_lock(vp
, LK_EXCLUSIVE
| LK_RETRY
); /* XXX */
251 osize
= vp
->v_filesize
;
254 error
= VOP_SETATTR(vp
, vap
, cred
);
257 error
= VOP_GETATTR(vp
, vap
);
261 VFS_ACCOUNT(mp
, vap
->va_uid
, vap
->va_gid
, -osize
);
265 * Set or clear VNSWAPCACHE on the vp based on nd->nl_nch.ncp->nc_flag.
266 * These particular bits a tracked all the way from the root.
268 * NOTE: Might not work properly on NFS servers due to the
269 * disconnected namecache.
271 flags
= nd
->nl_nch
.ncp
->nc_flag
;
272 if ((flags
& (NCF_UF_CACHE
| NCF_UF_PCACHE
)) &&
273 (flags
& (NCF_SF_NOCACHE
| NCF_SF_PNOCACHE
)) == 0) {
274 vsetflags(vp
, VSWAPCACHE
);
276 vclrflags(vp
, VSWAPCACHE
);
280 * Setup the fp so VOP_OPEN can override it. No descriptor has been
281 * associated with the fp yet so we own it clean.
283 * f_nchandle inherits nl_nch. This used to be necessary only for
284 * directories but now we do it unconditionally so f*() ops
285 * such as fchmod() can access the actual namespace that was
286 * used to open the file.
289 if (nd
->nl_flags
& NLC_APPENDONLY
)
290 fmode
|= FAPPENDONLY
;
291 fp
->f_nchandle
= nd
->nl_nch
;
292 cache_zero(&nd
->nl_nch
);
293 cache_unlock(&fp
->f_nchandle
);
297 * Get rid of nl_nch. vn_open does not return it (it returns the
298 * vnode or the file pointer). Note: we can't leave nl_nch locked
299 * through the VOP_OPEN anyway since the VOP_OPEN may block, e.g.
303 cache_put(&nd
->nl_nch
);
305 error
= VOP_OPEN(vp
, fmode
, cred
, fp
);
308 * setting f_ops to &badfileops will prevent the descriptor
309 * code from trying to close and release the vnode, since
310 * the open failed we do not want to call close.
314 fp
->f_ops
= &badfileops
;
321 * Assert that VREG files have been setup for vmio.
323 KASSERT(vp
->v_type
!= VREG
|| vp
->v_object
!= NULL
,
324 ("vn_open: regular file was not VMIO enabled!"));
328 * Return the vnode. XXX needs some cleaning up. The vnode is
329 * only returned in the fp == NULL case.
333 nd
->nl_vp_fmode
= fmode
;
334 if ((nd
->nl_flags
& NLC_LOCKVP
) == 0)
347 vn_opendisk(const char *devname
, int fmode
, struct vnode
**vpp
)
352 if (strncmp(devname
, "/dev/", 5) == 0)
354 if ((vp
= getsynthvnode(devname
)) == NULL
) {
357 error
= VOP_OPEN(vp
, fmode
, proc0
.p_ucred
, NULL
);
369 * Check for write permissions on the specified vnode. nch may be NULL.
372 vn_writechk(struct vnode
*vp
, struct nchandle
*nch
)
375 * If there's shared text associated with
376 * the vnode, try to free it up once. If
377 * we fail, we can't allow writing.
379 if (vp
->v_flag
& VTEXT
)
383 * If the vnode represents a regular file, check the mount
384 * point via the nch. This may be a different mount point
385 * then the one embedded in the vnode (e.g. nullfs).
387 * We can still write to non-regular files (e.g. devices)
388 * via read-only mounts.
390 if (nch
&& nch
->ncp
&& vp
->v_type
== VREG
)
391 return (ncp_writechk(nch
));
396 * Check whether the underlying mount is read-only. The mount point
397 * referenced by the namecache may be different from the mount point
398 * used by the underlying vnode in the case of NULLFS, so a separate
402 ncp_writechk(struct nchandle
*nch
)
404 if (nch
->mount
&& (nch
->mount
->mnt_flag
& MNT_RDONLY
))
415 vn_close(struct vnode
*vp
, int flags
, struct file
*fp
)
419 error
= vn_lock(vp
, LK_SHARED
| LK_RETRY
| LK_FAILRECLAIM
);
421 error
= VOP_CLOSE(vp
, flags
, fp
);
429 * Sequential heuristic.
431 * MPSAFE (f_seqcount and f_nextoff are allowed to race)
435 sequential_heuristic(struct uio
*uio
, struct file
*fp
)
438 * Sequential heuristic - detect sequential operation
440 * NOTE: SMP: We allow f_seqcount updates to race.
442 if ((uio
->uio_offset
== 0 && fp
->f_seqcount
> 0) ||
443 uio
->uio_offset
== fp
->f_nextoff
) {
444 int tmpseq
= fp
->f_seqcount
;
446 tmpseq
+= (uio
->uio_resid
+ MAXBSIZE
- 1) / MAXBSIZE
;
447 if (tmpseq
> IO_SEQMAX
)
449 fp
->f_seqcount
= tmpseq
;
450 return(fp
->f_seqcount
<< IO_SEQSHIFT
);
454 * Not sequential, quick draw-down of seqcount
456 * NOTE: SMP: We allow f_seqcount updates to race.
458 if (fp
->f_seqcount
> 1)
466 * get - lock and return the f_offset field.
467 * set - set and unlock the f_offset field.
469 * These routines serve the dual purpose of serializing access to the
470 * f_offset field (at least on x86) and guaranteeing operational integrity
471 * when multiple read()ers and write()ers are present on the same fp.
475 static __inline off_t
476 vn_get_fpf_offset(struct file
*fp
)
482 * Shortcut critical path.
484 flags
= fp
->f_flag
& ~FOFFSETLOCK
;
485 if (atomic_cmpset_int(&fp
->f_flag
, flags
, flags
| FOFFSETLOCK
))
486 return(fp
->f_offset
);
493 if (flags
& FOFFSETLOCK
) {
494 nflags
= flags
| FOFFSETWAKE
;
495 tsleep_interlock(&fp
->f_flag
, 0);
496 if (atomic_cmpset_int(&fp
->f_flag
, flags
, nflags
))
497 tsleep(&fp
->f_flag
, PINTERLOCKED
, "fpoff", 0);
499 nflags
= flags
| FOFFSETLOCK
;
500 if (atomic_cmpset_int(&fp
->f_flag
, flags
, nflags
))
504 return(fp
->f_offset
);
511 vn_set_fpf_offset(struct file
*fp
, off_t offset
)
517 * We hold the lock so we can set the offset without interference.
519 fp
->f_offset
= offset
;
522 * Normal release is already a reasonably critical path.
526 nflags
= flags
& ~(FOFFSETLOCK
| FOFFSETWAKE
);
527 if (atomic_cmpset_int(&fp
->f_flag
, flags
, nflags
)) {
528 if (flags
& FOFFSETWAKE
)
538 static __inline off_t
539 vn_poll_fpf_offset(struct file
*fp
)
541 #if defined(__x86_64__)
542 return(fp
->f_offset
);
544 off_t off
= vn_get_fpf_offset(fp
);
545 vn_set_fpf_offset(fp
, off
);
551 * Package up an I/O request on a vnode into a uio and do it.
556 vn_rdwr(enum uio_rw rw
, struct vnode
*vp
, caddr_t base
, int len
,
557 off_t offset
, enum uio_seg segflg
, int ioflg
,
558 struct ucred
*cred
, int *aresid
)
564 if ((ioflg
& IO_NODELOCKED
) == 0)
565 vn_lock(vp
, LK_EXCLUSIVE
| LK_RETRY
);
566 auio
.uio_iov
= &aiov
;
568 aiov
.iov_base
= base
;
570 auio
.uio_resid
= len
;
571 auio
.uio_offset
= offset
;
572 auio
.uio_segflg
= segflg
;
574 auio
.uio_td
= curthread
;
575 if (rw
== UIO_READ
) {
576 error
= VOP_READ(vp
, &auio
, ioflg
, cred
);
578 error
= VOP_WRITE(vp
, &auio
, ioflg
, cred
);
581 *aresid
= auio
.uio_resid
;
583 if (auio
.uio_resid
&& error
== 0)
585 if ((ioflg
& IO_NODELOCKED
) == 0)
591 * Package up an I/O request on a vnode into a uio and do it. The I/O
592 * request is split up into smaller chunks and we try to avoid saturating
593 * the buffer cache while potentially holding a vnode locked, so we
594 * check bwillwrite() before calling vn_rdwr(). We also call lwkt_user_yield()
595 * to give other processes a chance to lock the vnode (either other processes
596 * core'ing the same binary, or unrelated processes scanning the directory).
601 vn_rdwr_inchunks(enum uio_rw rw
, struct vnode
*vp
, caddr_t base
, int len
,
602 off_t offset
, enum uio_seg segflg
, int ioflg
,
603 struct ucred
*cred
, int *aresid
)
611 * Force `offset' to a multiple of MAXBSIZE except possibly
612 * for the first chunk, so that filesystems only need to
613 * write full blocks except possibly for the first and last
616 chunk
= MAXBSIZE
- (uoff_t
)offset
% MAXBSIZE
;
620 if (vp
->v_type
== VREG
&& (ioflg
& IO_RECURSE
) == 0) {
630 error
= vn_rdwr(rw
, vp
, base
, chunk
, offset
, segflg
,
631 ioflg
, cred
, aresid
);
632 len
-= chunk
; /* aresid calc already includes length */
645 * File pointers can no longer get ripped up by revoke so
646 * we don't need to lock access to the vp.
648 * f_offset updates are not guaranteed against multiple readers
651 vn_read(struct file
*fp
, struct uio
*uio
, struct ucred
*cred
, int flags
)
656 KASSERT(uio
->uio_td
== curthread
,
657 ("uio_td %p is not td %p", uio
->uio_td
, curthread
));
658 vp
= (struct vnode
*)fp
->f_data
;
661 if (flags
& O_FBLOCKING
) {
662 /* ioflag &= ~IO_NDELAY; */
663 } else if (flags
& O_FNONBLOCKING
) {
665 } else if (fp
->f_flag
& FNONBLOCK
) {
668 if (fp
->f_flag
& O_DIRECT
) {
671 if ((flags
& O_FOFFSET
) == 0 && (vp
->v_flag
& VNOTSEEKABLE
) == 0)
672 uio
->uio_offset
= vn_get_fpf_offset(fp
);
673 vn_lock(vp
, LK_SHARED
| LK_RETRY
);
674 ioflag
|= sequential_heuristic(uio
, fp
);
676 error
= VOP_READ(vp
, uio
, ioflag
, cred
);
677 fp
->f_nextoff
= uio
->uio_offset
;
679 if ((flags
& O_FOFFSET
) == 0 && (vp
->v_flag
& VNOTSEEKABLE
) == 0)
680 vn_set_fpf_offset(fp
, uio
->uio_offset
);
688 vn_write(struct file
*fp
, struct uio
*uio
, struct ucred
*cred
, int flags
)
693 KASSERT(uio
->uio_td
== curthread
,
694 ("uio_td %p is not p %p", uio
->uio_td
, curthread
));
695 vp
= (struct vnode
*)fp
->f_data
;
698 if (vp
->v_type
== VREG
&&
699 ((fp
->f_flag
& O_APPEND
) || (flags
& O_FAPPEND
))) {
703 if (flags
& O_FBLOCKING
) {
704 /* ioflag &= ~IO_NDELAY; */
705 } else if (flags
& O_FNONBLOCKING
) {
707 } else if (fp
->f_flag
& FNONBLOCK
) {
710 if (fp
->f_flag
& O_DIRECT
) {
713 if (flags
& O_FASYNCWRITE
) {
714 /* ioflag &= ~IO_SYNC; */
715 } else if (flags
& O_FSYNCWRITE
) {
717 } else if (fp
->f_flag
& O_FSYNC
) {
721 if (vp
->v_mount
&& (vp
->v_mount
->mnt_flag
& MNT_SYNCHRONOUS
))
723 if ((flags
& O_FOFFSET
) == 0)
724 uio
->uio_offset
= vn_get_fpf_offset(fp
);
725 vn_lock(vp
, LK_EXCLUSIVE
| LK_RETRY
);
726 ioflag
|= sequential_heuristic(uio
, fp
);
727 error
= VOP_WRITE(vp
, uio
, ioflag
, cred
);
728 fp
->f_nextoff
= uio
->uio_offset
;
730 if ((flags
& O_FOFFSET
) == 0)
731 vn_set_fpf_offset(fp
, uio
->uio_offset
);
739 vn_statfile(struct file
*fp
, struct stat
*sb
, struct ucred
*cred
)
744 vp
= (struct vnode
*)fp
->f_data
;
745 error
= vn_stat(vp
, sb
, cred
);
753 vn_stat(struct vnode
*vp
, struct stat
*sb
, struct ucred
*cred
)
762 error
= VOP_GETATTR(vp
, vap
);
767 * Zero the spare stat fields
774 * Copy from vattr table
776 if (vap
->va_fsid
!= VNOVAL
)
777 sb
->st_dev
= vap
->va_fsid
;
779 sb
->st_dev
= vp
->v_mount
->mnt_stat
.f_fsid
.val
[0];
780 sb
->st_ino
= vap
->va_fileid
;
782 switch (vap
->va_type
) {
800 /* This is a cosmetic change, symlinks do not have a mode. */
801 if (vp
->v_mount
->mnt_flag
& MNT_NOSYMFOLLOW
)
802 sb
->st_mode
&= ~ACCESSPERMS
; /* 0000 */
804 sb
->st_mode
|= ACCESSPERMS
; /* 0777 */
816 if (vap
->va_nlink
> (nlink_t
)-1)
817 sb
->st_nlink
= (nlink_t
)-1;
819 sb
->st_nlink
= vap
->va_nlink
;
820 sb
->st_uid
= vap
->va_uid
;
821 sb
->st_gid
= vap
->va_gid
;
822 sb
->st_rdev
= dev2udev(vp
->v_rdev
);
823 sb
->st_size
= vap
->va_size
;
824 sb
->st_atimespec
= vap
->va_atime
;
825 sb
->st_mtimespec
= vap
->va_mtime
;
826 sb
->st_ctimespec
= vap
->va_ctime
;
829 * A VCHR and VBLK device may track the last access and last modified
830 * time independantly of the filesystem. This is particularly true
831 * because device read and write calls may bypass the filesystem.
833 if (vp
->v_type
== VCHR
|| vp
->v_type
== VBLK
) {
836 if (dev
->si_lastread
) {
837 sb
->st_atimespec
.tv_sec
= time_second
+
840 sb
->st_atimespec
.tv_nsec
= 0;
842 if (dev
->si_lastwrite
) {
843 sb
->st_atimespec
.tv_sec
= time_second
+
846 sb
->st_atimespec
.tv_nsec
= 0;
852 * According to www.opengroup.org, the meaning of st_blksize is
853 * "a filesystem-specific preferred I/O block size for this
854 * object. In some filesystem types, this may vary from file
856 * Default to PAGE_SIZE after much discussion.
859 if (vap
->va_type
== VREG
) {
860 sb
->st_blksize
= vap
->va_blocksize
;
861 } else if (vn_isdisk(vp
, NULL
)) {
863 * XXX this is broken. If the device is not yet open (aka
864 * stat() call, aka v_rdev == NULL), how are we supposed
865 * to get a valid block size out of it?
869 sb
->st_blksize
= dev
->si_bsize_best
;
870 if (sb
->st_blksize
< dev
->si_bsize_phys
)
871 sb
->st_blksize
= dev
->si_bsize_phys
;
872 if (sb
->st_blksize
< BLKDEV_IOSIZE
)
873 sb
->st_blksize
= BLKDEV_IOSIZE
;
875 sb
->st_blksize
= PAGE_SIZE
;
878 sb
->st_flags
= vap
->va_flags
;
880 error
= priv_check_cred(cred
, PRIV_VFS_GENERATION
, 0);
884 sb
->st_gen
= (u_int32_t
)vap
->va_gen
;
886 sb
->st_blocks
= vap
->va_bytes
/ S_BLKSIZE
;
891 * MPALMOSTSAFE - acquires mplock
894 vn_ioctl(struct file
*fp
, u_long com
, caddr_t data
, struct ucred
*ucred
,
897 struct vnode
*vp
= ((struct vnode
*)fp
->f_data
);
903 switch (vp
->v_type
) {
906 if (com
== FIONREAD
) {
907 error
= VOP_GETATTR(vp
, &vattr
);
910 size
= vattr
.va_size
;
911 if ((vp
->v_flag
& VNOTSEEKABLE
) == 0)
912 size
-= vn_poll_fpf_offset(fp
);
913 if (size
> 0x7FFFFFFF)
919 if (com
== FIOASYNC
) { /* XXX */
931 if (com
== FIODTYPE
) {
932 if (vp
->v_type
!= VCHR
&& vp
->v_type
!= VBLK
) {
936 *(int *)data
= dev_dflags(vp
->v_rdev
) & D_TYPEMASK
;
940 error
= VOP_IOCTL(vp
, com
, data
, fp
->f_flag
, ucred
, msg
);
941 if (error
== 0 && com
== TIOCSCTTY
) {
942 struct proc
*p
= curthread
->td_proc
;
943 struct session
*sess
;
952 /* Do nothing if reassigning same control tty */
953 if (sess
->s_ttyvp
== vp
) {
959 /* Get rid of reference to old control tty */
973 * Obtain the requested vnode lock
975 * LK_RETRY Automatically retry on timeout
976 * LK_FAILRECLAIM Fail if the vnode is being reclaimed
978 * Failures will occur if the vnode is undergoing recyclement, but not
979 * all callers expect that the function will fail so the caller must pass
980 * LK_FAILOK if it wants to process an error code.
982 * Errors can occur for other reasons if you pass in other LK_ flags,
983 * regardless of whether you pass in LK_FAILRECLAIM
986 vn_lock(struct vnode
*vp
, int flags
)
991 error
= lockmgr(&vp
->v_lock
, flags
);
994 } while (flags
& LK_RETRY
);
997 * Because we (had better!) have a ref on the vnode, once it
998 * goes to VRECLAIMED state it will not be recycled until all
999 * refs go away. So we can just check the flag.
1001 if (error
== 0 && (vp
->v_flag
& VRECLAIMED
)) {
1002 if (flags
& LK_FAILRECLAIM
) {
1003 lockmgr(&vp
->v_lock
, LK_RELEASE
);
1010 #ifdef DEBUG_VN_UNLOCK
1013 debug_vn_unlock(struct vnode
*vp
, const char *filename
, int line
)
1015 kprintf("vn_unlock from %s:%d\n", filename
, line
);
1016 lockmgr(&vp
->v_lock
, LK_RELEASE
);
1022 vn_unlock(struct vnode
*vp
)
1024 lockmgr(&vp
->v_lock
, LK_RELEASE
);
1033 vn_islocked(struct vnode
*vp
)
1035 return (lockstatus(&vp
->v_lock
, curthread
));
1039 * Return the lock status of a vnode and unlock the vnode
1040 * if we owned the lock. This is not a boolean, if the
1041 * caller cares what the lock status is the caller must
1042 * check the various possible values.
1044 * This only unlocks exclusive locks held by the caller,
1045 * it will NOT unlock shared locks (there is no way to
1046 * tell who the shared lock belongs to).
1051 vn_islocked_unlock(struct vnode
*vp
)
1055 vpls
= lockstatus(&vp
->v_lock
, curthread
);
1056 if (vpls
== LK_EXCLUSIVE
)
1057 lockmgr(&vp
->v_lock
, LK_RELEASE
);
1062 * Restore a vnode lock that we previously released via
1063 * vn_islocked_unlock(). This is a NOP if we did not
1064 * own the original lock.
1069 vn_islocked_relock(struct vnode
*vp
, int vpls
)
1073 if (vpls
== LK_EXCLUSIVE
)
1074 error
= lockmgr(&vp
->v_lock
, vpls
);
1081 vn_closefile(struct file
*fp
)
1085 fp
->f_ops
= &badfileops
;
1086 error
= vn_close(((struct vnode
*)fp
->f_data
), fp
->f_flag
, fp
);
1094 vn_kqfilter(struct file
*fp
, struct knote
*kn
)
1098 error
= VOP_KQFILTER(((struct vnode
*)fp
->f_data
), kn
);