]> git.saurik.com Git - apple/xnu.git/blob - bsd/vfs/vfs_subr.c
xnu-3248.30.4.tar.gz
[apple/xnu.git] / bsd / vfs / vfs_subr.c
1 /*
2 * Copyright (c) 2000-2015 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29 /*
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.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
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.
53 *
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
64 * SUCH DAMAGE.
65 *
66 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
67 */
68 /*
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,
72 * Version 2.0.
73 */
74
75 /*
76 * External virtual filesystem routines
77 */
78
79
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>
85 #include <sys/time.h>
86 #include <sys/lock.h>
87 #include <sys/vnode.h>
88 #include <sys/vnode_internal.h>
89 #include <sys/stat.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>
96 #include <sys/uio.h>
97 #include <sys/domain.h>
98 #include <sys/mbuf.h>
99 #include <sys/syslog.h>
100 #include <sys/ubc_internal.h>
101 #include <sys/vm.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>
112
113 #include <string.h>
114 #include <machine/spl.h>
115
116
117 #include <kern/assert.h>
118 #include <mach/kern_return.h>
119 #include <kern/thread.h>
120 #include <kern/sched_prim.h>
121
122 #include <miscfs/specfs/specdev.h>
123
124 #include <mach/mach_types.h>
125 #include <mach/memory_object_types.h>
126 #include <mach/memory_object_control.h>
127
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>
132
133 #ifdef JOE_DEBUG
134 #include <libkern/OSDebug.h>
135 #endif
136
137 #include <vm/vm_protos.h> /* vnode_pager_vrele() */
138
139 #if CONFIG_MACF
140 #include <security/mac_framework.h>
141 #endif
142
143 extern lck_grp_t *vnode_lck_grp;
144 extern lck_attr_t *vnode_lck_attr;
145
146 #if CONFIG_TRIGGERS
147 extern lck_grp_t *trigger_vnode_lck_grp;
148 extern lck_attr_t *trigger_vnode_lck_attr;
149 #endif
150
151 extern lck_mtx_t * mnt_list_mtx_lock;
152
153 enum vtype iftovt_tab[16] = {
154 VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON,
155 VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD,
156 };
157 int vttoif_tab[9] = {
158 0, S_IFREG, S_IFDIR, S_IFBLK, S_IFCHR, S_IFLNK,
159 S_IFSOCK, S_IFIFO, S_IFMT,
160 };
161
162
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);
166
167 extern void memory_object_mark_unused(
168 memory_object_control_t control,
169 boolean_t rage);
170
171 extern void memory_object_mark_io_tracking(
172 memory_object_control_t control);
173
174 /* XXX next protptype should be from <nfs/nfs.h> */
175 extern int nfs_vinvalbuf(vnode_t, int, vfs_context_t, int);
176
177 /* XXX next prototytype should be from libsa/stdlib.h> but conflicts libkern */
178 __private_extern__ void qsort(
179 void * array,
180 size_t nmembers,
181 size_t member_size,
182 int (*)(const void *, const void *));
183
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,
187 unsigned int val2);
188 __private_extern__ int unlink1(vfs_context_t, vnode_t, user_addr_t,
189 enum uio_seg, int);
190
191 extern int system_inshutdown;
192
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);
197
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);
203
204 static void vnode_dropiocount (vnode_t);
205
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);
209
210 static int unmount_callback(mount_t, __unused void *);
211
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);
224
225 errno_t rmdir_remove_orphaned_appleDouble(vnode_t, vfs_context_t, int *);
226
227 #ifdef JOE_DEBUG
228 static void record_vp(vnode_t vp, int count);
229 #endif
230
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) */
234
235 boolean_t root_is_CF_drive = FALSE;
236
237 #if CONFIG_TRIGGERS
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);
240 #endif
241
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;
245
246
247 TAILQ_HEAD(ragelst, vnode) vnode_rage_list; /* vnode rapid age list */
248 struct timeval rage_tv;
249 int rage_limit = 0;
250 int ragevnodes = 0;
251
252 #define RAGE_LIMIT_MIN 100
253 #define RAGE_TIME_LIMIT 5
254
255 struct mntlist mountlist; /* mounted filesystem list */
256 static int nummounts = 0;
257
258 #if DIAGNOSTIC
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));
262 #else
263 #define VLISTCHECK(fun, vp, list)
264 #endif /* DIAGNOSTIC */
265
266 #define VLISTNONE(vp) \
267 do { \
268 (vp)->v_freelist.tqe_next = (struct vnode *)0; \
269 (vp)->v_freelist.tqe_prev = (struct vnode **)0xdeadb; \
270 } while(0)
271
272 #define VONLIST(vp) \
273 ((vp)->v_freelist.tqe_prev != (struct vnode **)0xdeadb)
274
275 /* remove a vnode from free vnode list */
276 #define VREMFREE(fun, vp) \
277 do { \
278 VLISTCHECK((fun), (vp), "free"); \
279 TAILQ_REMOVE(&vnode_free_list, (vp), v_freelist); \
280 VLISTNONE((vp)); \
281 freevnodes--; \
282 } while(0)
283
284
285 /* remove a vnode from dead vnode list */
286 #define VREMDEAD(fun, vp) \
287 do { \
288 VLISTCHECK((fun), (vp), "dead"); \
289 TAILQ_REMOVE(&vnode_dead_list, (vp), v_freelist); \
290 VLISTNONE((vp)); \
291 vp->v_listflag &= ~VLIST_DEAD; \
292 deadvnodes--; \
293 } while(0)
294
295
296 /* remove a vnode from async work vnode list */
297 #define VREMASYNC_WORK(fun, vp) \
298 do { \
299 VLISTCHECK((fun), (vp), "async_work"); \
300 TAILQ_REMOVE(&vnode_async_work_list, (vp), v_freelist); \
301 VLISTNONE((vp)); \
302 vp->v_listflag &= ~VLIST_ASYNC_WORK; \
303 async_work_vnodes--; \
304 } while(0)
305
306
307 /* remove a vnode from rage vnode list */
308 #define VREMRAGE(fun, vp) \
309 do { \
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); \
314 VLISTNONE((vp)); \
315 vp->v_listflag &= ~VLIST_RAGE; \
316 ragevnodes--; \
317 } while(0)
318
319
320 /*
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.
325 */
326 u_int32_t vnodetarget; /* target for vnreclaim() */
327 #define VNODE_FREE_TARGET 20 /* Default value for vnodetarget */
328
329 /*
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.
334 */
335 #define VNODE_FREE_MIN CONFIG_VNODE_FREE_MIN /* freelist should have at least this many */
336
337
338 static void async_work_continue(void);
339
340 /*
341 * Initialize the vnode management data structures.
342 */
343 __private_extern__ void
344 vntblinit(void)
345 {
346 thread_t thread = THREAD_NULL;
347
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);
353
354 if (!vnodetarget)
355 vnodetarget = VNODE_FREE_TARGET;
356
357 microuptime(&rage_tv);
358 rage_limit = desiredvnodes / 100;
359
360 if (rage_limit < RAGE_LIMIT_MIN)
361 rage_limit = RAGE_LIMIT_MIN;
362
363 /*
364 * Scale the vm_object_cache to accomodate the vnodes
365 * we want to cache
366 */
367 (void) adjust_vm_object_cache(0, desiredvnodes - VNODE_FREE_MIN);
368
369 /*
370 * create worker threads
371 */
372 kernel_thread_start((thread_continue_t)async_work_continue, NULL, &thread);
373 thread_deallocate(thread);
374 }
375
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)
379 {
380 vm_size_t oval = val1 - VNODE_FREE_MIN;
381 vm_size_t nval;
382
383 if (val1 == val2) {
384 return KERN_SUCCESS;
385 }
386
387 if(val2 < VNODE_FREE_MIN)
388 nval = 0;
389 else
390 nval = val2 - VNODE_FREE_MIN;
391
392 return(adjust_vm_object_cache(oval, nval));
393 }
394
395
396 /* the timeout is in 10 msecs */
397 int
398 vnode_waitforwrites(vnode_t vp, int output_target, int slpflag, int slptimeout, const char *msg) {
399 int error = 0;
400 struct timespec ts;
401
402 KERNEL_DEBUG(0x3010280 | DBG_FUNC_START, (int)vp, output_target, vp->v_numoutput, 0, 0);
403
404 if (vp->v_numoutput > output_target) {
405
406 slpflag |= PDROP;
407
408 vnode_lock_spin(vp);
409
410 while ((vp->v_numoutput > output_target) && error == 0) {
411 if (output_target)
412 vp->v_flag |= VTHROTTLED;
413 else
414 vp->v_flag |= VBWAIT;
415
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);
419
420 vnode_lock_spin(vp);
421 }
422 vnode_unlock(vp);
423 }
424 KERNEL_DEBUG(0x3010280 | DBG_FUNC_END, (int)vp, output_target, vp->v_numoutput, error, 0);
425
426 return error;
427 }
428
429
430 void
431 vnode_startwrite(vnode_t vp) {
432
433 OSAddAtomic(1, &vp->v_numoutput);
434 }
435
436
437 void
438 vnode_writedone(vnode_t vp)
439 {
440 if (vp) {
441 int need_wakeup = 0;
442
443 OSAddAtomic(-1, &vp->v_numoutput);
444
445 vnode_lock_spin(vp);
446
447 if (vp->v_numoutput < 0)
448 panic("vnode_writedone: numoutput < 0");
449
450 if ((vp->v_flag & VTHROTTLED)) {
451 vp->v_flag &= ~VTHROTTLED;
452 need_wakeup = 1;
453 }
454 if ((vp->v_flag & VBWAIT) && (vp->v_numoutput == 0)) {
455 vp->v_flag &= ~VBWAIT;
456 need_wakeup = 1;
457 }
458 vnode_unlock(vp);
459
460 if (need_wakeup)
461 wakeup((caddr_t)&vp->v_numoutput);
462 }
463 }
464
465
466
467 int
468 vnode_hasdirtyblks(vnode_t vp)
469 {
470 struct cl_writebehind *wbp;
471
472 /*
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
477 * by the caller
478 */
479 if (vp->v_dirtyblkhd.lh_first)
480 return (1);
481
482 if (!UBCINFOEXISTS(vp))
483 return (0);
484
485 wbp = vp->v_ubcinfo->cl_wbehind;
486
487 if (wbp && (wbp->cl_number || wbp->cl_scmap))
488 return (1);
489
490 return (0);
491 }
492
493 int
494 vnode_hascleanblks(vnode_t vp)
495 {
496 /*
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
501 * by the caller
502 */
503 if (vp->v_cleanblkhd.lh_first)
504 return (1);
505 return (0);
506 }
507
508 void
509 vnode_iterate_setup(mount_t mp)
510 {
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);
514 }
515
516 mp->mnt_lflag |= MNT_LITER;
517
518 }
519
520 int
521 vnode_umount_preflight(mount_t mp, vnode_t skipvp, int flags)
522 {
523 vnode_t vp;
524
525 TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
526 if (vp->v_type == VDIR)
527 continue;
528 if (vp == skipvp)
529 continue;
530 if ((flags & SKIPSYSTEM) && ((vp->v_flag & VSYSTEM) || (vp->v_flag & VNOFLUSH)))
531 continue;
532 if ((flags & SKIPSWAP) && (vp->v_flag & VSWAP))
533 continue;
534 if ((flags & WRITECLOSE) && (vp->v_writecount == 0 || vp->v_type != VREG))
535 continue;
536
537 /* Look for busy vnode */
538 if ((vp->v_usecount != 0) && ((vp->v_usecount - vp->v_kusecount) != 0)) {
539 return 1;
540
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)
545 return 1;
546 continue;
547 }
548 }
549
550 return 0;
551 }
552
553 /*
554 * This routine prepares iteration by moving all the vnodes to worker queue
555 * called with mount lock held
556 */
557 int
558 vnode_iterate_prepare(mount_t mp)
559 {
560 vnode_t vp;
561
562 if (TAILQ_EMPTY(&mp->mnt_vnodelist)) {
563 /* nothing to do */
564 return (0);
565 }
566
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;
571
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);
576
577 return (1);
578 }
579
580
581 /* called with mount lock held */
582 int
583 vnode_iterate_reloadq(mount_t mp)
584 {
585 int moved = 0;
586
587 /* add the remaining entries in workerq to the end of mount vnode list */
588 if (!TAILQ_EMPTY(&mp->mnt_workerqueue)) {
589 struct vnode * mvp;
590 mvp = TAILQ_LAST(&mp->mnt_vnodelist, vnodelst);
591
592 /* Joining the workerque entities to mount vnode list */
593 if (mvp)
594 mvp->v_mntvnodes.tqe_next = mp->mnt_workerqueue.tqh_first;
595 else
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);
600 }
601
602 /* add the newvnodes to the head of mount vnode list */
603 if (!TAILQ_EMPTY(&mp->mnt_newvnodes)) {
604 struct vnode * nlvp;
605 nlvp = TAILQ_LAST(&mp->mnt_newvnodes, vnodelst);
606
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;
611 else
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);
615 moved = 1;
616 }
617
618 return(moved);
619 }
620
621
622 void
623 vnode_iterate_clear(mount_t mp)
624 {
625 mp->mnt_lflag &= ~MNT_LITER;
626 if (mp->mnt_lflag & MNT_LITERWAIT) {
627 mp->mnt_lflag &= ~MNT_LITERWAIT;
628 wakeup(mp);
629 }
630 }
631
632
633 #include <i386/panic_hooks.h>
634
635 struct vnode_iterate_panic_hook {
636 panic_hook_t hook;
637 mount_t mp;
638 struct vnode *vp;
639 };
640
641 static void vnode_iterate_panic_hook(panic_hook_t *hook_)
642 {
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;
646 uint64_t phys;
647
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);
652 } else {
653 kdb_log("mp = %p, phys = %p, prev (!)\n", hook->mp, phys);
654 }
655
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);
660 } else {
661 kdb_log("vp = %p, phys = %p, prev (!)\n", hook->vp, phys);
662 }
663 panic_dump_mem((void *)(((vm_offset_t)hook->mp -4096) & ~4095), 12288);
664 }
665
666 int
667 vnode_iterate(mount_t mp, int flags, int (*callout)(struct vnode *, void *),
668 void *arg)
669 {
670 struct vnode *vp;
671 int vid, retval;
672 int ret = 0;
673
674 mount_lock(mp);
675
676 vnode_iterate_setup(mp);
677
678 /* it is returns 0 then there is nothing to do */
679 retval = vnode_iterate_prepare(mp);
680
681 if (retval == 0) {
682 vnode_iterate_clear(mp);
683 mount_unlock(mp);
684 return(ret);
685 }
686
687 struct vnode_iterate_panic_hook hook;
688 hook.mp = mp;
689 hook.vp = NULL;
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);
694 hook.vp = vp;
695 TAILQ_REMOVE(&mp->mnt_workerqueue, vp, v_mntvnodes);
696 TAILQ_INSERT_TAIL(&mp->mnt_vnodelist, vp, v_mntvnodes);
697 vid = vp->v_id;
698 if ((vp->v_data == NULL) || (vp->v_type == VNON) || (vp->v_mount != mp)) {
699 continue;
700 }
701 mount_unlock(mp);
702
703 if ( vget_internal(vp, vid, (flags | VNODE_NODEAD| VNODE_WITHID | VNODE_NOSUSPEND))) {
704 mount_lock(mp);
705 continue;
706 }
707 if (flags & VNODE_RELOAD) {
708 /*
709 * we're reloading the filesystem
710 * cast out any inactive vnodes...
711 */
712 if (vnode_reload(vp)) {
713 /* vnode will be recycled on the refcount drop */
714 vnode_put(vp);
715 mount_lock(mp);
716 continue;
717 }
718 }
719
720 retval = callout(vp, arg);
721
722 switch (retval) {
723 case VNODE_RETURNED:
724 case VNODE_RETURNED_DONE:
725 vnode_put(vp);
726 if (retval == VNODE_RETURNED_DONE) {
727 mount_lock(mp);
728 ret = 0;
729 goto out;
730 }
731 break;
732
733 case VNODE_CLAIMED_DONE:
734 mount_lock(mp);
735 ret = 0;
736 goto out;
737 case VNODE_CLAIMED:
738 default:
739 break;
740 }
741 mount_lock(mp);
742 }
743
744 out:
745 panic_unhook(&hook.hook);
746 (void)vnode_iterate_reloadq(mp);
747 vnode_iterate_clear(mp);
748 mount_unlock(mp);
749 return (ret);
750 }
751
752 void
753 mount_lock_renames(mount_t mp)
754 {
755 lck_mtx_lock(&mp->mnt_renamelock);
756 }
757
758 void
759 mount_unlock_renames(mount_t mp)
760 {
761 lck_mtx_unlock(&mp->mnt_renamelock);
762 }
763
764 void
765 mount_lock(mount_t mp)
766 {
767 lck_mtx_lock(&mp->mnt_mlock);
768 }
769
770 void
771 mount_lock_spin(mount_t mp)
772 {
773 lck_mtx_lock_spin(&mp->mnt_mlock);
774 }
775
776 void
777 mount_unlock(mount_t mp)
778 {
779 lck_mtx_unlock(&mp->mnt_mlock);
780 }
781
782
783 void
784 mount_ref(mount_t mp, int locked)
785 {
786 if ( !locked)
787 mount_lock_spin(mp);
788
789 mp->mnt_count++;
790
791 if ( !locked)
792 mount_unlock(mp);
793 }
794
795
796 void
797 mount_drop(mount_t mp, int locked)
798 {
799 if ( !locked)
800 mount_lock_spin(mp);
801
802 mp->mnt_count--;
803
804 if (mp->mnt_count == 0 && (mp->mnt_lflag & MNT_LDRAIN))
805 wakeup(&mp->mnt_lflag);
806
807 if ( !locked)
808 mount_unlock(mp);
809 }
810
811
812 int
813 mount_iterref(mount_t mp, int locked)
814 {
815 int retval = 0;
816
817 if (!locked)
818 mount_list_lock();
819 if (mp->mnt_iterref < 0) {
820 retval = 1;
821 } else {
822 mp->mnt_iterref++;
823 }
824 if (!locked)
825 mount_list_unlock();
826 return(retval);
827 }
828
829 int
830 mount_isdrained(mount_t mp, int locked)
831 {
832 int retval;
833
834 if (!locked)
835 mount_list_lock();
836 if (mp->mnt_iterref < 0)
837 retval = 1;
838 else
839 retval = 0;
840 if (!locked)
841 mount_list_unlock();
842 return(retval);
843 }
844
845 void
846 mount_iterdrop(mount_t mp)
847 {
848 mount_list_lock();
849 mp->mnt_iterref--;
850 wakeup(&mp->mnt_iterref);
851 mount_list_unlock();
852 }
853
854 void
855 mount_iterdrain(mount_t mp)
856 {
857 mount_list_lock();
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;
862 mount_list_unlock();
863 }
864 void
865 mount_iterreset(mount_t mp)
866 {
867 mount_list_lock();
868 if (mp->mnt_iterref == -1)
869 mp->mnt_iterref = 0;
870 mount_list_unlock();
871 }
872
873 /* always called with mount lock held */
874 int
875 mount_refdrain(mount_t mp)
876 {
877 if (mp->mnt_lflag & MNT_LDRAIN)
878 panic("already in drain");
879 mp->mnt_lflag |= MNT_LDRAIN;
880
881 while (mp->mnt_count)
882 msleep((caddr_t)&mp->mnt_lflag, &mp->mnt_mlock, PVFS, "mount_drain", NULL);
883
884 if (mp->mnt_vnodelist.tqh_first != NULL)
885 panic("mount_refdrain: dangling vnode");
886
887 mp->mnt_lflag &= ~MNT_LDRAIN;
888
889 return(0);
890 }
891
892 /* Tags the mount point as not supportine extended readdir for NFS exports */
893 void
894 mount_set_noreaddirext(mount_t mp) {
895 mount_lock (mp);
896 mp->mnt_kern_flag |= MNTK_DENY_READDIREXT;
897 mount_unlock (mp);
898 }
899
900 /*
901 * Mark a mount point as busy. Used to synchronize access and to delay
902 * unmounting.
903 */
904 int
905 vfs_busy(mount_t mp, int flags)
906 {
907
908 restart:
909 if (mp->mnt_lflag & MNT_LDEAD)
910 return (ENOENT);
911
912 mount_lock(mp);
913
914 if (mp->mnt_lflag & MNT_LUNMOUNT) {
915 if (flags & LK_NOWAIT || mp->mnt_lflag & MNT_LDEAD) {
916 mount_unlock(mp);
917 return (ENOENT);
918 }
919
920 /*
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.
925 */
926 mp->mnt_lflag |= MNT_LWAIT;
927 msleep((caddr_t)mp, &mp->mnt_mlock, (PVFS | PDROP), "vfsbusy", NULL);
928 return (ENOENT);
929 }
930
931 mount_unlock(mp);
932
933 lck_rw_lock_shared(&mp->mnt_rwlock);
934
935 /*
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.
938 */
939 if (mp->mnt_lflag & (MNT_LDEAD | MNT_LUNMOUNT)) {
940 lck_rw_done(&mp->mnt_rwlock);
941 goto restart;
942 }
943 return (0);
944 }
945
946 /*
947 * Free a busy filesystem.
948 */
949 void
950 vfs_unbusy(mount_t mp)
951 {
952 lck_rw_done(&mp->mnt_rwlock);
953 }
954
955
956
957 static void
958 vfs_rootmountfailed(mount_t mp) {
959
960 mount_list_lock();
961 mp->mnt_vtable->vfc_refcount--;
962 mount_list_unlock();
963
964 vfs_unbusy(mp);
965
966 mount_lock_destroy(mp);
967
968 #if CONFIG_MACF
969 mac_mount_label_destroy(mp);
970 #endif
971
972 FREE_ZONE(mp, sizeof(struct mount), M_MOUNT);
973 }
974
975 /*
976 * Lookup a filesystem type, and if found allocate and initialize
977 * a mount structure for it.
978 *
979 * Devname is usually updated by mount(8) after booting.
980 */
981 static mount_t
982 vfs_rootmountalloc_internal(struct vfstable *vfsp, const char *devname)
983 {
984 mount_t mp;
985
986 mp = _MALLOC_ZONE(sizeof(struct mount), M_MOUNT, M_WAITOK);
987 bzero((char *)mp, sizeof(struct mount));
988
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;
997 mp->mnt_ioscale = 1;
998 mp->mnt_ioflags = 0;
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;
1003
1004 mount_lock_init(mp);
1005 (void)vfs_busy(mp, LK_NOWAIT);
1006
1007 TAILQ_INIT(&mp->mnt_vnodelist);
1008 TAILQ_INIT(&mp->mnt_workerqueue);
1009 TAILQ_INIT(&mp->mnt_newvnodes);
1010
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;
1017
1018 mount_list_lock();
1019 vfsp->vfc_refcount++;
1020 mount_list_unlock();
1021
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);
1026
1027 #if CONFIG_MACF
1028 mac_mount_label_init(mp);
1029 mac_mount_label_associate(vfs_context_kernel(), mp);
1030 #endif
1031 return (mp);
1032 }
1033
1034 errno_t
1035 vfs_rootmountalloc(const char *fstypename, const char *devname, mount_t *mpp)
1036 {
1037 struct vfstable *vfsp;
1038
1039 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
1040 if (!strncmp(vfsp->vfc_name, fstypename,
1041 sizeof(vfsp->vfc_name)))
1042 break;
1043 if (vfsp == NULL)
1044 return (ENODEV);
1045
1046 *mpp = vfs_rootmountalloc_internal(vfsp, devname);
1047
1048 if (*mpp)
1049 return (0);
1050
1051 return (ENOMEM);
1052 }
1053
1054
1055 /*
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.
1060 */
1061 extern int (*mountroot)(void);
1062
1063 int
1064 vfs_mountroot(void)
1065 {
1066 #if CONFIG_MACF
1067 struct vnode *vp;
1068 #endif
1069 struct vfstable *vfsp;
1070 vfs_context_t ctx = vfs_context_kernel();
1071 struct vfs_attr vfsattr;
1072 int error;
1073 mount_t mp;
1074 vnode_t bdevvp_rootvp;
1075
1076 if (mountroot != NULL) {
1077 /*
1078 * used for netboot which follows a different set of rules
1079 */
1080 error = (*mountroot)();
1081 return (error);
1082 }
1083 if ((error = bdevvp(rootdev, &rootvp))) {
1084 printf("vfs_mountroot: can't setup bdevvp\n");
1085 return (error);
1086 }
1087 /*
1088 * 4951998 - code we call in vfc_mountroot may replace rootvp
1089 * so keep a local copy for some house keeping.
1090 */
1091 bdevvp_rootvp = rootvp;
1092
1093 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
1094 if (vfsp->vfc_mountroot == NULL)
1095 continue;
1096
1097 mp = vfs_rootmountalloc_internal(vfsp, "root_device");
1098 mp->mnt_devvp = rootvp;
1099
1100 if ((error = (*vfsp->vfc_mountroot)(mp, rootvp, ctx)) == 0) {
1101 if ( bdevvp_rootvp != rootvp ) {
1102 /*
1103 * rootvp changed...
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...
1108 */
1109 vnode_getwithref(rootvp);
1110 mp->mnt_devvp = rootvp;
1111
1112 vnode_rele(bdevvp_rootvp);
1113 vnode_put(bdevvp_rootvp);
1114 }
1115 mp->mnt_devvp->v_specflags |= SI_MOUNTEDON;
1116
1117 vfs_unbusy(mp);
1118
1119 mount_list_add(mp);
1120
1121 /*
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
1126 */
1127 vfs_init_io_attributes(rootvp, mp);
1128
1129 if ((mp->mnt_ioflags & MNT_IOFLAGS_FUSION_DRIVE) &&
1130 (mp->mnt_ioflags & MNT_IOFLAGS_IOSCHED_SUPPORTED)) {
1131 /*
1132 * only for CF
1133 */
1134 root_is_CF_drive = TRUE;
1135 }
1136 /*
1137 * Shadow the VFC_VFSNATIVEXATTR flag to MNTK_EXTENDED_ATTRS.
1138 */
1139 if (mp->mnt_vtable->vfc_vfsflags & VFC_VFSNATIVEXATTR) {
1140 mp->mnt_kern_flag |= MNTK_EXTENDED_ATTRS;
1141 }
1142 if (mp->mnt_vtable->vfc_vfsflags & VFC_VFSPREFLIGHT) {
1143 mp->mnt_kern_flag |= MNTK_UNMOUNT_PREFLIGHT;
1144 }
1145
1146 uint32_t speed;
1147
1148 if (MNTK_VIRTUALDEV & mp->mnt_kern_flag) speed = 128;
1149 else if (MNTK_SSD & mp->mnt_kern_flag) speed = 7*256;
1150 else speed = 256;
1151 vc_progress_setdiskspeed(speed);
1152 /*
1153 * Probe root file system for additional features.
1154 */
1155 (void)VFS_START(mp, 0, ctx);
1156
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;
1164 }
1165 #if NAMEDSTREAMS
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;
1169 }
1170 #endif
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;
1174 }
1175 }
1176
1177 /*
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
1182 */
1183 vnode_put(rootvp);
1184
1185 #if CONFIG_MACF
1186 if ((vfs_flags(mp) & MNT_MULTILABEL) == 0)
1187 return (0);
1188
1189 error = VFS_ROOT(mp, &vp, ctx);
1190 if (error) {
1191 printf("%s() VFS_ROOT() returned %d\n",
1192 __func__, error);
1193 dounmount(mp, MNT_FORCE, 0, ctx);
1194 goto fail;
1195 }
1196 error = vnode_label(mp, NULL, vp, NULL, 0, ctx);
1197 /*
1198 * get rid of reference provided by VFS_ROOT
1199 */
1200 vnode_put(vp);
1201
1202 if (error) {
1203 printf("%s() vnode_label() returned %d\n",
1204 __func__, error);
1205 dounmount(mp, MNT_FORCE, 0, ctx);
1206 goto fail;
1207 }
1208 #endif
1209 return (0);
1210 }
1211 #if CONFIG_MACF
1212 fail:
1213 #endif
1214 vfs_rootmountfailed(mp);
1215
1216 if (error != EINVAL)
1217 printf("%s_mountroot failed: %d\n", vfsp->vfc_name, error);
1218 }
1219 return (ENODEV);
1220 }
1221
1222 /*
1223 * Lookup a mount point by filesystem identifier.
1224 */
1225
1226 struct mount *
1227 vfs_getvfs(fsid_t *fsid)
1228 {
1229 return (mount_list_lookupby_fsid(fsid, 0, 0));
1230 }
1231
1232 static struct mount *
1233 vfs_getvfs_locked(fsid_t *fsid)
1234 {
1235 return(mount_list_lookupby_fsid(fsid, 1, 0));
1236 }
1237
1238 struct mount *
1239 vfs_getvfs_by_mntonname(char *path)
1240 {
1241 mount_t retmp = (mount_t)0;
1242 mount_t mp;
1243
1244 mount_list_lock();
1245 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
1246 if (!strncmp(mp->mnt_vfsstat.f_mntonname, path,
1247 sizeof(mp->mnt_vfsstat.f_mntonname))) {
1248 retmp = mp;
1249 if (mount_iterref(retmp, 1))
1250 retmp = NULL;
1251 goto out;
1252 }
1253 }
1254 out:
1255 mount_list_unlock();
1256 return (retmp);
1257 }
1258
1259 /* generation number for creation of new fsids */
1260 u_short mntid_gen = 0;
1261 /*
1262 * Get a new unique fsid
1263 */
1264 void
1265 vfs_getnewfsid(struct mount *mp)
1266 {
1267
1268 fsid_t tfsid;
1269 int mtype;
1270 mount_t nmp;
1271
1272 mount_list_lock();
1273
1274 /* generate a new fsid */
1275 mtype = mp->mnt_vtable->vfc_typenum;
1276 if (++mntid_gen == 0)
1277 mntid_gen++;
1278 tfsid.val[0] = makedev(nblkdev + mtype, mntid_gen);
1279 tfsid.val[1] = mtype;
1280
1281 TAILQ_FOREACH(nmp, &mountlist, mnt_list) {
1282 while (vfs_getvfs_locked(&tfsid)) {
1283 if (++mntid_gen == 0)
1284 mntid_gen++;
1285 tfsid.val[0] = makedev(nblkdev + mtype, mntid_gen);
1286 }
1287 }
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();
1291 }
1292
1293 /*
1294 * Routines having to do with the management of the vnode table.
1295 */
1296 extern int (**dead_vnodeop_p)(void *);
1297 long numvnodes, freevnodes, deadvnodes, async_work_vnodes;
1298
1299
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;
1304
1305 /*
1306 * Move a vnode from one mount queue to another.
1307 */
1308 static void
1309 insmntque(vnode_t vp, mount_t mp)
1310 {
1311 mount_t lmp;
1312 /*
1313 * Delete from old mount point vnode list, if on one.
1314 */
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;
1319
1320 mount_lock_spin(lmp);
1321
1322 mount_drop(lmp, 1);
1323
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);
1331 } else {
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;
1334 }
1335 vp->v_mntvnodes.tqe_next = NULL;
1336 vp->v_mntvnodes.tqe_prev = NULL;
1337 mount_unlock(lmp);
1338 return;
1339 }
1340
1341 /*
1342 * Insert into list of vnodes for the new mount point, if available.
1343 */
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);
1350 else
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;
1355 mount_ref(mp, 1);
1356 mount_unlock(mp);
1357 }
1358 }
1359
1360
1361 /*
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.
1365 */
1366 int
1367 bdevvp(dev_t dev, vnode_t *vpp)
1368 {
1369 vnode_t nvp;
1370 int error;
1371 struct vnode_fsparam vfsp;
1372 struct vfs_context context;
1373
1374 if (dev == NODEV) {
1375 *vpp = NULLVP;
1376 return (ENODEV);
1377 }
1378
1379 context.vc_thread = current_thread();
1380 context.vc_ucred = FSCRED;
1381
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;
1391
1392 vfsp.vnfs_flags = VNFS_NOCACHE | VNFS_CANTCACHE;
1393
1394 vfsp.vnfs_marksystem = 0;
1395 vfsp.vnfs_markroot = 0;
1396
1397 if ( (error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &vfsp, &nvp)) ) {
1398 *vpp = NULLVP;
1399 return (error);
1400 }
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 */
1404 vnode_unlock(nvp);
1405 if ( (error = vnode_ref(nvp)) ) {
1406 panic("bdevvp failed: vnode_ref");
1407 return (error);
1408 }
1409 if ( (error = VNOP_FSYNC(nvp, MNT_WAIT, &context)) ) {
1410 panic("bdevvp failed: fsync");
1411 return (error);
1412 }
1413 if ( (error = buf_invalidateblks(nvp, BUF_WRITE_DATA, 0, 0)) ) {
1414 panic("bdevvp failed: invalidateblks");
1415 return (error);
1416 }
1417
1418 #if CONFIG_MACF
1419 /*
1420 * XXXMAC: We can't put a MAC check here, the system will
1421 * panic without this vnode.
1422 */
1423 #endif /* MAC */
1424
1425 if ( (error = VNOP_OPEN(nvp, FREAD, &context)) ) {
1426 panic("bdevvp failed: open");
1427 return (error);
1428 }
1429 *vpp = nvp;
1430
1431 return (0);
1432 }
1433
1434
1435 /*
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.
1442 */
1443 static vnode_t
1444 checkalias(struct vnode *nvp, dev_t nvp_rdev)
1445 {
1446 struct vnode *vp;
1447 struct vnode **vpp;
1448 struct specinfo *sin = NULL;
1449 int vid = 0;
1450
1451 vpp = &speclisth[SPECHASH(nvp_rdev)];
1452 loop:
1453 SPECHASH_LOCK();
1454
1455 for (vp = *vpp; vp; vp = vp->v_specnext) {
1456 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
1457 vid = vp->v_id;
1458 break;
1459 }
1460 }
1461 SPECHASH_UNLOCK();
1462
1463 if (vp) {
1464 found_alias:
1465 if (vnode_getwithvid(vp,vid)) {
1466 goto loop;
1467 }
1468 /*
1469 * Termination state is checked in vnode_getwithvid
1470 */
1471 vnode_lock(vp);
1472
1473 /*
1474 * Alias, but not in use, so flush it out.
1475 */
1476 if ((vp->v_iocount == 1) && (vp->v_usecount == 0)) {
1477 vnode_reclaim_internal(vp, 1, 1, 0);
1478 vnode_put_locked(vp);
1479 vnode_unlock(vp);
1480 goto loop;
1481 }
1482
1483 }
1484 if (vp == NULL || vp->v_tag != VT_NON) {
1485 if (sin == NULL) {
1486 MALLOC_ZONE(sin, struct specinfo *, sizeof(struct specinfo),
1487 M_SPECINFO, M_WAITOK);
1488 }
1489
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;
1498
1499 SPECHASH_LOCK();
1500
1501 /* We dropped the lock, someone could have added */
1502 if (vp == NULLVP) {
1503 for (vp = *vpp; vp; vp = vp->v_specnext) {
1504 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
1505 vid = vp->v_id;
1506 SPECHASH_UNLOCK();
1507 goto found_alias;
1508 }
1509 }
1510 }
1511
1512 nvp->v_hashchain = vpp;
1513 nvp->v_specnext = *vpp;
1514 *vpp = nvp;
1515
1516 if (vp != NULLVP) {
1517 nvp->v_specflags |= SI_ALIASED;
1518 vp->v_specflags |= SI_ALIASED;
1519 SPECHASH_UNLOCK();
1520 vnode_put_locked(vp);
1521 vnode_unlock(vp);
1522 } else {
1523 SPECHASH_UNLOCK();
1524 }
1525
1526 return (NULLVP);
1527 }
1528
1529 if (sin) {
1530 FREE_ZONE(sin, sizeof(struct specinfo), M_SPECINFO);
1531 }
1532
1533 if ((vp->v_flag & (VBDEVVP | VDEVFLUSH)) != 0)
1534 return(vp);
1535
1536 panic("checkalias with VT_NON vp that shouldn't: %p", vp);
1537
1538 return (vp);
1539 }
1540
1541
1542 /*
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).
1551 */
1552 int
1553 vget_internal(vnode_t vp, int vid, int vflags)
1554 {
1555 int error = 0;
1556
1557 vnode_lock_spin(vp);
1558
1559 if ((vflags & VNODE_WRITEABLE) && (vp->v_writecount == 0))
1560 /*
1561 * vnode to be returned only if it has writers opened
1562 */
1563 error = EINVAL;
1564 else
1565 error = vnode_getiocount(vp, vid, vflags);
1566
1567 vnode_unlock(vp);
1568
1569 return (error);
1570 }
1571
1572 /*
1573 * Returns: 0 Success
1574 * ENOENT No such file or directory [terminating]
1575 */
1576 int
1577 vnode_ref(vnode_t vp)
1578 {
1579
1580 return (vnode_ref_ext(vp, 0, 0));
1581 }
1582
1583 /*
1584 * Returns: 0 Success
1585 * ENOENT No such file or directory [terminating]
1586 */
1587 int
1588 vnode_ref_ext(vnode_t vp, int fmode, int flags)
1589 {
1590 int error = 0;
1591
1592 vnode_lock_spin(vp);
1593
1594 /*
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
1598 */
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);
1601
1602 /*
1603 * if you are the owner of drain/termination, can acquire usecount
1604 */
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()) {
1608 error = ENOENT;
1609 goto out;
1610 }
1611 }
1612 }
1613 vp->v_usecount++;
1614
1615 if (fmode & FWRITE) {
1616 if (++vp->v_writecount <= 0)
1617 panic("vnode_ref_ext: v_writecount");
1618 }
1619 if (fmode & O_EVTONLY) {
1620 if (++vp->v_kusecount <= 0)
1621 panic("vnode_ref_ext: v_kusecount");
1622 }
1623 if (vp->v_flag & VRAGE) {
1624 struct uthread *ut;
1625
1626 ut = get_bsdthread_info(current_thread());
1627
1628 if ( !(current_proc()->p_lflag & P_LRAGE_VNODES) &&
1629 !(ut->uu_flag & UT_RAGE_VNODES)) {
1630 /*
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
1637 */
1638 vp->v_flag &= ~VRAGE;
1639 vp->v_references = 0;
1640 vnode_list_remove(vp);
1641 }
1642 }
1643 if (vp->v_usecount == 1 && vp->v_type == VREG && !(vp->v_flag & VSYSTEM)) {
1644
1645 if (vp->v_ubcinfo) {
1646 vnode_lock_convert(vp);
1647 memory_object_mark_used(vp->v_ubcinfo->ui_control);
1648 }
1649 }
1650 out:
1651 vnode_unlock(vp);
1652
1653 return (error);
1654 }
1655
1656
1657 boolean_t
1658 vnode_on_reliable_media(vnode_t vp)
1659 {
1660 if ( !(vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) && (vp->v_mount->mnt_flag & MNT_LOCAL) )
1661 return (TRUE);
1662 return (FALSE);
1663 }
1664
1665 static void
1666 vnode_async_list_add(vnode_t vp)
1667 {
1668 vnode_list_lock();
1669
1670 if (VONLIST(vp) || (vp->v_lflag & (VL_TERMINATE|VL_DEAD)))
1671 panic("vnode_async_list_add: %p is in wrong state", vp);
1672
1673 TAILQ_INSERT_HEAD(&vnode_async_work_list, vp, v_freelist);
1674 vp->v_listflag |= VLIST_ASYNC_WORK;
1675
1676 async_work_vnodes++;
1677
1678 vnode_list_unlock();
1679
1680 wakeup(&vnode_async_work_list);
1681
1682 }
1683
1684
1685 /*
1686 * put the vnode on appropriate free list.
1687 * called with vnode LOCKED
1688 */
1689 static void
1690 vnode_list_add(vnode_t vp)
1691 {
1692 boolean_t need_dead_wakeup = FALSE;
1693
1694 #if DIAGNOSTIC
1695 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1696 #endif
1697
1698 again:
1699
1700 /*
1701 * if it is already on a list or non zero references return
1702 */
1703 if (VONLIST(vp) || (vp->v_usecount != 0) || (vp->v_iocount != 0) || (vp->v_lflag & VL_TERMINATE))
1704 return;
1705
1706 /*
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.
1710 */
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
1714 #ifdef JOE_DEBUG
1715 record_vp(vp, 1);
1716 #endif
1717 vnode_unlock(vp);
1718 buf_invalidateblks(vp, BUF_INVALIDATE_LOCKED, 0, 0);
1719 vnode_lock(vp);
1720 vnode_dropiocount(vp);
1721 goto again;
1722 }
1723
1724 vnode_list_lock();
1725
1726 if ((vp->v_flag & VRAGE) && !(vp->v_lflag & VL_DEAD)) {
1727 /*
1728 * add the new guy to the appropriate end of the RAGE list
1729 */
1730 if ((vp->v_flag & VAGE))
1731 TAILQ_INSERT_HEAD(&vnode_rage_list, vp, v_freelist);
1732 else
1733 TAILQ_INSERT_TAIL(&vnode_rage_list, vp, v_freelist);
1734
1735 vp->v_listflag |= VLIST_RAGE;
1736 ragevnodes++;
1737
1738 /*
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
1745 */
1746 microuptime(&rage_tv);
1747 } else {
1748 /*
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
1751 */
1752 if ( (vp->v_lflag & VL_DEAD)) {
1753 TAILQ_INSERT_HEAD(&vnode_dead_list, vp, v_freelist);
1754 vp->v_listflag |= VLIST_DEAD;
1755 deadvnodes++;
1756
1757 if (dead_vnode_wanted) {
1758 dead_vnode_wanted--;
1759 need_dead_wakeup = TRUE;
1760 }
1761
1762 } else if ( (vp->v_flag & VAGE) ) {
1763 TAILQ_INSERT_HEAD(&vnode_free_list, vp, v_freelist);
1764 vp->v_flag &= ~VAGE;
1765 freevnodes++;
1766 } else {
1767 TAILQ_INSERT_TAIL(&vnode_free_list, vp, v_freelist);
1768 freevnodes++;
1769 }
1770 }
1771 vnode_list_unlock();
1772
1773 if (need_dead_wakeup == TRUE)
1774 wakeup_one((caddr_t)&dead_vnode_wanted);
1775 }
1776
1777
1778 /*
1779 * remove the vnode from appropriate free list.
1780 * called with vnode LOCKED and
1781 * the list lock held
1782 */
1783 static void
1784 vnode_list_remove_locked(vnode_t vp)
1785 {
1786 if (VONLIST(vp)) {
1787 /*
1788 * the v_listflag field is
1789 * protected by the vnode_list_lock
1790 */
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);
1797 else
1798 VREMFREE("vnode_list_remove", vp);
1799 }
1800 }
1801
1802
1803 /*
1804 * remove the vnode from appropriate free list.
1805 * called with vnode LOCKED
1806 */
1807 static void
1808 vnode_list_remove(vnode_t vp)
1809 {
1810 #if DIAGNOSTIC
1811 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1812 #endif
1813 /*
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
1818 *
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
1826 */
1827 if (VONLIST(vp)) {
1828 vnode_list_lock();
1829 /*
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
1838 * on the free list
1839 */
1840 vnode_list_remove_locked(vp);
1841
1842 vnode_list_unlock();
1843 }
1844 }
1845
1846
1847 void
1848 vnode_rele(vnode_t vp)
1849 {
1850 vnode_rele_internal(vp, 0, 0, 0);
1851 }
1852
1853
1854 void
1855 vnode_rele_ext(vnode_t vp, int fmode, int dont_reenter)
1856 {
1857 vnode_rele_internal(vp, fmode, dont_reenter, 0);
1858 }
1859
1860
1861 void
1862 vnode_rele_internal(vnode_t vp, int fmode, int dont_reenter, int locked)
1863 {
1864
1865 if ( !locked)
1866 vnode_lock_spin(vp);
1867 #if DIAGNOSTIC
1868 else
1869 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1870 #endif
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);
1873
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);
1877 }
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);
1881 }
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);
1884
1885 if ((vp->v_iocount > 0) || (vp->v_usecount > 0)) {
1886 /*
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
1890 */
1891 if (vp->v_usecount == 0) {
1892 vp->v_lflag |= VL_NEEDINACTIVE;
1893 vp->v_flag &= ~(VNOCACHE_DATA | VRAOFF | VOPENEVT);
1894 }
1895 goto done;
1896 }
1897 vp->v_flag &= ~(VNOCACHE_DATA | VRAOFF | VOPENEVT);
1898
1899 if (ISSET(vp->v_lflag, VL_TERMINATE | VL_DEAD) || dont_reenter) {
1900 /*
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
1905 */
1906 if (dont_reenter) {
1907 if ( !(vp->v_lflag & (VL_TERMINATE | VL_DEAD | VL_MARKTERM)) ) {
1908 vp->v_lflag |= VL_NEEDINACTIVE;
1909
1910 if (vnode_on_reliable_media(vp) == FALSE || vp->v_flag & VISDIRTY) {
1911 vnode_async_list_add(vp);
1912 goto done;
1913 }
1914 }
1915 vp->v_flag |= VAGE;
1916 }
1917 vnode_list_add(vp);
1918
1919 goto done;
1920 }
1921 /*
1922 * at this point both the iocount and usecount
1923 * are zero
1924 * pick up an iocount so that we can call
1925 * VNOP_INACTIVE with the vnode lock unheld
1926 */
1927 vp->v_iocount++;
1928 #ifdef JOE_DEBUG
1929 record_vp(vp, 1);
1930 #endif
1931 vp->v_lflag &= ~VL_NEEDINACTIVE;
1932 vnode_unlock(vp);
1933
1934 VNOP_INACTIVE(vp, vfs_context_current());
1935
1936 vnode_lock_spin(vp);
1937 /*
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
1945 */
1946 if ( (vp->v_iocount == 1) && (vp->v_usecount == 0) &&
1947 ((vp->v_lflag & (VL_MARKTERM | VL_TERMINATE | VL_DEAD)) == VL_MARKTERM)) {
1948 struct uthread *ut;
1949
1950 ut = get_bsdthread_info(current_thread());
1951
1952 if (ut->uu_defer_reclaims) {
1953 vp->v_defer_reclaimlist = ut->uu_vreclaims;
1954 ut->uu_vreclaims = vp;
1955 goto done;
1956 }
1957 vnode_lock_convert(vp);
1958 vnode_reclaim_internal(vp, 1, 1, 0);
1959 }
1960 vnode_dropiocount(vp);
1961 vnode_list_add(vp);
1962 done:
1963 if (vp->v_usecount == 0 && vp->v_type == VREG && !(vp->v_flag & VSYSTEM)) {
1964
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);
1968 }
1969 }
1970 if ( !locked)
1971 vnode_unlock(vp);
1972 return;
1973 }
1974
1975 /*
1976 * Remove any vnodes in the vnode table belonging to mount point mp.
1977 *
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
1981 * that are found.
1982 */
1983 #if DIAGNOSTIC
1984 int busyprt = 0; /* print out busy vnodes */
1985 #endif
1986
1987 int
1988 vflush(struct mount *mp, struct vnode *skipvp, int flags)
1989 {
1990 struct vnode *vp;
1991 int busy = 0;
1992 int reclaimed = 0;
1993 int retval;
1994 unsigned int vid;
1995
1996 mount_lock(mp);
1997 vnode_iterate_setup(mp);
1998 /*
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.
2004 */
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);
2008 mount_unlock(mp);
2009 return(EBUSY);
2010 }
2011 }
2012 loop:
2013 /* it is returns 0 then there is nothing to do */
2014 retval = vnode_iterate_prepare(mp);
2015
2016 if (retval == 0) {
2017 vnode_iterate_clear(mp);
2018 mount_unlock(mp);
2019 return(retval);
2020 }
2021
2022 /* iterate over all the vnodes */
2023 while (!TAILQ_EMPTY(&mp->mnt_workerqueue)) {
2024
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);
2028
2029 if ( (vp->v_mount != mp) || (vp == skipvp)) {
2030 continue;
2031 }
2032 vid = vp->v_id;
2033 mount_unlock(mp);
2034
2035 vnode_lock_spin(vp);
2036
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);
2041 }
2042
2043 if ((vp->v_id != vid) || ISSET(vp->v_lflag, VL_DEAD)) {
2044 vnode_unlock(vp);
2045 mount_lock(mp);
2046 continue;
2047 }
2048
2049 /*
2050 * If requested, skip over vnodes marked VSYSTEM.
2051 * Skip over all vnodes marked VNOFLUSH.
2052 */
2053 if ((flags & SKIPSYSTEM) && ((vp->v_flag & VSYSTEM) ||
2054 (vp->v_flag & VNOFLUSH))) {
2055 vnode_unlock(vp);
2056 mount_lock(mp);
2057 continue;
2058 }
2059 /*
2060 * If requested, skip over vnodes marked VSWAP.
2061 */
2062 if ((flags & SKIPSWAP) && (vp->v_flag & VSWAP)) {
2063 vnode_unlock(vp);
2064 mount_lock(mp);
2065 continue;
2066 }
2067 /*
2068 * If requested, skip over vnodes marked VROOT.
2069 */
2070 if ((flags & SKIPROOT) && (vp->v_flag & VROOT)) {
2071 vnode_unlock(vp);
2072 mount_lock(mp);
2073 continue;
2074 }
2075 /*
2076 * If WRITECLOSE is set, only flush out regular file
2077 * vnodes open for writing.
2078 */
2079 if ((flags & WRITECLOSE) &&
2080 (vp->v_writecount == 0 || vp->v_type != VREG)) {
2081 vnode_unlock(vp);
2082 mount_lock(mp);
2083 continue;
2084 }
2085 /*
2086 * If the real usecount is 0, all we need to do is clear
2087 * out the vnode data structures and we are done.
2088 */
2089 if (((vp->v_usecount == 0) ||
2090 ((vp->v_usecount - vp->v_kusecount) == 0))) {
2091
2092 vnode_lock_convert(vp);
2093 vp->v_iocount++; /* so that drain waits for * other iocounts */
2094 #ifdef JOE_DEBUG
2095 record_vp(vp, 1);
2096 #endif
2097 vnode_reclaim_internal(vp, 1, 1, 0);
2098 vnode_dropiocount(vp);
2099 vnode_list_add(vp);
2100 vnode_unlock(vp);
2101
2102 reclaimed++;
2103 mount_lock(mp);
2104 continue;
2105 }
2106 /*
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.
2110 */
2111 if (flags & FORCECLOSE) {
2112 vnode_lock_convert(vp);
2113
2114 if (vp->v_type != VBLK && vp->v_type != VCHR) {
2115 vp->v_iocount++; /* so that drain waits * for other iocounts */
2116 #ifdef JOE_DEBUG
2117 record_vp(vp, 1);
2118 #endif
2119 vnode_abort_advlocks(vp);
2120 vnode_reclaim_internal(vp, 1, 1, 0);
2121 vnode_dropiocount(vp);
2122 vnode_list_add(vp);
2123 vnode_unlock(vp);
2124 } else {
2125 vclean(vp, 0);
2126 vp->v_lflag &= ~VL_DEAD;
2127 vp->v_op = spec_vnodeop_p;
2128 vp->v_flag |= VDEVFLUSH;
2129 vnode_unlock(vp);
2130 }
2131 mount_lock(mp);
2132 continue;
2133 }
2134 #if DIAGNOSTIC
2135 if (busyprt)
2136 vprint("vflush: busy vnode", vp);
2137 #endif
2138 vnode_unlock(vp);
2139 mount_lock(mp);
2140 busy++;
2141 }
2142
2143 /* At this point the worker queue is completed */
2144 if (busy && ((flags & FORCECLOSE)==0) && reclaimed) {
2145 busy = 0;
2146 reclaimed = 0;
2147 (void)vnode_iterate_reloadq(mp);
2148 /* returned with mount lock held */
2149 goto loop;
2150 }
2151
2152 /* if new vnodes were created in between retry the reclaim */
2153 if ( vnode_iterate_reloadq(mp) != 0) {
2154 if (!(busy && ((flags & FORCECLOSE)==0)))
2155 goto loop;
2156 }
2157 vnode_iterate_clear(mp);
2158 mount_unlock(mp);
2159
2160 if (busy && ((flags & FORCECLOSE)==0))
2161 return (EBUSY);
2162 return (0);
2163 }
2164
2165 long num_recycledvnodes = 0;
2166 /*
2167 * Disassociate the underlying file system from a vnode.
2168 * The vnode lock is held on entry.
2169 */
2170 static void
2171 vclean(vnode_t vp, int flags)
2172 {
2173 vfs_context_t ctx = vfs_context_current();
2174 int active;
2175 int need_inactive;
2176 int already_terminating;
2177 int clflags = 0;
2178 #if NAMEDSTREAMS
2179 int is_namedstream;
2180 #endif
2181
2182 /*
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.
2187 */
2188 active = vp->v_usecount;
2189
2190 /*
2191 * just in case we missed sending a needed
2192 * VNOP_INACTIVE, we'll do it now
2193 */
2194 need_inactive = (vp->v_lflag & VL_NEEDINACTIVE);
2195
2196 vp->v_lflag &= ~VL_NEEDINACTIVE;
2197
2198 /*
2199 * Prevent the vnode from being recycled or
2200 * brought into use while we clean it out.
2201 */
2202 already_terminating = (vp->v_lflag & VL_TERMINATE);
2203
2204 vp->v_lflag |= VL_TERMINATE;
2205
2206 #if NAMEDSTREAMS
2207 is_namedstream = vnode_isnamedstream(vp);
2208 #endif
2209
2210 vnode_unlock(vp);
2211
2212 OSAddAtomicLong(1, &num_recycledvnodes);
2213
2214 if (flags & DOCLOSE)
2215 clflags |= IO_NDELAY;
2216 if (flags & REVOKEALL)
2217 clflags |= IO_REVOKE;
2218
2219 if (active && (flags & DOCLOSE))
2220 VNOP_CLOSE(vp, clflags, ctx);
2221
2222 /*
2223 * Clean out any buffers associated with the vnode.
2224 */
2225 if (flags & DOCLOSE) {
2226 #if NFSCLIENT
2227 if (vp->v_tag == VT_NFS)
2228 nfs_vinvalbuf(vp, V_SAVE, ctx, 0);
2229 else
2230 #endif
2231 {
2232 VNOP_FSYNC(vp, MNT_WAIT, ctx);
2233
2234 /*
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.
2240 */
2241 buf_invalidateblks(vp, BUF_WRITE_DATA | (active ? 0 : BUF_INVALIDATE_LOCKED), 0, 0);
2242 }
2243 if (UBCINFOEXISTS(vp))
2244 /*
2245 * Clean the pages in VM.
2246 */
2247 (void)ubc_msync(vp, (off_t)0, ubc_getsize(vp), NULL, UBC_PUSHALL | UBC_INVALIDATE | UBC_SYNC);
2248 }
2249 if (active || need_inactive)
2250 VNOP_INACTIVE(vp, ctx);
2251
2252 #if NAMEDSTREAMS
2253 if ((is_namedstream != 0) && (vp->v_parent != NULLVP)) {
2254 vnode_t pvp = vp->v_parent;
2255
2256 /* Delete the shadow stream file before we reclaim its vnode */
2257 if (vnode_isshadow(vp)) {
2258 vnode_relenamedstream(pvp, vp);
2259 }
2260
2261 /*
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.
2266 */
2267 if (vfs_authopaque(pvp->v_mount)) {
2268 vnode_lock_spin(pvp);
2269 pvp->v_lflag &= ~VL_HASSTREAMS;
2270 vnode_unlock(pvp);
2271 }
2272 }
2273 #endif
2274
2275 /*
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).
2281 */
2282 ubc_destroy_named(vp);
2283
2284 #if CONFIG_TRIGGERS
2285 /*
2286 * cleanup trigger info from vnode (if any)
2287 */
2288 if (vp->v_resolve)
2289 vnode_resolver_detach(vp);
2290 #endif
2291
2292 /*
2293 * Reclaim the vnode.
2294 */
2295 if (VNOP_RECLAIM(vp, ctx))
2296 panic("vclean: cannot reclaim");
2297
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);
2300
2301 vnode_lock(vp);
2302
2303 /*
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
2307 * them.
2308 */
2309 insmntque(vp, (struct mount *)0);
2310
2311 vp->v_mount = dead_mountp;
2312 vp->v_op = dead_vnodeop_p;
2313 vp->v_tag = VT_NON;
2314 vp->v_data = NULL;
2315
2316 vp->v_lflag |= VL_DEAD;
2317 vp->v_flag &= ~VISDIRTY;
2318
2319 if (already_terminating == 0) {
2320 vp->v_lflag &= ~VL_TERMINATE;
2321 /*
2322 * Done with purge, notify sleepers of the grim news.
2323 */
2324 if (vp->v_lflag & VL_TERMWANT) {
2325 vp->v_lflag &= ~VL_TERMWANT;
2326 wakeup(&vp->v_lflag);
2327 }
2328 }
2329 }
2330
2331 /*
2332 * Eliminate all activity associated with the requested vnode
2333 * and with all vnodes aliased to the requested vnode.
2334 */
2335 int
2336 #if DIAGNOSTIC
2337 vn_revoke(vnode_t vp, int flags, __unused vfs_context_t a_context)
2338 #else
2339 vn_revoke(vnode_t vp, __unused int flags, __unused vfs_context_t a_context)
2340 #endif
2341 {
2342 struct vnode *vq;
2343 int vid;
2344
2345 #if DIAGNOSTIC
2346 if ((flags & REVOKEALL) == 0)
2347 panic("vnop_revoke");
2348 #endif
2349
2350 if (vnode_isaliased(vp)) {
2351 /*
2352 * If a vgone (or vclean) is already in progress,
2353 * return an immediate error
2354 */
2355 if (vp->v_lflag & VL_TERMINATE)
2356 return(ENOENT);
2357
2358 /*
2359 * Ensure that vp will not be vgone'd while we
2360 * are eliminating its aliases.
2361 */
2362 SPECHASH_LOCK();
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)
2367 continue;
2368 vid = vq->v_id;
2369 SPECHASH_UNLOCK();
2370 if (vnode_getwithvid(vq,vid)){
2371 SPECHASH_LOCK();
2372 break;
2373 }
2374 vnode_lock(vq);
2375 if (!(vq->v_lflag & VL_TERMINATE)) {
2376 vnode_reclaim_internal(vq, 1, 1, 0);
2377 }
2378 vnode_put_locked(vq);
2379 vnode_unlock(vq);
2380 SPECHASH_LOCK();
2381 break;
2382 }
2383 }
2384 SPECHASH_UNLOCK();
2385 }
2386 vnode_lock(vp);
2387 if (vp->v_lflag & VL_TERMINATE) {
2388 vnode_unlock(vp);
2389 return (ENOENT);
2390 }
2391 vnode_reclaim_internal(vp, 1, 0, REVOKEALL);
2392 vnode_unlock(vp);
2393
2394 return (0);
2395 }
2396
2397 /*
2398 * Recycle an unused vnode to the front of the free list.
2399 * Release the passed interlock if the vnode will be recycled.
2400 */
2401 int
2402 vnode_recycle(struct vnode *vp)
2403 {
2404 vnode_lock_spin(vp);
2405
2406 if (vp->v_iocount || vp->v_usecount) {
2407 vp->v_lflag |= VL_MARKTERM;
2408 vnode_unlock(vp);
2409 return(0);
2410 }
2411 vnode_lock_convert(vp);
2412 vnode_reclaim_internal(vp, 1, 0, 0);
2413
2414 vnode_unlock(vp);
2415
2416 return (1);
2417 }
2418
2419 static int
2420 vnode_reload(vnode_t vp)
2421 {
2422 vnode_lock_spin(vp);
2423
2424 if ((vp->v_iocount > 1) || vp->v_usecount) {
2425 vnode_unlock(vp);
2426 return(0);
2427 }
2428 if (vp->v_iocount <= 0)
2429 panic("vnode_reload with no iocount %d", vp->v_iocount);
2430
2431 /* mark for release when iocount is dopped */
2432 vp->v_lflag |= VL_MARKTERM;
2433 vnode_unlock(vp);
2434
2435 return (1);
2436 }
2437
2438
2439 static void
2440 vgone(vnode_t vp, int flags)
2441 {
2442 struct vnode *vq;
2443 struct vnode *vx;
2444
2445 /*
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
2449 */
2450 vclean(vp, flags | DOCLOSE);
2451
2452 /*
2453 * If special device, remove it from special device alias list
2454 * if it is on one.
2455 */
2456 if ((vp->v_type == VBLK || vp->v_type == VCHR) && vp->v_specinfo != 0) {
2457 SPECHASH_LOCK();
2458 if (*vp->v_hashchain == vp) {
2459 *vp->v_hashchain = vp->v_specnext;
2460 } else {
2461 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
2462 if (vq->v_specnext != vp)
2463 continue;
2464 vq->v_specnext = vp->v_specnext;
2465 break;
2466 }
2467 if (vq == NULL)
2468 panic("missing bdev");
2469 }
2470 if (vp->v_specflags & SI_ALIASED) {
2471 vx = NULL;
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)
2475 continue;
2476 if (vx)
2477 break;
2478 vx = vq;
2479 }
2480 if (vx == NULL)
2481 panic("missing alias");
2482 if (vq == NULL)
2483 vx->v_specflags &= ~SI_ALIASED;
2484 vp->v_specflags &= ~SI_ALIASED;
2485 }
2486 SPECHASH_UNLOCK();
2487 {
2488 struct specinfo *tmp = vp->v_specinfo;
2489 vp->v_specinfo = NULL;
2490 FREE_ZONE((void *)tmp, sizeof(struct specinfo), M_SPECINFO);
2491 }
2492 }
2493 }
2494
2495 /*
2496 * Lookup a vnode by device number.
2497 */
2498 int
2499 check_mountedon(dev_t dev, enum vtype type, int *errorp)
2500 {
2501 vnode_t vp;
2502 int rc = 0;
2503 int vid;
2504
2505 loop:
2506 SPECHASH_LOCK();
2507 for (vp = speclisth[SPECHASH(dev)]; vp; vp = vp->v_specnext) {
2508 if (dev != vp->v_rdev || type != vp->v_type)
2509 continue;
2510 vid = vp->v_id;
2511 SPECHASH_UNLOCK();
2512 if (vnode_getwithvid(vp,vid))
2513 goto loop;
2514 vnode_lock_spin(vp);
2515 if ((vp->v_usecount > 0) || (vp->v_iocount > 1)) {
2516 vnode_unlock(vp);
2517 if ((*errorp = vfs_mountedon(vp)) != 0)
2518 rc = 1;
2519 } else
2520 vnode_unlock(vp);
2521 vnode_put(vp);
2522 return(rc);
2523 }
2524 SPECHASH_UNLOCK();
2525 return (0);
2526 }
2527
2528 /*
2529 * Calculate the total number of references to a special device.
2530 */
2531 int
2532 vcount(vnode_t vp)
2533 {
2534 vnode_t vq, vnext;
2535 int count;
2536 int vid;
2537
2538 loop:
2539 if (!vnode_isaliased(vp))
2540 return (vp->v_specinfo->si_opencount);
2541 count = 0;
2542
2543 SPECHASH_LOCK();
2544 /*
2545 * Grab first vnode and its vid.
2546 */
2547 vq = *vp->v_hashchain;
2548 vid = vq ? vq->v_id : 0;
2549
2550 SPECHASH_UNLOCK();
2551
2552 while (vq) {
2553 /*
2554 * Attempt to get the vnode outside the SPECHASH lock.
2555 */
2556 if (vnode_getwithvid(vq, vid)) {
2557 goto loop;
2558 }
2559 vnode_lock(vq);
2560
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) {
2563 /*
2564 * Alias, but not in use, so flush it out.
2565 */
2566 vnode_reclaim_internal(vq, 1, 1, 0);
2567 vnode_put_locked(vq);
2568 vnode_unlock(vq);
2569 goto loop;
2570 }
2571 count += vq->v_specinfo->si_opencount;
2572 }
2573 vnode_unlock(vq);
2574
2575 SPECHASH_LOCK();
2576 /*
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
2580 */
2581 vnext = vq->v_specnext;
2582 vid = vnext ? vnext->v_id : 0;
2583
2584 SPECHASH_UNLOCK();
2585
2586 vnode_put(vq);
2587
2588 vq = vnext;
2589 }
2590
2591 return (count);
2592 }
2593
2594 int prtactive = 0; /* 1 => print out reclaim of active vnodes */
2595
2596 /*
2597 * Print out a description of a vnode.
2598 */
2599 static const char *typename[] =
2600 { "VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD" };
2601
2602 void
2603 vprint(const char *label, struct vnode *vp)
2604 {
2605 char sbuf[64];
2606
2607 if (label != NULL)
2608 printf("%s: ", label);
2609 printf("type %s, usecount %d, writecount %d",
2610 typename[vp->v_type], vp->v_usecount, vp->v_writecount);
2611 sbuf[0] = '\0';
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]);
2626 }
2627
2628
2629 int
2630 vn_getpath(struct vnode *vp, char *pathbuf, int *len)
2631 {
2632 return build_path(vp, pathbuf, *len, len, BUILDPATH_NO_FS_ENTER, vfs_context_current());
2633 }
2634
2635 int
2636 vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len)
2637 {
2638 return build_path(vp, pathbuf, *len, len, 0, vfs_context_current());
2639 }
2640
2641 int
2642 vn_getcdhash(struct vnode *vp, off_t offset, unsigned char *cdhash)
2643 {
2644 return ubc_cs_getcdhash(vp, offset, cdhash);
2645 }
2646
2647
2648 static char *extension_table=NULL;
2649 static int nexts;
2650 static int max_ext_width;
2651
2652 static int
2653 extension_cmp(const void *a, const void *b)
2654 {
2655 return (strlen((const char *)a) - strlen((const char *)b));
2656 }
2657
2658
2659 //
2660 // This is the api LaunchServices uses to inform the kernel
2661 // the list of package extensions to ignore.
2662 //
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).
2670 //
2671 extern lck_mtx_t *pkg_extensions_lck;
2672
2673 __private_extern__ int
2674 set_package_extensions_table(user_addr_t data, int nentries, int maxwidth)
2675 {
2676 char *new_exts, *old_exts;
2677 int error;
2678
2679 if (nentries <= 0 || nentries > 1024 || maxwidth <= 0 || maxwidth > 255) {
2680 return EINVAL;
2681 }
2682
2683
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) {
2687 return ENOMEM;
2688 }
2689
2690 error = copyin(data, new_exts, nentries * maxwidth);
2691 if (error) {
2692 FREE(new_exts, M_TEMP);
2693 return error;
2694 }
2695
2696 new_exts[(nentries * maxwidth)] = '\0'; // guarantee null termination of the block
2697
2698 qsort(new_exts, nentries, maxwidth, extension_cmp);
2699
2700 lck_mtx_lock(pkg_extensions_lck);
2701
2702 old_exts = extension_table;
2703 extension_table = new_exts;
2704 nexts = nentries;
2705 max_ext_width = maxwidth;
2706
2707 lck_mtx_unlock(pkg_extensions_lck);
2708
2709 if (old_exts) {
2710 FREE(old_exts, M_TEMP);
2711 }
2712
2713 return 0;
2714 }
2715
2716
2717 __private_extern__ int
2718 is_package_name(const char *name, int len)
2719 {
2720 int i, extlen;
2721 const char *ptr, *name_ext;
2722
2723 if (len <= 3) {
2724 return 0;
2725 }
2726
2727 name_ext = NULL;
2728 for(ptr=name; *ptr != '\0'; ptr++) {
2729 if (*ptr == '.') {
2730 name_ext = ptr;
2731 }
2732 }
2733
2734 // if there is no "." extension, it can't match
2735 if (name_ext == NULL) {
2736 return 0;
2737 }
2738
2739 // advance over the "."
2740 name_ext++;
2741
2742 lck_mtx_lock(pkg_extensions_lck);
2743
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') {
2749 // aha, a match!
2750 lck_mtx_unlock(pkg_extensions_lck);
2751 return 1;
2752 }
2753 }
2754
2755 lck_mtx_unlock(pkg_extensions_lck);
2756
2757 // if we get here, no extension matched
2758 return 0;
2759 }
2760
2761 int
2762 vn_path_package_check(__unused vnode_t vp, char *path, int pathlen, int *component)
2763 {
2764 char *ptr, *end;
2765 int comp=0;
2766
2767 *component = -1;
2768 if (*path != '/') {
2769 return EINVAL;
2770 }
2771
2772 end = path + 1;
2773 while(end < path + pathlen && *end != '\0') {
2774 while(end < path + pathlen && *end == '/' && *end != '\0') {
2775 end++;
2776 }
2777
2778 ptr = end;
2779
2780 while(end < path + pathlen && *end != '/' && *end != '\0') {
2781 end++;
2782 }
2783
2784 if (end > path + pathlen) {
2785 // hmm, string wasn't null terminated
2786 return EINVAL;
2787 }
2788
2789 *end = '\0';
2790 if (is_package_name(ptr, end - ptr)) {
2791 *component = comp;
2792 break;
2793 }
2794
2795 end++;
2796 comp++;
2797 }
2798
2799 return 0;
2800 }
2801
2802 /*
2803 * Determine if a name is inappropriate for a searchfs query.
2804 * This list consists of /System currently.
2805 */
2806
2807 int vn_searchfs_inappropriate_name(const char *name, int len) {
2808 const char *bad_names[] = { "System" };
2809 int bad_len[] = { 6 };
2810 int i;
2811
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) {
2814 return 1;
2815 }
2816 }
2817
2818 // if we get here, no name matched
2819 return 0;
2820 }
2821
2822 /*
2823 * Top level filesystem related information gathering.
2824 */
2825 extern unsigned int vfs_nummntops;
2826
2827 /*
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.
2831 *
2832 * It should have been:
2833 * name[0]: VFS_GENERIC
2834 * name[1]: VFS_NUMMNTOPS
2835 */
2836 SYSCTL_INT(_vfs, VFS_NUMMNTOPS, nummntops,
2837 CTLFLAG_RD | CTLFLAG_KERN | CTLFLAG_LOCKED,
2838 &vfs_nummntops, 0, "");
2839
2840 int
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);
2844
2845 int
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)
2849 {
2850 return (EINVAL);
2851 }
2852
2853
2854 //
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.
2864 //
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.
2868 //
2869
2870 #define AFPFS_VFS_CTL_GETID 0x00020001
2871 #define AFPFS_VFS_CTL_NETCHANGE 0x00020002
2872 #define AFPFS_VFS_CTL_VOLCHANGE 0x00020003
2873
2874 #define SMBFS_SYSCTL_REMOUNT 1
2875 #define SMBFS_SYSCTL_REMOUNT_INFO 2
2876 #define SMBFS_SYSCTL_GET_SERVER_SHARE 3
2877
2878
2879 static int
2880 is_bad_sysctl_name(struct vfstable *vfsp, int selector_name)
2881 {
2882 switch(selector_name) {
2883 case VFS_CTL_QUERY:
2884 case VFS_CTL_TIMEO:
2885 case VFS_CTL_NOLOCKS:
2886 case VFS_CTL_NSTATUS:
2887 case VFS_CTL_SADDR:
2888 case VFS_CTL_DISC:
2889 case VFS_CTL_SERVERINFO:
2890 return 1;
2891 break;
2892
2893 default:
2894 break;
2895 }
2896
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:
2903 return 1;
2904 }
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:
2910 return 1;
2911 break;
2912 }
2913 }
2914
2915 //
2916 // If we get here we passed all the checks so the selector is ok
2917 //
2918 return 0;
2919 }
2920
2921
2922 int vfs_sysctl_node SYSCTL_HANDLER_ARGS
2923 {
2924 int *name, namelen;
2925 struct vfstable *vfsp;
2926 int error;
2927 int fstypenum;
2928
2929 fstypenum = oidp->oid_number;
2930 name = arg1;
2931 namelen = arg2;
2932
2933 /* all sysctl names at this level should have at least one name slot for the FS */
2934 if (namelen < 1)
2935 return (EISDIR); /* overloaded */
2936
2937 mount_list_lock();
2938 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
2939 if (vfsp->vfc_typenum == fstypenum) {
2940 vfsp->vfc_refcount++;
2941 break;
2942 }
2943 mount_list_unlock();
2944
2945 if (vfsp == NULL) {
2946 return (ENOTSUP);
2947 }
2948
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]);
2951 return EPERM;
2952 }
2953
2954 error = (vfsp->vfc_vfsops->vfs_sysctl)(name, namelen, req->oldptr, &req->oldlen, req->newptr, req->newlen, vfs_context_current());
2955
2956 mount_list_lock();
2957 vfsp->vfc_refcount--;
2958 mount_list_unlock();
2959
2960 return error;
2961 }
2962
2963 /*
2964 * Check to see if a filesystem is mounted on a block device.
2965 */
2966 int
2967 vfs_mountedon(struct vnode *vp)
2968 {
2969 struct vnode *vq;
2970 int error = 0;
2971
2972 SPECHASH_LOCK();
2973 if (vp->v_specflags & SI_MOUNTEDON) {
2974 error = EBUSY;
2975 goto out;
2976 }
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)
2981 continue;
2982 if (vq->v_specflags & SI_MOUNTEDON) {
2983 error = EBUSY;
2984 break;
2985 }
2986 }
2987 }
2988 out:
2989 SPECHASH_UNLOCK();
2990 return (error);
2991 }
2992
2993 struct unmount_info {
2994 int u_errs; // Total failed unmounts
2995 int u_busy; // EBUSY failed unmounts
2996 };
2997
2998 static int
2999 unmount_callback(mount_t mp, void *arg)
3000 {
3001 int error;
3002 char *mntname;
3003 struct unmount_info *uip = arg;
3004
3005 mount_ref(mp, 0);
3006 mount_iterdrop(mp); // avoid vfs_iterate deadlock in dounmount()
3007
3008 MALLOC_ZONE(mntname, void *, MAXPATHLEN, M_NAMEI, M_WAITOK);
3009 if (mntname)
3010 strlcpy(mntname, mp->mnt_vfsstat.f_mntonname, MAXPATHLEN);
3011
3012 error = dounmount(mp, MNT_FORCE, 1, vfs_context_current());
3013 if (error) {
3014 uip->u_errs++;
3015 printf("Unmount of %s failed (%d)\n", mntname ? mntname:"?", error);
3016 if (error == EBUSY)
3017 uip->u_busy++;
3018 }
3019 if (mntname)
3020 FREE_ZONE(mntname, MAXPATHLEN, M_NAMEI);
3021
3022 return (VFS_RETURNED);
3023 }
3024
3025 /*
3026 * Unmount all filesystems. The list is traversed in reverse order
3027 * of mounting to avoid dependencies.
3028 * Busy mounts are retried.
3029 */
3030 __private_extern__ void
3031 vfs_unmountall(void)
3032 {
3033 int mounts, sec = 1;
3034 struct unmount_info ui;
3035
3036 retry:
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();
3040 if (mounts == 0)
3041 return;
3042
3043 if (ui.u_busy > 0) { // Busy mounts - wait & retry
3044 tsleep(&nummounts, PVFS, "busy mount", sec * hz);
3045 sec *= 2;
3046 if (sec <= 32)
3047 goto retry;
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);
3052 }
3053 }
3054
3055 /*
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
3059 */
3060 __private_extern__ void
3061 vnode_pager_vrele(vnode_t vp)
3062 {
3063 struct ubc_info *uip;
3064
3065 vnode_lock_spin(vp);
3066
3067 vp->v_lflag &= ~VNAMED_UBC;
3068 if (vp->v_usecount != 0) {
3069 /*
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.
3074 *
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()
3079 * can be called.
3080 */
3081 vnode_unlock(vp);
3082 ubc_unmap(vp);
3083 vnode_lock_spin(vp);
3084 }
3085
3086 uip = vp->v_ubcinfo;
3087 vp->v_ubcinfo = UBC_INFO_NULL;
3088
3089 vnode_unlock(vp);
3090
3091 ubc_info_deallocate(uip);
3092 }
3093
3094
3095 #include <sys/disk.h>
3096
3097 u_int32_t rootunit = (u_int32_t)-1;
3098
3099 #if CONFIG_IOSCHED
3100 extern int lowpri_throttle_enabled;
3101 extern int iosched_enabled;
3102 #endif
3103
3104 errno_t
3105 vfs_init_io_attributes(vnode_t devvp, mount_t mp)
3106 {
3107 int error;
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;
3118 u_int32_t blksize;
3119 u_int64_t temp;
3120 u_int32_t features;
3121 vfs_context_t ctx = vfs_context_current();
3122 dk_corestorage_info_t cs_info;
3123 boolean_t cs_present = FALSE;;
3124 int isssd = 0;
3125 int isvirtual = 0;
3126
3127
3128 VNOP_IOCTL(devvp, DKIOCGETTHROTTLEMASK, (caddr_t)&mp->mnt_throttle_mask, 0, NULL);
3129 /*
3130 * as a reasonable approximation, only use the lowest bit of the mask
3131 * to generate a disk unit number
3132 */
3133 mp->mnt_devbsdunit = num_trailing_0(mp->mnt_throttle_mask);
3134
3135 if (devvp == rootvp)
3136 rootunit = mp->mnt_devbsdunit;
3137
3138 if (mp->mnt_devbsdunit == rootunit) {
3139 /*
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
3143 */
3144 mp->mnt_kern_flag |= MNTK_ROOTDEV;
3145 }
3146 /*
3147 * force the spec device to re-cache
3148 * the underlying block size in case
3149 * the filesystem overrode the initial value
3150 */
3151 set_fsblocksize(devvp);
3152
3153
3154 if ((error = VNOP_IOCTL(devvp, DKIOCGETBLOCKSIZE,
3155 (caddr_t)&blksize, 0, ctx)))
3156 return (error);
3157
3158 mp->mnt_devblocksize = blksize;
3159
3160 /*
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
3166 */
3167 mp->mnt_maxreadcnt = MAX_UPL_SIZE_BYTES;
3168 mp->mnt_maxwritecnt = MAX_UPL_SIZE_BYTES;
3169
3170 if (VNOP_IOCTL(devvp, DKIOCISVIRTUAL, (caddr_t)&isvirtual, 0, ctx) == 0) {
3171 if (isvirtual)
3172 mp->mnt_kern_flag |= MNTK_VIRTUALDEV;
3173 }
3174 if (VNOP_IOCTL(devvp, DKIOCISSOLIDSTATE, (caddr_t)&isssd, 0, ctx) == 0) {
3175 if (isssd)
3176 mp->mnt_kern_flag |= MNTK_SSD;
3177 }
3178 if ((error = VNOP_IOCTL(devvp, DKIOCGETFEATURES,
3179 (caddr_t)&features, 0, ctx)))
3180 return (error);
3181
3182 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTREAD,
3183 (caddr_t)&readblockcnt, 0, ctx)))
3184 return (error);
3185
3186 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTWRITE,
3187 (caddr_t)&writeblockcnt, 0, ctx)))
3188 return (error);
3189
3190 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTREAD,
3191 (caddr_t)&readmaxcnt, 0, ctx)))
3192 return (error);
3193
3194 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTWRITE,
3195 (caddr_t)&writemaxcnt, 0, ctx)))
3196 return (error);
3197
3198 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTREAD,
3199 (caddr_t)&readsegcnt, 0, ctx)))
3200 return (error);
3201
3202 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTWRITE,
3203 (caddr_t)&writesegcnt, 0, ctx)))
3204 return (error);
3205
3206 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTBYTECOUNTREAD,
3207 (caddr_t)&readsegsize, 0, ctx)))
3208 return (error);
3209
3210 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTBYTECOUNTWRITE,
3211 (caddr_t)&writesegsize, 0, ctx)))
3212 return (error);
3213
3214 if ((error = VNOP_IOCTL(devvp, DKIOCGETMINSEGMENTALIGNMENTBYTECOUNT,
3215 (caddr_t)&alignment, 0, ctx)))
3216 return (error);
3217
3218 if ((error = VNOP_IOCTL(devvp, DKIOCGETCOMMANDPOOLSIZE,
3219 (caddr_t)&ioqueue_depth, 0, ctx)))
3220 return (error);
3221
3222 if (readmaxcnt)
3223 mp->mnt_maxreadcnt = (readmaxcnt > UINT32_MAX) ? UINT32_MAX : readmaxcnt;
3224
3225 if (readblockcnt) {
3226 temp = readblockcnt * blksize;
3227 temp = (temp > UINT32_MAX) ? UINT32_MAX : temp;
3228
3229 if (temp < mp->mnt_maxreadcnt)
3230 mp->mnt_maxreadcnt = (u_int32_t)temp;
3231 }
3232
3233 if (writemaxcnt)
3234 mp->mnt_maxwritecnt = (writemaxcnt > UINT32_MAX) ? UINT32_MAX : writemaxcnt;
3235
3236 if (writeblockcnt) {
3237 temp = writeblockcnt * blksize;
3238 temp = (temp > UINT32_MAX) ? UINT32_MAX : temp;
3239
3240 if (temp < mp->mnt_maxwritecnt)
3241 mp->mnt_maxwritecnt = (u_int32_t)temp;
3242 }
3243
3244 if (readsegcnt) {
3245 temp = (readsegcnt > UINT16_MAX) ? UINT16_MAX : readsegcnt;
3246 } else {
3247 temp = mp->mnt_maxreadcnt / PAGE_SIZE;
3248
3249 if (temp > UINT16_MAX)
3250 temp = UINT16_MAX;
3251 }
3252 mp->mnt_segreadcnt = (u_int16_t)temp;
3253
3254 if (writesegcnt) {
3255 temp = (writesegcnt > UINT16_MAX) ? UINT16_MAX : writesegcnt;
3256 } else {
3257 temp = mp->mnt_maxwritecnt / PAGE_SIZE;
3258
3259 if (temp > UINT16_MAX)
3260 temp = UINT16_MAX;
3261 }
3262 mp->mnt_segwritecnt = (u_int16_t)temp;
3263
3264 if (readsegsize)
3265 temp = (readsegsize > UINT32_MAX) ? UINT32_MAX : readsegsize;
3266 else
3267 temp = mp->mnt_maxreadcnt;
3268 mp->mnt_maxsegreadsize = (u_int32_t)temp;
3269
3270 if (writesegsize)
3271 temp = (writesegsize > UINT32_MAX) ? UINT32_MAX : writesegsize;
3272 else
3273 temp = mp->mnt_maxwritecnt;
3274 mp->mnt_maxsegwritesize = (u_int32_t)temp;
3275
3276 if (alignment)
3277 temp = (alignment > PAGE_SIZE) ? PAGE_MASK : alignment - 1;
3278 else
3279 temp = 0;
3280 mp->mnt_alignmentmask = temp;
3281
3282
3283 if (ioqueue_depth > MNT_DEFAULT_IOQUEUE_DEPTH)
3284 temp = ioqueue_depth;
3285 else
3286 temp = MNT_DEFAULT_IOQUEUE_DEPTH;
3287
3288 mp->mnt_ioqueue_depth = temp;
3289 mp->mnt_ioscale = (mp->mnt_ioqueue_depth + (MNT_DEFAULT_IOQUEUE_DEPTH - 1)) / MNT_DEFAULT_IOQUEUE_DEPTH;
3290
3291 if (mp->mnt_ioscale > 1)
3292 printf("ioqueue_depth = %d, ioscale = %d\n", (int)mp->mnt_ioqueue_depth, (int)mp->mnt_ioscale);
3293
3294 if (features & DK_FEATURE_FORCE_UNIT_ACCESS)
3295 mp->mnt_ioflags |= MNT_IOFLAGS_FUA_SUPPORTED;
3296
3297 if (VNOP_IOCTL(devvp, DKIOCCORESTORAGE, (caddr_t)&cs_info, 0, ctx) == 0)
3298 cs_present = TRUE;
3299
3300 if (features & DK_FEATURE_UNMAP) {
3301 mp->mnt_ioflags |= MNT_IOFLAGS_UNMAP_SUPPORTED;
3302
3303 if (cs_present == TRUE)
3304 mp->mnt_ioflags |= MNT_IOFLAGS_CSUNMAP_SUPPORTED;
3305 }
3306 if (cs_present == TRUE) {
3307 /*
3308 * for now we'll use the following test as a proxy for
3309 * the underlying drive being FUSION in nature
3310 */
3311 if ((cs_info.flags & DK_CORESTORAGE_PIN_YOUR_METADATA))
3312 mp->mnt_ioflags |= MNT_IOFLAGS_FUSION_DRIVE;
3313 }
3314
3315 #if CONFIG_IOSCHED
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);
3319 }
3320 #endif /* CONFIG_IOSCHED */
3321 return (error);
3322 }
3323
3324 static struct klist fs_klist;
3325 lck_grp_t *fs_klist_lck_grp;
3326 lck_mtx_t *fs_klist_lock;
3327
3328 void
3329 vfs_event_init(void)
3330 {
3331
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);
3335 }
3336
3337 void
3338 vfs_event_signal(fsid_t *fsid, u_int32_t event, intptr_t data)
3339 {
3340 if (event == VQ_DEAD || event == VQ_NOTRESP) {
3341 struct mount *mp = vfs_getvfs(fsid);
3342 if (mp) {
3343 mount_lock_spin(mp);
3344 if (data)
3345 mp->mnt_kern_flag &= ~MNT_LNOTRESP; // Now responding
3346 else
3347 mp->mnt_kern_flag |= MNT_LNOTRESP; // Not responding
3348 mount_unlock(mp);
3349 }
3350 }
3351
3352 lck_mtx_lock(fs_klist_lock);
3353 KNOTE(&fs_klist, event);
3354 lck_mtx_unlock(fs_klist_lock);
3355 }
3356
3357 /*
3358 * return the number of mounted filesystems.
3359 */
3360 static int
3361 sysctl_vfs_getvfscnt(void)
3362 {
3363 return(mount_getvfscnt());
3364 }
3365
3366
3367 static int
3368 mount_getvfscnt(void)
3369 {
3370 int ret;
3371
3372 mount_list_lock();
3373 ret = nummounts;
3374 mount_list_unlock();
3375 return (ret);
3376
3377 }
3378
3379
3380
3381 static int
3382 mount_fillfsids(fsid_t *fsidlst, int count)
3383 {
3384 struct mount *mp;
3385 int actual=0;
3386
3387 actual = 0;
3388 mount_list_lock();
3389 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3390 if (actual <= count) {
3391 fsidlst[actual] = mp->mnt_vfsstat.f_fsid;
3392 actual++;
3393 }
3394 }
3395 mount_list_unlock();
3396 return (actual);
3397
3398 }
3399
3400 /*
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.
3406 */
3407 static int
3408 sysctl_vfs_getvfslist(fsid_t *fsidlst, int count, int *actual)
3409 {
3410 struct mount *mp;
3411
3412 *actual = 0;
3413 mount_list_lock();
3414 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3415 (*actual)++;
3416 if (*actual <= count)
3417 fsidlst[(*actual) - 1] = mp->mnt_vfsstat.f_fsid;
3418 }
3419 mount_list_unlock();
3420 return (*actual <= count ? 0 : ENOMEM);
3421 }
3422
3423 static int
3424 sysctl_vfs_vfslist(__unused struct sysctl_oid *oidp, __unused void *arg1,
3425 __unused int arg2, struct sysctl_req *req)
3426 {
3427 int actual, error;
3428 size_t space;
3429 fsid_t *fsidlst;
3430
3431 /* This is a readonly node. */
3432 if (req->newptr != USER_ADDR_NULL)
3433 return (EPERM);
3434
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);
3438 return 0;
3439 }
3440 again:
3441 /*
3442 * Retrieve an accurate count of the amount of space required to copy
3443 * out all the fsids in the system.
3444 */
3445 space = req->oldlen;
3446 req->oldlen = sysctl_vfs_getvfscnt() * sizeof(fsid_t);
3447
3448 /* they didn't give us enough space. */
3449 if (space < req->oldlen)
3450 return (ENOMEM);
3451
3452 MALLOC(fsidlst, fsid_t *, req->oldlen, M_TEMP, M_WAITOK);
3453 if (fsidlst == NULL) {
3454 return (ENOMEM);
3455 }
3456
3457 error = sysctl_vfs_getvfslist(fsidlst, req->oldlen / sizeof(fsid_t),
3458 &actual);
3459 /*
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.
3462 */
3463 if (error == ENOMEM) {
3464 FREE(fsidlst, M_TEMP);
3465 req->oldlen = space;
3466 goto again;
3467 }
3468 if (error == 0) {
3469 error = SYSCTL_OUT(req, fsidlst, actual * sizeof(fsid_t));
3470 }
3471 FREE(fsidlst, M_TEMP);
3472 return (error);
3473 }
3474
3475 /*
3476 * Do a sysctl by fsid.
3477 */
3478 static int
3479 sysctl_vfs_ctlbyfsid(__unused struct sysctl_oid *oidp, void *arg1, int arg2,
3480 struct sysctl_req *req)
3481 {
3482 union union_vfsidctl vc;
3483 struct mount *mp;
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;
3490
3491 name = arg1;
3492 namelen = arg2;
3493 is_64_bit = proc_is64bit(p);
3494
3495 error = SYSCTL_IN(req, &vc, is_64_bit? sizeof(vc.vc64):sizeof(vc.vc32));
3496 if (error)
3497 goto out;
3498 if (vc.vc32.vc_vers != VFS_CTL_VERS1) { /* works for 32 and 64 */
3499 error = EINVAL;
3500 goto out;
3501 }
3502 mp = mount_list_lookupby_fsid(&vc.vc32.vc_fsid, 0, 1); /* works for 32 and 64 */
3503 if (mp == NULL) {
3504 error = ENOENT;
3505 goto out;
3506 }
3507 gotref = 1;
3508 /* reset so that the fs specific code can fetch it. */
3509 req->newidx = 0;
3510 /*
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.
3514 */
3515 if (mp->mnt_op->vfs_sysctl != NULL) {
3516 if (is_64_bit) {
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,
3521 ctx);
3522 }
3523 else {
3524 error = ENOTSUP;
3525 }
3526 }
3527 else {
3528 error = mp->mnt_op->vfs_sysctl(name, namelen,
3529 CAST_USER_ADDR_T(req),
3530 NULL, USER_ADDR_NULL, 0,
3531 ctx);
3532 }
3533 if (error != ENOTSUP) {
3534 goto out;
3535 }
3536 }
3537 switch (name[0]) {
3538 case VFS_CTL_UMOUNT:
3539 req->newidx = 0;
3540 if (is_64_bit) {
3541 req->newptr = vc.vc64.vc_ptr;
3542 req->newlen = (size_t)vc.vc64.vc_len;
3543 }
3544 else {
3545 req->newptr = CAST_USER_ADDR_T(vc.vc32.vc_ptr);
3546 req->newlen = vc.vc32.vc_len;
3547 }
3548 error = SYSCTL_IN(req, &flags, sizeof(flags));
3549 if (error)
3550 break;
3551
3552 mount_ref(mp, 0);
3553 mount_iterdrop(mp);
3554 gotref = 0;
3555 /* safedounmount consumes a ref */
3556 error = safedounmount(mp, flags, ctx);
3557 break;
3558 case VFS_CTL_STATFS:
3559 req->newidx = 0;
3560 if (is_64_bit) {
3561 req->newptr = vc.vc64.vc_ptr;
3562 req->newlen = (size_t)vc.vc64.vc_len;
3563 }
3564 else {
3565 req->newptr = CAST_USER_ADDR_T(vc.vc32.vc_ptr);
3566 req->newlen = vc.vc32.vc_len;
3567 }
3568 error = SYSCTL_IN(req, &flags, sizeof(flags));
3569 if (error)
3570 break;
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)))
3574 goto out;
3575 if (is_64_bit) {
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;
3589
3590 if (mp->mnt_kern_flag & MNTK_TYPENAME_OVERRIDE) {
3591 strlcpy(&sfs.f_fstypename[0], &mp->fstypename_override[0], MFSTYPENAMELEN);
3592 } else {
3593 strlcpy(sfs.f_fstypename, sp->f_fstypename, MFSNAMELEN);
3594 }
3595 strlcpy(sfs.f_mntonname, sp->f_mntonname, MNAMELEN);
3596 strlcpy(sfs.f_mntfromname, sp->f_mntfromname, MNAMELEN);
3597
3598 error = SYSCTL_OUT(req, &sfs, sizeof(sfs));
3599 }
3600 else {
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;
3605
3606 /*
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.
3610 */
3611 if (sp->f_blocks > INT_MAX) {
3612 int shift;
3613
3614 /*
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.
3619 *
3620 * For safety's sake, we also ensure that f_iosize is never reported as
3621 * being smaller than f_bsize.
3622 */
3623 for (shift = 0; shift < 32; shift++) {
3624 if ((sp->f_blocks >> shift) <= INT_MAX)
3625 break;
3626 if ((((long long)sp->f_bsize) << (shift + 1)) > INT_MAX)
3627 break;
3628 }
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);
3636 } else {
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;
3642 }
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;
3647
3648 if (mp->mnt_kern_flag & MNTK_TYPENAME_OVERRIDE) {
3649 strlcpy(&sfs.f_fstypename[0], &mp->fstypename_override[0], MFSTYPENAMELEN);
3650 } else {
3651 strlcpy(sfs.f_fstypename, sp->f_fstypename, MFSNAMELEN);
3652 }
3653 strlcpy(sfs.f_mntonname, sp->f_mntonname, MNAMELEN);
3654 strlcpy(sfs.f_mntfromname, sp->f_mntfromname, MNAMELEN);
3655
3656 error = SYSCTL_OUT(req, &sfs, sizeof(sfs));
3657 }
3658 break;
3659 default:
3660 error = ENOTSUP;
3661 goto out;
3662 }
3663 out:
3664 if(gotref != 0)
3665 mount_iterdrop(mp);
3666 return (error);
3667 }
3668
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,
3676 };
3677
3678 static int
3679 filt_fsattach(struct knote *kn)
3680 {
3681
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);
3686 return (0);
3687 }
3688
3689 static void
3690 filt_fsdetach(struct knote *kn)
3691 {
3692 lck_mtx_lock(fs_klist_lock);
3693 KNOTE_DETACH(&fs_klist, kn);
3694 lck_mtx_unlock(fs_klist_lock);
3695 }
3696
3697 static int
3698 filt_fsevent(struct knote *kn, long hint)
3699 {
3700 /*
3701 * Backwards compatibility:
3702 * Other filters would do nothing if kn->kn_sfflags == 0
3703 */
3704
3705 if ((kn->kn_sfflags == 0) || (kn->kn_sfflags & hint)) {
3706 kn->kn_fflags |= hint;
3707 }
3708
3709 return (kn->kn_fflags != 0);
3710 }
3711
3712 static int
3713 sysctl_vfs_noremotehang(__unused struct sysctl_oid *oidp,
3714 __unused void *arg1, __unused int arg2, struct sysctl_req *req)
3715 {
3716 int out, error;
3717 pid_t pid;
3718 proc_t p;
3719
3720 /* We need a pid. */
3721 if (req->newptr == USER_ADDR_NULL)
3722 return (EINVAL);
3723
3724 error = SYSCTL_IN(req, &pid, sizeof(pid));
3725 if (error)
3726 return (error);
3727
3728 p = proc_find(pid < 0 ? -pid : pid);
3729 if (p == NULL)
3730 return (ESRCH);
3731
3732 /*
3733 * Fetching the value is ok, but we only fetch if the old
3734 * pointer is given.
3735 */
3736 if (req->oldptr != USER_ADDR_NULL) {
3737 out = !((p->p_flag & P_NOREMOTEHANG) == 0);
3738 proc_rele(p);
3739 error = SYSCTL_OUT(req, &out, sizeof(out));
3740 return (error);
3741 }
3742
3743 /* cansignal offers us enough security. */
3744 if (p != req->p && proc_suser(req->p) != 0) {
3745 proc_rele(p);
3746 return (EPERM);
3747 }
3748
3749 if (pid < 0)
3750 OSBitAndAtomic(~((uint32_t)P_NOREMOTEHANG), &p->p_flag);
3751 else
3752 OSBitOrAtomic(P_NOREMOTEHANG, &p->p_flag);
3753 proc_rele(p);
3754
3755 return (0);
3756 }
3757
3758 static int
3759 sysctl_vfs_generic_conf SYSCTL_HANDLER_ARGS
3760 {
3761 int *name, namelen;
3762 struct vfstable *vfsp;
3763 struct vfsconf vfsc;
3764
3765 (void)oidp;
3766 name = arg1;
3767 namelen = arg2;
3768
3769 if (namelen < 1) {
3770 return (EISDIR);
3771 } else if (namelen > 1) {
3772 return (ENOTDIR);
3773 }
3774
3775 mount_list_lock();
3776 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
3777 if (vfsp->vfc_typenum == name[0])
3778 break;
3779
3780 if (vfsp == NULL) {
3781 mount_list_unlock();
3782 return (ENOTSUP);
3783 }
3784
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;
3792
3793 mount_list_unlock();
3794 return (SYSCTL_OUT(req, &vfsc, sizeof(struct vfsconf)));
3795 }
3796
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, "");
3815
3816 /*
3817 * Print vnode state.
3818 */
3819 void
3820 vn_print_state(struct vnode *vp, const char *fmt, ...)
3821 {
3822 va_list ap;
3823 char perm_str[] = "(VM_KERNEL_ADDRPERM pointer)";
3824 char fs_name[MFSNAMELEN];
3825
3826 va_start(ap, fmt);
3827 vprintf(fmt, ap);
3828 va_end(ap);
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);
3831 /* Counts .. */
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,
3835 vp->v_numoutput);
3836 /* Flags */
3837 printf(" flag 0x%x, lflag 0x%x, listflag 0x%x\n", vp->v_flag,
3838 vp->v_lflag, vp->v_listflag);
3839
3840 if (vp->v_mount == NULL || vp->v_mount == dead_mountp) {
3841 strlcpy(fs_name, "deadfs", MFSNAMELEN);
3842 } else {
3843 vfs_name(vp->v_mount, fs_name);
3844 }
3845
3846 printf(" v_data 0x%0llx %s\n",
3847 (vp->v_data ? (uint64_t)VM_KERNEL_ADDRPERM(vp->v_data) : 0),
3848 perm_str);
3849 printf(" v_mount 0x%0llx %s vfs_name %s\n",
3850 (vp->v_mount ? (uint64_t)VM_KERNEL_ADDRPERM(vp->v_mount) : 0),
3851 perm_str, fs_name);
3852 }
3853
3854 long num_reusedvnodes = 0;
3855
3856
3857 static vnode_t
3858 process_vp(vnode_t vp, int want_vp, int *deferred)
3859 {
3860 unsigned int vpid;
3861
3862 *deferred = 0;
3863
3864 vpid = vp->v_id;
3865
3866 vnode_list_remove_locked(vp);
3867
3868 vnode_list_unlock();
3869
3870 vnode_lock_spin(vp);
3871
3872 /*
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.
3876 */
3877 if ((vpid != vp->v_id) || (vp->v_usecount != 0) || (vp->v_iocount != 0) ||
3878 VONLIST(vp) || (vp->v_lflag & VL_TERMINATE)) {
3879 /*
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
3883 */
3884 vnode_unlock(vp);
3885
3886 return (NULLVP);
3887 }
3888 if ( (vp->v_lflag & (VL_NEEDINACTIVE | VL_MARKTERM)) == VL_NEEDINACTIVE ) {
3889 /*
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
3895 *
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
3903 */
3904 vp->v_iocount++;
3905 #ifdef JOE_DEBUG
3906 record_vp(vp, 1);
3907 #endif
3908 vnode_put_locked(vp);
3909 vnode_unlock(vp);
3910
3911 return (NULLVP);
3912 }
3913 /*
3914 * Checks for anyone racing us for recycle
3915 */
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);
3919 vnode_unlock(vp);
3920
3921 *deferred = 1;
3922
3923 return (NULLVP);
3924 }
3925 if (vp->v_lflag & VL_DEAD)
3926 panic("new_vnode(%p): the vnode is VL_DEAD but not VBAD", vp);
3927
3928 vnode_lock_convert(vp);
3929 (void)vnode_reclaim_internal(vp, 1, want_vp, 0);
3930
3931 if (want_vp) {
3932 if ((VONLIST(vp)))
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);
3941 } else {
3942 vnode_unlock(vp);
3943 vp = NULLVP;
3944 }
3945 }
3946 return (vp);
3947 }
3948
3949
3950
3951 static void
3952 async_work_continue(void)
3953 {
3954 struct async_work_lst *q;
3955 int deferred;
3956 vnode_t vp;
3957
3958 q = &vnode_async_work_list;
3959
3960 for (;;) {
3961
3962 vnode_list_lock();
3963
3964 if ( TAILQ_EMPTY(q) ) {
3965 assert_wait(q, (THREAD_UNINT));
3966
3967 vnode_list_unlock();
3968
3969 thread_block((thread_continue_t)async_work_continue);
3970
3971 continue;
3972 }
3973 async_work_handled++;
3974
3975 vp = TAILQ_FIRST(q);
3976
3977 vp = process_vp(vp, 0, &deferred);
3978
3979 if (vp != NULLVP)
3980 panic("found VBAD vp (%p) on async queue", vp);
3981 }
3982 }
3983
3984
3985 static int
3986 new_vnode(vnode_t *vpp)
3987 {
3988 vnode_t vp;
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;
3992 int deferred;
3993 struct timeval initial_tv;
3994 struct timeval current_tv;
3995 proc_t curproc = current_proc();
3996
3997 initial_tv.tv_sec = 0;
3998 retry:
3999 vp = NULLVP;
4000
4001 vnode_list_lock();
4002
4003 if (need_reliable_vp == TRUE)
4004 async_work_timed_out++;
4005
4006 if ((numvnodes - deadvnodes) < desiredvnodes || force_alloc) {
4007 struct timespec ts;
4008
4009 if ( !TAILQ_EMPTY(&vnode_dead_list)) {
4010 /*
4011 * Can always reuse a dead one
4012 */
4013 vp = TAILQ_FIRST(&vnode_dead_list);
4014 goto steal_this_vp;
4015 }
4016 /*
4017 * no dead vnodes available... if we're under
4018 * the limit, we'll create a new vnode
4019 */
4020 numvnodes++;
4021 vnode_list_unlock();
4022
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);
4027
4028 klist_init(&vp->v_knotes);
4029 nanouptime(&ts);
4030 vp->v_id = ts.tv_nsec;
4031 vp->v_flag = VSTANDARD;
4032
4033 #if CONFIG_MACF
4034 if (mac_vnode_label_init_needed(vp))
4035 mac_vnode_label_init(vp);
4036 #endif /* MAC */
4037
4038 vp->v_iocount = 1;
4039 goto done;
4040 }
4041 microuptime(&current_tv);
4042
4043 #define MAX_WALK_COUNT 1000
4044
4045 if ( !TAILQ_EMPTY(&vnode_rage_list) &&
4046 (ragevnodes >= rage_limit ||
4047 (current_tv.tv_sec - rage_tv.tv_sec) >= RAGE_TIME_LIMIT)) {
4048
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);
4052
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.
4060
4061 if ((curproc->p_flag & P_DEPENDENCY_CAPABLE) == 0 || vp->v_mount == NULL ||
4062 (vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) == 0) {
4063 /*
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
4069 */
4070 if (need_reliable_vp == FALSE || vnode_on_reliable_media(vp) == TRUE)
4071 break;
4072 }
4073
4074 // don't iterate more than MAX_WALK_COUNT vnodes to
4075 // avoid keeping the vnode list lock held for too long.
4076
4077 if (walk_count++ > MAX_WALK_COUNT) {
4078 vp = NULL;
4079 break;
4080 }
4081 }
4082 }
4083
4084 if (vp == NULL && !TAILQ_EMPTY(&vnode_free_list)) {
4085 /*
4086 * Pick the first vp for possible reuse
4087 */
4088 walk_count = 0;
4089 TAILQ_FOREACH(vp, &vnode_free_list, v_freelist) {
4090
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.
4098
4099 if ((curproc->p_flag & P_DEPENDENCY_CAPABLE) == 0 || vp->v_mount == NULL ||
4100 (vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) == 0) {
4101 /*
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
4107 */
4108 if (need_reliable_vp == FALSE || vnode_on_reliable_media(vp) == TRUE)
4109 break;
4110 }
4111
4112 // don't iterate more than MAX_WALK_COUNT vnodes to
4113 // avoid keeping the vnode list lock held for too long.
4114
4115 if (walk_count++ > MAX_WALK_COUNT) {
4116 vp = NULL;
4117 break;
4118 }
4119 }
4120 }
4121
4122 //
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
4129 // the allocation.
4130 //
4131 if (vp == NULL && walk_count >= MAX_WALK_COUNT) {
4132 force_alloc = 1;
4133 vnode_list_unlock();
4134 goto retry;
4135 }
4136
4137 if (vp == NULL) {
4138 /*
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
4143 */
4144 if (++retries <= max_retries) {
4145 vnode_list_unlock();
4146 delay_for_interval(1, 1000 * 1000);
4147 goto retry;
4148 }
4149
4150 vnode_list_unlock();
4151 tablefull("vnode");
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);
4155 #if CONFIG_JETSAM
4156
4157 #if DEVELOPMENT || DEBUG
4158 if (bootarg_no_vnode_jetsam)
4159 panic("vnode table is full\n");
4160 #endif /* DEVELOPMENT || DEBUG */
4161
4162 /*
4163 * Running out of vnodes tends to make a system unusable. Start killing
4164 * processes that jetsam knows are killable.
4165 */
4166 if (memorystatus_kill_on_vnode_limit() == FALSE) {
4167 /*
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.
4171 */
4172 panic("vnode table is full\n");
4173 }
4174
4175 /*
4176 * Now that we've killed someone, wait a bit and continue looking
4177 * (with fewer retries before trying another kill).
4178 */
4179 delay_for_interval(3, 1000 * 1000);
4180 retries = 0;
4181 max_retries = 10;
4182 goto retry;
4183 #endif
4184
4185 *vpp = NULL;
4186 return (ENFILE);
4187 }
4188 steal_this_vp:
4189 if ((vp = process_vp(vp, 1, &deferred)) == NULLVP) {
4190 if (deferred) {
4191 int elapsed_msecs;
4192 struct timeval elapsed_tv;
4193
4194 if (initial_tv.tv_sec == 0)
4195 microuptime(&initial_tv);
4196
4197 vnode_list_lock();
4198
4199 dead_vnode_waited++;
4200 dead_vnode_wanted++;
4201
4202 /*
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
4209 */
4210 assert_wait_timeout((caddr_t)&dead_vnode_wanted, (THREAD_INTERRUPTIBLE), 10000, NSEC_PER_USEC);
4211
4212 vnode_list_unlock();
4213
4214 thread_block(THREAD_CONTINUE_NULL);
4215
4216 microuptime(&elapsed_tv);
4217
4218 timevalsub(&elapsed_tv, &initial_tv);
4219 elapsed_msecs = elapsed_tv.tv_sec * 1000 + elapsed_tv.tv_usec / 1000;
4220
4221 if (elapsed_msecs >= 100) {
4222 /*
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
4227 * go with that.
4228 *
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
4234 */
4235 need_reliable_vp = TRUE;
4236 }
4237 }
4238 goto retry;
4239 }
4240 OSAddAtomicLong(1, &num_reusedvnodes);
4241
4242
4243 #if CONFIG_MACF
4244 /*
4245 * We should never see VL_LABELWAIT or VL_LABEL here.
4246 * as those operations hold a reference.
4247 */
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);
4256 }
4257
4258 #endif /* MAC */
4259
4260 vp->v_iocount = 1;
4261 vp->v_lflag = 0;
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 */
4267 vp->v_mount = NULL;
4268 vp->v_defer_reclaimlist = (vnode_t)0;
4269
4270 vnode_unlock(vp);
4271
4272 done:
4273 *vpp = vp;
4274
4275 return (0);
4276 }
4277
4278 void
4279 vnode_lock(vnode_t vp)
4280 {
4281 lck_mtx_lock(&vp->v_lock);
4282 }
4283
4284 void
4285 vnode_lock_spin(vnode_t vp)
4286 {
4287 lck_mtx_lock_spin(&vp->v_lock);
4288 }
4289
4290 void
4291 vnode_unlock(vnode_t vp)
4292 {
4293 lck_mtx_unlock(&vp->v_lock);
4294 }
4295
4296
4297
4298 int
4299 vnode_get(struct vnode *vp)
4300 {
4301 int retval;
4302
4303 vnode_lock_spin(vp);
4304 retval = vnode_get_locked(vp);
4305 vnode_unlock(vp);
4306
4307 return(retval);
4308 }
4309
4310 int
4311 vnode_get_locked(struct vnode *vp)
4312 {
4313 #if DIAGNOSTIC
4314 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
4315 #endif
4316 if ((vp->v_iocount == 0) && (vp->v_lflag & (VL_TERMINATE | VL_DEAD))) {
4317 return(ENOENT);
4318 }
4319 vp->v_iocount++;
4320 #ifdef JOE_DEBUG
4321 record_vp(vp, 1);
4322 #endif
4323 return (0);
4324 }
4325
4326 /*
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.
4331 */
4332 int
4333 vnode_getwithvid(vnode_t vp, uint32_t vid)
4334 {
4335 return(vget_internal(vp, vid, ( VNODE_NODEAD | VNODE_WITHID | VNODE_DRAINO )));
4336 }
4337
4338 /*
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.
4342 */
4343 int
4344 vnode_getwithvid_drainok(vnode_t vp, uint32_t vid)
4345 {
4346 return(vget_internal(vp, vid, ( VNODE_NODEAD | VNODE_WITHID )));
4347 }
4348
4349 int
4350 vnode_getwithref(vnode_t vp)
4351 {
4352 return(vget_internal(vp, 0, 0));
4353 }
4354
4355
4356 __private_extern__ int
4357 vnode_getalways(vnode_t vp)
4358 {
4359 return(vget_internal(vp, 0, VNODE_ALWAYS));
4360 }
4361
4362 int
4363 vnode_put(vnode_t vp)
4364 {
4365 int retval;
4366
4367 vnode_lock_spin(vp);
4368 retval = vnode_put_locked(vp);
4369 vnode_unlock(vp);
4370
4371 return(retval);
4372 }
4373
4374 static inline void
4375 vn_set_dead(vnode_t vp)
4376 {
4377 vp->v_mount = NULL;
4378 vp->v_op = dead_vnodeop_p;
4379 vp->v_tag = VT_NON;
4380 vp->v_data = NULL;
4381 vp->v_type = VBAD;
4382 vp->v_lflag |= VL_DEAD;
4383 }
4384
4385 int
4386 vnode_put_locked(vnode_t vp)
4387 {
4388 vfs_context_t ctx = vfs_context_current(); /* hoist outside loop */
4389
4390 #if DIAGNOSTIC
4391 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
4392 #endif
4393 retry:
4394 if (vp->v_iocount < 1)
4395 panic("vnode_put(%p): iocount < 1", vp);
4396
4397 if ((vp->v_usecount > 0) || (vp->v_iocount > 1)) {
4398 vnode_dropiocount(vp);
4399 return(0);
4400 }
4401 if ((vp->v_lflag & (VL_DEAD | VL_NEEDINACTIVE)) == VL_NEEDINACTIVE) {
4402
4403 vp->v_lflag &= ~VL_NEEDINACTIVE;
4404 vnode_unlock(vp);
4405
4406 VNOP_INACTIVE(vp, ctx);
4407
4408 vnode_lock_spin(vp);
4409 /*
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
4417 */
4418 goto retry;
4419 }
4420 vp->v_lflag &= ~VL_NEEDINACTIVE;
4421
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);
4425 }
4426 vnode_dropiocount(vp);
4427 vnode_list_add(vp);
4428
4429 return(0);
4430 }
4431
4432 /* is vnode_t in use by others? */
4433 int
4434 vnode_isinuse(vnode_t vp, int refcnt)
4435 {
4436 return(vnode_isinuse_locked(vp, refcnt, 0));
4437 }
4438
4439
4440 static int
4441 vnode_isinuse_locked(vnode_t vp, int refcnt, int locked)
4442 {
4443 int retval = 0;
4444
4445 if (!locked)
4446 vnode_lock_spin(vp);
4447 if ((vp->v_type != VREG) && ((vp->v_usecount - vp->v_kusecount) > refcnt)) {
4448 retval = 1;
4449 goto out;
4450 }
4451 if (vp->v_type == VREG) {
4452 retval = ubc_isinuse_locked(vp, refcnt, 1);
4453 }
4454
4455 out:
4456 if (!locked)
4457 vnode_unlock(vp);
4458 return(retval);
4459 }
4460
4461
4462 /* resume vnode_t */
4463 errno_t
4464 vnode_resume(vnode_t vp)
4465 {
4466 if ((vp->v_lflag & VL_SUSPENDED) && vp->v_owner == current_thread()) {
4467
4468 vnode_lock_spin(vp);
4469 vp->v_lflag &= ~VL_SUSPENDED;
4470 vp->v_owner = NULL;
4471 vnode_unlock(vp);
4472
4473 wakeup(&vp->v_iocount);
4474 }
4475 return(0);
4476 }
4477
4478 /* suspend vnode_t
4479 * Please do not use on more than one vnode at a time as it may
4480 * cause deadlocks.
4481 * xxx should we explicity prevent this from happening?
4482 */
4483
4484 errno_t
4485 vnode_suspend(vnode_t vp)
4486 {
4487 if (vp->v_lflag & VL_SUSPENDED) {
4488 return(EBUSY);
4489 }
4490
4491 vnode_lock_spin(vp);
4492
4493 /*
4494 * xxx is this sufficient to check if a vnode_drain is
4495 * progress?
4496 */
4497
4498 if (vp->v_owner == NULL) {
4499 vp->v_lflag |= VL_SUSPENDED;
4500 vp->v_owner = current_thread();
4501 }
4502 vnode_unlock(vp);
4503
4504 return(0);
4505 }
4506
4507 /*
4508 * Release any blocked locking requests on the vnode.
4509 * Used for forced-unmounts.
4510 *
4511 * XXX What about network filesystems?
4512 */
4513 static void
4514 vnode_abort_advlocks(vnode_t vp)
4515 {
4516 if (vp->v_flag & VLOCKLOCAL)
4517 lf_abort_advlocks(vp);
4518 }
4519
4520
4521 static errno_t
4522 vnode_drain(vnode_t vp)
4523 {
4524
4525 if (vp->v_lflag & VL_DRAIN) {
4526 panic("vnode_drain: recursive drain");
4527 return(ENOENT);
4528 }
4529 vp->v_lflag |= VL_DRAIN;
4530 vp->v_owner = current_thread();
4531
4532 while (vp->v_iocount > 1)
4533 msleep(&vp->v_iocount, &vp->v_lock, PVFS, "vnode_drain", NULL);
4534
4535 vp->v_lflag &= ~VL_DRAIN;
4536
4537 return(0);
4538 }
4539
4540
4541 /*
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
4550 */
4551 #define UNAGE_THRESHHOLD 25
4552 #define UNAGE_DIRTYTHRESHHOLD 6
4553
4554 errno_t
4555 vnode_getiocount(vnode_t vp, unsigned int vid, int vflags)
4556 {
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;
4562
4563 for (;;) {
4564 int sleepflg = 0;
4565
4566 /*
4567 * if it is a dead vnode with deadfs
4568 */
4569 if (nodead && (vp->v_lflag & VL_DEAD) && ((vp->v_type == VBAD) || (vp->v_data == 0))) {
4570 return(ENOENT);
4571 }
4572 /*
4573 * will return VL_DEAD ones
4574 */
4575 if ((vp->v_lflag & (VL_SUSPENDED | VL_DRAIN | VL_TERMINATE)) == 0 ) {
4576 break;
4577 }
4578 /*
4579 * if suspended vnodes are to be failed
4580 */
4581 if (nosusp && (vp->v_lflag & VL_SUSPENDED)) {
4582 return(ENOENT);
4583 }
4584 /*
4585 * if you are the owner of drain/suspend/termination , can acquire iocount
4586 * check for VL_TERMINATE; it does not set owner
4587 */
4588 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED | VL_TERMINATE)) &&
4589 (vp->v_owner == current_thread())) {
4590 break;
4591 }
4592
4593 if (always != 0)
4594 break;
4595
4596 /*
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
4599 * interruptible.
4600 */
4601 if (vp->v_lflag & VL_DRAIN) {
4602 /*
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
4607 * being released.
4608 */
4609 if (beatdrain)
4610 break;
4611 /*
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.
4619 */
4620 if (withvid && (vp->v_mount) && vfs_isunmount(vp->v_mount))
4621 return (ENODEV);
4622
4623 if (vnode_istty(vp)) {
4624 sleepflg = PCATCH;
4625 }
4626 }
4627
4628 vnode_lock_convert(vp);
4629
4630 if (vp->v_lflag & VL_TERMINATE) {
4631 int error;
4632
4633 vp->v_lflag |= VL_TERMWANT;
4634
4635 error = msleep(&vp->v_lflag, &vp->v_lock,
4636 (PVFS | sleepflg), "vnode getiocount", NULL);
4637 if (error)
4638 return (error);
4639 } else
4640 msleep(&vp->v_iocount, &vp->v_lock, PVFS, "vnode_getiocount", NULL);
4641 }
4642 if (withvid && vid != vp->v_id) {
4643 return(ENOENT);
4644 }
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);
4649 }
4650 vp->v_iocount++;
4651 #ifdef JOE_DEBUG
4652 record_vp(vp, 1);
4653 #endif
4654 return(0);
4655 }
4656
4657 static void
4658 vnode_dropiocount (vnode_t vp)
4659 {
4660 if (vp->v_iocount < 1)
4661 panic("vnode_dropiocount(%p): v_iocount < 1", vp);
4662
4663 vp->v_iocount--;
4664 #ifdef JOE_DEBUG
4665 record_vp(vp, -1);
4666 #endif
4667 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED)) && (vp->v_iocount <= 1))
4668 wakeup(&vp->v_iocount);
4669 }
4670
4671
4672 void
4673 vnode_reclaim(struct vnode * vp)
4674 {
4675 vnode_reclaim_internal(vp, 0, 0, 0);
4676 }
4677
4678 __private_extern__
4679 void
4680 vnode_reclaim_internal(struct vnode * vp, int locked, int reuse, int flags)
4681 {
4682 int isfifo = 0;
4683
4684 if (!locked)
4685 vnode_lock(vp);
4686
4687 if (vp->v_lflag & VL_TERMINATE) {
4688 panic("vnode reclaim in progress");
4689 }
4690 vp->v_lflag |= VL_TERMINATE;
4691
4692 vn_clearunionwait(vp, 1);
4693
4694 vnode_drain(vp);
4695
4696 isfifo = (vp->v_type == VFIFO);
4697
4698 if (vp->v_type != VBAD)
4699 vgone(vp, flags); /* clean and reclaim the vnode */
4700
4701 /*
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
4716 */
4717 vnode_list_lock();
4718
4719 vnode_list_remove_locked(vp);
4720 vp->v_id++;
4721
4722 vnode_list_unlock();
4723
4724 if (isfifo) {
4725 struct fifoinfo * fip;
4726
4727 fip = vp->v_fifoinfo;
4728 vp->v_fifoinfo = NULL;
4729 FREE(fip, M_TEMP);
4730 }
4731 vp->v_type = VBAD;
4732
4733 if (vp->v_data)
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");
4739 if (vp->v_parent)
4740 panic("vnode_reclaim_internal: vparent not removed");
4741 if (vp->v_name)
4742 panic("vnode_reclaim_internal: vname not removed");
4743
4744 vp->v_socket = NULL;
4745
4746 vp->v_lflag &= ~VL_TERMINATE;
4747 vp->v_owner = NULL;
4748
4749 KNOTE(&vp->v_knotes, NOTE_REVOKE);
4750
4751 /* Make sure that when we reuse the vnode, no knotes left over */
4752 klist_init(&vp->v_knotes);
4753
4754 if (vp->v_lflag & VL_TERMWANT) {
4755 vp->v_lflag &= ~VL_TERMWANT;
4756 wakeup(&vp->v_lflag);
4757 }
4758 if (!reuse) {
4759 /*
4760 * make sure we get on the
4761 * dead list if appropriate
4762 */
4763 vnode_list_add(vp);
4764 }
4765 if (!locked)
4766 vnode_unlock(vp);
4767 }
4768
4769 static int
4770 vnode_create_internal(uint32_t flavor, uint32_t size, void *data, vnode_t *vpp,
4771 int init_vnode)
4772 {
4773 int error;
4774 int insert = 1;
4775 int existing_vnode;
4776 vnode_t vp;
4777 vnode_t nvp;
4778 vnode_t dvp;
4779 struct uthread *ut;
4780 struct componentname *cnp;
4781 struct vnode_fsparam *param = (struct vnode_fsparam *)data;
4782 #if CONFIG_TRIGGERS
4783 struct vnode_trigger_param *tinfo = NULL;
4784 #endif
4785 if (*vpp) {
4786 vp = *vpp;
4787 *vpp = NULLVP;
4788 existing_vnode = 1;
4789 } else {
4790 existing_vnode = 0;
4791 }
4792
4793 if (init_vnode) {
4794 /* Do quick sanity check on the parameters. */
4795 if ((param == NULL) || (param->vnfs_vtype == VBAD)) {
4796 error = EINVAL;
4797 goto error_out;
4798 }
4799
4800 #if CONFIG_TRIGGERS
4801 if ((flavor == VNCREATE_TRIGGER) && (size == VNCREATE_TRIGGER_SIZE)) {
4802 tinfo = (struct vnode_trigger_param *)data;
4803
4804 /* Validate trigger vnode input */
4805 if ((param->vnfs_vtype != VDIR) ||
4806 (tinfo->vnt_resolve_func == NULL) ||
4807 (tinfo->vnt_flags & ~VNT_VALID_MASK)) {
4808 error = EINVAL;
4809 goto error_out;
4810 }
4811 /* Fall through a normal create (params will be the same) */
4812 flavor = VNCREATE_FLAVOR;
4813 size = VCREATESIZE;
4814 }
4815 #endif
4816 if ((flavor != VNCREATE_FLAVOR) || (size != VCREATESIZE)) {
4817 error = EINVAL;
4818 goto error_out;
4819 }
4820 }
4821
4822 if (!existing_vnode) {
4823 if ((error = new_vnode(&vp)) ) {
4824 return (error);
4825 }
4826 if (!init_vnode) {
4827 /* Make it so that it can be released by a vnode_put) */
4828 vn_set_dead(vp);
4829 *vpp = vp;
4830 return (0);
4831 }
4832 } else {
4833 /*
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.
4837 *
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.
4844 */
4845 vp->v_lflag &= ~VL_DEAD;
4846 }
4847
4848 dvp = param->vnfs_dvp;
4849 cnp = param->vnfs_cnp;
4850
4851 vp->v_op = param->vnfs_vops;
4852 vp->v_type = param->vnfs_vtype;
4853 vp->v_data = param->vnfs_fsnode;
4854
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);
4861 if (error) {
4862 #ifdef JOE_DEBUG
4863 record_vp(vp, 1);
4864 #endif
4865 vn_set_dead(vp);
4866
4867 vnode_put(vp);
4868 return(error);
4869 }
4870 if (param->vnfs_mp->mnt_ioflags & MNT_IOFLAGS_IOSCHED_SUPPORTED)
4871 memory_object_mark_io_tracking(vp->v_ubcinfo->ui_control);
4872 }
4873 #ifdef JOE_DEBUG
4874 record_vp(vp, 1);
4875 #endif
4876
4877 #if CONFIG_TRIGGERS
4878 /*
4879 * For trigger vnodes, attach trigger info to vnode
4880 */
4881 if ((vp->v_type == VDIR) && (tinfo != NULL)) {
4882 /*
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.
4886 */
4887 #ifdef JOE_DEBUG
4888 record_vp(vp, -1);
4889 #endif
4890 error = vnode_resolver_create(param->vnfs_mp, vp, tinfo, FALSE);
4891 if (error) {
4892 printf("vnode_create: vnode_resolver_create() err %d\n", error);
4893 vn_set_dead(vp);
4894 #ifdef JOE_DEBUG
4895 record_vp(vp, 1);
4896 #endif
4897 vnode_put(vp);
4898 return (error);
4899 }
4900 }
4901 #endif
4902 if (vp->v_type == VCHR || vp->v_type == VBLK) {
4903
4904 vp->v_tag = VT_DEVFS; /* callers will reset if needed (bdevvp) */
4905
4906 if ( (nvp = checkalias(vp, param->vnfs_rdev)) ) {
4907 /*
4908 * if checkalias returns a vnode, it will be locked
4909 *
4910 * first get rid of the unneeded vnode we acquired
4911 */
4912 vp->v_data = NULL;
4913 vp->v_op = spec_vnodeop_p;
4914 vp->v_type = VBAD;
4915 vp->v_lflag = VL_DEAD;
4916 vp->v_data = NULL;
4917 vp->v_tag = VT_NON;
4918 vnode_put(vp);
4919
4920 /*
4921 * switch to aliased vnode and finish
4922 * preparing it
4923 */
4924 vp = nvp;
4925
4926 vclean(vp, 0);
4927 vp->v_op = param->vnfs_vops;
4928 vp->v_type = param->vnfs_vtype;
4929 vp->v_data = param->vnfs_fsnode;
4930 vp->v_lflag = 0;
4931 vp->v_mount = NULL;
4932 insmntque(vp, param->vnfs_mp);
4933 insert = 0;
4934 vnode_unlock(vp);
4935 }
4936
4937 if (VCHR == vp->v_type) {
4938 u_int maj = major(vp->v_rdev);
4939
4940 if (maj < (u_int)nchrdev && cdevsw[maj].d_type == D_TTY)
4941 vp->v_flag |= VISTTY;
4942 }
4943 }
4944
4945 if (vp->v_type == VFIFO) {
4946 struct fifoinfo *fip;
4947
4948 MALLOC(fip, struct fifoinfo *,
4949 sizeof(*fip), M_TEMP, M_WAITOK);
4950 bzero(fip, sizeof(struct fifoinfo ));
4951 vp->v_fifoinfo = fip;
4952 }
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
4957 */
4958 *vpp = vp;
4959
4960 /* Add fs named reference. */
4961 if (param->vnfs_flags & VNFS_ADDFSREF) {
4962 vp->v_lflag |= VNAMED_FSHASH;
4963 }
4964 if (param->vnfs_mp) {
4965 if (param->vnfs_mp->mnt_kern_flag & MNTK_LOCK_LOCAL)
4966 vp->v_flag |= VLOCKLOCAL;
4967 if (insert) {
4968 if ((vp->v_freelist.tqe_prev != (struct vnode **)0xdeadb))
4969 panic("insmntque: vp on the free list\n");
4970
4971 /*
4972 * enter in mount vnode list
4973 */
4974 insmntque(vp, param->vnfs_mp);
4975 }
4976 }
4977 if (dvp && vnode_ref(dvp) == 0) {
4978 vp->v_parent = dvp;
4979 }
4980 if (cnp) {
4981 if (dvp && ((param->vnfs_flags & (VNFS_NOCACHE | VNFS_CANTCACHE)) == 0)) {
4982 /*
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
4987 */
4988 vp->v_name = cache_enter_create(dvp, vp, cnp);
4989 } else
4990 vp->v_name = vfs_addname(cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_hash, 0);
4991
4992 if ((cnp->cn_flags & UNIONCREATED) == UNIONCREATED)
4993 vp->v_flag |= VISUNION;
4994 }
4995 if ((param->vnfs_flags & VNFS_CANTCACHE) == 0) {
4996 /*
4997 * this vnode is being created as cacheable in the name cache
4998 * this allows us to re-enter it in the cache
4999 */
5000 vp->v_flag |= VNCACHEABLE;
5001 }
5002 ut = get_bsdthread_info(current_thread());
5003
5004 if ((current_proc()->p_lflag & P_LRAGE_VNODES) ||
5005 (ut->uu_flag & UT_RAGE_VNODES)) {
5006 /*
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
5010 * of vnodes
5011 */
5012 vp->v_flag |= VRAGE;
5013 }
5014 return (0);
5015
5016 error_out:
5017 if (existing_vnode) {
5018 vnode_put(vp);
5019 }
5020 return (error);
5021 }
5022
5023 /* USAGE:
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.
5027 */
5028 int
5029 vnode_create(uint32_t flavor, uint32_t size, void *data, vnode_t *vpp)
5030 {
5031 *vpp = NULLVP;
5032 return (vnode_create_internal(flavor, size, data, vpp, 1));
5033 }
5034
5035 int
5036 vnode_create_empty(vnode_t *vpp)
5037 {
5038 *vpp = NULLVP;
5039 return (vnode_create_internal(VNCREATE_FLAVOR, VCREATESIZE, NULL,
5040 vpp, 0));
5041 }
5042
5043 int
5044 vnode_initialize(uint32_t flavor, uint32_t size, void *data, vnode_t *vpp)
5045 {
5046 if (*vpp == NULLVP) {
5047 panic("NULL vnode passed to vnode_initialize");
5048 }
5049 #if DEVELOPMENT || DEBUG
5050 /*
5051 * We lock to check that vnode is fit for unlocked use in
5052 * vnode_create_internal.
5053 */
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",
5061 (*vpp)->v_lflag));
5062 VNASSERT(((*vpp)->v_data == NULL), *vpp,
5063 ("vnode_initialize : v_data not NULL"));
5064 vnode_unlock(*vpp);
5065 #endif
5066 return (vnode_create_internal(flavor, size, data, vpp, 1));
5067 }
5068
5069 int
5070 vnode_addfsref(vnode_t vp)
5071 {
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;
5078 vnode_unlock(vp);
5079 return(0);
5080
5081 }
5082 int
5083 vnode_removefsref(vnode_t vp)
5084 {
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;
5089 vnode_unlock(vp);
5090 return(0);
5091
5092 }
5093
5094
5095 int
5096 vfs_iterate(int flags, int (*callout)(mount_t, void *), void *arg)
5097 {
5098 mount_t mp;
5099 int ret = 0;
5100 fsid_t * fsid_list;
5101 int count, actualcount, i;
5102 void * allocmem;
5103 int indx_start, indx_stop, indx_incr;
5104 int cb_dropref = (flags & VFS_ITERATE_CB_DROPREF);
5105
5106 count = mount_getvfscnt();
5107 count += 10;
5108
5109 fsid_list = (fsid_t *)kalloc(count * sizeof(fsid_t));
5110 allocmem = (void *)fsid_list;
5111
5112 actualcount = mount_fillfsids(fsid_list, count);
5113
5114 /*
5115 * Establish the iteration direction
5116 * VFS_ITERATE_TAIL_FIRST overrides default head first order (oldest first)
5117 */
5118 if (flags & VFS_ITERATE_TAIL_FIRST) {
5119 indx_start = actualcount - 1;
5120 indx_stop = -1;
5121 indx_incr = -1;
5122 } else /* Head first by default */ {
5123 indx_start = 0;
5124 indx_stop = actualcount;
5125 indx_incr = 1;
5126 }
5127
5128 for (i=indx_start; i != indx_stop; i += indx_incr) {
5129
5130 /* obtain the mount point with iteration reference */
5131 mp = mount_list_lookupby_fsid(&fsid_list[i], 0, 1);
5132
5133 if(mp == (struct mount *)0)
5134 continue;
5135 mount_lock(mp);
5136 if (mp->mnt_lflag & (MNT_LDEAD | MNT_LUNMOUNT)) {
5137 mount_unlock(mp);
5138 mount_iterdrop(mp);
5139 continue;
5140
5141 }
5142 mount_unlock(mp);
5143
5144 /* iterate over all the vnodes */
5145 ret = callout(mp, arg);
5146
5147 /*
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.
5150 */
5151 if (!cb_dropref)
5152 mount_iterdrop(mp);
5153
5154 switch (ret) {
5155 case VFS_RETURNED:
5156 case VFS_RETURNED_DONE:
5157 if (ret == VFS_RETURNED_DONE) {
5158 ret = 0;
5159 goto out;
5160 }
5161 break;
5162
5163 case VFS_CLAIMED_DONE:
5164 ret = 0;
5165 goto out;
5166 case VFS_CLAIMED:
5167 default:
5168 break;
5169 }
5170 ret = 0;
5171 }
5172
5173 out:
5174 kfree(allocmem, (count * sizeof(fsid_t)));
5175 return (ret);
5176 }
5177
5178 /*
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).
5183 */
5184 int
5185 vfs_update_vfsstat(mount_t mp, vfs_context_t ctx, __unused int eventtype)
5186 {
5187 struct vfs_attr va;
5188 int error;
5189
5190 /*
5191 * Request the attributes we want to propagate into
5192 * the per-mount vfsstat structure.
5193 */
5194 VFSATTR_INIT(&va);
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);
5204 #if CONFIG_MACF
5205 if (eventtype == VFS_USER_EVENT) {
5206 error = mac_mount_check_getattr(ctx, mp, &va);
5207 if (error != 0)
5208 return (error);
5209 }
5210 #endif
5211
5212 if ((error = vfs_getattr(mp, &va, ctx)) != 0) {
5213 KAUTH_DEBUG("STAT - filesystem returned error %d", error);
5214 return(error);
5215 }
5216
5217 /*
5218 * Unpack into the per-mount structure.
5219 *
5220 * We only overwrite these fields, which are likely to change:
5221 * f_blocks
5222 * f_bfree
5223 * f_bavail
5224 * f_bused
5225 * f_files
5226 * f_ffree
5227 *
5228 * And these which are not, but which the FS has no other way
5229 * of providing to us:
5230 * f_bsize
5231 * f_iosize
5232 * f_fssubtype
5233 *
5234 */
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);
5238 } else {
5239 mp->mnt_vfsstat.f_bsize = mp->mnt_devblocksize; /* default from the device block size */
5240 }
5241 if (VFSATTR_IS_SUPPORTED(&va, f_iosize)) {
5242 mp->mnt_vfsstat.f_iosize = va.f_iosize;
5243 } else {
5244 mp->mnt_vfsstat.f_iosize = 1024 * 1024; /* 1MB sensible I/O size */
5245 }
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;
5258
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;
5262
5263 return(0);
5264 }
5265
5266 int
5267 mount_list_add(mount_t mp)
5268 {
5269 int res;
5270
5271 mount_list_lock();
5272 if (system_inshutdown != 0) {
5273 res = -1;
5274 } else {
5275 TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
5276 nummounts++;
5277 res = 0;
5278 }
5279 mount_list_unlock();
5280
5281 return res;
5282 }
5283
5284 void
5285 mount_list_remove(mount_t mp)
5286 {
5287 mount_list_lock();
5288 TAILQ_REMOVE(&mountlist, mp, mnt_list);
5289 nummounts--;
5290 mp->mnt_list.tqe_next = NULL;
5291 mp->mnt_list.tqe_prev = NULL;
5292 mount_list_unlock();
5293 }
5294
5295 mount_t
5296 mount_lookupby_volfsid(int volfs_id, int withref)
5297 {
5298 mount_t cur_mount = (mount_t)0;
5299 mount_t mp;
5300
5301 mount_list_lock();
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)) {
5306 cur_mount = mp;
5307 if (withref) {
5308 if (mount_iterref(cur_mount, 1)) {
5309 cur_mount = (mount_t)0;
5310 mount_list_unlock();
5311 goto out;
5312 }
5313 }
5314 break;
5315 }
5316 }
5317 mount_list_unlock();
5318 if (withref && (cur_mount != (mount_t)0)) {
5319 mp = cur_mount;
5320 if (vfs_busy(mp, LK_NOWAIT) != 0) {
5321 cur_mount = (mount_t)0;
5322 }
5323 mount_iterdrop(mp);
5324 }
5325 out:
5326 return(cur_mount);
5327 }
5328
5329 mount_t
5330 mount_list_lookupby_fsid(fsid_t *fsid, int locked, int withref)
5331 {
5332 mount_t retmp = (mount_t)0;
5333 mount_t mp;
5334
5335 if (!locked)
5336 mount_list_lock();
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]) {
5340 retmp = mp;
5341 if (withref) {
5342 if (mount_iterref(retmp, 1))
5343 retmp = (mount_t)0;
5344 }
5345 goto out;
5346 }
5347 out:
5348 if (!locked)
5349 mount_list_unlock();
5350 return (retmp);
5351 }
5352
5353 errno_t
5354 vnode_lookup(const char *path, int flags, vnode_t *vpp, vfs_context_t ctx)
5355 {
5356 struct nameidata nd;
5357 int error;
5358 u_int32_t ndflags = 0;
5359
5360 if (ctx == NULL) {
5361 return EINVAL;
5362 }
5363
5364 if (flags & VNODE_LOOKUP_NOFOLLOW)
5365 ndflags = NOFOLLOW;
5366 else
5367 ndflags = FOLLOW;
5368
5369 if (flags & VNODE_LOOKUP_NOCROSSMOUNT)
5370 ndflags |= NOCROSSMOUNT;
5371
5372 if (flags & VNODE_LOOKUP_CROSSMOUNTNOWAIT)
5373 ndflags |= CN_NBMOUNTLOOK;
5374
5375 /* XXX AUDITVNPATH1 needed ? */
5376 NDINIT(&nd, LOOKUP, OP_LOOKUP, ndflags, UIO_SYSSPACE,
5377 CAST_USER_ADDR_T(path), ctx);
5378
5379 if ((error = namei(&nd)))
5380 return (error);
5381 *vpp = nd.ni_vp;
5382 nameidone(&nd);
5383
5384 return (0);
5385 }
5386
5387 errno_t
5388 vnode_open(const char *path, int fmode, int cmode, int flags, vnode_t *vpp, vfs_context_t ctx)
5389 {
5390 struct nameidata nd;
5391 int error;
5392 u_int32_t ndflags = 0;
5393 int lflags = flags;
5394
5395 if (ctx == NULL) { /* XXX technically an error */
5396 ctx = vfs_context_current();
5397 }
5398
5399 if (fmode & O_NOFOLLOW)
5400 lflags |= VNODE_LOOKUP_NOFOLLOW;
5401
5402 if (lflags & VNODE_LOOKUP_NOFOLLOW)
5403 ndflags = NOFOLLOW;
5404 else
5405 ndflags = FOLLOW;
5406
5407 if (lflags & VNODE_LOOKUP_NOCROSSMOUNT)
5408 ndflags |= NOCROSSMOUNT;
5409
5410 if (lflags & VNODE_LOOKUP_CROSSMOUNTNOWAIT)
5411 ndflags |= CN_NBMOUNTLOOK;
5412
5413 /* XXX AUDITVNPATH1 needed ? */
5414 NDINIT(&nd, LOOKUP, OP_OPEN, ndflags, UIO_SYSSPACE,
5415 CAST_USER_ADDR_T(path), ctx);
5416
5417 if ((error = vn_open(&nd, fmode, cmode)))
5418 *vpp = NULL;
5419 else
5420 *vpp = nd.ni_vp;
5421
5422 return (error);
5423 }
5424
5425 errno_t
5426 vnode_close(vnode_t vp, int flags, vfs_context_t ctx)
5427 {
5428 int error;
5429
5430 if (ctx == NULL) {
5431 ctx = vfs_context_current();
5432 }
5433
5434 error = vn_close(vp, flags, ctx);
5435 vnode_put(vp);
5436 return (error);
5437 }
5438
5439 errno_t
5440 vnode_mtime(vnode_t vp, struct timespec *mtime, vfs_context_t ctx)
5441 {
5442 struct vnode_attr va;
5443 int error;
5444
5445 VATTR_INIT(&va);
5446 VATTR_WANTED(&va, va_modify_time);
5447 error = vnode_getattr(vp, &va, ctx);
5448 if (!error)
5449 *mtime = va.va_modify_time;
5450 return error;
5451 }
5452
5453 errno_t
5454 vnode_flags(vnode_t vp, uint32_t *flags, vfs_context_t ctx)
5455 {
5456 struct vnode_attr va;
5457 int error;
5458
5459 VATTR_INIT(&va);
5460 VATTR_WANTED(&va, va_flags);
5461 error = vnode_getattr(vp, &va, ctx);
5462 if (!error)
5463 *flags = va.va_flags;
5464 return error;
5465 }
5466
5467 /*
5468 * Returns: 0 Success
5469 * vnode_getattr:???
5470 */
5471 errno_t
5472 vnode_size(vnode_t vp, off_t *sizep, vfs_context_t ctx)
5473 {
5474 struct vnode_attr va;
5475 int error;
5476
5477 VATTR_INIT(&va);
5478 VATTR_WANTED(&va, va_data_size);
5479 error = vnode_getattr(vp, &va, ctx);
5480 if (!error)
5481 *sizep = va.va_data_size;
5482 return(error);
5483 }
5484
5485 errno_t
5486 vnode_setsize(vnode_t vp, off_t size, int ioflag, vfs_context_t ctx)
5487 {
5488 struct vnode_attr va;
5489
5490 VATTR_INIT(&va);
5491 VATTR_SET(&va, va_data_size, size);
5492 va.va_vaflags = ioflag & 0xffff;
5493 return(vnode_setattr(vp, &va, ctx));
5494 }
5495
5496 int
5497 vnode_setdirty(vnode_t vp)
5498 {
5499 vnode_lock_spin(vp);
5500 vp->v_flag |= VISDIRTY;
5501 vnode_unlock(vp);
5502 return 0;
5503 }
5504
5505 int
5506 vnode_cleardirty(vnode_t vp)
5507 {
5508 vnode_lock_spin(vp);
5509 vp->v_flag &= ~VISDIRTY;
5510 vnode_unlock(vp);
5511 return 0;
5512 }
5513
5514 int
5515 vnode_isdirty(vnode_t vp)
5516 {
5517 int dirty;
5518
5519 vnode_lock_spin(vp);
5520 dirty = (vp->v_flag & VISDIRTY) ? 1 : 0;
5521 vnode_unlock(vp);
5522
5523 return dirty;
5524 }
5525
5526 static int
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)
5528 {
5529 /* Only use compound VNOP for compound operation */
5530 if (vnode_compound_open_available(dvp) && ((flags & VN_CREATE_DOOPEN) != 0)) {
5531 *vpp = NULLVP;
5532 return VNOP_COMPOUND_OPEN(dvp, vpp, ndp, O_CREAT, fmode, statusp, vap, ctx);
5533 } else {
5534 return VNOP_CREATE(dvp, vpp, &ndp->ni_cnd, vap, ctx);
5535 }
5536 }
5537
5538 /*
5539 * Create a filesystem object of arbitrary type with arbitrary attributes in
5540 * the spevied directory with the specified name.
5541 *
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.
5555 *
5556 * Returns: 0 Success
5557 * !0 errno value
5558 *
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
5564 *
5565 *
5566 * be modified, even if the operation is
5567 *
5568 *
5569 * Notes: The kauth_filesec_t in 'vap', if any, is in host byte order.
5570 *
5571 * Modification of '*cnp' and '*vap' by the underlying VFS is
5572 * strongly discouraged.
5573 *
5574 * XXX: This function is a 'vn_*' function; it belongs in vfs_vnops.c
5575 *
5576 * XXX: We should enummerate the possible errno values here, and where
5577 * in the code they originated.
5578 */
5579 errno_t
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)
5581 {
5582 errno_t error, old_error;
5583 vnode_t vp = (vnode_t)0;
5584 boolean_t batched;
5585 struct componentname *cnp;
5586 uint32_t defaulted;
5587 uint32_t dfflags; // Directory file flags
5588
5589 cnp = &ndp->ni_cnd;
5590 error = 0;
5591 batched = namei_compound_available(dvp, ndp) ? TRUE : FALSE;
5592
5593 KAUTH_DEBUG("%p CREATE - '%s'", dvp, cnp->cn_nameptr);
5594
5595 if (flags & VN_CREATE_NOINHERIT)
5596 vap->va_vaflags |= VA_NOINHERIT;
5597 if (flags & VN_CREATE_NOAUTH)
5598 vap->va_vaflags |= VA_NOAUTH;
5599 /*
5600 * Handle ACL inheritance, initialize vap.
5601 */
5602 error = vn_attribute_prepare(dvp, vap, &defaulted, ctx);
5603 if (error) {
5604 return error;
5605 }
5606
5607 if (vap->va_type != VREG && (fmode != 0 || (flags & VN_CREATE_DOOPEN) || statusp)) {
5608 panic("Open parameters, but not a regular file.");
5609 }
5610 if ((fmode != 0) && ((flags & VN_CREATE_DOOPEN) == 0)) {
5611 panic("Mode for open, but not trying to open...");
5612 }
5613
5614 /*
5615 * Handle inheritance of restricted flag
5616 */
5617 error = vnode_flags(dvp, &dfflags, ctx);
5618 if (error)
5619 return error;
5620 if (dfflags & SF_RESTRICTED)
5621 VATTR_SET(vap, va_flags, SF_RESTRICTED);
5622
5623 /*
5624 * Create the requested node.
5625 */
5626 switch(vap->va_type) {
5627 case VREG:
5628 error = vn_create_reg(dvp, vpp, ndp, vap, flags, fmode, statusp, ctx);
5629 break;
5630 case VDIR:
5631 error = vn_mkdir(dvp, vpp, ndp, vap, ctx);
5632 break;
5633 case VSOCK:
5634 case VFIFO:
5635 case VBLK:
5636 case VCHR:
5637 error = VNOP_MKNOD(dvp, vpp, cnp, vap, ctx);
5638 break;
5639 default:
5640 panic("vnode_create: unknown vtype %d", vap->va_type);
5641 }
5642 if (error != 0) {
5643 KAUTH_DEBUG("%p CREATE - error %d returned by filesystem", dvp, error);
5644 goto out;
5645 }
5646
5647 vp = *vpp;
5648 old_error = error;
5649
5650 #if CONFIG_MACF
5651 if (!(flags & VN_CREATE_NOLABEL)) {
5652 error = vnode_label(vnode_mount(vp), dvp, vp, cnp, VNODE_LABEL_CREATE, ctx);
5653 if (error)
5654 goto error;
5655 }
5656 #endif
5657
5658 /*
5659 * If some of the requested attributes weren't handled by the VNOP,
5660 * use our fallback code.
5661 */
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);
5665 }
5666 #if CONFIG_MACF
5667 error:
5668 #endif
5669 if ((error != 0) && (vp != (vnode_t)0)) {
5670
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);
5674 }
5675
5676 /* Need to provide notifications if a create succeeded */
5677 if (!batched) {
5678 *vpp = (vnode_t) 0;
5679 vnode_put(vp);
5680 }
5681 }
5682
5683 out:
5684 vn_attribute_cleanup(vap, defaulted);
5685
5686 return(error);
5687 }
5688
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);
5694
5695 typedef struct _vnode_authorize_context {
5696 vnode_t vp;
5697 struct vnode_attr *vap;
5698 vnode_t dvp;
5699 struct vnode_attr *dvap;
5700 vfs_context_t ctx;
5701 int flags;
5702 int flags_valid;
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)
5707 } *vauth_ctx;
5708
5709 void
5710 vnode_authorize_init(void)
5711 {
5712 vnode_scope = kauth_register_scope(KAUTH_SCOPE_VNODE, vnode_authorize_callback, NULL);
5713 }
5714
5715 #define VATTR_PREPARE_DEFAULTED_UID 0x1
5716 #define VATTR_PREPARE_DEFAULTED_GID 0x2
5717 #define VATTR_PREPARE_DEFAULTED_MODE 0x4
5718
5719 int
5720 vn_attribute_prepare(vnode_t dvp, struct vnode_attr *vap, uint32_t *defaulted_fieldsp, vfs_context_t ctx)
5721 {
5722 kauth_acl_t nacl = NULL, oacl = NULL;
5723 int error;
5724
5725 /*
5726 * Handle ACL inheritance.
5727 */
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)) {
5731 oacl = vap->va_acl;
5732 }
5733
5734 vap->va_acl = NULL;
5735 if ((error = kauth_acl_inherit(dvp,
5736 oacl,
5737 &nacl,
5738 vap->va_type == VDIR,
5739 ctx)) != 0) {
5740 KAUTH_DEBUG("%p CREATE - error %d processing inheritance", dvp, error);
5741 return(error);
5742 }
5743
5744 /*
5745 * If the generated ACL is NULL, then we can save ourselves some effort
5746 * by clearing the active bit.
5747 */
5748 if (nacl == NULL) {
5749 VATTR_CLEAR_ACTIVE(vap, va_acl);
5750 } else {
5751 vap->va_base_acl = oacl;
5752 VATTR_SET(vap, va_acl, nacl);
5753 }
5754 }
5755
5756 error = vnode_authattr_new_internal(dvp, vap, (vap->va_vaflags & VA_NOAUTH), defaulted_fieldsp, ctx);
5757 if (error) {
5758 vn_attribute_cleanup(vap, *defaulted_fieldsp);
5759 }
5760
5761 return error;
5762 }
5763
5764 void
5765 vn_attribute_cleanup(struct vnode_attr *vap, uint32_t defaulted_fields)
5766 {
5767 /*
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.
5771 */
5772 kauth_acl_t nacl, oacl;
5773
5774 if (VATTR_IS_ACTIVE(vap, va_acl)) {
5775 nacl = vap->va_acl;
5776 oacl = vap->va_base_acl;
5777
5778 if (oacl) {
5779 VATTR_SET(vap, va_acl, oacl);
5780 vap->va_base_acl = NULL;
5781 } else {
5782 VATTR_CLEAR_ACTIVE(vap, va_acl);
5783 }
5784
5785 if (nacl != NULL) {
5786 kauth_acl_free(nacl);
5787 }
5788 }
5789
5790 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_MODE) != 0) {
5791 VATTR_CLEAR_ACTIVE(vap, va_mode);
5792 }
5793 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_GID) != 0) {
5794 VATTR_CLEAR_ACTIVE(vap, va_gid);
5795 }
5796 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_UID) != 0) {
5797 VATTR_CLEAR_ACTIVE(vap, va_uid);
5798 }
5799
5800 return;
5801 }
5802
5803 int
5804 vn_authorize_unlink(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, __unused void *reserved)
5805 {
5806 #if !CONFIG_MACF
5807 #pragma unused(cnp)
5808 #endif
5809 int error = 0;
5810
5811 /*
5812 * Normally, unlinking of directories is not supported.
5813 * However, some file systems may have limited support.
5814 */
5815 if ((vp->v_type == VDIR) &&
5816 !(vp->v_mount->mnt_vtable->vfc_vfsflags & VFC_VFSDIRLINKS)) {
5817 return (EPERM); /* POSIX */
5818 }
5819
5820 /* authorize the delete operation */
5821 #if CONFIG_MACF
5822 if (!error)
5823 error = mac_vnode_check_unlink(ctx, dvp, vp, cnp);
5824 #endif /* MAC */
5825 if (!error)
5826 error = vnode_authorize(vp, dvp, KAUTH_VNODE_DELETE, ctx);
5827
5828 return error;
5829 }
5830
5831 int
5832 vn_authorize_open_existing(vnode_t vp, struct componentname *cnp, int fmode, vfs_context_t ctx, void *reserved)
5833 {
5834 /* Open of existing case */
5835 kauth_action_t action;
5836 int error = 0;
5837 if (cnp->cn_ndp == NULL) {
5838 panic("NULL ndp");
5839 }
5840 if (reserved != NULL) {
5841 panic("reserved not NULL.");
5842 }
5843
5844 #if CONFIG_MACF
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);
5848 if (error)
5849 return (error);
5850 }
5851 #endif
5852
5853 if ( (fmode & O_DIRECTORY) && vp->v_type != VDIR ) {
5854 return (ENOTDIR);
5855 }
5856
5857 if (vp->v_type == VSOCK && vp->v_tag != VT_FDESC) {
5858 return (EOPNOTSUPP); /* Operation not supported on socket */
5859 }
5860
5861 if (vp->v_type == VLNK && (fmode & O_NOFOLLOW) != 0) {
5862 return (ELOOP); /* O_NOFOLLOW was specified and the target is a symbolic link */
5863 }
5864
5865 /* disallow write operations on directories */
5866 if (vnode_isdir(vp) && (fmode & (FWRITE | O_TRUNC))) {
5867 return (EISDIR);
5868 }
5869
5870 if ((cnp->cn_ndp->ni_flag & NAMEI_TRAILINGSLASH)) {
5871 if (vp->v_type != VDIR) {
5872 return (ENOTDIR);
5873 }
5874 }
5875
5876 #if CONFIG_MACF
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
5880 * be allowed.
5881 */
5882 if (!(vnode_isshadow(vp) && vnode_isnamedstream(vp))) {
5883 error = mac_vnode_check_open(ctx, vp, fmode);
5884 if (error) {
5885 return (error);
5886 }
5887 }
5888 #endif
5889
5890 /* compute action to be authorized */
5891 action = 0;
5892 if (fmode & FREAD) {
5893 action |= KAUTH_VNODE_READ_DATA;
5894 }
5895 if (fmode & (FWRITE | O_TRUNC)) {
5896 /*
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
5900 * the open.
5901 */
5902 if ((fmode & O_APPEND) && !(fmode & O_TRUNC)) {
5903 action |= KAUTH_VNODE_APPEND_DATA;
5904 } else {
5905 action |= KAUTH_VNODE_WRITE_DATA;
5906 }
5907 }
5908 error = vnode_authorize(vp, NULL, action, ctx);
5909 #if NAMEDSTREAMS
5910 if (error == EACCES) {
5911 /*
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.
5916 */
5917 if (vnode_isshadow(vp) && vnode_isnamedstream (vp)) {
5918 error = vnode_verifynamedstream(vp);
5919 }
5920 }
5921 #endif
5922
5923 return error;
5924 }
5925
5926 int
5927 vn_authorize_create(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved)
5928 {
5929 #if !CONFIG_MACF
5930 #pragma unused(vap)
5931 #endif
5932 /* Creation case */
5933 int error;
5934
5935 if (cnp->cn_ndp == NULL) {
5936 panic("NULL cn_ndp");
5937 }
5938 if (reserved != NULL) {
5939 panic("reserved not NULL.");
5940 }
5941
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);
5945 if (error)
5946 return (error);
5947 }
5948
5949 #if CONFIG_MACF
5950 error = mac_vnode_check_create(ctx, dvp, cnp, vap);
5951 if (error)
5952 return (error);
5953 #endif /* CONFIG_MACF */
5954
5955 return (vnode_authorize(dvp, NULL, KAUTH_VNODE_ADD_FILE, ctx));
5956 }
5957
5958 int
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)
5962 {
5963 int error = 0;
5964 int moving = 0;
5965
5966 if (reserved != NULL) {
5967 panic("Passed something other than NULL as reserved field!");
5968 }
5969
5970 /*
5971 * Avoid renaming "." and "..".
5972 *
5973 * XXX No need to check for this in the FS. We should always have the leaves
5974 * in VFS in this case.
5975 */
5976 if (fvp->v_type == VDIR &&
5977 ((fdvp == fvp) ||
5978 (fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
5979 ((fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT)) ) {
5980 error = EINVAL;
5981 goto out;
5982 }
5983
5984 if (tvp == NULLVP && vnode_compound_rename_available(tdvp)) {
5985 error = lookup_validate_creation_path(tcnp->cn_ndp);
5986 if (error)
5987 goto out;
5988 }
5989
5990 /***** <MACF> *****/
5991 #if CONFIG_MACF
5992 error = mac_vnode_check_rename(ctx, fdvp, fvp, fcnp, tdvp, tvp, tcnp);
5993 if (error)
5994 goto out;
5995 #endif
5996 /***** </MACF> *****/
5997
5998 /***** <MiscChecks> *****/
5999 if (tvp != NULL) {
6000 if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
6001 error = ENOTDIR;
6002 goto out;
6003 } else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
6004 error = EISDIR;
6005 goto out;
6006 }
6007 }
6008
6009 if (fvp == tdvp) {
6010 error = EINVAL;
6011 goto out;
6012 }
6013
6014 /*
6015 * The following edge case is caught here:
6016 * (to cannot be a descendent of from)
6017 *
6018 * o fdvp
6019 * /
6020 * /
6021 * o fvp
6022 * \
6023 * \
6024 * o tdvp
6025 * /
6026 * /
6027 * o tvp
6028 */
6029 if (tdvp->v_parent == fvp) {
6030 error = EINVAL;
6031 goto out;
6032 }
6033 /***** </MiscChecks> *****/
6034
6035 /***** <Kauth> *****/
6036
6037 error = 0;
6038 if ((tvp != NULL) && vnode_isdir(tvp)) {
6039 if (tvp != fdvp)
6040 moving = 1;
6041 } else if (tdvp != fdvp) {
6042 moving = 1;
6043 }
6044
6045
6046 /*
6047 * must have delete rights to remove the old name even in
6048 * the simple case of fdvp == tdvp.
6049 *
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.
6052 */
6053 if (vnode_isdir(fvp)) {
6054 if ((error = vnode_authorize(fvp, fdvp, KAUTH_VNODE_DELETE | KAUTH_VNODE_ADD_SUBDIRECTORY, ctx)) != 0)
6055 goto out;
6056 } else {
6057 if ((error = vnode_authorize(fvp, fdvp, KAUTH_VNODE_DELETE, ctx)) != 0)
6058 goto out;
6059 }
6060 if (moving) {
6061 /* moving into tdvp or tvp, must have rights to add */
6062 if ((error = vnode_authorize(((tvp != NULL) && vnode_isdir(tvp)) ? tvp : tdvp,
6063 NULL,
6064 vnode_isdir(fvp) ? KAUTH_VNODE_ADD_SUBDIRECTORY : KAUTH_VNODE_ADD_FILE,
6065 ctx)) != 0) {
6066 goto out;
6067 }
6068 } else {
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)
6072 goto out;
6073 }
6074 /* overwriting tvp */
6075 if ((tvp != NULL) && !vnode_isdir(tvp) &&
6076 ((error = vnode_authorize(tvp, tdvp, KAUTH_VNODE_DELETE, ctx)) != 0)) {
6077 goto out;
6078 }
6079
6080 /***** </Kauth> *****/
6081
6082 /* XXX more checks? */
6083 out:
6084 return error;
6085 }
6086
6087 int
6088 vn_authorize_mkdir(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved)
6089 {
6090 #if !CONFIG_MACF
6091 #pragma unused(vap)
6092 #endif
6093 int error;
6094
6095 if (reserved != NULL) {
6096 panic("reserved not NULL in vn_authorize_mkdir()");
6097 }
6098
6099 /* XXX A hack for now, to make shadow files work */
6100 if (cnp->cn_ndp == NULL) {
6101 return 0;
6102 }
6103
6104 if (vnode_compound_mkdir_available(dvp)) {
6105 error = lookup_validate_creation_path(cnp->cn_ndp);
6106 if (error)
6107 goto out;
6108 }
6109
6110 #if CONFIG_MACF
6111 error = mac_vnode_check_create(ctx,
6112 dvp, cnp, vap);
6113 if (error)
6114 goto out;
6115 #endif
6116
6117 /* authorize addition of a directory to the parent */
6118 if ((error = vnode_authorize(dvp, NULL, KAUTH_VNODE_ADD_SUBDIRECTORY, ctx)) != 0)
6119 goto out;
6120
6121 out:
6122 return error;
6123 }
6124
6125 int
6126 vn_authorize_rmdir(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved)
6127 {
6128 #if CONFIG_MACF
6129 int error;
6130 #else
6131 #pragma unused(cnp)
6132 #endif
6133 if (reserved != NULL) {
6134 panic("Non-NULL reserved argument to vn_authorize_rmdir()");
6135 }
6136
6137 if (vp->v_type != VDIR) {
6138 /*
6139 * rmdir only deals with directories
6140 */
6141 return ENOTDIR;
6142 }
6143
6144 if (dvp == vp) {
6145 /*
6146 * No rmdir "." please.
6147 */
6148 return EINVAL;
6149 }
6150
6151 #if CONFIG_MACF
6152 error = mac_vnode_check_unlink(ctx, dvp,
6153 vp, cnp);
6154 if (error)
6155 return error;
6156 #endif
6157
6158 return vnode_authorize(vp, dvp, KAUTH_VNODE_DELETE, ctx);
6159 }
6160
6161 /*
6162 * Authorize an operation on a vnode.
6163 *
6164 * This is KPI, but here because it needs vnode_scope.
6165 *
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
6173 * exist.
6174 * EROFS
6175 * EACCES
6176 * EPERM
6177 * ???
6178 */
6179 int
6180 vnode_authorize(vnode_t vp, vnode_t dvp, kauth_action_t action, vfs_context_t ctx)
6181 {
6182 int error, result;
6183
6184 /*
6185 * We can't authorize against a dead vnode; allow all operations through so that
6186 * the correct error can be returned.
6187 */
6188 if (vp->v_type == VBAD)
6189 return(0);
6190
6191 error = 0;
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 */
6195 result = EACCES;
6196 /* did the lower layers give a better error return? */
6197 if ((result != 0) && (error != 0))
6198 return(error);
6199 return(result);
6200 }
6201
6202 /*
6203 * Test for vnode immutability.
6204 *
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.
6207 *
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.
6211 */
6212 static int
6213 vnode_immutable(struct vnode_attr *vap, int append, int ignore)
6214 {
6215 int mask;
6216
6217 /* start with all bits precluding the operation */
6218 mask = IMMUTABLE | APPEND;
6219
6220 /* if appending only, remove the append-only bits */
6221 if (append)
6222 mask &= ~APPEND;
6223
6224 /* ignore only set when authorizing flags changes */
6225 if (ignore) {
6226 if (securelevel <= 0) {
6227 /* in insecure state, flags do not inhibit changes */
6228 mask = 0;
6229 } else {
6230 /* in secure state, user flags don't inhibit */
6231 mask &= ~(UF_IMMUTABLE | UF_APPEND);
6232 }
6233 }
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)
6236 return(EPERM);
6237 return(0);
6238 }
6239
6240 static int
6241 vauth_node_owner(struct vnode_attr *vap, kauth_cred_t cred)
6242 {
6243 int result;
6244
6245 /* default assumption is not-owner */
6246 result = 0;
6247
6248 /*
6249 * If the filesystem has given us a UID, we treat this as authoritative.
6250 */
6251 if (vap && VATTR_IS_SUPPORTED(vap, va_uid)) {
6252 result = (vap->va_uid == kauth_cred_getuid(cred)) ? 1 : 0;
6253 }
6254 /* we could test the owner UUID here if we had a policy for it */
6255
6256 return(result);
6257 }
6258
6259 /*
6260 * vauth_node_group
6261 *
6262 * Description: Ask if a cred is a member of the group owning the vnode object
6263 *
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
6269 *
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
6274 */
6275 static int
6276 vauth_node_group(struct vnode_attr *vap, kauth_cred_t cred, int *ismember, int idontknow)
6277 {
6278 int error;
6279 int result;
6280
6281 error = 0;
6282 result = 0;
6283
6284 /*
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
6289 */
6290 if (vap && VATTR_IS_SUPPORTED(vap, va_gid)) {
6291 error = kauth_cred_ismember_gid(cred, vap->va_gid, &result);
6292 /*
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.
6297 *
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.
6305 */
6306 if (error == ENOENT)
6307 error = idontknow;
6308 }
6309 /*
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).
6320 */
6321
6322 if (!error)
6323 *ismember = result;
6324 return(error);
6325 }
6326
6327 static int
6328 vauth_file_owner(vauth_ctx vcp)
6329 {
6330 int result;
6331
6332 if (vcp->flags_valid & _VAC_IS_OWNER) {
6333 result = (vcp->flags & _VAC_IS_OWNER) ? 1 : 0;
6334 } else {
6335 result = vauth_node_owner(vcp->vap, vcp->ctx->vc_ucred);
6336
6337 /* cache our result */
6338 vcp->flags_valid |= _VAC_IS_OWNER;
6339 if (result) {
6340 vcp->flags |= _VAC_IS_OWNER;
6341 } else {
6342 vcp->flags &= ~_VAC_IS_OWNER;
6343 }
6344 }
6345 return(result);
6346 }
6347
6348
6349 /*
6350 * vauth_file_ingroup
6351 *
6352 * Description: Ask if a user is a member of the group owning the directory
6353 *
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
6362 *
6363 * Returns: 0 Success
6364 * vauth_node_group:? Error from vauth_node_group()
6365 *
6366 * Implicit returns: *ismember 0 The user is not a group member
6367 * 1 The user is a group member
6368 */
6369 static int
6370 vauth_file_ingroup(vauth_ctx vcp, int *ismember, int idontknow)
6371 {
6372 int error;
6373
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;
6377 error = 0;
6378 } else {
6379 /* Otherwise, go look for it */
6380 error = vauth_node_group(vcp->vap, vcp->ctx->vc_ucred, ismember, idontknow);
6381
6382 if (!error) {
6383 /* cache our result */
6384 vcp->flags_valid |= _VAC_IN_GROUP;
6385 if (*ismember) {
6386 vcp->flags |= _VAC_IN_GROUP;
6387 } else {
6388 vcp->flags &= ~_VAC_IN_GROUP;
6389 }
6390 }
6391
6392 }
6393 return(error);
6394 }
6395
6396 static int
6397 vauth_dir_owner(vauth_ctx vcp)
6398 {
6399 int result;
6400
6401 if (vcp->flags_valid & _VAC_IS_DIR_OWNER) {
6402 result = (vcp->flags & _VAC_IS_DIR_OWNER) ? 1 : 0;
6403 } else {
6404 result = vauth_node_owner(vcp->dvap, vcp->ctx->vc_ucred);
6405
6406 /* cache our result */
6407 vcp->flags_valid |= _VAC_IS_DIR_OWNER;
6408 if (result) {
6409 vcp->flags |= _VAC_IS_DIR_OWNER;
6410 } else {
6411 vcp->flags &= ~_VAC_IS_DIR_OWNER;
6412 }
6413 }
6414 return(result);
6415 }
6416
6417 /*
6418 * vauth_dir_ingroup
6419 *
6420 * Description: Ask if a user is a member of the group owning the directory
6421 *
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
6430 *
6431 * Returns: 0 Success
6432 * vauth_node_group:? Error from vauth_node_group()
6433 *
6434 * Implicit returns: *ismember 0 The user is not a group member
6435 * 1 The user is a group member
6436 */
6437 static int
6438 vauth_dir_ingroup(vauth_ctx vcp, int *ismember, int idontknow)
6439 {
6440 int error;
6441
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;
6445 error = 0;
6446 } else {
6447 /* Otherwise, go look for it */
6448 error = vauth_node_group(vcp->dvap, vcp->ctx->vc_ucred, ismember, idontknow);
6449
6450 if (!error) {
6451 /* cache our result */
6452 vcp->flags_valid |= _VAC_IN_DIR_GROUP;
6453 if (*ismember) {
6454 vcp->flags |= _VAC_IN_DIR_GROUP;
6455 } else {
6456 vcp->flags &= ~_VAC_IN_DIR_GROUP;
6457 }
6458 }
6459 }
6460 return(error);
6461 }
6462
6463 /*
6464 * Test the posix permissions in (vap) to determine whether (credential)
6465 * may perform (action)
6466 */
6467 static int
6468 vnode_authorize_posix(vauth_ctx vcp, int action, int on_dir)
6469 {
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;
6475 #else
6476 # define _SETWHERE(c)
6477 #endif
6478
6479 /* checking file or directory? */
6480 if (on_dir) {
6481 vap = vcp->dvap;
6482 } else {
6483 vap = vcp->vap;
6484 }
6485
6486 error = 0;
6487
6488 /*
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.
6492 */
6493
6494 /* owner permissions */
6495 needed = 0;
6496 if (action & VREAD)
6497 needed |= S_IRUSR;
6498 if (action & VWRITE)
6499 needed |= S_IWUSR;
6500 if (action & VEXEC)
6501 needed |= S_IXUSR;
6502 owner_ok = (needed & vap->va_mode) == needed;
6503
6504 /* group permissions */
6505 needed = 0;
6506 if (action & VREAD)
6507 needed |= S_IRGRP;
6508 if (action & VWRITE)
6509 needed |= S_IWGRP;
6510 if (action & VEXEC)
6511 needed |= S_IXGRP;
6512 group_ok = (needed & vap->va_mode) == needed;
6513
6514 /* world permissions */
6515 needed = 0;
6516 if (action & VREAD)
6517 needed |= S_IROTH;
6518 if (action & VWRITE)
6519 needed |= S_IWOTH;
6520 if (action & VEXEC)
6521 needed |= S_IXOTH;
6522 world_ok = (needed & vap->va_mode) == needed;
6523
6524 /* If granted/denied by all three, we're done */
6525 if (owner_ok && group_ok && world_ok) {
6526 _SETWHERE("all");
6527 goto out;
6528 }
6529 if (!owner_ok && !group_ok && !world_ok) {
6530 _SETWHERE("all");
6531 error = EACCES;
6532 goto out;
6533 }
6534
6535 /* Check ownership (relatively cheap) */
6536 if ((on_dir && vauth_dir_owner(vcp)) ||
6537 (!on_dir && vauth_file_owner(vcp))) {
6538 _SETWHERE("user");
6539 if (!owner_ok)
6540 error = EACCES;
6541 goto out;
6542 }
6543
6544 /* Not owner; if group and world both grant it we're done */
6545 if (group_ok && world_ok) {
6546 _SETWHERE("group/world");
6547 goto out;
6548 }
6549 if (!group_ok && !world_ok) {
6550 _SETWHERE("group/world");
6551 error = EACCES;
6552 goto out;
6553 }
6554
6555 /* Check group membership (most expensive) */
6556 ismember = 0; /* Default to allow, if the target has no group owner */
6557
6558 /*
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'.
6564 */
6565 if (on_dir) {
6566 error = vauth_dir_ingroup(vcp, &ismember, (!group_ok ? EACCES : 0));
6567 } else {
6568 error = vauth_file_ingroup(vcp, &ismember, (!group_ok ? EACCES : 0));
6569 }
6570 if (error) {
6571 if (!group_ok)
6572 ismember = 1;
6573 error = 0;
6574 }
6575 if (ismember) {
6576 _SETWHERE("group");
6577 if (!group_ok)
6578 error = EACCES;
6579 goto out;
6580 }
6581
6582 /* Not owner, not in group, use world result */
6583 _SETWHERE("world");
6584 if (!world_ok)
6585 error = EACCES;
6586
6587 /* FALLTHROUGH */
6588
6589 out:
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" : "-",
6595 needed,
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);
6608 return(error);
6609 }
6610
6611 /*
6612 * Authorize the deletion of the node vp from the directory dvp.
6613 *
6614 * We assume that:
6615 * - Neither the node nor the directory are immutable.
6616 * - The user is not the superuser.
6617 *
6618 * Deletion is not permitted if the directory is sticky and the caller is
6619 * not owner of the node or directory.
6620 *
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
6624 * deleted.
6625 *
6626 * As an optimization, we cache whether or not delete child is permitted
6627 * on directories without the sticky bit set.
6628 */
6629 int
6630 vnode_authorize_delete(vauth_ctx vcp, boolean_t cached_delete_child);
6631 /*static*/ int
6632 vnode_authorize_delete(vauth_ctx vcp, boolean_t cached_delete_child)
6633 {
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;
6639
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;
6649 /*
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.
6654 */
6655 if ((error = vauth_dir_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6656 return(error);
6657 if (error == ENOENT)
6658 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6659 else if (ismember)
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;
6665
6666 /*
6667 * If there is no entry, we are going to defer to other
6668 * authorization mechanisms.
6669 */
6670 error = kauth_acl_evaluate(cred, &eval);
6671
6672 if (error != 0) {
6673 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6674 return(error);
6675 }
6676 switch(eval.ae_result) {
6677 case KAUTH_RESULT_DENY:
6678 delete_child_denied = 1;
6679 break;
6680 /* FALLSTHROUGH */
6681 case KAUTH_RESULT_ALLOW:
6682 KAUTH_DEBUG("%p ALLOWED - granted by directory ACL", vcp->vp);
6683 return(0);
6684 case KAUTH_RESULT_DEFER:
6685 default:
6686 /* Effectively the same as !delete_child_denied */
6687 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp->vp);
6688 break;
6689 }
6690 }
6691
6692 /* check the ACL on the node */
6693 delete_denied = 0;
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;
6701 /*
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.
6706 */
6707 if ((error = vauth_file_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6708 return(error);
6709 if (error == ENOENT)
6710 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6711 else if (ismember)
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;
6717
6718 if ((error = kauth_acl_evaluate(cred, &eval)) != 0) {
6719 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6720 return(error);
6721 }
6722
6723 switch(eval.ae_result) {
6724 case KAUTH_RESULT_DENY:
6725 delete_denied = 1;
6726 break;
6727 case KAUTH_RESULT_ALLOW:
6728 KAUTH_DEBUG("%p ALLOWED - granted by file ACL", vcp->vp);
6729 return(0);
6730 case KAUTH_RESULT_DEFER:
6731 default:
6732 /* Effectively the same as !delete_child_denied */
6733 KAUTH_DEBUG("%p DEFERRED%s - by file ACL", vcp->vp, delete_denied ? "(DENY)" : "");
6734 break;
6735 }
6736 }
6737
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);
6741 return(EACCES);
6742 }
6743
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);
6748 return(EACCES);
6749 }
6750
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);
6754 return(error);
6755 }
6756
6757 /* not denied, must be OK */
6758 return(0);
6759 }
6760
6761
6762 /*
6763 * Authorize an operation based on the node's attributes.
6764 */
6765 static int
6766 vnode_authorize_simple(vauth_ctx vcp, kauth_ace_rights_t acl_rights, kauth_ace_rights_t preauth_rights, boolean_t *found_deny)
6767 {
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;
6773
6774 /*
6775 * If we are the file owner, we automatically have some rights.
6776 *
6777 * Do we need to expand this to support group ownership?
6778 */
6779 if (vauth_file_owner(vcp))
6780 acl_rights &= ~(KAUTH_VNODE_WRITE_SECURITY);
6781
6782 /*
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
6788 * the owner.
6789 */
6790 if ((acl_rights & KAUTH_VNODE_TAKE_OWNERSHIP) &&
6791 (acl_rights & KAUTH_VNODE_WRITE_SECURITY))
6792 acl_rights &= ~KAUTH_VNODE_WRITE_SECURITY;
6793
6794 if (acl_rights == 0) {
6795 KAUTH_DEBUG("%p ALLOWED - implicit or no rights required", vcp->vp);
6796 return(0);
6797 }
6798
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;
6807 /*
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.
6812 */
6813 if ((error = vauth_file_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6814 return(error);
6815 if (error == ENOENT)
6816 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6817 else if (ismember)
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;
6823
6824 if ((error = kauth_acl_evaluate(cred, &eval)) != 0) {
6825 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6826 return(error);
6827 }
6828
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);
6835 return(0);
6836 case KAUTH_RESULT_DEFER:
6837 default:
6838 /* Effectively the same as !delete_child_denied */
6839 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp->vp);
6840 break;
6841 }
6842
6843 *found_deny = eval.ae_found_deny;
6844
6845 /* fall through and evaluate residual rights */
6846 } else {
6847 /* no ACL, everything is residual */
6848 eval.ae_residual = acl_rights;
6849 }
6850
6851 /*
6852 * Grant residual rights that have been pre-authorized.
6853 */
6854 eval.ae_residual &= ~preauth_rights;
6855
6856 /*
6857 * We grant WRITE_ATTRIBUTES to the owner if it hasn't been denied.
6858 */
6859 if (vauth_file_owner(vcp))
6860 eval.ae_residual &= ~KAUTH_VNODE_WRITE_ATTRIBUTES;
6861
6862 if (eval.ae_residual == 0) {
6863 KAUTH_DEBUG("%p ALLOWED - rights already authorized", vcp->vp);
6864 return(0);
6865 }
6866
6867 /*
6868 * Bail if we have residual rights that can't be granted by posix permissions,
6869 * or aren't presumed granted at this point.
6870 *
6871 * XXX these can be collapsed for performance
6872 */
6873 if (eval.ae_residual & KAUTH_VNODE_CHANGE_OWNER) {
6874 KAUTH_DEBUG("%p DENIED - CHANGE_OWNER not permitted", vcp->vp);
6875 return(EACCES);
6876 }
6877 if (eval.ae_residual & KAUTH_VNODE_WRITE_SECURITY) {
6878 KAUTH_DEBUG("%p DENIED - WRITE_SECURITY not permitted", vcp->vp);
6879 return(EACCES);
6880 }
6881
6882 #if DIAGNOSTIC
6883 if (eval.ae_residual & KAUTH_VNODE_DELETE)
6884 panic("vnode_authorize: can't be checking delete permission here");
6885 #endif
6886
6887 /*
6888 * Compute the fallback posix permissions that will satisfy the remaining
6889 * rights.
6890 */
6891 posix_action = 0;
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;
6906
6907 if (posix_action != 0) {
6908 return(vnode_authorize_posix(vcp, posix_action, 0 /* !on_dir */));
6909 } else {
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",
6911 vcp->vp,
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)
6919 ? " 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" : "");
6940 }
6941
6942 /*
6943 * Lack of required Posix permissions implies no reason to deny access.
6944 */
6945 return(0);
6946 }
6947
6948 /*
6949 * Check for file immutability.
6950 */
6951 static int
6952 vnode_authorize_checkimmutable(vnode_t vp, struct vnode_attr *vap, int rights, int ignore)
6953 {
6954 mount_t mp;
6955 int error;
6956 int append;
6957
6958 /*
6959 * Perform immutability checks for operations that change data.
6960 *
6961 * Sockets, fifos and devices require special handling.
6962 */
6963 switch(vp->v_type) {
6964 case VSOCK:
6965 case VFIFO:
6966 case VBLK:
6967 case VCHR:
6968 /*
6969 * Writing to these nodes does not change the filesystem data,
6970 * so forget that it's being tried.
6971 */
6972 rights &= ~KAUTH_VNODE_WRITE_DATA;
6973 break;
6974 default:
6975 break;
6976 }
6977
6978 error = 0;
6979 if (rights & KAUTH_VNODE_WRITE_RIGHTS) {
6980
6981 /* check per-filesystem options if possible */
6982 mp = vp->v_mount;
6983 if (mp != NULL) {
6984
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 */
6990 goto out;
6991 }
6992 }
6993
6994 /*
6995 * check for file immutability. first, check if the requested rights are
6996 * allowable for a UF_APPEND file.
6997 */
6998 append = 0;
6999 if (vp->v_type == VDIR) {
7000 if ((rights & (KAUTH_VNODE_ADD_FILE | KAUTH_VNODE_ADD_SUBDIRECTORY | KAUTH_VNODE_WRITE_EXTATTRIBUTES)) == rights)
7001 append = 1;
7002 } else {
7003 if ((rights & (KAUTH_VNODE_APPEND_DATA | KAUTH_VNODE_WRITE_EXTATTRIBUTES)) == rights)
7004 append = 1;
7005 }
7006 if ((error = vnode_immutable(vap, append, ignore)) != 0) {
7007 KAUTH_DEBUG("%p DENIED - file is immutable", vp);
7008 goto out;
7009 }
7010 }
7011 out:
7012 return(error);
7013 }
7014
7015 /*
7016 * Handle authorization actions for filesystems that advertise that the
7017 * server will be enforcing.
7018 *
7019 * Returns: 0 Authorization should be handled locally
7020 * 1 Authorization was handled by the FS
7021 *
7022 * Note: Imputed returns will only occur if the authorization request
7023 * was handled by the FS.
7024 *
7025 * Imputed: *resultp, modified Return code from FS when the request is
7026 * handled by the FS.
7027 * VNOP_ACCESS:???
7028 * VNOP_OPEN:???
7029 */
7030 static int
7031 vnode_authorize_opaque(vnode_t vp, int *resultp, kauth_action_t action, vfs_context_t ctx)
7032 {
7033 int error;
7034
7035 /*
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.
7038 */
7039 switch(vp->v_type) {
7040 case VBLK:
7041 case VCHR:
7042 case VSOCK:
7043 case VFIFO:
7044 return(0);
7045 default:
7046 break;
7047 }
7048
7049 /*
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.
7052 */
7053 if ((action & KAUTH_VNODE_ACCESS) && !vfs_authopaqueaccess(vp->v_mount))
7054 return(0);
7055
7056 /*
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.
7059 */
7060 if ((error = VNOP_ACCESS(vp, action, ctx)) != ENOTSUP) {
7061 *resultp = error;
7062 KAUTH_DEBUG("%p DENIED - opaque filesystem VNOP_ACCESS denied access", vp);
7063 return(1);
7064 }
7065
7066 /*
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.
7069 */
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) {
7073 *resultp = error;
7074 KAUTH_DEBUG("%p DENIED - EXECUTE denied because file could not be opened readonly", vp);
7075 return(1);
7076 }
7077 VNOP_CLOSE(vp, FREAD, ctx);
7078 }
7079
7080 /*
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.
7083 */
7084 *resultp = 0;
7085 KAUTH_DEBUG("%p ALLOWED - bypassing access check for non-local filesystem", vp);
7086 return(1);
7087 }
7088
7089
7090
7091
7092 /*
7093 * Returns: KAUTH_RESULT_ALLOW
7094 * KAUTH_RESULT_DENY
7095 *
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]
7101 * vnode_getattr:???
7102 * vnode_authorize_opaque:*arg2 ???
7103 * vnode_authorize_checkimmutable:???
7104 * vnode_authorize_delete:???
7105 * vnode_authorize_simple:???
7106 */
7107
7108
7109 static int
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)
7112 {
7113 vfs_context_t ctx;
7114 vnode_t cvp = NULLVP;
7115 vnode_t vp, dvp;
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*/
7119
7120 ctx = (vfs_context_t)arg0;
7121 vp = (vnode_t)arg1;
7122 dvp = (vnode_t)arg2;
7123
7124 /*
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
7135 */
7136 if (dvp && vp)
7137 goto defer;
7138 if (dvp) {
7139 cvp = dvp;
7140 } else {
7141 /*
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()).
7149 *
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.
7156 */
7157 if (vnode_isnamedstream(vp) && (!vfs_authopaque(vp->v_mount))) {
7158 cvp = vnode_getparent(vp);
7159 if (cvp != NULLVP) {
7160 parent_iocount = 1;
7161 } else {
7162 cvp = NULL;
7163 goto defer; /* If we can't use the parent, take the slow path */
7164 }
7165
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;
7171 }
7172 if (parent_action & KAUTH_VNODE_WRITE_DATA) {
7173 parent_action &= ~KAUTH_VNODE_WRITE_DATA;
7174 parent_action |= KAUTH_VNODE_WRITE_EXTATTRIBUTES;
7175 }
7176
7177 } else {
7178 cvp = vp;
7179 }
7180 }
7181
7182 if (vnode_cache_is_authorized(cvp, ctx, parent_iocount ? parent_action : action) == TRUE) {
7183 result = KAUTH_RESULT_ALLOW;
7184 goto out;
7185 }
7186 defer:
7187 result = vnode_authorize_callback_int(cred, idata, action, arg0, arg1, arg2, arg3);
7188
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);
7192 }
7193
7194 out:
7195 if (parent_iocount) {
7196 vnode_put(cvp);
7197 }
7198
7199 return result;
7200 }
7201
7202
7203 static int
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)
7206 {
7207 struct _vnode_authorize_context auth_context;
7208 vauth_ctx vcp;
7209 vfs_context_t ctx;
7210 vnode_t vp, dvp;
7211 kauth_cred_t cred;
7212 kauth_ace_rights_t rights;
7213 struct vnode_attr va, dva;
7214 int result;
7215 int *errorp;
7216 int noimmutable;
7217 boolean_t parent_authorized_for_delete_child = FALSE;
7218 boolean_t found_deny = FALSE;
7219 boolean_t parent_ref= FALSE;
7220
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;
7226 /*
7227 * Note that we authorize against the context, not the passed cred
7228 * (the same thing anyway)
7229 */
7230 cred = ctx->vc_ucred;
7231
7232 VATTR_INIT(&va);
7233 vcp->vap = &va;
7234 VATTR_INIT(&dva);
7235 vcp->dvap = &dva;
7236
7237 vcp->flags = vcp->flags_valid = 0;
7238
7239 #if DIAGNOSTIC
7240 if ((ctx == NULL) || (vp == NULL) || (cred == NULL))
7241 panic("vnode_authorize: bad arguments (context %p vp %p cred %p)", ctx, vp, cred);
7242 #endif
7243
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);
7263
7264 /*
7265 * Extract the control bits from the action, everything else is
7266 * requested rights.
7267 */
7268 noimmutable = (action & KAUTH_VNODE_NOIMMUTABLE) ? 1 : 0;
7269 rights = action & ~(KAUTH_VNODE_ACCESS | KAUTH_VNODE_NOIMMUTABLE);
7270
7271 if (rights & KAUTH_VNODE_DELETE) {
7272 #if DIAGNOSTIC
7273 if (dvp == NULL)
7274 panic("vnode_authorize: KAUTH_VNODE_DELETE test requires a directory");
7275 #endif
7276 /*
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
7281 */
7282 if (vnode_cache_is_authorized(dvp, ctx, KAUTH_VNODE_DELETE_CHILD) == TRUE)
7283 parent_authorized_for_delete_child = TRUE;
7284 } else {
7285 dvp = NULL;
7286 }
7287
7288 /*
7289 * Check for read-only filesystems.
7290 */
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))) {
7296 result = EROFS;
7297 goto out;
7298 }
7299
7300 /*
7301 * Check for noexec filesystems.
7302 */
7303 if ((rights & KAUTH_VNODE_EXECUTE) && (vp->v_type == VREG) && (vp->v_mount->mnt_flag & MNT_NOEXEC)) {
7304 result = EACCES;
7305 goto out;
7306 }
7307
7308 /*
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.
7313 */
7314 if ((vp->v_mount->mnt_kern_flag & MNTK_AUTH_OPAQUE) && vnode_authorize_opaque(vp, &result, action, ctx))
7315 goto out;
7316
7317 /*
7318 * Get vnode attributes and extended security information for the vnode
7319 * and directory if required.
7320 */
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);
7328 goto out;
7329 }
7330 if (dvp) {
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);
7338 goto out;
7339 }
7340 }
7341
7342 /*
7343 * If the vnode is an extended attribute data vnode (eg. a resource fork), *_DATA becomes
7344 * *_EXTATTRIBUTES.
7345 */
7346 if (vnode_isnamedstream(vp)) {
7347 if (rights & KAUTH_VNODE_READ_DATA) {
7348 rights &= ~KAUTH_VNODE_READ_DATA;
7349 rights |= KAUTH_VNODE_READ_EXTATTRIBUTES;
7350 }
7351 if (rights & KAUTH_VNODE_WRITE_DATA) {
7352 rights &= ~KAUTH_VNODE_WRITE_DATA;
7353 rights |= KAUTH_VNODE_WRITE_EXTATTRIBUTES;
7354 }
7355 }
7356
7357 /*
7358 * Point 'vp' to the resource fork's parent for ACL checking
7359 */
7360 if (vnode_isnamedstream(vp) &&
7361 (vp->v_parent != NULL) &&
7362 (vget_internal(vp->v_parent, 0, VNODE_NODEAD | VNODE_DRAINO) == 0)) {
7363 parent_ref = TRUE;
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);
7367 VATTR_INIT(&va);
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)
7374 goto out;
7375 }
7376
7377 /*
7378 * Check for immutability.
7379 *
7380 * In the deletion case, parent directory immutability vetoes specific
7381 * file rights.
7382 */
7383 if ((result = vnode_authorize_checkimmutable(vp, &va, rights, noimmutable)) != 0)
7384 goto out;
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))
7388 goto out;
7389
7390 /*
7391 * Clear rights that have been authorized by reaching this point, bail if nothing left to
7392 * check.
7393 */
7394 rights &= ~(KAUTH_VNODE_LINKTARGET | KAUTH_VNODE_CHECKIMMUTABLE);
7395 if (rights == 0)
7396 goto out;
7397
7398 /*
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.
7402 */
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))
7407 goto out;
7408
7409 /* process remaining rights */
7410 if ((rights & ~KAUTH_VNODE_DELETE) &&
7411 (result = vnode_authorize_simple(vcp, rights, rights & KAUTH_VNODE_DELETE, &found_deny)) != 0)
7412 goto out;
7413 } else {
7414
7415 /*
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.
7418 */
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))) {
7423 result = EPERM;
7424 KAUTH_DEBUG("%p DENIED - root execute requires at least one x bit in 0x%x", vp, va.va_mode);
7425 goto out;
7426 }
7427
7428 /* Assume that there were DENYs so we don't wrongly cache KAUTH_VNODE_SEARCHBYANYONE */
7429 found_deny = TRUE;
7430
7431 KAUTH_DEBUG("%p ALLOWED - caller is superuser", vp);
7432 }
7433 out:
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);
7438
7439 if (result) {
7440 if (parent_ref)
7441 vnode_put(vp);
7442 *errorp = result;
7443 KAUTH_DEBUG("%p DENIED - auth denied", vp);
7444 return(KAUTH_RESULT_DENY);
7445 }
7446 if ((rights & KAUTH_VNODE_SEARCH) && found_deny == FALSE && vp->v_type == VDIR) {
7447 /*
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.
7453 */
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);
7458 }
7459 }
7460 if ((rights & KAUTH_VNODE_DELETE) && parent_authorized_for_delete_child == FALSE) {
7461 /*
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
7467 * 'result' value.
7468 */
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);
7474 }
7475 }
7476 if (parent_ref)
7477 vnode_put(vp);
7478 /*
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.
7481 */
7482 KAUTH_DEBUG("%p ALLOWED - auth granted", vp);
7483 return(KAUTH_RESULT_ALLOW);
7484 }
7485
7486 int
7487 vnode_authattr_new(vnode_t dvp, struct vnode_attr *vap, int noauth, vfs_context_t ctx)
7488 {
7489 return vnode_authattr_new_internal(dvp, vap, noauth, NULL, ctx);
7490 }
7491
7492 /*
7493 * Check that the attribute information in vattr can be legally applied to
7494 * a new file by the context.
7495 */
7496 static int
7497 vnode_authattr_new_internal(vnode_t dvp, struct vnode_attr *vap, int noauth, uint32_t *defaulted_fieldsp, vfs_context_t ctx)
7498 {
7499 int error;
7500 int has_priv_suser, ismember, defaulted_owner, defaulted_group, defaulted_mode;
7501 kauth_cred_t cred;
7502 guid_t changer;
7503 mount_t dmp;
7504
7505 error = 0;
7506
7507 if (defaulted_fieldsp) {
7508 *defaulted_fieldsp = 0;
7509 }
7510
7511 defaulted_owner = defaulted_group = defaulted_mode = 0;
7512
7513 /*
7514 * Require that the filesystem support extended security to apply any.
7515 */
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))) {
7518 error = EINVAL;
7519 goto out;
7520 }
7521
7522 /*
7523 * Default some fields.
7524 */
7525 dmp = dvp->v_mount;
7526
7527 /*
7528 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit owner is set, that
7529 * owner takes ownership of all new files.
7530 */
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;
7534 } else {
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;
7539 }
7540 }
7541
7542 /*
7543 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit grouo is set, that
7544 * group takes ownership of all new files.
7545 */
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;
7549 } else {
7550 if (!VATTR_IS_ACTIVE(vap, va_gid)) {
7551 /* default group comes from parent object, fallback to current user */
7552 struct vnode_attr dva;
7553 VATTR_INIT(&dva);
7554 VATTR_WANTED(&dva, va_gid);
7555 if ((error = vnode_getattr(dvp, &dva, ctx)) != 0)
7556 goto out;
7557 if (VATTR_IS_SUPPORTED(&dva, va_gid)) {
7558 VATTR_SET(vap, va_gid, dva.va_gid);
7559 } else {
7560 VATTR_SET(vap, va_gid, kauth_cred_getgid(vfs_context_ucred(ctx)));
7561 }
7562 defaulted_group = 1;
7563 }
7564 }
7565
7566 if (!VATTR_IS_ACTIVE(vap, va_flags))
7567 VATTR_SET(vap, va_flags, 0);
7568
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);
7573 defaulted_mode = 1;
7574 }
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);
7579 }
7580
7581 /*
7582 * Check for attempts to set nonsensical fields.
7583 */
7584 if (vap->va_active & ~VNODE_ATTR_NEWOBJ) {
7585 error = EINVAL;
7586 KAUTH_DEBUG("ATTR - ERROR - attempt to set unsupported new-file attributes %llx",
7587 vap->va_active & ~VNODE_ATTR_NEWOBJ);
7588 goto out;
7589 }
7590
7591 /*
7592 * Quickly check for the applicability of any enforcement here.
7593 * Tests below maintain the integrity of the local security model.
7594 */
7595 if (vfs_authopaque(dvp->v_mount))
7596 goto out;
7597
7598 /*
7599 * We need to know if the caller is the superuser, or if the work is
7600 * otherwise already authorised.
7601 */
7602 cred = vfs_context_ucred(ctx);
7603 if (noauth) {
7604 /* doing work for the kernel */
7605 has_priv_suser = 1;
7606 } else {
7607 has_priv_suser = vfs_context_issuser(ctx);
7608 }
7609
7610
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) {
7614 error = EPERM;
7615 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7616 goto out;
7617 }
7618 } else {
7619 if ((vap->va_flags & UF_SETTABLE) != vap->va_flags) {
7620 error = EPERM;
7621 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7622 goto out;
7623 }
7624 }
7625 }
7626
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)) {
7630 /* setgid? */
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);
7634 goto out;
7635 }
7636 if (!ismember) {
7637 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", vap->va_gid);
7638 error = EPERM;
7639 goto out;
7640 }
7641 }
7642
7643 /* setuid? */
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");
7646 error = EPERM;
7647 goto out;
7648 }
7649 }
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);
7652 error = EPERM;
7653 goto out;
7654 }
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);
7658 goto out;
7659 }
7660 if (!ismember) {
7661 KAUTH_DEBUG(" DENIED - cannot create new item with group %d - not a member", vap->va_gid);
7662 error = EPERM;
7663 goto out;
7664 }
7665 }
7666
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 */
7672 goto out;
7673 }
7674 if (!kauth_guid_equal(&vap->va_uuuid, &changer)) {
7675 KAUTH_DEBUG(" ERROR - cannot create item with supplied owner UUID - not us");
7676 error = EPERM;
7677 goto out;
7678 }
7679 }
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);
7683 goto out;
7684 }
7685 if (!ismember) {
7686 KAUTH_DEBUG(" ERROR - cannot create item with supplied group UUID - not a member");
7687 error = EPERM;
7688 goto out;
7689 }
7690 }
7691 }
7692 out:
7693 if (defaulted_fieldsp) {
7694 if (defaulted_mode) {
7695 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_MODE;
7696 }
7697 if (defaulted_group) {
7698 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_GID;
7699 }
7700 if (defaulted_owner) {
7701 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_UID;
7702 }
7703 }
7704 return(error);
7705 }
7706
7707 /*
7708 * Check that the attribute information in vap can be legally written by the
7709 * context.
7710 *
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.
7713 *
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.
7716 */
7717 int
7718 vnode_authattr(vnode_t vp, struct vnode_attr *vap, kauth_action_t *actionp, vfs_context_t ctx)
7719 {
7720 struct vnode_attr ova;
7721 kauth_action_t required_action;
7722 int error, has_priv_suser, ismember, chowner, chgroup, clear_suid, clear_sgid;
7723 guid_t changer;
7724 gid_t group;
7725 uid_t owner;
7726 mode_t newmode;
7727 kauth_cred_t cred;
7728 uint32_t fdelta;
7729
7730 VATTR_INIT(&ova);
7731 required_action = 0;
7732 error = 0;
7733
7734 /*
7735 * Quickly check for enforcement applicability.
7736 */
7737 if (vfs_authopaque(vp->v_mount))
7738 goto out;
7739
7740 /*
7741 * Check for attempts to set nonsensical fields.
7742 */
7743 if (vap->va_active & VNODE_ATTR_RDONLY) {
7744 KAUTH_DEBUG("ATTR - ERROR: attempt to set readonly attribute(s)");
7745 error = EINVAL;
7746 goto out;
7747 }
7748
7749 /*
7750 * We need to know if the caller is the superuser.
7751 */
7752 cred = vfs_context_ucred(ctx);
7753 has_priv_suser = kauth_cred_issuser(cred);
7754
7755 /*
7756 * If any of the following are changing, we need information from the old file:
7757 * va_uid
7758 * va_gid
7759 * va_mode
7760 * va_uuuid
7761 * va_guuid
7762 */
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");
7774 }
7775
7776 /*
7777 * If timestamps are being changed, we need to know who the file is owned
7778 * by.
7779 */
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)) {
7785
7786 VATTR_WANTED(&ova, va_uid);
7787 #if 0 /* enable this when we support UUIDs as official owners */
7788 VATTR_WANTED(&ova, va_uuuid);
7789 #endif
7790 KAUTH_DEBUG("ATTR - timestamps changing, fetching uid and GUID");
7791 }
7792
7793 /*
7794 * If flags are being changed, we need the old flags.
7795 */
7796 if (VATTR_IS_ACTIVE(vap, va_flags)) {
7797 KAUTH_DEBUG("ATTR - flags changing, fetching old flags");
7798 VATTR_WANTED(&ova, va_flags);
7799 }
7800
7801 /*
7802 * If ACLs are being changed, we need the old ACLs.
7803 */
7804 if (VATTR_IS_ACTIVE(vap, va_acl)) {
7805 KAUTH_DEBUG("ATTR - acl changing, fetching old flags");
7806 VATTR_WANTED(&ova, va_acl);
7807 }
7808
7809 /*
7810 * If the size is being set, make sure it's not a directory.
7811 */
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;
7817 goto out;
7818 }
7819 }
7820
7821 /*
7822 * Get old data.
7823 */
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);
7827 goto out;
7828 }
7829
7830 /*
7831 * Size changes require write access to the file data.
7832 */
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;
7837 }
7838
7839 /*
7840 * Changing timestamps?
7841 *
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.
7845 *
7846 * Non-owners are not permitted to change the time on an existing
7847 * file to anything other than the current time.
7848 */
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)) {
7854 /*
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).
7858 */
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;
7862 } else {
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;
7867 } else {
7868 KAUTH_DEBUG("ATTR - ERROR: illegal timestamp modification attempted");
7869 error = EACCES;
7870 goto out;
7871 }
7872 }
7873 }
7874
7875 /*
7876 * Changing file mode?
7877 */
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);
7880
7881 /*
7882 * Mode changes always have the same basic auth requirements.
7883 */
7884 if (has_priv_suser) {
7885 KAUTH_DEBUG("ATTR - superuser mode change, requiring immutability check");
7886 required_action |= KAUTH_VNODE_CHECKIMMUTABLE;
7887 } else {
7888 /* need WRITE_SECURITY */
7889 KAUTH_DEBUG("ATTR - non-superuser mode change, requiring WRITE_SECURITY");
7890 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7891 }
7892
7893 /*
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.
7896 */
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)) {
7903 group = ova.va_gid;
7904 } else {
7905 KAUTH_DEBUG("ATTR - ERROR: setgid but no gid available");
7906 error = EINVAL;
7907 goto out;
7908 }
7909 /*
7910 * This might be too restrictive; WRITE_SECURITY might be implied by
7911 * membership in this case, rather than being an additional requirement.
7912 */
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);
7915 goto out;
7916 }
7917 if (!ismember) {
7918 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", group);
7919 error = EPERM;
7920 goto out;
7921 }
7922 }
7923 }
7924
7925 /*
7926 * Can't set the setuid bit unless you're root or the file's owner.
7927 */
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)) {
7934 owner = ova.va_uid;
7935 } else {
7936 KAUTH_DEBUG("ATTR - ERROR: setuid but no uid available");
7937 error = EINVAL;
7938 goto out;
7939 }
7940 if (owner != kauth_cred_getuid(cred)) {
7941 /*
7942 * We could allow this if WRITE_SECURITY is permitted, perhaps.
7943 */
7944 KAUTH_DEBUG("ATTR - ERROR: illegal attempt to set the setuid bit");
7945 error = EPERM;
7946 goto out;
7947 }
7948 }
7949 }
7950 }
7951
7952 /*
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.
7956 *
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.
7960 *
7961 */
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;
7966 } else {
7967 fdelta = vap->va_flags;
7968 }
7969
7970 if (fdelta != 0) {
7971 KAUTH_DEBUG("ATTR - flags changing, requiring WRITE_SECURITY");
7972 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7973
7974 /* check that changing bits are legal */
7975 if (has_priv_suser) {
7976 /*
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.
7980 */
7981 if (fdelta & ~(UF_SETTABLE | SF_SETTABLE)) {
7982 error = EPERM;
7983 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7984 goto out;
7985 }
7986 } else {
7987 if (fdelta & ~UF_SETTABLE) {
7988 error = EPERM;
7989 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7990 goto out;
7991 }
7992 }
7993 /*
7994 * If the caller has the ability to manipulate file flags,
7995 * security is not reduced by ignoring them for this operation.
7996 *
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
7999 * very complex.
8000 *
8001 * Ignoring immutability is conditional on securelevel; this does not bypass
8002 * the SF_* flags if securelevel > 0.
8003 */
8004 required_action |= KAUTH_VNODE_NOIMMUTABLE;
8005 }
8006 }
8007
8008 /*
8009 * Validate ownership information.
8010 */
8011 chowner = 0;
8012 chgroup = 0;
8013 clear_suid = 0;
8014 clear_sgid = 0;
8015
8016 /*
8017 * uid changing
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.
8021 */
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");
8026 error = EPERM;
8027 goto out;
8028 }
8029 chowner = 1;
8030 }
8031 clear_suid = 1;
8032 }
8033
8034 /*
8035 * gid changing
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.
8039 */
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);
8045 goto out;
8046 }
8047 if (!ismember) {
8048 KAUTH_DEBUG(" DENIED - group change from %d to %d but not a member of target group",
8049 ova.va_gid, vap->va_gid);
8050 error = EPERM;
8051 goto out;
8052 }
8053 }
8054 chgroup = 1;
8055 }
8056 clear_sgid = 1;
8057 }
8058
8059 /*
8060 * Owner UUID being set or changed.
8061 */
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;
8067
8068 /*
8069 * If the current owner UUID is a null GUID, check
8070 * it against the UUID corresponding to the owner UID.
8071 */
8072 if (kauth_guid_equal(&ova.va_uuuid, &kauth_null_guid) &&
8073 VATTR_IS_SUPPORTED(&ova, va_uid)) {
8074 guid_t uid_guid;
8075
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;
8079 }
8080 }
8081
8082 /*
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
8087 * system.
8088 */
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 */
8093 goto out;
8094 }
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");
8098 error = EPERM;
8099 goto out;
8100 }
8101 }
8102 chowner = 1;
8103 clear_suid = 1;
8104 }
8105 no_uuuid_change:
8106 /*
8107 * Group UUID being set or changed.
8108 */
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;
8114
8115 /*
8116 * If the current group UUID is a null UUID, check
8117 * it against the UUID corresponding to the group GID.
8118 */
8119 if (kauth_guid_equal(&ova.va_guuid, &kauth_null_guid) &&
8120 VATTR_IS_SUPPORTED(&ova, va_gid)) {
8121 guid_t gid_guid;
8122
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;
8126 }
8127 }
8128
8129 /*
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"
8132 * the group UUID).
8133 * Note that file systems must be prepared to handle the
8134 * null UUID case in a manner appropriate for that file
8135 * system.
8136 */
8137 if (!has_priv_suser) {
8138 if (kauth_guid_equal(&vap->va_guuid, &kauth_null_guid))
8139 ismember = 1;
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);
8142 goto out;
8143 }
8144 if (!ismember) {
8145 KAUTH_DEBUG(" ERROR - cannot set supplied group UUID - not a member / null");
8146 error = EPERM;
8147 goto out;
8148 }
8149 }
8150 chgroup = 1;
8151 }
8152 no_guuid_change:
8153
8154 /*
8155 * Compute authorisation for group/ownership changes.
8156 */
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;
8161 } else {
8162 if (chowner) {
8163 KAUTH_DEBUG("ATTR - ownership change, requiring TAKE_OWNERSHIP");
8164 required_action |= KAUTH_VNODE_TAKE_OWNERSHIP;
8165 }
8166 if (chgroup && !chowner) {
8167 KAUTH_DEBUG("ATTR - group change, requiring WRITE_SECURITY");
8168 required_action |= KAUTH_VNODE_WRITE_SECURITY;
8169 }
8170
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;
8176 } else {
8177 KAUTH_DEBUG("CHOWN - trying to change owner but cannot get mode from filesystem to mask setugid bits");
8178 newmode = 0;
8179 }
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);
8183 }
8184 }
8185 }
8186
8187 /*
8188 * Authorise changes in the ACL.
8189 */
8190 if (VATTR_IS_ACTIVE(vap, va_acl)) {
8191
8192 /* no existing ACL */
8193 if (!VATTR_IS_ACTIVE(&ova, va_acl) || (ova.va_acl == NULL)) {
8194
8195 /* adding an ACL */
8196 if (vap->va_acl != NULL) {
8197 required_action |= KAUTH_VNODE_WRITE_SECURITY;
8198 KAUTH_DEBUG("CHMOD - adding ACL");
8199 }
8200
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");
8205
8206 /* updating an existing ACL */
8207 } else {
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");
8218 }
8219 }
8220 }
8221 }
8222
8223 /*
8224 * Other attributes that require authorisation.
8225 */
8226 if (VATTR_IS_ACTIVE(vap, va_encoding))
8227 required_action |= KAUTH_VNODE_WRITE_ATTRIBUTES;
8228
8229 out:
8230 if (VATTR_IS_SUPPORTED(&ova, va_acl) && (ova.va_acl != NULL))
8231 kauth_acl_free(ova.va_acl);
8232 if (error == 0)
8233 *actionp = required_action;
8234 return(error);
8235 }
8236
8237 static int
8238 setlocklocal_callback(struct vnode *vp, __unused void *cargs)
8239 {
8240 vnode_lock_spin(vp);
8241 vp->v_flag |= VLOCKLOCAL;
8242 vnode_unlock(vp);
8243
8244 return (VNODE_RETURNED);
8245 }
8246
8247 void
8248 vfs_setlocklocal(mount_t mp)
8249 {
8250 mount_lock_spin(mp);
8251 mp->mnt_kern_flag |= MNTK_LOCK_LOCAL;
8252 mount_unlock(mp);
8253
8254 /*
8255 * The number of active vnodes is expected to be
8256 * very small when vfs_setlocklocal is invoked.
8257 */
8258 vnode_iterate(mp, 0, setlocklocal_callback, NULL);
8259 }
8260
8261 void
8262 vfs_setcompoundopen(mount_t mp)
8263 {
8264 mount_lock_spin(mp);
8265 mp->mnt_compound_ops |= COMPOUND_VNOP_OPEN;
8266 mount_unlock(mp);
8267 }
8268
8269
8270 void
8271 vnode_setswapmount(vnode_t vp)
8272 {
8273 mount_lock(vp->v_mount);
8274 vp->v_mount->mnt_kern_flag |= MNTK_SWAP_MOUNT;
8275 mount_unlock(vp->v_mount);
8276 }
8277
8278
8279 int64_t
8280 vnode_getswappin_avail(vnode_t vp)
8281 {
8282 int64_t max_swappin_avail = 0;
8283
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);
8288
8289 return (max_swappin_avail);
8290 }
8291
8292
8293 void
8294 vn_setunionwait(vnode_t vp)
8295 {
8296 vnode_lock_spin(vp);
8297 vp->v_flag |= VISUNION;
8298 vnode_unlock(vp);
8299 }
8300
8301
8302 void
8303 vn_checkunionwait(vnode_t vp)
8304 {
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);
8308 vnode_unlock(vp);
8309 }
8310
8311 void
8312 vn_clearunionwait(vnode_t vp, int locked)
8313 {
8314 if (!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);
8319 }
8320 if (!locked)
8321 vnode_unlock(vp);
8322 }
8323
8324 /*
8325 * Removes orphaned apple double files during a rmdir
8326 * Works by:
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.
8332 * 6. vnode_resume()
8333 * 7. If deletion of all files succeeded, call VNOP_RMDIR() again.
8334 */
8335
8336 errno_t rmdir_remove_orphaned_appleDouble(vnode_t vp , vfs_context_t ctx, int * restart_flag)
8337 {
8338
8339 #define UIO_BUFF_SIZE 2048
8340 uio_t auio = NULL;
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) ];
8344 char *rbuf = NULL;
8345 void *dir_pos;
8346 void *dir_end;
8347 struct dirent *dp;
8348 errno_t error;
8349
8350 error = vnode_suspend(vp);
8351
8352 /*
8353 * restart_flag is set so that the calling rmdir sleeps and resets
8354 */
8355 if (error == EBUSY)
8356 *restart_flag = 1;
8357 if (error != 0)
8358 return (error);
8359
8360 /*
8361 * set up UIO
8362 */
8363 MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
8364 if (rbuf)
8365 auio = uio_createwithbuffer(1, 0, UIO_SYSSPACE, UIO_READ,
8366 &uio_buf[0], sizeof(uio_buf));
8367 if (!rbuf || !auio) {
8368 error = ENOMEM;
8369 goto outsc;
8370 }
8371
8372 uio_setoffset(auio,0);
8373
8374 eofflag = 0;
8375
8376 if ((error = VNOP_OPEN(vp, FREAD, ctx)))
8377 goto outsc;
8378 else
8379 open_flag = 1;
8380
8381 /*
8382 * First pass checks if all files are appleDouble files.
8383 */
8384
8385 do {
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);
8389
8390 if((error = VNOP_READDIR(vp, auio, 0, &eofflag, &nentries, ctx)))
8391 goto outsc;
8392
8393 if (uio_resid(auio) != 0)
8394 siz -= uio_resid(auio);
8395
8396 /*
8397 * Iterate through directory
8398 */
8399 dir_pos = (void*) rbuf;
8400 dir_end = (void*) (rbuf + siz);
8401 dp = (struct dirent*) (dir_pos);
8402
8403 if (dir_pos == dir_end)
8404 eofflag = 1;
8405
8406 while (dir_pos < dir_end) {
8407 /*
8408 * Check for . and .. as well as directories
8409 */
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] == '.'))) {
8413 /*
8414 * Check for irregular files and ._ files
8415 * If there is a ._._ file abort the op
8416 */
8417 if ( dp->d_namlen < 2 ||
8418 strncmp(dp->d_name,"._",2) ||
8419 (dp->d_namlen >= 4 && !strncmp(&(dp->d_name[2]), "._",2))) {
8420 error = ENOTEMPTY;
8421 goto outsc;
8422 }
8423 }
8424 dir_pos = (void*) ((uint8_t*)dir_pos + dp->d_reclen);
8425 dp = (struct dirent*)dir_pos;
8426 }
8427
8428 /*
8429 * workaround for HFS/NFS setting eofflag before end of file
8430 */
8431 if (vp->v_tag == VT_HFS && nentries > 2)
8432 eofflag=0;
8433
8434 if (vp->v_tag == VT_NFS) {
8435 if (eofflag && !full_erase_flag) {
8436 full_erase_flag = 1;
8437 eofflag = 0;
8438 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
8439 }
8440 else if (!eofflag && full_erase_flag)
8441 full_erase_flag = 0;
8442 }
8443
8444 } while (!eofflag);
8445 /*
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.
8449 */
8450
8451 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
8452 eofflag = 0;
8453 full_erase_flag = 0;
8454
8455 do {
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);
8459
8460 error = VNOP_READDIR(vp, auio, 0, &eofflag, &nentries, ctx);
8461
8462 if (error != 0)
8463 goto outsc;
8464
8465 if (uio_resid(auio) != 0)
8466 siz -= uio_resid(auio);
8467
8468 /*
8469 * Iterate through directory
8470 */
8471 dir_pos = (void*) rbuf;
8472 dir_end = (void*) (rbuf + siz);
8473 dp = (struct dirent*) dir_pos;
8474
8475 if (dir_pos == dir_end)
8476 eofflag = 1;
8477
8478 while (dir_pos < dir_end) {
8479 /*
8480 * Check for . and .. as well as directories
8481 */
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] == '.'))
8485 ) {
8486
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);
8491
8492 if (error && error != ENOENT) {
8493 goto outsc;
8494 }
8495
8496 }
8497 dir_pos = (void*) ((uint8_t*)dir_pos + dp->d_reclen);
8498 dp = (struct dirent*)dir_pos;
8499 }
8500
8501 /*
8502 * workaround for HFS/NFS setting eofflag before end of file
8503 */
8504 if (vp->v_tag == VT_HFS && nentries > 2)
8505 eofflag=0;
8506
8507 if (vp->v_tag == VT_NFS) {
8508 if (eofflag && !full_erase_flag) {
8509 full_erase_flag = 1;
8510 eofflag = 0;
8511 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
8512 }
8513 else if (!eofflag && full_erase_flag)
8514 full_erase_flag = 0;
8515 }
8516
8517 } while (!eofflag);
8518
8519
8520 error = 0;
8521
8522 outsc:
8523 if (open_flag)
8524 VNOP_CLOSE(vp, FREAD, ctx);
8525
8526 if (auio)
8527 uio_free(auio);
8528 FREE(rbuf, M_TEMP);
8529
8530 vnode_resume(vp);
8531
8532
8533 return(error);
8534
8535 }
8536
8537
8538 void
8539 lock_vnode_and_post(vnode_t vp, int kevent_num)
8540 {
8541 /* Only take the lock if there's something there! */
8542 if (vp->v_knotes.slh_first != NULL) {
8543 vnode_lock(vp);
8544 KNOTE(&vp->v_knotes, kevent_num);
8545 vnode_unlock(vp);
8546 }
8547 }
8548
8549 void panic_print_vnodes(void);
8550 /* define PANIC_PRINTS_VNODES only if investigation is required. */
8551 #ifdef PANIC_PRINTS_VNODES
8552
8553 static const char *__vtype(uint16_t vtype)
8554 {
8555 switch (vtype) {
8556 case VREG:
8557 return "R";
8558 case VDIR:
8559 return "D";
8560 case VBLK:
8561 return "B";
8562 case VCHR:
8563 return "C";
8564 case VLNK:
8565 return "L";
8566 case VSOCK:
8567 return "S";
8568 case VFIFO:
8569 return "F";
8570 case VBAD:
8571 return "x";
8572 case VSTR:
8573 return "T";
8574 case VCPLX:
8575 return "X";
8576 default:
8577 return "?";
8578 }
8579 }
8580
8581 /*
8582 * build a path from the bottom up
8583 * NOTE: called from the panic path - no alloc'ing of memory and no locks!
8584 */
8585 static char *__vpath(vnode_t vp, char *str, int len, int depth)
8586 {
8587 int vnm_len;
8588 const char *src;
8589 char *dst;
8590
8591 if (len <= 0)
8592 return str;
8593 /* str + len is the start of the string we created */
8594 if (!vp->v_name)
8595 return str + len;
8596
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,
8601 str, len, depth+1);
8602 }
8603 return str + len;
8604 }
8605
8606 src = vp->v_name;
8607 vnm_len = strlen(src);
8608 if (vnm_len > len) {
8609 /* truncate the name to fit in the string */
8610 src += (vnm_len - len);
8611 vnm_len = len;
8612 }
8613
8614 /* start from the back and copy just characters (no NULLs) */
8615
8616 /* this will chop off leaf path (file) names */
8617 if (depth > 0) {
8618 dst = str + len - vnm_len;
8619 memcpy(dst, src, vnm_len);
8620 len -= vnm_len;
8621 } else {
8622 dst = str + len;
8623 }
8624
8625 if (vp->v_parent && len > 1) {
8626 /* follow parents up the chain */
8627 len--;
8628 *(dst-1) = '/';
8629 return __vpath(vp->v_parent, str, len, depth + 1);
8630 }
8631
8632 return dst;
8633 }
8634
8635 extern int kdb_printf(const char *format, ...) __printflike(1,2);
8636
8637 #define SANE_VNODE_PRINT_LIMIT 5000
8638 void panic_print_vnodes(void)
8639 {
8640 mount_t mnt;
8641 vnode_t vp;
8642 int nvnodes = 0;
8643 const char *type;
8644 char *nm;
8645 char vname[257];
8646
8647 kdb_printf("\n***** VNODES *****\n"
8648 "TYPE UREF ICNT PATH\n");
8649
8650 /* NULL-terminate the path name */
8651 vname[sizeof(vname)-1] = '\0';
8652
8653 /*
8654 * iterate all vnodelist items in all mounts (mntlist) -> mnt_vnodelist
8655 */
8656 TAILQ_FOREACH(mnt, &mountlist, mnt_list) {
8657 TAILQ_FOREACH(vp, &mnt->mnt_vnodelist, v_mntvnodes) {
8658 if (++nvnodes > SANE_VNODE_PRINT_LIMIT)
8659 return;
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);
8664 }
8665 }
8666 }
8667
8668 #else /* !PANIC_PRINTS_VNODES */
8669 void panic_print_vnodes(void)
8670 {
8671 return;
8672 }
8673 #endif
8674
8675
8676 #ifdef JOE_DEBUG
8677 static void record_vp(vnode_t vp, int count) {
8678 struct uthread *ut;
8679
8680 #if CONFIG_TRIGGERS
8681 if (vp->v_resolve)
8682 return;
8683 #endif
8684 if ((vp->v_flag & VSYSTEM))
8685 return;
8686
8687 ut = get_bsdthread_info(current_thread());
8688 ut->uu_iocount += count;
8689
8690 if (count == 1) {
8691 if (ut->uu_vpindex < 32) {
8692 OSBacktrace((void **)&ut->uu_pcs[ut->uu_vpindex][0], 10);
8693
8694 ut->uu_vps[ut->uu_vpindex] = vp;
8695 ut->uu_vpindex++;
8696 }
8697 }
8698 }
8699 #endif
8700
8701
8702 #if CONFIG_TRIGGERS
8703
8704 #define TRIG_DEBUG 0
8705
8706 #if TRIG_DEBUG
8707 #define TRIG_LOG(...) do { printf("%s: ", __FUNCTION__); printf(__VA_ARGS__); } while (0)
8708 #else
8709 #define TRIG_LOG(...)
8710 #endif
8711
8712 /*
8713 * Resolver result functions
8714 */
8715
8716 resolver_result_t
8717 vfs_resolver_result(uint32_t seq, enum resolver_status stat, int aux)
8718 {
8719 /*
8720 * |<--- 32 --->|<--- 28 --->|<- 4 ->|
8721 * sequence auxiliary status
8722 */
8723 return (((uint64_t)seq) << 32) |
8724 (((uint64_t)(aux & 0x0fffffff)) << 4) |
8725 (uint64_t)(stat & 0x0000000F);
8726 }
8727
8728 enum resolver_status
8729 vfs_resolver_status(resolver_result_t result)
8730 {
8731 /* lower 4 bits is status */
8732 return (result & 0x0000000F);
8733 }
8734
8735 uint32_t
8736 vfs_resolver_sequence(resolver_result_t result)
8737 {
8738 /* upper 32 bits is sequence */
8739 return (uint32_t)(result >> 32);
8740 }
8741
8742 int
8743 vfs_resolver_auxiliary(resolver_result_t result)
8744 {
8745 /* 28 bits of auxiliary */
8746 return (int)(((uint32_t)(result & 0xFFFFFFF0)) >> 4);
8747 }
8748
8749 /*
8750 * SPI
8751 * Call in for resolvers to update vnode trigger state
8752 */
8753 int
8754 vnode_trigger_update(vnode_t vp, resolver_result_t result)
8755 {
8756 vnode_resolve_t rp;
8757 uint32_t seq;
8758 enum resolver_status stat;
8759
8760 if (vp->v_resolve == NULL) {
8761 return (EINVAL);
8762 }
8763
8764 stat = vfs_resolver_status(result);
8765 seq = vfs_resolver_sequence(result);
8766
8767 if ((stat != RESOLVER_RESOLVED) && (stat != RESOLVER_UNRESOLVED)) {
8768 return (EINVAL);
8769 }
8770
8771 rp = vp->v_resolve;
8772 lck_mtx_lock(&rp->vr_lock);
8773
8774 if (seq > rp->vr_lastseq) {
8775 if (stat == RESOLVER_RESOLVED)
8776 rp->vr_flags |= VNT_RESOLVED;
8777 else
8778 rp->vr_flags &= ~VNT_RESOLVED;
8779
8780 rp->vr_lastseq = seq;
8781 }
8782
8783 lck_mtx_unlock(&rp->vr_lock);
8784
8785 return (0);
8786 }
8787
8788 static int
8789 vnode_resolver_attach(vnode_t vp, vnode_resolve_t rp, boolean_t ref)
8790 {
8791 int error;
8792
8793 vnode_lock_spin(vp);
8794 if (vp->v_resolve != NULL) {
8795 vnode_unlock(vp);
8796 return EINVAL;
8797 } else {
8798 vp->v_resolve = rp;
8799 }
8800 vnode_unlock(vp);
8801
8802 if (ref) {
8803 error = vnode_ref_ext(vp, O_EVTONLY, VNODE_REF_FORCE);
8804 if (error != 0) {
8805 panic("VNODE_REF_FORCE didn't help...");
8806 }
8807 }
8808
8809 return 0;
8810 }
8811
8812 /*
8813 * VFS internal interfaces for vnode triggers
8814 *
8815 * vnode must already have an io count on entry
8816 * v_resolve is stable when io count is non-zero
8817 */
8818 static int
8819 vnode_resolver_create(mount_t mp, vnode_t vp, struct vnode_trigger_param *tinfo, boolean_t external)
8820 {
8821 vnode_resolve_t rp;
8822 int result;
8823 char byte;
8824
8825 #if 1
8826 /* minimum pointer test (debugging) */
8827 if (tinfo->vnt_data)
8828 byte = *((char *)tinfo->vnt_data);
8829 #endif
8830 MALLOC(rp, vnode_resolve_t, sizeof(*rp), M_TEMP, M_WAITOK);
8831 if (rp == NULL)
8832 return (ENOMEM);
8833
8834 lck_mtx_init(&rp->vr_lock, trigger_vnode_lck_grp, trigger_vnode_lck_attr);
8835
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;
8841 rp->vr_lastseq = 0;
8842 rp->vr_flags = tinfo->vnt_flags & VNT_VALID_MASK;
8843 if (external) {
8844 rp->vr_flags |= VNT_EXTERNAL;
8845 }
8846
8847 result = vnode_resolver_attach(vp, rp, external);
8848 if (result != 0) {
8849 goto out;
8850 }
8851
8852 if (mp) {
8853 OSAddAtomic(1, &mp->mnt_numtriggers);
8854 }
8855
8856 return (result);
8857
8858 out:
8859 FREE(rp, M_TEMP);
8860 return result;
8861 }
8862
8863 static void
8864 vnode_resolver_release(vnode_resolve_t rp)
8865 {
8866 /*
8867 * Give them a chance to free any private data
8868 */
8869 if (rp->vr_data && rp->vr_reclaim_func) {
8870 rp->vr_reclaim_func(NULLVP, rp->vr_data);
8871 }
8872
8873 lck_mtx_destroy(&rp->vr_lock, trigger_vnode_lck_grp);
8874 FREE(rp, M_TEMP);
8875
8876 }
8877
8878 /* Called after the vnode has been drained */
8879 static void
8880 vnode_resolver_detach(vnode_t vp)
8881 {
8882 vnode_resolve_t rp;
8883 mount_t mp;
8884
8885 mp = vnode_mount(vp);
8886
8887 vnode_lock(vp);
8888 rp = vp->v_resolve;
8889 vp->v_resolve = NULL;
8890 vnode_unlock(vp);
8891
8892 if ((rp->vr_flags & VNT_EXTERNAL) != 0) {
8893 vnode_rele_ext(vp, O_EVTONLY, 1);
8894 }
8895
8896 vnode_resolver_release(rp);
8897
8898 /* Keep count of active trigger vnodes per mount */
8899 OSAddAtomic(-1, &mp->mnt_numtriggers);
8900 }
8901
8902 __private_extern__
8903 void
8904 vnode_trigger_rearm(vnode_t vp, vfs_context_t ctx)
8905 {
8906 vnode_resolve_t rp;
8907 resolver_result_t result;
8908 enum resolver_status status;
8909 uint32_t seq;
8910
8911 if ((vp->v_resolve == NULL) ||
8912 (vp->v_resolve->vr_rearm_func == NULL) ||
8913 (vp->v_resolve->vr_flags & VNT_AUTO_REARM) == 0) {
8914 return;
8915 }
8916
8917 rp = vp->v_resolve;
8918 lck_mtx_lock(&rp->vr_lock);
8919
8920 /*
8921 * Check if VFS initiated this unmount. If so, we'll catch it after the unresolve completes.
8922 */
8923 if (rp->vr_flags & VNT_VFS_UNMOUNTED) {
8924 lck_mtx_unlock(&rp->vr_lock);
8925 return;
8926 }
8927
8928 /* Check if this vnode is already armed */
8929 if ((rp->vr_flags & VNT_RESOLVED) == 0) {
8930 lck_mtx_unlock(&rp->vr_lock);
8931 return;
8932 }
8933
8934 lck_mtx_unlock(&rp->vr_lock);
8935
8936 result = rp->vr_rearm_func(vp, 0, rp->vr_data, ctx);
8937 status = vfs_resolver_status(result);
8938 seq = vfs_resolver_sequence(result);
8939
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;
8945 }
8946 lck_mtx_unlock(&rp->vr_lock);
8947 }
8948
8949 __private_extern__
8950 int
8951 vnode_trigger_resolve(vnode_t vp, struct nameidata *ndp, vfs_context_t ctx)
8952 {
8953 vnode_resolve_t rp;
8954 enum path_operation op;
8955 resolver_result_t result;
8956 enum resolver_status status;
8957 uint32_t seq;
8958
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)) {
8963 return (0);
8964 }
8965
8966 rp = vp->v_resolve;
8967 lck_mtx_lock(&rp->vr_lock);
8968
8969 /* Check if this vnode is already resolved */
8970 if (rp->vr_flags & VNT_RESOLVED) {
8971 lck_mtx_unlock(&rp->vr_lock);
8972 return (0);
8973 }
8974
8975 lck_mtx_unlock(&rp->vr_lock);
8976
8977 /*
8978 * XXX
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
8982 *
8983 * XXX - should we call this on a separate thread with a timeout?
8984 *
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
8987 */
8988 op = (ndp->ni_op < OP_MAXOP) ? ndp->ni_op: OP_LOOKUP;
8989
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);
8993
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;
8999 }
9000 lck_mtx_unlock(&rp->vr_lock);
9001
9002 /* On resolver errors, propagate the error back up */
9003 return (status == RESOLVER_ERROR ? vfs_resolver_auxiliary(result) : 0);
9004 }
9005
9006 static int
9007 vnode_trigger_unresolve(vnode_t vp, int flags, vfs_context_t ctx)
9008 {
9009 vnode_resolve_t rp;
9010 resolver_result_t result;
9011 enum resolver_status status;
9012 uint32_t seq;
9013
9014 if ((vp->v_resolve == NULL) || (vp->v_resolve->vr_unresolve_func == NULL)) {
9015 return (0);
9016 }
9017
9018 rp = vp->v_resolve;
9019 lck_mtx_lock(&rp->vr_lock);
9020
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);
9025 return (0);
9026 }
9027
9028 rp->vr_flags |= VNT_VFS_UNMOUNTED;
9029
9030 lck_mtx_unlock(&rp->vr_lock);
9031
9032 /*
9033 * XXX
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
9036 *
9037 * XXX - should we call this on a separate thread with a timeout?
9038 */
9039
9040 result = rp->vr_unresolve_func(vp, flags, rp->vr_data, ctx);
9041 status = vfs_resolver_status(result);
9042 seq = vfs_resolver_sequence(result);
9043
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;
9049 }
9050 rp->vr_flags &= ~VNT_VFS_UNMOUNTED;
9051 lck_mtx_unlock(&rp->vr_lock);
9052
9053 /* On resolver errors, propagate the error back up */
9054 return (status == RESOLVER_ERROR ? vfs_resolver_auxiliary(result) : 0);
9055 }
9056
9057 static int
9058 triggerisdescendant(mount_t mp, mount_t rmp)
9059 {
9060 int match = FALSE;
9061
9062 /*
9063 * walk up vnode covered chain looking for a match
9064 */
9065 name_cache_lock_shared();
9066
9067 while (1) {
9068 vnode_t vp;
9069
9070 /* did we encounter "/" ? */
9071 if (mp->mnt_flag & MNT_ROOTFS)
9072 break;
9073
9074 vp = mp->mnt_vnodecovered;
9075 if (vp == NULLVP)
9076 break;
9077
9078 mp = vp->v_mount;
9079 if (mp == rmp) {
9080 match = TRUE;
9081 break;
9082 }
9083 }
9084
9085 name_cache_unlock();
9086
9087 return (match);
9088 }
9089
9090 struct trigger_unmount_info {
9091 vfs_context_t ctx;
9092 mount_t top_mp;
9093 vnode_t trigger_vp;
9094 mount_t trigger_mp;
9095 uint32_t trigger_vid;
9096 int flags;
9097 };
9098
9099 static int
9100 trigger_unmount_callback(mount_t mp, void * arg)
9101 {
9102 struct trigger_unmount_info * infop = (struct trigger_unmount_info *)arg;
9103 boolean_t mountedtrigger = FALSE;
9104
9105 /*
9106 * When we encounter the top level mount we're done
9107 */
9108 if (mp == infop->top_mp)
9109 return (VFS_RETURNED_DONE);
9110
9111 if ((mp->mnt_vnodecovered == NULL) ||
9112 (vnode_getwithref(mp->mnt_vnodecovered) != 0)) {
9113 return (VFS_RETURNED);
9114 }
9115
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;
9120 }
9121 vnode_put(mp->mnt_vnodecovered);
9122
9123 /*
9124 * When we encounter a mounted trigger, check if its under the top level mount
9125 */
9126 if ( !mountedtrigger || !triggerisdescendant(mp, infop->top_mp) )
9127 return (VFS_RETURNED);
9128
9129 /*
9130 * Process any pending nested mount (now that its not referenced)
9131 */
9132 if ((infop->trigger_vp != NULLVP) &&
9133 (vnode_getwithvid(infop->trigger_vp, infop->trigger_vid) == 0)) {
9134 vnode_t vp = infop->trigger_vp;
9135 int error;
9136
9137 infop->trigger_vp = NULLVP;
9138
9139 if (mp == vp->v_mountedhere) {
9140 vnode_put(vp);
9141 printf("trigger_unmount_callback: unexpected match '%s'\n",
9142 mp->mnt_vfsstat.f_mntonname);
9143 return (VFS_RETURNED);
9144 }
9145 if (infop->trigger_mp != vp->v_mountedhere) {
9146 vnode_put(vp);
9147 printf("trigger_unmount_callback: trigger mnt changed! (%p != %p)\n",
9148 infop->trigger_mp, vp->v_mountedhere);
9149 goto savenext;
9150 }
9151
9152 error = vnode_trigger_unresolve(vp, infop->flags, infop->ctx);
9153 vnode_put(vp);
9154 if (error) {
9155 printf("unresolving: '%s', err %d\n",
9156 vp->v_mountedhere ? vp->v_mountedhere->mnt_vfsstat.f_mntonname :
9157 "???", error);
9158 return (VFS_RETURNED_DONE); /* stop iteration on errors */
9159 }
9160 }
9161 savenext:
9162 /*
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
9165 */
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;
9172 }
9173 vnode_put(infop->trigger_vp);
9174 }
9175
9176 return (VFS_RETURNED);
9177 }
9178
9179 /*
9180 * Attempt to unmount any trigger mounts nested underneath a mount.
9181 * This is a best effort attempt and no retries are performed here.
9182 *
9183 * Note: mp->mnt_rwlock is held exclusively on entry (so be carefull)
9184 */
9185 __private_extern__
9186 void
9187 vfs_nested_trigger_unmounts(mount_t mp, int flags, vfs_context_t ctx)
9188 {
9189 struct trigger_unmount_info info;
9190
9191 /* Must have trigger vnodes */
9192 if (mp->mnt_numtriggers == 0) {
9193 return;
9194 }
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;
9199
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)) {
9203 recursive = TRUE;
9204 }
9205 vnode_put(mp->mnt_vnodecovered);
9206 if (recursive)
9207 return;
9208 }
9209
9210 /*
9211 * Attempt to unmount any nested trigger mounts (best effort)
9212 */
9213 info.ctx = ctx;
9214 info.top_mp = mp;
9215 info.trigger_vp = NULLVP;
9216 info.trigger_vid = 0;
9217 info.trigger_mp = NULL;
9218 info.flags = flags;
9219
9220 (void) vfs_iterate(VFS_ITERATE_TAIL_FIRST, trigger_unmount_callback, &info);
9221
9222 /*
9223 * Process remaining nested mount (now that its not referenced)
9224 */
9225 if ((info.trigger_vp != NULLVP) &&
9226 (vnode_getwithvid(info.trigger_vp, info.trigger_vid) == 0)) {
9227 vnode_t vp = info.trigger_vp;
9228
9229 if (info.trigger_mp == vp->v_mountedhere) {
9230 (void) vnode_trigger_unresolve(vp, flags, ctx);
9231 }
9232 vnode_put(vp);
9233 }
9234 }
9235
9236 int
9237 vfs_addtrigger(mount_t mp, const char *relpath, struct vnode_trigger_info *vtip, vfs_context_t ctx)
9238 {
9239 struct nameidata nd;
9240 int res;
9241 vnode_t rvp, vp;
9242 struct vnode_trigger_param vtp;
9243
9244 /*
9245 * Must be called for trigger callback, wherein rwlock is held
9246 */
9247 lck_rw_assert(&mp->mnt_rwlock, LCK_RW_ASSERT_HELD);
9248
9249 TRIG_LOG("Adding trigger at %s\n", relpath);
9250 TRIG_LOG("Trying VFS_ROOT\n");
9251
9252 /*
9253 * We do a lookup starting at the root of the mountpoint, unwilling
9254 * to cross into other mountpoints.
9255 */
9256 res = VFS_ROOT(mp, &rvp, ctx);
9257 if (res != 0) {
9258 goto out;
9259 }
9260
9261 TRIG_LOG("Trying namei\n");
9262
9263 NDINIT(&nd, LOOKUP, OP_LOOKUP, USEDVP | NOCROSSMOUNT | FOLLOW, UIO_SYSSPACE,
9264 CAST_USER_ADDR_T(relpath), ctx);
9265 nd.ni_dvp = rvp;
9266 res = namei(&nd);
9267 if (res != 0) {
9268 vnode_put(rvp);
9269 goto out;
9270 }
9271
9272 vp = nd.ni_vp;
9273 nameidone(&nd);
9274 vnode_put(rvp);
9275
9276 TRIG_LOG("Trying vnode_resolver_create()\n");
9277
9278 /*
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.
9283 */
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;
9292
9293 res = vnode_resolver_create(mp, vp, &vtp, TRUE);
9294 vnode_put(vp);
9295 out:
9296 TRIG_LOG("Returning %d\n", res);
9297 return res;
9298 }
9299
9300 #endif /* CONFIG_TRIGGERS */