2 * Copyright (c) 2000-2015 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1989, 1993
31 * The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
69 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
70 * support for mandatory and extensible security protections. This notice
71 * is included in support of clause 2.2 (b) of the Apple Public License,
76 * External virtual filesystem routines
80 #include <sys/param.h>
81 #include <sys/systm.h>
82 #include <sys/proc_internal.h>
83 #include <sys/kauth.h>
84 #include <sys/mount_internal.h>
87 #include <sys/vnode.h>
88 #include <sys/vnode_internal.h>
90 #include <sys/namei.h>
91 #include <sys/ucred.h>
92 #include <sys/buf_internal.h>
93 #include <sys/errno.h>
94 #include <sys/malloc.h>
95 #include <sys/uio_internal.h>
97 #include <sys/domain.h>
99 #include <sys/syslog.h>
100 #include <sys/ubc_internal.h>
102 #include <sys/sysctl.h>
103 #include <sys/filedesc.h>
104 #include <sys/event.h>
105 #include <sys/kdebug.h>
106 #include <sys/kauth.h>
107 #include <sys/user.h>
108 #include <sys/systm.h>
109 #include <sys/kern_memorystatus.h>
110 #include <sys/lockf.h>
111 #include <miscfs/fifofs/fifo.h>
114 #include <machine/spl.h>
117 #include <kern/assert.h>
118 #include <mach/kern_return.h>
119 #include <kern/thread.h>
120 #include <kern/sched_prim.h>
122 #include <miscfs/specfs/specdev.h>
124 #include <mach/mach_types.h>
125 #include <mach/memory_object_types.h>
126 #include <mach/memory_object_control.h>
128 #include <kern/kalloc.h> /* kalloc()/kfree() */
129 #include <kern/clock.h> /* delay_for_interval() */
130 #include <libkern/OSAtomic.h> /* OSAddAtomic() */
131 #include <console/video_console.h>
134 #include <libkern/OSDebug.h>
137 #include <vm/vm_protos.h> /* vnode_pager_vrele() */
140 #include <security/mac_framework.h>
143 extern lck_grp_t
*vnode_lck_grp
;
144 extern lck_attr_t
*vnode_lck_attr
;
147 extern lck_grp_t
*trigger_vnode_lck_grp
;
148 extern lck_attr_t
*trigger_vnode_lck_attr
;
151 extern lck_mtx_t
* mnt_list_mtx_lock
;
153 enum vtype iftovt_tab
[16] = {
154 VNON
, VFIFO
, VCHR
, VNON
, VDIR
, VNON
, VBLK
, VNON
,
155 VREG
, VNON
, VLNK
, VNON
, VSOCK
, VNON
, VNON
, VBAD
,
157 int vttoif_tab
[9] = {
158 0, S_IFREG
, S_IFDIR
, S_IFBLK
, S_IFCHR
, S_IFLNK
,
159 S_IFSOCK
, S_IFIFO
, S_IFMT
,
163 /* XXX These should be in a BSD accessible Mach header, but aren't. */
164 extern void memory_object_mark_used(
165 memory_object_control_t control
);
167 extern void memory_object_mark_unused(
168 memory_object_control_t control
,
171 extern void memory_object_mark_io_tracking(
172 memory_object_control_t control
);
174 /* XXX next protptype should be from <nfs/nfs.h> */
175 extern int nfs_vinvalbuf(vnode_t
, int, vfs_context_t
, int);
177 /* XXX next prototytype should be from libsa/stdlib.h> but conflicts libkern */
178 __private_extern__
void qsort(
182 int (*)(const void *, const void *));
184 extern kern_return_t
adjust_vm_object_cache(vm_size_t oval
, vm_size_t nval
);
185 __private_extern__
void vntblinit(void);
186 __private_extern__ kern_return_t
reset_vmobjectcache(unsigned int val1
,
188 __private_extern__
int unlink1(vfs_context_t
, vnode_t
, user_addr_t
,
191 extern int system_inshutdown
;
193 static void vnode_list_add(vnode_t
);
194 static void vnode_async_list_add(vnode_t
);
195 static void vnode_list_remove(vnode_t
);
196 static void vnode_list_remove_locked(vnode_t
);
198 static void vnode_abort_advlocks(vnode_t
);
199 static errno_t
vnode_drain(vnode_t
);
200 static void vgone(vnode_t
, int flags
);
201 static void vclean(vnode_t vp
, int flag
);
202 static void vnode_reclaim_internal(vnode_t
, int, int, int);
204 static void vnode_dropiocount (vnode_t
);
206 static vnode_t
checkalias(vnode_t vp
, dev_t nvp_rdev
);
207 static int vnode_reload(vnode_t
);
208 static int vnode_isinuse_locked(vnode_t
, int, int);
210 static int unmount_callback(mount_t
, __unused
void *);
212 static void insmntque(vnode_t vp
, mount_t mp
);
213 static int mount_getvfscnt(void);
214 static int mount_fillfsids(fsid_t
*, int );
215 static void vnode_iterate_setup(mount_t
);
216 int vnode_umount_preflight(mount_t
, vnode_t
, int);
217 static int vnode_iterate_prepare(mount_t
);
218 static int vnode_iterate_reloadq(mount_t
);
219 static void vnode_iterate_clear(mount_t
);
220 static mount_t
vfs_getvfs_locked(fsid_t
*);
221 static int vn_create_reg(vnode_t dvp
, vnode_t
*vpp
, struct nameidata
*ndp
,
222 struct vnode_attr
*vap
, uint32_t flags
, int fmode
, uint32_t *statusp
, vfs_context_t ctx
);
223 static int vnode_authattr_new_internal(vnode_t dvp
, struct vnode_attr
*vap
, int noauth
, uint32_t *defaulted_fieldsp
, vfs_context_t ctx
);
225 errno_t
rmdir_remove_orphaned_appleDouble(vnode_t
, vfs_context_t
, int *);
228 static void record_vp(vnode_t vp
, int count
);
231 #if CONFIG_JETSAM && (DEVELOPMENT || DEBUG)
232 extern int bootarg_no_vnode_jetsam
; /* from bsd_init.c default value is 0 */
233 #endif /* CONFIG_JETSAM && (DEVELOPMENT || DEBUG) */
235 boolean_t root_is_CF_drive
= FALSE
;
238 static int vnode_resolver_create(mount_t
, vnode_t
, struct vnode_trigger_param
*, boolean_t external
);
239 static void vnode_resolver_detach(vnode_t
);
242 TAILQ_HEAD(freelst
, vnode
) vnode_free_list
; /* vnode free list */
243 TAILQ_HEAD(deadlst
, vnode
) vnode_dead_list
; /* vnode dead list */
244 TAILQ_HEAD(async_work_lst
, vnode
) vnode_async_work_list
;
247 TAILQ_HEAD(ragelst
, vnode
) vnode_rage_list
; /* vnode rapid age list */
248 struct timeval rage_tv
;
252 #define RAGE_LIMIT_MIN 100
253 #define RAGE_TIME_LIMIT 5
255 struct mntlist mountlist
; /* mounted filesystem list */
256 static int nummounts
= 0;
259 #define VLISTCHECK(fun, vp, list) \
260 if ((vp)->v_freelist.tqe_prev == (struct vnode **)0xdeadb) \
261 panic("%s: %s vnode not on %slist", (fun), (list), (list));
263 #define VLISTCHECK(fun, vp, list)
264 #endif /* DIAGNOSTIC */
266 #define VLISTNONE(vp) \
268 (vp)->v_freelist.tqe_next = (struct vnode *)0; \
269 (vp)->v_freelist.tqe_prev = (struct vnode **)0xdeadb; \
272 #define VONLIST(vp) \
273 ((vp)->v_freelist.tqe_prev != (struct vnode **)0xdeadb)
275 /* remove a vnode from free vnode list */
276 #define VREMFREE(fun, vp) \
278 VLISTCHECK((fun), (vp), "free"); \
279 TAILQ_REMOVE(&vnode_free_list, (vp), v_freelist); \
285 /* remove a vnode from dead vnode list */
286 #define VREMDEAD(fun, vp) \
288 VLISTCHECK((fun), (vp), "dead"); \
289 TAILQ_REMOVE(&vnode_dead_list, (vp), v_freelist); \
291 vp->v_listflag &= ~VLIST_DEAD; \
296 /* remove a vnode from async work vnode list */
297 #define VREMASYNC_WORK(fun, vp) \
299 VLISTCHECK((fun), (vp), "async_work"); \
300 TAILQ_REMOVE(&vnode_async_work_list, (vp), v_freelist); \
302 vp->v_listflag &= ~VLIST_ASYNC_WORK; \
303 async_work_vnodes--; \
307 /* remove a vnode from rage vnode list */
308 #define VREMRAGE(fun, vp) \
310 if ( !(vp->v_listflag & VLIST_RAGE)) \
311 panic("VREMRAGE: vp not on rage list"); \
312 VLISTCHECK((fun), (vp), "rage"); \
313 TAILQ_REMOVE(&vnode_rage_list, (vp), v_freelist); \
315 vp->v_listflag &= ~VLIST_RAGE; \
321 * vnodetarget hasn't been used in a long time, but
322 * it was exported for some reason... I'm leaving in
323 * place for now... it should be deprecated out of the
324 * exports and removed eventually.
326 u_int32_t vnodetarget
; /* target for vnreclaim() */
327 #define VNODE_FREE_TARGET 20 /* Default value for vnodetarget */
330 * We need quite a few vnodes on the free list to sustain the
331 * rapid stat() the compilation process does, and still benefit from the name
332 * cache. Having too few vnodes on the free list causes serious disk
333 * thrashing as we cycle through them.
335 #define VNODE_FREE_MIN CONFIG_VNODE_FREE_MIN /* freelist should have at least this many */
338 static void async_work_continue(void);
341 * Initialize the vnode management data structures.
343 __private_extern__
void
346 thread_t thread
= THREAD_NULL
;
348 TAILQ_INIT(&vnode_free_list
);
349 TAILQ_INIT(&vnode_rage_list
);
350 TAILQ_INIT(&vnode_dead_list
);
351 TAILQ_INIT(&vnode_async_work_list
);
352 TAILQ_INIT(&mountlist
);
355 vnodetarget
= VNODE_FREE_TARGET
;
357 microuptime(&rage_tv
);
358 rage_limit
= desiredvnodes
/ 100;
360 if (rage_limit
< RAGE_LIMIT_MIN
)
361 rage_limit
= RAGE_LIMIT_MIN
;
364 * Scale the vm_object_cache to accomodate the vnodes
367 (void) adjust_vm_object_cache(0, desiredvnodes
- VNODE_FREE_MIN
);
370 * create worker threads
372 kernel_thread_start((thread_continue_t
)async_work_continue
, NULL
, &thread
);
373 thread_deallocate(thread
);
376 /* Reset the VM Object Cache with the values passed in */
377 __private_extern__ kern_return_t
378 reset_vmobjectcache(unsigned int val1
, unsigned int val2
)
380 vm_size_t oval
= val1
- VNODE_FREE_MIN
;
387 if(val2
< VNODE_FREE_MIN
)
390 nval
= val2
- VNODE_FREE_MIN
;
392 return(adjust_vm_object_cache(oval
, nval
));
396 /* the timeout is in 10 msecs */
398 vnode_waitforwrites(vnode_t vp
, int output_target
, int slpflag
, int slptimeout
, const char *msg
) {
402 KERNEL_DEBUG(0x3010280 | DBG_FUNC_START
, (int)vp
, output_target
, vp
->v_numoutput
, 0, 0);
404 if (vp
->v_numoutput
> output_target
) {
410 while ((vp
->v_numoutput
> output_target
) && error
== 0) {
412 vp
->v_flag
|= VTHROTTLED
;
414 vp
->v_flag
|= VBWAIT
;
416 ts
.tv_sec
= (slptimeout
/100);
417 ts
.tv_nsec
= (slptimeout
% 1000) * 10 * NSEC_PER_USEC
* 1000 ;
418 error
= msleep((caddr_t
)&vp
->v_numoutput
, &vp
->v_lock
, (slpflag
| (PRIBIO
+ 1)), msg
, &ts
);
424 KERNEL_DEBUG(0x3010280 | DBG_FUNC_END
, (int)vp
, output_target
, vp
->v_numoutput
, error
, 0);
431 vnode_startwrite(vnode_t vp
) {
433 OSAddAtomic(1, &vp
->v_numoutput
);
438 vnode_writedone(vnode_t vp
)
443 OSAddAtomic(-1, &vp
->v_numoutput
);
447 if (vp
->v_numoutput
< 0)
448 panic("vnode_writedone: numoutput < 0");
450 if ((vp
->v_flag
& VTHROTTLED
)) {
451 vp
->v_flag
&= ~VTHROTTLED
;
454 if ((vp
->v_flag
& VBWAIT
) && (vp
->v_numoutput
== 0)) {
455 vp
->v_flag
&= ~VBWAIT
;
461 wakeup((caddr_t
)&vp
->v_numoutput
);
468 vnode_hasdirtyblks(vnode_t vp
)
470 struct cl_writebehind
*wbp
;
473 * Not taking the buf_mtxp as there is little
474 * point doing it. Even if the lock is taken the
475 * state can change right after that. If their
476 * needs to be a synchronization, it must be driven
479 if (vp
->v_dirtyblkhd
.lh_first
)
482 if (!UBCINFOEXISTS(vp
))
485 wbp
= vp
->v_ubcinfo
->cl_wbehind
;
487 if (wbp
&& (wbp
->cl_number
|| wbp
->cl_scmap
))
494 vnode_hascleanblks(vnode_t vp
)
497 * Not taking the buf_mtxp as there is little
498 * point doing it. Even if the lock is taken the
499 * state can change right after that. If their
500 * needs to be a synchronization, it must be driven
503 if (vp
->v_cleanblkhd
.lh_first
)
509 vnode_iterate_setup(mount_t mp
)
511 while (mp
->mnt_lflag
& MNT_LITER
) {
512 mp
->mnt_lflag
|= MNT_LITERWAIT
;
513 msleep((caddr_t
)mp
, &mp
->mnt_mlock
, PVFS
, "vnode_iterate_setup", NULL
);
516 mp
->mnt_lflag
|= MNT_LITER
;
521 vnode_umount_preflight(mount_t mp
, vnode_t skipvp
, int flags
)
525 TAILQ_FOREACH(vp
, &mp
->mnt_vnodelist
, v_mntvnodes
) {
526 if (vp
->v_type
== VDIR
)
530 if ((flags
& SKIPSYSTEM
) && ((vp
->v_flag
& VSYSTEM
) || (vp
->v_flag
& VNOFLUSH
)))
532 if ((flags
& SKIPSWAP
) && (vp
->v_flag
& VSWAP
))
534 if ((flags
& WRITECLOSE
) && (vp
->v_writecount
== 0 || vp
->v_type
!= VREG
))
537 /* Look for busy vnode */
538 if ((vp
->v_usecount
!= 0) && ((vp
->v_usecount
- vp
->v_kusecount
) != 0)) {
541 } else if (vp
->v_iocount
> 0) {
542 /* Busy if iocount is > 0 for more than 3 seconds */
543 tsleep(&vp
->v_iocount
, PVFS
, "vnode_drain_network", 3 * hz
);
544 if (vp
->v_iocount
> 0)
554 * This routine prepares iteration by moving all the vnodes to worker queue
555 * called with mount lock held
558 vnode_iterate_prepare(mount_t mp
)
562 if (TAILQ_EMPTY(&mp
->mnt_vnodelist
)) {
567 vp
= TAILQ_FIRST(&mp
->mnt_vnodelist
);
568 vp
->v_mntvnodes
.tqe_prev
= &(mp
->mnt_workerqueue
.tqh_first
);
569 mp
->mnt_workerqueue
.tqh_first
= mp
->mnt_vnodelist
.tqh_first
;
570 mp
->mnt_workerqueue
.tqh_last
= mp
->mnt_vnodelist
.tqh_last
;
572 TAILQ_INIT(&mp
->mnt_vnodelist
);
573 if (mp
->mnt_newvnodes
.tqh_first
!= NULL
)
574 panic("vnode_iterate_prepare: newvnode when entering vnode");
575 TAILQ_INIT(&mp
->mnt_newvnodes
);
581 /* called with mount lock held */
583 vnode_iterate_reloadq(mount_t mp
)
587 /* add the remaining entries in workerq to the end of mount vnode list */
588 if (!TAILQ_EMPTY(&mp
->mnt_workerqueue
)) {
590 mvp
= TAILQ_LAST(&mp
->mnt_vnodelist
, vnodelst
);
592 /* Joining the workerque entities to mount vnode list */
594 mvp
->v_mntvnodes
.tqe_next
= mp
->mnt_workerqueue
.tqh_first
;
596 mp
->mnt_vnodelist
.tqh_first
= mp
->mnt_workerqueue
.tqh_first
;
597 mp
->mnt_workerqueue
.tqh_first
->v_mntvnodes
.tqe_prev
= mp
->mnt_vnodelist
.tqh_last
;
598 mp
->mnt_vnodelist
.tqh_last
= mp
->mnt_workerqueue
.tqh_last
;
599 TAILQ_INIT(&mp
->mnt_workerqueue
);
602 /* add the newvnodes to the head of mount vnode list */
603 if (!TAILQ_EMPTY(&mp
->mnt_newvnodes
)) {
605 nlvp
= TAILQ_LAST(&mp
->mnt_newvnodes
, vnodelst
);
607 mp
->mnt_newvnodes
.tqh_first
->v_mntvnodes
.tqe_prev
= &mp
->mnt_vnodelist
.tqh_first
;
608 nlvp
->v_mntvnodes
.tqe_next
= mp
->mnt_vnodelist
.tqh_first
;
609 if(mp
->mnt_vnodelist
.tqh_first
)
610 mp
->mnt_vnodelist
.tqh_first
->v_mntvnodes
.tqe_prev
= &nlvp
->v_mntvnodes
.tqe_next
;
612 mp
->mnt_vnodelist
.tqh_last
= mp
->mnt_newvnodes
.tqh_last
;
613 mp
->mnt_vnodelist
.tqh_first
= mp
->mnt_newvnodes
.tqh_first
;
614 TAILQ_INIT(&mp
->mnt_newvnodes
);
623 vnode_iterate_clear(mount_t mp
)
625 mp
->mnt_lflag
&= ~MNT_LITER
;
626 if (mp
->mnt_lflag
& MNT_LITERWAIT
) {
627 mp
->mnt_lflag
&= ~MNT_LITERWAIT
;
633 #include <i386/panic_hooks.h>
635 struct vnode_iterate_panic_hook
{
641 static void vnode_iterate_panic_hook(panic_hook_t
*hook_
)
643 extern int kdb_log(const char *fmt
, ...);
644 struct vnode_iterate_panic_hook
*hook
= (struct vnode_iterate_panic_hook
*)hook_
;
645 panic_phys_range_t range
;
648 if (panic_phys_range_before(hook
->mp
, &phys
, &range
)) {
649 kdb_log("mp = %p, phys = %p, prev (%p: %p-%p)\n",
650 hook
->mp
, phys
, range
.type
, range
.phys_start
,
651 range
.phys_start
+ range
.len
);
653 kdb_log("mp = %p, phys = %p, prev (!)\n", hook
->mp
, phys
);
656 if (panic_phys_range_before(hook
->vp
, &phys
, &range
)) {
657 kdb_log("vp = %p, phys = %p, prev (%p: %p-%p)\n",
658 hook
->vp
, phys
, range
.type
, range
.phys_start
,
659 range
.phys_start
+ range
.len
);
661 kdb_log("vp = %p, phys = %p, prev (!)\n", hook
->vp
, phys
);
663 panic_dump_mem((void *)(((vm_offset_t
)hook
->mp
-4096) & ~4095), 12288);
667 vnode_iterate(mount_t mp
, int flags
, int (*callout
)(struct vnode
*, void *),
676 vnode_iterate_setup(mp
);
678 /* it is returns 0 then there is nothing to do */
679 retval
= vnode_iterate_prepare(mp
);
682 vnode_iterate_clear(mp
);
687 struct vnode_iterate_panic_hook hook
;
690 panic_hook(&hook
.hook
, vnode_iterate_panic_hook
);
691 /* iterate over all the vnodes */
692 while (!TAILQ_EMPTY(&mp
->mnt_workerqueue
)) {
693 vp
= TAILQ_FIRST(&mp
->mnt_workerqueue
);
695 TAILQ_REMOVE(&mp
->mnt_workerqueue
, vp
, v_mntvnodes
);
696 TAILQ_INSERT_TAIL(&mp
->mnt_vnodelist
, vp
, v_mntvnodes
);
698 if ((vp
->v_data
== NULL
) || (vp
->v_type
== VNON
) || (vp
->v_mount
!= mp
)) {
703 if ( vget_internal(vp
, vid
, (flags
| VNODE_NODEAD
| VNODE_WITHID
| VNODE_NOSUSPEND
))) {
707 if (flags
& VNODE_RELOAD
) {
709 * we're reloading the filesystem
710 * cast out any inactive vnodes...
712 if (vnode_reload(vp
)) {
713 /* vnode will be recycled on the refcount drop */
720 retval
= callout(vp
, arg
);
724 case VNODE_RETURNED_DONE
:
726 if (retval
== VNODE_RETURNED_DONE
) {
733 case VNODE_CLAIMED_DONE
:
745 panic_unhook(&hook
.hook
);
746 (void)vnode_iterate_reloadq(mp
);
747 vnode_iterate_clear(mp
);
753 mount_lock_renames(mount_t mp
)
755 lck_mtx_lock(&mp
->mnt_renamelock
);
759 mount_unlock_renames(mount_t mp
)
761 lck_mtx_unlock(&mp
->mnt_renamelock
);
765 mount_lock(mount_t mp
)
767 lck_mtx_lock(&mp
->mnt_mlock
);
771 mount_lock_spin(mount_t mp
)
773 lck_mtx_lock_spin(&mp
->mnt_mlock
);
777 mount_unlock(mount_t mp
)
779 lck_mtx_unlock(&mp
->mnt_mlock
);
784 mount_ref(mount_t mp
, int locked
)
797 mount_drop(mount_t mp
, int locked
)
804 if (mp
->mnt_count
== 0 && (mp
->mnt_lflag
& MNT_LDRAIN
))
805 wakeup(&mp
->mnt_lflag
);
813 mount_iterref(mount_t mp
, int locked
)
819 if (mp
->mnt_iterref
< 0) {
830 mount_isdrained(mount_t mp
, int locked
)
836 if (mp
->mnt_iterref
< 0)
846 mount_iterdrop(mount_t mp
)
850 wakeup(&mp
->mnt_iterref
);
855 mount_iterdrain(mount_t mp
)
858 while (mp
->mnt_iterref
)
859 msleep((caddr_t
)&mp
->mnt_iterref
, mnt_list_mtx_lock
, PVFS
, "mount_iterdrain", NULL
);
860 /* mount iterations drained */
861 mp
->mnt_iterref
= -1;
865 mount_iterreset(mount_t mp
)
868 if (mp
->mnt_iterref
== -1)
873 /* always called with mount lock held */
875 mount_refdrain(mount_t mp
)
877 if (mp
->mnt_lflag
& MNT_LDRAIN
)
878 panic("already in drain");
879 mp
->mnt_lflag
|= MNT_LDRAIN
;
881 while (mp
->mnt_count
)
882 msleep((caddr_t
)&mp
->mnt_lflag
, &mp
->mnt_mlock
, PVFS
, "mount_drain", NULL
);
884 if (mp
->mnt_vnodelist
.tqh_first
!= NULL
)
885 panic("mount_refdrain: dangling vnode");
887 mp
->mnt_lflag
&= ~MNT_LDRAIN
;
892 /* Tags the mount point as not supportine extended readdir for NFS exports */
894 mount_set_noreaddirext(mount_t mp
) {
896 mp
->mnt_kern_flag
|= MNTK_DENY_READDIREXT
;
901 * Mark a mount point as busy. Used to synchronize access and to delay
905 vfs_busy(mount_t mp
, int flags
)
909 if (mp
->mnt_lflag
& MNT_LDEAD
)
914 if (mp
->mnt_lflag
& MNT_LUNMOUNT
) {
915 if (flags
& LK_NOWAIT
|| mp
->mnt_lflag
& MNT_LDEAD
) {
921 * Since all busy locks are shared except the exclusive
922 * lock granted when unmounting, the only place that a
923 * wakeup needs to be done is at the release of the
924 * exclusive lock at the end of dounmount.
926 mp
->mnt_lflag
|= MNT_LWAIT
;
927 msleep((caddr_t
)mp
, &mp
->mnt_mlock
, (PVFS
| PDROP
), "vfsbusy", NULL
);
933 lck_rw_lock_shared(&mp
->mnt_rwlock
);
936 * Until we are granted the rwlock, it's possible for the mount point to
937 * change state, so re-evaluate before granting the vfs_busy.
939 if (mp
->mnt_lflag
& (MNT_LDEAD
| MNT_LUNMOUNT
)) {
940 lck_rw_done(&mp
->mnt_rwlock
);
947 * Free a busy filesystem.
950 vfs_unbusy(mount_t mp
)
952 lck_rw_done(&mp
->mnt_rwlock
);
958 vfs_rootmountfailed(mount_t mp
) {
961 mp
->mnt_vtable
->vfc_refcount
--;
966 mount_lock_destroy(mp
);
969 mac_mount_label_destroy(mp
);
972 FREE_ZONE(mp
, sizeof(struct mount
), M_MOUNT
);
976 * Lookup a filesystem type, and if found allocate and initialize
977 * a mount structure for it.
979 * Devname is usually updated by mount(8) after booting.
982 vfs_rootmountalloc_internal(struct vfstable
*vfsp
, const char *devname
)
986 mp
= _MALLOC_ZONE(sizeof(struct mount
), M_MOUNT
, M_WAITOK
);
987 bzero((char *)mp
, sizeof(struct mount
));
989 /* Initialize the default IO constraints */
990 mp
->mnt_maxreadcnt
= mp
->mnt_maxwritecnt
= MAXPHYS
;
991 mp
->mnt_segreadcnt
= mp
->mnt_segwritecnt
= 32;
992 mp
->mnt_maxsegreadsize
= mp
->mnt_maxreadcnt
;
993 mp
->mnt_maxsegwritesize
= mp
->mnt_maxwritecnt
;
994 mp
->mnt_devblocksize
= DEV_BSIZE
;
995 mp
->mnt_alignmentmask
= PAGE_MASK
;
996 mp
->mnt_ioqueue_depth
= MNT_DEFAULT_IOQUEUE_DEPTH
;
999 mp
->mnt_realrootvp
= NULLVP
;
1000 mp
->mnt_authcache_ttl
= CACHED_LOOKUP_RIGHT_TTL
;
1001 mp
->mnt_throttle_mask
= LOWPRI_MAX_NUM_DEV
- 1;
1002 mp
->mnt_devbsdunit
= 0;
1004 mount_lock_init(mp
);
1005 (void)vfs_busy(mp
, LK_NOWAIT
);
1007 TAILQ_INIT(&mp
->mnt_vnodelist
);
1008 TAILQ_INIT(&mp
->mnt_workerqueue
);
1009 TAILQ_INIT(&mp
->mnt_newvnodes
);
1011 mp
->mnt_vtable
= vfsp
;
1012 mp
->mnt_op
= vfsp
->vfc_vfsops
;
1013 mp
->mnt_flag
= MNT_RDONLY
| MNT_ROOTFS
;
1014 mp
->mnt_vnodecovered
= NULLVP
;
1015 //mp->mnt_stat.f_type = vfsp->vfc_typenum;
1016 mp
->mnt_flag
|= vfsp
->vfc_flags
& MNT_VISFLAGMASK
;
1019 vfsp
->vfc_refcount
++;
1020 mount_list_unlock();
1022 strlcpy(mp
->mnt_vfsstat
.f_fstypename
, vfsp
->vfc_name
, MFSTYPENAMELEN
);
1023 mp
->mnt_vfsstat
.f_mntonname
[0] = '/';
1024 /* XXX const poisoning layering violation */
1025 (void) copystr((const void *)devname
, mp
->mnt_vfsstat
.f_mntfromname
, MAXPATHLEN
- 1, NULL
);
1028 mac_mount_label_init(mp
);
1029 mac_mount_label_associate(vfs_context_kernel(), mp
);
1035 vfs_rootmountalloc(const char *fstypename
, const char *devname
, mount_t
*mpp
)
1037 struct vfstable
*vfsp
;
1039 for (vfsp
= vfsconf
; vfsp
; vfsp
= vfsp
->vfc_next
)
1040 if (!strncmp(vfsp
->vfc_name
, fstypename
,
1041 sizeof(vfsp
->vfc_name
)))
1046 *mpp
= vfs_rootmountalloc_internal(vfsp
, devname
);
1056 * Find an appropriate filesystem to use for the root. If a filesystem
1057 * has not been preselected, walk through the list of known filesystems
1058 * trying those that have mountroot routines, and try them until one
1059 * works or we have tried them all.
1061 extern int (*mountroot
)(void);
1069 struct vfstable
*vfsp
;
1070 vfs_context_t ctx
= vfs_context_kernel();
1071 struct vfs_attr vfsattr
;
1074 vnode_t bdevvp_rootvp
;
1076 if (mountroot
!= NULL
) {
1078 * used for netboot which follows a different set of rules
1080 error
= (*mountroot
)();
1083 if ((error
= bdevvp(rootdev
, &rootvp
))) {
1084 printf("vfs_mountroot: can't setup bdevvp\n");
1088 * 4951998 - code we call in vfc_mountroot may replace rootvp
1089 * so keep a local copy for some house keeping.
1091 bdevvp_rootvp
= rootvp
;
1093 for (vfsp
= vfsconf
; vfsp
; vfsp
= vfsp
->vfc_next
) {
1094 if (vfsp
->vfc_mountroot
== NULL
)
1097 mp
= vfs_rootmountalloc_internal(vfsp
, "root_device");
1098 mp
->mnt_devvp
= rootvp
;
1100 if ((error
= (*vfsp
->vfc_mountroot
)(mp
, rootvp
, ctx
)) == 0) {
1101 if ( bdevvp_rootvp
!= rootvp
) {
1104 * bump the iocount and fix up mnt_devvp for the
1105 * new rootvp (it will already have a usecount taken)...
1106 * drop the iocount and the usecount on the orignal
1107 * since we are no longer going to use it...
1109 vnode_getwithref(rootvp
);
1110 mp
->mnt_devvp
= rootvp
;
1112 vnode_rele(bdevvp_rootvp
);
1113 vnode_put(bdevvp_rootvp
);
1115 mp
->mnt_devvp
->v_specflags
|= SI_MOUNTEDON
;
1122 * cache the IO attributes for the underlying physical media...
1123 * an error return indicates the underlying driver doesn't
1124 * support all the queries necessary... however, reasonable
1125 * defaults will have been set, so no reason to bail or care
1127 vfs_init_io_attributes(rootvp
, mp
);
1129 if ((mp
->mnt_ioflags
& MNT_IOFLAGS_FUSION_DRIVE
) &&
1130 (mp
->mnt_ioflags
& MNT_IOFLAGS_IOSCHED_SUPPORTED
)) {
1134 root_is_CF_drive
= TRUE
;
1137 * Shadow the VFC_VFSNATIVEXATTR flag to MNTK_EXTENDED_ATTRS.
1139 if (mp
->mnt_vtable
->vfc_vfsflags
& VFC_VFSNATIVEXATTR
) {
1140 mp
->mnt_kern_flag
|= MNTK_EXTENDED_ATTRS
;
1142 if (mp
->mnt_vtable
->vfc_vfsflags
& VFC_VFSPREFLIGHT
) {
1143 mp
->mnt_kern_flag
|= MNTK_UNMOUNT_PREFLIGHT
;
1148 if (MNTK_VIRTUALDEV
& mp
->mnt_kern_flag
) speed
= 128;
1149 else if (MNTK_SSD
& mp
->mnt_kern_flag
) speed
= 7*256;
1151 vc_progress_setdiskspeed(speed
);
1153 * Probe root file system for additional features.
1155 (void)VFS_START(mp
, 0, ctx
);
1157 VFSATTR_INIT(&vfsattr
);
1158 VFSATTR_WANTED(&vfsattr
, f_capabilities
);
1159 if (vfs_getattr(mp
, &vfsattr
, ctx
) == 0 &&
1160 VFSATTR_IS_SUPPORTED(&vfsattr
, f_capabilities
)) {
1161 if ((vfsattr
.f_capabilities
.capabilities
[VOL_CAPABILITIES_INTERFACES
] & VOL_CAP_INT_EXTENDED_ATTR
) &&
1162 (vfsattr
.f_capabilities
.valid
[VOL_CAPABILITIES_INTERFACES
] & VOL_CAP_INT_EXTENDED_ATTR
)) {
1163 mp
->mnt_kern_flag
|= MNTK_EXTENDED_ATTRS
;
1166 if ((vfsattr
.f_capabilities
.capabilities
[VOL_CAPABILITIES_INTERFACES
] & VOL_CAP_INT_NAMEDSTREAMS
) &&
1167 (vfsattr
.f_capabilities
.valid
[VOL_CAPABILITIES_INTERFACES
] & VOL_CAP_INT_NAMEDSTREAMS
)) {
1168 mp
->mnt_kern_flag
|= MNTK_NAMED_STREAMS
;
1171 if ((vfsattr
.f_capabilities
.capabilities
[VOL_CAPABILITIES_FORMAT
] & VOL_CAP_FMT_PATH_FROM_ID
) &&
1172 (vfsattr
.f_capabilities
.valid
[VOL_CAPABILITIES_FORMAT
] & VOL_CAP_FMT_PATH_FROM_ID
)) {
1173 mp
->mnt_kern_flag
|= MNTK_PATH_FROM_ID
;
1178 * get rid of iocount reference returned
1179 * by bdevvp (or picked up by us on the substitued
1180 * rootvp)... it (or we) will have also taken
1181 * a usecount reference which we want to keep
1186 if ((vfs_flags(mp
) & MNT_MULTILABEL
) == 0)
1189 error
= VFS_ROOT(mp
, &vp
, ctx
);
1191 printf("%s() VFS_ROOT() returned %d\n",
1193 dounmount(mp
, MNT_FORCE
, 0, ctx
);
1196 error
= vnode_label(mp
, NULL
, vp
, NULL
, 0, ctx
);
1198 * get rid of reference provided by VFS_ROOT
1203 printf("%s() vnode_label() returned %d\n",
1205 dounmount(mp
, MNT_FORCE
, 0, ctx
);
1214 vfs_rootmountfailed(mp
);
1216 if (error
!= EINVAL
)
1217 printf("%s_mountroot failed: %d\n", vfsp
->vfc_name
, error
);
1223 * Lookup a mount point by filesystem identifier.
1227 vfs_getvfs(fsid_t
*fsid
)
1229 return (mount_list_lookupby_fsid(fsid
, 0, 0));
1232 static struct mount
*
1233 vfs_getvfs_locked(fsid_t
*fsid
)
1235 return(mount_list_lookupby_fsid(fsid
, 1, 0));
1239 vfs_getvfs_by_mntonname(char *path
)
1241 mount_t retmp
= (mount_t
)0;
1245 TAILQ_FOREACH(mp
, &mountlist
, mnt_list
) {
1246 if (!strncmp(mp
->mnt_vfsstat
.f_mntonname
, path
,
1247 sizeof(mp
->mnt_vfsstat
.f_mntonname
))) {
1249 if (mount_iterref(retmp
, 1))
1255 mount_list_unlock();
1259 /* generation number for creation of new fsids */
1260 u_short mntid_gen
= 0;
1262 * Get a new unique fsid
1265 vfs_getnewfsid(struct mount
*mp
)
1274 /* generate a new fsid */
1275 mtype
= mp
->mnt_vtable
->vfc_typenum
;
1276 if (++mntid_gen
== 0)
1278 tfsid
.val
[0] = makedev(nblkdev
+ mtype
, mntid_gen
);
1279 tfsid
.val
[1] = mtype
;
1281 TAILQ_FOREACH(nmp
, &mountlist
, mnt_list
) {
1282 while (vfs_getvfs_locked(&tfsid
)) {
1283 if (++mntid_gen
== 0)
1285 tfsid
.val
[0] = makedev(nblkdev
+ mtype
, mntid_gen
);
1288 mp
->mnt_vfsstat
.f_fsid
.val
[0] = tfsid
.val
[0];
1289 mp
->mnt_vfsstat
.f_fsid
.val
[1] = tfsid
.val
[1];
1290 mount_list_unlock();
1294 * Routines having to do with the management of the vnode table.
1296 extern int (**dead_vnodeop_p
)(void *);
1297 long numvnodes
, freevnodes
, deadvnodes
, async_work_vnodes
;
1300 int async_work_timed_out
= 0;
1301 int async_work_handled
= 0;
1302 int dead_vnode_wanted
= 0;
1303 int dead_vnode_waited
= 0;
1306 * Move a vnode from one mount queue to another.
1309 insmntque(vnode_t vp
, mount_t mp
)
1313 * Delete from old mount point vnode list, if on one.
1315 if ( (lmp
= vp
->v_mount
) != NULL
&& lmp
!= dead_mountp
) {
1316 if ((vp
->v_lflag
& VNAMED_MOUNT
) == 0)
1317 panic("insmntque: vp not in mount vnode list");
1318 vp
->v_lflag
&= ~VNAMED_MOUNT
;
1320 mount_lock_spin(lmp
);
1324 if (vp
->v_mntvnodes
.tqe_next
== NULL
) {
1325 if (TAILQ_LAST(&lmp
->mnt_vnodelist
, vnodelst
) == vp
)
1326 TAILQ_REMOVE(&lmp
->mnt_vnodelist
, vp
, v_mntvnodes
);
1327 else if (TAILQ_LAST(&lmp
->mnt_newvnodes
, vnodelst
) == vp
)
1328 TAILQ_REMOVE(&lmp
->mnt_newvnodes
, vp
, v_mntvnodes
);
1329 else if (TAILQ_LAST(&lmp
->mnt_workerqueue
, vnodelst
) == vp
)
1330 TAILQ_REMOVE(&lmp
->mnt_workerqueue
, vp
, v_mntvnodes
);
1332 vp
->v_mntvnodes
.tqe_next
->v_mntvnodes
.tqe_prev
= vp
->v_mntvnodes
.tqe_prev
;
1333 *vp
->v_mntvnodes
.tqe_prev
= vp
->v_mntvnodes
.tqe_next
;
1335 vp
->v_mntvnodes
.tqe_next
= NULL
;
1336 vp
->v_mntvnodes
.tqe_prev
= NULL
;
1342 * Insert into list of vnodes for the new mount point, if available.
1344 if ((vp
->v_mount
= mp
) != NULL
) {
1345 mount_lock_spin(mp
);
1346 if ((vp
->v_mntvnodes
.tqe_next
!= 0) && (vp
->v_mntvnodes
.tqe_prev
!= 0))
1347 panic("vp already in mount list");
1348 if (mp
->mnt_lflag
& MNT_LITER
)
1349 TAILQ_INSERT_HEAD(&mp
->mnt_newvnodes
, vp
, v_mntvnodes
);
1351 TAILQ_INSERT_HEAD(&mp
->mnt_vnodelist
, vp
, v_mntvnodes
);
1352 if (vp
->v_lflag
& VNAMED_MOUNT
)
1353 panic("insmntque: vp already in mount vnode list");
1354 vp
->v_lflag
|= VNAMED_MOUNT
;
1362 * Create a vnode for a block device.
1363 * Used for root filesystem, argdev, and swap areas.
1364 * Also used for memory file system special devices.
1367 bdevvp(dev_t dev
, vnode_t
*vpp
)
1371 struct vnode_fsparam vfsp
;
1372 struct vfs_context context
;
1379 context
.vc_thread
= current_thread();
1380 context
.vc_ucred
= FSCRED
;
1382 vfsp
.vnfs_mp
= (struct mount
*)0;
1383 vfsp
.vnfs_vtype
= VBLK
;
1384 vfsp
.vnfs_str
= "bdevvp";
1385 vfsp
.vnfs_dvp
= NULL
;
1386 vfsp
.vnfs_fsnode
= NULL
;
1387 vfsp
.vnfs_cnp
= NULL
;
1388 vfsp
.vnfs_vops
= spec_vnodeop_p
;
1389 vfsp
.vnfs_rdev
= dev
;
1390 vfsp
.vnfs_filesize
= 0;
1392 vfsp
.vnfs_flags
= VNFS_NOCACHE
| VNFS_CANTCACHE
;
1394 vfsp
.vnfs_marksystem
= 0;
1395 vfsp
.vnfs_markroot
= 0;
1397 if ( (error
= vnode_create(VNCREATE_FLAVOR
, VCREATESIZE
, &vfsp
, &nvp
)) ) {
1401 vnode_lock_spin(nvp
);
1402 nvp
->v_flag
|= VBDEVVP
;
1403 nvp
->v_tag
= VT_NON
; /* set this to VT_NON so during aliasing it can be replaced */
1405 if ( (error
= vnode_ref(nvp
)) ) {
1406 panic("bdevvp failed: vnode_ref");
1409 if ( (error
= VNOP_FSYNC(nvp
, MNT_WAIT
, &context
)) ) {
1410 panic("bdevvp failed: fsync");
1413 if ( (error
= buf_invalidateblks(nvp
, BUF_WRITE_DATA
, 0, 0)) ) {
1414 panic("bdevvp failed: invalidateblks");
1420 * XXXMAC: We can't put a MAC check here, the system will
1421 * panic without this vnode.
1425 if ( (error
= VNOP_OPEN(nvp
, FREAD
, &context
)) ) {
1426 panic("bdevvp failed: open");
1436 * Check to see if the new vnode represents a special device
1437 * for which we already have a vnode (either because of
1438 * bdevvp() or because of a different vnode representing
1439 * the same block device). If such an alias exists, deallocate
1440 * the existing contents and return the aliased vnode. The
1441 * caller is responsible for filling it with its new contents.
1444 checkalias(struct vnode
*nvp
, dev_t nvp_rdev
)
1448 struct specinfo
*sin
= NULL
;
1451 vpp
= &speclisth
[SPECHASH(nvp_rdev
)];
1455 for (vp
= *vpp
; vp
; vp
= vp
->v_specnext
) {
1456 if (nvp_rdev
== vp
->v_rdev
&& nvp
->v_type
== vp
->v_type
) {
1465 if (vnode_getwithvid(vp
,vid
)) {
1469 * Termination state is checked in vnode_getwithvid
1474 * Alias, but not in use, so flush it out.
1476 if ((vp
->v_iocount
== 1) && (vp
->v_usecount
== 0)) {
1477 vnode_reclaim_internal(vp
, 1, 1, 0);
1478 vnode_put_locked(vp
);
1484 if (vp
== NULL
|| vp
->v_tag
!= VT_NON
) {
1486 MALLOC_ZONE(sin
, struct specinfo
*, sizeof(struct specinfo
),
1487 M_SPECINFO
, M_WAITOK
);
1490 nvp
->v_specinfo
= sin
;
1491 bzero(nvp
->v_specinfo
, sizeof(struct specinfo
));
1492 nvp
->v_rdev
= nvp_rdev
;
1493 nvp
->v_specflags
= 0;
1494 nvp
->v_speclastr
= -1;
1495 nvp
->v_specinfo
->si_opencount
= 0;
1496 nvp
->v_specinfo
->si_initted
= 0;
1497 nvp
->v_specinfo
->si_throttleable
= 0;
1501 /* We dropped the lock, someone could have added */
1503 for (vp
= *vpp
; vp
; vp
= vp
->v_specnext
) {
1504 if (nvp_rdev
== vp
->v_rdev
&& nvp
->v_type
== vp
->v_type
) {
1512 nvp
->v_hashchain
= vpp
;
1513 nvp
->v_specnext
= *vpp
;
1517 nvp
->v_specflags
|= SI_ALIASED
;
1518 vp
->v_specflags
|= SI_ALIASED
;
1520 vnode_put_locked(vp
);
1530 FREE_ZONE(sin
, sizeof(struct specinfo
), M_SPECINFO
);
1533 if ((vp
->v_flag
& (VBDEVVP
| VDEVFLUSH
)) != 0)
1536 panic("checkalias with VT_NON vp that shouldn't: %p", vp
);
1543 * Get a reference on a particular vnode and lock it if requested.
1544 * If the vnode was on the inactive list, remove it from the list.
1545 * If the vnode was on the free list, remove it from the list and
1546 * move it to inactive list as needed.
1547 * The vnode lock bit is set if the vnode is being eliminated in
1548 * vgone. The process is awakened when the transition is completed,
1549 * and an error returned to indicate that the vnode is no longer
1550 * usable (possibly having been changed to a new file system type).
1553 vget_internal(vnode_t vp
, int vid
, int vflags
)
1557 vnode_lock_spin(vp
);
1559 if ((vflags
& VNODE_WRITEABLE
) && (vp
->v_writecount
== 0))
1561 * vnode to be returned only if it has writers opened
1565 error
= vnode_getiocount(vp
, vid
, vflags
);
1573 * Returns: 0 Success
1574 * ENOENT No such file or directory [terminating]
1577 vnode_ref(vnode_t vp
)
1580 return (vnode_ref_ext(vp
, 0, 0));
1584 * Returns: 0 Success
1585 * ENOENT No such file or directory [terminating]
1588 vnode_ref_ext(vnode_t vp
, int fmode
, int flags
)
1592 vnode_lock_spin(vp
);
1595 * once all the current call sites have been fixed to insure they have
1596 * taken an iocount, we can toughen this assert up and insist that the
1597 * iocount is non-zero... a non-zero usecount doesn't insure correctness
1599 if (vp
->v_iocount
<= 0 && vp
->v_usecount
<= 0)
1600 panic("vnode_ref_ext: vp %p has no valid reference %d, %d", vp
, vp
->v_iocount
, vp
->v_usecount
);
1603 * if you are the owner of drain/termination, can acquire usecount
1605 if ((flags
& VNODE_REF_FORCE
) == 0) {
1606 if ((vp
->v_lflag
& (VL_DRAIN
| VL_TERMINATE
| VL_DEAD
))) {
1607 if (vp
->v_owner
!= current_thread()) {
1615 if (fmode
& FWRITE
) {
1616 if (++vp
->v_writecount
<= 0)
1617 panic("vnode_ref_ext: v_writecount");
1619 if (fmode
& O_EVTONLY
) {
1620 if (++vp
->v_kusecount
<= 0)
1621 panic("vnode_ref_ext: v_kusecount");
1623 if (vp
->v_flag
& VRAGE
) {
1626 ut
= get_bsdthread_info(current_thread());
1628 if ( !(current_proc()->p_lflag
& P_LRAGE_VNODES
) &&
1629 !(ut
->uu_flag
& UT_RAGE_VNODES
)) {
1631 * a 'normal' process accessed this vnode
1632 * so make sure its no longer marked
1633 * for rapid aging... also, make sure
1634 * it gets removed from the rage list...
1635 * when v_usecount drops back to 0, it
1636 * will be put back on the real free list
1638 vp
->v_flag
&= ~VRAGE
;
1639 vp
->v_references
= 0;
1640 vnode_list_remove(vp
);
1643 if (vp
->v_usecount
== 1 && vp
->v_type
== VREG
&& !(vp
->v_flag
& VSYSTEM
)) {
1645 if (vp
->v_ubcinfo
) {
1646 vnode_lock_convert(vp
);
1647 memory_object_mark_used(vp
->v_ubcinfo
->ui_control
);
1658 vnode_on_reliable_media(vnode_t vp
)
1660 if ( !(vp
->v_mount
->mnt_kern_flag
& MNTK_VIRTUALDEV
) && (vp
->v_mount
->mnt_flag
& MNT_LOCAL
) )
1666 vnode_async_list_add(vnode_t vp
)
1670 if (VONLIST(vp
) || (vp
->v_lflag
& (VL_TERMINATE
|VL_DEAD
)))
1671 panic("vnode_async_list_add: %p is in wrong state", vp
);
1673 TAILQ_INSERT_HEAD(&vnode_async_work_list
, vp
, v_freelist
);
1674 vp
->v_listflag
|= VLIST_ASYNC_WORK
;
1676 async_work_vnodes
++;
1678 vnode_list_unlock();
1680 wakeup(&vnode_async_work_list
);
1686 * put the vnode on appropriate free list.
1687 * called with vnode LOCKED
1690 vnode_list_add(vnode_t vp
)
1692 boolean_t need_dead_wakeup
= FALSE
;
1695 lck_mtx_assert(&vp
->v_lock
, LCK_MTX_ASSERT_OWNED
);
1701 * if it is already on a list or non zero references return
1703 if (VONLIST(vp
) || (vp
->v_usecount
!= 0) || (vp
->v_iocount
!= 0) || (vp
->v_lflag
& VL_TERMINATE
))
1707 * In vclean, we might have deferred ditching locked buffers
1708 * because something was still referencing them (indicated by
1709 * usecount). We can ditch them now.
1711 if (ISSET(vp
->v_lflag
, VL_DEAD
)
1712 && (!LIST_EMPTY(&vp
->v_cleanblkhd
) || !LIST_EMPTY(&vp
->v_dirtyblkhd
))) {
1713 ++vp
->v_iocount
; // Probably not necessary, but harmless
1718 buf_invalidateblks(vp
, BUF_INVALIDATE_LOCKED
, 0, 0);
1720 vnode_dropiocount(vp
);
1726 if ((vp
->v_flag
& VRAGE
) && !(vp
->v_lflag
& VL_DEAD
)) {
1728 * add the new guy to the appropriate end of the RAGE list
1730 if ((vp
->v_flag
& VAGE
))
1731 TAILQ_INSERT_HEAD(&vnode_rage_list
, vp
, v_freelist
);
1733 TAILQ_INSERT_TAIL(&vnode_rage_list
, vp
, v_freelist
);
1735 vp
->v_listflag
|= VLIST_RAGE
;
1739 * reset the timestamp for the last inserted vp on the RAGE
1740 * queue to let new_vnode know that its not ok to start stealing
1741 * from this list... as long as we're actively adding to this list
1742 * we'll push out the vnodes we want to donate to the real free list
1743 * once we stop pushing, we'll let some time elapse before we start
1744 * stealing them in the new_vnode routine
1746 microuptime(&rage_tv
);
1749 * if VL_DEAD, insert it at head of the dead list
1750 * else insert at tail of LRU list or at head if VAGE is set
1752 if ( (vp
->v_lflag
& VL_DEAD
)) {
1753 TAILQ_INSERT_HEAD(&vnode_dead_list
, vp
, v_freelist
);
1754 vp
->v_listflag
|= VLIST_DEAD
;
1757 if (dead_vnode_wanted
) {
1758 dead_vnode_wanted
--;
1759 need_dead_wakeup
= TRUE
;
1762 } else if ( (vp
->v_flag
& VAGE
) ) {
1763 TAILQ_INSERT_HEAD(&vnode_free_list
, vp
, v_freelist
);
1764 vp
->v_flag
&= ~VAGE
;
1767 TAILQ_INSERT_TAIL(&vnode_free_list
, vp
, v_freelist
);
1771 vnode_list_unlock();
1773 if (need_dead_wakeup
== TRUE
)
1774 wakeup_one((caddr_t
)&dead_vnode_wanted
);
1779 * remove the vnode from appropriate free list.
1780 * called with vnode LOCKED and
1781 * the list lock held
1784 vnode_list_remove_locked(vnode_t vp
)
1788 * the v_listflag field is
1789 * protected by the vnode_list_lock
1791 if (vp
->v_listflag
& VLIST_RAGE
)
1792 VREMRAGE("vnode_list_remove", vp
);
1793 else if (vp
->v_listflag
& VLIST_DEAD
)
1794 VREMDEAD("vnode_list_remove", vp
);
1795 else if (vp
->v_listflag
& VLIST_ASYNC_WORK
)
1796 VREMASYNC_WORK("vnode_list_remove", vp
);
1798 VREMFREE("vnode_list_remove", vp
);
1804 * remove the vnode from appropriate free list.
1805 * called with vnode LOCKED
1808 vnode_list_remove(vnode_t vp
)
1811 lck_mtx_assert(&vp
->v_lock
, LCK_MTX_ASSERT_OWNED
);
1814 * we want to avoid taking the list lock
1815 * in the case where we're not on the free
1816 * list... this will be true for most
1817 * directories and any currently in use files
1819 * we're guaranteed that we can't go from
1820 * the not-on-list state to the on-list
1821 * state since we hold the vnode lock...
1822 * all calls to vnode_list_add are done
1823 * under the vnode lock... so we can
1824 * check for that condition (the prevelant one)
1825 * without taking the list lock
1830 * however, we're not guaranteed that
1831 * we won't go from the on-list state
1832 * to the not-on-list state until we
1833 * hold the vnode_list_lock... this
1834 * is due to "new_vnode" removing vnodes
1835 * from the free list uder the list_lock
1836 * w/o the vnode lock... so we need to
1837 * check again whether we're currently
1840 vnode_list_remove_locked(vp
);
1842 vnode_list_unlock();
1848 vnode_rele(vnode_t vp
)
1850 vnode_rele_internal(vp
, 0, 0, 0);
1855 vnode_rele_ext(vnode_t vp
, int fmode
, int dont_reenter
)
1857 vnode_rele_internal(vp
, fmode
, dont_reenter
, 0);
1862 vnode_rele_internal(vnode_t vp
, int fmode
, int dont_reenter
, int locked
)
1866 vnode_lock_spin(vp
);
1869 lck_mtx_assert(&vp
->v_lock
, LCK_MTX_ASSERT_OWNED
);
1871 if (--vp
->v_usecount
< 0)
1872 panic("vnode_rele_ext: vp %p usecount -ve : %d. v_tag = %d, v_type = %d, v_flag = %x.", vp
, vp
->v_usecount
, vp
->v_tag
, vp
->v_type
, vp
->v_flag
);
1874 if (fmode
& FWRITE
) {
1875 if (--vp
->v_writecount
< 0)
1876 panic("vnode_rele_ext: vp %p writecount -ve : %d. v_tag = %d, v_type = %d, v_flag = %x.", vp
, vp
->v_writecount
, vp
->v_tag
, vp
->v_type
, vp
->v_flag
);
1878 if (fmode
& O_EVTONLY
) {
1879 if (--vp
->v_kusecount
< 0)
1880 panic("vnode_rele_ext: vp %p kusecount -ve : %d. v_tag = %d, v_type = %d, v_flag = %x.", vp
, vp
->v_kusecount
, vp
->v_tag
, vp
->v_type
, vp
->v_flag
);
1882 if (vp
->v_kusecount
> vp
->v_usecount
)
1883 panic("vnode_rele_ext: vp %p kusecount(%d) out of balance with usecount(%d). v_tag = %d, v_type = %d, v_flag = %x.",vp
, vp
->v_kusecount
, vp
->v_usecount
, vp
->v_tag
, vp
->v_type
, vp
->v_flag
);
1885 if ((vp
->v_iocount
> 0) || (vp
->v_usecount
> 0)) {
1887 * vnode is still busy... if we're the last
1888 * usecount, mark for a future call to VNOP_INACTIVE
1889 * when the iocount finally drops to 0
1891 if (vp
->v_usecount
== 0) {
1892 vp
->v_lflag
|= VL_NEEDINACTIVE
;
1893 vp
->v_flag
&= ~(VNOCACHE_DATA
| VRAOFF
| VOPENEVT
);
1897 vp
->v_flag
&= ~(VNOCACHE_DATA
| VRAOFF
| VOPENEVT
);
1899 if (ISSET(vp
->v_lflag
, VL_TERMINATE
| VL_DEAD
) || dont_reenter
) {
1901 * vnode is being cleaned, or
1902 * we've requested that we don't reenter
1903 * the filesystem on this release...in
1904 * the latter case, we'll mark the vnode aged
1907 if ( !(vp
->v_lflag
& (VL_TERMINATE
| VL_DEAD
| VL_MARKTERM
)) ) {
1908 vp
->v_lflag
|= VL_NEEDINACTIVE
;
1910 if (vnode_on_reliable_media(vp
) == FALSE
|| vp
->v_flag
& VISDIRTY
) {
1911 vnode_async_list_add(vp
);
1922 * at this point both the iocount and usecount
1924 * pick up an iocount so that we can call
1925 * VNOP_INACTIVE with the vnode lock unheld
1931 vp
->v_lflag
&= ~VL_NEEDINACTIVE
;
1934 VNOP_INACTIVE(vp
, vfs_context_current());
1936 vnode_lock_spin(vp
);
1938 * because we dropped the vnode lock to call VNOP_INACTIVE
1939 * the state of the vnode may have changed... we may have
1940 * picked up an iocount, usecount or the MARKTERM may have
1941 * been set... we need to reevaluate the reference counts
1942 * to determine if we can call vnode_reclaim_internal at
1943 * this point... if the reference counts are up, we'll pick
1944 * up the MARKTERM state when they get subsequently dropped
1946 if ( (vp
->v_iocount
== 1) && (vp
->v_usecount
== 0) &&
1947 ((vp
->v_lflag
& (VL_MARKTERM
| VL_TERMINATE
| VL_DEAD
)) == VL_MARKTERM
)) {
1950 ut
= get_bsdthread_info(current_thread());
1952 if (ut
->uu_defer_reclaims
) {
1953 vp
->v_defer_reclaimlist
= ut
->uu_vreclaims
;
1954 ut
->uu_vreclaims
= vp
;
1957 vnode_lock_convert(vp
);
1958 vnode_reclaim_internal(vp
, 1, 1, 0);
1960 vnode_dropiocount(vp
);
1963 if (vp
->v_usecount
== 0 && vp
->v_type
== VREG
&& !(vp
->v_flag
& VSYSTEM
)) {
1965 if (vp
->v_ubcinfo
) {
1966 vnode_lock_convert(vp
);
1967 memory_object_mark_unused(vp
->v_ubcinfo
->ui_control
, (vp
->v_flag
& VRAGE
) == VRAGE
);
1976 * Remove any vnodes in the vnode table belonging to mount point mp.
1978 * If MNT_NOFORCE is specified, there should not be any active ones,
1979 * return error if any are found (nb: this is a user error, not a
1980 * system error). If MNT_FORCE is specified, detach any active vnodes
1984 int busyprt
= 0; /* print out busy vnodes */
1988 vflush(struct mount
*mp
, struct vnode
*skipvp
, int flags
)
1997 vnode_iterate_setup(mp
);
1999 * On regular unmounts(not forced) do a
2000 * quick check for vnodes to be in use. This
2001 * preserves the caching of vnodes. automounter
2002 * tries unmounting every so often to see whether
2003 * it is still busy or not.
2005 if (((flags
& FORCECLOSE
)==0) && ((mp
->mnt_kern_flag
& MNTK_UNMOUNT_PREFLIGHT
) != 0)) {
2006 if (vnode_umount_preflight(mp
, skipvp
, flags
)) {
2007 vnode_iterate_clear(mp
);
2013 /* it is returns 0 then there is nothing to do */
2014 retval
= vnode_iterate_prepare(mp
);
2017 vnode_iterate_clear(mp
);
2022 /* iterate over all the vnodes */
2023 while (!TAILQ_EMPTY(&mp
->mnt_workerqueue
)) {
2025 vp
= TAILQ_FIRST(&mp
->mnt_workerqueue
);
2026 TAILQ_REMOVE(&mp
->mnt_workerqueue
, vp
, v_mntvnodes
);
2027 TAILQ_INSERT_TAIL(&mp
->mnt_vnodelist
, vp
, v_mntvnodes
);
2029 if ( (vp
->v_mount
!= mp
) || (vp
== skipvp
)) {
2035 vnode_lock_spin(vp
);
2037 // If vnode is already terminating, wait for it...
2038 while (vp
->v_id
== vid
&& ISSET(vp
->v_lflag
, VL_TERMINATE
)) {
2039 vp
->v_lflag
|= VL_TERMWANT
;
2040 msleep(&vp
->v_lflag
, &vp
->v_lock
, PVFS
, "vflush", NULL
);
2043 if ((vp
->v_id
!= vid
) || ISSET(vp
->v_lflag
, VL_DEAD
)) {
2050 * If requested, skip over vnodes marked VSYSTEM.
2051 * Skip over all vnodes marked VNOFLUSH.
2053 if ((flags
& SKIPSYSTEM
) && ((vp
->v_flag
& VSYSTEM
) ||
2054 (vp
->v_flag
& VNOFLUSH
))) {
2060 * If requested, skip over vnodes marked VSWAP.
2062 if ((flags
& SKIPSWAP
) && (vp
->v_flag
& VSWAP
)) {
2068 * If requested, skip over vnodes marked VROOT.
2070 if ((flags
& SKIPROOT
) && (vp
->v_flag
& VROOT
)) {
2076 * If WRITECLOSE is set, only flush out regular file
2077 * vnodes open for writing.
2079 if ((flags
& WRITECLOSE
) &&
2080 (vp
->v_writecount
== 0 || vp
->v_type
!= VREG
)) {
2086 * If the real usecount is 0, all we need to do is clear
2087 * out the vnode data structures and we are done.
2089 if (((vp
->v_usecount
== 0) ||
2090 ((vp
->v_usecount
- vp
->v_kusecount
) == 0))) {
2092 vnode_lock_convert(vp
);
2093 vp
->v_iocount
++; /* so that drain waits for * other iocounts */
2097 vnode_reclaim_internal(vp
, 1, 1, 0);
2098 vnode_dropiocount(vp
);
2107 * If FORCECLOSE is set, forcibly close the vnode.
2108 * For block or character devices, revert to an
2109 * anonymous device. For all other files, just kill them.
2111 if (flags
& FORCECLOSE
) {
2112 vnode_lock_convert(vp
);
2114 if (vp
->v_type
!= VBLK
&& vp
->v_type
!= VCHR
) {
2115 vp
->v_iocount
++; /* so that drain waits * for other iocounts */
2119 vnode_abort_advlocks(vp
);
2120 vnode_reclaim_internal(vp
, 1, 1, 0);
2121 vnode_dropiocount(vp
);
2126 vp
->v_lflag
&= ~VL_DEAD
;
2127 vp
->v_op
= spec_vnodeop_p
;
2128 vp
->v_flag
|= VDEVFLUSH
;
2136 vprint("vflush: busy vnode", vp
);
2143 /* At this point the worker queue is completed */
2144 if (busy
&& ((flags
& FORCECLOSE
)==0) && reclaimed
) {
2147 (void)vnode_iterate_reloadq(mp
);
2148 /* returned with mount lock held */
2152 /* if new vnodes were created in between retry the reclaim */
2153 if ( vnode_iterate_reloadq(mp
) != 0) {
2154 if (!(busy
&& ((flags
& FORCECLOSE
)==0)))
2157 vnode_iterate_clear(mp
);
2160 if (busy
&& ((flags
& FORCECLOSE
)==0))
2165 long num_recycledvnodes
= 0;
2167 * Disassociate the underlying file system from a vnode.
2168 * The vnode lock is held on entry.
2171 vclean(vnode_t vp
, int flags
)
2173 vfs_context_t ctx
= vfs_context_current();
2176 int already_terminating
;
2183 * Check to see if the vnode is in use.
2184 * If so we have to reference it before we clean it out
2185 * so that its count cannot fall to zero and generate a
2186 * race against ourselves to recycle it.
2188 active
= vp
->v_usecount
;
2191 * just in case we missed sending a needed
2192 * VNOP_INACTIVE, we'll do it now
2194 need_inactive
= (vp
->v_lflag
& VL_NEEDINACTIVE
);
2196 vp
->v_lflag
&= ~VL_NEEDINACTIVE
;
2199 * Prevent the vnode from being recycled or
2200 * brought into use while we clean it out.
2202 already_terminating
= (vp
->v_lflag
& VL_TERMINATE
);
2204 vp
->v_lflag
|= VL_TERMINATE
;
2207 is_namedstream
= vnode_isnamedstream(vp
);
2212 OSAddAtomicLong(1, &num_recycledvnodes
);
2214 if (flags
& DOCLOSE
)
2215 clflags
|= IO_NDELAY
;
2216 if (flags
& REVOKEALL
)
2217 clflags
|= IO_REVOKE
;
2219 if (active
&& (flags
& DOCLOSE
))
2220 VNOP_CLOSE(vp
, clflags
, ctx
);
2223 * Clean out any buffers associated with the vnode.
2225 if (flags
& DOCLOSE
) {
2227 if (vp
->v_tag
== VT_NFS
)
2228 nfs_vinvalbuf(vp
, V_SAVE
, ctx
, 0);
2232 VNOP_FSYNC(vp
, MNT_WAIT
, ctx
);
2235 * If the vnode is still in use (by the journal for
2236 * example) we don't want to invalidate locked buffers
2237 * here. In that case, either the journal will tidy them
2238 * up, or we will deal with it when the usecount is
2239 * finally released in vnode_rele_internal.
2241 buf_invalidateblks(vp
, BUF_WRITE_DATA
| (active
? 0 : BUF_INVALIDATE_LOCKED
), 0, 0);
2243 if (UBCINFOEXISTS(vp
))
2245 * Clean the pages in VM.
2247 (void)ubc_msync(vp
, (off_t
)0, ubc_getsize(vp
), NULL
, UBC_PUSHALL
| UBC_INVALIDATE
| UBC_SYNC
);
2249 if (active
|| need_inactive
)
2250 VNOP_INACTIVE(vp
, ctx
);
2253 if ((is_namedstream
!= 0) && (vp
->v_parent
!= NULLVP
)) {
2254 vnode_t pvp
= vp
->v_parent
;
2256 /* Delete the shadow stream file before we reclaim its vnode */
2257 if (vnode_isshadow(vp
)) {
2258 vnode_relenamedstream(pvp
, vp
);
2262 * No more streams associated with the parent. We
2263 * have a ref on it, so its identity is stable.
2264 * If the parent is on an opaque volume, then we need to know
2265 * whether it has associated named streams.
2267 if (vfs_authopaque(pvp
->v_mount
)) {
2268 vnode_lock_spin(pvp
);
2269 pvp
->v_lflag
&= ~VL_HASSTREAMS
;
2276 * Destroy ubc named reference
2277 * cluster_release is done on this path
2278 * along with dropping the reference on the ucred
2279 * (and in the case of forced unmount of an mmap-ed file,
2280 * the ubc reference on the vnode is dropped here too).
2282 ubc_destroy_named(vp
);
2286 * cleanup trigger info from vnode (if any)
2289 vnode_resolver_detach(vp
);
2293 * Reclaim the vnode.
2295 if (VNOP_RECLAIM(vp
, ctx
))
2296 panic("vclean: cannot reclaim");
2298 // make sure the name & parent ptrs get cleaned out!
2299 vnode_update_identity(vp
, NULLVP
, NULL
, 0, 0, VNODE_UPDATE_PARENT
| VNODE_UPDATE_NAME
| VNODE_UPDATE_PURGE
);
2304 * Remove the vnode from any mount list it might be on. It is not
2305 * safe to do this any earlier because unmount needs to wait for
2306 * any vnodes to terminate and it cannot do that if it cannot find
2309 insmntque(vp
, (struct mount
*)0);
2311 vp
->v_mount
= dead_mountp
;
2312 vp
->v_op
= dead_vnodeop_p
;
2316 vp
->v_lflag
|= VL_DEAD
;
2317 vp
->v_flag
&= ~VISDIRTY
;
2319 if (already_terminating
== 0) {
2320 vp
->v_lflag
&= ~VL_TERMINATE
;
2322 * Done with purge, notify sleepers of the grim news.
2324 if (vp
->v_lflag
& VL_TERMWANT
) {
2325 vp
->v_lflag
&= ~VL_TERMWANT
;
2326 wakeup(&vp
->v_lflag
);
2332 * Eliminate all activity associated with the requested vnode
2333 * and with all vnodes aliased to the requested vnode.
2337 vn_revoke(vnode_t vp
, int flags
, __unused vfs_context_t a_context
)
2339 vn_revoke(vnode_t vp
, __unused
int flags
, __unused vfs_context_t a_context
)
2346 if ((flags
& REVOKEALL
) == 0)
2347 panic("vnop_revoke");
2350 if (vnode_isaliased(vp
)) {
2352 * If a vgone (or vclean) is already in progress,
2353 * return an immediate error
2355 if (vp
->v_lflag
& VL_TERMINATE
)
2359 * Ensure that vp will not be vgone'd while we
2360 * are eliminating its aliases.
2363 while ((vp
->v_specflags
& SI_ALIASED
)) {
2364 for (vq
= *vp
->v_hashchain
; vq
; vq
= vq
->v_specnext
) {
2365 if (vq
->v_rdev
!= vp
->v_rdev
||
2366 vq
->v_type
!= vp
->v_type
|| vp
== vq
)
2370 if (vnode_getwithvid(vq
,vid
)){
2375 if (!(vq
->v_lflag
& VL_TERMINATE
)) {
2376 vnode_reclaim_internal(vq
, 1, 1, 0);
2378 vnode_put_locked(vq
);
2387 if (vp
->v_lflag
& VL_TERMINATE
) {
2391 vnode_reclaim_internal(vp
, 1, 0, REVOKEALL
);
2398 * Recycle an unused vnode to the front of the free list.
2399 * Release the passed interlock if the vnode will be recycled.
2402 vnode_recycle(struct vnode
*vp
)
2404 vnode_lock_spin(vp
);
2406 if (vp
->v_iocount
|| vp
->v_usecount
) {
2407 vp
->v_lflag
|= VL_MARKTERM
;
2411 vnode_lock_convert(vp
);
2412 vnode_reclaim_internal(vp
, 1, 0, 0);
2420 vnode_reload(vnode_t vp
)
2422 vnode_lock_spin(vp
);
2424 if ((vp
->v_iocount
> 1) || vp
->v_usecount
) {
2428 if (vp
->v_iocount
<= 0)
2429 panic("vnode_reload with no iocount %d", vp
->v_iocount
);
2431 /* mark for release when iocount is dopped */
2432 vp
->v_lflag
|= VL_MARKTERM
;
2440 vgone(vnode_t vp
, int flags
)
2446 * Clean out the filesystem specific data.
2447 * vclean also takes care of removing the
2448 * vnode from any mount list it might be on
2450 vclean(vp
, flags
| DOCLOSE
);
2453 * If special device, remove it from special device alias list
2456 if ((vp
->v_type
== VBLK
|| vp
->v_type
== VCHR
) && vp
->v_specinfo
!= 0) {
2458 if (*vp
->v_hashchain
== vp
) {
2459 *vp
->v_hashchain
= vp
->v_specnext
;
2461 for (vq
= *vp
->v_hashchain
; vq
; vq
= vq
->v_specnext
) {
2462 if (vq
->v_specnext
!= vp
)
2464 vq
->v_specnext
= vp
->v_specnext
;
2468 panic("missing bdev");
2470 if (vp
->v_specflags
& SI_ALIASED
) {
2472 for (vq
= *vp
->v_hashchain
; vq
; vq
= vq
->v_specnext
) {
2473 if (vq
->v_rdev
!= vp
->v_rdev
||
2474 vq
->v_type
!= vp
->v_type
)
2481 panic("missing alias");
2483 vx
->v_specflags
&= ~SI_ALIASED
;
2484 vp
->v_specflags
&= ~SI_ALIASED
;
2488 struct specinfo
*tmp
= vp
->v_specinfo
;
2489 vp
->v_specinfo
= NULL
;
2490 FREE_ZONE((void *)tmp
, sizeof(struct specinfo
), M_SPECINFO
);
2496 * Lookup a vnode by device number.
2499 check_mountedon(dev_t dev
, enum vtype type
, int *errorp
)
2507 for (vp
= speclisth
[SPECHASH(dev
)]; vp
; vp
= vp
->v_specnext
) {
2508 if (dev
!= vp
->v_rdev
|| type
!= vp
->v_type
)
2512 if (vnode_getwithvid(vp
,vid
))
2514 vnode_lock_spin(vp
);
2515 if ((vp
->v_usecount
> 0) || (vp
->v_iocount
> 1)) {
2517 if ((*errorp
= vfs_mountedon(vp
)) != 0)
2529 * Calculate the total number of references to a special device.
2539 if (!vnode_isaliased(vp
))
2540 return (vp
->v_specinfo
->si_opencount
);
2545 * Grab first vnode and its vid.
2547 vq
= *vp
->v_hashchain
;
2548 vid
= vq
? vq
->v_id
: 0;
2554 * Attempt to get the vnode outside the SPECHASH lock.
2556 if (vnode_getwithvid(vq
, vid
)) {
2561 if (vq
->v_rdev
== vp
->v_rdev
&& vq
->v_type
== vp
->v_type
) {
2562 if ((vq
->v_usecount
== 0) && (vq
->v_iocount
== 1) && vq
!= vp
) {
2564 * Alias, but not in use, so flush it out.
2566 vnode_reclaim_internal(vq
, 1, 1, 0);
2567 vnode_put_locked(vq
);
2571 count
+= vq
->v_specinfo
->si_opencount
;
2577 * must do this with the reference still held on 'vq'
2578 * so that it can't be destroyed while we're poking
2579 * through v_specnext
2581 vnext
= vq
->v_specnext
;
2582 vid
= vnext
? vnext
->v_id
: 0;
2594 int prtactive
= 0; /* 1 => print out reclaim of active vnodes */
2597 * Print out a description of a vnode.
2599 static const char *typename
[] =
2600 { "VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD" };
2603 vprint(const char *label
, struct vnode
*vp
)
2608 printf("%s: ", label
);
2609 printf("type %s, usecount %d, writecount %d",
2610 typename
[vp
->v_type
], vp
->v_usecount
, vp
->v_writecount
);
2612 if (vp
->v_flag
& VROOT
)
2613 strlcat(sbuf
, "|VROOT", sizeof(sbuf
));
2614 if (vp
->v_flag
& VTEXT
)
2615 strlcat(sbuf
, "|VTEXT", sizeof(sbuf
));
2616 if (vp
->v_flag
& VSYSTEM
)
2617 strlcat(sbuf
, "|VSYSTEM", sizeof(sbuf
));
2618 if (vp
->v_flag
& VNOFLUSH
)
2619 strlcat(sbuf
, "|VNOFLUSH", sizeof(sbuf
));
2620 if (vp
->v_flag
& VBWAIT
)
2621 strlcat(sbuf
, "|VBWAIT", sizeof(sbuf
));
2622 if (vnode_isaliased(vp
))
2623 strlcat(sbuf
, "|VALIASED", sizeof(sbuf
));
2624 if (sbuf
[0] != '\0')
2625 printf(" flags (%s)", &sbuf
[1]);
2630 vn_getpath(struct vnode
*vp
, char *pathbuf
, int *len
)
2632 return build_path(vp
, pathbuf
, *len
, len
, BUILDPATH_NO_FS_ENTER
, vfs_context_current());
2636 vn_getpath_fsenter(struct vnode
*vp
, char *pathbuf
, int *len
)
2638 return build_path(vp
, pathbuf
, *len
, len
, 0, vfs_context_current());
2642 vn_getcdhash(struct vnode
*vp
, off_t offset
, unsigned char *cdhash
)
2644 return ubc_cs_getcdhash(vp
, offset
, cdhash
);
2648 static char *extension_table
=NULL
;
2650 static int max_ext_width
;
2653 extension_cmp(const void *a
, const void *b
)
2655 return (strlen((const char *)a
) - strlen((const char *)b
));
2660 // This is the api LaunchServices uses to inform the kernel
2661 // the list of package extensions to ignore.
2663 // Internally we keep the list sorted by the length of the
2664 // the extension (from longest to shortest). We sort the
2665 // list of extensions so that we can speed up our searches
2666 // when comparing file names -- we only compare extensions
2667 // that could possibly fit into the file name, not all of
2668 // them (i.e. a short 8 character name can't have an 8
2669 // character extension).
2671 extern lck_mtx_t
*pkg_extensions_lck
;
2673 __private_extern__
int
2674 set_package_extensions_table(user_addr_t data
, int nentries
, int maxwidth
)
2676 char *new_exts
, *old_exts
;
2679 if (nentries
<= 0 || nentries
> 1024 || maxwidth
<= 0 || maxwidth
> 255) {
2684 // allocate one byte extra so we can guarantee null termination
2685 MALLOC(new_exts
, char *, (nentries
* maxwidth
) + 1, M_TEMP
, M_WAITOK
);
2686 if (new_exts
== NULL
) {
2690 error
= copyin(data
, new_exts
, nentries
* maxwidth
);
2692 FREE(new_exts
, M_TEMP
);
2696 new_exts
[(nentries
* maxwidth
)] = '\0'; // guarantee null termination of the block
2698 qsort(new_exts
, nentries
, maxwidth
, extension_cmp
);
2700 lck_mtx_lock(pkg_extensions_lck
);
2702 old_exts
= extension_table
;
2703 extension_table
= new_exts
;
2705 max_ext_width
= maxwidth
;
2707 lck_mtx_unlock(pkg_extensions_lck
);
2710 FREE(old_exts
, M_TEMP
);
2717 __private_extern__
int
2718 is_package_name(const char *name
, int len
)
2721 const char *ptr
, *name_ext
;
2728 for(ptr
=name
; *ptr
!= '\0'; ptr
++) {
2734 // if there is no "." extension, it can't match
2735 if (name_ext
== NULL
) {
2739 // advance over the "."
2742 lck_mtx_lock(pkg_extensions_lck
);
2744 // now iterate over all the extensions to see if any match
2745 ptr
= &extension_table
[0];
2746 for(i
=0; i
< nexts
; i
++, ptr
+=max_ext_width
) {
2747 extlen
= strlen(ptr
);
2748 if (strncasecmp(name_ext
, ptr
, extlen
) == 0 && name_ext
[extlen
] == '\0') {
2750 lck_mtx_unlock(pkg_extensions_lck
);
2755 lck_mtx_unlock(pkg_extensions_lck
);
2757 // if we get here, no extension matched
2762 vn_path_package_check(__unused vnode_t vp
, char *path
, int pathlen
, int *component
)
2773 while(end
< path
+ pathlen
&& *end
!= '\0') {
2774 while(end
< path
+ pathlen
&& *end
== '/' && *end
!= '\0') {
2780 while(end
< path
+ pathlen
&& *end
!= '/' && *end
!= '\0') {
2784 if (end
> path
+ pathlen
) {
2785 // hmm, string wasn't null terminated
2790 if (is_package_name(ptr
, end
- ptr
)) {
2803 * Determine if a name is inappropriate for a searchfs query.
2804 * This list consists of /System currently.
2807 int vn_searchfs_inappropriate_name(const char *name
, int len
) {
2808 const char *bad_names
[] = { "System" };
2809 int bad_len
[] = { 6 };
2812 for(i
=0; i
< (int) (sizeof(bad_names
) / sizeof(bad_names
[0])); i
++) {
2813 if (len
== bad_len
[i
] && strncmp(name
, bad_names
[i
], strlen(bad_names
[i
]) + 1) == 0) {
2818 // if we get here, no name matched
2823 * Top level filesystem related information gathering.
2825 extern unsigned int vfs_nummntops
;
2828 * The VFS_NUMMNTOPS shouldn't be at name[1] since
2829 * is a VFS generic variable. Since we no longer support
2830 * VT_UFS, we reserve its value to support this sysctl node.
2832 * It should have been:
2833 * name[0]: VFS_GENERIC
2834 * name[1]: VFS_NUMMNTOPS
2836 SYSCTL_INT(_vfs
, VFS_NUMMNTOPS
, nummntops
,
2837 CTLFLAG_RD
| CTLFLAG_KERN
| CTLFLAG_LOCKED
,
2838 &vfs_nummntops
, 0, "");
2841 vfs_sysctl(int *name __unused
, u_int namelen __unused
,
2842 user_addr_t oldp __unused
, size_t *oldlenp __unused
,
2843 user_addr_t newp __unused
, size_t newlen __unused
, proc_t p __unused
);
2846 vfs_sysctl(int *name __unused
, u_int namelen __unused
,
2847 user_addr_t oldp __unused
, size_t *oldlenp __unused
,
2848 user_addr_t newp __unused
, size_t newlen __unused
, proc_t p __unused
)
2855 // The following code disallows specific sysctl's that came through
2856 // the direct sysctl interface (vfs_sysctl_node) instead of the newer
2857 // sysctl_vfs_ctlbyfsid() interface. We can not allow these selectors
2858 // through vfs_sysctl_node() because it passes the user's oldp pointer
2859 // directly to the file system which (for these selectors) casts it
2860 // back to a struct sysctl_req and then proceed to use SYSCTL_IN()
2861 // which jumps through an arbitrary function pointer. When called
2862 // through the sysctl_vfs_ctlbyfsid() interface this does not happen
2863 // and so it's safe.
2865 // Unfortunately we have to pull in definitions from AFP and SMB and
2866 // perform explicit name checks on the file system to determine if
2867 // these selectors are being used.
2870 #define AFPFS_VFS_CTL_GETID 0x00020001
2871 #define AFPFS_VFS_CTL_NETCHANGE 0x00020002
2872 #define AFPFS_VFS_CTL_VOLCHANGE 0x00020003
2874 #define SMBFS_SYSCTL_REMOUNT 1
2875 #define SMBFS_SYSCTL_REMOUNT_INFO 2
2876 #define SMBFS_SYSCTL_GET_SERVER_SHARE 3
2880 is_bad_sysctl_name(struct vfstable
*vfsp
, int selector_name
)
2882 switch(selector_name
) {
2885 case VFS_CTL_NOLOCKS
:
2886 case VFS_CTL_NSTATUS
:
2889 case VFS_CTL_SERVERINFO
:
2897 // the more complicated check for some of SMB's special values
2898 if (strcmp(vfsp
->vfc_name
, "smbfs") == 0) {
2899 switch(selector_name
) {
2900 case SMBFS_SYSCTL_REMOUNT
:
2901 case SMBFS_SYSCTL_REMOUNT_INFO
:
2902 case SMBFS_SYSCTL_GET_SERVER_SHARE
:
2905 } else if (strcmp(vfsp
->vfc_name
, "afpfs") == 0) {
2906 switch(selector_name
) {
2907 case AFPFS_VFS_CTL_GETID
:
2908 case AFPFS_VFS_CTL_NETCHANGE
:
2909 case AFPFS_VFS_CTL_VOLCHANGE
:
2916 // If we get here we passed all the checks so the selector is ok
2922 int vfs_sysctl_node SYSCTL_HANDLER_ARGS
2925 struct vfstable
*vfsp
;
2929 fstypenum
= oidp
->oid_number
;
2933 /* all sysctl names at this level should have at least one name slot for the FS */
2935 return (EISDIR
); /* overloaded */
2938 for (vfsp
= vfsconf
; vfsp
; vfsp
= vfsp
->vfc_next
)
2939 if (vfsp
->vfc_typenum
== fstypenum
) {
2940 vfsp
->vfc_refcount
++;
2943 mount_list_unlock();
2949 if (is_bad_sysctl_name(vfsp
, name
[0])) {
2950 printf("vfs: bad selector 0x%.8x for old-style sysctl(). use the sysctl-by-fsid interface instead\n", name
[0]);
2954 error
= (vfsp
->vfc_vfsops
->vfs_sysctl
)(name
, namelen
, req
->oldptr
, &req
->oldlen
, req
->newptr
, req
->newlen
, vfs_context_current());
2957 vfsp
->vfc_refcount
--;
2958 mount_list_unlock();
2964 * Check to see if a filesystem is mounted on a block device.
2967 vfs_mountedon(struct vnode
*vp
)
2973 if (vp
->v_specflags
& SI_MOUNTEDON
) {
2977 if (vp
->v_specflags
& SI_ALIASED
) {
2978 for (vq
= *vp
->v_hashchain
; vq
; vq
= vq
->v_specnext
) {
2979 if (vq
->v_rdev
!= vp
->v_rdev
||
2980 vq
->v_type
!= vp
->v_type
)
2982 if (vq
->v_specflags
& SI_MOUNTEDON
) {
2993 struct unmount_info
{
2994 int u_errs
; // Total failed unmounts
2995 int u_busy
; // EBUSY failed unmounts
2999 unmount_callback(mount_t mp
, void *arg
)
3003 struct unmount_info
*uip
= arg
;
3006 mount_iterdrop(mp
); // avoid vfs_iterate deadlock in dounmount()
3008 MALLOC_ZONE(mntname
, void *, MAXPATHLEN
, M_NAMEI
, M_WAITOK
);
3010 strlcpy(mntname
, mp
->mnt_vfsstat
.f_mntonname
, MAXPATHLEN
);
3012 error
= dounmount(mp
, MNT_FORCE
, 1, vfs_context_current());
3015 printf("Unmount of %s failed (%d)\n", mntname
? mntname
:"?", error
);
3020 FREE_ZONE(mntname
, MAXPATHLEN
, M_NAMEI
);
3022 return (VFS_RETURNED
);
3026 * Unmount all filesystems. The list is traversed in reverse order
3027 * of mounting to avoid dependencies.
3028 * Busy mounts are retried.
3030 __private_extern__
void
3031 vfs_unmountall(void)
3033 int mounts
, sec
= 1;
3034 struct unmount_info ui
;
3037 ui
.u_errs
= ui
.u_busy
= 0;
3038 vfs_iterate(VFS_ITERATE_CB_DROPREF
| VFS_ITERATE_TAIL_FIRST
, unmount_callback
, &ui
);
3039 mounts
= mount_getvfscnt();
3043 if (ui
.u_busy
> 0) { // Busy mounts - wait & retry
3044 tsleep(&nummounts
, PVFS
, "busy mount", sec
* hz
);
3048 printf("Unmounting timed out\n");
3049 } else if (ui
.u_errs
< mounts
) {
3050 // If the vfs_iterate missed mounts in progress - wait a bit
3051 tsleep(&nummounts
, PVFS
, "missed mount", 2 * hz
);
3056 * This routine is called from vnode_pager_deallocate out of the VM
3057 * The path to vnode_pager_deallocate can only be initiated by ubc_destroy_named
3058 * on a vnode that has a UBCINFO
3060 __private_extern__
void
3061 vnode_pager_vrele(vnode_t vp
)
3063 struct ubc_info
*uip
;
3065 vnode_lock_spin(vp
);
3067 vp
->v_lflag
&= ~VNAMED_UBC
;
3068 if (vp
->v_usecount
!= 0) {
3070 * At the eleventh hour, just before the ubcinfo is
3071 * destroyed, ensure the ubc-specific v_usecount
3072 * reference has gone. We use v_usecount != 0 as a hint;
3073 * ubc_unmap() does nothing if there's no mapping.
3075 * This case is caused by coming here via forced unmount,
3076 * versus the usual vm_object_deallocate() path.
3077 * In the forced unmount case, ubc_destroy_named()
3078 * releases the pager before memory_object_last_unmap()
3083 vnode_lock_spin(vp
);
3086 uip
= vp
->v_ubcinfo
;
3087 vp
->v_ubcinfo
= UBC_INFO_NULL
;
3091 ubc_info_deallocate(uip
);
3095 #include <sys/disk.h>
3097 u_int32_t rootunit
= (u_int32_t
)-1;
3100 extern int lowpri_throttle_enabled
;
3101 extern int iosched_enabled
;
3105 vfs_init_io_attributes(vnode_t devvp
, mount_t mp
)
3108 off_t readblockcnt
= 0;
3109 off_t writeblockcnt
= 0;
3110 off_t readmaxcnt
= 0;
3111 off_t writemaxcnt
= 0;
3112 off_t readsegcnt
= 0;
3113 off_t writesegcnt
= 0;
3114 off_t readsegsize
= 0;
3115 off_t writesegsize
= 0;
3116 off_t alignment
= 0;
3117 u_int32_t ioqueue_depth
= 0;
3121 vfs_context_t ctx
= vfs_context_current();
3122 dk_corestorage_info_t cs_info
;
3123 boolean_t cs_present
= FALSE
;;
3128 VNOP_IOCTL(devvp
, DKIOCGETTHROTTLEMASK
, (caddr_t
)&mp
->mnt_throttle_mask
, 0, NULL
);
3130 * as a reasonable approximation, only use the lowest bit of the mask
3131 * to generate a disk unit number
3133 mp
->mnt_devbsdunit
= num_trailing_0(mp
->mnt_throttle_mask
);
3135 if (devvp
== rootvp
)
3136 rootunit
= mp
->mnt_devbsdunit
;
3138 if (mp
->mnt_devbsdunit
== rootunit
) {
3140 * this mount point exists on the same device as the root
3141 * partition, so it comes under the hard throttle control...
3142 * this is true even for the root mount point itself
3144 mp
->mnt_kern_flag
|= MNTK_ROOTDEV
;
3147 * force the spec device to re-cache
3148 * the underlying block size in case
3149 * the filesystem overrode the initial value
3151 set_fsblocksize(devvp
);
3154 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETBLOCKSIZE
,
3155 (caddr_t
)&blksize
, 0, ctx
)))
3158 mp
->mnt_devblocksize
= blksize
;
3161 * set the maximum possible I/O size
3162 * this may get clipped to a smaller value
3163 * based on which constraints are being advertised
3164 * and if those advertised constraints result in a smaller
3165 * limit for a given I/O
3167 mp
->mnt_maxreadcnt
= MAX_UPL_SIZE_BYTES
;
3168 mp
->mnt_maxwritecnt
= MAX_UPL_SIZE_BYTES
;
3170 if (VNOP_IOCTL(devvp
, DKIOCISVIRTUAL
, (caddr_t
)&isvirtual
, 0, ctx
) == 0) {
3172 mp
->mnt_kern_flag
|= MNTK_VIRTUALDEV
;
3174 if (VNOP_IOCTL(devvp
, DKIOCISSOLIDSTATE
, (caddr_t
)&isssd
, 0, ctx
) == 0) {
3176 mp
->mnt_kern_flag
|= MNTK_SSD
;
3178 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETFEATURES
,
3179 (caddr_t
)&features
, 0, ctx
)))
3182 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXBLOCKCOUNTREAD
,
3183 (caddr_t
)&readblockcnt
, 0, ctx
)))
3186 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXBLOCKCOUNTWRITE
,
3187 (caddr_t
)&writeblockcnt
, 0, ctx
)))
3190 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXBYTECOUNTREAD
,
3191 (caddr_t
)&readmaxcnt
, 0, ctx
)))
3194 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXBYTECOUNTWRITE
,
3195 (caddr_t
)&writemaxcnt
, 0, ctx
)))
3198 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXSEGMENTCOUNTREAD
,
3199 (caddr_t
)&readsegcnt
, 0, ctx
)))
3202 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXSEGMENTCOUNTWRITE
,
3203 (caddr_t
)&writesegcnt
, 0, ctx
)))
3206 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXSEGMENTBYTECOUNTREAD
,
3207 (caddr_t
)&readsegsize
, 0, ctx
)))
3210 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMAXSEGMENTBYTECOUNTWRITE
,
3211 (caddr_t
)&writesegsize
, 0, ctx
)))
3214 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETMINSEGMENTALIGNMENTBYTECOUNT
,
3215 (caddr_t
)&alignment
, 0, ctx
)))
3218 if ((error
= VNOP_IOCTL(devvp
, DKIOCGETCOMMANDPOOLSIZE
,
3219 (caddr_t
)&ioqueue_depth
, 0, ctx
)))
3223 mp
->mnt_maxreadcnt
= (readmaxcnt
> UINT32_MAX
) ? UINT32_MAX
: readmaxcnt
;
3226 temp
= readblockcnt
* blksize
;
3227 temp
= (temp
> UINT32_MAX
) ? UINT32_MAX
: temp
;
3229 if (temp
< mp
->mnt_maxreadcnt
)
3230 mp
->mnt_maxreadcnt
= (u_int32_t
)temp
;
3234 mp
->mnt_maxwritecnt
= (writemaxcnt
> UINT32_MAX
) ? UINT32_MAX
: writemaxcnt
;
3236 if (writeblockcnt
) {
3237 temp
= writeblockcnt
* blksize
;
3238 temp
= (temp
> UINT32_MAX
) ? UINT32_MAX
: temp
;
3240 if (temp
< mp
->mnt_maxwritecnt
)
3241 mp
->mnt_maxwritecnt
= (u_int32_t
)temp
;
3245 temp
= (readsegcnt
> UINT16_MAX
) ? UINT16_MAX
: readsegcnt
;
3247 temp
= mp
->mnt_maxreadcnt
/ PAGE_SIZE
;
3249 if (temp
> UINT16_MAX
)
3252 mp
->mnt_segreadcnt
= (u_int16_t
)temp
;
3255 temp
= (writesegcnt
> UINT16_MAX
) ? UINT16_MAX
: writesegcnt
;
3257 temp
= mp
->mnt_maxwritecnt
/ PAGE_SIZE
;
3259 if (temp
> UINT16_MAX
)
3262 mp
->mnt_segwritecnt
= (u_int16_t
)temp
;
3265 temp
= (readsegsize
> UINT32_MAX
) ? UINT32_MAX
: readsegsize
;
3267 temp
= mp
->mnt_maxreadcnt
;
3268 mp
->mnt_maxsegreadsize
= (u_int32_t
)temp
;
3271 temp
= (writesegsize
> UINT32_MAX
) ? UINT32_MAX
: writesegsize
;
3273 temp
= mp
->mnt_maxwritecnt
;
3274 mp
->mnt_maxsegwritesize
= (u_int32_t
)temp
;
3277 temp
= (alignment
> PAGE_SIZE
) ? PAGE_MASK
: alignment
- 1;
3280 mp
->mnt_alignmentmask
= temp
;
3283 if (ioqueue_depth
> MNT_DEFAULT_IOQUEUE_DEPTH
)
3284 temp
= ioqueue_depth
;
3286 temp
= MNT_DEFAULT_IOQUEUE_DEPTH
;
3288 mp
->mnt_ioqueue_depth
= temp
;
3289 mp
->mnt_ioscale
= (mp
->mnt_ioqueue_depth
+ (MNT_DEFAULT_IOQUEUE_DEPTH
- 1)) / MNT_DEFAULT_IOQUEUE_DEPTH
;
3291 if (mp
->mnt_ioscale
> 1)
3292 printf("ioqueue_depth = %d, ioscale = %d\n", (int)mp
->mnt_ioqueue_depth
, (int)mp
->mnt_ioscale
);
3294 if (features
& DK_FEATURE_FORCE_UNIT_ACCESS
)
3295 mp
->mnt_ioflags
|= MNT_IOFLAGS_FUA_SUPPORTED
;
3297 if (VNOP_IOCTL(devvp
, DKIOCCORESTORAGE
, (caddr_t
)&cs_info
, 0, ctx
) == 0)
3300 if (features
& DK_FEATURE_UNMAP
) {
3301 mp
->mnt_ioflags
|= MNT_IOFLAGS_UNMAP_SUPPORTED
;
3303 if (cs_present
== TRUE
)
3304 mp
->mnt_ioflags
|= MNT_IOFLAGS_CSUNMAP_SUPPORTED
;
3306 if (cs_present
== TRUE
) {
3308 * for now we'll use the following test as a proxy for
3309 * the underlying drive being FUSION in nature
3311 if ((cs_info
.flags
& DK_CORESTORAGE_PIN_YOUR_METADATA
))
3312 mp
->mnt_ioflags
|= MNT_IOFLAGS_FUSION_DRIVE
;
3316 if (iosched_enabled
&& (features
& DK_FEATURE_PRIORITY
)) {
3317 mp
->mnt_ioflags
|= MNT_IOFLAGS_IOSCHED_SUPPORTED
;
3318 throttle_info_disable_throttle(mp
->mnt_devbsdunit
, (mp
->mnt_ioflags
& MNT_IOFLAGS_FUSION_DRIVE
) != 0);
3320 #endif /* CONFIG_IOSCHED */
3324 static struct klist fs_klist
;
3325 lck_grp_t
*fs_klist_lck_grp
;
3326 lck_mtx_t
*fs_klist_lock
;
3329 vfs_event_init(void)
3332 klist_init(&fs_klist
);
3333 fs_klist_lck_grp
= lck_grp_alloc_init("fs_klist", NULL
);
3334 fs_klist_lock
= lck_mtx_alloc_init(fs_klist_lck_grp
, NULL
);
3338 vfs_event_signal(fsid_t
*fsid
, u_int32_t event
, intptr_t data
)
3340 if (event
== VQ_DEAD
|| event
== VQ_NOTRESP
) {
3341 struct mount
*mp
= vfs_getvfs(fsid
);
3343 mount_lock_spin(mp
);
3345 mp
->mnt_kern_flag
&= ~MNT_LNOTRESP
; // Now responding
3347 mp
->mnt_kern_flag
|= MNT_LNOTRESP
; // Not responding
3352 lck_mtx_lock(fs_klist_lock
);
3353 KNOTE(&fs_klist
, event
);
3354 lck_mtx_unlock(fs_klist_lock
);
3358 * return the number of mounted filesystems.
3361 sysctl_vfs_getvfscnt(void)
3363 return(mount_getvfscnt());
3368 mount_getvfscnt(void)
3374 mount_list_unlock();
3382 mount_fillfsids(fsid_t
*fsidlst
, int count
)
3389 TAILQ_FOREACH(mp
, &mountlist
, mnt_list
) {
3390 if (actual
<= count
) {
3391 fsidlst
[actual
] = mp
->mnt_vfsstat
.f_fsid
;
3395 mount_list_unlock();
3401 * fill in the array of fsid_t's up to a max of 'count', the actual
3402 * number filled in will be set in '*actual'. If there are more fsid_t's
3403 * than room in fsidlst then ENOMEM will be returned and '*actual' will
3404 * have the actual count.
3405 * having *actual filled out even in the error case is depended upon.
3408 sysctl_vfs_getvfslist(fsid_t
*fsidlst
, int count
, int *actual
)
3414 TAILQ_FOREACH(mp
, &mountlist
, mnt_list
) {
3416 if (*actual
<= count
)
3417 fsidlst
[(*actual
) - 1] = mp
->mnt_vfsstat
.f_fsid
;
3419 mount_list_unlock();
3420 return (*actual
<= count
? 0 : ENOMEM
);
3424 sysctl_vfs_vfslist(__unused
struct sysctl_oid
*oidp
, __unused
void *arg1
,
3425 __unused
int arg2
, struct sysctl_req
*req
)
3431 /* This is a readonly node. */
3432 if (req
->newptr
!= USER_ADDR_NULL
)
3435 /* they are querying us so just return the space required. */
3436 if (req
->oldptr
== USER_ADDR_NULL
) {
3437 req
->oldidx
= sysctl_vfs_getvfscnt() * sizeof(fsid_t
);
3442 * Retrieve an accurate count of the amount of space required to copy
3443 * out all the fsids in the system.
3445 space
= req
->oldlen
;
3446 req
->oldlen
= sysctl_vfs_getvfscnt() * sizeof(fsid_t
);
3448 /* they didn't give us enough space. */
3449 if (space
< req
->oldlen
)
3452 MALLOC(fsidlst
, fsid_t
*, req
->oldlen
, M_TEMP
, M_WAITOK
);
3453 if (fsidlst
== NULL
) {
3457 error
= sysctl_vfs_getvfslist(fsidlst
, req
->oldlen
/ sizeof(fsid_t
),
3460 * If we get back ENOMEM, then another mount has been added while we
3461 * slept in malloc above. If this is the case then try again.
3463 if (error
== ENOMEM
) {
3464 FREE(fsidlst
, M_TEMP
);
3465 req
->oldlen
= space
;
3469 error
= SYSCTL_OUT(req
, fsidlst
, actual
* sizeof(fsid_t
));
3471 FREE(fsidlst
, M_TEMP
);
3476 * Do a sysctl by fsid.
3479 sysctl_vfs_ctlbyfsid(__unused
struct sysctl_oid
*oidp
, void *arg1
, int arg2
,
3480 struct sysctl_req
*req
)
3482 union union_vfsidctl vc
;
3484 struct vfsstatfs
*sp
;
3485 int *name
, flags
, namelen
;
3486 int error
=0, gotref
=0;
3487 vfs_context_t ctx
= vfs_context_current();
3488 proc_t p
= req
->p
; /* XXX req->p != current_proc()? */
3489 boolean_t is_64_bit
;
3493 is_64_bit
= proc_is64bit(p
);
3495 error
= SYSCTL_IN(req
, &vc
, is_64_bit
? sizeof(vc
.vc64
):sizeof(vc
.vc32
));
3498 if (vc
.vc32
.vc_vers
!= VFS_CTL_VERS1
) { /* works for 32 and 64 */
3502 mp
= mount_list_lookupby_fsid(&vc
.vc32
.vc_fsid
, 0, 1); /* works for 32 and 64 */
3508 /* reset so that the fs specific code can fetch it. */
3511 * Note if this is a VFS_CTL then we pass the actual sysctl req
3512 * in for "oldp" so that the lower layer can DTRT and use the
3513 * SYSCTL_IN/OUT routines.
3515 if (mp
->mnt_op
->vfs_sysctl
!= NULL
) {
3517 if (vfs_64bitready(mp
)) {
3518 error
= mp
->mnt_op
->vfs_sysctl(name
, namelen
,
3519 CAST_USER_ADDR_T(req
),
3520 NULL
, USER_ADDR_NULL
, 0,
3528 error
= mp
->mnt_op
->vfs_sysctl(name
, namelen
,
3529 CAST_USER_ADDR_T(req
),
3530 NULL
, USER_ADDR_NULL
, 0,
3533 if (error
!= ENOTSUP
) {
3538 case VFS_CTL_UMOUNT
:
3541 req
->newptr
= vc
.vc64
.vc_ptr
;
3542 req
->newlen
= (size_t)vc
.vc64
.vc_len
;
3545 req
->newptr
= CAST_USER_ADDR_T(vc
.vc32
.vc_ptr
);
3546 req
->newlen
= vc
.vc32
.vc_len
;
3548 error
= SYSCTL_IN(req
, &flags
, sizeof(flags
));
3555 /* safedounmount consumes a ref */
3556 error
= safedounmount(mp
, flags
, ctx
);
3558 case VFS_CTL_STATFS
:
3561 req
->newptr
= vc
.vc64
.vc_ptr
;
3562 req
->newlen
= (size_t)vc
.vc64
.vc_len
;
3565 req
->newptr
= CAST_USER_ADDR_T(vc
.vc32
.vc_ptr
);
3566 req
->newlen
= vc
.vc32
.vc_len
;
3568 error
= SYSCTL_IN(req
, &flags
, sizeof(flags
));
3571 sp
= &mp
->mnt_vfsstat
;
3572 if (((flags
& MNT_NOWAIT
) == 0 || (flags
& (MNT_WAIT
| MNT_DWAIT
))) &&
3573 (error
= vfs_update_vfsstat(mp
, ctx
, VFS_USER_EVENT
)))
3576 struct user64_statfs sfs
;
3577 bzero(&sfs
, sizeof(sfs
));
3578 sfs
.f_flags
= mp
->mnt_flag
& MNT_VISFLAGMASK
;
3579 sfs
.f_type
= mp
->mnt_vtable
->vfc_typenum
;
3580 sfs
.f_bsize
= (user64_long_t
)sp
->f_bsize
;
3581 sfs
.f_iosize
= (user64_long_t
)sp
->f_iosize
;
3582 sfs
.f_blocks
= (user64_long_t
)sp
->f_blocks
;
3583 sfs
.f_bfree
= (user64_long_t
)sp
->f_bfree
;
3584 sfs
.f_bavail
= (user64_long_t
)sp
->f_bavail
;
3585 sfs
.f_files
= (user64_long_t
)sp
->f_files
;
3586 sfs
.f_ffree
= (user64_long_t
)sp
->f_ffree
;
3587 sfs
.f_fsid
= sp
->f_fsid
;
3588 sfs
.f_owner
= sp
->f_owner
;
3590 if (mp
->mnt_kern_flag
& MNTK_TYPENAME_OVERRIDE
) {
3591 strlcpy(&sfs
.f_fstypename
[0], &mp
->fstypename_override
[0], MFSTYPENAMELEN
);
3593 strlcpy(sfs
.f_fstypename
, sp
->f_fstypename
, MFSNAMELEN
);
3595 strlcpy(sfs
.f_mntonname
, sp
->f_mntonname
, MNAMELEN
);
3596 strlcpy(sfs
.f_mntfromname
, sp
->f_mntfromname
, MNAMELEN
);
3598 error
= SYSCTL_OUT(req
, &sfs
, sizeof(sfs
));
3601 struct user32_statfs sfs
;
3602 bzero(&sfs
, sizeof(sfs
));
3603 sfs
.f_flags
= mp
->mnt_flag
& MNT_VISFLAGMASK
;
3604 sfs
.f_type
= mp
->mnt_vtable
->vfc_typenum
;
3607 * It's possible for there to be more than 2^^31 blocks in the filesystem, so we
3608 * have to fudge the numbers here in that case. We inflate the blocksize in order
3609 * to reflect the filesystem size as best we can.
3611 if (sp
->f_blocks
> INT_MAX
) {
3615 * Work out how far we have to shift the block count down to make it fit.
3616 * Note that it's possible to have to shift so far that the resulting
3617 * blocksize would be unreportably large. At that point, we will clip
3618 * any values that don't fit.
3620 * For safety's sake, we also ensure that f_iosize is never reported as
3621 * being smaller than f_bsize.
3623 for (shift
= 0; shift
< 32; shift
++) {
3624 if ((sp
->f_blocks
>> shift
) <= INT_MAX
)
3626 if ((((long long)sp
->f_bsize
) << (shift
+ 1)) > INT_MAX
)
3629 #define __SHIFT_OR_CLIP(x, s) ((((x) >> (s)) > INT_MAX) ? INT_MAX : ((x) >> (s)))
3630 sfs
.f_blocks
= (user32_long_t
)__SHIFT_OR_CLIP(sp
->f_blocks
, shift
);
3631 sfs
.f_bfree
= (user32_long_t
)__SHIFT_OR_CLIP(sp
->f_bfree
, shift
);
3632 sfs
.f_bavail
= (user32_long_t
)__SHIFT_OR_CLIP(sp
->f_bavail
, shift
);
3633 #undef __SHIFT_OR_CLIP
3634 sfs
.f_bsize
= (user32_long_t
)(sp
->f_bsize
<< shift
);
3635 sfs
.f_iosize
= lmax(sp
->f_iosize
, sp
->f_bsize
);
3637 sfs
.f_bsize
= (user32_long_t
)sp
->f_bsize
;
3638 sfs
.f_iosize
= (user32_long_t
)sp
->f_iosize
;
3639 sfs
.f_blocks
= (user32_long_t
)sp
->f_blocks
;
3640 sfs
.f_bfree
= (user32_long_t
)sp
->f_bfree
;
3641 sfs
.f_bavail
= (user32_long_t
)sp
->f_bavail
;
3643 sfs
.f_files
= (user32_long_t
)sp
->f_files
;
3644 sfs
.f_ffree
= (user32_long_t
)sp
->f_ffree
;
3645 sfs
.f_fsid
= sp
->f_fsid
;
3646 sfs
.f_owner
= sp
->f_owner
;
3648 if (mp
->mnt_kern_flag
& MNTK_TYPENAME_OVERRIDE
) {
3649 strlcpy(&sfs
.f_fstypename
[0], &mp
->fstypename_override
[0], MFSTYPENAMELEN
);
3651 strlcpy(sfs
.f_fstypename
, sp
->f_fstypename
, MFSNAMELEN
);
3653 strlcpy(sfs
.f_mntonname
, sp
->f_mntonname
, MNAMELEN
);
3654 strlcpy(sfs
.f_mntfromname
, sp
->f_mntfromname
, MNAMELEN
);
3656 error
= SYSCTL_OUT(req
, &sfs
, sizeof(sfs
));
3669 static int filt_fsattach(struct knote
*kn
);
3670 static void filt_fsdetach(struct knote
*kn
);
3671 static int filt_fsevent(struct knote
*kn
, long hint
);
3672 struct filterops fs_filtops
= {
3673 .f_attach
= filt_fsattach
,
3674 .f_detach
= filt_fsdetach
,
3675 .f_event
= filt_fsevent
,
3679 filt_fsattach(struct knote
*kn
)
3682 lck_mtx_lock(fs_klist_lock
);
3683 kn
->kn_flags
|= EV_CLEAR
;
3684 KNOTE_ATTACH(&fs_klist
, kn
);
3685 lck_mtx_unlock(fs_klist_lock
);
3690 filt_fsdetach(struct knote
*kn
)
3692 lck_mtx_lock(fs_klist_lock
);
3693 KNOTE_DETACH(&fs_klist
, kn
);
3694 lck_mtx_unlock(fs_klist_lock
);
3698 filt_fsevent(struct knote
*kn
, long hint
)
3701 * Backwards compatibility:
3702 * Other filters would do nothing if kn->kn_sfflags == 0
3705 if ((kn
->kn_sfflags
== 0) || (kn
->kn_sfflags
& hint
)) {
3706 kn
->kn_fflags
|= hint
;
3709 return (kn
->kn_fflags
!= 0);
3713 sysctl_vfs_noremotehang(__unused
struct sysctl_oid
*oidp
,
3714 __unused
void *arg1
, __unused
int arg2
, struct sysctl_req
*req
)
3720 /* We need a pid. */
3721 if (req
->newptr
== USER_ADDR_NULL
)
3724 error
= SYSCTL_IN(req
, &pid
, sizeof(pid
));
3728 p
= proc_find(pid
< 0 ? -pid
: pid
);
3733 * Fetching the value is ok, but we only fetch if the old
3736 if (req
->oldptr
!= USER_ADDR_NULL
) {
3737 out
= !((p
->p_flag
& P_NOREMOTEHANG
) == 0);
3739 error
= SYSCTL_OUT(req
, &out
, sizeof(out
));
3743 /* cansignal offers us enough security. */
3744 if (p
!= req
->p
&& proc_suser(req
->p
) != 0) {
3750 OSBitAndAtomic(~((uint32_t)P_NOREMOTEHANG
), &p
->p_flag
);
3752 OSBitOrAtomic(P_NOREMOTEHANG
, &p
->p_flag
);
3759 sysctl_vfs_generic_conf SYSCTL_HANDLER_ARGS
3762 struct vfstable
*vfsp
;
3763 struct vfsconf vfsc
;
3771 } else if (namelen
> 1) {
3776 for (vfsp
= vfsconf
; vfsp
; vfsp
= vfsp
->vfc_next
)
3777 if (vfsp
->vfc_typenum
== name
[0])
3781 mount_list_unlock();
3785 vfsc
.vfc_reserved1
= 0;
3786 bcopy(vfsp
->vfc_name
, vfsc
.vfc_name
, sizeof(vfsc
.vfc_name
));
3787 vfsc
.vfc_typenum
= vfsp
->vfc_typenum
;
3788 vfsc
.vfc_refcount
= vfsp
->vfc_refcount
;
3789 vfsc
.vfc_flags
= vfsp
->vfc_flags
;
3790 vfsc
.vfc_reserved2
= 0;
3791 vfsc
.vfc_reserved3
= 0;
3793 mount_list_unlock();
3794 return (SYSCTL_OUT(req
, &vfsc
, sizeof(struct vfsconf
)));
3797 /* the vfs.generic. branch. */
3798 SYSCTL_NODE(_vfs
, VFS_GENERIC
, generic
, CTLFLAG_RW
| CTLFLAG_LOCKED
, NULL
, "vfs generic hinge");
3799 /* retreive a list of mounted filesystem fsid_t */
3800 SYSCTL_PROC(_vfs_generic
, OID_AUTO
, vfsidlist
,
3801 CTLTYPE_STRUCT
| CTLFLAG_RD
| CTLFLAG_LOCKED
,
3802 NULL
, 0, sysctl_vfs_vfslist
, "S,fsid", "List of mounted filesystem ids");
3803 /* perform operations on filesystem via fsid_t */
3804 SYSCTL_NODE(_vfs_generic
, OID_AUTO
, ctlbyfsid
, CTLFLAG_RW
| CTLFLAG_LOCKED
,
3805 sysctl_vfs_ctlbyfsid
, "ctlbyfsid");
3806 SYSCTL_PROC(_vfs_generic
, OID_AUTO
, noremotehang
, CTLFLAG_RW
| CTLFLAG_ANYBODY
,
3807 NULL
, 0, sysctl_vfs_noremotehang
, "I", "noremotehang");
3808 SYSCTL_INT(_vfs_generic
, VFS_MAXTYPENUM
, maxtypenum
,
3809 CTLFLAG_RD
| CTLFLAG_KERN
| CTLFLAG_LOCKED
,
3810 &maxvfstypenum
, 0, "");
3811 SYSCTL_INT(_vfs_generic
, OID_AUTO
, sync_timeout
, CTLFLAG_RW
| CTLFLAG_LOCKED
, &sync_timeout
, 0, "");
3812 SYSCTL_NODE(_vfs_generic
, VFS_CONF
, conf
,
3813 CTLFLAG_RD
| CTLFLAG_LOCKED
,
3814 sysctl_vfs_generic_conf
, "");
3817 * Print vnode state.
3820 vn_print_state(struct vnode
*vp
, const char *fmt
, ...)
3823 char perm_str
[] = "(VM_KERNEL_ADDRPERM pointer)";
3824 char fs_name
[MFSNAMELEN
];
3829 printf("vp 0x%0llx %s: ", (uint64_t)VM_KERNEL_ADDRPERM(vp
), perm_str
);
3830 printf("tag %d, type %d\n", vp
->v_tag
, vp
->v_type
);
3832 printf(" iocount %d, usecount %d, kusecount %d references %d\n",
3833 vp
->v_iocount
, vp
->v_usecount
, vp
->v_kusecount
, vp
->v_references
);
3834 printf(" writecount %d, numoutput %d\n", vp
->v_writecount
,
3837 printf(" flag 0x%x, lflag 0x%x, listflag 0x%x\n", vp
->v_flag
,
3838 vp
->v_lflag
, vp
->v_listflag
);
3840 if (vp
->v_mount
== NULL
|| vp
->v_mount
== dead_mountp
) {
3841 strlcpy(fs_name
, "deadfs", MFSNAMELEN
);
3843 vfs_name(vp
->v_mount
, fs_name
);
3846 printf(" v_data 0x%0llx %s\n",
3847 (vp
->v_data
? (uint64_t)VM_KERNEL_ADDRPERM(vp
->v_data
) : 0),
3849 printf(" v_mount 0x%0llx %s vfs_name %s\n",
3850 (vp
->v_mount
? (uint64_t)VM_KERNEL_ADDRPERM(vp
->v_mount
) : 0),
3854 long num_reusedvnodes
= 0;
3858 process_vp(vnode_t vp
, int want_vp
, int *deferred
)
3866 vnode_list_remove_locked(vp
);
3868 vnode_list_unlock();
3870 vnode_lock_spin(vp
);
3873 * We could wait for the vnode_lock after removing the vp from the freelist
3874 * and the vid is bumped only at the very end of reclaim. So it is possible
3875 * that we are looking at a vnode that is being terminated. If so skip it.
3877 if ((vpid
!= vp
->v_id
) || (vp
->v_usecount
!= 0) || (vp
->v_iocount
!= 0) ||
3878 VONLIST(vp
) || (vp
->v_lflag
& VL_TERMINATE
)) {
3880 * we lost the race between dropping the list lock
3881 * and picking up the vnode_lock... someone else
3882 * used this vnode and it is now in a new state
3888 if ( (vp
->v_lflag
& (VL_NEEDINACTIVE
| VL_MARKTERM
)) == VL_NEEDINACTIVE
) {
3890 * we did a vnode_rele_ext that asked for
3891 * us not to reenter the filesystem during
3892 * the release even though VL_NEEDINACTIVE was
3893 * set... we'll do it here by doing a
3894 * vnode_get/vnode_put
3896 * pick up an iocount so that we can call
3897 * vnode_put and drive the VNOP_INACTIVE...
3898 * vnode_put will either leave us off
3899 * the freelist if a new ref comes in,
3900 * or put us back on the end of the freelist
3901 * or recycle us if we were marked for termination...
3902 * so we'll just go grab a new candidate
3908 vnode_put_locked(vp
);
3914 * Checks for anyone racing us for recycle
3916 if (vp
->v_type
!= VBAD
) {
3917 if (want_vp
&& (vnode_on_reliable_media(vp
) == FALSE
|| (vp
->v_flag
& VISDIRTY
))) {
3918 vnode_async_list_add(vp
);
3925 if (vp
->v_lflag
& VL_DEAD
)
3926 panic("new_vnode(%p): the vnode is VL_DEAD but not VBAD", vp
);
3928 vnode_lock_convert(vp
);
3929 (void)vnode_reclaim_internal(vp
, 1, want_vp
, 0);
3933 panic("new_vnode(%p): vp on list", vp
);
3934 if (vp
->v_usecount
|| vp
->v_iocount
|| vp
->v_kusecount
||
3935 (vp
->v_lflag
& (VNAMED_UBC
| VNAMED_MOUNT
| VNAMED_FSHASH
)))
3936 panic("new_vnode(%p): free vnode still referenced", vp
);
3937 if ((vp
->v_mntvnodes
.tqe_prev
!= 0) && (vp
->v_mntvnodes
.tqe_next
!= 0))
3938 panic("new_vnode(%p): vnode seems to be on mount list", vp
);
3939 if ( !LIST_EMPTY(&vp
->v_nclinks
) || !LIST_EMPTY(&vp
->v_ncchildren
))
3940 panic("new_vnode(%p): vnode still hooked into the name cache", vp
);
3952 async_work_continue(void)
3954 struct async_work_lst
*q
;
3958 q
= &vnode_async_work_list
;
3964 if ( TAILQ_EMPTY(q
) ) {
3965 assert_wait(q
, (THREAD_UNINT
));
3967 vnode_list_unlock();
3969 thread_block((thread_continue_t
)async_work_continue
);
3973 async_work_handled
++;
3975 vp
= TAILQ_FIRST(q
);
3977 vp
= process_vp(vp
, 0, &deferred
);
3980 panic("found VBAD vp (%p) on async queue", vp
);
3986 new_vnode(vnode_t
*vpp
)
3989 uint32_t retries
= 0, max_retries
= 100; /* retry incase of tablefull */
3990 int force_alloc
= 0, walk_count
= 0;
3991 boolean_t need_reliable_vp
= FALSE
;
3993 struct timeval initial_tv
;
3994 struct timeval current_tv
;
3995 proc_t curproc
= current_proc();
3997 initial_tv
.tv_sec
= 0;
4003 if (need_reliable_vp
== TRUE
)
4004 async_work_timed_out
++;
4006 if ((numvnodes
- deadvnodes
) < desiredvnodes
|| force_alloc
) {
4009 if ( !TAILQ_EMPTY(&vnode_dead_list
)) {
4011 * Can always reuse a dead one
4013 vp
= TAILQ_FIRST(&vnode_dead_list
);
4017 * no dead vnodes available... if we're under
4018 * the limit, we'll create a new vnode
4021 vnode_list_unlock();
4023 MALLOC_ZONE(vp
, struct vnode
*, sizeof(*vp
), M_VNODE
, M_WAITOK
);
4024 bzero((char *)vp
, sizeof(*vp
));
4025 VLISTNONE(vp
); /* avoid double queue removal */
4026 lck_mtx_init(&vp
->v_lock
, vnode_lck_grp
, vnode_lck_attr
);
4028 klist_init(&vp
->v_knotes
);
4030 vp
->v_id
= ts
.tv_nsec
;
4031 vp
->v_flag
= VSTANDARD
;
4034 if (mac_vnode_label_init_needed(vp
))
4035 mac_vnode_label_init(vp
);
4041 microuptime(¤t_tv
);
4043 #define MAX_WALK_COUNT 1000
4045 if ( !TAILQ_EMPTY(&vnode_rage_list
) &&
4046 (ragevnodes
>= rage_limit
||
4047 (current_tv
.tv_sec
- rage_tv
.tv_sec
) >= RAGE_TIME_LIMIT
)) {
4049 TAILQ_FOREACH(vp
, &vnode_rage_list
, v_freelist
) {
4050 if ( !(vp
->v_listflag
& VLIST_RAGE
))
4051 panic("new_vnode: vp (%p) on RAGE list not marked VLIST_RAGE", vp
);
4053 // if we're a dependency-capable process, skip vnodes that can
4054 // cause recycling deadlocks. (i.e. this process is diskimages
4055 // helper and the vnode is in a disk image). Querying the
4056 // mnt_kern_flag for the mount's virtual device status
4057 // is safer than checking the mnt_dependent_process, which
4058 // may not be updated if there are multiple devnode layers
4059 // in between the disk image and the final consumer.
4061 if ((curproc
->p_flag
& P_DEPENDENCY_CAPABLE
) == 0 || vp
->v_mount
== NULL
||
4062 (vp
->v_mount
->mnt_kern_flag
& MNTK_VIRTUALDEV
) == 0) {
4064 * if need_reliable_vp == TRUE, then we've already sent one or more
4065 * non-reliable vnodes to the async thread for processing and timed
4066 * out waiting for a dead vnode to show up. Use the MAX_WALK_COUNT
4067 * mechanism to first scan for a reliable vnode before forcing
4068 * a new vnode to be created
4070 if (need_reliable_vp
== FALSE
|| vnode_on_reliable_media(vp
) == TRUE
)
4074 // don't iterate more than MAX_WALK_COUNT vnodes to
4075 // avoid keeping the vnode list lock held for too long.
4077 if (walk_count
++ > MAX_WALK_COUNT
) {
4084 if (vp
== NULL
&& !TAILQ_EMPTY(&vnode_free_list
)) {
4086 * Pick the first vp for possible reuse
4089 TAILQ_FOREACH(vp
, &vnode_free_list
, v_freelist
) {
4091 // if we're a dependency-capable process, skip vnodes that can
4092 // cause recycling deadlocks. (i.e. this process is diskimages
4093 // helper and the vnode is in a disk image). Querying the
4094 // mnt_kern_flag for the mount's virtual device status
4095 // is safer than checking the mnt_dependent_process, which
4096 // may not be updated if there are multiple devnode layers
4097 // in between the disk image and the final consumer.
4099 if ((curproc
->p_flag
& P_DEPENDENCY_CAPABLE
) == 0 || vp
->v_mount
== NULL
||
4100 (vp
->v_mount
->mnt_kern_flag
& MNTK_VIRTUALDEV
) == 0) {
4102 * if need_reliable_vp == TRUE, then we've already sent one or more
4103 * non-reliable vnodes to the async thread for processing and timed
4104 * out waiting for a dead vnode to show up. Use the MAX_WALK_COUNT
4105 * mechanism to first scan for a reliable vnode before forcing
4106 * a new vnode to be created
4108 if (need_reliable_vp
== FALSE
|| vnode_on_reliable_media(vp
) == TRUE
)
4112 // don't iterate more than MAX_WALK_COUNT vnodes to
4113 // avoid keeping the vnode list lock held for too long.
4115 if (walk_count
++ > MAX_WALK_COUNT
) {
4123 // if we don't have a vnode and the walk_count is >= MAX_WALK_COUNT
4124 // then we're trying to create a vnode on behalf of a
4125 // process like diskimages-helper that has file systems
4126 // mounted on top of itself (and thus we can't reclaim
4127 // vnodes in the file systems on top of us). if we can't
4128 // find a vnode to reclaim then we'll just have to force
4131 if (vp
== NULL
&& walk_count
>= MAX_WALK_COUNT
) {
4133 vnode_list_unlock();
4139 * we've reached the system imposed maximum number of vnodes
4140 * but there isn't a single one available
4141 * wait a bit and then retry... if we can't get a vnode
4142 * after our target number of retries, than log a complaint
4144 if (++retries
<= max_retries
) {
4145 vnode_list_unlock();
4146 delay_for_interval(1, 1000 * 1000);
4150 vnode_list_unlock();
4152 log(LOG_EMERG
, "%d desired, %d numvnodes, "
4153 "%d free, %d dead, %d async, %d rage\n",
4154 desiredvnodes
, numvnodes
, freevnodes
, deadvnodes
, async_work_vnodes
, ragevnodes
);
4157 #if DEVELOPMENT || DEBUG
4158 if (bootarg_no_vnode_jetsam
)
4159 panic("vnode table is full\n");
4160 #endif /* DEVELOPMENT || DEBUG */
4163 * Running out of vnodes tends to make a system unusable. Start killing
4164 * processes that jetsam knows are killable.
4166 if (memorystatus_kill_on_vnode_limit() == FALSE
) {
4168 * If jetsam can't find any more processes to kill and there
4169 * still aren't any free vnodes, panic. Hopefully we'll get a
4170 * panic log to tell us why we ran out.
4172 panic("vnode table is full\n");
4176 * Now that we've killed someone, wait a bit and continue looking
4177 * (with fewer retries before trying another kill).
4179 delay_for_interval(3, 1000 * 1000);
4189 if ((vp
= process_vp(vp
, 1, &deferred
)) == NULLVP
) {
4192 struct timeval elapsed_tv
;
4194 if (initial_tv
.tv_sec
== 0)
4195 microuptime(&initial_tv
);
4199 dead_vnode_waited
++;
4200 dead_vnode_wanted
++;
4203 * note that we're only going to explicitly wait 10ms
4204 * for a dead vnode to become available, since even if one
4205 * isn't available, a reliable vnode might now be available
4206 * at the head of the VRAGE or free lists... if so, we
4207 * can satisfy the new_vnode request with less latency then waiting
4208 * for the full 100ms duration we're ultimately willing to tolerate
4210 assert_wait_timeout((caddr_t
)&dead_vnode_wanted
, (THREAD_INTERRUPTIBLE
), 10000, NSEC_PER_USEC
);
4212 vnode_list_unlock();
4214 thread_block(THREAD_CONTINUE_NULL
);
4216 microuptime(&elapsed_tv
);
4218 timevalsub(&elapsed_tv
, &initial_tv
);
4219 elapsed_msecs
= elapsed_tv
.tv_sec
* 1000 + elapsed_tv
.tv_usec
/ 1000;
4221 if (elapsed_msecs
>= 100) {
4223 * we've waited long enough... 100ms is
4224 * somewhat arbitrary for this case, but the
4225 * normal worst case latency used for UI
4226 * interaction is 100ms, so I've chosen to
4229 * setting need_reliable_vp to TRUE
4230 * forces us to find a reliable vnode
4231 * that we can process synchronously, or
4232 * to create a new one if the scan for
4233 * a reliable one hits the scan limit
4235 need_reliable_vp
= TRUE
;
4240 OSAddAtomicLong(1, &num_reusedvnodes
);
4245 * We should never see VL_LABELWAIT or VL_LABEL here.
4246 * as those operations hold a reference.
4248 assert ((vp
->v_lflag
& VL_LABELWAIT
) != VL_LABELWAIT
);
4249 assert ((vp
->v_lflag
& VL_LABEL
) != VL_LABEL
);
4250 if (vp
->v_lflag
& VL_LABELED
) {
4251 vnode_lock_convert(vp
);
4252 mac_vnode_label_recycle(vp
);
4253 } else if (mac_vnode_label_init_needed(vp
)) {
4254 vnode_lock_convert(vp
);
4255 mac_vnode_label_init(vp
);
4262 vp
->v_writecount
= 0;
4263 vp
->v_references
= 0;
4264 vp
->v_iterblkflags
= 0;
4265 vp
->v_flag
= VSTANDARD
;
4266 /* vbad vnodes can point to dead_mountp */
4268 vp
->v_defer_reclaimlist
= (vnode_t
)0;
4279 vnode_lock(vnode_t vp
)
4281 lck_mtx_lock(&vp
->v_lock
);
4285 vnode_lock_spin(vnode_t vp
)
4287 lck_mtx_lock_spin(&vp
->v_lock
);
4291 vnode_unlock(vnode_t vp
)
4293 lck_mtx_unlock(&vp
->v_lock
);
4299 vnode_get(struct vnode
*vp
)
4303 vnode_lock_spin(vp
);
4304 retval
= vnode_get_locked(vp
);
4311 vnode_get_locked(struct vnode
*vp
)
4314 lck_mtx_assert(&vp
->v_lock
, LCK_MTX_ASSERT_OWNED
);
4316 if ((vp
->v_iocount
== 0) && (vp
->v_lflag
& (VL_TERMINATE
| VL_DEAD
))) {
4327 * vnode_getwithvid() cuts in line in front of a vnode drain (that is,
4328 * while the vnode is draining, but at no point after that) to prevent
4329 * deadlocks when getting vnodes from filesystem hashes while holding
4330 * resources that may prevent other iocounts from being released.
4333 vnode_getwithvid(vnode_t vp
, uint32_t vid
)
4335 return(vget_internal(vp
, vid
, ( VNODE_NODEAD
| VNODE_WITHID
| VNODE_DRAINO
)));
4339 * vnode_getwithvid_drainok() is like vnode_getwithvid(), but *does* block behind a vnode
4340 * drain; it exists for use in the VFS name cache, where we really do want to block behind
4341 * vnode drain to prevent holding off an unmount.
4344 vnode_getwithvid_drainok(vnode_t vp
, uint32_t vid
)
4346 return(vget_internal(vp
, vid
, ( VNODE_NODEAD
| VNODE_WITHID
)));
4350 vnode_getwithref(vnode_t vp
)
4352 return(vget_internal(vp
, 0, 0));
4356 __private_extern__
int
4357 vnode_getalways(vnode_t vp
)
4359 return(vget_internal(vp
, 0, VNODE_ALWAYS
));
4363 vnode_put(vnode_t vp
)
4367 vnode_lock_spin(vp
);
4368 retval
= vnode_put_locked(vp
);
4375 vn_set_dead(vnode_t vp
)
4378 vp
->v_op
= dead_vnodeop_p
;
4382 vp
->v_lflag
|= VL_DEAD
;
4386 vnode_put_locked(vnode_t vp
)
4388 vfs_context_t ctx
= vfs_context_current(); /* hoist outside loop */
4391 lck_mtx_assert(&vp
->v_lock
, LCK_MTX_ASSERT_OWNED
);
4394 if (vp
->v_iocount
< 1)
4395 panic("vnode_put(%p): iocount < 1", vp
);
4397 if ((vp
->v_usecount
> 0) || (vp
->v_iocount
> 1)) {
4398 vnode_dropiocount(vp
);
4401 if ((vp
->v_lflag
& (VL_DEAD
| VL_NEEDINACTIVE
)) == VL_NEEDINACTIVE
) {
4403 vp
->v_lflag
&= ~VL_NEEDINACTIVE
;
4406 VNOP_INACTIVE(vp
, ctx
);
4408 vnode_lock_spin(vp
);
4410 * because we had to drop the vnode lock before calling
4411 * VNOP_INACTIVE, the state of this vnode may have changed...
4412 * we may pick up both VL_MARTERM and either
4413 * an iocount or a usecount while in the VNOP_INACTIVE call
4414 * we don't want to call vnode_reclaim_internal on a vnode
4415 * that has active references on it... so loop back around
4416 * and reevaluate the state
4420 vp
->v_lflag
&= ~VL_NEEDINACTIVE
;
4422 if ((vp
->v_lflag
& (VL_MARKTERM
| VL_TERMINATE
| VL_DEAD
)) == VL_MARKTERM
) {
4423 vnode_lock_convert(vp
);
4424 vnode_reclaim_internal(vp
, 1, 1, 0);
4426 vnode_dropiocount(vp
);
4432 /* is vnode_t in use by others? */
4434 vnode_isinuse(vnode_t vp
, int refcnt
)
4436 return(vnode_isinuse_locked(vp
, refcnt
, 0));
4441 vnode_isinuse_locked(vnode_t vp
, int refcnt
, int locked
)
4446 vnode_lock_spin(vp
);
4447 if ((vp
->v_type
!= VREG
) && ((vp
->v_usecount
- vp
->v_kusecount
) > refcnt
)) {
4451 if (vp
->v_type
== VREG
) {
4452 retval
= ubc_isinuse_locked(vp
, refcnt
, 1);
4462 /* resume vnode_t */
4464 vnode_resume(vnode_t vp
)
4466 if ((vp
->v_lflag
& VL_SUSPENDED
) && vp
->v_owner
== current_thread()) {
4468 vnode_lock_spin(vp
);
4469 vp
->v_lflag
&= ~VL_SUSPENDED
;
4473 wakeup(&vp
->v_iocount
);
4479 * Please do not use on more than one vnode at a time as it may
4481 * xxx should we explicity prevent this from happening?
4485 vnode_suspend(vnode_t vp
)
4487 if (vp
->v_lflag
& VL_SUSPENDED
) {
4491 vnode_lock_spin(vp
);
4494 * xxx is this sufficient to check if a vnode_drain is
4498 if (vp
->v_owner
== NULL
) {
4499 vp
->v_lflag
|= VL_SUSPENDED
;
4500 vp
->v_owner
= current_thread();
4508 * Release any blocked locking requests on the vnode.
4509 * Used for forced-unmounts.
4511 * XXX What about network filesystems?
4514 vnode_abort_advlocks(vnode_t vp
)
4516 if (vp
->v_flag
& VLOCKLOCAL
)
4517 lf_abort_advlocks(vp
);
4522 vnode_drain(vnode_t vp
)
4525 if (vp
->v_lflag
& VL_DRAIN
) {
4526 panic("vnode_drain: recursive drain");
4529 vp
->v_lflag
|= VL_DRAIN
;
4530 vp
->v_owner
= current_thread();
4532 while (vp
->v_iocount
> 1)
4533 msleep(&vp
->v_iocount
, &vp
->v_lock
, PVFS
, "vnode_drain", NULL
);
4535 vp
->v_lflag
&= ~VL_DRAIN
;
4542 * if the number of recent references via vnode_getwithvid or vnode_getwithref
4543 * exceeds this threshold, than 'UN-AGE' the vnode by removing it from
4544 * the LRU list if it's currently on it... once the iocount and usecount both drop
4545 * to 0, it will get put back on the end of the list, effectively making it younger
4546 * this allows us to keep actively referenced vnodes in the list without having
4547 * to constantly remove and add to the list each time a vnode w/o a usecount is
4548 * referenced which costs us taking and dropping a global lock twice.
4549 * However, if the vnode is marked DIRTY, we want to pull it out much earlier
4551 #define UNAGE_THRESHHOLD 25
4552 #define UNAGE_DIRTYTHRESHHOLD 6
4555 vnode_getiocount(vnode_t vp
, unsigned int vid
, int vflags
)
4557 int nodead
= vflags
& VNODE_NODEAD
;
4558 int nosusp
= vflags
& VNODE_NOSUSPEND
;
4559 int always
= vflags
& VNODE_ALWAYS
;
4560 int beatdrain
= vflags
& VNODE_DRAINO
;
4561 int withvid
= vflags
& VNODE_WITHID
;
4567 * if it is a dead vnode with deadfs
4569 if (nodead
&& (vp
->v_lflag
& VL_DEAD
) && ((vp
->v_type
== VBAD
) || (vp
->v_data
== 0))) {
4573 * will return VL_DEAD ones
4575 if ((vp
->v_lflag
& (VL_SUSPENDED
| VL_DRAIN
| VL_TERMINATE
)) == 0 ) {
4579 * if suspended vnodes are to be failed
4581 if (nosusp
&& (vp
->v_lflag
& VL_SUSPENDED
)) {
4585 * if you are the owner of drain/suspend/termination , can acquire iocount
4586 * check for VL_TERMINATE; it does not set owner
4588 if ((vp
->v_lflag
& (VL_DRAIN
| VL_SUSPENDED
| VL_TERMINATE
)) &&
4589 (vp
->v_owner
== current_thread())) {
4597 * If this vnode is getting drained, there are some cases where
4598 * we can't block or, in case of tty vnodes, want to be
4601 if (vp
->v_lflag
& VL_DRAIN
) {
4603 * In some situations, we want to get an iocount
4604 * even if the vnode is draining to prevent deadlock,
4605 * e.g. if we're in the filesystem, potentially holding
4606 * resources that could prevent other iocounts from
4612 * Don't block if the vnode's mount point is unmounting as
4613 * we may be the thread the unmount is itself waiting on
4614 * Only callers who pass in vids (at this point, we've already
4615 * handled nosusp and nodead) are expecting error returns
4616 * from this function, so only we can only return errors for
4617 * those. ENODEV is intended to inform callers that the call
4618 * failed because an unmount is in progress.
4620 if (withvid
&& (vp
->v_mount
) && vfs_isunmount(vp
->v_mount
))
4623 if (vnode_istty(vp
)) {
4628 vnode_lock_convert(vp
);
4630 if (vp
->v_lflag
& VL_TERMINATE
) {
4633 vp
->v_lflag
|= VL_TERMWANT
;
4635 error
= msleep(&vp
->v_lflag
, &vp
->v_lock
,
4636 (PVFS
| sleepflg
), "vnode getiocount", NULL
);
4640 msleep(&vp
->v_iocount
, &vp
->v_lock
, PVFS
, "vnode_getiocount", NULL
);
4642 if (withvid
&& vid
!= vp
->v_id
) {
4645 if (++vp
->v_references
>= UNAGE_THRESHHOLD
||
4646 (vp
->v_flag
& VISDIRTY
&& vp
->v_references
>= UNAGE_DIRTYTHRESHHOLD
)) {
4647 vp
->v_references
= 0;
4648 vnode_list_remove(vp
);
4658 vnode_dropiocount (vnode_t vp
)
4660 if (vp
->v_iocount
< 1)
4661 panic("vnode_dropiocount(%p): v_iocount < 1", vp
);
4667 if ((vp
->v_lflag
& (VL_DRAIN
| VL_SUSPENDED
)) && (vp
->v_iocount
<= 1))
4668 wakeup(&vp
->v_iocount
);
4673 vnode_reclaim(struct vnode
* vp
)
4675 vnode_reclaim_internal(vp
, 0, 0, 0);
4680 vnode_reclaim_internal(struct vnode
* vp
, int locked
, int reuse
, int flags
)
4687 if (vp
->v_lflag
& VL_TERMINATE
) {
4688 panic("vnode reclaim in progress");
4690 vp
->v_lflag
|= VL_TERMINATE
;
4692 vn_clearunionwait(vp
, 1);
4696 isfifo
= (vp
->v_type
== VFIFO
);
4698 if (vp
->v_type
!= VBAD
)
4699 vgone(vp
, flags
); /* clean and reclaim the vnode */
4702 * give the vnode a new identity so that vnode_getwithvid will fail
4703 * on any stale cache accesses...
4704 * grab the list_lock so that if we're in "new_vnode"
4705 * behind the list_lock trying to steal this vnode, the v_id is stable...
4706 * once new_vnode drops the list_lock, it will block trying to take
4707 * the vnode lock until we release it... at that point it will evaluate
4708 * whether the v_vid has changed
4709 * also need to make sure that the vnode isn't on a list where "new_vnode"
4710 * can find it after the v_id has been bumped until we are completely done
4711 * with the vnode (i.e. putting it back on a list has to be the very last
4712 * thing we do to this vnode... many of the callers of vnode_reclaim_internal
4713 * are holding an io_count on the vnode... they need to drop the io_count
4714 * BEFORE doing a vnode_list_add or make sure to hold the vnode lock until
4715 * they are completely done with the vnode
4719 vnode_list_remove_locked(vp
);
4722 vnode_list_unlock();
4725 struct fifoinfo
* fip
;
4727 fip
= vp
->v_fifoinfo
;
4728 vp
->v_fifoinfo
= NULL
;
4734 panic("vnode_reclaim_internal: cleaned vnode isn't");
4735 if (vp
->v_numoutput
)
4736 panic("vnode_reclaim_internal: clean vnode has pending I/O's");
4737 if (UBCINFOEXISTS(vp
))
4738 panic("vnode_reclaim_internal: ubcinfo not cleaned");
4740 panic("vnode_reclaim_internal: vparent not removed");
4742 panic("vnode_reclaim_internal: vname not removed");
4744 vp
->v_socket
= NULL
;
4746 vp
->v_lflag
&= ~VL_TERMINATE
;
4749 KNOTE(&vp
->v_knotes
, NOTE_REVOKE
);
4751 /* Make sure that when we reuse the vnode, no knotes left over */
4752 klist_init(&vp
->v_knotes
);
4754 if (vp
->v_lflag
& VL_TERMWANT
) {
4755 vp
->v_lflag
&= ~VL_TERMWANT
;
4756 wakeup(&vp
->v_lflag
);
4760 * make sure we get on the
4761 * dead list if appropriate
4770 vnode_create_internal(uint32_t flavor
, uint32_t size
, void *data
, vnode_t
*vpp
,
4780 struct componentname
*cnp
;
4781 struct vnode_fsparam
*param
= (struct vnode_fsparam
*)data
;
4783 struct vnode_trigger_param
*tinfo
= NULL
;
4794 /* Do quick sanity check on the parameters. */
4795 if ((param
== NULL
) || (param
->vnfs_vtype
== VBAD
)) {
4801 if ((flavor
== VNCREATE_TRIGGER
) && (size
== VNCREATE_TRIGGER_SIZE
)) {
4802 tinfo
= (struct vnode_trigger_param
*)data
;
4804 /* Validate trigger vnode input */
4805 if ((param
->vnfs_vtype
!= VDIR
) ||
4806 (tinfo
->vnt_resolve_func
== NULL
) ||
4807 (tinfo
->vnt_flags
& ~VNT_VALID_MASK
)) {
4811 /* Fall through a normal create (params will be the same) */
4812 flavor
= VNCREATE_FLAVOR
;
4816 if ((flavor
!= VNCREATE_FLAVOR
) || (size
!= VCREATESIZE
)) {
4822 if (!existing_vnode
) {
4823 if ((error
= new_vnode(&vp
)) ) {
4827 /* Make it so that it can be released by a vnode_put) */
4834 * A vnode obtained by vnode_create_empty has been passed to
4835 * vnode_initialize - Unset VL_DEAD set by vn_set_dead. After
4836 * this point, it is set back on any error.
4838 * N.B. vnode locking - We make the same assumptions as the
4839 * "unsplit" vnode_create did - i.e. it is safe to update the
4840 * vnode's fields without the vnode lock. This vnode has been
4841 * out and about with the filesystem and hopefully nothing
4842 * was done to the vnode between the vnode_create_empty and
4843 * now when it has come in through vnode_initialize.
4845 vp
->v_lflag
&= ~VL_DEAD
;
4848 dvp
= param
->vnfs_dvp
;
4849 cnp
= param
->vnfs_cnp
;
4851 vp
->v_op
= param
->vnfs_vops
;
4852 vp
->v_type
= param
->vnfs_vtype
;
4853 vp
->v_data
= param
->vnfs_fsnode
;
4855 if (param
->vnfs_markroot
)
4856 vp
->v_flag
|= VROOT
;
4857 if (param
->vnfs_marksystem
)
4858 vp
->v_flag
|= VSYSTEM
;
4859 if (vp
->v_type
== VREG
) {
4860 error
= ubc_info_init_withsize(vp
, param
->vnfs_filesize
);
4870 if (param
->vnfs_mp
->mnt_ioflags
& MNT_IOFLAGS_IOSCHED_SUPPORTED
)
4871 memory_object_mark_io_tracking(vp
->v_ubcinfo
->ui_control
);
4879 * For trigger vnodes, attach trigger info to vnode
4881 if ((vp
->v_type
== VDIR
) && (tinfo
!= NULL
)) {
4883 * Note: has a side effect of incrementing trigger count on the
4884 * mount if successful, which we would need to undo on a
4885 * subsequent failure.
4890 error
= vnode_resolver_create(param
->vnfs_mp
, vp
, tinfo
, FALSE
);
4892 printf("vnode_create: vnode_resolver_create() err %d\n", error
);
4902 if (vp
->v_type
== VCHR
|| vp
->v_type
== VBLK
) {
4904 vp
->v_tag
= VT_DEVFS
; /* callers will reset if needed (bdevvp) */
4906 if ( (nvp
= checkalias(vp
, param
->vnfs_rdev
)) ) {
4908 * if checkalias returns a vnode, it will be locked
4910 * first get rid of the unneeded vnode we acquired
4913 vp
->v_op
= spec_vnodeop_p
;
4915 vp
->v_lflag
= VL_DEAD
;
4921 * switch to aliased vnode and finish
4927 vp
->v_op
= param
->vnfs_vops
;
4928 vp
->v_type
= param
->vnfs_vtype
;
4929 vp
->v_data
= param
->vnfs_fsnode
;
4932 insmntque(vp
, param
->vnfs_mp
);
4937 if (VCHR
== vp
->v_type
) {
4938 u_int maj
= major(vp
->v_rdev
);
4940 if (maj
< (u_int
)nchrdev
&& cdevsw
[maj
].d_type
== D_TTY
)
4941 vp
->v_flag
|= VISTTY
;
4945 if (vp
->v_type
== VFIFO
) {
4946 struct fifoinfo
*fip
;
4948 MALLOC(fip
, struct fifoinfo
*,
4949 sizeof(*fip
), M_TEMP
, M_WAITOK
);
4950 bzero(fip
, sizeof(struct fifoinfo
));
4951 vp
->v_fifoinfo
= fip
;
4953 /* The file systems must pass the address of the location where
4954 * they store the vnode pointer. When we add the vnode into the mount
4955 * list and name cache they become discoverable. So the file system node
4956 * must have the connection to vnode setup by then
4960 /* Add fs named reference. */
4961 if (param
->vnfs_flags
& VNFS_ADDFSREF
) {
4962 vp
->v_lflag
|= VNAMED_FSHASH
;
4964 if (param
->vnfs_mp
) {
4965 if (param
->vnfs_mp
->mnt_kern_flag
& MNTK_LOCK_LOCAL
)
4966 vp
->v_flag
|= VLOCKLOCAL
;
4968 if ((vp
->v_freelist
.tqe_prev
!= (struct vnode
**)0xdeadb))
4969 panic("insmntque: vp on the free list\n");
4972 * enter in mount vnode list
4974 insmntque(vp
, param
->vnfs_mp
);
4977 if (dvp
&& vnode_ref(dvp
) == 0) {
4981 if (dvp
&& ((param
->vnfs_flags
& (VNFS_NOCACHE
| VNFS_CANTCACHE
)) == 0)) {
4983 * enter into name cache
4984 * we've got the info to enter it into the name cache now
4985 * cache_enter_create will pick up an extra reference on
4986 * the name entered into the string cache
4988 vp
->v_name
= cache_enter_create(dvp
, vp
, cnp
);
4990 vp
->v_name
= vfs_addname(cnp
->cn_nameptr
, cnp
->cn_namelen
, cnp
->cn_hash
, 0);
4992 if ((cnp
->cn_flags
& UNIONCREATED
) == UNIONCREATED
)
4993 vp
->v_flag
|= VISUNION
;
4995 if ((param
->vnfs_flags
& VNFS_CANTCACHE
) == 0) {
4997 * this vnode is being created as cacheable in the name cache
4998 * this allows us to re-enter it in the cache
5000 vp
->v_flag
|= VNCACHEABLE
;
5002 ut
= get_bsdthread_info(current_thread());
5004 if ((current_proc()->p_lflag
& P_LRAGE_VNODES
) ||
5005 (ut
->uu_flag
& UT_RAGE_VNODES
)) {
5007 * process has indicated that it wants any
5008 * vnodes created on its behalf to be rapidly
5009 * aged to reduce the impact on the cached set
5012 vp
->v_flag
|= VRAGE
;
5017 if (existing_vnode
) {
5024 * The following api creates a vnode and associates all the parameter specified in vnode_fsparam
5025 * structure and returns a vnode handle with a reference. device aliasing is handled here so checkalias
5026 * is obsoleted by this.
5029 vnode_create(uint32_t flavor
, uint32_t size
, void *data
, vnode_t
*vpp
)
5032 return (vnode_create_internal(flavor
, size
, data
, vpp
, 1));
5036 vnode_create_empty(vnode_t
*vpp
)
5039 return (vnode_create_internal(VNCREATE_FLAVOR
, VCREATESIZE
, NULL
,
5044 vnode_initialize(uint32_t flavor
, uint32_t size
, void *data
, vnode_t
*vpp
)
5046 if (*vpp
== NULLVP
) {
5047 panic("NULL vnode passed to vnode_initialize");
5049 #if DEVELOPMENT || DEBUG
5051 * We lock to check that vnode is fit for unlocked use in
5052 * vnode_create_internal.
5054 vnode_lock_spin(*vpp
);
5055 VNASSERT(((*vpp
)->v_iocount
== 1), *vpp
,
5056 ("vnode_initialize : iocount not 1, is %d", (*vpp
)->v_iocount
));
5057 VNASSERT(((*vpp
)->v_usecount
== 0), *vpp
,
5058 ("vnode_initialize : usecount not 0, is %d", (*vpp
)->v_usecount
));
5059 VNASSERT(((*vpp
)->v_lflag
& VL_DEAD
), *vpp
,
5060 ("vnode_initialize : v_lflag does not have VL_DEAD, is 0x%x",
5062 VNASSERT(((*vpp
)->v_data
== NULL
), *vpp
,
5063 ("vnode_initialize : v_data not NULL"));
5066 return (vnode_create_internal(flavor
, size
, data
, vpp
, 1));
5070 vnode_addfsref(vnode_t vp
)
5072 vnode_lock_spin(vp
);
5073 if (vp
->v_lflag
& VNAMED_FSHASH
)
5074 panic("add_fsref: vp already has named reference");
5075 if ((vp
->v_freelist
.tqe_prev
!= (struct vnode
**)0xdeadb))
5076 panic("addfsref: vp on the free list\n");
5077 vp
->v_lflag
|= VNAMED_FSHASH
;
5083 vnode_removefsref(vnode_t vp
)
5085 vnode_lock_spin(vp
);
5086 if ((vp
->v_lflag
& VNAMED_FSHASH
) == 0)
5087 panic("remove_fsref: no named reference");
5088 vp
->v_lflag
&= ~VNAMED_FSHASH
;
5096 vfs_iterate(int flags
, int (*callout
)(mount_t
, void *), void *arg
)
5101 int count
, actualcount
, i
;
5103 int indx_start
, indx_stop
, indx_incr
;
5104 int cb_dropref
= (flags
& VFS_ITERATE_CB_DROPREF
);
5106 count
= mount_getvfscnt();
5109 fsid_list
= (fsid_t
*)kalloc(count
* sizeof(fsid_t
));
5110 allocmem
= (void *)fsid_list
;
5112 actualcount
= mount_fillfsids(fsid_list
, count
);
5115 * Establish the iteration direction
5116 * VFS_ITERATE_TAIL_FIRST overrides default head first order (oldest first)
5118 if (flags
& VFS_ITERATE_TAIL_FIRST
) {
5119 indx_start
= actualcount
- 1;
5122 } else /* Head first by default */ {
5124 indx_stop
= actualcount
;
5128 for (i
=indx_start
; i
!= indx_stop
; i
+= indx_incr
) {
5130 /* obtain the mount point with iteration reference */
5131 mp
= mount_list_lookupby_fsid(&fsid_list
[i
], 0, 1);
5133 if(mp
== (struct mount
*)0)
5136 if (mp
->mnt_lflag
& (MNT_LDEAD
| MNT_LUNMOUNT
)) {
5144 /* iterate over all the vnodes */
5145 ret
= callout(mp
, arg
);
5148 * Drop the iterref here if the callback didn't do it.
5149 * Note: If cb_dropref is set the mp may no longer exist.
5156 case VFS_RETURNED_DONE
:
5157 if (ret
== VFS_RETURNED_DONE
) {
5163 case VFS_CLAIMED_DONE
:
5174 kfree(allocmem
, (count
* sizeof(fsid_t
)));
5179 * Update the vfsstatfs structure in the mountpoint.
5180 * MAC: Parameter eventtype added, indicating whether the event that
5181 * triggered this update came from user space, via a system call
5182 * (VFS_USER_EVENT) or an internal kernel call (VFS_KERNEL_EVENT).
5185 vfs_update_vfsstat(mount_t mp
, vfs_context_t ctx
, __unused
int eventtype
)
5191 * Request the attributes we want to propagate into
5192 * the per-mount vfsstat structure.
5195 VFSATTR_WANTED(&va
, f_iosize
);
5196 VFSATTR_WANTED(&va
, f_blocks
);
5197 VFSATTR_WANTED(&va
, f_bfree
);
5198 VFSATTR_WANTED(&va
, f_bavail
);
5199 VFSATTR_WANTED(&va
, f_bused
);
5200 VFSATTR_WANTED(&va
, f_files
);
5201 VFSATTR_WANTED(&va
, f_ffree
);
5202 VFSATTR_WANTED(&va
, f_bsize
);
5203 VFSATTR_WANTED(&va
, f_fssubtype
);
5205 if (eventtype
== VFS_USER_EVENT
) {
5206 error
= mac_mount_check_getattr(ctx
, mp
, &va
);
5212 if ((error
= vfs_getattr(mp
, &va
, ctx
)) != 0) {
5213 KAUTH_DEBUG("STAT - filesystem returned error %d", error
);
5218 * Unpack into the per-mount structure.
5220 * We only overwrite these fields, which are likely to change:
5228 * And these which are not, but which the FS has no other way
5229 * of providing to us:
5235 if (VFSATTR_IS_SUPPORTED(&va
, f_bsize
)) {
5236 /* 4822056 - protect against malformed server mount */
5237 mp
->mnt_vfsstat
.f_bsize
= (va
.f_bsize
> 0 ? va
.f_bsize
: 512);
5239 mp
->mnt_vfsstat
.f_bsize
= mp
->mnt_devblocksize
; /* default from the device block size */
5241 if (VFSATTR_IS_SUPPORTED(&va
, f_iosize
)) {
5242 mp
->mnt_vfsstat
.f_iosize
= va
.f_iosize
;
5244 mp
->mnt_vfsstat
.f_iosize
= 1024 * 1024; /* 1MB sensible I/O size */
5246 if (VFSATTR_IS_SUPPORTED(&va
, f_blocks
))
5247 mp
->mnt_vfsstat
.f_blocks
= va
.f_blocks
;
5248 if (VFSATTR_IS_SUPPORTED(&va
, f_bfree
))
5249 mp
->mnt_vfsstat
.f_bfree
= va
.f_bfree
;
5250 if (VFSATTR_IS_SUPPORTED(&va
, f_bavail
))
5251 mp
->mnt_vfsstat
.f_bavail
= va
.f_bavail
;
5252 if (VFSATTR_IS_SUPPORTED(&va
, f_bused
))
5253 mp
->mnt_vfsstat
.f_bused
= va
.f_bused
;
5254 if (VFSATTR_IS_SUPPORTED(&va
, f_files
))
5255 mp
->mnt_vfsstat
.f_files
= va
.f_files
;
5256 if (VFSATTR_IS_SUPPORTED(&va
, f_ffree
))
5257 mp
->mnt_vfsstat
.f_ffree
= va
.f_ffree
;
5259 /* this is unlikely to change, but has to be queried for */
5260 if (VFSATTR_IS_SUPPORTED(&va
, f_fssubtype
))
5261 mp
->mnt_vfsstat
.f_fssubtype
= va
.f_fssubtype
;
5267 mount_list_add(mount_t mp
)
5272 if (system_inshutdown
!= 0) {
5275 TAILQ_INSERT_TAIL(&mountlist
, mp
, mnt_list
);
5279 mount_list_unlock();
5285 mount_list_remove(mount_t mp
)
5288 TAILQ_REMOVE(&mountlist
, mp
, mnt_list
);
5290 mp
->mnt_list
.tqe_next
= NULL
;
5291 mp
->mnt_list
.tqe_prev
= NULL
;
5292 mount_list_unlock();
5296 mount_lookupby_volfsid(int volfs_id
, int withref
)
5298 mount_t cur_mount
= (mount_t
)0;
5302 TAILQ_FOREACH(mp
, &mountlist
, mnt_list
) {
5303 if (!(mp
->mnt_kern_flag
& MNTK_UNMOUNT
) &&
5304 (mp
->mnt_kern_flag
& MNTK_PATH_FROM_ID
) &&
5305 (mp
->mnt_vfsstat
.f_fsid
.val
[0] == volfs_id
)) {
5308 if (mount_iterref(cur_mount
, 1)) {
5309 cur_mount
= (mount_t
)0;
5310 mount_list_unlock();
5317 mount_list_unlock();
5318 if (withref
&& (cur_mount
!= (mount_t
)0)) {
5320 if (vfs_busy(mp
, LK_NOWAIT
) != 0) {
5321 cur_mount
= (mount_t
)0;
5330 mount_list_lookupby_fsid(fsid_t
*fsid
, int locked
, int withref
)
5332 mount_t retmp
= (mount_t
)0;
5337 TAILQ_FOREACH(mp
, &mountlist
, mnt_list
)
5338 if (mp
->mnt_vfsstat
.f_fsid
.val
[0] == fsid
->val
[0] &&
5339 mp
->mnt_vfsstat
.f_fsid
.val
[1] == fsid
->val
[1]) {
5342 if (mount_iterref(retmp
, 1))
5349 mount_list_unlock();
5354 vnode_lookup(const char *path
, int flags
, vnode_t
*vpp
, vfs_context_t ctx
)
5356 struct nameidata nd
;
5358 u_int32_t ndflags
= 0;
5364 if (flags
& VNODE_LOOKUP_NOFOLLOW
)
5369 if (flags
& VNODE_LOOKUP_NOCROSSMOUNT
)
5370 ndflags
|= NOCROSSMOUNT
;
5372 if (flags
& VNODE_LOOKUP_CROSSMOUNTNOWAIT
)
5373 ndflags
|= CN_NBMOUNTLOOK
;
5375 /* XXX AUDITVNPATH1 needed ? */
5376 NDINIT(&nd
, LOOKUP
, OP_LOOKUP
, ndflags
, UIO_SYSSPACE
,
5377 CAST_USER_ADDR_T(path
), ctx
);
5379 if ((error
= namei(&nd
)))
5388 vnode_open(const char *path
, int fmode
, int cmode
, int flags
, vnode_t
*vpp
, vfs_context_t ctx
)
5390 struct nameidata nd
;
5392 u_int32_t ndflags
= 0;
5395 if (ctx
== NULL
) { /* XXX technically an error */
5396 ctx
= vfs_context_current();
5399 if (fmode
& O_NOFOLLOW
)
5400 lflags
|= VNODE_LOOKUP_NOFOLLOW
;
5402 if (lflags
& VNODE_LOOKUP_NOFOLLOW
)
5407 if (lflags
& VNODE_LOOKUP_NOCROSSMOUNT
)
5408 ndflags
|= NOCROSSMOUNT
;
5410 if (lflags
& VNODE_LOOKUP_CROSSMOUNTNOWAIT
)
5411 ndflags
|= CN_NBMOUNTLOOK
;
5413 /* XXX AUDITVNPATH1 needed ? */
5414 NDINIT(&nd
, LOOKUP
, OP_OPEN
, ndflags
, UIO_SYSSPACE
,
5415 CAST_USER_ADDR_T(path
), ctx
);
5417 if ((error
= vn_open(&nd
, fmode
, cmode
)))
5426 vnode_close(vnode_t vp
, int flags
, vfs_context_t ctx
)
5431 ctx
= vfs_context_current();
5434 error
= vn_close(vp
, flags
, ctx
);
5440 vnode_mtime(vnode_t vp
, struct timespec
*mtime
, vfs_context_t ctx
)
5442 struct vnode_attr va
;
5446 VATTR_WANTED(&va
, va_modify_time
);
5447 error
= vnode_getattr(vp
, &va
, ctx
);
5449 *mtime
= va
.va_modify_time
;
5454 vnode_flags(vnode_t vp
, uint32_t *flags
, vfs_context_t ctx
)
5456 struct vnode_attr va
;
5460 VATTR_WANTED(&va
, va_flags
);
5461 error
= vnode_getattr(vp
, &va
, ctx
);
5463 *flags
= va
.va_flags
;
5468 * Returns: 0 Success
5472 vnode_size(vnode_t vp
, off_t
*sizep
, vfs_context_t ctx
)
5474 struct vnode_attr va
;
5478 VATTR_WANTED(&va
, va_data_size
);
5479 error
= vnode_getattr(vp
, &va
, ctx
);
5481 *sizep
= va
.va_data_size
;
5486 vnode_setsize(vnode_t vp
, off_t size
, int ioflag
, vfs_context_t ctx
)
5488 struct vnode_attr va
;
5491 VATTR_SET(&va
, va_data_size
, size
);
5492 va
.va_vaflags
= ioflag
& 0xffff;
5493 return(vnode_setattr(vp
, &va
, ctx
));
5497 vnode_setdirty(vnode_t vp
)
5499 vnode_lock_spin(vp
);
5500 vp
->v_flag
|= VISDIRTY
;
5506 vnode_cleardirty(vnode_t vp
)
5508 vnode_lock_spin(vp
);
5509 vp
->v_flag
&= ~VISDIRTY
;
5515 vnode_isdirty(vnode_t vp
)
5519 vnode_lock_spin(vp
);
5520 dirty
= (vp
->v_flag
& VISDIRTY
) ? 1 : 0;
5527 vn_create_reg(vnode_t dvp
, vnode_t
*vpp
, struct nameidata
*ndp
, struct vnode_attr
*vap
, uint32_t flags
, int fmode
, uint32_t *statusp
, vfs_context_t ctx
)
5529 /* Only use compound VNOP for compound operation */
5530 if (vnode_compound_open_available(dvp
) && ((flags
& VN_CREATE_DOOPEN
) != 0)) {
5532 return VNOP_COMPOUND_OPEN(dvp
, vpp
, ndp
, O_CREAT
, fmode
, statusp
, vap
, ctx
);
5534 return VNOP_CREATE(dvp
, vpp
, &ndp
->ni_cnd
, vap
, ctx
);
5539 * Create a filesystem object of arbitrary type with arbitrary attributes in
5540 * the spevied directory with the specified name.
5542 * Parameters: dvp Pointer to the vnode of the directory
5543 * in which to create the object.
5544 * vpp Pointer to the area into which to
5545 * return the vnode of the created object.
5546 * cnp Component name pointer from the namei
5547 * data structure, containing the name to
5548 * use for the create object.
5549 * vap Pointer to the vnode_attr structure
5550 * describing the object to be created,
5551 * including the type of object.
5552 * flags VN_* flags controlling ACL inheritance
5553 * and whether or not authorization is to
5554 * be required for the operation.
5556 * Returns: 0 Success
5559 * Implicit: *vpp Contains the vnode of the object that
5560 * was created, if successful.
5561 * *cnp May be modified by the underlying VFS.
5562 * *vap May be modified by the underlying VFS.
5563 * modified by either ACL inheritance or
5566 * be modified, even if the operation is
5569 * Notes: The kauth_filesec_t in 'vap', if any, is in host byte order.
5571 * Modification of '*cnp' and '*vap' by the underlying VFS is
5572 * strongly discouraged.
5574 * XXX: This function is a 'vn_*' function; it belongs in vfs_vnops.c
5576 * XXX: We should enummerate the possible errno values here, and where
5577 * in the code they originated.
5580 vn_create(vnode_t dvp
, vnode_t
*vpp
, struct nameidata
*ndp
, struct vnode_attr
*vap
, uint32_t flags
, int fmode
, uint32_t *statusp
, vfs_context_t ctx
)
5582 errno_t error
, old_error
;
5583 vnode_t vp
= (vnode_t
)0;
5585 struct componentname
*cnp
;
5587 uint32_t dfflags
; // Directory file flags
5591 batched
= namei_compound_available(dvp
, ndp
) ? TRUE
: FALSE
;
5593 KAUTH_DEBUG("%p CREATE - '%s'", dvp
, cnp
->cn_nameptr
);
5595 if (flags
& VN_CREATE_NOINHERIT
)
5596 vap
->va_vaflags
|= VA_NOINHERIT
;
5597 if (flags
& VN_CREATE_NOAUTH
)
5598 vap
->va_vaflags
|= VA_NOAUTH
;
5600 * Handle ACL inheritance, initialize vap.
5602 error
= vn_attribute_prepare(dvp
, vap
, &defaulted
, ctx
);
5607 if (vap
->va_type
!= VREG
&& (fmode
!= 0 || (flags
& VN_CREATE_DOOPEN
) || statusp
)) {
5608 panic("Open parameters, but not a regular file.");
5610 if ((fmode
!= 0) && ((flags
& VN_CREATE_DOOPEN
) == 0)) {
5611 panic("Mode for open, but not trying to open...");
5615 * Handle inheritance of restricted flag
5617 error
= vnode_flags(dvp
, &dfflags
, ctx
);
5620 if (dfflags
& SF_RESTRICTED
)
5621 VATTR_SET(vap
, va_flags
, SF_RESTRICTED
);
5624 * Create the requested node.
5626 switch(vap
->va_type
) {
5628 error
= vn_create_reg(dvp
, vpp
, ndp
, vap
, flags
, fmode
, statusp
, ctx
);
5631 error
= vn_mkdir(dvp
, vpp
, ndp
, vap
, ctx
);
5637 error
= VNOP_MKNOD(dvp
, vpp
, cnp
, vap
, ctx
);
5640 panic("vnode_create: unknown vtype %d", vap
->va_type
);
5643 KAUTH_DEBUG("%p CREATE - error %d returned by filesystem", dvp
, error
);
5651 if (!(flags
& VN_CREATE_NOLABEL
)) {
5652 error
= vnode_label(vnode_mount(vp
), dvp
, vp
, cnp
, VNODE_LABEL_CREATE
, ctx
);
5659 * If some of the requested attributes weren't handled by the VNOP,
5660 * use our fallback code.
5662 if (!VATTR_ALL_SUPPORTED(vap
) && *vpp
) {
5663 KAUTH_DEBUG(" CREATE - doing fallback with ACL %p", vap
->va_acl
);
5664 error
= vnode_setattr_fallback(*vpp
, vap
, ctx
);
5669 if ((error
!= 0) && (vp
!= (vnode_t
)0)) {
5671 /* If we've done a compound open, close */
5672 if (batched
&& (old_error
== 0) && (vap
->va_type
== VREG
)) {
5673 VNOP_CLOSE(vp
, fmode
, ctx
);
5676 /* Need to provide notifications if a create succeeded */
5684 vn_attribute_cleanup(vap
, defaulted
);
5689 static kauth_scope_t vnode_scope
;
5690 static int vnode_authorize_callback(kauth_cred_t credential
, void *idata
, kauth_action_t action
,
5691 uintptr_t arg0
, uintptr_t arg1
, uintptr_t arg2
, uintptr_t arg3
);
5692 static int vnode_authorize_callback_int(__unused kauth_cred_t credential
, __unused
void *idata
, kauth_action_t action
,
5693 uintptr_t arg0
, uintptr_t arg1
, uintptr_t arg2
, uintptr_t arg3
);
5695 typedef struct _vnode_authorize_context
{
5697 struct vnode_attr
*vap
;
5699 struct vnode_attr
*dvap
;
5703 #define _VAC_IS_OWNER (1<<0)
5704 #define _VAC_IN_GROUP (1<<1)
5705 #define _VAC_IS_DIR_OWNER (1<<2)
5706 #define _VAC_IN_DIR_GROUP (1<<3)
5710 vnode_authorize_init(void)
5712 vnode_scope
= kauth_register_scope(KAUTH_SCOPE_VNODE
, vnode_authorize_callback
, NULL
);
5715 #define VATTR_PREPARE_DEFAULTED_UID 0x1
5716 #define VATTR_PREPARE_DEFAULTED_GID 0x2
5717 #define VATTR_PREPARE_DEFAULTED_MODE 0x4
5720 vn_attribute_prepare(vnode_t dvp
, struct vnode_attr
*vap
, uint32_t *defaulted_fieldsp
, vfs_context_t ctx
)
5722 kauth_acl_t nacl
= NULL
, oacl
= NULL
;
5726 * Handle ACL inheritance.
5728 if (!(vap
->va_vaflags
& VA_NOINHERIT
) && vfs_extendedsecurity(dvp
->v_mount
)) {
5729 /* save the original filesec */
5730 if (VATTR_IS_ACTIVE(vap
, va_acl
)) {
5735 if ((error
= kauth_acl_inherit(dvp
,
5738 vap
->va_type
== VDIR
,
5740 KAUTH_DEBUG("%p CREATE - error %d processing inheritance", dvp
, error
);
5745 * If the generated ACL is NULL, then we can save ourselves some effort
5746 * by clearing the active bit.
5749 VATTR_CLEAR_ACTIVE(vap
, va_acl
);
5751 vap
->va_base_acl
= oacl
;
5752 VATTR_SET(vap
, va_acl
, nacl
);
5756 error
= vnode_authattr_new_internal(dvp
, vap
, (vap
->va_vaflags
& VA_NOAUTH
), defaulted_fieldsp
, ctx
);
5758 vn_attribute_cleanup(vap
, *defaulted_fieldsp
);
5765 vn_attribute_cleanup(struct vnode_attr
*vap
, uint32_t defaulted_fields
)
5768 * If the caller supplied a filesec in vap, it has been replaced
5769 * now by the post-inheritance copy. We need to put the original back
5770 * and free the inherited product.
5772 kauth_acl_t nacl
, oacl
;
5774 if (VATTR_IS_ACTIVE(vap
, va_acl
)) {
5776 oacl
= vap
->va_base_acl
;
5779 VATTR_SET(vap
, va_acl
, oacl
);
5780 vap
->va_base_acl
= NULL
;
5782 VATTR_CLEAR_ACTIVE(vap
, va_acl
);
5786 kauth_acl_free(nacl
);
5790 if ((defaulted_fields
& VATTR_PREPARE_DEFAULTED_MODE
) != 0) {
5791 VATTR_CLEAR_ACTIVE(vap
, va_mode
);
5793 if ((defaulted_fields
& VATTR_PREPARE_DEFAULTED_GID
) != 0) {
5794 VATTR_CLEAR_ACTIVE(vap
, va_gid
);
5796 if ((defaulted_fields
& VATTR_PREPARE_DEFAULTED_UID
) != 0) {
5797 VATTR_CLEAR_ACTIVE(vap
, va_uid
);
5804 vn_authorize_unlink(vnode_t dvp
, vnode_t vp
, struct componentname
*cnp
, vfs_context_t ctx
, __unused
void *reserved
)
5812 * Normally, unlinking of directories is not supported.
5813 * However, some file systems may have limited support.
5815 if ((vp
->v_type
== VDIR
) &&
5816 !(vp
->v_mount
->mnt_vtable
->vfc_vfsflags
& VFC_VFSDIRLINKS
)) {
5817 return (EPERM
); /* POSIX */
5820 /* authorize the delete operation */
5823 error
= mac_vnode_check_unlink(ctx
, dvp
, vp
, cnp
);
5826 error
= vnode_authorize(vp
, dvp
, KAUTH_VNODE_DELETE
, ctx
);
5832 vn_authorize_open_existing(vnode_t vp
, struct componentname
*cnp
, int fmode
, vfs_context_t ctx
, void *reserved
)
5834 /* Open of existing case */
5835 kauth_action_t action
;
5837 if (cnp
->cn_ndp
== NULL
) {
5840 if (reserved
!= NULL
) {
5841 panic("reserved not NULL.");
5845 /* XXX may do duplicate work here, but ignore that for now (idempotent) */
5846 if (vfs_flags(vnode_mount(vp
)) & MNT_MULTILABEL
) {
5847 error
= vnode_label(vnode_mount(vp
), NULL
, vp
, NULL
, 0, ctx
);
5853 if ( (fmode
& O_DIRECTORY
) && vp
->v_type
!= VDIR
) {
5857 if (vp
->v_type
== VSOCK
&& vp
->v_tag
!= VT_FDESC
) {
5858 return (EOPNOTSUPP
); /* Operation not supported on socket */
5861 if (vp
->v_type
== VLNK
&& (fmode
& O_NOFOLLOW
) != 0) {
5862 return (ELOOP
); /* O_NOFOLLOW was specified and the target is a symbolic link */
5865 /* disallow write operations on directories */
5866 if (vnode_isdir(vp
) && (fmode
& (FWRITE
| O_TRUNC
))) {
5870 if ((cnp
->cn_ndp
->ni_flag
& NAMEI_TRAILINGSLASH
)) {
5871 if (vp
->v_type
!= VDIR
) {
5877 /* If a file being opened is a shadow file containing
5878 * namedstream data, ignore the macf checks because it
5879 * is a kernel internal file and access should always
5882 if (!(vnode_isshadow(vp
) && vnode_isnamedstream(vp
))) {
5883 error
= mac_vnode_check_open(ctx
, vp
, fmode
);
5890 /* compute action to be authorized */
5892 if (fmode
& FREAD
) {
5893 action
|= KAUTH_VNODE_READ_DATA
;
5895 if (fmode
& (FWRITE
| O_TRUNC
)) {
5897 * If we are writing, appending, and not truncating,
5898 * indicate that we are appending so that if the
5899 * UF_APPEND or SF_APPEND bits are set, we do not deny
5902 if ((fmode
& O_APPEND
) && !(fmode
& O_TRUNC
)) {
5903 action
|= KAUTH_VNODE_APPEND_DATA
;
5905 action
|= KAUTH_VNODE_WRITE_DATA
;
5908 error
= vnode_authorize(vp
, NULL
, action
, ctx
);
5910 if (error
== EACCES
) {
5912 * Shadow files may exist on-disk with a different UID/GID
5913 * than that of the current context. Verify that this file
5914 * is really a shadow file. If it was created successfully
5915 * then it should be authorized.
5917 if (vnode_isshadow(vp
) && vnode_isnamedstream (vp
)) {
5918 error
= vnode_verifynamedstream(vp
);
5927 vn_authorize_create(vnode_t dvp
, struct componentname
*cnp
, struct vnode_attr
*vap
, vfs_context_t ctx
, void *reserved
)
5935 if (cnp
->cn_ndp
== NULL
) {
5936 panic("NULL cn_ndp");
5938 if (reserved
!= NULL
) {
5939 panic("reserved not NULL.");
5942 /* Only validate path for creation if we didn't do a complete lookup */
5943 if (cnp
->cn_ndp
->ni_flag
& NAMEI_UNFINISHED
) {
5944 error
= lookup_validate_creation_path(cnp
->cn_ndp
);
5950 error
= mac_vnode_check_create(ctx
, dvp
, cnp
, vap
);
5953 #endif /* CONFIG_MACF */
5955 return (vnode_authorize(dvp
, NULL
, KAUTH_VNODE_ADD_FILE
, ctx
));
5959 vn_authorize_rename(struct vnode
*fdvp
, struct vnode
*fvp
, struct componentname
*fcnp
,
5960 struct vnode
*tdvp
, struct vnode
*tvp
, struct componentname
*tcnp
,
5961 vfs_context_t ctx
, void *reserved
)
5966 if (reserved
!= NULL
) {
5967 panic("Passed something other than NULL as reserved field!");
5971 * Avoid renaming "." and "..".
5973 * XXX No need to check for this in the FS. We should always have the leaves
5974 * in VFS in this case.
5976 if (fvp
->v_type
== VDIR
&&
5978 (fcnp
->cn_namelen
== 1 && fcnp
->cn_nameptr
[0] == '.') ||
5979 ((fcnp
->cn_flags
| tcnp
->cn_flags
) & ISDOTDOT
)) ) {
5984 if (tvp
== NULLVP
&& vnode_compound_rename_available(tdvp
)) {
5985 error
= lookup_validate_creation_path(tcnp
->cn_ndp
);
5990 /***** <MACF> *****/
5992 error
= mac_vnode_check_rename(ctx
, fdvp
, fvp
, fcnp
, tdvp
, tvp
, tcnp
);
5996 /***** </MACF> *****/
5998 /***** <MiscChecks> *****/
6000 if (fvp
->v_type
== VDIR
&& tvp
->v_type
!= VDIR
) {
6003 } else if (fvp
->v_type
!= VDIR
&& tvp
->v_type
== VDIR
) {
6015 * The following edge case is caught here:
6016 * (to cannot be a descendent of from)
6029 if (tdvp
->v_parent
== fvp
) {
6033 /***** </MiscChecks> *****/
6035 /***** <Kauth> *****/
6038 if ((tvp
!= NULL
) && vnode_isdir(tvp
)) {
6041 } else if (tdvp
!= fdvp
) {
6047 * must have delete rights to remove the old name even in
6048 * the simple case of fdvp == tdvp.
6050 * If fvp is a directory, and we are changing it's parent,
6051 * then we also need rights to rewrite its ".." entry as well.
6053 if (vnode_isdir(fvp
)) {
6054 if ((error
= vnode_authorize(fvp
, fdvp
, KAUTH_VNODE_DELETE
| KAUTH_VNODE_ADD_SUBDIRECTORY
, ctx
)) != 0)
6057 if ((error
= vnode_authorize(fvp
, fdvp
, KAUTH_VNODE_DELETE
, ctx
)) != 0)
6061 /* moving into tdvp or tvp, must have rights to add */
6062 if ((error
= vnode_authorize(((tvp
!= NULL
) && vnode_isdir(tvp
)) ? tvp
: tdvp
,
6064 vnode_isdir(fvp
) ? KAUTH_VNODE_ADD_SUBDIRECTORY
: KAUTH_VNODE_ADD_FILE
,
6069 /* node staying in same directory, must be allowed to add new name */
6070 if ((error
= vnode_authorize(fdvp
, NULL
,
6071 vnode_isdir(fvp
) ? KAUTH_VNODE_ADD_SUBDIRECTORY
: KAUTH_VNODE_ADD_FILE
, ctx
)) != 0)
6074 /* overwriting tvp */
6075 if ((tvp
!= NULL
) && !vnode_isdir(tvp
) &&
6076 ((error
= vnode_authorize(tvp
, tdvp
, KAUTH_VNODE_DELETE
, ctx
)) != 0)) {
6080 /***** </Kauth> *****/
6082 /* XXX more checks? */
6088 vn_authorize_mkdir(vnode_t dvp
, struct componentname
*cnp
, struct vnode_attr
*vap
, vfs_context_t ctx
, void *reserved
)
6095 if (reserved
!= NULL
) {
6096 panic("reserved not NULL in vn_authorize_mkdir()");
6099 /* XXX A hack for now, to make shadow files work */
6100 if (cnp
->cn_ndp
== NULL
) {
6104 if (vnode_compound_mkdir_available(dvp
)) {
6105 error
= lookup_validate_creation_path(cnp
->cn_ndp
);
6111 error
= mac_vnode_check_create(ctx
,
6117 /* authorize addition of a directory to the parent */
6118 if ((error
= vnode_authorize(dvp
, NULL
, KAUTH_VNODE_ADD_SUBDIRECTORY
, ctx
)) != 0)
6126 vn_authorize_rmdir(vnode_t dvp
, vnode_t vp
, struct componentname
*cnp
, vfs_context_t ctx
, void *reserved
)
6133 if (reserved
!= NULL
) {
6134 panic("Non-NULL reserved argument to vn_authorize_rmdir()");
6137 if (vp
->v_type
!= VDIR
) {
6139 * rmdir only deals with directories
6146 * No rmdir "." please.
6152 error
= mac_vnode_check_unlink(ctx
, dvp
,
6158 return vnode_authorize(vp
, dvp
, KAUTH_VNODE_DELETE
, ctx
);
6162 * Authorize an operation on a vnode.
6164 * This is KPI, but here because it needs vnode_scope.
6166 * Returns: 0 Success
6167 * kauth_authorize_action:EPERM ...
6168 * xlate => EACCES Permission denied
6169 * kauth_authorize_action:0 Success
6170 * kauth_authorize_action: Depends on callback return; this is
6171 * usually only vnode_authorize_callback(),
6172 * but may include other listerners, if any
6180 vnode_authorize(vnode_t vp
, vnode_t dvp
, kauth_action_t action
, vfs_context_t ctx
)
6185 * We can't authorize against a dead vnode; allow all operations through so that
6186 * the correct error can be returned.
6188 if (vp
->v_type
== VBAD
)
6192 result
= kauth_authorize_action(vnode_scope
, vfs_context_ucred(ctx
), action
,
6193 (uintptr_t)ctx
, (uintptr_t)vp
, (uintptr_t)dvp
, (uintptr_t)&error
);
6194 if (result
== EPERM
) /* traditional behaviour */
6196 /* did the lower layers give a better error return? */
6197 if ((result
!= 0) && (error
!= 0))
6203 * Test for vnode immutability.
6205 * The 'append' flag is set when the authorization request is constrained
6206 * to operations which only request the right to append to a file.
6208 * The 'ignore' flag is set when an operation modifying the immutability flags
6209 * is being authorized. We check the system securelevel to determine which
6210 * immutability flags we can ignore.
6213 vnode_immutable(struct vnode_attr
*vap
, int append
, int ignore
)
6217 /* start with all bits precluding the operation */
6218 mask
= IMMUTABLE
| APPEND
;
6220 /* if appending only, remove the append-only bits */
6224 /* ignore only set when authorizing flags changes */
6226 if (securelevel
<= 0) {
6227 /* in insecure state, flags do not inhibit changes */
6230 /* in secure state, user flags don't inhibit */
6231 mask
&= ~(UF_IMMUTABLE
| UF_APPEND
);
6234 KAUTH_DEBUG("IMMUTABLE - file flags 0x%x mask 0x%x append = %d ignore = %d", vap
->va_flags
, mask
, append
, ignore
);
6235 if ((vap
->va_flags
& mask
) != 0)
6241 vauth_node_owner(struct vnode_attr
*vap
, kauth_cred_t cred
)
6245 /* default assumption is not-owner */
6249 * If the filesystem has given us a UID, we treat this as authoritative.
6251 if (vap
&& VATTR_IS_SUPPORTED(vap
, va_uid
)) {
6252 result
= (vap
->va_uid
== kauth_cred_getuid(cred
)) ? 1 : 0;
6254 /* we could test the owner UUID here if we had a policy for it */
6262 * Description: Ask if a cred is a member of the group owning the vnode object
6264 * Parameters: vap vnode attribute
6265 * vap->va_gid group owner of vnode object
6266 * cred credential to check
6267 * ismember pointer to where to put the answer
6268 * idontknow Return this if we can't get an answer
6270 * Returns: 0 Success
6271 * idontknow Can't get information
6272 * kauth_cred_ismember_gid:? Error from kauth subsystem
6273 * kauth_cred_ismember_gid:? Error from kauth subsystem
6276 vauth_node_group(struct vnode_attr
*vap
, kauth_cred_t cred
, int *ismember
, int idontknow
)
6285 * The caller is expected to have asked the filesystem for a group
6286 * at some point prior to calling this function. The answer may
6287 * have been that there is no group ownership supported for the
6288 * vnode object, in which case we return
6290 if (vap
&& VATTR_IS_SUPPORTED(vap
, va_gid
)) {
6291 error
= kauth_cred_ismember_gid(cred
, vap
->va_gid
, &result
);
6293 * Credentials which are opted into external group membership
6294 * resolution which are not known to the external resolver
6295 * will result in an ENOENT error. We translate this into
6296 * the appropriate 'idontknow' response for our caller.
6298 * XXX We do not make a distinction here between an ENOENT
6299 * XXX arising from a response from the external resolver,
6300 * XXX and an ENOENT which is internally generated. This is
6301 * XXX a deficiency of the published kauth_cred_ismember_gid()
6302 * XXX KPI which can not be overcome without new KPI. For
6303 * XXX all currently known cases, however, this wil result
6304 * XXX in correct behaviour.
6306 if (error
== ENOENT
)
6310 * XXX We could test the group UUID here if we had a policy for it,
6311 * XXX but this is problematic from the perspective of synchronizing
6312 * XXX group UUID and POSIX GID ownership of a file and keeping the
6313 * XXX values coherent over time. The problem is that the local
6314 * XXX system will vend transient group UUIDs for unknown POSIX GID
6315 * XXX values, and these are not persistent, whereas storage of values
6316 * XXX is persistent. One potential solution to this is a local
6317 * XXX (persistent) replica of remote directory entries and vended
6318 * XXX local ids in a local directory server (think in terms of a
6319 * XXX caching DNS server).
6328 vauth_file_owner(vauth_ctx vcp
)
6332 if (vcp
->flags_valid
& _VAC_IS_OWNER
) {
6333 result
= (vcp
->flags
& _VAC_IS_OWNER
) ? 1 : 0;
6335 result
= vauth_node_owner(vcp
->vap
, vcp
->ctx
->vc_ucred
);
6337 /* cache our result */
6338 vcp
->flags_valid
|= _VAC_IS_OWNER
;
6340 vcp
->flags
|= _VAC_IS_OWNER
;
6342 vcp
->flags
&= ~_VAC_IS_OWNER
;
6350 * vauth_file_ingroup
6352 * Description: Ask if a user is a member of the group owning the directory
6354 * Parameters: vcp The vnode authorization context that
6355 * contains the user and directory info
6356 * vcp->flags_valid Valid flags
6357 * vcp->flags Flags values
6358 * vcp->vap File vnode attributes
6359 * vcp->ctx VFS Context (for user)
6360 * ismember pointer to where to put the answer
6361 * idontknow Return this if we can't get an answer
6363 * Returns: 0 Success
6364 * vauth_node_group:? Error from vauth_node_group()
6366 * Implicit returns: *ismember 0 The user is not a group member
6367 * 1 The user is a group member
6370 vauth_file_ingroup(vauth_ctx vcp
, int *ismember
, int idontknow
)
6374 /* Check for a cached answer first, to avoid the check if possible */
6375 if (vcp
->flags_valid
& _VAC_IN_GROUP
) {
6376 *ismember
= (vcp
->flags
& _VAC_IN_GROUP
) ? 1 : 0;
6379 /* Otherwise, go look for it */
6380 error
= vauth_node_group(vcp
->vap
, vcp
->ctx
->vc_ucred
, ismember
, idontknow
);
6383 /* cache our result */
6384 vcp
->flags_valid
|= _VAC_IN_GROUP
;
6386 vcp
->flags
|= _VAC_IN_GROUP
;
6388 vcp
->flags
&= ~_VAC_IN_GROUP
;
6397 vauth_dir_owner(vauth_ctx vcp
)
6401 if (vcp
->flags_valid
& _VAC_IS_DIR_OWNER
) {
6402 result
= (vcp
->flags
& _VAC_IS_DIR_OWNER
) ? 1 : 0;
6404 result
= vauth_node_owner(vcp
->dvap
, vcp
->ctx
->vc_ucred
);
6406 /* cache our result */
6407 vcp
->flags_valid
|= _VAC_IS_DIR_OWNER
;
6409 vcp
->flags
|= _VAC_IS_DIR_OWNER
;
6411 vcp
->flags
&= ~_VAC_IS_DIR_OWNER
;
6420 * Description: Ask if a user is a member of the group owning the directory
6422 * Parameters: vcp The vnode authorization context that
6423 * contains the user and directory info
6424 * vcp->flags_valid Valid flags
6425 * vcp->flags Flags values
6426 * vcp->dvap Dir vnode attributes
6427 * vcp->ctx VFS Context (for user)
6428 * ismember pointer to where to put the answer
6429 * idontknow Return this if we can't get an answer
6431 * Returns: 0 Success
6432 * vauth_node_group:? Error from vauth_node_group()
6434 * Implicit returns: *ismember 0 The user is not a group member
6435 * 1 The user is a group member
6438 vauth_dir_ingroup(vauth_ctx vcp
, int *ismember
, int idontknow
)
6442 /* Check for a cached answer first, to avoid the check if possible */
6443 if (vcp
->flags_valid
& _VAC_IN_DIR_GROUP
) {
6444 *ismember
= (vcp
->flags
& _VAC_IN_DIR_GROUP
) ? 1 : 0;
6447 /* Otherwise, go look for it */
6448 error
= vauth_node_group(vcp
->dvap
, vcp
->ctx
->vc_ucred
, ismember
, idontknow
);
6451 /* cache our result */
6452 vcp
->flags_valid
|= _VAC_IN_DIR_GROUP
;
6454 vcp
->flags
|= _VAC_IN_DIR_GROUP
;
6456 vcp
->flags
&= ~_VAC_IN_DIR_GROUP
;
6464 * Test the posix permissions in (vap) to determine whether (credential)
6465 * may perform (action)
6468 vnode_authorize_posix(vauth_ctx vcp
, int action
, int on_dir
)
6470 struct vnode_attr
*vap
;
6471 int needed
, error
, owner_ok
, group_ok
, world_ok
, ismember
;
6472 #ifdef KAUTH_DEBUG_ENABLE
6473 const char *where
= "uninitialized";
6474 # define _SETWHERE(c) where = c;
6476 # define _SETWHERE(c)
6479 /* checking file or directory? */
6489 * We want to do as little work here as possible. So first we check
6490 * which sets of permissions grant us the access we need, and avoid checking
6491 * whether specific permissions grant access when more generic ones would.
6494 /* owner permissions */
6498 if (action
& VWRITE
)
6502 owner_ok
= (needed
& vap
->va_mode
) == needed
;
6504 /* group permissions */
6508 if (action
& VWRITE
)
6512 group_ok
= (needed
& vap
->va_mode
) == needed
;
6514 /* world permissions */
6518 if (action
& VWRITE
)
6522 world_ok
= (needed
& vap
->va_mode
) == needed
;
6524 /* If granted/denied by all three, we're done */
6525 if (owner_ok
&& group_ok
&& world_ok
) {
6529 if (!owner_ok
&& !group_ok
&& !world_ok
) {
6535 /* Check ownership (relatively cheap) */
6536 if ((on_dir
&& vauth_dir_owner(vcp
)) ||
6537 (!on_dir
&& vauth_file_owner(vcp
))) {
6544 /* Not owner; if group and world both grant it we're done */
6545 if (group_ok
&& world_ok
) {
6546 _SETWHERE("group/world");
6549 if (!group_ok
&& !world_ok
) {
6550 _SETWHERE("group/world");
6555 /* Check group membership (most expensive) */
6556 ismember
= 0; /* Default to allow, if the target has no group owner */
6559 * In the case we can't get an answer about the user from the call to
6560 * vauth_dir_ingroup() or vauth_file_ingroup(), we want to fail on
6561 * the side of caution, rather than simply granting access, or we will
6562 * fail to correctly implement exclusion groups, so we set the third
6563 * parameter on the basis of the state of 'group_ok'.
6566 error
= vauth_dir_ingroup(vcp
, &ismember
, (!group_ok
? EACCES
: 0));
6568 error
= vauth_file_ingroup(vcp
, &ismember
, (!group_ok
? EACCES
: 0));
6582 /* Not owner, not in group, use world result */
6590 KAUTH_DEBUG("%p %s - posix %s permissions : need %s%s%s %x have %s%s%s%s%s%s%s%s%s UID = %d file = %d,%d",
6591 vcp
->vp
, (error
== 0) ? "ALLOWED" : "DENIED", where
,
6592 (action
& VREAD
) ? "r" : "-",
6593 (action
& VWRITE
) ? "w" : "-",
6594 (action
& VEXEC
) ? "x" : "-",
6596 (vap
->va_mode
& S_IRUSR
) ? "r" : "-",
6597 (vap
->va_mode
& S_IWUSR
) ? "w" : "-",
6598 (vap
->va_mode
& S_IXUSR
) ? "x" : "-",
6599 (vap
->va_mode
& S_IRGRP
) ? "r" : "-",
6600 (vap
->va_mode
& S_IWGRP
) ? "w" : "-",
6601 (vap
->va_mode
& S_IXGRP
) ? "x" : "-",
6602 (vap
->va_mode
& S_IROTH
) ? "r" : "-",
6603 (vap
->va_mode
& S_IWOTH
) ? "w" : "-",
6604 (vap
->va_mode
& S_IXOTH
) ? "x" : "-",
6605 kauth_cred_getuid(vcp
->ctx
->vc_ucred
),
6606 on_dir
? vcp
->dvap
->va_uid
: vcp
->vap
->va_uid
,
6607 on_dir
? vcp
->dvap
->va_gid
: vcp
->vap
->va_gid
);
6612 * Authorize the deletion of the node vp from the directory dvp.
6615 * - Neither the node nor the directory are immutable.
6616 * - The user is not the superuser.
6618 * Deletion is not permitted if the directory is sticky and the caller is
6619 * not owner of the node or directory.
6621 * If either the node grants DELETE, or the directory grants DELETE_CHILD,
6622 * the node may be deleted. If neither denies the permission, and the
6623 * caller has Posix write access to the directory, then the node may be
6626 * As an optimization, we cache whether or not delete child is permitted
6627 * on directories without the sticky bit set.
6630 vnode_authorize_delete(vauth_ctx vcp
, boolean_t cached_delete_child
);
6632 vnode_authorize_delete(vauth_ctx vcp
, boolean_t cached_delete_child
)
6634 struct vnode_attr
*vap
= vcp
->vap
;
6635 struct vnode_attr
*dvap
= vcp
->dvap
;
6636 kauth_cred_t cred
= vcp
->ctx
->vc_ucred
;
6637 struct kauth_acl_eval eval
;
6638 int error
, delete_denied
, delete_child_denied
, ismember
;
6640 /* check the ACL on the directory */
6641 delete_child_denied
= 0;
6642 if (!cached_delete_child
&& VATTR_IS_NOT(dvap
, va_acl
, NULL
)) {
6643 eval
.ae_requested
= KAUTH_VNODE_DELETE_CHILD
;
6644 eval
.ae_acl
= &dvap
->va_acl
->acl_ace
[0];
6645 eval
.ae_count
= dvap
->va_acl
->acl_entrycount
;
6646 eval
.ae_options
= 0;
6647 if (vauth_dir_owner(vcp
))
6648 eval
.ae_options
|= KAUTH_AEVAL_IS_OWNER
;
6650 * We use ENOENT as a marker to indicate we could not get
6651 * information in order to delay evaluation until after we
6652 * have the ACL evaluation answer. Previously, we would
6653 * always deny the operation at this point.
6655 if ((error
= vauth_dir_ingroup(vcp
, &ismember
, ENOENT
)) != 0 && error
!= ENOENT
)
6657 if (error
== ENOENT
)
6658 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP_UNKNOWN
;
6660 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP
;
6661 eval
.ae_exp_gall
= KAUTH_VNODE_GENERIC_ALL_BITS
;
6662 eval
.ae_exp_gread
= KAUTH_VNODE_GENERIC_READ_BITS
;
6663 eval
.ae_exp_gwrite
= KAUTH_VNODE_GENERIC_WRITE_BITS
;
6664 eval
.ae_exp_gexec
= KAUTH_VNODE_GENERIC_EXECUTE_BITS
;
6667 * If there is no entry, we are going to defer to other
6668 * authorization mechanisms.
6670 error
= kauth_acl_evaluate(cred
, &eval
);
6673 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp
->vp
, error
);
6676 switch(eval
.ae_result
) {
6677 case KAUTH_RESULT_DENY
:
6678 delete_child_denied
= 1;
6681 case KAUTH_RESULT_ALLOW
:
6682 KAUTH_DEBUG("%p ALLOWED - granted by directory ACL", vcp
->vp
);
6684 case KAUTH_RESULT_DEFER
:
6686 /* Effectively the same as !delete_child_denied */
6687 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp
->vp
);
6692 /* check the ACL on the node */
6694 if (VATTR_IS_NOT(vap
, va_acl
, NULL
)) {
6695 eval
.ae_requested
= KAUTH_VNODE_DELETE
;
6696 eval
.ae_acl
= &vap
->va_acl
->acl_ace
[0];
6697 eval
.ae_count
= vap
->va_acl
->acl_entrycount
;
6698 eval
.ae_options
= 0;
6699 if (vauth_file_owner(vcp
))
6700 eval
.ae_options
|= KAUTH_AEVAL_IS_OWNER
;
6702 * We use ENOENT as a marker to indicate we could not get
6703 * information in order to delay evaluation until after we
6704 * have the ACL evaluation answer. Previously, we would
6705 * always deny the operation at this point.
6707 if ((error
= vauth_file_ingroup(vcp
, &ismember
, ENOENT
)) != 0 && error
!= ENOENT
)
6709 if (error
== ENOENT
)
6710 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP_UNKNOWN
;
6712 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP
;
6713 eval
.ae_exp_gall
= KAUTH_VNODE_GENERIC_ALL_BITS
;
6714 eval
.ae_exp_gread
= KAUTH_VNODE_GENERIC_READ_BITS
;
6715 eval
.ae_exp_gwrite
= KAUTH_VNODE_GENERIC_WRITE_BITS
;
6716 eval
.ae_exp_gexec
= KAUTH_VNODE_GENERIC_EXECUTE_BITS
;
6718 if ((error
= kauth_acl_evaluate(cred
, &eval
)) != 0) {
6719 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp
->vp
, error
);
6723 switch(eval
.ae_result
) {
6724 case KAUTH_RESULT_DENY
:
6727 case KAUTH_RESULT_ALLOW
:
6728 KAUTH_DEBUG("%p ALLOWED - granted by file ACL", vcp
->vp
);
6730 case KAUTH_RESULT_DEFER
:
6732 /* Effectively the same as !delete_child_denied */
6733 KAUTH_DEBUG("%p DEFERRED%s - by file ACL", vcp
->vp
, delete_denied
? "(DENY)" : "");
6738 /* if denied by ACL on directory or node, return denial */
6739 if (delete_denied
|| delete_child_denied
) {
6740 KAUTH_DEBUG("%p DENIED - denied by ACL", vcp
->vp
);
6744 /* enforce sticky bit behaviour */
6745 if ((dvap
->va_mode
& S_ISTXT
) && !vauth_file_owner(vcp
) && !vauth_dir_owner(vcp
)) {
6746 KAUTH_DEBUG("%p DENIED - sticky bit rules (user %d file %d dir %d)",
6747 vcp
->vp
, cred
->cr_posix
.cr_uid
, vap
->va_uid
, dvap
->va_uid
);
6751 /* check the directory */
6752 if (!cached_delete_child
&& (error
= vnode_authorize_posix(vcp
, VWRITE
, 1 /* on_dir */)) != 0) {
6753 KAUTH_DEBUG("%p DENIED - denied by posix permisssions", vcp
->vp
);
6757 /* not denied, must be OK */
6763 * Authorize an operation based on the node's attributes.
6766 vnode_authorize_simple(vauth_ctx vcp
, kauth_ace_rights_t acl_rights
, kauth_ace_rights_t preauth_rights
, boolean_t
*found_deny
)
6768 struct vnode_attr
*vap
= vcp
->vap
;
6769 kauth_cred_t cred
= vcp
->ctx
->vc_ucred
;
6770 struct kauth_acl_eval eval
;
6771 int error
, ismember
;
6772 mode_t posix_action
;
6775 * If we are the file owner, we automatically have some rights.
6777 * Do we need to expand this to support group ownership?
6779 if (vauth_file_owner(vcp
))
6780 acl_rights
&= ~(KAUTH_VNODE_WRITE_SECURITY
);
6783 * If we are checking both TAKE_OWNERSHIP and WRITE_SECURITY, we can
6784 * mask the latter. If TAKE_OWNERSHIP is requested the caller is about to
6785 * change ownership to themselves, and WRITE_SECURITY is implicitly
6786 * granted to the owner. We need to do this because at this point
6787 * WRITE_SECURITY may not be granted as the caller is not currently
6790 if ((acl_rights
& KAUTH_VNODE_TAKE_OWNERSHIP
) &&
6791 (acl_rights
& KAUTH_VNODE_WRITE_SECURITY
))
6792 acl_rights
&= ~KAUTH_VNODE_WRITE_SECURITY
;
6794 if (acl_rights
== 0) {
6795 KAUTH_DEBUG("%p ALLOWED - implicit or no rights required", vcp
->vp
);
6799 /* if we have an ACL, evaluate it */
6800 if (VATTR_IS_NOT(vap
, va_acl
, NULL
)) {
6801 eval
.ae_requested
= acl_rights
;
6802 eval
.ae_acl
= &vap
->va_acl
->acl_ace
[0];
6803 eval
.ae_count
= vap
->va_acl
->acl_entrycount
;
6804 eval
.ae_options
= 0;
6805 if (vauth_file_owner(vcp
))
6806 eval
.ae_options
|= KAUTH_AEVAL_IS_OWNER
;
6808 * We use ENOENT as a marker to indicate we could not get
6809 * information in order to delay evaluation until after we
6810 * have the ACL evaluation answer. Previously, we would
6811 * always deny the operation at this point.
6813 if ((error
= vauth_file_ingroup(vcp
, &ismember
, ENOENT
)) != 0 && error
!= ENOENT
)
6815 if (error
== ENOENT
)
6816 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP_UNKNOWN
;
6818 eval
.ae_options
|= KAUTH_AEVAL_IN_GROUP
;
6819 eval
.ae_exp_gall
= KAUTH_VNODE_GENERIC_ALL_BITS
;
6820 eval
.ae_exp_gread
= KAUTH_VNODE_GENERIC_READ_BITS
;
6821 eval
.ae_exp_gwrite
= KAUTH_VNODE_GENERIC_WRITE_BITS
;
6822 eval
.ae_exp_gexec
= KAUTH_VNODE_GENERIC_EXECUTE_BITS
;
6824 if ((error
= kauth_acl_evaluate(cred
, &eval
)) != 0) {
6825 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp
->vp
, error
);
6829 switch(eval
.ae_result
) {
6830 case KAUTH_RESULT_DENY
:
6831 KAUTH_DEBUG("%p DENIED - by ACL", vcp
->vp
);
6832 return(EACCES
); /* deny, deny, counter-allege */
6833 case KAUTH_RESULT_ALLOW
:
6834 KAUTH_DEBUG("%p ALLOWED - all rights granted by ACL", vcp
->vp
);
6836 case KAUTH_RESULT_DEFER
:
6838 /* Effectively the same as !delete_child_denied */
6839 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp
->vp
);
6843 *found_deny
= eval
.ae_found_deny
;
6845 /* fall through and evaluate residual rights */
6847 /* no ACL, everything is residual */
6848 eval
.ae_residual
= acl_rights
;
6852 * Grant residual rights that have been pre-authorized.
6854 eval
.ae_residual
&= ~preauth_rights
;
6857 * We grant WRITE_ATTRIBUTES to the owner if it hasn't been denied.
6859 if (vauth_file_owner(vcp
))
6860 eval
.ae_residual
&= ~KAUTH_VNODE_WRITE_ATTRIBUTES
;
6862 if (eval
.ae_residual
== 0) {
6863 KAUTH_DEBUG("%p ALLOWED - rights already authorized", vcp
->vp
);
6868 * Bail if we have residual rights that can't be granted by posix permissions,
6869 * or aren't presumed granted at this point.
6871 * XXX these can be collapsed for performance
6873 if (eval
.ae_residual
& KAUTH_VNODE_CHANGE_OWNER
) {
6874 KAUTH_DEBUG("%p DENIED - CHANGE_OWNER not permitted", vcp
->vp
);
6877 if (eval
.ae_residual
& KAUTH_VNODE_WRITE_SECURITY
) {
6878 KAUTH_DEBUG("%p DENIED - WRITE_SECURITY not permitted", vcp
->vp
);
6883 if (eval
.ae_residual
& KAUTH_VNODE_DELETE
)
6884 panic("vnode_authorize: can't be checking delete permission here");
6888 * Compute the fallback posix permissions that will satisfy the remaining
6892 if (eval
.ae_residual
& (KAUTH_VNODE_READ_DATA
|
6893 KAUTH_VNODE_LIST_DIRECTORY
|
6894 KAUTH_VNODE_READ_EXTATTRIBUTES
))
6895 posix_action
|= VREAD
;
6896 if (eval
.ae_residual
& (KAUTH_VNODE_WRITE_DATA
|
6897 KAUTH_VNODE_ADD_FILE
|
6898 KAUTH_VNODE_ADD_SUBDIRECTORY
|
6899 KAUTH_VNODE_DELETE_CHILD
|
6900 KAUTH_VNODE_WRITE_ATTRIBUTES
|
6901 KAUTH_VNODE_WRITE_EXTATTRIBUTES
))
6902 posix_action
|= VWRITE
;
6903 if (eval
.ae_residual
& (KAUTH_VNODE_EXECUTE
|
6904 KAUTH_VNODE_SEARCH
))
6905 posix_action
|= VEXEC
;
6907 if (posix_action
!= 0) {
6908 return(vnode_authorize_posix(vcp
, posix_action
, 0 /* !on_dir */));
6910 KAUTH_DEBUG("%p ALLOWED - residual rights %s%s%s%s%s%s%s%s%s%s%s%s%s%s granted due to no posix mapping",
6912 (eval
.ae_residual
& KAUTH_VNODE_READ_DATA
)
6913 ? vnode_isdir(vcp
->vp
) ? " LIST_DIRECTORY" : " READ_DATA" : "",
6914 (eval
.ae_residual
& KAUTH_VNODE_WRITE_DATA
)
6915 ? vnode_isdir(vcp
->vp
) ? " ADD_FILE" : " WRITE_DATA" : "",
6916 (eval
.ae_residual
& KAUTH_VNODE_EXECUTE
)
6917 ? vnode_isdir(vcp
->vp
) ? " SEARCH" : " EXECUTE" : "",
6918 (eval
.ae_residual
& KAUTH_VNODE_DELETE
)
6920 (eval
.ae_residual
& KAUTH_VNODE_APPEND_DATA
)
6921 ? vnode_isdir(vcp
->vp
) ? " ADD_SUBDIRECTORY" : " APPEND_DATA" : "",
6922 (eval
.ae_residual
& KAUTH_VNODE_DELETE_CHILD
)
6923 ? " DELETE_CHILD" : "",
6924 (eval
.ae_residual
& KAUTH_VNODE_READ_ATTRIBUTES
)
6925 ? " READ_ATTRIBUTES" : "",
6926 (eval
.ae_residual
& KAUTH_VNODE_WRITE_ATTRIBUTES
)
6927 ? " WRITE_ATTRIBUTES" : "",
6928 (eval
.ae_residual
& KAUTH_VNODE_READ_EXTATTRIBUTES
)
6929 ? " READ_EXTATTRIBUTES" : "",
6930 (eval
.ae_residual
& KAUTH_VNODE_WRITE_EXTATTRIBUTES
)
6931 ? " WRITE_EXTATTRIBUTES" : "",
6932 (eval
.ae_residual
& KAUTH_VNODE_READ_SECURITY
)
6933 ? " READ_SECURITY" : "",
6934 (eval
.ae_residual
& KAUTH_VNODE_WRITE_SECURITY
)
6935 ? " WRITE_SECURITY" : "",
6936 (eval
.ae_residual
& KAUTH_VNODE_CHECKIMMUTABLE
)
6937 ? " CHECKIMMUTABLE" : "",
6938 (eval
.ae_residual
& KAUTH_VNODE_CHANGE_OWNER
)
6939 ? " CHANGE_OWNER" : "");
6943 * Lack of required Posix permissions implies no reason to deny access.
6949 * Check for file immutability.
6952 vnode_authorize_checkimmutable(vnode_t vp
, struct vnode_attr
*vap
, int rights
, int ignore
)
6959 * Perform immutability checks for operations that change data.
6961 * Sockets, fifos and devices require special handling.
6963 switch(vp
->v_type
) {
6969 * Writing to these nodes does not change the filesystem data,
6970 * so forget that it's being tried.
6972 rights
&= ~KAUTH_VNODE_WRITE_DATA
;
6979 if (rights
& KAUTH_VNODE_WRITE_RIGHTS
) {
6981 /* check per-filesystem options if possible */
6985 /* check for no-EA filesystems */
6986 if ((rights
& KAUTH_VNODE_WRITE_EXTATTRIBUTES
) &&
6987 (vfs_flags(mp
) & MNT_NOUSERXATTR
)) {
6988 KAUTH_DEBUG("%p DENIED - filesystem disallowed extended attributes", vp
);
6989 error
= EACCES
; /* User attributes disabled */
6995 * check for file immutability. first, check if the requested rights are
6996 * allowable for a UF_APPEND file.
6999 if (vp
->v_type
== VDIR
) {
7000 if ((rights
& (KAUTH_VNODE_ADD_FILE
| KAUTH_VNODE_ADD_SUBDIRECTORY
| KAUTH_VNODE_WRITE_EXTATTRIBUTES
)) == rights
)
7003 if ((rights
& (KAUTH_VNODE_APPEND_DATA
| KAUTH_VNODE_WRITE_EXTATTRIBUTES
)) == rights
)
7006 if ((error
= vnode_immutable(vap
, append
, ignore
)) != 0) {
7007 KAUTH_DEBUG("%p DENIED - file is immutable", vp
);
7016 * Handle authorization actions for filesystems that advertise that the
7017 * server will be enforcing.
7019 * Returns: 0 Authorization should be handled locally
7020 * 1 Authorization was handled by the FS
7022 * Note: Imputed returns will only occur if the authorization request
7023 * was handled by the FS.
7025 * Imputed: *resultp, modified Return code from FS when the request is
7026 * handled by the FS.
7031 vnode_authorize_opaque(vnode_t vp
, int *resultp
, kauth_action_t action
, vfs_context_t ctx
)
7036 * If the vp is a device node, socket or FIFO it actually represents a local
7037 * endpoint, so we need to handle it locally.
7039 switch(vp
->v_type
) {
7050 * In the advisory request case, if the filesystem doesn't think it's reliable
7051 * we will attempt to formulate a result ourselves based on VNOP_GETATTR data.
7053 if ((action
& KAUTH_VNODE_ACCESS
) && !vfs_authopaqueaccess(vp
->v_mount
))
7057 * Let the filesystem have a say in the matter. It's OK for it to not implemnent
7058 * VNOP_ACCESS, as most will authorise inline with the actual request.
7060 if ((error
= VNOP_ACCESS(vp
, action
, ctx
)) != ENOTSUP
) {
7062 KAUTH_DEBUG("%p DENIED - opaque filesystem VNOP_ACCESS denied access", vp
);
7067 * Typically opaque filesystems do authorisation in-line, but exec is a special case. In
7068 * order to be reasonably sure that exec will be permitted, we try a bit harder here.
7070 if ((action
& KAUTH_VNODE_EXECUTE
) && (vp
->v_type
== VREG
)) {
7071 /* try a VNOP_OPEN for readonly access */
7072 if ((error
= VNOP_OPEN(vp
, FREAD
, ctx
)) != 0) {
7074 KAUTH_DEBUG("%p DENIED - EXECUTE denied because file could not be opened readonly", vp
);
7077 VNOP_CLOSE(vp
, FREAD
, ctx
);
7081 * We don't have any reason to believe that the request has to be denied at this point,
7082 * so go ahead and allow it.
7085 KAUTH_DEBUG("%p ALLOWED - bypassing access check for non-local filesystem", vp
);
7093 * Returns: KAUTH_RESULT_ALLOW
7096 * Imputed: *arg3, modified Error code in the deny case
7097 * EROFS Read-only file system
7098 * EACCES Permission denied
7099 * EPERM Operation not permitted [no execute]
7100 * vnode_getattr:ENOMEM Not enough space [only if has filesec]
7102 * vnode_authorize_opaque:*arg2 ???
7103 * vnode_authorize_checkimmutable:???
7104 * vnode_authorize_delete:???
7105 * vnode_authorize_simple:???
7110 vnode_authorize_callback(kauth_cred_t cred
, void *idata
, kauth_action_t action
,
7111 uintptr_t arg0
, uintptr_t arg1
, uintptr_t arg2
, uintptr_t arg3
)
7114 vnode_t cvp
= NULLVP
;
7116 int result
= KAUTH_RESULT_DENY
;
7117 int parent_iocount
= 0;
7118 int parent_action
; /* In case we need to use namedstream's data fork for cached rights*/
7120 ctx
= (vfs_context_t
)arg0
;
7122 dvp
= (vnode_t
)arg2
;
7125 * if there are 2 vnodes passed in, we don't know at
7126 * this point which rights to look at based on the
7127 * combined action being passed in... defer until later...
7128 * otherwise check the kauth 'rights' cache hung
7129 * off of the vnode we're interested in... if we've already
7130 * been granted the right we're currently interested in,
7131 * we can just return success... otherwise we'll go through
7132 * the process of authorizing the requested right(s)... if that
7133 * succeeds, we'll add the right(s) to the cache.
7134 * VNOP_SETATTR and VNOP_SETXATTR will invalidate this cache
7142 * For named streams on local-authorization volumes, rights are cached on the parent;
7143 * authorization is determined by looking at the parent's properties anyway, so storing
7144 * on the parent means that we don't recompute for the named stream and that if
7145 * we need to flush rights (e.g. on VNOP_SETATTR()) we don't need to track down the
7146 * stream to flush its cache separately. If we miss in the cache, then we authorize
7147 * as if there were no cached rights (passing the named stream vnode and desired rights to
7148 * vnode_authorize_callback_int()).
7150 * On an opaquely authorized volume, we don't know the relationship between the
7151 * data fork's properties and the rights granted on a stream. Thus, named stream vnodes
7152 * on such a volume are authorized directly (rather than using the parent) and have their
7153 * own caches. When a named stream vnode is created, we mark the parent as having a named
7154 * stream. On a VNOP_SETATTR() for the parent that may invalidate cached authorization, we
7155 * find the stream and flush its cache.
7157 if (vnode_isnamedstream(vp
) && (!vfs_authopaque(vp
->v_mount
))) {
7158 cvp
= vnode_getparent(vp
);
7159 if (cvp
!= NULLVP
) {
7163 goto defer
; /* If we can't use the parent, take the slow path */
7166 /* Have to translate some actions */
7167 parent_action
= action
;
7168 if (parent_action
& KAUTH_VNODE_READ_DATA
) {
7169 parent_action
&= ~KAUTH_VNODE_READ_DATA
;
7170 parent_action
|= KAUTH_VNODE_READ_EXTATTRIBUTES
;
7172 if (parent_action
& KAUTH_VNODE_WRITE_DATA
) {
7173 parent_action
&= ~KAUTH_VNODE_WRITE_DATA
;
7174 parent_action
|= KAUTH_VNODE_WRITE_EXTATTRIBUTES
;
7182 if (vnode_cache_is_authorized(cvp
, ctx
, parent_iocount
? parent_action
: action
) == TRUE
) {
7183 result
= KAUTH_RESULT_ALLOW
;
7187 result
= vnode_authorize_callback_int(cred
, idata
, action
, arg0
, arg1
, arg2
, arg3
);
7189 if (result
== KAUTH_RESULT_ALLOW
&& cvp
!= NULLVP
) {
7190 KAUTH_DEBUG("%p - caching action = %x", cvp
, action
);
7191 vnode_cache_authorized_action(cvp
, ctx
, action
);
7195 if (parent_iocount
) {
7204 vnode_authorize_callback_int(__unused kauth_cred_t unused_cred
, __unused
void *idata
, kauth_action_t action
,
7205 uintptr_t arg0
, uintptr_t arg1
, uintptr_t arg2
, uintptr_t arg3
)
7207 struct _vnode_authorize_context auth_context
;
7212 kauth_ace_rights_t rights
;
7213 struct vnode_attr va
, dva
;
7217 boolean_t parent_authorized_for_delete_child
= FALSE
;
7218 boolean_t found_deny
= FALSE
;
7219 boolean_t parent_ref
= FALSE
;
7221 vcp
= &auth_context
;
7222 ctx
= vcp
->ctx
= (vfs_context_t
)arg0
;
7223 vp
= vcp
->vp
= (vnode_t
)arg1
;
7224 dvp
= vcp
->dvp
= (vnode_t
)arg2
;
7225 errorp
= (int *)arg3
;
7227 * Note that we authorize against the context, not the passed cred
7228 * (the same thing anyway)
7230 cred
= ctx
->vc_ucred
;
7237 vcp
->flags
= vcp
->flags_valid
= 0;
7240 if ((ctx
== NULL
) || (vp
== NULL
) || (cred
== NULL
))
7241 panic("vnode_authorize: bad arguments (context %p vp %p cred %p)", ctx
, vp
, cred
);
7244 KAUTH_DEBUG("%p AUTH - %s %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s on %s '%s' (0x%x:%p/%p)",
7245 vp
, vfs_context_proc(ctx
)->p_comm
,
7246 (action
& KAUTH_VNODE_ACCESS
) ? "access" : "auth",
7247 (action
& KAUTH_VNODE_READ_DATA
) ? vnode_isdir(vp
) ? " LIST_DIRECTORY" : " READ_DATA" : "",
7248 (action
& KAUTH_VNODE_WRITE_DATA
) ? vnode_isdir(vp
) ? " ADD_FILE" : " WRITE_DATA" : "",
7249 (action
& KAUTH_VNODE_EXECUTE
) ? vnode_isdir(vp
) ? " SEARCH" : " EXECUTE" : "",
7250 (action
& KAUTH_VNODE_DELETE
) ? " DELETE" : "",
7251 (action
& KAUTH_VNODE_APPEND_DATA
) ? vnode_isdir(vp
) ? " ADD_SUBDIRECTORY" : " APPEND_DATA" : "",
7252 (action
& KAUTH_VNODE_DELETE_CHILD
) ? " DELETE_CHILD" : "",
7253 (action
& KAUTH_VNODE_READ_ATTRIBUTES
) ? " READ_ATTRIBUTES" : "",
7254 (action
& KAUTH_VNODE_WRITE_ATTRIBUTES
) ? " WRITE_ATTRIBUTES" : "",
7255 (action
& KAUTH_VNODE_READ_EXTATTRIBUTES
) ? " READ_EXTATTRIBUTES" : "",
7256 (action
& KAUTH_VNODE_WRITE_EXTATTRIBUTES
) ? " WRITE_EXTATTRIBUTES" : "",
7257 (action
& KAUTH_VNODE_READ_SECURITY
) ? " READ_SECURITY" : "",
7258 (action
& KAUTH_VNODE_WRITE_SECURITY
) ? " WRITE_SECURITY" : "",
7259 (action
& KAUTH_VNODE_CHANGE_OWNER
) ? " CHANGE_OWNER" : "",
7260 (action
& KAUTH_VNODE_NOIMMUTABLE
) ? " (noimmutable)" : "",
7261 vnode_isdir(vp
) ? "directory" : "file",
7262 vp
->v_name
? vp
->v_name
: "<NULL>", action
, vp
, dvp
);
7265 * Extract the control bits from the action, everything else is
7268 noimmutable
= (action
& KAUTH_VNODE_NOIMMUTABLE
) ? 1 : 0;
7269 rights
= action
& ~(KAUTH_VNODE_ACCESS
| KAUTH_VNODE_NOIMMUTABLE
);
7271 if (rights
& KAUTH_VNODE_DELETE
) {
7274 panic("vnode_authorize: KAUTH_VNODE_DELETE test requires a directory");
7277 * check to see if we've already authorized the parent
7278 * directory for deletion of its children... if so, we
7279 * can skip a whole bunch of work... we will still have to
7280 * authorize that this specific child can be removed
7282 if (vnode_cache_is_authorized(dvp
, ctx
, KAUTH_VNODE_DELETE_CHILD
) == TRUE
)
7283 parent_authorized_for_delete_child
= TRUE
;
7289 * Check for read-only filesystems.
7291 if ((rights
& KAUTH_VNODE_WRITE_RIGHTS
) &&
7292 (vp
->v_mount
->mnt_flag
& MNT_RDONLY
) &&
7293 ((vp
->v_type
== VREG
) || (vp
->v_type
== VDIR
) ||
7294 (vp
->v_type
== VLNK
) || (vp
->v_type
== VCPLX
) ||
7295 (rights
& KAUTH_VNODE_DELETE
) || (rights
& KAUTH_VNODE_DELETE_CHILD
))) {
7301 * Check for noexec filesystems.
7303 if ((rights
& KAUTH_VNODE_EXECUTE
) && (vp
->v_type
== VREG
) && (vp
->v_mount
->mnt_flag
& MNT_NOEXEC
)) {
7309 * Handle cases related to filesystems with non-local enforcement.
7310 * This call can return 0, in which case we will fall through to perform a
7311 * check based on VNOP_GETATTR data. Otherwise it returns 1 and sets
7312 * an appropriate result, at which point we can return immediately.
7314 if ((vp
->v_mount
->mnt_kern_flag
& MNTK_AUTH_OPAQUE
) && vnode_authorize_opaque(vp
, &result
, action
, ctx
))
7318 * Get vnode attributes and extended security information for the vnode
7319 * and directory if required.
7321 VATTR_WANTED(&va
, va_mode
);
7322 VATTR_WANTED(&va
, va_uid
);
7323 VATTR_WANTED(&va
, va_gid
);
7324 VATTR_WANTED(&va
, va_flags
);
7325 VATTR_WANTED(&va
, va_acl
);
7326 if ((result
= vnode_getattr(vp
, &va
, ctx
)) != 0) {
7327 KAUTH_DEBUG("%p ERROR - failed to get vnode attributes - %d", vp
, result
);
7331 VATTR_WANTED(&dva
, va_mode
);
7332 VATTR_WANTED(&dva
, va_uid
);
7333 VATTR_WANTED(&dva
, va_gid
);
7334 VATTR_WANTED(&dva
, va_flags
);
7335 VATTR_WANTED(&dva
, va_acl
);
7336 if ((result
= vnode_getattr(dvp
, &dva
, ctx
)) != 0) {
7337 KAUTH_DEBUG("%p ERROR - failed to get directory vnode attributes - %d", vp
, result
);
7343 * If the vnode is an extended attribute data vnode (eg. a resource fork), *_DATA becomes
7346 if (vnode_isnamedstream(vp
)) {
7347 if (rights
& KAUTH_VNODE_READ_DATA
) {
7348 rights
&= ~KAUTH_VNODE_READ_DATA
;
7349 rights
|= KAUTH_VNODE_READ_EXTATTRIBUTES
;
7351 if (rights
& KAUTH_VNODE_WRITE_DATA
) {
7352 rights
&= ~KAUTH_VNODE_WRITE_DATA
;
7353 rights
|= KAUTH_VNODE_WRITE_EXTATTRIBUTES
;
7358 * Point 'vp' to the resource fork's parent for ACL checking
7360 if (vnode_isnamedstream(vp
) &&
7361 (vp
->v_parent
!= NULL
) &&
7362 (vget_internal(vp
->v_parent
, 0, VNODE_NODEAD
| VNODE_DRAINO
) == 0)) {
7364 vcp
->vp
= vp
= vp
->v_parent
;
7365 if (VATTR_IS_SUPPORTED(&va
, va_acl
) && (va
.va_acl
!= NULL
))
7366 kauth_acl_free(va
.va_acl
);
7368 VATTR_WANTED(&va
, va_mode
);
7369 VATTR_WANTED(&va
, va_uid
);
7370 VATTR_WANTED(&va
, va_gid
);
7371 VATTR_WANTED(&va
, va_flags
);
7372 VATTR_WANTED(&va
, va_acl
);
7373 if ((result
= vnode_getattr(vp
, &va
, ctx
)) != 0)
7378 * Check for immutability.
7380 * In the deletion case, parent directory immutability vetoes specific
7383 if ((result
= vnode_authorize_checkimmutable(vp
, &va
, rights
, noimmutable
)) != 0)
7385 if ((rights
& KAUTH_VNODE_DELETE
) &&
7386 parent_authorized_for_delete_child
== FALSE
&&
7387 ((result
= vnode_authorize_checkimmutable(dvp
, &dva
, KAUTH_VNODE_DELETE_CHILD
, 0)) != 0))
7391 * Clear rights that have been authorized by reaching this point, bail if nothing left to
7394 rights
&= ~(KAUTH_VNODE_LINKTARGET
| KAUTH_VNODE_CHECKIMMUTABLE
);
7399 * If we're not the superuser, authorize based on file properties;
7400 * note that even if parent_authorized_for_delete_child is TRUE, we
7401 * need to check on the node itself.
7403 if (!vfs_context_issuser(ctx
)) {
7404 /* process delete rights */
7405 if ((rights
& KAUTH_VNODE_DELETE
) &&
7406 ((result
= vnode_authorize_delete(vcp
, parent_authorized_for_delete_child
)) != 0))
7409 /* process remaining rights */
7410 if ((rights
& ~KAUTH_VNODE_DELETE
) &&
7411 (result
= vnode_authorize_simple(vcp
, rights
, rights
& KAUTH_VNODE_DELETE
, &found_deny
)) != 0)
7416 * Execute is only granted to root if one of the x bits is set. This check only
7417 * makes sense if the posix mode bits are actually supported.
7419 if ((rights
& KAUTH_VNODE_EXECUTE
) &&
7420 (vp
->v_type
== VREG
) &&
7421 VATTR_IS_SUPPORTED(&va
, va_mode
) &&
7422 !(va
.va_mode
& (S_IXUSR
| S_IXGRP
| S_IXOTH
))) {
7424 KAUTH_DEBUG("%p DENIED - root execute requires at least one x bit in 0x%x", vp
, va
.va_mode
);
7428 /* Assume that there were DENYs so we don't wrongly cache KAUTH_VNODE_SEARCHBYANYONE */
7431 KAUTH_DEBUG("%p ALLOWED - caller is superuser", vp
);
7434 if (VATTR_IS_SUPPORTED(&va
, va_acl
) && (va
.va_acl
!= NULL
))
7435 kauth_acl_free(va
.va_acl
);
7436 if (VATTR_IS_SUPPORTED(&dva
, va_acl
) && (dva
.va_acl
!= NULL
))
7437 kauth_acl_free(dva
.va_acl
);
7443 KAUTH_DEBUG("%p DENIED - auth denied", vp
);
7444 return(KAUTH_RESULT_DENY
);
7446 if ((rights
& KAUTH_VNODE_SEARCH
) && found_deny
== FALSE
&& vp
->v_type
== VDIR
) {
7448 * if we were successfully granted the right to search this directory
7449 * and there were NO ACL DENYs for search and the posix permissions also don't
7450 * deny execute, we can synthesize a global right that allows anyone to
7451 * traverse this directory during a pathname lookup without having to
7452 * match the credential associated with this cache of rights.
7454 if (!VATTR_IS_SUPPORTED(&va
, va_mode
) ||
7455 ((va
.va_mode
& (S_IXUSR
| S_IXGRP
| S_IXOTH
)) ==
7456 (S_IXUSR
| S_IXGRP
| S_IXOTH
))) {
7457 vnode_cache_authorized_action(vp
, ctx
, KAUTH_VNODE_SEARCHBYANYONE
);
7460 if ((rights
& KAUTH_VNODE_DELETE
) && parent_authorized_for_delete_child
== FALSE
) {
7462 * parent was successfully and newly authorized for content deletions
7463 * add it to the cache, but only if it doesn't have the sticky
7464 * bit set on it. This same check is done earlier guarding
7465 * fetching of dva, and if we jumped to out without having done
7466 * this, we will have returned already because of a non-zero
7469 if (VATTR_IS_SUPPORTED(&dva
, va_mode
) &&
7470 !(dva
.va_mode
& (S_ISVTX
))) {
7471 /* OK to cache delete rights */
7472 KAUTH_DEBUG("%p - caching DELETE_CHILD rights", dvp
);
7473 vnode_cache_authorized_action(dvp
, ctx
, KAUTH_VNODE_DELETE_CHILD
);
7479 * Note that this implies that we will allow requests for no rights, as well as
7480 * for rights that we do not recognise. There should be none of these.
7482 KAUTH_DEBUG("%p ALLOWED - auth granted", vp
);
7483 return(KAUTH_RESULT_ALLOW
);
7487 vnode_authattr_new(vnode_t dvp
, struct vnode_attr
*vap
, int noauth
, vfs_context_t ctx
)
7489 return vnode_authattr_new_internal(dvp
, vap
, noauth
, NULL
, ctx
);
7493 * Check that the attribute information in vattr can be legally applied to
7494 * a new file by the context.
7497 vnode_authattr_new_internal(vnode_t dvp
, struct vnode_attr
*vap
, int noauth
, uint32_t *defaulted_fieldsp
, vfs_context_t ctx
)
7500 int has_priv_suser
, ismember
, defaulted_owner
, defaulted_group
, defaulted_mode
;
7507 if (defaulted_fieldsp
) {
7508 *defaulted_fieldsp
= 0;
7511 defaulted_owner
= defaulted_group
= defaulted_mode
= 0;
7514 * Require that the filesystem support extended security to apply any.
7516 if (!vfs_extendedsecurity(dvp
->v_mount
) &&
7517 (VATTR_IS_ACTIVE(vap
, va_acl
) || VATTR_IS_ACTIVE(vap
, va_uuuid
) || VATTR_IS_ACTIVE(vap
, va_guuid
))) {
7523 * Default some fields.
7528 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit owner is set, that
7529 * owner takes ownership of all new files.
7531 if ((dmp
->mnt_flag
& MNT_IGNORE_OWNERSHIP
) && (dmp
->mnt_fsowner
!= KAUTH_UID_NONE
)) {
7532 VATTR_SET(vap
, va_uid
, dmp
->mnt_fsowner
);
7533 defaulted_owner
= 1;
7535 if (!VATTR_IS_ACTIVE(vap
, va_uid
)) {
7536 /* default owner is current user */
7537 VATTR_SET(vap
, va_uid
, kauth_cred_getuid(vfs_context_ucred(ctx
)));
7538 defaulted_owner
= 1;
7543 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit grouo is set, that
7544 * group takes ownership of all new files.
7546 if ((dmp
->mnt_flag
& MNT_IGNORE_OWNERSHIP
) && (dmp
->mnt_fsgroup
!= KAUTH_GID_NONE
)) {
7547 VATTR_SET(vap
, va_gid
, dmp
->mnt_fsgroup
);
7548 defaulted_group
= 1;
7550 if (!VATTR_IS_ACTIVE(vap
, va_gid
)) {
7551 /* default group comes from parent object, fallback to current user */
7552 struct vnode_attr dva
;
7554 VATTR_WANTED(&dva
, va_gid
);
7555 if ((error
= vnode_getattr(dvp
, &dva
, ctx
)) != 0)
7557 if (VATTR_IS_SUPPORTED(&dva
, va_gid
)) {
7558 VATTR_SET(vap
, va_gid
, dva
.va_gid
);
7560 VATTR_SET(vap
, va_gid
, kauth_cred_getgid(vfs_context_ucred(ctx
)));
7562 defaulted_group
= 1;
7566 if (!VATTR_IS_ACTIVE(vap
, va_flags
))
7567 VATTR_SET(vap
, va_flags
, 0);
7569 /* default mode is everything, masked with current umask */
7570 if (!VATTR_IS_ACTIVE(vap
, va_mode
)) {
7571 VATTR_SET(vap
, va_mode
, ACCESSPERMS
& ~vfs_context_proc(ctx
)->p_fd
->fd_cmask
);
7572 KAUTH_DEBUG("ATTR - defaulting new file mode to %o from umask %o", vap
->va_mode
, vfs_context_proc(ctx
)->p_fd
->fd_cmask
);
7575 /* set timestamps to now */
7576 if (!VATTR_IS_ACTIVE(vap
, va_create_time
)) {
7577 nanotime(&vap
->va_create_time
);
7578 VATTR_SET_ACTIVE(vap
, va_create_time
);
7582 * Check for attempts to set nonsensical fields.
7584 if (vap
->va_active
& ~VNODE_ATTR_NEWOBJ
) {
7586 KAUTH_DEBUG("ATTR - ERROR - attempt to set unsupported new-file attributes %llx",
7587 vap
->va_active
& ~VNODE_ATTR_NEWOBJ
);
7592 * Quickly check for the applicability of any enforcement here.
7593 * Tests below maintain the integrity of the local security model.
7595 if (vfs_authopaque(dvp
->v_mount
))
7599 * We need to know if the caller is the superuser, or if the work is
7600 * otherwise already authorised.
7602 cred
= vfs_context_ucred(ctx
);
7604 /* doing work for the kernel */
7607 has_priv_suser
= vfs_context_issuser(ctx
);
7611 if (VATTR_IS_ACTIVE(vap
, va_flags
)) {
7612 if (has_priv_suser
) {
7613 if ((vap
->va_flags
& (UF_SETTABLE
| SF_SETTABLE
)) != vap
->va_flags
) {
7615 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7619 if ((vap
->va_flags
& UF_SETTABLE
) != vap
->va_flags
) {
7621 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7627 /* if not superuser, validate legality of new-item attributes */
7628 if (!has_priv_suser
) {
7629 if (!defaulted_mode
&& VATTR_IS_ACTIVE(vap
, va_mode
)) {
7631 if (vap
->va_mode
& S_ISGID
) {
7632 if ((error
= kauth_cred_ismember_gid(cred
, vap
->va_gid
, &ismember
)) != 0) {
7633 KAUTH_DEBUG("ATTR - ERROR: got %d checking for membership in %d", error
, vap
->va_gid
);
7637 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", vap
->va_gid
);
7644 if ((vap
->va_mode
& S_ISUID
) && (vap
->va_uid
!= kauth_cred_getuid(cred
))) {
7645 KAUTH_DEBUG("ATTR - ERROR: illegal attempt to set the setuid bit");
7650 if (!defaulted_owner
&& (vap
->va_uid
!= kauth_cred_getuid(cred
))) {
7651 KAUTH_DEBUG(" DENIED - cannot create new item owned by %d", vap
->va_uid
);
7655 if (!defaulted_group
) {
7656 if ((error
= kauth_cred_ismember_gid(cred
, vap
->va_gid
, &ismember
)) != 0) {
7657 KAUTH_DEBUG(" ERROR - got %d checking for membership in %d", error
, vap
->va_gid
);
7661 KAUTH_DEBUG(" DENIED - cannot create new item with group %d - not a member", vap
->va_gid
);
7667 /* initialising owner/group UUID */
7668 if (VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
7669 if ((error
= kauth_cred_getguid(cred
, &changer
)) != 0) {
7670 KAUTH_DEBUG(" ERROR - got %d trying to get caller UUID", error
);
7671 /* XXX ENOENT here - no GUID - should perhaps become EPERM */
7674 if (!kauth_guid_equal(&vap
->va_uuuid
, &changer
)) {
7675 KAUTH_DEBUG(" ERROR - cannot create item with supplied owner UUID - not us");
7680 if (VATTR_IS_ACTIVE(vap
, va_guuid
)) {
7681 if ((error
= kauth_cred_ismember_guid(cred
, &vap
->va_guuid
, &ismember
)) != 0) {
7682 KAUTH_DEBUG(" ERROR - got %d trying to check group membership", error
);
7686 KAUTH_DEBUG(" ERROR - cannot create item with supplied group UUID - not a member");
7693 if (defaulted_fieldsp
) {
7694 if (defaulted_mode
) {
7695 *defaulted_fieldsp
|= VATTR_PREPARE_DEFAULTED_MODE
;
7697 if (defaulted_group
) {
7698 *defaulted_fieldsp
|= VATTR_PREPARE_DEFAULTED_GID
;
7700 if (defaulted_owner
) {
7701 *defaulted_fieldsp
|= VATTR_PREPARE_DEFAULTED_UID
;
7708 * Check that the attribute information in vap can be legally written by the
7711 * Call this when you're not sure about the vnode_attr; either its contents
7712 * have come from an unknown source, or when they are variable.
7714 * Returns errno, or zero and sets *actionp to the KAUTH_VNODE_* actions that
7715 * must be authorized to be permitted to write the vattr.
7718 vnode_authattr(vnode_t vp
, struct vnode_attr
*vap
, kauth_action_t
*actionp
, vfs_context_t ctx
)
7720 struct vnode_attr ova
;
7721 kauth_action_t required_action
;
7722 int error
, has_priv_suser
, ismember
, chowner
, chgroup
, clear_suid
, clear_sgid
;
7731 required_action
= 0;
7735 * Quickly check for enforcement applicability.
7737 if (vfs_authopaque(vp
->v_mount
))
7741 * Check for attempts to set nonsensical fields.
7743 if (vap
->va_active
& VNODE_ATTR_RDONLY
) {
7744 KAUTH_DEBUG("ATTR - ERROR: attempt to set readonly attribute(s)");
7750 * We need to know if the caller is the superuser.
7752 cred
= vfs_context_ucred(ctx
);
7753 has_priv_suser
= kauth_cred_issuser(cred
);
7756 * If any of the following are changing, we need information from the old file:
7763 if (VATTR_IS_ACTIVE(vap
, va_uid
) ||
7764 VATTR_IS_ACTIVE(vap
, va_gid
) ||
7765 VATTR_IS_ACTIVE(vap
, va_mode
) ||
7766 VATTR_IS_ACTIVE(vap
, va_uuuid
) ||
7767 VATTR_IS_ACTIVE(vap
, va_guuid
)) {
7768 VATTR_WANTED(&ova
, va_mode
);
7769 VATTR_WANTED(&ova
, va_uid
);
7770 VATTR_WANTED(&ova
, va_gid
);
7771 VATTR_WANTED(&ova
, va_uuuid
);
7772 VATTR_WANTED(&ova
, va_guuid
);
7773 KAUTH_DEBUG("ATTR - security information changing, fetching existing attributes");
7777 * If timestamps are being changed, we need to know who the file is owned
7780 if (VATTR_IS_ACTIVE(vap
, va_create_time
) ||
7781 VATTR_IS_ACTIVE(vap
, va_change_time
) ||
7782 VATTR_IS_ACTIVE(vap
, va_modify_time
) ||
7783 VATTR_IS_ACTIVE(vap
, va_access_time
) ||
7784 VATTR_IS_ACTIVE(vap
, va_backup_time
)) {
7786 VATTR_WANTED(&ova
, va_uid
);
7787 #if 0 /* enable this when we support UUIDs as official owners */
7788 VATTR_WANTED(&ova
, va_uuuid
);
7790 KAUTH_DEBUG("ATTR - timestamps changing, fetching uid and GUID");
7794 * If flags are being changed, we need the old flags.
7796 if (VATTR_IS_ACTIVE(vap
, va_flags
)) {
7797 KAUTH_DEBUG("ATTR - flags changing, fetching old flags");
7798 VATTR_WANTED(&ova
, va_flags
);
7802 * If ACLs are being changed, we need the old ACLs.
7804 if (VATTR_IS_ACTIVE(vap
, va_acl
)) {
7805 KAUTH_DEBUG("ATTR - acl changing, fetching old flags");
7806 VATTR_WANTED(&ova
, va_acl
);
7810 * If the size is being set, make sure it's not a directory.
7812 if (VATTR_IS_ACTIVE(vap
, va_data_size
)) {
7813 /* size is only meaningful on regular files, don't permit otherwise */
7814 if (!vnode_isreg(vp
)) {
7815 KAUTH_DEBUG("ATTR - ERROR: size change requested on non-file");
7816 error
= vnode_isdir(vp
) ? EISDIR
: EINVAL
;
7824 KAUTH_DEBUG("ATTR - fetching old attributes %016llx", ova
.va_active
);
7825 if ((error
= vnode_getattr(vp
, &ova
, ctx
)) != 0) {
7826 KAUTH_DEBUG(" ERROR - got %d trying to get attributes", error
);
7831 * Size changes require write access to the file data.
7833 if (VATTR_IS_ACTIVE(vap
, va_data_size
)) {
7834 /* if we can't get the size, or it's different, we need write access */
7835 KAUTH_DEBUG("ATTR - size change, requiring WRITE_DATA");
7836 required_action
|= KAUTH_VNODE_WRITE_DATA
;
7840 * Changing timestamps?
7842 * Note that we are only called to authorize user-requested time changes;
7843 * side-effect time changes are not authorized. Authorisation is only
7844 * required for existing files.
7846 * Non-owners are not permitted to change the time on an existing
7847 * file to anything other than the current time.
7849 if (VATTR_IS_ACTIVE(vap
, va_create_time
) ||
7850 VATTR_IS_ACTIVE(vap
, va_change_time
) ||
7851 VATTR_IS_ACTIVE(vap
, va_modify_time
) ||
7852 VATTR_IS_ACTIVE(vap
, va_access_time
) ||
7853 VATTR_IS_ACTIVE(vap
, va_backup_time
)) {
7855 * The owner and root may set any timestamps they like,
7856 * provided that the file is not immutable. The owner still needs
7857 * WRITE_ATTRIBUTES (implied by ownership but still deniable).
7859 if (has_priv_suser
|| vauth_node_owner(&ova
, cred
)) {
7860 KAUTH_DEBUG("ATTR - root or owner changing timestamps");
7861 required_action
|= KAUTH_VNODE_CHECKIMMUTABLE
| KAUTH_VNODE_WRITE_ATTRIBUTES
;
7863 /* just setting the current time? */
7864 if (vap
->va_vaflags
& VA_UTIMES_NULL
) {
7865 KAUTH_DEBUG("ATTR - non-root/owner changing timestamps, requiring WRITE_ATTRIBUTES");
7866 required_action
|= KAUTH_VNODE_WRITE_ATTRIBUTES
;
7868 KAUTH_DEBUG("ATTR - ERROR: illegal timestamp modification attempted");
7876 * Changing file mode?
7878 if (VATTR_IS_ACTIVE(vap
, va_mode
) && VATTR_IS_SUPPORTED(&ova
, va_mode
) && (ova
.va_mode
!= vap
->va_mode
)) {
7879 KAUTH_DEBUG("ATTR - mode change from %06o to %06o", ova
.va_mode
, vap
->va_mode
);
7882 * Mode changes always have the same basic auth requirements.
7884 if (has_priv_suser
) {
7885 KAUTH_DEBUG("ATTR - superuser mode change, requiring immutability check");
7886 required_action
|= KAUTH_VNODE_CHECKIMMUTABLE
;
7888 /* need WRITE_SECURITY */
7889 KAUTH_DEBUG("ATTR - non-superuser mode change, requiring WRITE_SECURITY");
7890 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
7894 * Can't set the setgid bit if you're not in the group and not root. Have to have
7895 * existing group information in the case we're not setting it right now.
7897 if (vap
->va_mode
& S_ISGID
) {
7898 required_action
|= KAUTH_VNODE_CHECKIMMUTABLE
; /* always required */
7899 if (!has_priv_suser
) {
7900 if (VATTR_IS_ACTIVE(vap
, va_gid
)) {
7901 group
= vap
->va_gid
;
7902 } else if (VATTR_IS_SUPPORTED(&ova
, va_gid
)) {
7905 KAUTH_DEBUG("ATTR - ERROR: setgid but no gid available");
7910 * This might be too restrictive; WRITE_SECURITY might be implied by
7911 * membership in this case, rather than being an additional requirement.
7913 if ((error
= kauth_cred_ismember_gid(cred
, group
, &ismember
)) != 0) {
7914 KAUTH_DEBUG("ATTR - ERROR: got %d checking for membership in %d", error
, vap
->va_gid
);
7918 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", group
);
7926 * Can't set the setuid bit unless you're root or the file's owner.
7928 if (vap
->va_mode
& S_ISUID
) {
7929 required_action
|= KAUTH_VNODE_CHECKIMMUTABLE
; /* always required */
7930 if (!has_priv_suser
) {
7931 if (VATTR_IS_ACTIVE(vap
, va_uid
)) {
7932 owner
= vap
->va_uid
;
7933 } else if (VATTR_IS_SUPPORTED(&ova
, va_uid
)) {
7936 KAUTH_DEBUG("ATTR - ERROR: setuid but no uid available");
7940 if (owner
!= kauth_cred_getuid(cred
)) {
7942 * We could allow this if WRITE_SECURITY is permitted, perhaps.
7944 KAUTH_DEBUG("ATTR - ERROR: illegal attempt to set the setuid bit");
7953 * Validate/mask flags changes. This checks that only the flags in
7954 * the UF_SETTABLE mask are being set, and preserves the flags in
7955 * the SF_SETTABLE case.
7957 * Since flags changes may be made in conjunction with other changes,
7958 * we will ask the auth code to ignore immutability in the case that
7959 * the SF_* flags are not set and we are only manipulating the file flags.
7962 if (VATTR_IS_ACTIVE(vap
, va_flags
)) {
7963 /* compute changing flags bits */
7964 if (VATTR_IS_SUPPORTED(&ova
, va_flags
)) {
7965 fdelta
= vap
->va_flags
^ ova
.va_flags
;
7967 fdelta
= vap
->va_flags
;
7971 KAUTH_DEBUG("ATTR - flags changing, requiring WRITE_SECURITY");
7972 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
7974 /* check that changing bits are legal */
7975 if (has_priv_suser
) {
7977 * The immutability check will prevent us from clearing the SF_*
7978 * flags unless the system securelevel permits it, so just check
7979 * for legal flags here.
7981 if (fdelta
& ~(UF_SETTABLE
| SF_SETTABLE
)) {
7983 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7987 if (fdelta
& ~UF_SETTABLE
) {
7989 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7994 * If the caller has the ability to manipulate file flags,
7995 * security is not reduced by ignoring them for this operation.
7997 * A more complete test here would consider the 'after' states of the flags
7998 * to determine whether it would permit the operation, but this becomes
8001 * Ignoring immutability is conditional on securelevel; this does not bypass
8002 * the SF_* flags if securelevel > 0.
8004 required_action
|= KAUTH_VNODE_NOIMMUTABLE
;
8009 * Validate ownership information.
8018 * Note that if the filesystem didn't give us a UID, we expect that it doesn't
8019 * support them in general, and will ignore it if/when we try to set it.
8020 * We might want to clear the uid out of vap completely here.
8022 if (VATTR_IS_ACTIVE(vap
, va_uid
)) {
8023 if (VATTR_IS_SUPPORTED(&ova
, va_uid
) && (vap
->va_uid
!= ova
.va_uid
)) {
8024 if (!has_priv_suser
&& (kauth_cred_getuid(cred
) != vap
->va_uid
)) {
8025 KAUTH_DEBUG(" DENIED - non-superuser cannot change ownershipt to a third party");
8036 * Note that if the filesystem didn't give us a GID, we expect that it doesn't
8037 * support them in general, and will ignore it if/when we try to set it.
8038 * We might want to clear the gid out of vap completely here.
8040 if (VATTR_IS_ACTIVE(vap
, va_gid
)) {
8041 if (VATTR_IS_SUPPORTED(&ova
, va_gid
) && (vap
->va_gid
!= ova
.va_gid
)) {
8042 if (!has_priv_suser
) {
8043 if ((error
= kauth_cred_ismember_gid(cred
, vap
->va_gid
, &ismember
)) != 0) {
8044 KAUTH_DEBUG(" ERROR - got %d checking for membership in %d", error
, vap
->va_gid
);
8048 KAUTH_DEBUG(" DENIED - group change from %d to %d but not a member of target group",
8049 ova
.va_gid
, vap
->va_gid
);
8060 * Owner UUID being set or changed.
8062 if (VATTR_IS_ACTIVE(vap
, va_uuuid
)) {
8063 /* if the owner UUID is not actually changing ... */
8064 if (VATTR_IS_SUPPORTED(&ova
, va_uuuid
)) {
8065 if (kauth_guid_equal(&vap
->va_uuuid
, &ova
.va_uuuid
))
8066 goto no_uuuid_change
;
8069 * If the current owner UUID is a null GUID, check
8070 * it against the UUID corresponding to the owner UID.
8072 if (kauth_guid_equal(&ova
.va_uuuid
, &kauth_null_guid
) &&
8073 VATTR_IS_SUPPORTED(&ova
, va_uid
)) {
8076 if (kauth_cred_uid2guid(ova
.va_uid
, &uid_guid
) == 0 &&
8077 kauth_guid_equal(&vap
->va_uuuid
, &uid_guid
))
8078 goto no_uuuid_change
;
8083 * The owner UUID cannot be set by a non-superuser to anything other than
8084 * their own or a null GUID (to "unset" the owner UUID).
8085 * Note that file systems must be prepared to handle the
8086 * null UUID case in a manner appropriate for that file
8089 if (!has_priv_suser
) {
8090 if ((error
= kauth_cred_getguid(cred
, &changer
)) != 0) {
8091 KAUTH_DEBUG(" ERROR - got %d trying to get caller UUID", error
);
8092 /* XXX ENOENT here - no UUID - should perhaps become EPERM */
8095 if (!kauth_guid_equal(&vap
->va_uuuid
, &changer
) &&
8096 !kauth_guid_equal(&vap
->va_uuuid
, &kauth_null_guid
)) {
8097 KAUTH_DEBUG(" ERROR - cannot set supplied owner UUID - not us / null");
8107 * Group UUID being set or changed.
8109 if (VATTR_IS_ACTIVE(vap
, va_guuid
)) {
8110 /* if the group UUID is not actually changing ... */
8111 if (VATTR_IS_SUPPORTED(&ova
, va_guuid
)) {
8112 if (kauth_guid_equal(&vap
->va_guuid
, &ova
.va_guuid
))
8113 goto no_guuid_change
;
8116 * If the current group UUID is a null UUID, check
8117 * it against the UUID corresponding to the group GID.
8119 if (kauth_guid_equal(&ova
.va_guuid
, &kauth_null_guid
) &&
8120 VATTR_IS_SUPPORTED(&ova
, va_gid
)) {
8123 if (kauth_cred_gid2guid(ova
.va_gid
, &gid_guid
) == 0 &&
8124 kauth_guid_equal(&vap
->va_guuid
, &gid_guid
))
8125 goto no_guuid_change
;
8130 * The group UUID cannot be set by a non-superuser to anything other than
8131 * one of which they are a member or a null GUID (to "unset"
8133 * Note that file systems must be prepared to handle the
8134 * null UUID case in a manner appropriate for that file
8137 if (!has_priv_suser
) {
8138 if (kauth_guid_equal(&vap
->va_guuid
, &kauth_null_guid
))
8140 else if ((error
= kauth_cred_ismember_guid(cred
, &vap
->va_guuid
, &ismember
)) != 0) {
8141 KAUTH_DEBUG(" ERROR - got %d trying to check group membership", error
);
8145 KAUTH_DEBUG(" ERROR - cannot set supplied group UUID - not a member / null");
8155 * Compute authorisation for group/ownership changes.
8157 if (chowner
|| chgroup
|| clear_suid
|| clear_sgid
) {
8158 if (has_priv_suser
) {
8159 KAUTH_DEBUG("ATTR - superuser changing file owner/group, requiring immutability check");
8160 required_action
|= KAUTH_VNODE_CHECKIMMUTABLE
;
8163 KAUTH_DEBUG("ATTR - ownership change, requiring TAKE_OWNERSHIP");
8164 required_action
|= KAUTH_VNODE_TAKE_OWNERSHIP
;
8166 if (chgroup
&& !chowner
) {
8167 KAUTH_DEBUG("ATTR - group change, requiring WRITE_SECURITY");
8168 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
8171 /* clear set-uid and set-gid bits as required by Posix */
8172 if (VATTR_IS_ACTIVE(vap
, va_mode
)) {
8173 newmode
= vap
->va_mode
;
8174 } else if (VATTR_IS_SUPPORTED(&ova
, va_mode
)) {
8175 newmode
= ova
.va_mode
;
8177 KAUTH_DEBUG("CHOWN - trying to change owner but cannot get mode from filesystem to mask setugid bits");
8180 if (newmode
& (S_ISUID
| S_ISGID
)) {
8181 VATTR_SET(vap
, va_mode
, newmode
& ~(S_ISUID
| S_ISGID
));
8182 KAUTH_DEBUG("CHOWN - masking setugid bits from mode %o to %o", newmode
, vap
->va_mode
);
8188 * Authorise changes in the ACL.
8190 if (VATTR_IS_ACTIVE(vap
, va_acl
)) {
8192 /* no existing ACL */
8193 if (!VATTR_IS_ACTIVE(&ova
, va_acl
) || (ova
.va_acl
== NULL
)) {
8196 if (vap
->va_acl
!= NULL
) {
8197 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
8198 KAUTH_DEBUG("CHMOD - adding ACL");
8201 /* removing an existing ACL */
8202 } else if (vap
->va_acl
== NULL
) {
8203 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
8204 KAUTH_DEBUG("CHMOD - removing ACL");
8206 /* updating an existing ACL */
8208 if (vap
->va_acl
->acl_entrycount
!= ova
.va_acl
->acl_entrycount
) {
8209 /* entry count changed, must be different */
8210 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
8211 KAUTH_DEBUG("CHMOD - adding/removing ACL entries");
8212 } else if (vap
->va_acl
->acl_entrycount
> 0) {
8213 /* both ACLs have the same ACE count, said count is 1 or more, bitwise compare ACLs */
8214 if (memcmp(&vap
->va_acl
->acl_ace
[0], &ova
.va_acl
->acl_ace
[0],
8215 sizeof(struct kauth_ace
) * vap
->va_acl
->acl_entrycount
)) {
8216 required_action
|= KAUTH_VNODE_WRITE_SECURITY
;
8217 KAUTH_DEBUG("CHMOD - changing ACL entries");
8224 * Other attributes that require authorisation.
8226 if (VATTR_IS_ACTIVE(vap
, va_encoding
))
8227 required_action
|= KAUTH_VNODE_WRITE_ATTRIBUTES
;
8230 if (VATTR_IS_SUPPORTED(&ova
, va_acl
) && (ova
.va_acl
!= NULL
))
8231 kauth_acl_free(ova
.va_acl
);
8233 *actionp
= required_action
;
8238 setlocklocal_callback(struct vnode
*vp
, __unused
void *cargs
)
8240 vnode_lock_spin(vp
);
8241 vp
->v_flag
|= VLOCKLOCAL
;
8244 return (VNODE_RETURNED
);
8248 vfs_setlocklocal(mount_t mp
)
8250 mount_lock_spin(mp
);
8251 mp
->mnt_kern_flag
|= MNTK_LOCK_LOCAL
;
8255 * The number of active vnodes is expected to be
8256 * very small when vfs_setlocklocal is invoked.
8258 vnode_iterate(mp
, 0, setlocklocal_callback
, NULL
);
8262 vfs_setcompoundopen(mount_t mp
)
8264 mount_lock_spin(mp
);
8265 mp
->mnt_compound_ops
|= COMPOUND_VNOP_OPEN
;
8271 vnode_setswapmount(vnode_t vp
)
8273 mount_lock(vp
->v_mount
);
8274 vp
->v_mount
->mnt_kern_flag
|= MNTK_SWAP_MOUNT
;
8275 mount_unlock(vp
->v_mount
);
8280 vnode_getswappin_avail(vnode_t vp
)
8282 int64_t max_swappin_avail
= 0;
8284 mount_lock(vp
->v_mount
);
8285 if (vp
->v_mount
->mnt_ioflags
& MNT_IOFLAGS_SWAPPIN_SUPPORTED
)
8286 max_swappin_avail
= vp
->v_mount
->mnt_max_swappin_available
;
8287 mount_unlock(vp
->v_mount
);
8289 return (max_swappin_avail
);
8294 vn_setunionwait(vnode_t vp
)
8296 vnode_lock_spin(vp
);
8297 vp
->v_flag
|= VISUNION
;
8303 vn_checkunionwait(vnode_t vp
)
8305 vnode_lock_spin(vp
);
8306 while ((vp
->v_flag
& VISUNION
) == VISUNION
)
8307 msleep((caddr_t
)&vp
->v_flag
, &vp
->v_lock
, 0, 0, 0);
8312 vn_clearunionwait(vnode_t vp
, int locked
)
8315 vnode_lock_spin(vp
);
8316 if((vp
->v_flag
& VISUNION
) == VISUNION
) {
8317 vp
->v_flag
&= ~VISUNION
;
8318 wakeup((caddr_t
)&vp
->v_flag
);
8325 * Removes orphaned apple double files during a rmdir
8327 * 1. vnode_suspend().
8328 * 2. Call VNOP_READDIR() till the end of directory is reached.
8329 * 3. Check if the directory entries returned are regular files with name starting with "._". If not, return ENOTEMPTY.
8330 * 4. Continue (2) and (3) till end of directory is reached.
8331 * 5. If all the entries in the directory were files with "._" name, delete all the files.
8333 * 7. If deletion of all files succeeded, call VNOP_RMDIR() again.
8336 errno_t
rmdir_remove_orphaned_appleDouble(vnode_t vp
, vfs_context_t ctx
, int * restart_flag
)
8339 #define UIO_BUFF_SIZE 2048
8341 int eofflag
, siz
= UIO_BUFF_SIZE
, nentries
= 0;
8342 int open_flag
= 0, full_erase_flag
= 0;
8343 char uio_buf
[ UIO_SIZEOF(1) ];
8350 error
= vnode_suspend(vp
);
8353 * restart_flag is set so that the calling rmdir sleeps and resets
8363 MALLOC(rbuf
, caddr_t
, siz
, M_TEMP
, M_WAITOK
);
8365 auio
= uio_createwithbuffer(1, 0, UIO_SYSSPACE
, UIO_READ
,
8366 &uio_buf
[0], sizeof(uio_buf
));
8367 if (!rbuf
|| !auio
) {
8372 uio_setoffset(auio
,0);
8376 if ((error
= VNOP_OPEN(vp
, FREAD
, ctx
)))
8382 * First pass checks if all files are appleDouble files.
8386 siz
= UIO_BUFF_SIZE
;
8387 uio_reset(auio
, uio_offset(auio
), UIO_SYSSPACE
, UIO_READ
);
8388 uio_addiov(auio
, CAST_USER_ADDR_T(rbuf
), UIO_BUFF_SIZE
);
8390 if((error
= VNOP_READDIR(vp
, auio
, 0, &eofflag
, &nentries
, ctx
)))
8393 if (uio_resid(auio
) != 0)
8394 siz
-= uio_resid(auio
);
8397 * Iterate through directory
8399 dir_pos
= (void*) rbuf
;
8400 dir_end
= (void*) (rbuf
+ siz
);
8401 dp
= (struct dirent
*) (dir_pos
);
8403 if (dir_pos
== dir_end
)
8406 while (dir_pos
< dir_end
) {
8408 * Check for . and .. as well as directories
8410 if (dp
->d_ino
!= 0 &&
8411 !((dp
->d_namlen
== 1 && dp
->d_name
[0] == '.') ||
8412 (dp
->d_namlen
== 2 && dp
->d_name
[0] == '.' && dp
->d_name
[1] == '.'))) {
8414 * Check for irregular files and ._ files
8415 * If there is a ._._ file abort the op
8417 if ( dp
->d_namlen
< 2 ||
8418 strncmp(dp
->d_name
,"._",2) ||
8419 (dp
->d_namlen
>= 4 && !strncmp(&(dp
->d_name
[2]), "._",2))) {
8424 dir_pos
= (void*) ((uint8_t*)dir_pos
+ dp
->d_reclen
);
8425 dp
= (struct dirent
*)dir_pos
;
8429 * workaround for HFS/NFS setting eofflag before end of file
8431 if (vp
->v_tag
== VT_HFS
&& nentries
> 2)
8434 if (vp
->v_tag
== VT_NFS
) {
8435 if (eofflag
&& !full_erase_flag
) {
8436 full_erase_flag
= 1;
8438 uio_reset(auio
, 0, UIO_SYSSPACE
, UIO_READ
);
8440 else if (!eofflag
&& full_erase_flag
)
8441 full_erase_flag
= 0;
8446 * If we've made it here all the files in the dir are ._ files.
8447 * We can delete the files even though the node is suspended
8448 * because we are the owner of the file.
8451 uio_reset(auio
, 0, UIO_SYSSPACE
, UIO_READ
);
8453 full_erase_flag
= 0;
8456 siz
= UIO_BUFF_SIZE
;
8457 uio_reset(auio
, uio_offset(auio
), UIO_SYSSPACE
, UIO_READ
);
8458 uio_addiov(auio
, CAST_USER_ADDR_T(rbuf
), UIO_BUFF_SIZE
);
8460 error
= VNOP_READDIR(vp
, auio
, 0, &eofflag
, &nentries
, ctx
);
8465 if (uio_resid(auio
) != 0)
8466 siz
-= uio_resid(auio
);
8469 * Iterate through directory
8471 dir_pos
= (void*) rbuf
;
8472 dir_end
= (void*) (rbuf
+ siz
);
8473 dp
= (struct dirent
*) dir_pos
;
8475 if (dir_pos
== dir_end
)
8478 while (dir_pos
< dir_end
) {
8480 * Check for . and .. as well as directories
8482 if (dp
->d_ino
!= 0 &&
8483 !((dp
->d_namlen
== 1 && dp
->d_name
[0] == '.') ||
8484 (dp
->d_namlen
== 2 && dp
->d_name
[0] == '.' && dp
->d_name
[1] == '.'))
8487 error
= unlink1(ctx
, vp
,
8488 CAST_USER_ADDR_T(dp
->d_name
), UIO_SYSSPACE
,
8489 VNODE_REMOVE_SKIP_NAMESPACE_EVENT
|
8490 VNODE_REMOVE_NO_AUDIT_PATH
);
8492 if (error
&& error
!= ENOENT
) {
8497 dir_pos
= (void*) ((uint8_t*)dir_pos
+ dp
->d_reclen
);
8498 dp
= (struct dirent
*)dir_pos
;
8502 * workaround for HFS/NFS setting eofflag before end of file
8504 if (vp
->v_tag
== VT_HFS
&& nentries
> 2)
8507 if (vp
->v_tag
== VT_NFS
) {
8508 if (eofflag
&& !full_erase_flag
) {
8509 full_erase_flag
= 1;
8511 uio_reset(auio
, 0, UIO_SYSSPACE
, UIO_READ
);
8513 else if (!eofflag
&& full_erase_flag
)
8514 full_erase_flag
= 0;
8524 VNOP_CLOSE(vp
, FREAD
, ctx
);
8539 lock_vnode_and_post(vnode_t vp
, int kevent_num
)
8541 /* Only take the lock if there's something there! */
8542 if (vp
->v_knotes
.slh_first
!= NULL
) {
8544 KNOTE(&vp
->v_knotes
, kevent_num
);
8549 void panic_print_vnodes(void);
8550 /* define PANIC_PRINTS_VNODES only if investigation is required. */
8551 #ifdef PANIC_PRINTS_VNODES
8553 static const char *__vtype(uint16_t vtype
)
8582 * build a path from the bottom up
8583 * NOTE: called from the panic path - no alloc'ing of memory and no locks!
8585 static char *__vpath(vnode_t vp
, char *str
, int len
, int depth
)
8593 /* str + len is the start of the string we created */
8597 /* follow mount vnodes to get the full path */
8598 if ((vp
->v_flag
& VROOT
)) {
8599 if (vp
->v_mount
!= NULL
&& vp
->v_mount
->mnt_vnodecovered
) {
8600 return __vpath(vp
->v_mount
->mnt_vnodecovered
,
8607 vnm_len
= strlen(src
);
8608 if (vnm_len
> len
) {
8609 /* truncate the name to fit in the string */
8610 src
+= (vnm_len
- len
);
8614 /* start from the back and copy just characters (no NULLs) */
8616 /* this will chop off leaf path (file) names */
8618 dst
= str
+ len
- vnm_len
;
8619 memcpy(dst
, src
, vnm_len
);
8625 if (vp
->v_parent
&& len
> 1) {
8626 /* follow parents up the chain */
8629 return __vpath(vp
->v_parent
, str
, len
, depth
+ 1);
8635 extern int kdb_printf(const char *format
, ...) __printflike(1,2);
8637 #define SANE_VNODE_PRINT_LIMIT 5000
8638 void panic_print_vnodes(void)
8647 kdb_printf("\n***** VNODES *****\n"
8648 "TYPE UREF ICNT PATH\n");
8650 /* NULL-terminate the path name */
8651 vname
[sizeof(vname
)-1] = '\0';
8654 * iterate all vnodelist items in all mounts (mntlist) -> mnt_vnodelist
8656 TAILQ_FOREACH(mnt
, &mountlist
, mnt_list
) {
8657 TAILQ_FOREACH(vp
, &mnt
->mnt_vnodelist
, v_mntvnodes
) {
8658 if (++nvnodes
> SANE_VNODE_PRINT_LIMIT
)
8660 type
= __vtype(vp
->v_type
);
8661 nm
= __vpath(vp
, vname
, sizeof(vname
)-1, 0);
8662 kdb_printf("%s %0d %0d %s\n",
8663 type
, vp
->v_usecount
, vp
->v_iocount
, nm
);
8668 #else /* !PANIC_PRINTS_VNODES */
8669 void panic_print_vnodes(void)
8677 static void record_vp(vnode_t vp
, int count
) {
8684 if ((vp
->v_flag
& VSYSTEM
))
8687 ut
= get_bsdthread_info(current_thread());
8688 ut
->uu_iocount
+= count
;
8691 if (ut
->uu_vpindex
< 32) {
8692 OSBacktrace((void **)&ut
->uu_pcs
[ut
->uu_vpindex
][0], 10);
8694 ut
->uu_vps
[ut
->uu_vpindex
] = vp
;
8704 #define TRIG_DEBUG 0
8707 #define TRIG_LOG(...) do { printf("%s: ", __FUNCTION__); printf(__VA_ARGS__); } while (0)
8709 #define TRIG_LOG(...)
8713 * Resolver result functions
8717 vfs_resolver_result(uint32_t seq
, enum resolver_status stat
, int aux
)
8720 * |<--- 32 --->|<--- 28 --->|<- 4 ->|
8721 * sequence auxiliary status
8723 return (((uint64_t)seq
) << 32) |
8724 (((uint64_t)(aux
& 0x0fffffff)) << 4) |
8725 (uint64_t)(stat
& 0x0000000F);
8728 enum resolver_status
8729 vfs_resolver_status(resolver_result_t result
)
8731 /* lower 4 bits is status */
8732 return (result
& 0x0000000F);
8736 vfs_resolver_sequence(resolver_result_t result
)
8738 /* upper 32 bits is sequence */
8739 return (uint32_t)(result
>> 32);
8743 vfs_resolver_auxiliary(resolver_result_t result
)
8745 /* 28 bits of auxiliary */
8746 return (int)(((uint32_t)(result
& 0xFFFFFFF0)) >> 4);
8751 * Call in for resolvers to update vnode trigger state
8754 vnode_trigger_update(vnode_t vp
, resolver_result_t result
)
8758 enum resolver_status stat
;
8760 if (vp
->v_resolve
== NULL
) {
8764 stat
= vfs_resolver_status(result
);
8765 seq
= vfs_resolver_sequence(result
);
8767 if ((stat
!= RESOLVER_RESOLVED
) && (stat
!= RESOLVER_UNRESOLVED
)) {
8772 lck_mtx_lock(&rp
->vr_lock
);
8774 if (seq
> rp
->vr_lastseq
) {
8775 if (stat
== RESOLVER_RESOLVED
)
8776 rp
->vr_flags
|= VNT_RESOLVED
;
8778 rp
->vr_flags
&= ~VNT_RESOLVED
;
8780 rp
->vr_lastseq
= seq
;
8783 lck_mtx_unlock(&rp
->vr_lock
);
8789 vnode_resolver_attach(vnode_t vp
, vnode_resolve_t rp
, boolean_t ref
)
8793 vnode_lock_spin(vp
);
8794 if (vp
->v_resolve
!= NULL
) {
8803 error
= vnode_ref_ext(vp
, O_EVTONLY
, VNODE_REF_FORCE
);
8805 panic("VNODE_REF_FORCE didn't help...");
8813 * VFS internal interfaces for vnode triggers
8815 * vnode must already have an io count on entry
8816 * v_resolve is stable when io count is non-zero
8819 vnode_resolver_create(mount_t mp
, vnode_t vp
, struct vnode_trigger_param
*tinfo
, boolean_t external
)
8826 /* minimum pointer test (debugging) */
8827 if (tinfo
->vnt_data
)
8828 byte
= *((char *)tinfo
->vnt_data
);
8830 MALLOC(rp
, vnode_resolve_t
, sizeof(*rp
), M_TEMP
, M_WAITOK
);
8834 lck_mtx_init(&rp
->vr_lock
, trigger_vnode_lck_grp
, trigger_vnode_lck_attr
);
8836 rp
->vr_resolve_func
= tinfo
->vnt_resolve_func
;
8837 rp
->vr_unresolve_func
= tinfo
->vnt_unresolve_func
;
8838 rp
->vr_rearm_func
= tinfo
->vnt_rearm_func
;
8839 rp
->vr_reclaim_func
= tinfo
->vnt_reclaim_func
;
8840 rp
->vr_data
= tinfo
->vnt_data
;
8842 rp
->vr_flags
= tinfo
->vnt_flags
& VNT_VALID_MASK
;
8844 rp
->vr_flags
|= VNT_EXTERNAL
;
8847 result
= vnode_resolver_attach(vp
, rp
, external
);
8853 OSAddAtomic(1, &mp
->mnt_numtriggers
);
8864 vnode_resolver_release(vnode_resolve_t rp
)
8867 * Give them a chance to free any private data
8869 if (rp
->vr_data
&& rp
->vr_reclaim_func
) {
8870 rp
->vr_reclaim_func(NULLVP
, rp
->vr_data
);
8873 lck_mtx_destroy(&rp
->vr_lock
, trigger_vnode_lck_grp
);
8878 /* Called after the vnode has been drained */
8880 vnode_resolver_detach(vnode_t vp
)
8885 mp
= vnode_mount(vp
);
8889 vp
->v_resolve
= NULL
;
8892 if ((rp
->vr_flags
& VNT_EXTERNAL
) != 0) {
8893 vnode_rele_ext(vp
, O_EVTONLY
, 1);
8896 vnode_resolver_release(rp
);
8898 /* Keep count of active trigger vnodes per mount */
8899 OSAddAtomic(-1, &mp
->mnt_numtriggers
);
8904 vnode_trigger_rearm(vnode_t vp
, vfs_context_t ctx
)
8907 resolver_result_t result
;
8908 enum resolver_status status
;
8911 if ((vp
->v_resolve
== NULL
) ||
8912 (vp
->v_resolve
->vr_rearm_func
== NULL
) ||
8913 (vp
->v_resolve
->vr_flags
& VNT_AUTO_REARM
) == 0) {
8918 lck_mtx_lock(&rp
->vr_lock
);
8921 * Check if VFS initiated this unmount. If so, we'll catch it after the unresolve completes.
8923 if (rp
->vr_flags
& VNT_VFS_UNMOUNTED
) {
8924 lck_mtx_unlock(&rp
->vr_lock
);
8928 /* Check if this vnode is already armed */
8929 if ((rp
->vr_flags
& VNT_RESOLVED
) == 0) {
8930 lck_mtx_unlock(&rp
->vr_lock
);
8934 lck_mtx_unlock(&rp
->vr_lock
);
8936 result
= rp
->vr_rearm_func(vp
, 0, rp
->vr_data
, ctx
);
8937 status
= vfs_resolver_status(result
);
8938 seq
= vfs_resolver_sequence(result
);
8940 lck_mtx_lock(&rp
->vr_lock
);
8941 if (seq
> rp
->vr_lastseq
) {
8942 if (status
== RESOLVER_UNRESOLVED
)
8943 rp
->vr_flags
&= ~VNT_RESOLVED
;
8944 rp
->vr_lastseq
= seq
;
8946 lck_mtx_unlock(&rp
->vr_lock
);
8951 vnode_trigger_resolve(vnode_t vp
, struct nameidata
*ndp
, vfs_context_t ctx
)
8954 enum path_operation op
;
8955 resolver_result_t result
;
8956 enum resolver_status status
;
8959 /* Only trigger on topmost vnodes */
8960 if ((vp
->v_resolve
== NULL
) ||
8961 (vp
->v_resolve
->vr_resolve_func
== NULL
) ||
8962 (vp
->v_mountedhere
!= NULL
)) {
8967 lck_mtx_lock(&rp
->vr_lock
);
8969 /* Check if this vnode is already resolved */
8970 if (rp
->vr_flags
& VNT_RESOLVED
) {
8971 lck_mtx_unlock(&rp
->vr_lock
);
8975 lck_mtx_unlock(&rp
->vr_lock
);
8979 * assumes that resolver will not access this trigger vnode (otherwise the kernel will deadlock)
8980 * is there anyway to know this???
8981 * there can also be other legitimate lookups in parallel
8983 * XXX - should we call this on a separate thread with a timeout?
8985 * XXX - should we use ISLASTCN to pick the op value??? Perhaps only leafs should
8986 * get the richer set and non-leafs should get generic OP_LOOKUP? TBD
8988 op
= (ndp
->ni_op
< OP_MAXOP
) ? ndp
->ni_op
: OP_LOOKUP
;
8990 result
= rp
->vr_resolve_func(vp
, &ndp
->ni_cnd
, op
, 0, rp
->vr_data
, ctx
);
8991 status
= vfs_resolver_status(result
);
8992 seq
= vfs_resolver_sequence(result
);
8994 lck_mtx_lock(&rp
->vr_lock
);
8995 if (seq
> rp
->vr_lastseq
) {
8996 if (status
== RESOLVER_RESOLVED
)
8997 rp
->vr_flags
|= VNT_RESOLVED
;
8998 rp
->vr_lastseq
= seq
;
9000 lck_mtx_unlock(&rp
->vr_lock
);
9002 /* On resolver errors, propagate the error back up */
9003 return (status
== RESOLVER_ERROR
? vfs_resolver_auxiliary(result
) : 0);
9007 vnode_trigger_unresolve(vnode_t vp
, int flags
, vfs_context_t ctx
)
9010 resolver_result_t result
;
9011 enum resolver_status status
;
9014 if ((vp
->v_resolve
== NULL
) || (vp
->v_resolve
->vr_unresolve_func
== NULL
)) {
9019 lck_mtx_lock(&rp
->vr_lock
);
9021 /* Check if this vnode is already resolved */
9022 if ((rp
->vr_flags
& VNT_RESOLVED
) == 0) {
9023 printf("vnode_trigger_unresolve: not currently resolved\n");
9024 lck_mtx_unlock(&rp
->vr_lock
);
9028 rp
->vr_flags
|= VNT_VFS_UNMOUNTED
;
9030 lck_mtx_unlock(&rp
->vr_lock
);
9034 * assumes that resolver will not access this trigger vnode (otherwise the kernel will deadlock)
9035 * there can also be other legitimate lookups in parallel
9037 * XXX - should we call this on a separate thread with a timeout?
9040 result
= rp
->vr_unresolve_func(vp
, flags
, rp
->vr_data
, ctx
);
9041 status
= vfs_resolver_status(result
);
9042 seq
= vfs_resolver_sequence(result
);
9044 lck_mtx_lock(&rp
->vr_lock
);
9045 if (seq
> rp
->vr_lastseq
) {
9046 if (status
== RESOLVER_UNRESOLVED
)
9047 rp
->vr_flags
&= ~VNT_RESOLVED
;
9048 rp
->vr_lastseq
= seq
;
9050 rp
->vr_flags
&= ~VNT_VFS_UNMOUNTED
;
9051 lck_mtx_unlock(&rp
->vr_lock
);
9053 /* On resolver errors, propagate the error back up */
9054 return (status
== RESOLVER_ERROR
? vfs_resolver_auxiliary(result
) : 0);
9058 triggerisdescendant(mount_t mp
, mount_t rmp
)
9063 * walk up vnode covered chain looking for a match
9065 name_cache_lock_shared();
9070 /* did we encounter "/" ? */
9071 if (mp
->mnt_flag
& MNT_ROOTFS
)
9074 vp
= mp
->mnt_vnodecovered
;
9085 name_cache_unlock();
9090 struct trigger_unmount_info
{
9095 uint32_t trigger_vid
;
9100 trigger_unmount_callback(mount_t mp
, void * arg
)
9102 struct trigger_unmount_info
* infop
= (struct trigger_unmount_info
*)arg
;
9103 boolean_t mountedtrigger
= FALSE
;
9106 * When we encounter the top level mount we're done
9108 if (mp
== infop
->top_mp
)
9109 return (VFS_RETURNED_DONE
);
9111 if ((mp
->mnt_vnodecovered
== NULL
) ||
9112 (vnode_getwithref(mp
->mnt_vnodecovered
) != 0)) {
9113 return (VFS_RETURNED
);
9116 if ((mp
->mnt_vnodecovered
->v_mountedhere
== mp
) &&
9117 (mp
->mnt_vnodecovered
->v_resolve
!= NULL
) &&
9118 (mp
->mnt_vnodecovered
->v_resolve
->vr_flags
& VNT_RESOLVED
)) {
9119 mountedtrigger
= TRUE
;
9121 vnode_put(mp
->mnt_vnodecovered
);
9124 * When we encounter a mounted trigger, check if its under the top level mount
9126 if ( !mountedtrigger
|| !triggerisdescendant(mp
, infop
->top_mp
) )
9127 return (VFS_RETURNED
);
9130 * Process any pending nested mount (now that its not referenced)
9132 if ((infop
->trigger_vp
!= NULLVP
) &&
9133 (vnode_getwithvid(infop
->trigger_vp
, infop
->trigger_vid
) == 0)) {
9134 vnode_t vp
= infop
->trigger_vp
;
9137 infop
->trigger_vp
= NULLVP
;
9139 if (mp
== vp
->v_mountedhere
) {
9141 printf("trigger_unmount_callback: unexpected match '%s'\n",
9142 mp
->mnt_vfsstat
.f_mntonname
);
9143 return (VFS_RETURNED
);
9145 if (infop
->trigger_mp
!= vp
->v_mountedhere
) {
9147 printf("trigger_unmount_callback: trigger mnt changed! (%p != %p)\n",
9148 infop
->trigger_mp
, vp
->v_mountedhere
);
9152 error
= vnode_trigger_unresolve(vp
, infop
->flags
, infop
->ctx
);
9155 printf("unresolving: '%s', err %d\n",
9156 vp
->v_mountedhere
? vp
->v_mountedhere
->mnt_vfsstat
.f_mntonname
:
9158 return (VFS_RETURNED_DONE
); /* stop iteration on errors */
9163 * We can't call resolver here since we hold a mount iter
9164 * ref on mp so save its covered vp for later processing
9166 infop
->trigger_vp
= mp
->mnt_vnodecovered
;
9167 if ((infop
->trigger_vp
!= NULLVP
) &&
9168 (vnode_getwithref(infop
->trigger_vp
) == 0)) {
9169 if (infop
->trigger_vp
->v_mountedhere
== mp
) {
9170 infop
->trigger_vid
= infop
->trigger_vp
->v_id
;
9171 infop
->trigger_mp
= mp
;
9173 vnode_put(infop
->trigger_vp
);
9176 return (VFS_RETURNED
);
9180 * Attempt to unmount any trigger mounts nested underneath a mount.
9181 * This is a best effort attempt and no retries are performed here.
9183 * Note: mp->mnt_rwlock is held exclusively on entry (so be carefull)
9187 vfs_nested_trigger_unmounts(mount_t mp
, int flags
, vfs_context_t ctx
)
9189 struct trigger_unmount_info info
;
9191 /* Must have trigger vnodes */
9192 if (mp
->mnt_numtriggers
== 0) {
9195 /* Avoid recursive requests (by checking covered vnode) */
9196 if ((mp
->mnt_vnodecovered
!= NULL
) &&
9197 (vnode_getwithref(mp
->mnt_vnodecovered
) == 0)) {
9198 boolean_t recursive
= FALSE
;
9200 if ((mp
->mnt_vnodecovered
->v_mountedhere
== mp
) &&
9201 (mp
->mnt_vnodecovered
->v_resolve
!= NULL
) &&
9202 (mp
->mnt_vnodecovered
->v_resolve
->vr_flags
& VNT_VFS_UNMOUNTED
)) {
9205 vnode_put(mp
->mnt_vnodecovered
);
9211 * Attempt to unmount any nested trigger mounts (best effort)
9215 info
.trigger_vp
= NULLVP
;
9216 info
.trigger_vid
= 0;
9217 info
.trigger_mp
= NULL
;
9220 (void) vfs_iterate(VFS_ITERATE_TAIL_FIRST
, trigger_unmount_callback
, &info
);
9223 * Process remaining nested mount (now that its not referenced)
9225 if ((info
.trigger_vp
!= NULLVP
) &&
9226 (vnode_getwithvid(info
.trigger_vp
, info
.trigger_vid
) == 0)) {
9227 vnode_t vp
= info
.trigger_vp
;
9229 if (info
.trigger_mp
== vp
->v_mountedhere
) {
9230 (void) vnode_trigger_unresolve(vp
, flags
, ctx
);
9237 vfs_addtrigger(mount_t mp
, const char *relpath
, struct vnode_trigger_info
*vtip
, vfs_context_t ctx
)
9239 struct nameidata nd
;
9242 struct vnode_trigger_param vtp
;
9245 * Must be called for trigger callback, wherein rwlock is held
9247 lck_rw_assert(&mp
->mnt_rwlock
, LCK_RW_ASSERT_HELD
);
9249 TRIG_LOG("Adding trigger at %s\n", relpath
);
9250 TRIG_LOG("Trying VFS_ROOT\n");
9253 * We do a lookup starting at the root of the mountpoint, unwilling
9254 * to cross into other mountpoints.
9256 res
= VFS_ROOT(mp
, &rvp
, ctx
);
9261 TRIG_LOG("Trying namei\n");
9263 NDINIT(&nd
, LOOKUP
, OP_LOOKUP
, USEDVP
| NOCROSSMOUNT
| FOLLOW
, UIO_SYSSPACE
,
9264 CAST_USER_ADDR_T(relpath
), ctx
);
9276 TRIG_LOG("Trying vnode_resolver_create()\n");
9279 * Set up blob. vnode_create() takes a larger structure
9280 * with creation info, and we needed something different
9281 * for this case. One needs to win, or we need to munge both;
9282 * vnode_create() wins.
9284 bzero(&vtp
, sizeof(vtp
));
9285 vtp
.vnt_resolve_func
= vtip
->vti_resolve_func
;
9286 vtp
.vnt_unresolve_func
= vtip
->vti_unresolve_func
;
9287 vtp
.vnt_rearm_func
= vtip
->vti_rearm_func
;
9288 vtp
.vnt_reclaim_func
= vtip
->vti_reclaim_func
;
9289 vtp
.vnt_reclaim_func
= vtip
->vti_reclaim_func
;
9290 vtp
.vnt_data
= vtip
->vti_data
;
9291 vtp
.vnt_flags
= vtip
->vti_flags
;
9293 res
= vnode_resolver_create(mp
, vp
, &vtp
, TRUE
);
9296 TRIG_LOG("Returning %d\n", res
);
9300 #endif /* CONFIG_TRIGGERS */