]> git.saurik.com Git - apple/xnu.git/blob - bsd/vfs/vfs_subr.c
xnu-2050.22.13.tar.gz
[apple/xnu.git] / bsd / vfs / vfs_subr.c
1 /*
2 * Copyright (c) 2000-2012 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
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
172 /* XXX next protptype should be from <nfs/nfs.h> */
173 extern int nfs_vinvalbuf(vnode_t, int, vfs_context_t, int);
174
175 /* XXX next prototytype should be from libsa/stdlib.h> but conflicts libkern */
176 __private_extern__ void qsort(
177 void * array,
178 size_t nmembers,
179 size_t member_size,
180 int (*)(const void *, const void *));
181
182 extern kern_return_t adjust_vm_object_cache(vm_size_t oval, vm_size_t nval);
183 __private_extern__ void vntblinit(void);
184 __private_extern__ kern_return_t reset_vmobjectcache(unsigned int val1,
185 unsigned int val2);
186 __private_extern__ int unlink1(vfs_context_t, struct nameidata *, int);
187
188 extern int system_inshutdown;
189
190 static void vnode_list_add(vnode_t);
191 static void vnode_async_list_add(vnode_t);
192 static void vnode_list_remove(vnode_t);
193 static void vnode_list_remove_locked(vnode_t);
194
195 static void vnode_abort_advlocks(vnode_t);
196 static errno_t vnode_drain(vnode_t);
197 static void vgone(vnode_t, int flags);
198 static void vclean(vnode_t vp, int flag);
199 static void vnode_reclaim_internal(vnode_t, int, int, int);
200
201 static void vnode_dropiocount (vnode_t);
202
203 static vnode_t checkalias(vnode_t vp, dev_t nvp_rdev);
204 static int vnode_reload(vnode_t);
205 static int vnode_isinuse_locked(vnode_t, int, int);
206
207 static void insmntque(vnode_t vp, mount_t mp);
208 static int mount_getvfscnt(void);
209 static int mount_fillfsids(fsid_t *, int );
210 static void vnode_iterate_setup(mount_t);
211 int vnode_umount_preflight(mount_t, vnode_t, int);
212 static int vnode_iterate_prepare(mount_t);
213 static int vnode_iterate_reloadq(mount_t);
214 static void vnode_iterate_clear(mount_t);
215 static mount_t vfs_getvfs_locked(fsid_t *);
216 static int vn_create_reg(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp,
217 struct vnode_attr *vap, uint32_t flags, int fmode, uint32_t *statusp, vfs_context_t ctx);
218 static int vnode_authattr_new_internal(vnode_t dvp, struct vnode_attr *vap, int noauth, uint32_t *defaulted_fieldsp, vfs_context_t ctx);
219
220 errno_t rmdir_remove_orphaned_appleDouble(vnode_t, vfs_context_t, int *);
221
222 #ifdef JOE_DEBUG
223 static void record_vp(vnode_t vp, int count);
224 #endif
225
226 #if CONFIG_TRIGGERS
227 static int vnode_resolver_create(mount_t, vnode_t, struct vnode_trigger_param *, boolean_t external);
228 static void vnode_resolver_detach(vnode_t);
229 #endif
230
231 TAILQ_HEAD(freelst, vnode) vnode_free_list; /* vnode free list */
232 TAILQ_HEAD(deadlst, vnode) vnode_dead_list; /* vnode dead list */
233 TAILQ_HEAD(async_work_lst, vnode) vnode_async_work_list;
234
235
236 TAILQ_HEAD(ragelst, vnode) vnode_rage_list; /* vnode rapid age list */
237 struct timeval rage_tv;
238 int rage_limit = 0;
239 int ragevnodes = 0;
240
241 #define RAGE_LIMIT_MIN 100
242 #define RAGE_TIME_LIMIT 5
243
244 struct mntlist mountlist; /* mounted filesystem list */
245 static int nummounts = 0;
246
247 #if DIAGNOSTIC
248 #define VLISTCHECK(fun, vp, list) \
249 if ((vp)->v_freelist.tqe_prev == (struct vnode **)0xdeadb) \
250 panic("%s: %s vnode not on %slist", (fun), (list), (list));
251 #else
252 #define VLISTCHECK(fun, vp, list)
253 #endif /* DIAGNOSTIC */
254
255 #define VLISTNONE(vp) \
256 do { \
257 (vp)->v_freelist.tqe_next = (struct vnode *)0; \
258 (vp)->v_freelist.tqe_prev = (struct vnode **)0xdeadb; \
259 } while(0)
260
261 #define VONLIST(vp) \
262 ((vp)->v_freelist.tqe_prev != (struct vnode **)0xdeadb)
263
264 /* remove a vnode from free vnode list */
265 #define VREMFREE(fun, vp) \
266 do { \
267 VLISTCHECK((fun), (vp), "free"); \
268 TAILQ_REMOVE(&vnode_free_list, (vp), v_freelist); \
269 VLISTNONE((vp)); \
270 freevnodes--; \
271 } while(0)
272
273
274 /* remove a vnode from dead vnode list */
275 #define VREMDEAD(fun, vp) \
276 do { \
277 VLISTCHECK((fun), (vp), "dead"); \
278 TAILQ_REMOVE(&vnode_dead_list, (vp), v_freelist); \
279 VLISTNONE((vp)); \
280 vp->v_listflag &= ~VLIST_DEAD; \
281 deadvnodes--; \
282 } while(0)
283
284
285 /* remove a vnode from async work vnode list */
286 #define VREMASYNC_WORK(fun, vp) \
287 do { \
288 VLISTCHECK((fun), (vp), "async_work"); \
289 TAILQ_REMOVE(&vnode_async_work_list, (vp), v_freelist); \
290 VLISTNONE((vp)); \
291 vp->v_listflag &= ~VLIST_ASYNC_WORK; \
292 async_work_vnodes--; \
293 } while(0)
294
295
296 /* remove a vnode from rage vnode list */
297 #define VREMRAGE(fun, vp) \
298 do { \
299 if ( !(vp->v_listflag & VLIST_RAGE)) \
300 panic("VREMRAGE: vp not on rage list"); \
301 VLISTCHECK((fun), (vp), "rage"); \
302 TAILQ_REMOVE(&vnode_rage_list, (vp), v_freelist); \
303 VLISTNONE((vp)); \
304 vp->v_listflag &= ~VLIST_RAGE; \
305 ragevnodes--; \
306 } while(0)
307
308
309 /*
310 * vnodetarget hasn't been used in a long time, but
311 * it was exported for some reason... I'm leaving in
312 * place for now... it should be deprecated out of the
313 * exports and removed eventually.
314 */
315 u_int32_t vnodetarget; /* target for vnreclaim() */
316 #define VNODE_FREE_TARGET 20 /* Default value for vnodetarget */
317
318 /*
319 * We need quite a few vnodes on the free list to sustain the
320 * rapid stat() the compilation process does, and still benefit from the name
321 * cache. Having too few vnodes on the free list causes serious disk
322 * thrashing as we cycle through them.
323 */
324 #define VNODE_FREE_MIN CONFIG_VNODE_FREE_MIN /* freelist should have at least this many */
325
326
327 static void async_work_continue(void);
328
329 /*
330 * Initialize the vnode management data structures.
331 */
332 __private_extern__ void
333 vntblinit(void)
334 {
335 thread_t thread = THREAD_NULL;
336
337 TAILQ_INIT(&vnode_free_list);
338 TAILQ_INIT(&vnode_rage_list);
339 TAILQ_INIT(&vnode_dead_list);
340 TAILQ_INIT(&vnode_async_work_list);
341 TAILQ_INIT(&mountlist);
342
343 if (!vnodetarget)
344 vnodetarget = VNODE_FREE_TARGET;
345
346 microuptime(&rage_tv);
347 rage_limit = desiredvnodes / 100;
348
349 if (rage_limit < RAGE_LIMIT_MIN)
350 rage_limit = RAGE_LIMIT_MIN;
351
352 /*
353 * Scale the vm_object_cache to accomodate the vnodes
354 * we want to cache
355 */
356 (void) adjust_vm_object_cache(0, desiredvnodes - VNODE_FREE_MIN);
357
358 /*
359 * create worker threads
360 */
361 kernel_thread_start((thread_continue_t)async_work_continue, NULL, &thread);
362 thread_deallocate(thread);
363 }
364
365 /* Reset the VM Object Cache with the values passed in */
366 __private_extern__ kern_return_t
367 reset_vmobjectcache(unsigned int val1, unsigned int val2)
368 {
369 vm_size_t oval = val1 - VNODE_FREE_MIN;
370 vm_size_t nval;
371
372 if (val1 == val2) {
373 return KERN_SUCCESS;
374 }
375
376 if(val2 < VNODE_FREE_MIN)
377 nval = 0;
378 else
379 nval = val2 - VNODE_FREE_MIN;
380
381 return(adjust_vm_object_cache(oval, nval));
382 }
383
384
385 /* the timeout is in 10 msecs */
386 int
387 vnode_waitforwrites(vnode_t vp, int output_target, int slpflag, int slptimeout, const char *msg) {
388 int error = 0;
389 struct timespec ts;
390
391 KERNEL_DEBUG(0x3010280 | DBG_FUNC_START, (int)vp, output_target, vp->v_numoutput, 0, 0);
392
393 if (vp->v_numoutput > output_target) {
394
395 slpflag |= PDROP;
396
397 vnode_lock_spin(vp);
398
399 while ((vp->v_numoutput > output_target) && error == 0) {
400 if (output_target)
401 vp->v_flag |= VTHROTTLED;
402 else
403 vp->v_flag |= VBWAIT;
404
405 ts.tv_sec = (slptimeout/100);
406 ts.tv_nsec = (slptimeout % 1000) * 10 * NSEC_PER_USEC * 1000 ;
407 error = msleep((caddr_t)&vp->v_numoutput, &vp->v_lock, (slpflag | (PRIBIO + 1)), msg, &ts);
408
409 vnode_lock_spin(vp);
410 }
411 vnode_unlock(vp);
412 }
413 KERNEL_DEBUG(0x3010280 | DBG_FUNC_END, (int)vp, output_target, vp->v_numoutput, error, 0);
414
415 return error;
416 }
417
418
419 void
420 vnode_startwrite(vnode_t vp) {
421
422 OSAddAtomic(1, &vp->v_numoutput);
423 }
424
425
426 void
427 vnode_writedone(vnode_t vp)
428 {
429 if (vp) {
430 int need_wakeup = 0;
431
432 OSAddAtomic(-1, &vp->v_numoutput);
433
434 vnode_lock_spin(vp);
435
436 if (vp->v_numoutput < 0)
437 panic("vnode_writedone: numoutput < 0");
438
439 if ((vp->v_flag & VTHROTTLED)) {
440 vp->v_flag &= ~VTHROTTLED;
441 need_wakeup = 1;
442 }
443 if ((vp->v_flag & VBWAIT) && (vp->v_numoutput == 0)) {
444 vp->v_flag &= ~VBWAIT;
445 need_wakeup = 1;
446 }
447 vnode_unlock(vp);
448
449 if (need_wakeup)
450 wakeup((caddr_t)&vp->v_numoutput);
451 }
452 }
453
454
455
456 int
457 vnode_hasdirtyblks(vnode_t vp)
458 {
459 struct cl_writebehind *wbp;
460
461 /*
462 * Not taking the buf_mtxp as there is little
463 * point doing it. Even if the lock is taken the
464 * state can change right after that. If their
465 * needs to be a synchronization, it must be driven
466 * by the caller
467 */
468 if (vp->v_dirtyblkhd.lh_first)
469 return (1);
470
471 if (!UBCINFOEXISTS(vp))
472 return (0);
473
474 wbp = vp->v_ubcinfo->cl_wbehind;
475
476 if (wbp && (wbp->cl_number || wbp->cl_scmap))
477 return (1);
478
479 return (0);
480 }
481
482 int
483 vnode_hascleanblks(vnode_t vp)
484 {
485 /*
486 * Not taking the buf_mtxp as there is little
487 * point doing it. Even if the lock is taken the
488 * state can change right after that. If their
489 * needs to be a synchronization, it must be driven
490 * by the caller
491 */
492 if (vp->v_cleanblkhd.lh_first)
493 return (1);
494 return (0);
495 }
496
497 void
498 vnode_iterate_setup(mount_t mp)
499 {
500 while (mp->mnt_lflag & MNT_LITER) {
501 mp->mnt_lflag |= MNT_LITERWAIT;
502 msleep((caddr_t)mp, &mp->mnt_mlock, PVFS, "vnode_iterate_setup", NULL);
503 }
504
505 mp->mnt_lflag |= MNT_LITER;
506
507 }
508
509 int
510 vnode_umount_preflight(mount_t mp, vnode_t skipvp, int flags)
511 {
512 vnode_t vp;
513
514 TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
515 /* disable preflight only for udf, a hack to be removed after 4073176 is fixed */
516 if (vp->v_tag == VT_UDF)
517 return 0;
518 if (vp->v_type == VDIR)
519 continue;
520 if (vp == skipvp)
521 continue;
522 if ((flags & SKIPSYSTEM) && ((vp->v_flag & VSYSTEM) ||
523 (vp->v_flag & VNOFLUSH)))
524 continue;
525 if ((flags & SKIPSWAP) && (vp->v_flag & VSWAP))
526 continue;
527 if ((flags & WRITECLOSE) &&
528 (vp->v_writecount == 0 || vp->v_type != VREG))
529 continue;
530 /* Look for busy vnode */
531 if (((vp->v_usecount != 0) &&
532 ((vp->v_usecount - vp->v_kusecount) != 0)))
533 return(1);
534 }
535
536 return(0);
537 }
538
539 /*
540 * This routine prepares iteration by moving all the vnodes to worker queue
541 * called with mount lock held
542 */
543 int
544 vnode_iterate_prepare(mount_t mp)
545 {
546 vnode_t vp;
547
548 if (TAILQ_EMPTY(&mp->mnt_vnodelist)) {
549 /* nothing to do */
550 return (0);
551 }
552
553 vp = TAILQ_FIRST(&mp->mnt_vnodelist);
554 vp->v_mntvnodes.tqe_prev = &(mp->mnt_workerqueue.tqh_first);
555 mp->mnt_workerqueue.tqh_first = mp->mnt_vnodelist.tqh_first;
556 mp->mnt_workerqueue.tqh_last = mp->mnt_vnodelist.tqh_last;
557
558 TAILQ_INIT(&mp->mnt_vnodelist);
559 if (mp->mnt_newvnodes.tqh_first != NULL)
560 panic("vnode_iterate_prepare: newvnode when entering vnode");
561 TAILQ_INIT(&mp->mnt_newvnodes);
562
563 return (1);
564 }
565
566
567 /* called with mount lock held */
568 int
569 vnode_iterate_reloadq(mount_t mp)
570 {
571 int moved = 0;
572
573 /* add the remaining entries in workerq to the end of mount vnode list */
574 if (!TAILQ_EMPTY(&mp->mnt_workerqueue)) {
575 struct vnode * mvp;
576 mvp = TAILQ_LAST(&mp->mnt_vnodelist, vnodelst);
577
578 /* Joining the workerque entities to mount vnode list */
579 if (mvp)
580 mvp->v_mntvnodes.tqe_next = mp->mnt_workerqueue.tqh_first;
581 else
582 mp->mnt_vnodelist.tqh_first = mp->mnt_workerqueue.tqh_first;
583 mp->mnt_workerqueue.tqh_first->v_mntvnodes.tqe_prev = mp->mnt_vnodelist.tqh_last;
584 mp->mnt_vnodelist.tqh_last = mp->mnt_workerqueue.tqh_last;
585 TAILQ_INIT(&mp->mnt_workerqueue);
586 }
587
588 /* add the newvnodes to the head of mount vnode list */
589 if (!TAILQ_EMPTY(&mp->mnt_newvnodes)) {
590 struct vnode * nlvp;
591 nlvp = TAILQ_LAST(&mp->mnt_newvnodes, vnodelst);
592
593 mp->mnt_newvnodes.tqh_first->v_mntvnodes.tqe_prev = &mp->mnt_vnodelist.tqh_first;
594 nlvp->v_mntvnodes.tqe_next = mp->mnt_vnodelist.tqh_first;
595 if(mp->mnt_vnodelist.tqh_first)
596 mp->mnt_vnodelist.tqh_first->v_mntvnodes.tqe_prev = &nlvp->v_mntvnodes.tqe_next;
597 else
598 mp->mnt_vnodelist.tqh_last = mp->mnt_newvnodes.tqh_last;
599 mp->mnt_vnodelist.tqh_first = mp->mnt_newvnodes.tqh_first;
600 TAILQ_INIT(&mp->mnt_newvnodes);
601 moved = 1;
602 }
603
604 return(moved);
605 }
606
607
608 void
609 vnode_iterate_clear(mount_t mp)
610 {
611 mp->mnt_lflag &= ~MNT_LITER;
612 if (mp->mnt_lflag & MNT_LITERWAIT) {
613 mp->mnt_lflag &= ~MNT_LITERWAIT;
614 wakeup(mp);
615 }
616 }
617
618
619 int
620 vnode_iterate(mount_t mp, int flags, int (*callout)(struct vnode *, void *),
621 void *arg)
622 {
623 struct vnode *vp;
624 int vid, retval;
625 int ret = 0;
626
627 mount_lock(mp);
628
629 vnode_iterate_setup(mp);
630
631 /* it is returns 0 then there is nothing to do */
632 retval = vnode_iterate_prepare(mp);
633
634 if (retval == 0) {
635 vnode_iterate_clear(mp);
636 mount_unlock(mp);
637 return(ret);
638 }
639
640 /* iterate over all the vnodes */
641 while (!TAILQ_EMPTY(&mp->mnt_workerqueue)) {
642 vp = TAILQ_FIRST(&mp->mnt_workerqueue);
643 TAILQ_REMOVE(&mp->mnt_workerqueue, vp, v_mntvnodes);
644 TAILQ_INSERT_TAIL(&mp->mnt_vnodelist, vp, v_mntvnodes);
645 vid = vp->v_id;
646 if ((vp->v_data == NULL) || (vp->v_type == VNON) || (vp->v_mount != mp)) {
647 continue;
648 }
649 mount_unlock(mp);
650
651 if ( vget_internal(vp, vid, (flags | VNODE_NODEAD| VNODE_WITHID | VNODE_NOSUSPEND))) {
652 mount_lock(mp);
653 continue;
654 }
655 if (flags & VNODE_RELOAD) {
656 /*
657 * we're reloading the filesystem
658 * cast out any inactive vnodes...
659 */
660 if (vnode_reload(vp)) {
661 /* vnode will be recycled on the refcount drop */
662 vnode_put(vp);
663 mount_lock(mp);
664 continue;
665 }
666 }
667
668 retval = callout(vp, arg);
669
670 switch (retval) {
671 case VNODE_RETURNED:
672 case VNODE_RETURNED_DONE:
673 vnode_put(vp);
674 if (retval == VNODE_RETURNED_DONE) {
675 mount_lock(mp);
676 ret = 0;
677 goto out;
678 }
679 break;
680
681 case VNODE_CLAIMED_DONE:
682 mount_lock(mp);
683 ret = 0;
684 goto out;
685 case VNODE_CLAIMED:
686 default:
687 break;
688 }
689 mount_lock(mp);
690 }
691
692 out:
693 (void)vnode_iterate_reloadq(mp);
694 vnode_iterate_clear(mp);
695 mount_unlock(mp);
696 return (ret);
697 }
698
699 void
700 mount_lock_renames(mount_t mp)
701 {
702 lck_mtx_lock(&mp->mnt_renamelock);
703 }
704
705 void
706 mount_unlock_renames(mount_t mp)
707 {
708 lck_mtx_unlock(&mp->mnt_renamelock);
709 }
710
711 void
712 mount_lock(mount_t mp)
713 {
714 lck_mtx_lock(&mp->mnt_mlock);
715 }
716
717 void
718 mount_lock_spin(mount_t mp)
719 {
720 lck_mtx_lock_spin(&mp->mnt_mlock);
721 }
722
723 void
724 mount_unlock(mount_t mp)
725 {
726 lck_mtx_unlock(&mp->mnt_mlock);
727 }
728
729
730 void
731 mount_ref(mount_t mp, int locked)
732 {
733 if ( !locked)
734 mount_lock_spin(mp);
735
736 mp->mnt_count++;
737
738 if ( !locked)
739 mount_unlock(mp);
740 }
741
742
743 void
744 mount_drop(mount_t mp, int locked)
745 {
746 if ( !locked)
747 mount_lock_spin(mp);
748
749 mp->mnt_count--;
750
751 if (mp->mnt_count == 0 && (mp->mnt_lflag & MNT_LDRAIN))
752 wakeup(&mp->mnt_lflag);
753
754 if ( !locked)
755 mount_unlock(mp);
756 }
757
758
759 int
760 mount_iterref(mount_t mp, int locked)
761 {
762 int retval = 0;
763
764 if (!locked)
765 mount_list_lock();
766 if (mp->mnt_iterref < 0) {
767 retval = 1;
768 } else {
769 mp->mnt_iterref++;
770 }
771 if (!locked)
772 mount_list_unlock();
773 return(retval);
774 }
775
776 int
777 mount_isdrained(mount_t mp, int locked)
778 {
779 int retval;
780
781 if (!locked)
782 mount_list_lock();
783 if (mp->mnt_iterref < 0)
784 retval = 1;
785 else
786 retval = 0;
787 if (!locked)
788 mount_list_unlock();
789 return(retval);
790 }
791
792 void
793 mount_iterdrop(mount_t mp)
794 {
795 mount_list_lock();
796 mp->mnt_iterref--;
797 wakeup(&mp->mnt_iterref);
798 mount_list_unlock();
799 }
800
801 void
802 mount_iterdrain(mount_t mp)
803 {
804 mount_list_lock();
805 while (mp->mnt_iterref)
806 msleep((caddr_t)&mp->mnt_iterref, mnt_list_mtx_lock, PVFS, "mount_iterdrain", NULL);
807 /* mount iterations drained */
808 mp->mnt_iterref = -1;
809 mount_list_unlock();
810 }
811 void
812 mount_iterreset(mount_t mp)
813 {
814 mount_list_lock();
815 if (mp->mnt_iterref == -1)
816 mp->mnt_iterref = 0;
817 mount_list_unlock();
818 }
819
820 /* always called with mount lock held */
821 int
822 mount_refdrain(mount_t mp)
823 {
824 if (mp->mnt_lflag & MNT_LDRAIN)
825 panic("already in drain");
826 mp->mnt_lflag |= MNT_LDRAIN;
827
828 while (mp->mnt_count)
829 msleep((caddr_t)&mp->mnt_lflag, &mp->mnt_mlock, PVFS, "mount_drain", NULL);
830
831 if (mp->mnt_vnodelist.tqh_first != NULL)
832 panic("mount_refdrain: dangling vnode");
833
834 mp->mnt_lflag &= ~MNT_LDRAIN;
835
836 return(0);
837 }
838
839 /* Tags the mount point as not supportine extended readdir for NFS exports */
840 void
841 mount_set_noreaddirext(mount_t mp) {
842 mount_lock (mp);
843 mp->mnt_kern_flag |= MNTK_DENY_READDIREXT;
844 mount_unlock (mp);
845 }
846
847 /*
848 * Mark a mount point as busy. Used to synchronize access and to delay
849 * unmounting.
850 */
851 int
852 vfs_busy(mount_t mp, int flags)
853 {
854
855 restart:
856 if (mp->mnt_lflag & MNT_LDEAD)
857 return(ENOENT);
858
859 if (mp->mnt_lflag & MNT_LUNMOUNT) {
860 if (flags & LK_NOWAIT)
861 return (ENOENT);
862
863 mount_lock(mp);
864
865 if (mp->mnt_lflag & MNT_LDEAD) {
866 mount_unlock(mp);
867 return(ENOENT);
868 }
869 if (mp->mnt_lflag & MNT_LUNMOUNT) {
870 mp->mnt_lflag |= MNT_LWAIT;
871 /*
872 * Since all busy locks are shared except the exclusive
873 * lock granted when unmounting, the only place that a
874 * wakeup needs to be done is at the release of the
875 * exclusive lock at the end of dounmount.
876 */
877 msleep((caddr_t)mp, &mp->mnt_mlock, (PVFS | PDROP), "vfsbusy", NULL);
878 return (ENOENT);
879 }
880 mount_unlock(mp);
881 }
882
883 lck_rw_lock_shared(&mp->mnt_rwlock);
884
885 /*
886 * until we are granted the rwlock, it's possible for the mount point to
887 * change state, so reevaluate before granting the vfs_busy
888 */
889 if (mp->mnt_lflag & (MNT_LDEAD | MNT_LUNMOUNT)) {
890 lck_rw_done(&mp->mnt_rwlock);
891 goto restart;
892 }
893 return (0);
894 }
895
896 /*
897 * Free a busy filesystem.
898 */
899
900 void
901 vfs_unbusy(mount_t mp)
902 {
903 lck_rw_done(&mp->mnt_rwlock);
904 }
905
906
907
908 static void
909 vfs_rootmountfailed(mount_t mp) {
910
911 mount_list_lock();
912 mp->mnt_vtable->vfc_refcount--;
913 mount_list_unlock();
914
915 vfs_unbusy(mp);
916
917 mount_lock_destroy(mp);
918
919 #if CONFIG_MACF
920 mac_mount_label_destroy(mp);
921 #endif
922
923 FREE_ZONE(mp, sizeof(struct mount), M_MOUNT);
924 }
925
926 /*
927 * Lookup a filesystem type, and if found allocate and initialize
928 * a mount structure for it.
929 *
930 * Devname is usually updated by mount(8) after booting.
931 */
932 static mount_t
933 vfs_rootmountalloc_internal(struct vfstable *vfsp, const char *devname)
934 {
935 mount_t mp;
936
937 mp = _MALLOC_ZONE(sizeof(struct mount), M_MOUNT, M_WAITOK);
938 bzero((char *)mp, sizeof(struct mount));
939
940 /* Initialize the default IO constraints */
941 mp->mnt_maxreadcnt = mp->mnt_maxwritecnt = MAXPHYS;
942 mp->mnt_segreadcnt = mp->mnt_segwritecnt = 32;
943 mp->mnt_maxsegreadsize = mp->mnt_maxreadcnt;
944 mp->mnt_maxsegwritesize = mp->mnt_maxwritecnt;
945 mp->mnt_devblocksize = DEV_BSIZE;
946 mp->mnt_alignmentmask = PAGE_MASK;
947 mp->mnt_ioqueue_depth = MNT_DEFAULT_IOQUEUE_DEPTH;
948 mp->mnt_ioscale = 1;
949 mp->mnt_ioflags = 0;
950 mp->mnt_realrootvp = NULLVP;
951 mp->mnt_authcache_ttl = CACHED_LOOKUP_RIGHT_TTL;
952 mp->mnt_throttle_mask = LOWPRI_MAX_NUM_DEV - 1;
953 mp->mnt_devbsdunit = 0;
954
955 mount_lock_init(mp);
956 (void)vfs_busy(mp, LK_NOWAIT);
957
958 TAILQ_INIT(&mp->mnt_vnodelist);
959 TAILQ_INIT(&mp->mnt_workerqueue);
960 TAILQ_INIT(&mp->mnt_newvnodes);
961
962 mp->mnt_vtable = vfsp;
963 mp->mnt_op = vfsp->vfc_vfsops;
964 mp->mnt_flag = MNT_RDONLY | MNT_ROOTFS;
965 mp->mnt_vnodecovered = NULLVP;
966 //mp->mnt_stat.f_type = vfsp->vfc_typenum;
967 mp->mnt_flag |= vfsp->vfc_flags & MNT_VISFLAGMASK;
968
969 mount_list_lock();
970 vfsp->vfc_refcount++;
971 mount_list_unlock();
972
973 strncpy(mp->mnt_vfsstat.f_fstypename, vfsp->vfc_name, MFSTYPENAMELEN);
974 mp->mnt_vfsstat.f_mntonname[0] = '/';
975 /* XXX const poisoning layering violation */
976 (void) copystr((const void *)devname, mp->mnt_vfsstat.f_mntfromname, MAXPATHLEN - 1, NULL);
977
978 #if CONFIG_MACF
979 mac_mount_label_init(mp);
980 mac_mount_label_associate(vfs_context_kernel(), mp);
981 #endif
982 return (mp);
983 }
984
985 errno_t
986 vfs_rootmountalloc(const char *fstypename, const char *devname, mount_t *mpp)
987 {
988 struct vfstable *vfsp;
989
990 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
991 if (!strncmp(vfsp->vfc_name, fstypename,
992 sizeof(vfsp->vfc_name)))
993 break;
994 if (vfsp == NULL)
995 return (ENODEV);
996
997 *mpp = vfs_rootmountalloc_internal(vfsp, devname);
998
999 if (*mpp)
1000 return (0);
1001
1002 return (ENOMEM);
1003 }
1004
1005
1006 /*
1007 * Find an appropriate filesystem to use for the root. If a filesystem
1008 * has not been preselected, walk through the list of known filesystems
1009 * trying those that have mountroot routines, and try them until one
1010 * works or we have tried them all.
1011 */
1012 extern int (*mountroot)(void);
1013
1014 int
1015 vfs_mountroot(void)
1016 {
1017 #if CONFIG_MACF
1018 struct vnode *vp;
1019 #endif
1020 struct vfstable *vfsp;
1021 vfs_context_t ctx = vfs_context_kernel();
1022 struct vfs_attr vfsattr;
1023 int error;
1024 mount_t mp;
1025 vnode_t bdevvp_rootvp;
1026
1027 if (mountroot != NULL) {
1028 /*
1029 * used for netboot which follows a different set of rules
1030 */
1031 error = (*mountroot)();
1032 return (error);
1033 }
1034 if ((error = bdevvp(rootdev, &rootvp))) {
1035 printf("vfs_mountroot: can't setup bdevvp\n");
1036 return (error);
1037 }
1038 /*
1039 * 4951998 - code we call in vfc_mountroot may replace rootvp
1040 * so keep a local copy for some house keeping.
1041 */
1042 bdevvp_rootvp = rootvp;
1043
1044 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
1045 if (vfsp->vfc_mountroot == NULL)
1046 continue;
1047
1048 mp = vfs_rootmountalloc_internal(vfsp, "root_device");
1049 mp->mnt_devvp = rootvp;
1050
1051 if ((error = (*vfsp->vfc_mountroot)(mp, rootvp, ctx)) == 0) {
1052 if ( bdevvp_rootvp != rootvp ) {
1053 /*
1054 * rootvp changed...
1055 * bump the iocount and fix up mnt_devvp for the
1056 * new rootvp (it will already have a usecount taken)...
1057 * drop the iocount and the usecount on the orignal
1058 * since we are no longer going to use it...
1059 */
1060 vnode_getwithref(rootvp);
1061 mp->mnt_devvp = rootvp;
1062
1063 vnode_rele(bdevvp_rootvp);
1064 vnode_put(bdevvp_rootvp);
1065 }
1066 mp->mnt_devvp->v_specflags |= SI_MOUNTEDON;
1067
1068 vfs_unbusy(mp);
1069
1070 mount_list_add(mp);
1071
1072 /*
1073 * cache the IO attributes for the underlying physical media...
1074 * an error return indicates the underlying driver doesn't
1075 * support all the queries necessary... however, reasonable
1076 * defaults will have been set, so no reason to bail or care
1077 */
1078 vfs_init_io_attributes(rootvp, mp);
1079
1080 /*
1081 * Shadow the VFC_VFSNATIVEXATTR flag to MNTK_EXTENDED_ATTRS.
1082 */
1083 if (mp->mnt_vtable->vfc_vfsflags & VFC_VFSNATIVEXATTR) {
1084 mp->mnt_kern_flag |= MNTK_EXTENDED_ATTRS;
1085 }
1086 if (mp->mnt_vtable->vfc_vfsflags & VFC_VFSPREFLIGHT) {
1087 mp->mnt_kern_flag |= MNTK_UNMOUNT_PREFLIGHT;
1088 }
1089
1090 /*
1091 * Probe root file system for additional features.
1092 */
1093 (void)VFS_START(mp, 0, ctx);
1094
1095 VFSATTR_INIT(&vfsattr);
1096 VFSATTR_WANTED(&vfsattr, f_capabilities);
1097 if (vfs_getattr(mp, &vfsattr, ctx) == 0 &&
1098 VFSATTR_IS_SUPPORTED(&vfsattr, f_capabilities)) {
1099 if ((vfsattr.f_capabilities.capabilities[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_EXTENDED_ATTR) &&
1100 (vfsattr.f_capabilities.valid[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_EXTENDED_ATTR)) {
1101 mp->mnt_kern_flag |= MNTK_EXTENDED_ATTRS;
1102 }
1103 #if NAMEDSTREAMS
1104 if ((vfsattr.f_capabilities.capabilities[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_NAMEDSTREAMS) &&
1105 (vfsattr.f_capabilities.valid[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_NAMEDSTREAMS)) {
1106 mp->mnt_kern_flag |= MNTK_NAMED_STREAMS;
1107 }
1108 #endif
1109 if ((vfsattr.f_capabilities.capabilities[VOL_CAPABILITIES_FORMAT] & VOL_CAP_FMT_PATH_FROM_ID) &&
1110 (vfsattr.f_capabilities.valid[VOL_CAPABILITIES_FORMAT] & VOL_CAP_FMT_PATH_FROM_ID)) {
1111 mp->mnt_kern_flag |= MNTK_PATH_FROM_ID;
1112 }
1113 }
1114
1115 /*
1116 * get rid of iocount reference returned
1117 * by bdevvp (or picked up by us on the substitued
1118 * rootvp)... it (or we) will have also taken
1119 * a usecount reference which we want to keep
1120 */
1121 vnode_put(rootvp);
1122
1123 #if CONFIG_MACF
1124 if ((vfs_flags(mp) & MNT_MULTILABEL) == 0)
1125 return (0);
1126
1127 error = VFS_ROOT(mp, &vp, ctx);
1128 if (error) {
1129 printf("%s() VFS_ROOT() returned %d\n",
1130 __func__, error);
1131 dounmount(mp, MNT_FORCE, 0, ctx);
1132 goto fail;
1133 }
1134 error = vnode_label(mp, NULL, vp, NULL, 0, ctx);
1135 /*
1136 * get rid of reference provided by VFS_ROOT
1137 */
1138 vnode_put(vp);
1139
1140 if (error) {
1141 printf("%s() vnode_label() returned %d\n",
1142 __func__, error);
1143 dounmount(mp, MNT_FORCE, 0, ctx);
1144 goto fail;
1145 }
1146 #endif
1147 return (0);
1148 }
1149 #if CONFIG_MACF
1150 fail:
1151 #endif
1152 vfs_rootmountfailed(mp);
1153
1154 if (error != EINVAL)
1155 printf("%s_mountroot failed: %d\n", vfsp->vfc_name, error);
1156 }
1157 return (ENODEV);
1158 }
1159
1160 /*
1161 * Lookup a mount point by filesystem identifier.
1162 */
1163
1164 struct mount *
1165 vfs_getvfs(fsid_t *fsid)
1166 {
1167 return (mount_list_lookupby_fsid(fsid, 0, 0));
1168 }
1169
1170 static struct mount *
1171 vfs_getvfs_locked(fsid_t *fsid)
1172 {
1173 return(mount_list_lookupby_fsid(fsid, 1, 0));
1174 }
1175
1176 struct mount *
1177 vfs_getvfs_by_mntonname(char *path)
1178 {
1179 mount_t retmp = (mount_t)0;
1180 mount_t mp;
1181
1182 mount_list_lock();
1183 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
1184 if (!strncmp(mp->mnt_vfsstat.f_mntonname, path,
1185 sizeof(mp->mnt_vfsstat.f_mntonname))) {
1186 retmp = mp;
1187 if (mount_iterref(retmp, 1))
1188 retmp = NULL;
1189 goto out;
1190 }
1191 }
1192 out:
1193 mount_list_unlock();
1194 return (retmp);
1195 }
1196
1197 /* generation number for creation of new fsids */
1198 u_short mntid_gen = 0;
1199 /*
1200 * Get a new unique fsid
1201 */
1202 void
1203 vfs_getnewfsid(struct mount *mp)
1204 {
1205
1206 fsid_t tfsid;
1207 int mtype;
1208 mount_t nmp;
1209
1210 mount_list_lock();
1211
1212 /* generate a new fsid */
1213 mtype = mp->mnt_vtable->vfc_typenum;
1214 if (++mntid_gen == 0)
1215 mntid_gen++;
1216 tfsid.val[0] = makedev(nblkdev + mtype, mntid_gen);
1217 tfsid.val[1] = mtype;
1218
1219 TAILQ_FOREACH(nmp, &mountlist, mnt_list) {
1220 while (vfs_getvfs_locked(&tfsid)) {
1221 if (++mntid_gen == 0)
1222 mntid_gen++;
1223 tfsid.val[0] = makedev(nblkdev + mtype, mntid_gen);
1224 }
1225 }
1226 mp->mnt_vfsstat.f_fsid.val[0] = tfsid.val[0];
1227 mp->mnt_vfsstat.f_fsid.val[1] = tfsid.val[1];
1228 mount_list_unlock();
1229 }
1230
1231 /*
1232 * Routines having to do with the management of the vnode table.
1233 */
1234 extern int (**dead_vnodeop_p)(void *);
1235 long numvnodes, freevnodes, deadvnodes, async_work_vnodes;
1236
1237
1238 int async_work_timed_out = 0;
1239 int async_work_handled = 0;
1240 int dead_vnode_wanted = 0;
1241 int dead_vnode_waited = 0;
1242
1243 /*
1244 * Move a vnode from one mount queue to another.
1245 */
1246 static void
1247 insmntque(vnode_t vp, mount_t mp)
1248 {
1249 mount_t lmp;
1250 /*
1251 * Delete from old mount point vnode list, if on one.
1252 */
1253 if ( (lmp = vp->v_mount) != NULL && lmp != dead_mountp) {
1254 if ((vp->v_lflag & VNAMED_MOUNT) == 0)
1255 panic("insmntque: vp not in mount vnode list");
1256 vp->v_lflag &= ~VNAMED_MOUNT;
1257
1258 mount_lock_spin(lmp);
1259
1260 mount_drop(lmp, 1);
1261
1262 if (vp->v_mntvnodes.tqe_next == NULL) {
1263 if (TAILQ_LAST(&lmp->mnt_vnodelist, vnodelst) == vp)
1264 TAILQ_REMOVE(&lmp->mnt_vnodelist, vp, v_mntvnodes);
1265 else if (TAILQ_LAST(&lmp->mnt_newvnodes, vnodelst) == vp)
1266 TAILQ_REMOVE(&lmp->mnt_newvnodes, vp, v_mntvnodes);
1267 else if (TAILQ_LAST(&lmp->mnt_workerqueue, vnodelst) == vp)
1268 TAILQ_REMOVE(&lmp->mnt_workerqueue, vp, v_mntvnodes);
1269 } else {
1270 vp->v_mntvnodes.tqe_next->v_mntvnodes.tqe_prev = vp->v_mntvnodes.tqe_prev;
1271 *vp->v_mntvnodes.tqe_prev = vp->v_mntvnodes.tqe_next;
1272 }
1273 vp->v_mntvnodes.tqe_next = NULL;
1274 vp->v_mntvnodes.tqe_prev = NULL;
1275 mount_unlock(lmp);
1276 return;
1277 }
1278
1279 /*
1280 * Insert into list of vnodes for the new mount point, if available.
1281 */
1282 if ((vp->v_mount = mp) != NULL) {
1283 mount_lock_spin(mp);
1284 if ((vp->v_mntvnodes.tqe_next != 0) && (vp->v_mntvnodes.tqe_prev != 0))
1285 panic("vp already in mount list");
1286 if (mp->mnt_lflag & MNT_LITER)
1287 TAILQ_INSERT_HEAD(&mp->mnt_newvnodes, vp, v_mntvnodes);
1288 else
1289 TAILQ_INSERT_HEAD(&mp->mnt_vnodelist, vp, v_mntvnodes);
1290 if (vp->v_lflag & VNAMED_MOUNT)
1291 panic("insmntque: vp already in mount vnode list");
1292 vp->v_lflag |= VNAMED_MOUNT;
1293 mount_ref(mp, 1);
1294 mount_unlock(mp);
1295 }
1296 }
1297
1298
1299 /*
1300 * Create a vnode for a block device.
1301 * Used for root filesystem, argdev, and swap areas.
1302 * Also used for memory file system special devices.
1303 */
1304 int
1305 bdevvp(dev_t dev, vnode_t *vpp)
1306 {
1307 vnode_t nvp;
1308 int error;
1309 struct vnode_fsparam vfsp;
1310 struct vfs_context context;
1311
1312 if (dev == NODEV) {
1313 *vpp = NULLVP;
1314 return (ENODEV);
1315 }
1316
1317 context.vc_thread = current_thread();
1318 context.vc_ucred = FSCRED;
1319
1320 vfsp.vnfs_mp = (struct mount *)0;
1321 vfsp.vnfs_vtype = VBLK;
1322 vfsp.vnfs_str = "bdevvp";
1323 vfsp.vnfs_dvp = NULL;
1324 vfsp.vnfs_fsnode = NULL;
1325 vfsp.vnfs_cnp = NULL;
1326 vfsp.vnfs_vops = spec_vnodeop_p;
1327 vfsp.vnfs_rdev = dev;
1328 vfsp.vnfs_filesize = 0;
1329
1330 vfsp.vnfs_flags = VNFS_NOCACHE | VNFS_CANTCACHE;
1331
1332 vfsp.vnfs_marksystem = 0;
1333 vfsp.vnfs_markroot = 0;
1334
1335 if ( (error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &vfsp, &nvp)) ) {
1336 *vpp = NULLVP;
1337 return (error);
1338 }
1339 vnode_lock_spin(nvp);
1340 nvp->v_flag |= VBDEVVP;
1341 nvp->v_tag = VT_NON; /* set this to VT_NON so during aliasing it can be replaced */
1342 vnode_unlock(nvp);
1343 if ( (error = vnode_ref(nvp)) ) {
1344 panic("bdevvp failed: vnode_ref");
1345 return (error);
1346 }
1347 if ( (error = VNOP_FSYNC(nvp, MNT_WAIT, &context)) ) {
1348 panic("bdevvp failed: fsync");
1349 return (error);
1350 }
1351 if ( (error = buf_invalidateblks(nvp, BUF_WRITE_DATA, 0, 0)) ) {
1352 panic("bdevvp failed: invalidateblks");
1353 return (error);
1354 }
1355
1356 #if CONFIG_MACF
1357 /*
1358 * XXXMAC: We can't put a MAC check here, the system will
1359 * panic without this vnode.
1360 */
1361 #endif /* MAC */
1362
1363 if ( (error = VNOP_OPEN(nvp, FREAD, &context)) ) {
1364 panic("bdevvp failed: open");
1365 return (error);
1366 }
1367 *vpp = nvp;
1368
1369 return (0);
1370 }
1371
1372 /*
1373 * Check to see if the new vnode represents a special device
1374 * for which we already have a vnode (either because of
1375 * bdevvp() or because of a different vnode representing
1376 * the same block device). If such an alias exists, deallocate
1377 * the existing contents and return the aliased vnode. The
1378 * caller is responsible for filling it with its new contents.
1379 */
1380 static vnode_t
1381 checkalias(struct vnode *nvp, dev_t nvp_rdev)
1382 {
1383 struct vnode *vp;
1384 struct vnode **vpp;
1385 struct specinfo *sin = NULL;
1386 int vid = 0;
1387
1388 vpp = &speclisth[SPECHASH(nvp_rdev)];
1389 loop:
1390 SPECHASH_LOCK();
1391
1392 for (vp = *vpp; vp; vp = vp->v_specnext) {
1393 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
1394 vid = vp->v_id;
1395 break;
1396 }
1397 }
1398 SPECHASH_UNLOCK();
1399
1400 if (vp) {
1401 found_alias:
1402 if (vnode_getwithvid(vp,vid)) {
1403 goto loop;
1404 }
1405 /*
1406 * Termination state is checked in vnode_getwithvid
1407 */
1408 vnode_lock(vp);
1409
1410 /*
1411 * Alias, but not in use, so flush it out.
1412 */
1413 if ((vp->v_iocount == 1) && (vp->v_usecount == 0)) {
1414 vnode_reclaim_internal(vp, 1, 1, 0);
1415 vnode_put_locked(vp);
1416 vnode_unlock(vp);
1417 goto loop;
1418 }
1419
1420 }
1421 if (vp == NULL || vp->v_tag != VT_NON) {
1422 if (sin == NULL) {
1423 MALLOC_ZONE(sin, struct specinfo *, sizeof(struct specinfo),
1424 M_SPECINFO, M_WAITOK);
1425 }
1426
1427 nvp->v_specinfo = sin;
1428 bzero(nvp->v_specinfo, sizeof(struct specinfo));
1429 nvp->v_rdev = nvp_rdev;
1430 nvp->v_specflags = 0;
1431 nvp->v_speclastr = -1;
1432 nvp->v_specinfo->si_opencount = 0;
1433 nvp->v_specinfo->si_initted = 0;
1434 nvp->v_specinfo->si_throttleable = 0;
1435
1436 SPECHASH_LOCK();
1437
1438 /* We dropped the lock, someone could have added */
1439 if (vp == NULLVP) {
1440 for (vp = *vpp; vp; vp = vp->v_specnext) {
1441 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
1442 vid = vp->v_id;
1443 SPECHASH_UNLOCK();
1444 goto found_alias;
1445 }
1446 }
1447 }
1448
1449 nvp->v_hashchain = vpp;
1450 nvp->v_specnext = *vpp;
1451 *vpp = nvp;
1452
1453 if (vp != NULLVP) {
1454 nvp->v_specflags |= SI_ALIASED;
1455 vp->v_specflags |= SI_ALIASED;
1456 SPECHASH_UNLOCK();
1457 vnode_put_locked(vp);
1458 vnode_unlock(vp);
1459 } else {
1460 SPECHASH_UNLOCK();
1461 }
1462
1463 return (NULLVP);
1464 }
1465
1466 if (sin) {
1467 FREE_ZONE(sin, sizeof(struct specinfo), M_SPECINFO);
1468 }
1469
1470 if ((vp->v_flag & (VBDEVVP | VDEVFLUSH)) != 0)
1471 return(vp);
1472
1473 panic("checkalias with VT_NON vp that shouldn't: %p", vp);
1474
1475 return (vp);
1476 }
1477
1478
1479 /*
1480 * Get a reference on a particular vnode and lock it if requested.
1481 * If the vnode was on the inactive list, remove it from the list.
1482 * If the vnode was on the free list, remove it from the list and
1483 * move it to inactive list as needed.
1484 * The vnode lock bit is set if the vnode is being eliminated in
1485 * vgone. The process is awakened when the transition is completed,
1486 * and an error returned to indicate that the vnode is no longer
1487 * usable (possibly having been changed to a new file system type).
1488 */
1489 int
1490 vget_internal(vnode_t vp, int vid, int vflags)
1491 {
1492 int error = 0;
1493
1494 vnode_lock_spin(vp);
1495
1496 if ((vflags & VNODE_WRITEABLE) && (vp->v_writecount == 0))
1497 /*
1498 * vnode to be returned only if it has writers opened
1499 */
1500 error = EINVAL;
1501 else
1502 error = vnode_getiocount(vp, vid, vflags);
1503
1504 vnode_unlock(vp);
1505
1506 return (error);
1507 }
1508
1509 /*
1510 * Returns: 0 Success
1511 * ENOENT No such file or directory [terminating]
1512 */
1513 int
1514 vnode_ref(vnode_t vp)
1515 {
1516
1517 return (vnode_ref_ext(vp, 0, 0));
1518 }
1519
1520 /*
1521 * Returns: 0 Success
1522 * ENOENT No such file or directory [terminating]
1523 */
1524 int
1525 vnode_ref_ext(vnode_t vp, int fmode, int flags)
1526 {
1527 int error = 0;
1528
1529 vnode_lock_spin(vp);
1530
1531 /*
1532 * once all the current call sites have been fixed to insure they have
1533 * taken an iocount, we can toughen this assert up and insist that the
1534 * iocount is non-zero... a non-zero usecount doesn't insure correctness
1535 */
1536 if (vp->v_iocount <= 0 && vp->v_usecount <= 0)
1537 panic("vnode_ref_ext: vp %p has no valid reference %d, %d", vp, vp->v_iocount, vp->v_usecount);
1538
1539 /*
1540 * if you are the owner of drain/termination, can acquire usecount
1541 */
1542 if ((flags & VNODE_REF_FORCE) == 0) {
1543 if ((vp->v_lflag & (VL_DRAIN | VL_TERMINATE | VL_DEAD))) {
1544 if (vp->v_owner != current_thread()) {
1545 error = ENOENT;
1546 goto out;
1547 }
1548 }
1549 }
1550 vp->v_usecount++;
1551
1552 if (fmode & FWRITE) {
1553 if (++vp->v_writecount <= 0)
1554 panic("vnode_ref_ext: v_writecount");
1555 }
1556 if (fmode & O_EVTONLY) {
1557 if (++vp->v_kusecount <= 0)
1558 panic("vnode_ref_ext: v_kusecount");
1559 }
1560 if (vp->v_flag & VRAGE) {
1561 struct uthread *ut;
1562
1563 ut = get_bsdthread_info(current_thread());
1564
1565 if ( !(current_proc()->p_lflag & P_LRAGE_VNODES) &&
1566 !(ut->uu_flag & UT_RAGE_VNODES)) {
1567 /*
1568 * a 'normal' process accessed this vnode
1569 * so make sure its no longer marked
1570 * for rapid aging... also, make sure
1571 * it gets removed from the rage list...
1572 * when v_usecount drops back to 0, it
1573 * will be put back on the real free list
1574 */
1575 vp->v_flag &= ~VRAGE;
1576 vp->v_references = 0;
1577 vnode_list_remove(vp);
1578 }
1579 }
1580 if (vp->v_usecount == 1 && vp->v_type == VREG && !(vp->v_flag & VSYSTEM)) {
1581
1582 if (vp->v_ubcinfo) {
1583 vnode_lock_convert(vp);
1584 memory_object_mark_used(vp->v_ubcinfo->ui_control);
1585 }
1586 }
1587 out:
1588 vnode_unlock(vp);
1589
1590 return (error);
1591 }
1592
1593
1594 static boolean_t
1595 vnode_on_reliable_media(vnode_t vp)
1596 {
1597 if ( !(vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) && (vp->v_mount->mnt_flag & MNT_LOCAL) )
1598 return (TRUE);
1599 return (FALSE);
1600 }
1601
1602 static void
1603 vnode_async_list_add(vnode_t vp)
1604 {
1605 vnode_list_lock();
1606
1607 if (VONLIST(vp) || (vp->v_lflag & (VL_TERMINATE|VL_DEAD)))
1608 panic("vnode_async_list_add: %p is in wrong state", vp);
1609
1610 TAILQ_INSERT_HEAD(&vnode_async_work_list, vp, v_freelist);
1611 vp->v_listflag |= VLIST_ASYNC_WORK;
1612
1613 async_work_vnodes++;
1614
1615 vnode_list_unlock();
1616
1617 wakeup(&vnode_async_work_list);
1618
1619 }
1620
1621
1622 /*
1623 * put the vnode on appropriate free list.
1624 * called with vnode LOCKED
1625 */
1626 static void
1627 vnode_list_add(vnode_t vp)
1628 {
1629 boolean_t need_dead_wakeup = FALSE;
1630
1631 #if DIAGNOSTIC
1632 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1633 #endif
1634 /*
1635 * if it is already on a list or non zero references return
1636 */
1637 if (VONLIST(vp) || (vp->v_usecount != 0) || (vp->v_iocount != 0) || (vp->v_lflag & VL_TERMINATE))
1638 return;
1639
1640 vnode_list_lock();
1641
1642 if ((vp->v_flag & VRAGE) && !(vp->v_lflag & VL_DEAD)) {
1643 /*
1644 * add the new guy to the appropriate end of the RAGE list
1645 */
1646 if ((vp->v_flag & VAGE))
1647 TAILQ_INSERT_HEAD(&vnode_rage_list, vp, v_freelist);
1648 else
1649 TAILQ_INSERT_TAIL(&vnode_rage_list, vp, v_freelist);
1650
1651 vp->v_listflag |= VLIST_RAGE;
1652 ragevnodes++;
1653
1654 /*
1655 * reset the timestamp for the last inserted vp on the RAGE
1656 * queue to let new_vnode know that its not ok to start stealing
1657 * from this list... as long as we're actively adding to this list
1658 * we'll push out the vnodes we want to donate to the real free list
1659 * once we stop pushing, we'll let some time elapse before we start
1660 * stealing them in the new_vnode routine
1661 */
1662 microuptime(&rage_tv);
1663 } else {
1664 /*
1665 * if VL_DEAD, insert it at head of the dead list
1666 * else insert at tail of LRU list or at head if VAGE is set
1667 */
1668 if ( (vp->v_lflag & VL_DEAD)) {
1669 TAILQ_INSERT_HEAD(&vnode_dead_list, vp, v_freelist);
1670 vp->v_listflag |= VLIST_DEAD;
1671 deadvnodes++;
1672
1673 if (dead_vnode_wanted) {
1674 dead_vnode_wanted--;
1675 need_dead_wakeup = TRUE;
1676 }
1677
1678 } else if ( (vp->v_flag & VAGE) ) {
1679 TAILQ_INSERT_HEAD(&vnode_free_list, vp, v_freelist);
1680 vp->v_flag &= ~VAGE;
1681 freevnodes++;
1682 } else {
1683 TAILQ_INSERT_TAIL(&vnode_free_list, vp, v_freelist);
1684 freevnodes++;
1685 }
1686 }
1687 vnode_list_unlock();
1688
1689 if (need_dead_wakeup == TRUE)
1690 wakeup_one((caddr_t)&dead_vnode_wanted);
1691 }
1692
1693
1694 /*
1695 * remove the vnode from appropriate free list.
1696 * called with vnode LOCKED and
1697 * the list lock held
1698 */
1699 static void
1700 vnode_list_remove_locked(vnode_t vp)
1701 {
1702 if (VONLIST(vp)) {
1703 /*
1704 * the v_listflag field is
1705 * protected by the vnode_list_lock
1706 */
1707 if (vp->v_listflag & VLIST_RAGE)
1708 VREMRAGE("vnode_list_remove", vp);
1709 else if (vp->v_listflag & VLIST_DEAD)
1710 VREMDEAD("vnode_list_remove", vp);
1711 else if (vp->v_listflag & VLIST_ASYNC_WORK)
1712 VREMASYNC_WORK("vnode_list_remove", vp);
1713 else
1714 VREMFREE("vnode_list_remove", vp);
1715 }
1716 }
1717
1718
1719 /*
1720 * remove the vnode from appropriate free list.
1721 * called with vnode LOCKED
1722 */
1723 static void
1724 vnode_list_remove(vnode_t vp)
1725 {
1726 #if DIAGNOSTIC
1727 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1728 #endif
1729 /*
1730 * we want to avoid taking the list lock
1731 * in the case where we're not on the free
1732 * list... this will be true for most
1733 * directories and any currently in use files
1734 *
1735 * we're guaranteed that we can't go from
1736 * the not-on-list state to the on-list
1737 * state since we hold the vnode lock...
1738 * all calls to vnode_list_add are done
1739 * under the vnode lock... so we can
1740 * check for that condition (the prevelant one)
1741 * without taking the list lock
1742 */
1743 if (VONLIST(vp)) {
1744 vnode_list_lock();
1745 /*
1746 * however, we're not guaranteed that
1747 * we won't go from the on-list state
1748 * to the not-on-list state until we
1749 * hold the vnode_list_lock... this
1750 * is due to "new_vnode" removing vnodes
1751 * from the free list uder the list_lock
1752 * w/o the vnode lock... so we need to
1753 * check again whether we're currently
1754 * on the free list
1755 */
1756 vnode_list_remove_locked(vp);
1757
1758 vnode_list_unlock();
1759 }
1760 }
1761
1762
1763 void
1764 vnode_rele(vnode_t vp)
1765 {
1766 vnode_rele_internal(vp, 0, 0, 0);
1767 }
1768
1769
1770 void
1771 vnode_rele_ext(vnode_t vp, int fmode, int dont_reenter)
1772 {
1773 vnode_rele_internal(vp, fmode, dont_reenter, 0);
1774 }
1775
1776
1777 void
1778 vnode_rele_internal(vnode_t vp, int fmode, int dont_reenter, int locked)
1779 {
1780
1781 if ( !locked)
1782 vnode_lock_spin(vp);
1783 #if DIAGNOSTIC
1784 else
1785 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
1786 #endif
1787 if (--vp->v_usecount < 0)
1788 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);
1789
1790 if (fmode & FWRITE) {
1791 if (--vp->v_writecount < 0)
1792 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);
1793 }
1794 if (fmode & O_EVTONLY) {
1795 if (--vp->v_kusecount < 0)
1796 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);
1797 }
1798 if (vp->v_kusecount > vp->v_usecount)
1799 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);
1800
1801 if ((vp->v_iocount > 0) || (vp->v_usecount > 0)) {
1802 /*
1803 * vnode is still busy... if we're the last
1804 * usecount, mark for a future call to VNOP_INACTIVE
1805 * when the iocount finally drops to 0
1806 */
1807 if (vp->v_usecount == 0) {
1808 vp->v_lflag |= VL_NEEDINACTIVE;
1809 vp->v_flag &= ~(VNOCACHE_DATA | VRAOFF | VOPENEVT);
1810 }
1811 goto done;
1812 }
1813 vp->v_flag &= ~(VNOCACHE_DATA | VRAOFF | VOPENEVT);
1814
1815 if ( (vp->v_lflag & (VL_TERMINATE | VL_DEAD)) || dont_reenter) {
1816 /*
1817 * vnode is being cleaned, or
1818 * we've requested that we don't reenter
1819 * the filesystem on this release... in
1820 * this case, we'll mark the vnode aged
1821 * if it's been marked for termination
1822 */
1823 if (dont_reenter) {
1824 if ( !(vp->v_lflag & (VL_TERMINATE | VL_DEAD | VL_MARKTERM)) ) {
1825 vp->v_lflag |= VL_NEEDINACTIVE;
1826
1827 if (vnode_on_reliable_media(vp) == FALSE) {
1828 vnode_async_list_add(vp);
1829 goto done;
1830 }
1831 }
1832 vp->v_flag |= VAGE;
1833 }
1834 vnode_list_add(vp);
1835
1836 goto done;
1837 }
1838 /*
1839 * at this point both the iocount and usecount
1840 * are zero
1841 * pick up an iocount so that we can call
1842 * VNOP_INACTIVE with the vnode lock unheld
1843 */
1844 vp->v_iocount++;
1845 #ifdef JOE_DEBUG
1846 record_vp(vp, 1);
1847 #endif
1848 vp->v_lflag &= ~VL_NEEDINACTIVE;
1849 vnode_unlock(vp);
1850
1851 VNOP_INACTIVE(vp, vfs_context_current());
1852
1853 vnode_lock_spin(vp);
1854 /*
1855 * because we dropped the vnode lock to call VNOP_INACTIVE
1856 * the state of the vnode may have changed... we may have
1857 * picked up an iocount, usecount or the MARKTERM may have
1858 * been set... we need to reevaluate the reference counts
1859 * to determine if we can call vnode_reclaim_internal at
1860 * this point... if the reference counts are up, we'll pick
1861 * up the MARKTERM state when they get subsequently dropped
1862 */
1863 if ( (vp->v_iocount == 1) && (vp->v_usecount == 0) &&
1864 ((vp->v_lflag & (VL_MARKTERM | VL_TERMINATE | VL_DEAD)) == VL_MARKTERM)) {
1865 struct uthread *ut;
1866
1867 ut = get_bsdthread_info(current_thread());
1868
1869 if (ut->uu_defer_reclaims) {
1870 vp->v_defer_reclaimlist = ut->uu_vreclaims;
1871 ut->uu_vreclaims = vp;
1872 goto done;
1873 }
1874 vnode_lock_convert(vp);
1875 vnode_reclaim_internal(vp, 1, 1, 0);
1876 }
1877 vnode_dropiocount(vp);
1878 vnode_list_add(vp);
1879 done:
1880 if (vp->v_usecount == 0 && vp->v_type == VREG && !(vp->v_flag & VSYSTEM)) {
1881
1882 if (vp->v_ubcinfo) {
1883 vnode_lock_convert(vp);
1884 memory_object_mark_unused(vp->v_ubcinfo->ui_control, (vp->v_flag & VRAGE) == VRAGE);
1885 }
1886 }
1887 if ( !locked)
1888 vnode_unlock(vp);
1889 return;
1890 }
1891
1892 /*
1893 * Remove any vnodes in the vnode table belonging to mount point mp.
1894 *
1895 * If MNT_NOFORCE is specified, there should not be any active ones,
1896 * return error if any are found (nb: this is a user error, not a
1897 * system error). If MNT_FORCE is specified, detach any active vnodes
1898 * that are found.
1899 */
1900 #if DIAGNOSTIC
1901 int busyprt = 0; /* print out busy vnodes */
1902 #if 0
1903 struct ctldebug debug1 = { "busyprt", &busyprt };
1904 #endif /* 0 */
1905 #endif
1906
1907 int
1908 vflush(struct mount *mp, struct vnode *skipvp, int flags)
1909 {
1910 struct vnode *vp;
1911 int busy = 0;
1912 int reclaimed = 0;
1913 int retval;
1914 unsigned int vid;
1915
1916 mount_lock(mp);
1917 vnode_iterate_setup(mp);
1918 /*
1919 * On regular unmounts(not forced) do a
1920 * quick check for vnodes to be in use. This
1921 * preserves the caching of vnodes. automounter
1922 * tries unmounting every so often to see whether
1923 * it is still busy or not.
1924 */
1925 if (((flags & FORCECLOSE)==0) && ((mp->mnt_kern_flag & MNTK_UNMOUNT_PREFLIGHT) != 0)) {
1926 if (vnode_umount_preflight(mp, skipvp, flags)) {
1927 vnode_iterate_clear(mp);
1928 mount_unlock(mp);
1929 return(EBUSY);
1930 }
1931 }
1932 loop:
1933 /* it is returns 0 then there is nothing to do */
1934 retval = vnode_iterate_prepare(mp);
1935
1936 if (retval == 0) {
1937 vnode_iterate_clear(mp);
1938 mount_unlock(mp);
1939 return(retval);
1940 }
1941
1942 /* iterate over all the vnodes */
1943 while (!TAILQ_EMPTY(&mp->mnt_workerqueue)) {
1944
1945 vp = TAILQ_FIRST(&mp->mnt_workerqueue);
1946 TAILQ_REMOVE(&mp->mnt_workerqueue, vp, v_mntvnodes);
1947 TAILQ_INSERT_TAIL(&mp->mnt_vnodelist, vp, v_mntvnodes);
1948
1949 if ( (vp->v_mount != mp) || (vp == skipvp)) {
1950 continue;
1951 }
1952 vid = vp->v_id;
1953 mount_unlock(mp);
1954
1955 vnode_lock_spin(vp);
1956
1957 if ((vp->v_id != vid) || ((vp->v_lflag & (VL_DEAD | VL_TERMINATE)))) {
1958 vnode_unlock(vp);
1959 mount_lock(mp);
1960 continue;
1961 }
1962
1963 /*
1964 * If requested, skip over vnodes marked VSYSTEM.
1965 * Skip over all vnodes marked VNOFLUSH.
1966 */
1967 if ((flags & SKIPSYSTEM) && ((vp->v_flag & VSYSTEM) ||
1968 (vp->v_flag & VNOFLUSH))) {
1969 vnode_unlock(vp);
1970 mount_lock(mp);
1971 continue;
1972 }
1973 /*
1974 * If requested, skip over vnodes marked VSWAP.
1975 */
1976 if ((flags & SKIPSWAP) && (vp->v_flag & VSWAP)) {
1977 vnode_unlock(vp);
1978 mount_lock(mp);
1979 continue;
1980 }
1981 /*
1982 * If requested, skip over vnodes marked VROOT.
1983 */
1984 if ((flags & SKIPROOT) && (vp->v_flag & VROOT)) {
1985 vnode_unlock(vp);
1986 mount_lock(mp);
1987 continue;
1988 }
1989 /*
1990 * If WRITECLOSE is set, only flush out regular file
1991 * vnodes open for writing.
1992 */
1993 if ((flags & WRITECLOSE) &&
1994 (vp->v_writecount == 0 || vp->v_type != VREG)) {
1995 vnode_unlock(vp);
1996 mount_lock(mp);
1997 continue;
1998 }
1999 /*
2000 * If the real usecount is 0, all we need to do is clear
2001 * out the vnode data structures and we are done.
2002 */
2003 if (((vp->v_usecount == 0) ||
2004 ((vp->v_usecount - vp->v_kusecount) == 0))) {
2005
2006 vnode_lock_convert(vp);
2007 vp->v_iocount++; /* so that drain waits for * other iocounts */
2008 #ifdef JOE_DEBUG
2009 record_vp(vp, 1);
2010 #endif
2011 vnode_reclaim_internal(vp, 1, 1, 0);
2012 vnode_dropiocount(vp);
2013 vnode_list_add(vp);
2014 vnode_unlock(vp);
2015
2016 reclaimed++;
2017 mount_lock(mp);
2018 continue;
2019 }
2020 /*
2021 * If FORCECLOSE is set, forcibly close the vnode.
2022 * For block or character devices, revert to an
2023 * anonymous device. For all other files, just kill them.
2024 */
2025 if (flags & FORCECLOSE) {
2026 vnode_lock_convert(vp);
2027
2028 if (vp->v_type != VBLK && vp->v_type != VCHR) {
2029 vp->v_iocount++; /* so that drain waits * for other iocounts */
2030 #ifdef JOE_DEBUG
2031 record_vp(vp, 1);
2032 #endif
2033 vnode_abort_advlocks(vp);
2034 vnode_reclaim_internal(vp, 1, 1, 0);
2035 vnode_dropiocount(vp);
2036 vnode_list_add(vp);
2037 vnode_unlock(vp);
2038 } else {
2039 vclean(vp, 0);
2040 vp->v_lflag &= ~VL_DEAD;
2041 vp->v_op = spec_vnodeop_p;
2042 vp->v_flag |= VDEVFLUSH;
2043 vnode_unlock(vp);
2044 }
2045 mount_lock(mp);
2046 continue;
2047 }
2048 #if DIAGNOSTIC
2049 if (busyprt)
2050 vprint("vflush: busy vnode", vp);
2051 #endif
2052 vnode_unlock(vp);
2053 mount_lock(mp);
2054 busy++;
2055 }
2056
2057 /* At this point the worker queue is completed */
2058 if (busy && ((flags & FORCECLOSE)==0) && reclaimed) {
2059 busy = 0;
2060 reclaimed = 0;
2061 (void)vnode_iterate_reloadq(mp);
2062 /* returned with mount lock held */
2063 goto loop;
2064 }
2065
2066 /* if new vnodes were created in between retry the reclaim */
2067 if ( vnode_iterate_reloadq(mp) != 0) {
2068 if (!(busy && ((flags & FORCECLOSE)==0)))
2069 goto loop;
2070 }
2071 vnode_iterate_clear(mp);
2072 mount_unlock(mp);
2073
2074 if (busy && ((flags & FORCECLOSE)==0))
2075 return (EBUSY);
2076 return (0);
2077 }
2078
2079 long num_recycledvnodes = 0;
2080 /*
2081 * Disassociate the underlying file system from a vnode.
2082 * The vnode lock is held on entry.
2083 */
2084 static void
2085 vclean(vnode_t vp, int flags)
2086 {
2087 vfs_context_t ctx = vfs_context_current();
2088 int active;
2089 int need_inactive;
2090 int already_terminating;
2091 int clflags = 0;
2092 #if NAMEDSTREAMS
2093 int is_namedstream;
2094 #endif
2095
2096 /*
2097 * Check to see if the vnode is in use.
2098 * If so we have to reference it before we clean it out
2099 * so that its count cannot fall to zero and generate a
2100 * race against ourselves to recycle it.
2101 */
2102 active = vp->v_usecount;
2103
2104 /*
2105 * just in case we missed sending a needed
2106 * VNOP_INACTIVE, we'll do it now
2107 */
2108 need_inactive = (vp->v_lflag & VL_NEEDINACTIVE);
2109
2110 vp->v_lflag &= ~VL_NEEDINACTIVE;
2111
2112 /*
2113 * Prevent the vnode from being recycled or
2114 * brought into use while we clean it out.
2115 */
2116 already_terminating = (vp->v_lflag & VL_TERMINATE);
2117
2118 vp->v_lflag |= VL_TERMINATE;
2119
2120 /*
2121 * remove the vnode from any mount list
2122 * it might be on...
2123 */
2124 insmntque(vp, (struct mount *)0);
2125
2126 #if NAMEDSTREAMS
2127 is_namedstream = vnode_isnamedstream(vp);
2128 #endif
2129
2130 vnode_unlock(vp);
2131
2132 OSAddAtomicLong(1, &num_recycledvnodes);
2133
2134 if (flags & DOCLOSE)
2135 clflags |= IO_NDELAY;
2136 if (flags & REVOKEALL)
2137 clflags |= IO_REVOKE;
2138
2139 if (active && (flags & DOCLOSE))
2140 VNOP_CLOSE(vp, clflags, ctx);
2141
2142 /*
2143 * Clean out any buffers associated with the vnode.
2144 */
2145 if (flags & DOCLOSE) {
2146 #if NFSCLIENT
2147 if (vp->v_tag == VT_NFS)
2148 nfs_vinvalbuf(vp, V_SAVE, ctx, 0);
2149 else
2150 #endif
2151 {
2152 VNOP_FSYNC(vp, MNT_WAIT, ctx);
2153 buf_invalidateblks(vp, BUF_WRITE_DATA | BUF_INVALIDATE_LOCKED, 0, 0);
2154 }
2155 if (UBCINFOEXISTS(vp))
2156 /*
2157 * Clean the pages in VM.
2158 */
2159 (void)ubc_msync(vp, (off_t)0, ubc_getsize(vp), NULL, UBC_PUSHALL | UBC_INVALIDATE | UBC_SYNC);
2160 }
2161 if (active || need_inactive)
2162 VNOP_INACTIVE(vp, ctx);
2163
2164 #if NAMEDSTREAMS
2165 if ((is_namedstream != 0) && (vp->v_parent != NULLVP)) {
2166 vnode_t pvp = vp->v_parent;
2167
2168 /* Delete the shadow stream file before we reclaim its vnode */
2169 if (vnode_isshadow(vp)) {
2170 vnode_relenamedstream(pvp, vp, ctx);
2171 }
2172
2173 /*
2174 * No more streams associated with the parent. We
2175 * have a ref on it, so its identity is stable.
2176 * If the parent is on an opaque volume, then we need to know
2177 * whether it has associated named streams.
2178 */
2179 if (vfs_authopaque(pvp->v_mount)) {
2180 vnode_lock_spin(pvp);
2181 pvp->v_lflag &= ~VL_HASSTREAMS;
2182 vnode_unlock(pvp);
2183 }
2184 }
2185 #endif
2186
2187 /*
2188 * Destroy ubc named reference
2189 * cluster_release is done on this path
2190 * along with dropping the reference on the ucred
2191 */
2192 ubc_destroy_named(vp);
2193
2194 #if CONFIG_TRIGGERS
2195 /*
2196 * cleanup trigger info from vnode (if any)
2197 */
2198 if (vp->v_resolve)
2199 vnode_resolver_detach(vp);
2200 #endif
2201
2202 /*
2203 * Reclaim the vnode.
2204 */
2205 if (VNOP_RECLAIM(vp, ctx))
2206 panic("vclean: cannot reclaim");
2207
2208 // make sure the name & parent ptrs get cleaned out!
2209 vnode_update_identity(vp, NULLVP, NULL, 0, 0, VNODE_UPDATE_PARENT | VNODE_UPDATE_NAME | VNODE_UPDATE_PURGE);
2210
2211 vnode_lock(vp);
2212
2213 vp->v_mount = dead_mountp;
2214 vp->v_op = dead_vnodeop_p;
2215 vp->v_tag = VT_NON;
2216 vp->v_data = NULL;
2217
2218 vp->v_lflag |= VL_DEAD;
2219
2220 if (already_terminating == 0) {
2221 vp->v_lflag &= ~VL_TERMINATE;
2222 /*
2223 * Done with purge, notify sleepers of the grim news.
2224 */
2225 if (vp->v_lflag & VL_TERMWANT) {
2226 vp->v_lflag &= ~VL_TERMWANT;
2227 wakeup(&vp->v_lflag);
2228 }
2229 }
2230 }
2231
2232 /*
2233 * Eliminate all activity associated with the requested vnode
2234 * and with all vnodes aliased to the requested vnode.
2235 */
2236 int
2237 #if DIAGNOSTIC
2238 vn_revoke(vnode_t vp, int flags, __unused vfs_context_t a_context)
2239 #else
2240 vn_revoke(vnode_t vp, __unused int flags, __unused vfs_context_t a_context)
2241 #endif
2242 {
2243 struct vnode *vq;
2244 int vid;
2245
2246 #if DIAGNOSTIC
2247 if ((flags & REVOKEALL) == 0)
2248 panic("vnop_revoke");
2249 #endif
2250
2251 if (vnode_isaliased(vp)) {
2252 /*
2253 * If a vgone (or vclean) is already in progress,
2254 * return an immediate error
2255 */
2256 if (vp->v_lflag & VL_TERMINATE)
2257 return(ENOENT);
2258
2259 /*
2260 * Ensure that vp will not be vgone'd while we
2261 * are eliminating its aliases.
2262 */
2263 SPECHASH_LOCK();
2264 while ((vp->v_specflags & SI_ALIASED)) {
2265 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
2266 if (vq->v_rdev != vp->v_rdev ||
2267 vq->v_type != vp->v_type || vp == vq)
2268 continue;
2269 vid = vq->v_id;
2270 SPECHASH_UNLOCK();
2271 if (vnode_getwithvid(vq,vid)){
2272 SPECHASH_LOCK();
2273 break;
2274 }
2275 vnode_reclaim_internal(vq, 0, 1, 0);
2276 vnode_put(vq);
2277 SPECHASH_LOCK();
2278 break;
2279 }
2280 }
2281 SPECHASH_UNLOCK();
2282 }
2283 vnode_reclaim_internal(vp, 0, 0, REVOKEALL);
2284
2285 return (0);
2286 }
2287
2288 /*
2289 * Recycle an unused vnode to the front of the free list.
2290 * Release the passed interlock if the vnode will be recycled.
2291 */
2292 int
2293 vnode_recycle(struct vnode *vp)
2294 {
2295 vnode_lock_spin(vp);
2296
2297 if (vp->v_iocount || vp->v_usecount) {
2298 vp->v_lflag |= VL_MARKTERM;
2299 vnode_unlock(vp);
2300 return(0);
2301 }
2302 vnode_lock_convert(vp);
2303 vnode_reclaim_internal(vp, 1, 0, 0);
2304
2305 vnode_unlock(vp);
2306
2307 return (1);
2308 }
2309
2310 static int
2311 vnode_reload(vnode_t vp)
2312 {
2313 vnode_lock_spin(vp);
2314
2315 if ((vp->v_iocount > 1) || vp->v_usecount) {
2316 vnode_unlock(vp);
2317 return(0);
2318 }
2319 if (vp->v_iocount <= 0)
2320 panic("vnode_reload with no iocount %d", vp->v_iocount);
2321
2322 /* mark for release when iocount is dopped */
2323 vp->v_lflag |= VL_MARKTERM;
2324 vnode_unlock(vp);
2325
2326 return (1);
2327 }
2328
2329
2330 static void
2331 vgone(vnode_t vp, int flags)
2332 {
2333 struct vnode *vq;
2334 struct vnode *vx;
2335
2336 /*
2337 * Clean out the filesystem specific data.
2338 * vclean also takes care of removing the
2339 * vnode from any mount list it might be on
2340 */
2341 vclean(vp, flags | DOCLOSE);
2342
2343 /*
2344 * If special device, remove it from special device alias list
2345 * if it is on one.
2346 */
2347 if ((vp->v_type == VBLK || vp->v_type == VCHR) && vp->v_specinfo != 0) {
2348 SPECHASH_LOCK();
2349 if (*vp->v_hashchain == vp) {
2350 *vp->v_hashchain = vp->v_specnext;
2351 } else {
2352 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
2353 if (vq->v_specnext != vp)
2354 continue;
2355 vq->v_specnext = vp->v_specnext;
2356 break;
2357 }
2358 if (vq == NULL)
2359 panic("missing bdev");
2360 }
2361 if (vp->v_specflags & SI_ALIASED) {
2362 vx = NULL;
2363 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
2364 if (vq->v_rdev != vp->v_rdev ||
2365 vq->v_type != vp->v_type)
2366 continue;
2367 if (vx)
2368 break;
2369 vx = vq;
2370 }
2371 if (vx == NULL)
2372 panic("missing alias");
2373 if (vq == NULL)
2374 vx->v_specflags &= ~SI_ALIASED;
2375 vp->v_specflags &= ~SI_ALIASED;
2376 }
2377 SPECHASH_UNLOCK();
2378 {
2379 struct specinfo *tmp = vp->v_specinfo;
2380 vp->v_specinfo = NULL;
2381 FREE_ZONE((void *)tmp, sizeof(struct specinfo), M_SPECINFO);
2382 }
2383 }
2384 }
2385
2386 /*
2387 * Lookup a vnode by device number.
2388 */
2389 int
2390 check_mountedon(dev_t dev, enum vtype type, int *errorp)
2391 {
2392 vnode_t vp;
2393 int rc = 0;
2394 int vid;
2395
2396 loop:
2397 SPECHASH_LOCK();
2398 for (vp = speclisth[SPECHASH(dev)]; vp; vp = vp->v_specnext) {
2399 if (dev != vp->v_rdev || type != vp->v_type)
2400 continue;
2401 vid = vp->v_id;
2402 SPECHASH_UNLOCK();
2403 if (vnode_getwithvid(vp,vid))
2404 goto loop;
2405 vnode_lock_spin(vp);
2406 if ((vp->v_usecount > 0) || (vp->v_iocount > 1)) {
2407 vnode_unlock(vp);
2408 if ((*errorp = vfs_mountedon(vp)) != 0)
2409 rc = 1;
2410 } else
2411 vnode_unlock(vp);
2412 vnode_put(vp);
2413 return(rc);
2414 }
2415 SPECHASH_UNLOCK();
2416 return (0);
2417 }
2418
2419 /*
2420 * Calculate the total number of references to a special device.
2421 */
2422 int
2423 vcount(vnode_t vp)
2424 {
2425 vnode_t vq, vnext;
2426 int count;
2427 int vid;
2428
2429 loop:
2430 if (!vnode_isaliased(vp))
2431 return (vp->v_specinfo->si_opencount);
2432 count = 0;
2433
2434 SPECHASH_LOCK();
2435 /*
2436 * Grab first vnode and its vid.
2437 */
2438 vq = *vp->v_hashchain;
2439 vid = vq ? vq->v_id : 0;
2440
2441 SPECHASH_UNLOCK();
2442
2443 while (vq) {
2444 /*
2445 * Attempt to get the vnode outside the SPECHASH lock.
2446 */
2447 if (vnode_getwithvid(vq, vid)) {
2448 goto loop;
2449 }
2450 vnode_lock(vq);
2451
2452 if (vq->v_rdev == vp->v_rdev && vq->v_type == vp->v_type) {
2453 if ((vq->v_usecount == 0) && (vq->v_iocount == 1) && vq != vp) {
2454 /*
2455 * Alias, but not in use, so flush it out.
2456 */
2457 vnode_reclaim_internal(vq, 1, 1, 0);
2458 vnode_put_locked(vq);
2459 vnode_unlock(vq);
2460 goto loop;
2461 }
2462 count += vq->v_specinfo->si_opencount;
2463 }
2464 vnode_unlock(vq);
2465
2466 SPECHASH_LOCK();
2467 /*
2468 * must do this with the reference still held on 'vq'
2469 * so that it can't be destroyed while we're poking
2470 * through v_specnext
2471 */
2472 vnext = vq->v_specnext;
2473 vid = vnext ? vnext->v_id : 0;
2474
2475 SPECHASH_UNLOCK();
2476
2477 vnode_put(vq);
2478
2479 vq = vnext;
2480 }
2481
2482 return (count);
2483 }
2484
2485 int prtactive = 0; /* 1 => print out reclaim of active vnodes */
2486
2487 /*
2488 * Print out a description of a vnode.
2489 */
2490 static const char *typename[] =
2491 { "VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD" };
2492
2493 void
2494 vprint(const char *label, struct vnode *vp)
2495 {
2496 char sbuf[64];
2497
2498 if (label != NULL)
2499 printf("%s: ", label);
2500 printf("type %s, usecount %d, writecount %d",
2501 typename[vp->v_type], vp->v_usecount, vp->v_writecount);
2502 sbuf[0] = '\0';
2503 if (vp->v_flag & VROOT)
2504 strlcat(sbuf, "|VROOT", sizeof(sbuf));
2505 if (vp->v_flag & VTEXT)
2506 strlcat(sbuf, "|VTEXT", sizeof(sbuf));
2507 if (vp->v_flag & VSYSTEM)
2508 strlcat(sbuf, "|VSYSTEM", sizeof(sbuf));
2509 if (vp->v_flag & VNOFLUSH)
2510 strlcat(sbuf, "|VNOFLUSH", sizeof(sbuf));
2511 if (vp->v_flag & VBWAIT)
2512 strlcat(sbuf, "|VBWAIT", sizeof(sbuf));
2513 if (vnode_isaliased(vp))
2514 strlcat(sbuf, "|VALIASED", sizeof(sbuf));
2515 if (sbuf[0] != '\0')
2516 printf(" flags (%s)", &sbuf[1]);
2517 }
2518
2519
2520 int
2521 vn_getpath(struct vnode *vp, char *pathbuf, int *len)
2522 {
2523 return build_path(vp, pathbuf, *len, len, BUILDPATH_NO_FS_ENTER, vfs_context_current());
2524 }
2525
2526 int
2527 vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len)
2528 {
2529 return build_path(vp, pathbuf, *len, len, 0, vfs_context_current());
2530 }
2531
2532 int
2533 vn_getcdhash(struct vnode *vp, off_t offset, unsigned char *cdhash)
2534 {
2535 return ubc_cs_getcdhash(vp, offset, cdhash);
2536 }
2537
2538
2539 static char *extension_table=NULL;
2540 static int nexts;
2541 static int max_ext_width;
2542
2543 static int
2544 extension_cmp(const void *a, const void *b)
2545 {
2546 return (strlen((const char *)a) - strlen((const char *)b));
2547 }
2548
2549
2550 //
2551 // This is the api LaunchServices uses to inform the kernel
2552 // the list of package extensions to ignore.
2553 //
2554 // Internally we keep the list sorted by the length of the
2555 // the extension (from longest to shortest). We sort the
2556 // list of extensions so that we can speed up our searches
2557 // when comparing file names -- we only compare extensions
2558 // that could possibly fit into the file name, not all of
2559 // them (i.e. a short 8 character name can't have an 8
2560 // character extension).
2561 //
2562 extern lck_mtx_t *pkg_extensions_lck;
2563
2564 __private_extern__ int
2565 set_package_extensions_table(user_addr_t data, int nentries, int maxwidth)
2566 {
2567 char *new_exts, *old_exts;
2568 int error;
2569
2570 if (nentries <= 0 || nentries > 1024 || maxwidth <= 0 || maxwidth > 255) {
2571 return EINVAL;
2572 }
2573
2574
2575 // allocate one byte extra so we can guarantee null termination
2576 MALLOC(new_exts, char *, (nentries * maxwidth) + 1, M_TEMP, M_WAITOK);
2577 if (new_exts == NULL) {
2578 return ENOMEM;
2579 }
2580
2581 error = copyin(data, new_exts, nentries * maxwidth);
2582 if (error) {
2583 FREE(new_exts, M_TEMP);
2584 return error;
2585 }
2586
2587 new_exts[(nentries * maxwidth)] = '\0'; // guarantee null termination of the block
2588
2589 qsort(new_exts, nentries, maxwidth, extension_cmp);
2590
2591 lck_mtx_lock(pkg_extensions_lck);
2592
2593 old_exts = extension_table;
2594 extension_table = new_exts;
2595 nexts = nentries;
2596 max_ext_width = maxwidth;
2597
2598 lck_mtx_unlock(pkg_extensions_lck);
2599
2600 if (old_exts) {
2601 FREE(old_exts, M_TEMP);
2602 }
2603
2604 return 0;
2605 }
2606
2607
2608 __private_extern__ int
2609 is_package_name(const char *name, int len)
2610 {
2611 int i, extlen;
2612 const char *ptr, *name_ext;
2613
2614 if (len <= 3) {
2615 return 0;
2616 }
2617
2618 name_ext = NULL;
2619 for(ptr=name; *ptr != '\0'; ptr++) {
2620 if (*ptr == '.') {
2621 name_ext = ptr;
2622 }
2623 }
2624
2625 // if there is no "." extension, it can't match
2626 if (name_ext == NULL) {
2627 return 0;
2628 }
2629
2630 // advance over the "."
2631 name_ext++;
2632
2633 lck_mtx_lock(pkg_extensions_lck);
2634
2635 // now iterate over all the extensions to see if any match
2636 ptr = &extension_table[0];
2637 for(i=0; i < nexts; i++, ptr+=max_ext_width) {
2638 extlen = strlen(ptr);
2639 if (strncasecmp(name_ext, ptr, extlen) == 0 && name_ext[extlen] == '\0') {
2640 // aha, a match!
2641 lck_mtx_unlock(pkg_extensions_lck);
2642 return 1;
2643 }
2644 }
2645
2646 lck_mtx_unlock(pkg_extensions_lck);
2647
2648 // if we get here, no extension matched
2649 return 0;
2650 }
2651
2652 int
2653 vn_path_package_check(__unused vnode_t vp, char *path, int pathlen, int *component)
2654 {
2655 char *ptr, *end;
2656 int comp=0;
2657
2658 *component = -1;
2659 if (*path != '/') {
2660 return EINVAL;
2661 }
2662
2663 end = path + 1;
2664 while(end < path + pathlen && *end != '\0') {
2665 while(end < path + pathlen && *end == '/' && *end != '\0') {
2666 end++;
2667 }
2668
2669 ptr = end;
2670
2671 while(end < path + pathlen && *end != '/' && *end != '\0') {
2672 end++;
2673 }
2674
2675 if (end > path + pathlen) {
2676 // hmm, string wasn't null terminated
2677 return EINVAL;
2678 }
2679
2680 *end = '\0';
2681 if (is_package_name(ptr, end - ptr)) {
2682 *component = comp;
2683 break;
2684 }
2685
2686 end++;
2687 comp++;
2688 }
2689
2690 return 0;
2691 }
2692
2693 /*
2694 * Determine if a name is inappropriate for a searchfs query.
2695 * This list consists of /System currently.
2696 */
2697
2698 int vn_searchfs_inappropriate_name(const char *name, int len) {
2699 const char *bad_names[] = { "System" };
2700 int bad_len[] = { 6 };
2701 int i;
2702
2703 for(i=0; i < (int) (sizeof(bad_names) / sizeof(bad_names[0])); i++) {
2704 if (len == bad_len[i] && strncmp(name, bad_names[i], strlen(bad_names[i]) + 1) == 0) {
2705 return 1;
2706 }
2707 }
2708
2709 // if we get here, no name matched
2710 return 0;
2711 }
2712
2713 /*
2714 * Top level filesystem related information gathering.
2715 */
2716 extern unsigned int vfs_nummntops;
2717
2718 int
2719 vfs_sysctl(int *name, u_int namelen, user_addr_t oldp, size_t *oldlenp,
2720 user_addr_t newp, size_t newlen, proc_t p)
2721 {
2722 struct vfstable *vfsp;
2723 int *username;
2724 u_int usernamelen;
2725 int error;
2726 struct vfsconf vfsc;
2727
2728 if (namelen > CTL_MAXNAME) {
2729 return (EINVAL);
2730 }
2731
2732 /* All non VFS_GENERIC and in VFS_GENERIC,
2733 * VFS_MAXTYPENUM, VFS_CONF, VFS_SET_PACKAGE_EXTS
2734 * needs to have root priv to have modifiers.
2735 * For rest the userland_sysctl(CTLFLAG_ANYBODY) would cover.
2736 */
2737 if ((newp != USER_ADDR_NULL) && ((name[0] != VFS_GENERIC) ||
2738 ((name[1] == VFS_MAXTYPENUM) ||
2739 (name[1] == VFS_CONF) ||
2740 (name[1] == VFS_SET_PACKAGE_EXTS)))
2741 && (error = suser(kauth_cred_get(), &p->p_acflag))) {
2742 return(error);
2743 }
2744 /*
2745 * The VFS_NUMMNTOPS shouldn't be at name[0] since
2746 * is a VFS generic variable. So now we must check
2747 * namelen so we don't end up covering any UFS
2748 * variables (sinc UFS vfc_typenum is 1).
2749 *
2750 * It should have been:
2751 * name[0]: VFS_GENERIC
2752 * name[1]: VFS_NUMMNTOPS
2753 */
2754 if (namelen == 1 && name[0] == VFS_NUMMNTOPS) {
2755 return (sysctl_rdint(oldp, oldlenp, newp, vfs_nummntops));
2756 }
2757
2758 /* all sysctl names at this level are at least name and field */
2759 if (namelen < 2)
2760 return (EISDIR); /* overloaded */
2761 if (name[0] != VFS_GENERIC) {
2762
2763 mount_list_lock();
2764 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
2765 if (vfsp->vfc_typenum == name[0]) {
2766 vfsp->vfc_refcount++;
2767 break;
2768 }
2769 mount_list_unlock();
2770
2771 if (vfsp == NULL)
2772 return (ENOTSUP);
2773
2774 /* XXX current context proxy for proc p? */
2775 error = ((*vfsp->vfc_vfsops->vfs_sysctl)(&name[1], namelen - 1,
2776 oldp, oldlenp, newp, newlen,
2777 vfs_context_current()));
2778
2779 mount_list_lock();
2780 vfsp->vfc_refcount--;
2781 mount_list_unlock();
2782 return error;
2783 }
2784 switch (name[1]) {
2785 case VFS_MAXTYPENUM:
2786 return (sysctl_rdint(oldp, oldlenp, newp, maxvfsconf));
2787 case VFS_CONF:
2788 if (namelen < 3)
2789 return (ENOTDIR); /* overloaded */
2790
2791 mount_list_lock();
2792 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
2793 if (vfsp->vfc_typenum == name[2])
2794 break;
2795
2796 if (vfsp == NULL) {
2797 mount_list_unlock();
2798 return (ENOTSUP);
2799 }
2800
2801 vfsc.vfc_reserved1 = 0;
2802 bcopy(vfsp->vfc_name, vfsc.vfc_name, sizeof(vfsc.vfc_name));
2803 vfsc.vfc_typenum = vfsp->vfc_typenum;
2804 vfsc.vfc_refcount = vfsp->vfc_refcount;
2805 vfsc.vfc_flags = vfsp->vfc_flags;
2806 vfsc.vfc_reserved2 = 0;
2807 vfsc.vfc_reserved3 = 0;
2808
2809 mount_list_unlock();
2810 return (sysctl_rdstruct(oldp, oldlenp, newp, &vfsc,
2811 sizeof(struct vfsconf)));
2812
2813 case VFS_SET_PACKAGE_EXTS:
2814 return set_package_extensions_table((user_addr_t)((unsigned)name[1]), name[2], name[3]);
2815 }
2816 /*
2817 * We need to get back into the general MIB, so we need to re-prepend
2818 * CTL_VFS to our name and try userland_sysctl().
2819 */
2820
2821 usernamelen = namelen + 1;
2822 MALLOC(username, int *, usernamelen * sizeof(*username),
2823 M_TEMP, M_WAITOK);
2824 bcopy(name, username + 1, namelen * sizeof(*name));
2825 username[0] = CTL_VFS;
2826 error = userland_sysctl(p, username, usernamelen, oldp,
2827 oldlenp, newp, newlen, oldlenp);
2828 FREE(username, M_TEMP);
2829 return (error);
2830 }
2831
2832 /*
2833 * Dump vnode list (via sysctl) - defunct
2834 * use "pstat" instead
2835 */
2836 /* ARGSUSED */
2837 int
2838 sysctl_vnode
2839 (__unused struct sysctl_oid *oidp, __unused void *arg1, __unused int arg2, __unused struct sysctl_req *req)
2840 {
2841 return(EINVAL);
2842 }
2843
2844 SYSCTL_PROC(_kern, KERN_VNODE, vnode,
2845 CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_MASKED | CTLFLAG_LOCKED,
2846 0, 0, sysctl_vnode, "S,", "");
2847
2848
2849 /*
2850 * Check to see if a filesystem is mounted on a block device.
2851 */
2852 int
2853 vfs_mountedon(struct vnode *vp)
2854 {
2855 struct vnode *vq;
2856 int error = 0;
2857
2858 SPECHASH_LOCK();
2859 if (vp->v_specflags & SI_MOUNTEDON) {
2860 error = EBUSY;
2861 goto out;
2862 }
2863 if (vp->v_specflags & SI_ALIASED) {
2864 for (vq = *vp->v_hashchain; vq; vq = vq->v_specnext) {
2865 if (vq->v_rdev != vp->v_rdev ||
2866 vq->v_type != vp->v_type)
2867 continue;
2868 if (vq->v_specflags & SI_MOUNTEDON) {
2869 error = EBUSY;
2870 break;
2871 }
2872 }
2873 }
2874 out:
2875 SPECHASH_UNLOCK();
2876 return (error);
2877 }
2878
2879 /*
2880 * Unmount all filesystems. The list is traversed in reverse order
2881 * of mounting to avoid dependencies.
2882 */
2883 __private_extern__ void
2884 vfs_unmountall(void)
2885 {
2886 struct mount *mp;
2887 int error;
2888
2889 /*
2890 * Since this only runs when rebooting, it is not interlocked.
2891 */
2892 mount_list_lock();
2893 while(!TAILQ_EMPTY(&mountlist)) {
2894 mp = TAILQ_LAST(&mountlist, mntlist);
2895 mount_list_unlock();
2896 error = dounmount(mp, MNT_FORCE, 0, vfs_context_current());
2897 if ((error != 0) && (error != EBUSY)) {
2898 printf("unmount of %s failed (", mp->mnt_vfsstat.f_mntonname);
2899 printf("%d)\n", error);
2900 mount_list_lock();
2901 TAILQ_REMOVE(&mountlist, mp, mnt_list);
2902 continue;
2903 } else if (error == EBUSY) {
2904 /* If EBUSY is returned, the unmount was already in progress */
2905 printf("unmount of %p failed (", mp);
2906 printf("BUSY)\n");
2907 }
2908 mount_list_lock();
2909 }
2910 mount_list_unlock();
2911 }
2912
2913
2914 /*
2915 * This routine is called from vnode_pager_deallocate out of the VM
2916 * The path to vnode_pager_deallocate can only be initiated by ubc_destroy_named
2917 * on a vnode that has a UBCINFO
2918 */
2919 __private_extern__ void
2920 vnode_pager_vrele(vnode_t vp)
2921 {
2922 struct ubc_info *uip;
2923
2924 vnode_lock_spin(vp);
2925
2926 vp->v_lflag &= ~VNAMED_UBC;
2927
2928 uip = vp->v_ubcinfo;
2929 vp->v_ubcinfo = UBC_INFO_NULL;
2930
2931 vnode_unlock(vp);
2932
2933 ubc_info_deallocate(uip);
2934 }
2935
2936
2937 #include <sys/disk.h>
2938
2939 u_int32_t rootunit = (u_int32_t)-1;
2940
2941 errno_t
2942 vfs_init_io_attributes(vnode_t devvp, mount_t mp)
2943 {
2944 int error;
2945 off_t readblockcnt = 0;
2946 off_t writeblockcnt = 0;
2947 off_t readmaxcnt = 0;
2948 off_t writemaxcnt = 0;
2949 off_t readsegcnt = 0;
2950 off_t writesegcnt = 0;
2951 off_t readsegsize = 0;
2952 off_t writesegsize = 0;
2953 off_t alignment = 0;
2954 off_t ioqueue_depth = 0;
2955 u_int32_t blksize;
2956 u_int64_t temp;
2957 u_int32_t features;
2958 vfs_context_t ctx = vfs_context_current();
2959 int isssd = 0;
2960 int isvirtual = 0;
2961
2962
2963 VNOP_IOCTL(devvp, DKIOCGETTHROTTLEMASK, (caddr_t)&mp->mnt_throttle_mask, 0, NULL);
2964 /*
2965 * as a reasonable approximation, only use the lowest bit of the mask
2966 * to generate a disk unit number
2967 */
2968 mp->mnt_devbsdunit = num_trailing_0(mp->mnt_throttle_mask);
2969
2970 if (devvp == rootvp)
2971 rootunit = mp->mnt_devbsdunit;
2972
2973 if (mp->mnt_devbsdunit == rootunit) {
2974 /*
2975 * this mount point exists on the same device as the root
2976 * partition, so it comes under the hard throttle control...
2977 * this is true even for the root mount point itself
2978 */
2979 mp->mnt_kern_flag |= MNTK_ROOTDEV;
2980 }
2981 /*
2982 * force the spec device to re-cache
2983 * the underlying block size in case
2984 * the filesystem overrode the initial value
2985 */
2986 set_fsblocksize(devvp);
2987
2988
2989 if ((error = VNOP_IOCTL(devvp, DKIOCGETBLOCKSIZE,
2990 (caddr_t)&blksize, 0, ctx)))
2991 return (error);
2992
2993 mp->mnt_devblocksize = blksize;
2994
2995 /*
2996 * set the maximum possible I/O size
2997 * this may get clipped to a smaller value
2998 * based on which constraints are being advertised
2999 * and if those advertised constraints result in a smaller
3000 * limit for a given I/O
3001 */
3002 mp->mnt_maxreadcnt = MAX_UPL_SIZE * PAGE_SIZE;
3003 mp->mnt_maxwritecnt = MAX_UPL_SIZE * PAGE_SIZE;
3004
3005 if (VNOP_IOCTL(devvp, DKIOCISVIRTUAL, (caddr_t)&isvirtual, 0, ctx) == 0) {
3006 if (isvirtual)
3007 mp->mnt_kern_flag |= MNTK_VIRTUALDEV;
3008 }
3009 if (VNOP_IOCTL(devvp, DKIOCISSOLIDSTATE, (caddr_t)&isssd, 0, ctx) == 0) {
3010 if (isssd)
3011 mp->mnt_kern_flag |= MNTK_SSD;
3012 }
3013 if ((error = VNOP_IOCTL(devvp, DKIOCGETFEATURES,
3014 (caddr_t)&features, 0, ctx)))
3015 return (error);
3016
3017 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTREAD,
3018 (caddr_t)&readblockcnt, 0, ctx)))
3019 return (error);
3020
3021 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTWRITE,
3022 (caddr_t)&writeblockcnt, 0, ctx)))
3023 return (error);
3024
3025 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTREAD,
3026 (caddr_t)&readmaxcnt, 0, ctx)))
3027 return (error);
3028
3029 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTWRITE,
3030 (caddr_t)&writemaxcnt, 0, ctx)))
3031 return (error);
3032
3033 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTREAD,
3034 (caddr_t)&readsegcnt, 0, ctx)))
3035 return (error);
3036
3037 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTWRITE,
3038 (caddr_t)&writesegcnt, 0, ctx)))
3039 return (error);
3040
3041 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTBYTECOUNTREAD,
3042 (caddr_t)&readsegsize, 0, ctx)))
3043 return (error);
3044
3045 if ((error = VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTBYTECOUNTWRITE,
3046 (caddr_t)&writesegsize, 0, ctx)))
3047 return (error);
3048
3049 if ((error = VNOP_IOCTL(devvp, DKIOCGETMINSEGMENTALIGNMENTBYTECOUNT,
3050 (caddr_t)&alignment, 0, ctx)))
3051 return (error);
3052
3053 if ((error = VNOP_IOCTL(devvp, DKIOCGETCOMMANDPOOLSIZE,
3054 (caddr_t)&ioqueue_depth, 0, ctx)))
3055 return (error);
3056
3057 if (readmaxcnt)
3058 mp->mnt_maxreadcnt = (readmaxcnt > UINT32_MAX) ? UINT32_MAX : readmaxcnt;
3059
3060 if (readblockcnt) {
3061 temp = readblockcnt * blksize;
3062 temp = (temp > UINT32_MAX) ? UINT32_MAX : temp;
3063
3064 if (temp < mp->mnt_maxreadcnt)
3065 mp->mnt_maxreadcnt = (u_int32_t)temp;
3066 }
3067
3068 if (writemaxcnt)
3069 mp->mnt_maxwritecnt = (writemaxcnt > UINT32_MAX) ? UINT32_MAX : writemaxcnt;
3070
3071 if (writeblockcnt) {
3072 temp = writeblockcnt * blksize;
3073 temp = (temp > UINT32_MAX) ? UINT32_MAX : temp;
3074
3075 if (temp < mp->mnt_maxwritecnt)
3076 mp->mnt_maxwritecnt = (u_int32_t)temp;
3077 }
3078
3079 if (readsegcnt) {
3080 temp = (readsegcnt > UINT16_MAX) ? UINT16_MAX : readsegcnt;
3081 } else {
3082 temp = mp->mnt_maxreadcnt / PAGE_SIZE;
3083
3084 if (temp > UINT16_MAX)
3085 temp = UINT16_MAX;
3086 }
3087 mp->mnt_segreadcnt = (u_int16_t)temp;
3088
3089 if (writesegcnt) {
3090 temp = (writesegcnt > UINT16_MAX) ? UINT16_MAX : writesegcnt;
3091 } else {
3092 temp = mp->mnt_maxwritecnt / PAGE_SIZE;
3093
3094 if (temp > UINT16_MAX)
3095 temp = UINT16_MAX;
3096 }
3097 mp->mnt_segwritecnt = (u_int16_t)temp;
3098
3099 if (readsegsize)
3100 temp = (readsegsize > UINT32_MAX) ? UINT32_MAX : readsegsize;
3101 else
3102 temp = mp->mnt_maxreadcnt;
3103 mp->mnt_maxsegreadsize = (u_int32_t)temp;
3104
3105 if (writesegsize)
3106 temp = (writesegsize > UINT32_MAX) ? UINT32_MAX : writesegsize;
3107 else
3108 temp = mp->mnt_maxwritecnt;
3109 mp->mnt_maxsegwritesize = (u_int32_t)temp;
3110
3111 if (alignment)
3112 temp = (alignment > PAGE_SIZE) ? PAGE_MASK : alignment - 1;
3113 else
3114 temp = 0;
3115 mp->mnt_alignmentmask = temp;
3116
3117
3118 if (ioqueue_depth > MNT_DEFAULT_IOQUEUE_DEPTH)
3119 temp = ioqueue_depth;
3120 else
3121 temp = MNT_DEFAULT_IOQUEUE_DEPTH;
3122
3123 mp->mnt_ioqueue_depth = temp;
3124 mp->mnt_ioscale = (mp->mnt_ioqueue_depth + (MNT_DEFAULT_IOQUEUE_DEPTH - 1)) / MNT_DEFAULT_IOQUEUE_DEPTH;
3125
3126 if (mp->mnt_ioscale > 1)
3127 printf("ioqueue_depth = %d, ioscale = %d\n", (int)mp->mnt_ioqueue_depth, (int)mp->mnt_ioscale);
3128
3129 if (features & DK_FEATURE_FORCE_UNIT_ACCESS)
3130 mp->mnt_ioflags |= MNT_IOFLAGS_FUA_SUPPORTED;
3131
3132 if (features & DK_FEATURE_UNMAP)
3133 mp->mnt_ioflags |= MNT_IOFLAGS_UNMAP_SUPPORTED;
3134
3135 return (error);
3136 }
3137
3138 static struct klist fs_klist;
3139 lck_grp_t *fs_klist_lck_grp;
3140 lck_mtx_t *fs_klist_lock;
3141
3142 void
3143 vfs_event_init(void)
3144 {
3145
3146 klist_init(&fs_klist);
3147 fs_klist_lck_grp = lck_grp_alloc_init("fs_klist", NULL);
3148 fs_klist_lock = lck_mtx_alloc_init(fs_klist_lck_grp, NULL);
3149 }
3150
3151 void
3152 vfs_event_signal(fsid_t *fsid, u_int32_t event, intptr_t data)
3153 {
3154 if (event == VQ_DEAD || event == VQ_NOTRESP) {
3155 struct mount *mp = vfs_getvfs(fsid);
3156 if (mp) {
3157 mount_lock_spin(mp);
3158 if (data)
3159 mp->mnt_kern_flag &= ~MNT_LNOTRESP; // Now responding
3160 else
3161 mp->mnt_kern_flag |= MNT_LNOTRESP; // Not responding
3162 mount_unlock(mp);
3163 }
3164 }
3165
3166 lck_mtx_lock(fs_klist_lock);
3167 KNOTE(&fs_klist, event);
3168 lck_mtx_unlock(fs_klist_lock);
3169 }
3170
3171 /*
3172 * return the number of mounted filesystems.
3173 */
3174 static int
3175 sysctl_vfs_getvfscnt(void)
3176 {
3177 return(mount_getvfscnt());
3178 }
3179
3180
3181 static int
3182 mount_getvfscnt(void)
3183 {
3184 int ret;
3185
3186 mount_list_lock();
3187 ret = nummounts;
3188 mount_list_unlock();
3189 return (ret);
3190
3191 }
3192
3193
3194
3195 static int
3196 mount_fillfsids(fsid_t *fsidlst, int count)
3197 {
3198 struct mount *mp;
3199 int actual=0;
3200
3201 actual = 0;
3202 mount_list_lock();
3203 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3204 if (actual <= count) {
3205 fsidlst[actual] = mp->mnt_vfsstat.f_fsid;
3206 actual++;
3207 }
3208 }
3209 mount_list_unlock();
3210 return (actual);
3211
3212 }
3213
3214 /*
3215 * fill in the array of fsid_t's up to a max of 'count', the actual
3216 * number filled in will be set in '*actual'. If there are more fsid_t's
3217 * than room in fsidlst then ENOMEM will be returned and '*actual' will
3218 * have the actual count.
3219 * having *actual filled out even in the error case is depended upon.
3220 */
3221 static int
3222 sysctl_vfs_getvfslist(fsid_t *fsidlst, int count, int *actual)
3223 {
3224 struct mount *mp;
3225
3226 *actual = 0;
3227 mount_list_lock();
3228 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3229 (*actual)++;
3230 if (*actual <= count)
3231 fsidlst[(*actual) - 1] = mp->mnt_vfsstat.f_fsid;
3232 }
3233 mount_list_unlock();
3234 return (*actual <= count ? 0 : ENOMEM);
3235 }
3236
3237 static int
3238 sysctl_vfs_vfslist(__unused struct sysctl_oid *oidp, __unused void *arg1,
3239 __unused int arg2, struct sysctl_req *req)
3240 {
3241 int actual, error;
3242 size_t space;
3243 fsid_t *fsidlst;
3244
3245 /* This is a readonly node. */
3246 if (req->newptr != USER_ADDR_NULL)
3247 return (EPERM);
3248
3249 /* they are querying us so just return the space required. */
3250 if (req->oldptr == USER_ADDR_NULL) {
3251 req->oldidx = sysctl_vfs_getvfscnt() * sizeof(fsid_t);
3252 return 0;
3253 }
3254 again:
3255 /*
3256 * Retrieve an accurate count of the amount of space required to copy
3257 * out all the fsids in the system.
3258 */
3259 space = req->oldlen;
3260 req->oldlen = sysctl_vfs_getvfscnt() * sizeof(fsid_t);
3261
3262 /* they didn't give us enough space. */
3263 if (space < req->oldlen)
3264 return (ENOMEM);
3265
3266 MALLOC(fsidlst, fsid_t *, req->oldlen, M_TEMP, M_WAITOK);
3267 if (fsidlst == NULL) {
3268 return (ENOMEM);
3269 }
3270
3271 error = sysctl_vfs_getvfslist(fsidlst, req->oldlen / sizeof(fsid_t),
3272 &actual);
3273 /*
3274 * If we get back ENOMEM, then another mount has been added while we
3275 * slept in malloc above. If this is the case then try again.
3276 */
3277 if (error == ENOMEM) {
3278 FREE(fsidlst, M_TEMP);
3279 req->oldlen = space;
3280 goto again;
3281 }
3282 if (error == 0) {
3283 error = SYSCTL_OUT(req, fsidlst, actual * sizeof(fsid_t));
3284 }
3285 FREE(fsidlst, M_TEMP);
3286 return (error);
3287 }
3288
3289 /*
3290 * Do a sysctl by fsid.
3291 */
3292 static int
3293 sysctl_vfs_ctlbyfsid(__unused struct sysctl_oid *oidp, void *arg1, int arg2,
3294 struct sysctl_req *req)
3295 {
3296 union union_vfsidctl vc;
3297 struct mount *mp;
3298 struct vfsstatfs *sp;
3299 int *name, flags, namelen;
3300 int error=0, gotref=0;
3301 vfs_context_t ctx = vfs_context_current();
3302 proc_t p = req->p; /* XXX req->p != current_proc()? */
3303 boolean_t is_64_bit;
3304
3305 name = arg1;
3306 namelen = arg2;
3307 is_64_bit = proc_is64bit(p);
3308
3309 error = SYSCTL_IN(req, &vc, is_64_bit? sizeof(vc.vc64):sizeof(vc.vc32));
3310 if (error)
3311 goto out;
3312 if (vc.vc32.vc_vers != VFS_CTL_VERS1) { /* works for 32 and 64 */
3313 error = EINVAL;
3314 goto out;
3315 }
3316 mp = mount_list_lookupby_fsid(&vc.vc32.vc_fsid, 0, 1); /* works for 32 and 64 */
3317 if (mp == NULL) {
3318 error = ENOENT;
3319 goto out;
3320 }
3321 gotref = 1;
3322 /* reset so that the fs specific code can fetch it. */
3323 req->newidx = 0;
3324 /*
3325 * Note if this is a VFS_CTL then we pass the actual sysctl req
3326 * in for "oldp" so that the lower layer can DTRT and use the
3327 * SYSCTL_IN/OUT routines.
3328 */
3329 if (mp->mnt_op->vfs_sysctl != NULL) {
3330 if (is_64_bit) {
3331 if (vfs_64bitready(mp)) {
3332 error = mp->mnt_op->vfs_sysctl(name, namelen,
3333 CAST_USER_ADDR_T(req),
3334 NULL, USER_ADDR_NULL, 0,
3335 ctx);
3336 }
3337 else {
3338 error = ENOTSUP;
3339 }
3340 }
3341 else {
3342 error = mp->mnt_op->vfs_sysctl(name, namelen,
3343 CAST_USER_ADDR_T(req),
3344 NULL, USER_ADDR_NULL, 0,
3345 ctx);
3346 }
3347 if (error != ENOTSUP) {
3348 goto out;
3349 }
3350 }
3351 switch (name[0]) {
3352 case VFS_CTL_UMOUNT:
3353 req->newidx = 0;
3354 if (is_64_bit) {
3355 req->newptr = vc.vc64.vc_ptr;
3356 req->newlen = (size_t)vc.vc64.vc_len;
3357 }
3358 else {
3359 req->newptr = CAST_USER_ADDR_T(vc.vc32.vc_ptr);
3360 req->newlen = vc.vc32.vc_len;
3361 }
3362 error = SYSCTL_IN(req, &flags, sizeof(flags));
3363 if (error)
3364 break;
3365
3366 mount_ref(mp, 0);
3367 mount_iterdrop(mp);
3368 gotref = 0;
3369 /* safedounmount consumes a ref */
3370 error = safedounmount(mp, flags, ctx);
3371 break;
3372 case VFS_CTL_STATFS:
3373 req->newidx = 0;
3374 if (is_64_bit) {
3375 req->newptr = vc.vc64.vc_ptr;
3376 req->newlen = (size_t)vc.vc64.vc_len;
3377 }
3378 else {
3379 req->newptr = CAST_USER_ADDR_T(vc.vc32.vc_ptr);
3380 req->newlen = vc.vc32.vc_len;
3381 }
3382 error = SYSCTL_IN(req, &flags, sizeof(flags));
3383 if (error)
3384 break;
3385 sp = &mp->mnt_vfsstat;
3386 if (((flags & MNT_NOWAIT) == 0 || (flags & (MNT_WAIT | MNT_DWAIT))) &&
3387 (error = vfs_update_vfsstat(mp, ctx, VFS_USER_EVENT)))
3388 goto out;
3389 if (is_64_bit) {
3390 struct user64_statfs sfs;
3391 bzero(&sfs, sizeof(sfs));
3392 sfs.f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
3393 sfs.f_type = mp->mnt_vtable->vfc_typenum;
3394 sfs.f_bsize = (user64_long_t)sp->f_bsize;
3395 sfs.f_iosize = (user64_long_t)sp->f_iosize;
3396 sfs.f_blocks = (user64_long_t)sp->f_blocks;
3397 sfs.f_bfree = (user64_long_t)sp->f_bfree;
3398 sfs.f_bavail = (user64_long_t)sp->f_bavail;
3399 sfs.f_files = (user64_long_t)sp->f_files;
3400 sfs.f_ffree = (user64_long_t)sp->f_ffree;
3401 sfs.f_fsid = sp->f_fsid;
3402 sfs.f_owner = sp->f_owner;
3403
3404 if (mp->mnt_kern_flag & MNTK_TYPENAME_OVERRIDE) {
3405 strlcpy(&sfs.f_fstypename[0], &mp->fstypename_override[0], MFSTYPENAMELEN);
3406 } else {
3407 strlcpy(sfs.f_fstypename, sp->f_fstypename, MFSNAMELEN);
3408 }
3409 strlcpy(sfs.f_mntonname, sp->f_mntonname, MNAMELEN);
3410 strlcpy(sfs.f_mntfromname, sp->f_mntfromname, MNAMELEN);
3411
3412 error = SYSCTL_OUT(req, &sfs, sizeof(sfs));
3413 }
3414 else {
3415 struct user32_statfs sfs;
3416 bzero(&sfs, sizeof(sfs));
3417 sfs.f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
3418 sfs.f_type = mp->mnt_vtable->vfc_typenum;
3419
3420 /*
3421 * It's possible for there to be more than 2^^31 blocks in the filesystem, so we
3422 * have to fudge the numbers here in that case. We inflate the blocksize in order
3423 * to reflect the filesystem size as best we can.
3424 */
3425 if (sp->f_blocks > INT_MAX) {
3426 int shift;
3427
3428 /*
3429 * Work out how far we have to shift the block count down to make it fit.
3430 * Note that it's possible to have to shift so far that the resulting
3431 * blocksize would be unreportably large. At that point, we will clip
3432 * any values that don't fit.
3433 *
3434 * For safety's sake, we also ensure that f_iosize is never reported as
3435 * being smaller than f_bsize.
3436 */
3437 for (shift = 0; shift < 32; shift++) {
3438 if ((sp->f_blocks >> shift) <= INT_MAX)
3439 break;
3440 if ((((long long)sp->f_bsize) << (shift + 1)) > INT_MAX)
3441 break;
3442 }
3443 #define __SHIFT_OR_CLIP(x, s) ((((x) >> (s)) > INT_MAX) ? INT_MAX : ((x) >> (s)))
3444 sfs.f_blocks = (user32_long_t)__SHIFT_OR_CLIP(sp->f_blocks, shift);
3445 sfs.f_bfree = (user32_long_t)__SHIFT_OR_CLIP(sp->f_bfree, shift);
3446 sfs.f_bavail = (user32_long_t)__SHIFT_OR_CLIP(sp->f_bavail, shift);
3447 #undef __SHIFT_OR_CLIP
3448 sfs.f_bsize = (user32_long_t)(sp->f_bsize << shift);
3449 sfs.f_iosize = lmax(sp->f_iosize, sp->f_bsize);
3450 } else {
3451 sfs.f_bsize = (user32_long_t)sp->f_bsize;
3452 sfs.f_iosize = (user32_long_t)sp->f_iosize;
3453 sfs.f_blocks = (user32_long_t)sp->f_blocks;
3454 sfs.f_bfree = (user32_long_t)sp->f_bfree;
3455 sfs.f_bavail = (user32_long_t)sp->f_bavail;
3456 }
3457 sfs.f_files = (user32_long_t)sp->f_files;
3458 sfs.f_ffree = (user32_long_t)sp->f_ffree;
3459 sfs.f_fsid = sp->f_fsid;
3460 sfs.f_owner = sp->f_owner;
3461
3462 if (mp->mnt_kern_flag & MNTK_TYPENAME_OVERRIDE) {
3463 strlcpy(&sfs.f_fstypename[0], &mp->fstypename_override[0], MFSTYPENAMELEN);
3464 } else {
3465 strlcpy(sfs.f_fstypename, sp->f_fstypename, MFSNAMELEN);
3466 }
3467 strlcpy(sfs.f_mntonname, sp->f_mntonname, MNAMELEN);
3468 strlcpy(sfs.f_mntfromname, sp->f_mntfromname, MNAMELEN);
3469
3470 error = SYSCTL_OUT(req, &sfs, sizeof(sfs));
3471 }
3472 break;
3473 default:
3474 error = ENOTSUP;
3475 goto out;
3476 }
3477 out:
3478 if(gotref != 0)
3479 mount_iterdrop(mp);
3480 return (error);
3481 }
3482
3483 static int filt_fsattach(struct knote *kn);
3484 static void filt_fsdetach(struct knote *kn);
3485 static int filt_fsevent(struct knote *kn, long hint);
3486 struct filterops fs_filtops = {
3487 .f_attach = filt_fsattach,
3488 .f_detach = filt_fsdetach,
3489 .f_event = filt_fsevent,
3490 };
3491
3492 static int
3493 filt_fsattach(struct knote *kn)
3494 {
3495
3496 lck_mtx_lock(fs_klist_lock);
3497 kn->kn_flags |= EV_CLEAR;
3498 KNOTE_ATTACH(&fs_klist, kn);
3499 lck_mtx_unlock(fs_klist_lock);
3500 return (0);
3501 }
3502
3503 static void
3504 filt_fsdetach(struct knote *kn)
3505 {
3506 lck_mtx_lock(fs_klist_lock);
3507 KNOTE_DETACH(&fs_klist, kn);
3508 lck_mtx_unlock(fs_klist_lock);
3509 }
3510
3511 static int
3512 filt_fsevent(struct knote *kn, long hint)
3513 {
3514 /*
3515 * Backwards compatibility:
3516 * Other filters would do nothing if kn->kn_sfflags == 0
3517 */
3518
3519 if ((kn->kn_sfflags == 0) || (kn->kn_sfflags & hint)) {
3520 kn->kn_fflags |= hint;
3521 }
3522
3523 return (kn->kn_fflags != 0);
3524 }
3525
3526 static int
3527 sysctl_vfs_noremotehang(__unused struct sysctl_oid *oidp,
3528 __unused void *arg1, __unused int arg2, struct sysctl_req *req)
3529 {
3530 int out, error;
3531 pid_t pid;
3532 proc_t p;
3533
3534 /* We need a pid. */
3535 if (req->newptr == USER_ADDR_NULL)
3536 return (EINVAL);
3537
3538 error = SYSCTL_IN(req, &pid, sizeof(pid));
3539 if (error)
3540 return (error);
3541
3542 p = proc_find(pid < 0 ? -pid : pid);
3543 if (p == NULL)
3544 return (ESRCH);
3545
3546 /*
3547 * Fetching the value is ok, but we only fetch if the old
3548 * pointer is given.
3549 */
3550 if (req->oldptr != USER_ADDR_NULL) {
3551 out = !((p->p_flag & P_NOREMOTEHANG) == 0);
3552 proc_rele(p);
3553 error = SYSCTL_OUT(req, &out, sizeof(out));
3554 return (error);
3555 }
3556
3557 /* cansignal offers us enough security. */
3558 if (p != req->p && proc_suser(req->p) != 0) {
3559 proc_rele(p);
3560 return (EPERM);
3561 }
3562
3563 if (pid < 0)
3564 OSBitAndAtomic(~((uint32_t)P_NOREMOTEHANG), &p->p_flag);
3565 else
3566 OSBitOrAtomic(P_NOREMOTEHANG, &p->p_flag);
3567 proc_rele(p);
3568
3569 return (0);
3570 }
3571
3572 /* the vfs.generic. branch. */
3573 SYSCTL_NODE(_vfs, VFS_GENERIC, generic, CTLFLAG_RW | CTLFLAG_LOCKED, NULL, "vfs generic hinge");
3574 /* retreive a list of mounted filesystem fsid_t */
3575 SYSCTL_PROC(_vfs_generic, OID_AUTO, vfsidlist, CTLFLAG_RD | CTLFLAG_LOCKED,
3576 NULL, 0, sysctl_vfs_vfslist, "S,fsid", "List of mounted filesystem ids");
3577 /* perform operations on filesystem via fsid_t */
3578 SYSCTL_NODE(_vfs_generic, OID_AUTO, ctlbyfsid, CTLFLAG_RW | CTLFLAG_LOCKED,
3579 sysctl_vfs_ctlbyfsid, "ctlbyfsid");
3580 SYSCTL_PROC(_vfs_generic, OID_AUTO, noremotehang, CTLFLAG_RW | CTLFLAG_ANYBODY,
3581 NULL, 0, sysctl_vfs_noremotehang, "I", "noremotehang");
3582
3583
3584 long num_reusedvnodes = 0;
3585
3586
3587 static vnode_t
3588 process_vp(vnode_t vp, int want_vp, int *deferred)
3589 {
3590 unsigned int vpid;
3591
3592 *deferred = 0;
3593
3594 vpid = vp->v_id;
3595
3596 vnode_list_remove_locked(vp);
3597
3598 vnode_list_unlock();
3599
3600 vnode_lock_spin(vp);
3601
3602 /*
3603 * We could wait for the vnode_lock after removing the vp from the freelist
3604 * and the vid is bumped only at the very end of reclaim. So it is possible
3605 * that we are looking at a vnode that is being terminated. If so skip it.
3606 */
3607 if ((vpid != vp->v_id) || (vp->v_usecount != 0) || (vp->v_iocount != 0) ||
3608 VONLIST(vp) || (vp->v_lflag & VL_TERMINATE)) {
3609 /*
3610 * we lost the race between dropping the list lock
3611 * and picking up the vnode_lock... someone else
3612 * used this vnode and it is now in a new state
3613 */
3614 vnode_unlock(vp);
3615
3616 return (NULLVP);
3617 }
3618 if ( (vp->v_lflag & (VL_NEEDINACTIVE | VL_MARKTERM)) == VL_NEEDINACTIVE ) {
3619 /*
3620 * we did a vnode_rele_ext that asked for
3621 * us not to reenter the filesystem during
3622 * the release even though VL_NEEDINACTIVE was
3623 * set... we'll do it here by doing a
3624 * vnode_get/vnode_put
3625 *
3626 * pick up an iocount so that we can call
3627 * vnode_put and drive the VNOP_INACTIVE...
3628 * vnode_put will either leave us off
3629 * the freelist if a new ref comes in,
3630 * or put us back on the end of the freelist
3631 * or recycle us if we were marked for termination...
3632 * so we'll just go grab a new candidate
3633 */
3634 vp->v_iocount++;
3635 #ifdef JOE_DEBUG
3636 record_vp(vp, 1);
3637 #endif
3638 vnode_put_locked(vp);
3639 vnode_unlock(vp);
3640
3641 return (NULLVP);
3642 }
3643 /*
3644 * Checks for anyone racing us for recycle
3645 */
3646 if (vp->v_type != VBAD) {
3647 if (want_vp && vnode_on_reliable_media(vp) == FALSE) {
3648 vnode_async_list_add(vp);
3649 vnode_unlock(vp);
3650
3651 *deferred = 1;
3652
3653 return (NULLVP);
3654 }
3655 if (vp->v_lflag & VL_DEAD)
3656 panic("new_vnode(%p): the vnode is VL_DEAD but not VBAD", vp);
3657
3658 vnode_lock_convert(vp);
3659 (void)vnode_reclaim_internal(vp, 1, want_vp, 0);
3660
3661 if (want_vp) {
3662 if ((VONLIST(vp)))
3663 panic("new_vnode(%p): vp on list", vp);
3664 if (vp->v_usecount || vp->v_iocount || vp->v_kusecount ||
3665 (vp->v_lflag & (VNAMED_UBC | VNAMED_MOUNT | VNAMED_FSHASH)))
3666 panic("new_vnode(%p): free vnode still referenced", vp);
3667 if ((vp->v_mntvnodes.tqe_prev != 0) && (vp->v_mntvnodes.tqe_next != 0))
3668 panic("new_vnode(%p): vnode seems to be on mount list", vp);
3669 if ( !LIST_EMPTY(&vp->v_nclinks) || !LIST_EMPTY(&vp->v_ncchildren))
3670 panic("new_vnode(%p): vnode still hooked into the name cache", vp);
3671 } else {
3672 vnode_unlock(vp);
3673 vp = NULLVP;
3674 }
3675 }
3676 return (vp);
3677 }
3678
3679
3680
3681 static void
3682 async_work_continue(void)
3683 {
3684 struct async_work_lst *q;
3685 int deferred;
3686 vnode_t vp;
3687
3688 q = &vnode_async_work_list;
3689
3690 for (;;) {
3691
3692 vnode_list_lock();
3693
3694 if ( TAILQ_EMPTY(q) ) {
3695 assert_wait(q, (THREAD_UNINT));
3696
3697 vnode_list_unlock();
3698
3699 thread_block((thread_continue_t)async_work_continue);
3700
3701 continue;
3702 }
3703 async_work_handled++;
3704
3705 vp = TAILQ_FIRST(q);
3706
3707 vp = process_vp(vp, 0, &deferred);
3708
3709 if (vp != NULLVP)
3710 panic("found VBAD vp (%p) on async queue", vp);
3711 }
3712 }
3713
3714
3715 static int
3716 new_vnode(vnode_t *vpp)
3717 {
3718 vnode_t vp;
3719 uint32_t retries = 0, max_retries = 100; /* retry incase of tablefull */
3720 int force_alloc = 0, walk_count = 0;
3721 boolean_t need_reliable_vp = FALSE;
3722 int deferred;
3723 struct timeval initial_tv;
3724 struct timeval current_tv;
3725 #if CONFIG_VFS_FUNNEL
3726 struct unsafe_fsnode *l_unsafefs = 0;
3727 #endif /* CONFIG_VFS_FUNNEL */
3728 proc_t curproc = current_proc();
3729
3730 initial_tv.tv_sec = 0;
3731 retry:
3732 vp = NULLVP;
3733
3734 vnode_list_lock();
3735
3736 if (need_reliable_vp == TRUE)
3737 async_work_timed_out++;
3738
3739 if ((numvnodes - deadvnodes) < desiredvnodes || force_alloc) {
3740 struct timespec ts;
3741
3742 if ( !TAILQ_EMPTY(&vnode_dead_list)) {
3743 /*
3744 * Can always reuse a dead one
3745 */
3746 vp = TAILQ_FIRST(&vnode_dead_list);
3747 goto steal_this_vp;
3748 }
3749 /*
3750 * no dead vnodes available... if we're under
3751 * the limit, we'll create a new vnode
3752 */
3753 numvnodes++;
3754 vnode_list_unlock();
3755
3756 MALLOC_ZONE(vp, struct vnode *, sizeof(*vp), M_VNODE, M_WAITOK);
3757 bzero((char *)vp, sizeof(*vp));
3758 VLISTNONE(vp); /* avoid double queue removal */
3759 lck_mtx_init(&vp->v_lock, vnode_lck_grp, vnode_lck_attr);
3760
3761 klist_init(&vp->v_knotes);
3762 nanouptime(&ts);
3763 vp->v_id = ts.tv_nsec;
3764 vp->v_flag = VSTANDARD;
3765
3766 #if CONFIG_MACF
3767 if (mac_vnode_label_init_needed(vp))
3768 mac_vnode_label_init(vp);
3769 #endif /* MAC */
3770
3771 vp->v_iocount = 1;
3772 goto done;
3773 }
3774 microuptime(&current_tv);
3775
3776 #define MAX_WALK_COUNT 1000
3777
3778 if ( !TAILQ_EMPTY(&vnode_rage_list) &&
3779 (ragevnodes >= rage_limit ||
3780 (current_tv.tv_sec - rage_tv.tv_sec) >= RAGE_TIME_LIMIT)) {
3781
3782 TAILQ_FOREACH(vp, &vnode_rage_list, v_freelist) {
3783 if ( !(vp->v_listflag & VLIST_RAGE))
3784 panic("new_vnode: vp (%p) on RAGE list not marked VLIST_RAGE", vp);
3785
3786 // if we're a dependency-capable process, skip vnodes that can
3787 // cause recycling deadlocks. (i.e. this process is diskimages
3788 // helper and the vnode is in a disk image). Querying the
3789 // mnt_kern_flag for the mount's virtual device status
3790 // is safer than checking the mnt_dependent_process, which
3791 // may not be updated if there are multiple devnode layers
3792 // in between the disk image and the final consumer.
3793
3794 if ((curproc->p_flag & P_DEPENDENCY_CAPABLE) == 0 || vp->v_mount == NULL ||
3795 (vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) == 0) {
3796 /*
3797 * if need_reliable_vp == TRUE, then we've already sent one or more
3798 * non-reliable vnodes to the async thread for processing and timed
3799 * out waiting for a dead vnode to show up. Use the MAX_WALK_COUNT
3800 * mechanism to first scan for a reliable vnode before forcing
3801 * a new vnode to be created
3802 */
3803 if (need_reliable_vp == FALSE || vnode_on_reliable_media(vp) == TRUE)
3804 break;
3805 }
3806
3807 // don't iterate more than MAX_WALK_COUNT vnodes to
3808 // avoid keeping the vnode list lock held for too long.
3809
3810 if (walk_count++ > MAX_WALK_COUNT) {
3811 vp = NULL;
3812 break;
3813 }
3814 }
3815 }
3816
3817 if (vp == NULL && !TAILQ_EMPTY(&vnode_free_list)) {
3818 /*
3819 * Pick the first vp for possible reuse
3820 */
3821 walk_count = 0;
3822 TAILQ_FOREACH(vp, &vnode_free_list, v_freelist) {
3823
3824 // if we're a dependency-capable process, skip vnodes that can
3825 // cause recycling deadlocks. (i.e. this process is diskimages
3826 // helper and the vnode is in a disk image). Querying the
3827 // mnt_kern_flag for the mount's virtual device status
3828 // is safer than checking the mnt_dependent_process, which
3829 // may not be updated if there are multiple devnode layers
3830 // in between the disk image and the final consumer.
3831
3832 if ((curproc->p_flag & P_DEPENDENCY_CAPABLE) == 0 || vp->v_mount == NULL ||
3833 (vp->v_mount->mnt_kern_flag & MNTK_VIRTUALDEV) == 0) {
3834 /*
3835 * if need_reliable_vp == TRUE, then we've already sent one or more
3836 * non-reliable vnodes to the async thread for processing and timed
3837 * out waiting for a dead vnode to show up. Use the MAX_WALK_COUNT
3838 * mechanism to first scan for a reliable vnode before forcing
3839 * a new vnode to be created
3840 */
3841 if (need_reliable_vp == FALSE || vnode_on_reliable_media(vp) == TRUE)
3842 break;
3843 }
3844
3845 // don't iterate more than MAX_WALK_COUNT vnodes to
3846 // avoid keeping the vnode list lock held for too long.
3847
3848 if (walk_count++ > MAX_WALK_COUNT) {
3849 vp = NULL;
3850 break;
3851 }
3852 }
3853 }
3854
3855 //
3856 // if we don't have a vnode and the walk_count is >= MAX_WALK_COUNT
3857 // then we're trying to create a vnode on behalf of a
3858 // process like diskimages-helper that has file systems
3859 // mounted on top of itself (and thus we can't reclaim
3860 // vnodes in the file systems on top of us). if we can't
3861 // find a vnode to reclaim then we'll just have to force
3862 // the allocation.
3863 //
3864 if (vp == NULL && walk_count >= MAX_WALK_COUNT) {
3865 force_alloc = 1;
3866 vnode_list_unlock();
3867 goto retry;
3868 }
3869
3870 if (vp == NULL) {
3871 /*
3872 * we've reached the system imposed maximum number of vnodes
3873 * but there isn't a single one available
3874 * wait a bit and then retry... if we can't get a vnode
3875 * after our target number of retries, than log a complaint
3876 */
3877 if (++retries <= max_retries) {
3878 vnode_list_unlock();
3879 delay_for_interval(1, 1000 * 1000);
3880 goto retry;
3881 }
3882
3883 vnode_list_unlock();
3884 tablefull("vnode");
3885 log(LOG_EMERG, "%d desired, %d numvnodes, "
3886 "%d free, %d dead, %d rage\n",
3887 desiredvnodes, numvnodes, freevnodes, deadvnodes, ragevnodes);
3888 #if CONFIG_JETSAM
3889 /*
3890 * Running out of vnodes tends to make a system unusable. Start killing
3891 * processes that jetsam knows are killable.
3892 */
3893 if (memorystatus_kill_top_proc(TRUE, kMemorystatusFlagsKilledVnodes) < 0) {
3894 /*
3895 * If jetsam can't find any more processes to kill and there
3896 * still aren't any free vnodes, panic. Hopefully we'll get a
3897 * panic log to tell us why we ran out.
3898 */
3899 panic("vnode table is full\n");
3900 }
3901
3902 /*
3903 * Now that we've killed someone, wait a bit and continue looking
3904 * (with fewer retries before trying another kill).
3905 */
3906 delay_for_interval(3, 1000 * 1000);
3907 retries = 0;
3908 max_retries = 10;
3909 goto retry;
3910 #endif
3911
3912 *vpp = NULL;
3913 return (ENFILE);
3914 }
3915 steal_this_vp:
3916 if ((vp = process_vp(vp, 1, &deferred)) == NULLVP) {
3917 if (deferred) {
3918 int elapsed_msecs;
3919 struct timeval elapsed_tv;
3920
3921 if (initial_tv.tv_sec == 0)
3922 microuptime(&initial_tv);
3923
3924 vnode_list_lock();
3925
3926 dead_vnode_waited++;
3927 dead_vnode_wanted++;
3928
3929 /*
3930 * note that we're only going to explicitly wait 10ms
3931 * for a dead vnode to become available, since even if one
3932 * isn't available, a reliable vnode might now be available
3933 * at the head of the VRAGE or free lists... if so, we
3934 * can satisfy the new_vnode request with less latency then waiting
3935 * for the full 100ms duration we're ultimately willing to tolerate
3936 */
3937 assert_wait_timeout((caddr_t)&dead_vnode_wanted, (THREAD_INTERRUPTIBLE), 10000, NSEC_PER_USEC);
3938
3939 vnode_list_unlock();
3940
3941 thread_block(THREAD_CONTINUE_NULL);
3942
3943 microuptime(&elapsed_tv);
3944
3945 timevalsub(&elapsed_tv, &initial_tv);
3946 elapsed_msecs = elapsed_tv.tv_sec * 1000 + elapsed_tv.tv_usec / 1000;
3947
3948 if (elapsed_msecs >= 100) {
3949 /*
3950 * we've waited long enough... 100ms is
3951 * somewhat arbitrary for this case, but the
3952 * normal worst case latency used for UI
3953 * interaction is 100ms, so I've chosen to
3954 * go with that.
3955 *
3956 * setting need_reliable_vp to TRUE
3957 * forces us to find a reliable vnode
3958 * that we can process synchronously, or
3959 * to create a new one if the scan for
3960 * a reliable one hits the scan limit
3961 */
3962 need_reliable_vp = TRUE;
3963 }
3964 }
3965 goto retry;
3966 }
3967 OSAddAtomicLong(1, &num_reusedvnodes);
3968
3969
3970 #if CONFIG_VFS_FUNNEL
3971 if (vp->v_unsafefs) {
3972 l_unsafefs = vp->v_unsafefs;
3973 vp->v_unsafefs = (struct unsafe_fsnode *)NULL;
3974 }
3975 #endif /* CONFIG_VFS_FUNNEL */
3976
3977 #if CONFIG_MACF
3978 /*
3979 * We should never see VL_LABELWAIT or VL_LABEL here.
3980 * as those operations hold a reference.
3981 */
3982 assert ((vp->v_lflag & VL_LABELWAIT) != VL_LABELWAIT);
3983 assert ((vp->v_lflag & VL_LABEL) != VL_LABEL);
3984 if (vp->v_lflag & VL_LABELED) {
3985 vnode_lock_convert(vp);
3986 mac_vnode_label_recycle(vp);
3987 } else if (mac_vnode_label_init_needed(vp)) {
3988 vnode_lock_convert(vp);
3989 mac_vnode_label_init(vp);
3990 }
3991
3992 #endif /* MAC */
3993
3994 vp->v_iocount = 1;
3995 vp->v_lflag = 0;
3996 vp->v_writecount = 0;
3997 vp->v_references = 0;
3998 vp->v_iterblkflags = 0;
3999 vp->v_flag = VSTANDARD;
4000 /* vbad vnodes can point to dead_mountp */
4001 vp->v_mount = NULL;
4002 vp->v_defer_reclaimlist = (vnode_t)0;
4003
4004 vnode_unlock(vp);
4005
4006 #if CONFIG_VFS_FUNNEL
4007 if (l_unsafefs) {
4008 lck_mtx_destroy(&l_unsafefs->fsnodelock, vnode_lck_grp);
4009 FREE_ZONE((void *)l_unsafefs, sizeof(struct unsafe_fsnode), M_UNSAFEFS);
4010 }
4011 #endif /* CONFIG_VFS_FUNNEL */
4012
4013 done:
4014 *vpp = vp;
4015
4016 return (0);
4017 }
4018
4019 void
4020 vnode_lock(vnode_t vp)
4021 {
4022 lck_mtx_lock(&vp->v_lock);
4023 }
4024
4025 void
4026 vnode_lock_spin(vnode_t vp)
4027 {
4028 lck_mtx_lock_spin(&vp->v_lock);
4029 }
4030
4031 void
4032 vnode_unlock(vnode_t vp)
4033 {
4034 lck_mtx_unlock(&vp->v_lock);
4035 }
4036
4037
4038
4039 int
4040 vnode_get(struct vnode *vp)
4041 {
4042 int retval;
4043
4044 vnode_lock_spin(vp);
4045 retval = vnode_get_locked(vp);
4046 vnode_unlock(vp);
4047
4048 return(retval);
4049 }
4050
4051 int
4052 vnode_get_locked(struct vnode *vp)
4053 {
4054 #if DIAGNOSTIC
4055 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
4056 #endif
4057 if ((vp->v_iocount == 0) && (vp->v_lflag & (VL_TERMINATE | VL_DEAD))) {
4058 return(ENOENT);
4059 }
4060 vp->v_iocount++;
4061 #ifdef JOE_DEBUG
4062 record_vp(vp, 1);
4063 #endif
4064 return (0);
4065 }
4066
4067 /*
4068 * vnode_getwithvid() cuts in line in front of a vnode drain (that is,
4069 * while the vnode is draining, but at no point after that) to prevent
4070 * deadlocks when getting vnodes from filesystem hashes while holding
4071 * resources that may prevent other iocounts from being released.
4072 */
4073 int
4074 vnode_getwithvid(vnode_t vp, uint32_t vid)
4075 {
4076 return(vget_internal(vp, vid, ( VNODE_NODEAD | VNODE_WITHID | VNODE_DRAINO )));
4077 }
4078
4079 /*
4080 * vnode_getwithvid_drainok() is like vnode_getwithvid(), but *does* block behind a vnode
4081 * drain; it exists for use in the VFS name cache, where we really do want to block behind
4082 * vnode drain to prevent holding off an unmount.
4083 */
4084 int
4085 vnode_getwithvid_drainok(vnode_t vp, uint32_t vid)
4086 {
4087 return(vget_internal(vp, vid, ( VNODE_NODEAD | VNODE_WITHID )));
4088 }
4089
4090 int
4091 vnode_getwithref(vnode_t vp)
4092 {
4093 return(vget_internal(vp, 0, 0));
4094 }
4095
4096
4097 __private_extern__ int
4098 vnode_getalways(vnode_t vp)
4099 {
4100 return(vget_internal(vp, 0, VNODE_ALWAYS));
4101 }
4102
4103 int
4104 vnode_put(vnode_t vp)
4105 {
4106 int retval;
4107
4108 vnode_lock_spin(vp);
4109 retval = vnode_put_locked(vp);
4110 vnode_unlock(vp);
4111
4112 return(retval);
4113 }
4114
4115 int
4116 vnode_put_locked(vnode_t vp)
4117 {
4118 vfs_context_t ctx = vfs_context_current(); /* hoist outside loop */
4119
4120 #if DIAGNOSTIC
4121 lck_mtx_assert(&vp->v_lock, LCK_MTX_ASSERT_OWNED);
4122 #endif
4123 retry:
4124 if (vp->v_iocount < 1)
4125 panic("vnode_put(%p): iocount < 1", vp);
4126
4127 if ((vp->v_usecount > 0) || (vp->v_iocount > 1)) {
4128 vnode_dropiocount(vp);
4129 return(0);
4130 }
4131 if ((vp->v_lflag & (VL_DEAD | VL_NEEDINACTIVE)) == VL_NEEDINACTIVE) {
4132
4133 vp->v_lflag &= ~VL_NEEDINACTIVE;
4134 vnode_unlock(vp);
4135
4136 VNOP_INACTIVE(vp, ctx);
4137
4138 vnode_lock_spin(vp);
4139 /*
4140 * because we had to drop the vnode lock before calling
4141 * VNOP_INACTIVE, the state of this vnode may have changed...
4142 * we may pick up both VL_MARTERM and either
4143 * an iocount or a usecount while in the VNOP_INACTIVE call
4144 * we don't want to call vnode_reclaim_internal on a vnode
4145 * that has active references on it... so loop back around
4146 * and reevaluate the state
4147 */
4148 goto retry;
4149 }
4150 vp->v_lflag &= ~VL_NEEDINACTIVE;
4151
4152 if ((vp->v_lflag & (VL_MARKTERM | VL_TERMINATE | VL_DEAD)) == VL_MARKTERM) {
4153 vnode_lock_convert(vp);
4154 vnode_reclaim_internal(vp, 1, 1, 0);
4155 }
4156 vnode_dropiocount(vp);
4157 vnode_list_add(vp);
4158
4159 return(0);
4160 }
4161
4162 /* is vnode_t in use by others? */
4163 int
4164 vnode_isinuse(vnode_t vp, int refcnt)
4165 {
4166 return(vnode_isinuse_locked(vp, refcnt, 0));
4167 }
4168
4169
4170 static int
4171 vnode_isinuse_locked(vnode_t vp, int refcnt, int locked)
4172 {
4173 int retval = 0;
4174
4175 if (!locked)
4176 vnode_lock_spin(vp);
4177 if ((vp->v_type != VREG) && ((vp->v_usecount - vp->v_kusecount) > refcnt)) {
4178 retval = 1;
4179 goto out;
4180 }
4181 if (vp->v_type == VREG) {
4182 retval = ubc_isinuse_locked(vp, refcnt, 1);
4183 }
4184
4185 out:
4186 if (!locked)
4187 vnode_unlock(vp);
4188 return(retval);
4189 }
4190
4191
4192 /* resume vnode_t */
4193 errno_t
4194 vnode_resume(vnode_t vp)
4195 {
4196 if ((vp->v_lflag & VL_SUSPENDED) && vp->v_owner == current_thread()) {
4197
4198 vnode_lock_spin(vp);
4199 vp->v_lflag &= ~VL_SUSPENDED;
4200 vp->v_owner = NULL;
4201 vnode_unlock(vp);
4202
4203 wakeup(&vp->v_iocount);
4204 }
4205 return(0);
4206 }
4207
4208 /* suspend vnode_t
4209 * Please do not use on more than one vnode at a time as it may
4210 * cause deadlocks.
4211 * xxx should we explicity prevent this from happening?
4212 */
4213
4214 errno_t
4215 vnode_suspend(vnode_t vp)
4216 {
4217 if (vp->v_lflag & VL_SUSPENDED) {
4218 return(EBUSY);
4219 }
4220
4221 vnode_lock_spin(vp);
4222
4223 /*
4224 * xxx is this sufficient to check if a vnode_drain is
4225 * progress?
4226 */
4227
4228 if (vp->v_owner == NULL) {
4229 vp->v_lflag |= VL_SUSPENDED;
4230 vp->v_owner = current_thread();
4231 }
4232 vnode_unlock(vp);
4233
4234 return(0);
4235 }
4236
4237 /*
4238 * Release any blocked locking requests on the vnode.
4239 * Used for forced-unmounts.
4240 *
4241 * XXX What about network filesystems?
4242 */
4243 static void
4244 vnode_abort_advlocks(vnode_t vp)
4245 {
4246 if (vp->v_flag & VLOCKLOCAL)
4247 lf_abort_advlocks(vp);
4248 }
4249
4250
4251 static errno_t
4252 vnode_drain(vnode_t vp)
4253 {
4254
4255 if (vp->v_lflag & VL_DRAIN) {
4256 panic("vnode_drain: recursive drain");
4257 return(ENOENT);
4258 }
4259 vp->v_lflag |= VL_DRAIN;
4260 vp->v_owner = current_thread();
4261
4262 while (vp->v_iocount > 1)
4263 msleep(&vp->v_iocount, &vp->v_lock, PVFS, "vnode_drain", NULL);
4264
4265 vp->v_lflag &= ~VL_DRAIN;
4266
4267 return(0);
4268 }
4269
4270
4271 /*
4272 * if the number of recent references via vnode_getwithvid or vnode_getwithref
4273 * exceeds this threshold, than 'UN-AGE' the vnode by removing it from
4274 * the LRU list if it's currently on it... once the iocount and usecount both drop
4275 * to 0, it will get put back on the end of the list, effectively making it younger
4276 * this allows us to keep actively referenced vnodes in the list without having
4277 * to constantly remove and add to the list each time a vnode w/o a usecount is
4278 * referenced which costs us taking and dropping a global lock twice.
4279 */
4280 #define UNAGE_THRESHHOLD 25
4281
4282 errno_t
4283 vnode_getiocount(vnode_t vp, unsigned int vid, int vflags)
4284 {
4285 int nodead = vflags & VNODE_NODEAD;
4286 int nosusp = vflags & VNODE_NOSUSPEND;
4287 int always = vflags & VNODE_ALWAYS;
4288 int beatdrain = vflags & VNODE_DRAINO;
4289
4290 for (;;) {
4291 /*
4292 * if it is a dead vnode with deadfs
4293 */
4294 if (nodead && (vp->v_lflag & VL_DEAD) && ((vp->v_type == VBAD) || (vp->v_data == 0))) {
4295 return(ENOENT);
4296 }
4297 /*
4298 * will return VL_DEAD ones
4299 */
4300 if ((vp->v_lflag & (VL_SUSPENDED | VL_DRAIN | VL_TERMINATE)) == 0 ) {
4301 break;
4302 }
4303 /*
4304 * if suspended vnodes are to be failed
4305 */
4306 if (nosusp && (vp->v_lflag & VL_SUSPENDED)) {
4307 return(ENOENT);
4308 }
4309 /*
4310 * if you are the owner of drain/suspend/termination , can acquire iocount
4311 * check for VL_TERMINATE; it does not set owner
4312 */
4313 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED | VL_TERMINATE)) &&
4314 (vp->v_owner == current_thread())) {
4315 break;
4316 }
4317
4318 if (always != 0)
4319 break;
4320
4321 /*
4322 * In some situations, we want to get an iocount
4323 * even if the vnode is draining to prevent deadlock,
4324 * e.g. if we're in the filesystem, potentially holding
4325 * resources that could prevent other iocounts from
4326 * being released.
4327 */
4328 if (beatdrain && (vp->v_lflag & VL_DRAIN)) {
4329 break;
4330 }
4331
4332 vnode_lock_convert(vp);
4333
4334 if (vp->v_lflag & VL_TERMINATE) {
4335 vp->v_lflag |= VL_TERMWANT;
4336
4337 msleep(&vp->v_lflag, &vp->v_lock, PVFS, "vnode getiocount", NULL);
4338 } else
4339 msleep(&vp->v_iocount, &vp->v_lock, PVFS, "vnode_getiocount", NULL);
4340 }
4341 if (((vflags & VNODE_WITHID) != 0) && vid != vp->v_id) {
4342 return(ENOENT);
4343 }
4344 if (++vp->v_references >= UNAGE_THRESHHOLD) {
4345 vp->v_references = 0;
4346 vnode_list_remove(vp);
4347 }
4348 vp->v_iocount++;
4349 #ifdef JOE_DEBUG
4350 record_vp(vp, 1);
4351 #endif
4352 return(0);
4353 }
4354
4355 static void
4356 vnode_dropiocount (vnode_t vp)
4357 {
4358 if (vp->v_iocount < 1)
4359 panic("vnode_dropiocount(%p): v_iocount < 1", vp);
4360
4361 vp->v_iocount--;
4362 #ifdef JOE_DEBUG
4363 record_vp(vp, -1);
4364 #endif
4365 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED)) && (vp->v_iocount <= 1))
4366 wakeup(&vp->v_iocount);
4367 }
4368
4369
4370 void
4371 vnode_reclaim(struct vnode * vp)
4372 {
4373 vnode_reclaim_internal(vp, 0, 0, 0);
4374 }
4375
4376 __private_extern__
4377 void
4378 vnode_reclaim_internal(struct vnode * vp, int locked, int reuse, int flags)
4379 {
4380 int isfifo = 0;
4381
4382 if (!locked)
4383 vnode_lock(vp);
4384
4385 if (vp->v_lflag & VL_TERMINATE) {
4386 panic("vnode reclaim in progress");
4387 }
4388 vp->v_lflag |= VL_TERMINATE;
4389
4390 vn_clearunionwait(vp, 1);
4391
4392 vnode_drain(vp);
4393
4394 isfifo = (vp->v_type == VFIFO);
4395
4396 if (vp->v_type != VBAD)
4397 vgone(vp, flags); /* clean and reclaim the vnode */
4398
4399 /*
4400 * give the vnode a new identity so that vnode_getwithvid will fail
4401 * on any stale cache accesses...
4402 * grab the list_lock so that if we're in "new_vnode"
4403 * behind the list_lock trying to steal this vnode, the v_id is stable...
4404 * once new_vnode drops the list_lock, it will block trying to take
4405 * the vnode lock until we release it... at that point it will evaluate
4406 * whether the v_vid has changed
4407 * also need to make sure that the vnode isn't on a list where "new_vnode"
4408 * can find it after the v_id has been bumped until we are completely done
4409 * with the vnode (i.e. putting it back on a list has to be the very last
4410 * thing we do to this vnode... many of the callers of vnode_reclaim_internal
4411 * are holding an io_count on the vnode... they need to drop the io_count
4412 * BEFORE doing a vnode_list_add or make sure to hold the vnode lock until
4413 * they are completely done with the vnode
4414 */
4415 vnode_list_lock();
4416
4417 vnode_list_remove_locked(vp);
4418 vp->v_id++;
4419
4420 vnode_list_unlock();
4421
4422 if (isfifo) {
4423 struct fifoinfo * fip;
4424
4425 fip = vp->v_fifoinfo;
4426 vp->v_fifoinfo = NULL;
4427 FREE(fip, M_TEMP);
4428 }
4429 vp->v_type = VBAD;
4430
4431 if (vp->v_data)
4432 panic("vnode_reclaim_internal: cleaned vnode isn't");
4433 if (vp->v_numoutput)
4434 panic("vnode_reclaim_internal: clean vnode has pending I/O's");
4435 if (UBCINFOEXISTS(vp))
4436 panic("vnode_reclaim_internal: ubcinfo not cleaned");
4437 if (vp->v_parent)
4438 panic("vnode_reclaim_internal: vparent not removed");
4439 if (vp->v_name)
4440 panic("vnode_reclaim_internal: vname not removed");
4441
4442 vp->v_socket = NULL;
4443
4444 vp->v_lflag &= ~VL_TERMINATE;
4445 vp->v_owner = NULL;
4446
4447 KNOTE(&vp->v_knotes, NOTE_REVOKE);
4448
4449 /* Make sure that when we reuse the vnode, no knotes left over */
4450 klist_init(&vp->v_knotes);
4451
4452 if (vp->v_lflag & VL_TERMWANT) {
4453 vp->v_lflag &= ~VL_TERMWANT;
4454 wakeup(&vp->v_lflag);
4455 }
4456 if (!reuse) {
4457 /*
4458 * make sure we get on the
4459 * dead list if appropriate
4460 */
4461 vnode_list_add(vp);
4462 }
4463 if (!locked)
4464 vnode_unlock(vp);
4465 }
4466
4467 /* USAGE:
4468 * The following api creates a vnode and associates all the parameter specified in vnode_fsparam
4469 * structure and returns a vnode handle with a reference. device aliasing is handled here so checkalias
4470 * is obsoleted by this.
4471 */
4472 int
4473 vnode_create(uint32_t flavor, uint32_t size, void *data, vnode_t *vpp)
4474 {
4475 int error;
4476 int insert = 1;
4477 vnode_t vp;
4478 vnode_t nvp;
4479 vnode_t dvp;
4480 struct uthread *ut;
4481 struct componentname *cnp;
4482 struct vnode_fsparam *param = (struct vnode_fsparam *)data;
4483 #if CONFIG_TRIGGERS
4484 struct vnode_trigger_param *tinfo = NULL;
4485 #endif
4486 if (param == NULL)
4487 return (EINVAL);
4488
4489 /* Do quick sanity check on the parameters */
4490 if (param->vnfs_vtype == VBAD) {
4491 return (EINVAL);
4492 }
4493
4494 #if CONFIG_TRIGGERS
4495 if ((flavor == VNCREATE_TRIGGER) && (size == VNCREATE_TRIGGER_SIZE)) {
4496 tinfo = (struct vnode_trigger_param *)data;
4497
4498 /* Validate trigger vnode input */
4499 if ((param->vnfs_vtype != VDIR) ||
4500 (tinfo->vnt_resolve_func == NULL) ||
4501 (tinfo->vnt_flags & ~VNT_VALID_MASK)) {
4502 return (EINVAL);
4503 }
4504 /* Fall through a normal create (params will be the same) */
4505 flavor = VNCREATE_FLAVOR;
4506 size = VCREATESIZE;
4507 }
4508 #endif
4509 if ((flavor != VNCREATE_FLAVOR) || (size != VCREATESIZE))
4510 return (EINVAL);
4511
4512 if ( (error = new_vnode(&vp)) )
4513 return(error);
4514
4515 dvp = param->vnfs_dvp;
4516 cnp = param->vnfs_cnp;
4517
4518 vp->v_op = param->vnfs_vops;
4519 vp->v_type = param->vnfs_vtype;
4520 vp->v_data = param->vnfs_fsnode;
4521
4522 if (param->vnfs_markroot)
4523 vp->v_flag |= VROOT;
4524 if (param->vnfs_marksystem)
4525 vp->v_flag |= VSYSTEM;
4526 if (vp->v_type == VREG) {
4527 error = ubc_info_init_withsize(vp, param->vnfs_filesize);
4528 if (error) {
4529 #ifdef JOE_DEBUG
4530 record_vp(vp, 1);
4531 #endif
4532 vp->v_mount = NULL;
4533 vp->v_op = dead_vnodeop_p;
4534 vp->v_tag = VT_NON;
4535 vp->v_data = NULL;
4536 vp->v_type = VBAD;
4537 vp->v_lflag |= VL_DEAD;
4538
4539 vnode_put(vp);
4540 return(error);
4541 }
4542 }
4543 #ifdef JOE_DEBUG
4544 record_vp(vp, 1);
4545 #endif
4546
4547 #if CONFIG_TRIGGERS
4548 /*
4549 * For trigger vnodes, attach trigger info to vnode
4550 */
4551 if ((vp->v_type == VDIR) && (tinfo != NULL)) {
4552 /*
4553 * Note: has a side effect of incrementing trigger count on the
4554 * mount if successful, which we would need to undo on a
4555 * subsequent failure.
4556 */
4557 #ifdef JOE_DEBUG
4558 record_vp(vp, -1);
4559 #endif
4560 error = vnode_resolver_create(param->vnfs_mp, vp, tinfo, FALSE);
4561 if (error) {
4562 printf("vnode_create: vnode_resolver_create() err %d\n", error);
4563 vp->v_mount = NULL;
4564 vp->v_op = dead_vnodeop_p;
4565 vp->v_tag = VT_NON;
4566 vp->v_data = NULL;
4567 vp->v_type = VBAD;
4568 vp->v_lflag |= VL_DEAD;
4569 #ifdef JOE_DEBUG
4570 record_vp(vp, 1);
4571 #endif
4572 vnode_put(vp);
4573 return (error);
4574 }
4575 }
4576 #endif
4577 if (vp->v_type == VCHR || vp->v_type == VBLK) {
4578
4579 vp->v_tag = VT_DEVFS; /* callers will reset if needed (bdevvp) */
4580
4581 if ( (nvp = checkalias(vp, param->vnfs_rdev)) ) {
4582 /*
4583 * if checkalias returns a vnode, it will be locked
4584 *
4585 * first get rid of the unneeded vnode we acquired
4586 */
4587 vp->v_data = NULL;
4588 vp->v_op = spec_vnodeop_p;
4589 vp->v_type = VBAD;
4590 vp->v_lflag = VL_DEAD;
4591 vp->v_data = NULL;
4592 vp->v_tag = VT_NON;
4593 vnode_put(vp);
4594
4595 /*
4596 * switch to aliased vnode and finish
4597 * preparing it
4598 */
4599 vp = nvp;
4600
4601 vclean(vp, 0);
4602 vp->v_op = param->vnfs_vops;
4603 vp->v_type = param->vnfs_vtype;
4604 vp->v_data = param->vnfs_fsnode;
4605 vp->v_lflag = 0;
4606 vp->v_mount = NULL;
4607 insmntque(vp, param->vnfs_mp);
4608 insert = 0;
4609 vnode_unlock(vp);
4610 }
4611
4612 if (VCHR == vp->v_type) {
4613 u_int maj = major(vp->v_rdev);
4614
4615 if (maj < (u_int)nchrdev &&
4616 (D_TYPEMASK & cdevsw[maj].d_type) == D_TTY)
4617 vp->v_flag |= VISTTY;
4618 }
4619 }
4620
4621 if (vp->v_type == VFIFO) {
4622 struct fifoinfo *fip;
4623
4624 MALLOC(fip, struct fifoinfo *,
4625 sizeof(*fip), M_TEMP, M_WAITOK);
4626 bzero(fip, sizeof(struct fifoinfo ));
4627 vp->v_fifoinfo = fip;
4628 }
4629 /* The file systems must pass the address of the location where
4630 * they store the vnode pointer. When we add the vnode into the mount
4631 * list and name cache they become discoverable. So the file system node
4632 * must have the connection to vnode setup by then
4633 */
4634 *vpp = vp;
4635
4636 /* Add fs named reference. */
4637 if (param->vnfs_flags & VNFS_ADDFSREF) {
4638 vp->v_lflag |= VNAMED_FSHASH;
4639 }
4640 if (param->vnfs_mp) {
4641 if (param->vnfs_mp->mnt_kern_flag & MNTK_LOCK_LOCAL)
4642 vp->v_flag |= VLOCKLOCAL;
4643 if (insert) {
4644 if ((vp->v_freelist.tqe_prev != (struct vnode **)0xdeadb))
4645 panic("insmntque: vp on the free list\n");
4646
4647 /*
4648 * enter in mount vnode list
4649 */
4650 insmntque(vp, param->vnfs_mp);
4651 }
4652 #if CONFIG_VFS_FUNNEL
4653 if ((param->vnfs_mp->mnt_vtable->vfc_vfsflags & VFC_VFSTHREADSAFE) == 0) {
4654 MALLOC_ZONE(vp->v_unsafefs, struct unsafe_fsnode *,
4655 sizeof(struct unsafe_fsnode), M_UNSAFEFS, M_WAITOK);
4656 vp->v_unsafefs->fsnode_count = 0;
4657 vp->v_unsafefs->fsnodeowner = (void *)NULL;
4658 lck_mtx_init(&vp->v_unsafefs->fsnodelock, vnode_lck_grp, vnode_lck_attr);
4659 }
4660 #endif /* CONFIG_VFS_FUNNEL */
4661 }
4662 if (dvp && vnode_ref(dvp) == 0) {
4663 vp->v_parent = dvp;
4664 }
4665 if (cnp) {
4666 if (dvp && ((param->vnfs_flags & (VNFS_NOCACHE | VNFS_CANTCACHE)) == 0)) {
4667 /*
4668 * enter into name cache
4669 * we've got the info to enter it into the name cache now
4670 * cache_enter_create will pick up an extra reference on
4671 * the name entered into the string cache
4672 */
4673 vp->v_name = cache_enter_create(dvp, vp, cnp);
4674 } else
4675 vp->v_name = vfs_addname(cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_hash, 0);
4676
4677 if ((cnp->cn_flags & UNIONCREATED) == UNIONCREATED)
4678 vp->v_flag |= VISUNION;
4679 }
4680 if ((param->vnfs_flags & VNFS_CANTCACHE) == 0) {
4681 /*
4682 * this vnode is being created as cacheable in the name cache
4683 * this allows us to re-enter it in the cache
4684 */
4685 vp->v_flag |= VNCACHEABLE;
4686 }
4687 ut = get_bsdthread_info(current_thread());
4688
4689 if ((current_proc()->p_lflag & P_LRAGE_VNODES) ||
4690 (ut->uu_flag & UT_RAGE_VNODES)) {
4691 /*
4692 * process has indicated that it wants any
4693 * vnodes created on its behalf to be rapidly
4694 * aged to reduce the impact on the cached set
4695 * of vnodes
4696 */
4697 vp->v_flag |= VRAGE;
4698 }
4699 return (0);
4700 }
4701
4702 int
4703 vnode_addfsref(vnode_t vp)
4704 {
4705 vnode_lock_spin(vp);
4706 if (vp->v_lflag & VNAMED_FSHASH)
4707 panic("add_fsref: vp already has named reference");
4708 if ((vp->v_freelist.tqe_prev != (struct vnode **)0xdeadb))
4709 panic("addfsref: vp on the free list\n");
4710 vp->v_lflag |= VNAMED_FSHASH;
4711 vnode_unlock(vp);
4712 return(0);
4713
4714 }
4715 int
4716 vnode_removefsref(vnode_t vp)
4717 {
4718 vnode_lock_spin(vp);
4719 if ((vp->v_lflag & VNAMED_FSHASH) == 0)
4720 panic("remove_fsref: no named reference");
4721 vp->v_lflag &= ~VNAMED_FSHASH;
4722 vnode_unlock(vp);
4723 return(0);
4724
4725 }
4726
4727
4728 int
4729 vfs_iterate(int flags, int (*callout)(mount_t, void *), void *arg)
4730 {
4731 mount_t mp;
4732 int ret = 0;
4733 fsid_t * fsid_list;
4734 int count, actualcount, i;
4735 void * allocmem;
4736 int indx_start, indx_stop, indx_incr;
4737
4738 count = mount_getvfscnt();
4739 count += 10;
4740
4741 fsid_list = (fsid_t *)kalloc(count * sizeof(fsid_t));
4742 allocmem = (void *)fsid_list;
4743
4744 actualcount = mount_fillfsids(fsid_list, count);
4745
4746 /*
4747 * Establish the iteration direction
4748 * VFS_ITERATE_TAIL_FIRST overrides default head first order (oldest first)
4749 */
4750 if (flags & VFS_ITERATE_TAIL_FIRST) {
4751 indx_start = actualcount - 1;
4752 indx_stop = -1;
4753 indx_incr = -1;
4754 } else /* Head first by default */ {
4755 indx_start = 0;
4756 indx_stop = actualcount;
4757 indx_incr = 1;
4758 }
4759
4760 for (i=indx_start; i != indx_stop; i += indx_incr) {
4761
4762 /* obtain the mount point with iteration reference */
4763 mp = mount_list_lookupby_fsid(&fsid_list[i], 0, 1);
4764
4765 if(mp == (struct mount *)0)
4766 continue;
4767 mount_lock(mp);
4768 if (mp->mnt_lflag & (MNT_LDEAD | MNT_LUNMOUNT)) {
4769 mount_unlock(mp);
4770 mount_iterdrop(mp);
4771 continue;
4772
4773 }
4774 mount_unlock(mp);
4775
4776 /* iterate over all the vnodes */
4777 ret = callout(mp, arg);
4778
4779 mount_iterdrop(mp);
4780
4781 switch (ret) {
4782 case VFS_RETURNED:
4783 case VFS_RETURNED_DONE:
4784 if (ret == VFS_RETURNED_DONE) {
4785 ret = 0;
4786 goto out;
4787 }
4788 break;
4789
4790 case VFS_CLAIMED_DONE:
4791 ret = 0;
4792 goto out;
4793 case VFS_CLAIMED:
4794 default:
4795 break;
4796 }
4797 ret = 0;
4798 }
4799
4800 out:
4801 kfree(allocmem, (count * sizeof(fsid_t)));
4802 return (ret);
4803 }
4804
4805 /*
4806 * Update the vfsstatfs structure in the mountpoint.
4807 * MAC: Parameter eventtype added, indicating whether the event that
4808 * triggered this update came from user space, via a system call
4809 * (VFS_USER_EVENT) or an internal kernel call (VFS_KERNEL_EVENT).
4810 */
4811 int
4812 vfs_update_vfsstat(mount_t mp, vfs_context_t ctx, __unused int eventtype)
4813 {
4814 struct vfs_attr va;
4815 int error;
4816
4817 /*
4818 * Request the attributes we want to propagate into
4819 * the per-mount vfsstat structure.
4820 */
4821 VFSATTR_INIT(&va);
4822 VFSATTR_WANTED(&va, f_iosize);
4823 VFSATTR_WANTED(&va, f_blocks);
4824 VFSATTR_WANTED(&va, f_bfree);
4825 VFSATTR_WANTED(&va, f_bavail);
4826 VFSATTR_WANTED(&va, f_bused);
4827 VFSATTR_WANTED(&va, f_files);
4828 VFSATTR_WANTED(&va, f_ffree);
4829 VFSATTR_WANTED(&va, f_bsize);
4830 VFSATTR_WANTED(&va, f_fssubtype);
4831 #if CONFIG_MACF
4832 if (eventtype == VFS_USER_EVENT) {
4833 error = mac_mount_check_getattr(ctx, mp, &va);
4834 if (error != 0)
4835 return (error);
4836 }
4837 #endif
4838
4839 if ((error = vfs_getattr(mp, &va, ctx)) != 0) {
4840 KAUTH_DEBUG("STAT - filesystem returned error %d", error);
4841 return(error);
4842 }
4843
4844 /*
4845 * Unpack into the per-mount structure.
4846 *
4847 * We only overwrite these fields, which are likely to change:
4848 * f_blocks
4849 * f_bfree
4850 * f_bavail
4851 * f_bused
4852 * f_files
4853 * f_ffree
4854 *
4855 * And these which are not, but which the FS has no other way
4856 * of providing to us:
4857 * f_bsize
4858 * f_iosize
4859 * f_fssubtype
4860 *
4861 */
4862 if (VFSATTR_IS_SUPPORTED(&va, f_bsize)) {
4863 /* 4822056 - protect against malformed server mount */
4864 mp->mnt_vfsstat.f_bsize = (va.f_bsize > 0 ? va.f_bsize : 512);
4865 } else {
4866 mp->mnt_vfsstat.f_bsize = mp->mnt_devblocksize; /* default from the device block size */
4867 }
4868 if (VFSATTR_IS_SUPPORTED(&va, f_iosize)) {
4869 mp->mnt_vfsstat.f_iosize = va.f_iosize;
4870 } else {
4871 mp->mnt_vfsstat.f_iosize = 1024 * 1024; /* 1MB sensible I/O size */
4872 }
4873 if (VFSATTR_IS_SUPPORTED(&va, f_blocks))
4874 mp->mnt_vfsstat.f_blocks = va.f_blocks;
4875 if (VFSATTR_IS_SUPPORTED(&va, f_bfree))
4876 mp->mnt_vfsstat.f_bfree = va.f_bfree;
4877 if (VFSATTR_IS_SUPPORTED(&va, f_bavail))
4878 mp->mnt_vfsstat.f_bavail = va.f_bavail;
4879 if (VFSATTR_IS_SUPPORTED(&va, f_bused))
4880 mp->mnt_vfsstat.f_bused = va.f_bused;
4881 if (VFSATTR_IS_SUPPORTED(&va, f_files))
4882 mp->mnt_vfsstat.f_files = va.f_files;
4883 if (VFSATTR_IS_SUPPORTED(&va, f_ffree))
4884 mp->mnt_vfsstat.f_ffree = va.f_ffree;
4885
4886 /* this is unlikely to change, but has to be queried for */
4887 if (VFSATTR_IS_SUPPORTED(&va, f_fssubtype))
4888 mp->mnt_vfsstat.f_fssubtype = va.f_fssubtype;
4889
4890 return(0);
4891 }
4892
4893 int
4894 mount_list_add(mount_t mp)
4895 {
4896 int res;
4897
4898 mount_list_lock();
4899 if (system_inshutdown != 0) {
4900 res = -1;
4901 } else {
4902 TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
4903 nummounts++;
4904 res = 0;
4905 }
4906 mount_list_unlock();
4907
4908 return res;
4909 }
4910
4911 void
4912 mount_list_remove(mount_t mp)
4913 {
4914 mount_list_lock();
4915 TAILQ_REMOVE(&mountlist, mp, mnt_list);
4916 nummounts--;
4917 mp->mnt_list.tqe_next = NULL;
4918 mp->mnt_list.tqe_prev = NULL;
4919 mount_list_unlock();
4920 }
4921
4922 mount_t
4923 mount_lookupby_volfsid(int volfs_id, int withref)
4924 {
4925 mount_t cur_mount = (mount_t)0;
4926 mount_t mp;
4927
4928 mount_list_lock();
4929 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
4930 if (!(mp->mnt_kern_flag & MNTK_UNMOUNT) &&
4931 (mp->mnt_kern_flag & MNTK_PATH_FROM_ID) &&
4932 (mp->mnt_vfsstat.f_fsid.val[0] == volfs_id)) {
4933 cur_mount = mp;
4934 if (withref) {
4935 if (mount_iterref(cur_mount, 1)) {
4936 cur_mount = (mount_t)0;
4937 mount_list_unlock();
4938 goto out;
4939 }
4940 }
4941 break;
4942 }
4943 }
4944 mount_list_unlock();
4945 if (withref && (cur_mount != (mount_t)0)) {
4946 mp = cur_mount;
4947 if (vfs_busy(mp, LK_NOWAIT) != 0) {
4948 cur_mount = (mount_t)0;
4949 }
4950 mount_iterdrop(mp);
4951 }
4952 out:
4953 return(cur_mount);
4954 }
4955
4956 mount_t
4957 mount_list_lookupby_fsid(fsid_t *fsid, int locked, int withref)
4958 {
4959 mount_t retmp = (mount_t)0;
4960 mount_t mp;
4961
4962 if (!locked)
4963 mount_list_lock();
4964 TAILQ_FOREACH(mp, &mountlist, mnt_list)
4965 if (mp->mnt_vfsstat.f_fsid.val[0] == fsid->val[0] &&
4966 mp->mnt_vfsstat.f_fsid.val[1] == fsid->val[1]) {
4967 retmp = mp;
4968 if (withref) {
4969 if (mount_iterref(retmp, 1))
4970 retmp = (mount_t)0;
4971 }
4972 goto out;
4973 }
4974 out:
4975 if (!locked)
4976 mount_list_unlock();
4977 return (retmp);
4978 }
4979
4980 errno_t
4981 vnode_lookup(const char *path, int flags, vnode_t *vpp, vfs_context_t ctx)
4982 {
4983 struct nameidata nd;
4984 int error;
4985 u_int32_t ndflags = 0;
4986
4987 if (ctx == NULL) { /* XXX technically an error */
4988 ctx = vfs_context_current();
4989 }
4990
4991 if (flags & VNODE_LOOKUP_NOFOLLOW)
4992 ndflags = NOFOLLOW;
4993 else
4994 ndflags = FOLLOW;
4995
4996 if (flags & VNODE_LOOKUP_NOCROSSMOUNT)
4997 ndflags |= NOCROSSMOUNT;
4998 if (flags & VNODE_LOOKUP_DOWHITEOUT)
4999 ndflags |= DOWHITEOUT;
5000
5001 /* XXX AUDITVNPATH1 needed ? */
5002 NDINIT(&nd, LOOKUP, OP_LOOKUP, ndflags, UIO_SYSSPACE,
5003 CAST_USER_ADDR_T(path), ctx);
5004
5005 if ((error = namei(&nd)))
5006 return (error);
5007 *vpp = nd.ni_vp;
5008 nameidone(&nd);
5009
5010 return (0);
5011 }
5012
5013 errno_t
5014 vnode_open(const char *path, int fmode, int cmode, int flags, vnode_t *vpp, vfs_context_t ctx)
5015 {
5016 struct nameidata nd;
5017 int error;
5018 u_int32_t ndflags = 0;
5019 int lflags = flags;
5020
5021 if (ctx == NULL) { /* XXX technically an error */
5022 ctx = vfs_context_current();
5023 }
5024
5025 if (fmode & O_NOFOLLOW)
5026 lflags |= VNODE_LOOKUP_NOFOLLOW;
5027
5028 if (lflags & VNODE_LOOKUP_NOFOLLOW)
5029 ndflags = NOFOLLOW;
5030 else
5031 ndflags = FOLLOW;
5032
5033 if (lflags & VNODE_LOOKUP_NOCROSSMOUNT)
5034 ndflags |= NOCROSSMOUNT;
5035 if (lflags & VNODE_LOOKUP_DOWHITEOUT)
5036 ndflags |= DOWHITEOUT;
5037
5038 /* XXX AUDITVNPATH1 needed ? */
5039 NDINIT(&nd, LOOKUP, OP_OPEN, ndflags, UIO_SYSSPACE,
5040 CAST_USER_ADDR_T(path), ctx);
5041
5042 if ((error = vn_open(&nd, fmode, cmode)))
5043 *vpp = NULL;
5044 else
5045 *vpp = nd.ni_vp;
5046
5047 return (error);
5048 }
5049
5050 errno_t
5051 vnode_close(vnode_t vp, int flags, vfs_context_t ctx)
5052 {
5053 int error;
5054
5055 if (ctx == NULL) {
5056 ctx = vfs_context_current();
5057 }
5058
5059 error = vn_close(vp, flags, ctx);
5060 vnode_put(vp);
5061 return (error);
5062 }
5063
5064 /*
5065 * Returns: 0 Success
5066 * vnode_getattr:???
5067 */
5068 errno_t
5069 vnode_size(vnode_t vp, off_t *sizep, vfs_context_t ctx)
5070 {
5071 struct vnode_attr va;
5072 int error;
5073
5074 VATTR_INIT(&va);
5075 VATTR_WANTED(&va, va_data_size);
5076 error = vnode_getattr(vp, &va, ctx);
5077 if (!error)
5078 *sizep = va.va_data_size;
5079 return(error);
5080 }
5081
5082 errno_t
5083 vnode_setsize(vnode_t vp, off_t size, int ioflag, vfs_context_t ctx)
5084 {
5085 struct vnode_attr va;
5086
5087 VATTR_INIT(&va);
5088 VATTR_SET(&va, va_data_size, size);
5089 va.va_vaflags = ioflag & 0xffff;
5090 return(vnode_setattr(vp, &va, ctx));
5091 }
5092
5093 static int
5094 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)
5095 {
5096 /* Only use compound VNOP for compound operation */
5097 if (vnode_compound_open_available(dvp) && ((flags & VN_CREATE_DOOPEN) != 0)) {
5098 *vpp = NULLVP;
5099 return VNOP_COMPOUND_OPEN(dvp, vpp, ndp, VNOP_COMPOUND_OPEN_DO_CREATE, fmode, statusp, vap, ctx);
5100 } else {
5101 return VNOP_CREATE(dvp, vpp, &ndp->ni_cnd, vap, ctx);
5102 }
5103 }
5104
5105 /*
5106 * Create a filesystem object of arbitrary type with arbitrary attributes in
5107 * the spevied directory with the specified name.
5108 *
5109 * Parameters: dvp Pointer to the vnode of the directory
5110 * in which to create the object.
5111 * vpp Pointer to the area into which to
5112 * return the vnode of the created object.
5113 * cnp Component name pointer from the namei
5114 * data structure, containing the name to
5115 * use for the create object.
5116 * vap Pointer to the vnode_attr structure
5117 * describing the object to be created,
5118 * including the type of object.
5119 * flags VN_* flags controlling ACL inheritance
5120 * and whether or not authorization is to
5121 * be required for the operation.
5122 *
5123 * Returns: 0 Success
5124 * !0 errno value
5125 *
5126 * Implicit: *vpp Contains the vnode of the object that
5127 * was created, if successful.
5128 * *cnp May be modified by the underlying VFS.
5129 * *vap May be modified by the underlying VFS.
5130 * modified by either ACL inheritance or
5131 *
5132 *
5133 * be modified, even if the operation is
5134 *
5135 *
5136 * Notes: The kauth_filesec_t in 'vap', if any, is in host byte order.
5137 *
5138 * Modification of '*cnp' and '*vap' by the underlying VFS is
5139 * strongly discouraged.
5140 *
5141 * XXX: This function is a 'vn_*' function; it belongs in vfs_vnops.c
5142 *
5143 * XXX: We should enummerate the possible errno values here, and where
5144 * in the code they originated.
5145 */
5146 errno_t
5147 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)
5148 {
5149 errno_t error, old_error;
5150 vnode_t vp = (vnode_t)0;
5151 boolean_t batched;
5152 struct componentname *cnp;
5153 uint32_t defaulted;
5154
5155 cnp = &ndp->ni_cnd;
5156 error = 0;
5157 batched = namei_compound_available(dvp, ndp) ? TRUE : FALSE;
5158
5159 KAUTH_DEBUG("%p CREATE - '%s'", dvp, cnp->cn_nameptr);
5160
5161 if (flags & VN_CREATE_NOINHERIT)
5162 vap->va_vaflags |= VA_NOINHERIT;
5163 if (flags & VN_CREATE_NOAUTH)
5164 vap->va_vaflags |= VA_NOAUTH;
5165 /*
5166 * Handle ACL inheritance, initialize vap.
5167 */
5168 error = vn_attribute_prepare(dvp, vap, &defaulted, ctx);
5169 if (error) {
5170 return error;
5171 }
5172
5173 if (vap->va_type != VREG && (fmode != 0 || (flags & VN_CREATE_DOOPEN) || statusp)) {
5174 panic("Open parameters, but not a regular file.");
5175 }
5176 if ((fmode != 0) && ((flags & VN_CREATE_DOOPEN) == 0)) {
5177 panic("Mode for open, but not trying to open...");
5178 }
5179
5180 /*
5181 * Create the requested node.
5182 */
5183 switch(vap->va_type) {
5184 case VREG:
5185 error = vn_create_reg(dvp, vpp, ndp, vap, flags, fmode, statusp, ctx);
5186 break;
5187 case VDIR:
5188 error = vn_mkdir(dvp, vpp, ndp, vap, ctx);
5189 break;
5190 case VSOCK:
5191 case VFIFO:
5192 case VBLK:
5193 case VCHR:
5194 error = VNOP_MKNOD(dvp, vpp, cnp, vap, ctx);
5195 break;
5196 default:
5197 panic("vnode_create: unknown vtype %d", vap->va_type);
5198 }
5199 if (error != 0) {
5200 KAUTH_DEBUG("%p CREATE - error %d returned by filesystem", dvp, error);
5201 goto out;
5202 }
5203
5204 vp = *vpp;
5205 old_error = error;
5206
5207 #if CONFIG_MACF
5208 if (!(flags & VN_CREATE_NOLABEL)) {
5209 error = vnode_label(vnode_mount(vp), dvp, vp, cnp, VNODE_LABEL_CREATE, ctx);
5210 if (error)
5211 goto error;
5212 }
5213 #endif
5214
5215 /*
5216 * If some of the requested attributes weren't handled by the VNOP,
5217 * use our fallback code.
5218 */
5219 if (!VATTR_ALL_SUPPORTED(vap) && *vpp) {
5220 KAUTH_DEBUG(" CREATE - doing fallback with ACL %p", vap->va_acl);
5221 error = vnode_setattr_fallback(*vpp, vap, ctx);
5222 }
5223 #if CONFIG_MACF
5224 error:
5225 #endif
5226 if ((error != 0) && (vp != (vnode_t)0)) {
5227
5228 /* If we've done a compound open, close */
5229 if (batched && (old_error == 0) && (vap->va_type == VREG)) {
5230 VNOP_CLOSE(vp, fmode, ctx);
5231 }
5232
5233 /* Need to provide notifications if a create succeeded */
5234 if (!batched) {
5235 *vpp = (vnode_t) 0;
5236 vnode_put(vp);
5237 }
5238 }
5239
5240 out:
5241 vn_attribute_cleanup(vap, defaulted);
5242
5243 return(error);
5244 }
5245
5246 static kauth_scope_t vnode_scope;
5247 static int vnode_authorize_callback(kauth_cred_t credential, void *idata, kauth_action_t action,
5248 uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3);
5249 static int vnode_authorize_callback_int(__unused kauth_cred_t credential, __unused void *idata, kauth_action_t action,
5250 uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3);
5251
5252 typedef struct _vnode_authorize_context {
5253 vnode_t vp;
5254 struct vnode_attr *vap;
5255 vnode_t dvp;
5256 struct vnode_attr *dvap;
5257 vfs_context_t ctx;
5258 int flags;
5259 int flags_valid;
5260 #define _VAC_IS_OWNER (1<<0)
5261 #define _VAC_IN_GROUP (1<<1)
5262 #define _VAC_IS_DIR_OWNER (1<<2)
5263 #define _VAC_IN_DIR_GROUP (1<<3)
5264 } *vauth_ctx;
5265
5266 void
5267 vnode_authorize_init(void)
5268 {
5269 vnode_scope = kauth_register_scope(KAUTH_SCOPE_VNODE, vnode_authorize_callback, NULL);
5270 }
5271
5272 #define VATTR_PREPARE_DEFAULTED_UID 0x1
5273 #define VATTR_PREPARE_DEFAULTED_GID 0x2
5274 #define VATTR_PREPARE_DEFAULTED_MODE 0x4
5275
5276 int
5277 vn_attribute_prepare(vnode_t dvp, struct vnode_attr *vap, uint32_t *defaulted_fieldsp, vfs_context_t ctx)
5278 {
5279 kauth_acl_t nacl = NULL, oacl = NULL;
5280 int error;
5281
5282 /*
5283 * Handle ACL inheritance.
5284 */
5285 if (!(vap->va_vaflags & VA_NOINHERIT) && vfs_extendedsecurity(dvp->v_mount)) {
5286 /* save the original filesec */
5287 if (VATTR_IS_ACTIVE(vap, va_acl)) {
5288 oacl = vap->va_acl;
5289 }
5290
5291 vap->va_acl = NULL;
5292 if ((error = kauth_acl_inherit(dvp,
5293 oacl,
5294 &nacl,
5295 vap->va_type == VDIR,
5296 ctx)) != 0) {
5297 KAUTH_DEBUG("%p CREATE - error %d processing inheritance", dvp, error);
5298 return(error);
5299 }
5300
5301 /*
5302 * If the generated ACL is NULL, then we can save ourselves some effort
5303 * by clearing the active bit.
5304 */
5305 if (nacl == NULL) {
5306 VATTR_CLEAR_ACTIVE(vap, va_acl);
5307 } else {
5308 vap->va_base_acl = oacl;
5309 VATTR_SET(vap, va_acl, nacl);
5310 }
5311 }
5312
5313 error = vnode_authattr_new_internal(dvp, vap, (vap->va_vaflags & VA_NOAUTH), defaulted_fieldsp, ctx);
5314 if (error) {
5315 vn_attribute_cleanup(vap, *defaulted_fieldsp);
5316 }
5317
5318 return error;
5319 }
5320
5321 void
5322 vn_attribute_cleanup(struct vnode_attr *vap, uint32_t defaulted_fields)
5323 {
5324 /*
5325 * If the caller supplied a filesec in vap, it has been replaced
5326 * now by the post-inheritance copy. We need to put the original back
5327 * and free the inherited product.
5328 */
5329 kauth_acl_t nacl, oacl;
5330
5331 if (VATTR_IS_ACTIVE(vap, va_acl)) {
5332 nacl = vap->va_acl;
5333 oacl = vap->va_base_acl;
5334
5335 if (oacl) {
5336 VATTR_SET(vap, va_acl, oacl);
5337 vap->va_base_acl = NULL;
5338 } else {
5339 VATTR_CLEAR_ACTIVE(vap, va_acl);
5340 }
5341
5342 if (nacl != NULL) {
5343 kauth_acl_free(nacl);
5344 }
5345 }
5346
5347 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_MODE) != 0) {
5348 VATTR_CLEAR_ACTIVE(vap, va_mode);
5349 }
5350 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_GID) != 0) {
5351 VATTR_CLEAR_ACTIVE(vap, va_gid);
5352 }
5353 if ((defaulted_fields & VATTR_PREPARE_DEFAULTED_UID) != 0) {
5354 VATTR_CLEAR_ACTIVE(vap, va_uid);
5355 }
5356
5357 return;
5358 }
5359
5360 int
5361 vn_authorize_unlink(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, __unused void *reserved)
5362 {
5363 int error = 0;
5364
5365 /*
5366 * Normally, unlinking of directories is not supported.
5367 * However, some file systems may have limited support.
5368 */
5369 if ((vp->v_type == VDIR) &&
5370 !(vp->v_mount->mnt_vtable->vfc_vfsflags & VFC_VFSDIRLINKS)) {
5371 return (EPERM); /* POSIX */
5372 }
5373
5374 /* authorize the delete operation */
5375 #if CONFIG_MACF
5376 if (!error)
5377 error = mac_vnode_check_unlink(ctx, dvp, vp, cnp);
5378 #endif /* MAC */
5379 if (!error)
5380 error = vnode_authorize(vp, dvp, KAUTH_VNODE_DELETE, ctx);
5381
5382 return error;
5383 }
5384
5385 int
5386 vn_authorize_open_existing(vnode_t vp, struct componentname *cnp, int fmode, vfs_context_t ctx, void *reserved)
5387 {
5388 /* Open of existing case */
5389 kauth_action_t action;
5390 int error = 0;
5391
5392 if (cnp->cn_ndp == NULL) {
5393 panic("NULL ndp");
5394 }
5395 if (reserved != NULL) {
5396 panic("reserved not NULL.");
5397 }
5398
5399 #if CONFIG_MACF
5400 /* XXX may do duplicate work here, but ignore that for now (idempotent) */
5401 if (vfs_flags(vnode_mount(vp)) & MNT_MULTILABEL) {
5402 error = vnode_label(vnode_mount(vp), NULL, vp, NULL, 0, ctx);
5403 if (error)
5404 return (error);
5405 }
5406 #endif
5407
5408 if ( (fmode & O_DIRECTORY) && vp->v_type != VDIR ) {
5409 return (ENOTDIR);
5410 }
5411
5412 if (vp->v_type == VSOCK && vp->v_tag != VT_FDESC) {
5413 return (EOPNOTSUPP); /* Operation not supported on socket */
5414 }
5415
5416 if (vp->v_type == VLNK && (fmode & O_NOFOLLOW) != 0) {
5417 return (ELOOP); /* O_NOFOLLOW was specified and the target is a symbolic link */
5418 }
5419
5420 /* disallow write operations on directories */
5421 if (vnode_isdir(vp) && (fmode & (FWRITE | O_TRUNC))) {
5422 return (EISDIR);
5423 }
5424
5425 if ((cnp->cn_ndp->ni_flag & NAMEI_TRAILINGSLASH)) {
5426 if (vp->v_type != VDIR) {
5427 return (ENOTDIR);
5428 }
5429 }
5430
5431 #if CONFIG_MACF
5432 /* If a file being opened is a shadow file containing
5433 * namedstream data, ignore the macf checks because it
5434 * is a kernel internal file and access should always
5435 * be allowed.
5436 */
5437 if (!(vnode_isshadow(vp) && vnode_isnamedstream(vp))) {
5438 error = mac_vnode_check_open(ctx, vp, fmode);
5439 if (error) {
5440 return (error);
5441 }
5442 }
5443 #endif
5444
5445 /* compute action to be authorized */
5446 action = 0;
5447 if (fmode & FREAD) {
5448 action |= KAUTH_VNODE_READ_DATA;
5449 }
5450 if (fmode & (FWRITE | O_TRUNC)) {
5451 /*
5452 * If we are writing, appending, and not truncating,
5453 * indicate that we are appending so that if the
5454 * UF_APPEND or SF_APPEND bits are set, we do not deny
5455 * the open.
5456 */
5457 if ((fmode & O_APPEND) && !(fmode & O_TRUNC)) {
5458 action |= KAUTH_VNODE_APPEND_DATA;
5459 } else {
5460 action |= KAUTH_VNODE_WRITE_DATA;
5461 }
5462 }
5463 return (vnode_authorize(vp, NULL, action, ctx));
5464 }
5465
5466 int
5467 vn_authorize_create(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved)
5468 {
5469 /* Creation case */
5470 int error;
5471
5472 if (cnp->cn_ndp == NULL) {
5473 panic("NULL cn_ndp");
5474 }
5475 if (reserved != NULL) {
5476 panic("reserved not NULL.");
5477 }
5478
5479 /* Only validate path for creation if we didn't do a complete lookup */
5480 if (cnp->cn_ndp->ni_flag & NAMEI_UNFINISHED) {
5481 error = lookup_validate_creation_path(cnp->cn_ndp);
5482 if (error)
5483 return (error);
5484 }
5485
5486 #if CONFIG_MACF
5487 error = mac_vnode_check_create(ctx, dvp, cnp, vap);
5488 if (error)
5489 return (error);
5490 #endif /* CONFIG_MACF */
5491
5492 return (vnode_authorize(dvp, NULL, KAUTH_VNODE_ADD_FILE, ctx));
5493 }
5494
5495 int
5496 vn_authorize_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp,
5497 struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp,
5498 vfs_context_t ctx, void *reserved)
5499 {
5500 int error = 0;
5501 int moving = 0;
5502
5503 if (reserved != NULL) {
5504 panic("Passed something other than NULL as reserved field!");
5505 }
5506
5507 /*
5508 * Avoid renaming "." and "..".
5509 *
5510 * XXX No need to check for this in the FS. We should always have the leaves
5511 * in VFS in this case.
5512 */
5513 if (fvp->v_type == VDIR &&
5514 ((fdvp == fvp) ||
5515 (fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
5516 ((fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT)) ) {
5517 error = EINVAL;
5518 goto out;
5519 }
5520
5521 if (tvp == NULLVP && vnode_compound_rename_available(tdvp)) {
5522 error = lookup_validate_creation_path(tcnp->cn_ndp);
5523 if (error)
5524 goto out;
5525 }
5526
5527 /***** <MACF> *****/
5528 #if CONFIG_MACF
5529 error = mac_vnode_check_rename_from(ctx, fdvp, fvp, fcnp);
5530 if (error)
5531 goto out;
5532 #endif
5533
5534 #if CONFIG_MACF
5535 error = mac_vnode_check_rename_to(ctx,
5536 tdvp, tvp, fdvp == tdvp, tcnp);
5537 if (error)
5538 goto out;
5539 #endif
5540 /***** </MACF> *****/
5541
5542 /***** <MiscChecks> *****/
5543 if (tvp != NULL) {
5544 if (fvp->v_type == VDIR && tvp->v_type != VDIR) {
5545 error = ENOTDIR;
5546 goto out;
5547 } else if (fvp->v_type != VDIR && tvp->v_type == VDIR) {
5548 error = EISDIR;
5549 goto out;
5550 }
5551 }
5552
5553 if (fvp == tdvp) {
5554 error = EINVAL;
5555 goto out;
5556 }
5557
5558 /*
5559 * The following edge case is caught here:
5560 * (to cannot be a descendent of from)
5561 *
5562 * o fdvp
5563 * /
5564 * /
5565 * o fvp
5566 * \
5567 * \
5568 * o tdvp
5569 * /
5570 * /
5571 * o tvp
5572 */
5573 if (tdvp->v_parent == fvp) {
5574 error = EINVAL;
5575 goto out;
5576 }
5577 /***** </MiscChecks> *****/
5578
5579 /***** <Kauth> *****/
5580
5581 error = 0;
5582 if ((tvp != NULL) && vnode_isdir(tvp)) {
5583 if (tvp != fdvp)
5584 moving = 1;
5585 } else if (tdvp != fdvp) {
5586 moving = 1;
5587 }
5588
5589
5590 /*
5591 * must have delete rights to remove the old name even in
5592 * the simple case of fdvp == tdvp.
5593 *
5594 * If fvp is a directory, and we are changing it's parent,
5595 * then we also need rights to rewrite its ".." entry as well.
5596 */
5597 if (vnode_isdir(fvp)) {
5598 if ((error = vnode_authorize(fvp, fdvp, KAUTH_VNODE_DELETE | KAUTH_VNODE_ADD_SUBDIRECTORY, ctx)) != 0)
5599 goto out;
5600 } else {
5601 if ((error = vnode_authorize(fvp, fdvp, KAUTH_VNODE_DELETE, ctx)) != 0)
5602 goto out;
5603 }
5604 if (moving) {
5605 /* moving into tdvp or tvp, must have rights to add */
5606 if ((error = vnode_authorize(((tvp != NULL) && vnode_isdir(tvp)) ? tvp : tdvp,
5607 NULL,
5608 vnode_isdir(fvp) ? KAUTH_VNODE_ADD_SUBDIRECTORY : KAUTH_VNODE_ADD_FILE,
5609 ctx)) != 0) {
5610 goto out;
5611 }
5612 } else {
5613 /* node staying in same directory, must be allowed to add new name */
5614 if ((error = vnode_authorize(fdvp, NULL,
5615 vnode_isdir(fvp) ? KAUTH_VNODE_ADD_SUBDIRECTORY : KAUTH_VNODE_ADD_FILE, ctx)) != 0)
5616 goto out;
5617 }
5618 /* overwriting tvp */
5619 if ((tvp != NULL) && !vnode_isdir(tvp) &&
5620 ((error = vnode_authorize(tvp, tdvp, KAUTH_VNODE_DELETE, ctx)) != 0)) {
5621 goto out;
5622 }
5623
5624 /***** </Kauth> *****/
5625
5626 /* XXX more checks? */
5627 out:
5628 return error;
5629 }
5630
5631 int
5632 vn_authorize_mkdir(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved)
5633 {
5634 int error;
5635
5636 if (reserved != NULL) {
5637 panic("reserved not NULL in vn_authorize_mkdir()");
5638 }
5639
5640 /* XXX A hack for now, to make shadow files work */
5641 if (cnp->cn_ndp == NULL) {
5642 return 0;
5643 }
5644
5645 if (vnode_compound_mkdir_available(dvp)) {
5646 error = lookup_validate_creation_path(cnp->cn_ndp);
5647 if (error)
5648 goto out;
5649 }
5650
5651 #if CONFIG_MACF
5652 error = mac_vnode_check_create(ctx,
5653 dvp, cnp, vap);
5654 if (error)
5655 goto out;
5656 #endif
5657
5658 /* authorize addition of a directory to the parent */
5659 if ((error = vnode_authorize(dvp, NULL, KAUTH_VNODE_ADD_SUBDIRECTORY, ctx)) != 0)
5660 goto out;
5661
5662 out:
5663 return error;
5664 }
5665
5666 int
5667 vn_authorize_rmdir(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved)
5668 {
5669 int error;
5670
5671 if (reserved != NULL) {
5672 panic("Non-NULL reserved argument to vn_authorize_rmdir()");
5673 }
5674
5675 if (vp->v_type != VDIR) {
5676 /*
5677 * rmdir only deals with directories
5678 */
5679 return ENOTDIR;
5680 }
5681
5682 if (dvp == vp) {
5683 /*
5684 * No rmdir "." please.
5685 */
5686 return EINVAL;
5687 }
5688
5689 #if CONFIG_MACF
5690 error = mac_vnode_check_unlink(ctx, dvp,
5691 vp, cnp);
5692 if (error)
5693 return error;
5694 #endif
5695
5696 return vnode_authorize(vp, dvp, KAUTH_VNODE_DELETE, ctx);
5697 }
5698
5699 /*
5700 * Authorize an operation on a vnode.
5701 *
5702 * This is KPI, but here because it needs vnode_scope.
5703 *
5704 * Returns: 0 Success
5705 * kauth_authorize_action:EPERM ...
5706 * xlate => EACCES Permission denied
5707 * kauth_authorize_action:0 Success
5708 * kauth_authorize_action: Depends on callback return; this is
5709 * usually only vnode_authorize_callback(),
5710 * but may include other listerners, if any
5711 * exist.
5712 * EROFS
5713 * EACCES
5714 * EPERM
5715 * ???
5716 */
5717 int
5718 vnode_authorize(vnode_t vp, vnode_t dvp, kauth_action_t action, vfs_context_t ctx)
5719 {
5720 int error, result;
5721
5722 /*
5723 * We can't authorize against a dead vnode; allow all operations through so that
5724 * the correct error can be returned.
5725 */
5726 if (vp->v_type == VBAD)
5727 return(0);
5728
5729 error = 0;
5730 result = kauth_authorize_action(vnode_scope, vfs_context_ucred(ctx), action,
5731 (uintptr_t)ctx, (uintptr_t)vp, (uintptr_t)dvp, (uintptr_t)&error);
5732 if (result == EPERM) /* traditional behaviour */
5733 result = EACCES;
5734 /* did the lower layers give a better error return? */
5735 if ((result != 0) && (error != 0))
5736 return(error);
5737 return(result);
5738 }
5739
5740 /*
5741 * Test for vnode immutability.
5742 *
5743 * The 'append' flag is set when the authorization request is constrained
5744 * to operations which only request the right to append to a file.
5745 *
5746 * The 'ignore' flag is set when an operation modifying the immutability flags
5747 * is being authorized. We check the system securelevel to determine which
5748 * immutability flags we can ignore.
5749 */
5750 static int
5751 vnode_immutable(struct vnode_attr *vap, int append, int ignore)
5752 {
5753 int mask;
5754
5755 /* start with all bits precluding the operation */
5756 mask = IMMUTABLE | APPEND;
5757
5758 /* if appending only, remove the append-only bits */
5759 if (append)
5760 mask &= ~APPEND;
5761
5762 /* ignore only set when authorizing flags changes */
5763 if (ignore) {
5764 if (securelevel <= 0) {
5765 /* in insecure state, flags do not inhibit changes */
5766 mask = 0;
5767 } else {
5768 /* in secure state, user flags don't inhibit */
5769 mask &= ~(UF_IMMUTABLE | UF_APPEND);
5770 }
5771 }
5772 KAUTH_DEBUG("IMMUTABLE - file flags 0x%x mask 0x%x append = %d ignore = %d", vap->va_flags, mask, append, ignore);
5773 if ((vap->va_flags & mask) != 0)
5774 return(EPERM);
5775 return(0);
5776 }
5777
5778 static int
5779 vauth_node_owner(struct vnode_attr *vap, kauth_cred_t cred)
5780 {
5781 int result;
5782
5783 /* default assumption is not-owner */
5784 result = 0;
5785
5786 /*
5787 * If the filesystem has given us a UID, we treat this as authoritative.
5788 */
5789 if (vap && VATTR_IS_SUPPORTED(vap, va_uid)) {
5790 result = (vap->va_uid == kauth_cred_getuid(cred)) ? 1 : 0;
5791 }
5792 /* we could test the owner UUID here if we had a policy for it */
5793
5794 return(result);
5795 }
5796
5797 /*
5798 * vauth_node_group
5799 *
5800 * Description: Ask if a cred is a member of the group owning the vnode object
5801 *
5802 * Parameters: vap vnode attribute
5803 * vap->va_gid group owner of vnode object
5804 * cred credential to check
5805 * ismember pointer to where to put the answer
5806 * idontknow Return this if we can't get an answer
5807 *
5808 * Returns: 0 Success
5809 * idontknow Can't get information
5810 * kauth_cred_ismember_gid:? Error from kauth subsystem
5811 * kauth_cred_ismember_gid:? Error from kauth subsystem
5812 */
5813 static int
5814 vauth_node_group(struct vnode_attr *vap, kauth_cred_t cred, int *ismember, int idontknow)
5815 {
5816 int error;
5817 int result;
5818
5819 error = 0;
5820 result = 0;
5821
5822 /*
5823 * The caller is expected to have asked the filesystem for a group
5824 * at some point prior to calling this function. The answer may
5825 * have been that there is no group ownership supported for the
5826 * vnode object, in which case we return
5827 */
5828 if (vap && VATTR_IS_SUPPORTED(vap, va_gid)) {
5829 error = kauth_cred_ismember_gid(cred, vap->va_gid, &result);
5830 /*
5831 * Credentials which are opted into external group membership
5832 * resolution which are not known to the external resolver
5833 * will result in an ENOENT error. We translate this into
5834 * the appropriate 'idontknow' response for our caller.
5835 *
5836 * XXX We do not make a distinction here between an ENOENT
5837 * XXX arising from a response from the external resolver,
5838 * XXX and an ENOENT which is internally generated. This is
5839 * XXX a deficiency of the published kauth_cred_ismember_gid()
5840 * XXX KPI which can not be overcome without new KPI. For
5841 * XXX all currently known cases, however, this wil result
5842 * XXX in correct behaviour.
5843 */
5844 if (error == ENOENT)
5845 error = idontknow;
5846 }
5847 /*
5848 * XXX We could test the group UUID here if we had a policy for it,
5849 * XXX but this is problematic from the perspective of synchronizing
5850 * XXX group UUID and POSIX GID ownership of a file and keeping the
5851 * XXX values coherent over time. The problem is that the local
5852 * XXX system will vend transient group UUIDs for unknown POSIX GID
5853 * XXX values, and these are not persistent, whereas storage of values
5854 * XXX is persistent. One potential solution to this is a local
5855 * XXX (persistent) replica of remote directory entries and vended
5856 * XXX local ids in a local directory server (think in terms of a
5857 * XXX caching DNS server).
5858 */
5859
5860 if (!error)
5861 *ismember = result;
5862 return(error);
5863 }
5864
5865 static int
5866 vauth_file_owner(vauth_ctx vcp)
5867 {
5868 int result;
5869
5870 if (vcp->flags_valid & _VAC_IS_OWNER) {
5871 result = (vcp->flags & _VAC_IS_OWNER) ? 1 : 0;
5872 } else {
5873 result = vauth_node_owner(vcp->vap, vcp->ctx->vc_ucred);
5874
5875 /* cache our result */
5876 vcp->flags_valid |= _VAC_IS_OWNER;
5877 if (result) {
5878 vcp->flags |= _VAC_IS_OWNER;
5879 } else {
5880 vcp->flags &= ~_VAC_IS_OWNER;
5881 }
5882 }
5883 return(result);
5884 }
5885
5886
5887 /*
5888 * vauth_file_ingroup
5889 *
5890 * Description: Ask if a user is a member of the group owning the directory
5891 *
5892 * Parameters: vcp The vnode authorization context that
5893 * contains the user and directory info
5894 * vcp->flags_valid Valid flags
5895 * vcp->flags Flags values
5896 * vcp->vap File vnode attributes
5897 * vcp->ctx VFS Context (for user)
5898 * ismember pointer to where to put the answer
5899 * idontknow Return this if we can't get an answer
5900 *
5901 * Returns: 0 Success
5902 * vauth_node_group:? Error from vauth_node_group()
5903 *
5904 * Implicit returns: *ismember 0 The user is not a group member
5905 * 1 The user is a group member
5906 */
5907 static int
5908 vauth_file_ingroup(vauth_ctx vcp, int *ismember, int idontknow)
5909 {
5910 int error;
5911
5912 /* Check for a cached answer first, to avoid the check if possible */
5913 if (vcp->flags_valid & _VAC_IN_GROUP) {
5914 *ismember = (vcp->flags & _VAC_IN_GROUP) ? 1 : 0;
5915 error = 0;
5916 } else {
5917 /* Otherwise, go look for it */
5918 error = vauth_node_group(vcp->vap, vcp->ctx->vc_ucred, ismember, idontknow);
5919
5920 if (!error) {
5921 /* cache our result */
5922 vcp->flags_valid |= _VAC_IN_GROUP;
5923 if (*ismember) {
5924 vcp->flags |= _VAC_IN_GROUP;
5925 } else {
5926 vcp->flags &= ~_VAC_IN_GROUP;
5927 }
5928 }
5929
5930 }
5931 return(error);
5932 }
5933
5934 static int
5935 vauth_dir_owner(vauth_ctx vcp)
5936 {
5937 int result;
5938
5939 if (vcp->flags_valid & _VAC_IS_DIR_OWNER) {
5940 result = (vcp->flags & _VAC_IS_DIR_OWNER) ? 1 : 0;
5941 } else {
5942 result = vauth_node_owner(vcp->dvap, vcp->ctx->vc_ucred);
5943
5944 /* cache our result */
5945 vcp->flags_valid |= _VAC_IS_DIR_OWNER;
5946 if (result) {
5947 vcp->flags |= _VAC_IS_DIR_OWNER;
5948 } else {
5949 vcp->flags &= ~_VAC_IS_DIR_OWNER;
5950 }
5951 }
5952 return(result);
5953 }
5954
5955 /*
5956 * vauth_dir_ingroup
5957 *
5958 * Description: Ask if a user is a member of the group owning the directory
5959 *
5960 * Parameters: vcp The vnode authorization context that
5961 * contains the user and directory info
5962 * vcp->flags_valid Valid flags
5963 * vcp->flags Flags values
5964 * vcp->dvap Dir vnode attributes
5965 * vcp->ctx VFS Context (for user)
5966 * ismember pointer to where to put the answer
5967 * idontknow Return this if we can't get an answer
5968 *
5969 * Returns: 0 Success
5970 * vauth_node_group:? Error from vauth_node_group()
5971 *
5972 * Implicit returns: *ismember 0 The user is not a group member
5973 * 1 The user is a group member
5974 */
5975 static int
5976 vauth_dir_ingroup(vauth_ctx vcp, int *ismember, int idontknow)
5977 {
5978 int error;
5979
5980 /* Check for a cached answer first, to avoid the check if possible */
5981 if (vcp->flags_valid & _VAC_IN_DIR_GROUP) {
5982 *ismember = (vcp->flags & _VAC_IN_DIR_GROUP) ? 1 : 0;
5983 error = 0;
5984 } else {
5985 /* Otherwise, go look for it */
5986 error = vauth_node_group(vcp->dvap, vcp->ctx->vc_ucred, ismember, idontknow);
5987
5988 if (!error) {
5989 /* cache our result */
5990 vcp->flags_valid |= _VAC_IN_DIR_GROUP;
5991 if (*ismember) {
5992 vcp->flags |= _VAC_IN_DIR_GROUP;
5993 } else {
5994 vcp->flags &= ~_VAC_IN_DIR_GROUP;
5995 }
5996 }
5997 }
5998 return(error);
5999 }
6000
6001 /*
6002 * Test the posix permissions in (vap) to determine whether (credential)
6003 * may perform (action)
6004 */
6005 static int
6006 vnode_authorize_posix(vauth_ctx vcp, int action, int on_dir)
6007 {
6008 struct vnode_attr *vap;
6009 int needed, error, owner_ok, group_ok, world_ok, ismember;
6010 #ifdef KAUTH_DEBUG_ENABLE
6011 const char *where = "uninitialized";
6012 # define _SETWHERE(c) where = c;
6013 #else
6014 # define _SETWHERE(c)
6015 #endif
6016
6017 /* checking file or directory? */
6018 if (on_dir) {
6019 vap = vcp->dvap;
6020 } else {
6021 vap = vcp->vap;
6022 }
6023
6024 error = 0;
6025
6026 /*
6027 * We want to do as little work here as possible. So first we check
6028 * which sets of permissions grant us the access we need, and avoid checking
6029 * whether specific permissions grant access when more generic ones would.
6030 */
6031
6032 /* owner permissions */
6033 needed = 0;
6034 if (action & VREAD)
6035 needed |= S_IRUSR;
6036 if (action & VWRITE)
6037 needed |= S_IWUSR;
6038 if (action & VEXEC)
6039 needed |= S_IXUSR;
6040 owner_ok = (needed & vap->va_mode) == needed;
6041
6042 /* group permissions */
6043 needed = 0;
6044 if (action & VREAD)
6045 needed |= S_IRGRP;
6046 if (action & VWRITE)
6047 needed |= S_IWGRP;
6048 if (action & VEXEC)
6049 needed |= S_IXGRP;
6050 group_ok = (needed & vap->va_mode) == needed;
6051
6052 /* world permissions */
6053 needed = 0;
6054 if (action & VREAD)
6055 needed |= S_IROTH;
6056 if (action & VWRITE)
6057 needed |= S_IWOTH;
6058 if (action & VEXEC)
6059 needed |= S_IXOTH;
6060 world_ok = (needed & vap->va_mode) == needed;
6061
6062 /* If granted/denied by all three, we're done */
6063 if (owner_ok && group_ok && world_ok) {
6064 _SETWHERE("all");
6065 goto out;
6066 }
6067 if (!owner_ok && !group_ok && !world_ok) {
6068 _SETWHERE("all");
6069 error = EACCES;
6070 goto out;
6071 }
6072
6073 /* Check ownership (relatively cheap) */
6074 if ((on_dir && vauth_dir_owner(vcp)) ||
6075 (!on_dir && vauth_file_owner(vcp))) {
6076 _SETWHERE("user");
6077 if (!owner_ok)
6078 error = EACCES;
6079 goto out;
6080 }
6081
6082 /* Not owner; if group and world both grant it we're done */
6083 if (group_ok && world_ok) {
6084 _SETWHERE("group/world");
6085 goto out;
6086 }
6087 if (!group_ok && !world_ok) {
6088 _SETWHERE("group/world");
6089 error = EACCES;
6090 goto out;
6091 }
6092
6093 /* Check group membership (most expensive) */
6094 ismember = 0; /* Default to allow, if the target has no group owner */
6095
6096 /*
6097 * In the case we can't get an answer about the user from the call to
6098 * vauth_dir_ingroup() or vauth_file_ingroup(), we want to fail on
6099 * the side of caution, rather than simply granting access, or we will
6100 * fail to correctly implement exclusion groups, so we set the third
6101 * parameter on the basis of the state of 'group_ok'.
6102 */
6103 if (on_dir) {
6104 error = vauth_dir_ingroup(vcp, &ismember, (!group_ok ? EACCES : 0));
6105 } else {
6106 error = vauth_file_ingroup(vcp, &ismember, (!group_ok ? EACCES : 0));
6107 }
6108 if (error) {
6109 if (!group_ok)
6110 ismember = 1;
6111 error = 0;
6112 }
6113 if (ismember) {
6114 _SETWHERE("group");
6115 if (!group_ok)
6116 error = EACCES;
6117 goto out;
6118 }
6119
6120 /* Not owner, not in group, use world result */
6121 _SETWHERE("world");
6122 if (!world_ok)
6123 error = EACCES;
6124
6125 /* FALLTHROUGH */
6126
6127 out:
6128 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",
6129 vcp->vp, (error == 0) ? "ALLOWED" : "DENIED", where,
6130 (action & VREAD) ? "r" : "-",
6131 (action & VWRITE) ? "w" : "-",
6132 (action & VEXEC) ? "x" : "-",
6133 needed,
6134 (vap->va_mode & S_IRUSR) ? "r" : "-",
6135 (vap->va_mode & S_IWUSR) ? "w" : "-",
6136 (vap->va_mode & S_IXUSR) ? "x" : "-",
6137 (vap->va_mode & S_IRGRP) ? "r" : "-",
6138 (vap->va_mode & S_IWGRP) ? "w" : "-",
6139 (vap->va_mode & S_IXGRP) ? "x" : "-",
6140 (vap->va_mode & S_IROTH) ? "r" : "-",
6141 (vap->va_mode & S_IWOTH) ? "w" : "-",
6142 (vap->va_mode & S_IXOTH) ? "x" : "-",
6143 kauth_cred_getuid(vcp->ctx->vc_ucred),
6144 on_dir ? vcp->dvap->va_uid : vcp->vap->va_uid,
6145 on_dir ? vcp->dvap->va_gid : vcp->vap->va_gid);
6146 return(error);
6147 }
6148
6149 /*
6150 * Authorize the deletion of the node vp from the directory dvp.
6151 *
6152 * We assume that:
6153 * - Neither the node nor the directory are immutable.
6154 * - The user is not the superuser.
6155 *
6156 * Deletion is not permitted if the directory is sticky and the caller is
6157 * not owner of the node or directory.
6158 *
6159 * If either the node grants DELETE, or the directory grants DELETE_CHILD,
6160 * the node may be deleted. If neither denies the permission, and the
6161 * caller has Posix write access to the directory, then the node may be
6162 * deleted.
6163 *
6164 * As an optimization, we cache whether or not delete child is permitted
6165 * on directories without the sticky bit set.
6166 */
6167 int
6168 vnode_authorize_delete(vauth_ctx vcp, boolean_t cached_delete_child);
6169 /*static*/ int
6170 vnode_authorize_delete(vauth_ctx vcp, boolean_t cached_delete_child)
6171 {
6172 struct vnode_attr *vap = vcp->vap;
6173 struct vnode_attr *dvap = vcp->dvap;
6174 kauth_cred_t cred = vcp->ctx->vc_ucred;
6175 struct kauth_acl_eval eval;
6176 int error, delete_denied, delete_child_denied, ismember;
6177
6178 /* check the ACL on the directory */
6179 delete_child_denied = 0;
6180 if (!cached_delete_child && VATTR_IS_NOT(dvap, va_acl, NULL)) {
6181 eval.ae_requested = KAUTH_VNODE_DELETE_CHILD;
6182 eval.ae_acl = &dvap->va_acl->acl_ace[0];
6183 eval.ae_count = dvap->va_acl->acl_entrycount;
6184 eval.ae_options = 0;
6185 if (vauth_dir_owner(vcp))
6186 eval.ae_options |= KAUTH_AEVAL_IS_OWNER;
6187 /*
6188 * We use ENOENT as a marker to indicate we could not get
6189 * information in order to delay evaluation until after we
6190 * have the ACL evaluation answer. Previously, we would
6191 * always deny the operation at this point.
6192 */
6193 if ((error = vauth_dir_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6194 return(error);
6195 if (error == ENOENT)
6196 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6197 else if (ismember)
6198 eval.ae_options |= KAUTH_AEVAL_IN_GROUP;
6199 eval.ae_exp_gall = KAUTH_VNODE_GENERIC_ALL_BITS;
6200 eval.ae_exp_gread = KAUTH_VNODE_GENERIC_READ_BITS;
6201 eval.ae_exp_gwrite = KAUTH_VNODE_GENERIC_WRITE_BITS;
6202 eval.ae_exp_gexec = KAUTH_VNODE_GENERIC_EXECUTE_BITS;
6203
6204 /*
6205 * If there is no entry, we are going to defer to other
6206 * authorization mechanisms.
6207 */
6208 error = kauth_acl_evaluate(cred, &eval);
6209
6210 if (error != 0) {
6211 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6212 return(error);
6213 }
6214 switch(eval.ae_result) {
6215 case KAUTH_RESULT_DENY:
6216 delete_child_denied = 1;
6217 break;
6218 /* FALLSTHROUGH */
6219 case KAUTH_RESULT_ALLOW:
6220 KAUTH_DEBUG("%p ALLOWED - granted by directory ACL", vcp->vp);
6221 return(0);
6222 case KAUTH_RESULT_DEFER:
6223 default:
6224 /* Effectively the same as !delete_child_denied */
6225 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp->vp);
6226 break;
6227 }
6228 }
6229
6230 /* check the ACL on the node */
6231 delete_denied = 0;
6232 if (VATTR_IS_NOT(vap, va_acl, NULL)) {
6233 eval.ae_requested = KAUTH_VNODE_DELETE;
6234 eval.ae_acl = &vap->va_acl->acl_ace[0];
6235 eval.ae_count = vap->va_acl->acl_entrycount;
6236 eval.ae_options = 0;
6237 if (vauth_file_owner(vcp))
6238 eval.ae_options |= KAUTH_AEVAL_IS_OWNER;
6239 /*
6240 * We use ENOENT as a marker to indicate we could not get
6241 * information in order to delay evaluation until after we
6242 * have the ACL evaluation answer. Previously, we would
6243 * always deny the operation at this point.
6244 */
6245 if ((error = vauth_file_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6246 return(error);
6247 if (error == ENOENT)
6248 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6249 else if (ismember)
6250 eval.ae_options |= KAUTH_AEVAL_IN_GROUP;
6251 eval.ae_exp_gall = KAUTH_VNODE_GENERIC_ALL_BITS;
6252 eval.ae_exp_gread = KAUTH_VNODE_GENERIC_READ_BITS;
6253 eval.ae_exp_gwrite = KAUTH_VNODE_GENERIC_WRITE_BITS;
6254 eval.ae_exp_gexec = KAUTH_VNODE_GENERIC_EXECUTE_BITS;
6255
6256 if ((error = kauth_acl_evaluate(cred, &eval)) != 0) {
6257 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6258 return(error);
6259 }
6260
6261 switch(eval.ae_result) {
6262 case KAUTH_RESULT_DENY:
6263 delete_denied = 1;
6264 break;
6265 case KAUTH_RESULT_ALLOW:
6266 KAUTH_DEBUG("%p ALLOWED - granted by file ACL", vcp->vp);
6267 return(0);
6268 case KAUTH_RESULT_DEFER:
6269 default:
6270 /* Effectively the same as !delete_child_denied */
6271 KAUTH_DEBUG("%p DEFERRED%s - by file ACL", vcp->vp, delete_denied ? "(DENY)" : "");
6272 break;
6273 }
6274 }
6275
6276 /* if denied by ACL on directory or node, return denial */
6277 if (delete_denied || delete_child_denied) {
6278 KAUTH_DEBUG("%p DENIED - denied by ACL", vcp->vp);
6279 return(EACCES);
6280 }
6281
6282 /* enforce sticky bit behaviour */
6283 if ((dvap->va_mode & S_ISTXT) && !vauth_file_owner(vcp) && !vauth_dir_owner(vcp)) {
6284 KAUTH_DEBUG("%p DENIED - sticky bit rules (user %d file %d dir %d)",
6285 vcp->vp, cred->cr_posix.cr_uid, vap->va_uid, dvap->va_uid);
6286 return(EACCES);
6287 }
6288
6289 /* check the directory */
6290 if (!cached_delete_child && (error = vnode_authorize_posix(vcp, VWRITE, 1 /* on_dir */)) != 0) {
6291 KAUTH_DEBUG("%p DENIED - denied by posix permisssions", vcp->vp);
6292 return(error);
6293 }
6294
6295 /* not denied, must be OK */
6296 return(0);
6297 }
6298
6299
6300 /*
6301 * Authorize an operation based on the node's attributes.
6302 */
6303 static int
6304 vnode_authorize_simple(vauth_ctx vcp, kauth_ace_rights_t acl_rights, kauth_ace_rights_t preauth_rights, boolean_t *found_deny)
6305 {
6306 struct vnode_attr *vap = vcp->vap;
6307 kauth_cred_t cred = vcp->ctx->vc_ucred;
6308 struct kauth_acl_eval eval;
6309 int error, ismember;
6310 mode_t posix_action;
6311
6312 /*
6313 * If we are the file owner, we automatically have some rights.
6314 *
6315 * Do we need to expand this to support group ownership?
6316 */
6317 if (vauth_file_owner(vcp))
6318 acl_rights &= ~(KAUTH_VNODE_WRITE_SECURITY);
6319
6320 /*
6321 * If we are checking both TAKE_OWNERSHIP and WRITE_SECURITY, we can
6322 * mask the latter. If TAKE_OWNERSHIP is requested the caller is about to
6323 * change ownership to themselves, and WRITE_SECURITY is implicitly
6324 * granted to the owner. We need to do this because at this point
6325 * WRITE_SECURITY may not be granted as the caller is not currently
6326 * the owner.
6327 */
6328 if ((acl_rights & KAUTH_VNODE_TAKE_OWNERSHIP) &&
6329 (acl_rights & KAUTH_VNODE_WRITE_SECURITY))
6330 acl_rights &= ~KAUTH_VNODE_WRITE_SECURITY;
6331
6332 if (acl_rights == 0) {
6333 KAUTH_DEBUG("%p ALLOWED - implicit or no rights required", vcp->vp);
6334 return(0);
6335 }
6336
6337 /* if we have an ACL, evaluate it */
6338 if (VATTR_IS_NOT(vap, va_acl, NULL)) {
6339 eval.ae_requested = acl_rights;
6340 eval.ae_acl = &vap->va_acl->acl_ace[0];
6341 eval.ae_count = vap->va_acl->acl_entrycount;
6342 eval.ae_options = 0;
6343 if (vauth_file_owner(vcp))
6344 eval.ae_options |= KAUTH_AEVAL_IS_OWNER;
6345 /*
6346 * We use ENOENT as a marker to indicate we could not get
6347 * information in order to delay evaluation until after we
6348 * have the ACL evaluation answer. Previously, we would
6349 * always deny the operation at this point.
6350 */
6351 if ((error = vauth_file_ingroup(vcp, &ismember, ENOENT)) != 0 && error != ENOENT)
6352 return(error);
6353 if (error == ENOENT)
6354 eval.ae_options |= KAUTH_AEVAL_IN_GROUP_UNKNOWN;
6355 else if (ismember)
6356 eval.ae_options |= KAUTH_AEVAL_IN_GROUP;
6357 eval.ae_exp_gall = KAUTH_VNODE_GENERIC_ALL_BITS;
6358 eval.ae_exp_gread = KAUTH_VNODE_GENERIC_READ_BITS;
6359 eval.ae_exp_gwrite = KAUTH_VNODE_GENERIC_WRITE_BITS;
6360 eval.ae_exp_gexec = KAUTH_VNODE_GENERIC_EXECUTE_BITS;
6361
6362 if ((error = kauth_acl_evaluate(cred, &eval)) != 0) {
6363 KAUTH_DEBUG("%p ERROR during ACL processing - %d", vcp->vp, error);
6364 return(error);
6365 }
6366
6367 switch(eval.ae_result) {
6368 case KAUTH_RESULT_DENY:
6369 KAUTH_DEBUG("%p DENIED - by ACL", vcp->vp);
6370 return(EACCES); /* deny, deny, counter-allege */
6371 case KAUTH_RESULT_ALLOW:
6372 KAUTH_DEBUG("%p ALLOWED - all rights granted by ACL", vcp->vp);
6373 return(0);
6374 case KAUTH_RESULT_DEFER:
6375 default:
6376 /* Effectively the same as !delete_child_denied */
6377 KAUTH_DEBUG("%p DEFERRED - directory ACL", vcp->vp);
6378 break;
6379 }
6380
6381 *found_deny = eval.ae_found_deny;
6382
6383 /* fall through and evaluate residual rights */
6384 } else {
6385 /* no ACL, everything is residual */
6386 eval.ae_residual = acl_rights;
6387 }
6388
6389 /*
6390 * Grant residual rights that have been pre-authorized.
6391 */
6392 eval.ae_residual &= ~preauth_rights;
6393
6394 /*
6395 * We grant WRITE_ATTRIBUTES to the owner if it hasn't been denied.
6396 */
6397 if (vauth_file_owner(vcp))
6398 eval.ae_residual &= ~KAUTH_VNODE_WRITE_ATTRIBUTES;
6399
6400 if (eval.ae_residual == 0) {
6401 KAUTH_DEBUG("%p ALLOWED - rights already authorized", vcp->vp);
6402 return(0);
6403 }
6404
6405 /*
6406 * Bail if we have residual rights that can't be granted by posix permissions,
6407 * or aren't presumed granted at this point.
6408 *
6409 * XXX these can be collapsed for performance
6410 */
6411 if (eval.ae_residual & KAUTH_VNODE_CHANGE_OWNER) {
6412 KAUTH_DEBUG("%p DENIED - CHANGE_OWNER not permitted", vcp->vp);
6413 return(EACCES);
6414 }
6415 if (eval.ae_residual & KAUTH_VNODE_WRITE_SECURITY) {
6416 KAUTH_DEBUG("%p DENIED - WRITE_SECURITY not permitted", vcp->vp);
6417 return(EACCES);
6418 }
6419
6420 #if DIAGNOSTIC
6421 if (eval.ae_residual & KAUTH_VNODE_DELETE)
6422 panic("vnode_authorize: can't be checking delete permission here");
6423 #endif
6424
6425 /*
6426 * Compute the fallback posix permissions that will satisfy the remaining
6427 * rights.
6428 */
6429 posix_action = 0;
6430 if (eval.ae_residual & (KAUTH_VNODE_READ_DATA |
6431 KAUTH_VNODE_LIST_DIRECTORY |
6432 KAUTH_VNODE_READ_EXTATTRIBUTES))
6433 posix_action |= VREAD;
6434 if (eval.ae_residual & (KAUTH_VNODE_WRITE_DATA |
6435 KAUTH_VNODE_ADD_FILE |
6436 KAUTH_VNODE_ADD_SUBDIRECTORY |
6437 KAUTH_VNODE_DELETE_CHILD |
6438 KAUTH_VNODE_WRITE_ATTRIBUTES |
6439 KAUTH_VNODE_WRITE_EXTATTRIBUTES))
6440 posix_action |= VWRITE;
6441 if (eval.ae_residual & (KAUTH_VNODE_EXECUTE |
6442 KAUTH_VNODE_SEARCH))
6443 posix_action |= VEXEC;
6444
6445 if (posix_action != 0) {
6446 return(vnode_authorize_posix(vcp, posix_action, 0 /* !on_dir */));
6447 } else {
6448 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",
6449 vcp->vp,
6450 (eval.ae_residual & KAUTH_VNODE_READ_DATA)
6451 ? vnode_isdir(vcp->vp) ? " LIST_DIRECTORY" : " READ_DATA" : "",
6452 (eval.ae_residual & KAUTH_VNODE_WRITE_DATA)
6453 ? vnode_isdir(vcp->vp) ? " ADD_FILE" : " WRITE_DATA" : "",
6454 (eval.ae_residual & KAUTH_VNODE_EXECUTE)
6455 ? vnode_isdir(vcp->vp) ? " SEARCH" : " EXECUTE" : "",
6456 (eval.ae_residual & KAUTH_VNODE_DELETE)
6457 ? " DELETE" : "",
6458 (eval.ae_residual & KAUTH_VNODE_APPEND_DATA)
6459 ? vnode_isdir(vcp->vp) ? " ADD_SUBDIRECTORY" : " APPEND_DATA" : "",
6460 (eval.ae_residual & KAUTH_VNODE_DELETE_CHILD)
6461 ? " DELETE_CHILD" : "",
6462 (eval.ae_residual & KAUTH_VNODE_READ_ATTRIBUTES)
6463 ? " READ_ATTRIBUTES" : "",
6464 (eval.ae_residual & KAUTH_VNODE_WRITE_ATTRIBUTES)
6465 ? " WRITE_ATTRIBUTES" : "",
6466 (eval.ae_residual & KAUTH_VNODE_READ_EXTATTRIBUTES)
6467 ? " READ_EXTATTRIBUTES" : "",
6468 (eval.ae_residual & KAUTH_VNODE_WRITE_EXTATTRIBUTES)
6469 ? " WRITE_EXTATTRIBUTES" : "",
6470 (eval.ae_residual & KAUTH_VNODE_READ_SECURITY)
6471 ? " READ_SECURITY" : "",
6472 (eval.ae_residual & KAUTH_VNODE_WRITE_SECURITY)
6473 ? " WRITE_SECURITY" : "",
6474 (eval.ae_residual & KAUTH_VNODE_CHECKIMMUTABLE)
6475 ? " CHECKIMMUTABLE" : "",
6476 (eval.ae_residual & KAUTH_VNODE_CHANGE_OWNER)
6477 ? " CHANGE_OWNER" : "");
6478 }
6479
6480 /*
6481 * Lack of required Posix permissions implies no reason to deny access.
6482 */
6483 return(0);
6484 }
6485
6486 /*
6487 * Check for file immutability.
6488 */
6489 static int
6490 vnode_authorize_checkimmutable(vnode_t vp, struct vnode_attr *vap, int rights, int ignore)
6491 {
6492 mount_t mp;
6493 int error;
6494 int append;
6495
6496 /*
6497 * Perform immutability checks for operations that change data.
6498 *
6499 * Sockets, fifos and devices require special handling.
6500 */
6501 switch(vp->v_type) {
6502 case VSOCK:
6503 case VFIFO:
6504 case VBLK:
6505 case VCHR:
6506 /*
6507 * Writing to these nodes does not change the filesystem data,
6508 * so forget that it's being tried.
6509 */
6510 rights &= ~KAUTH_VNODE_WRITE_DATA;
6511 break;
6512 default:
6513 break;
6514 }
6515
6516 error = 0;
6517 if (rights & KAUTH_VNODE_WRITE_RIGHTS) {
6518
6519 /* check per-filesystem options if possible */
6520 mp = vp->v_mount;
6521 if (mp != NULL) {
6522
6523 /* check for no-EA filesystems */
6524 if ((rights & KAUTH_VNODE_WRITE_EXTATTRIBUTES) &&
6525 (vfs_flags(mp) & MNT_NOUSERXATTR)) {
6526 KAUTH_DEBUG("%p DENIED - filesystem disallowed extended attributes", vp);
6527 error = EACCES; /* User attributes disabled */
6528 goto out;
6529 }
6530 }
6531
6532 /*
6533 * check for file immutability. first, check if the requested rights are
6534 * allowable for a UF_APPEND file.
6535 */
6536 append = 0;
6537 if (vp->v_type == VDIR) {
6538 if ((rights & (KAUTH_VNODE_ADD_FILE | KAUTH_VNODE_ADD_SUBDIRECTORY | KAUTH_VNODE_WRITE_EXTATTRIBUTES)) == rights)
6539 append = 1;
6540 } else {
6541 if ((rights & (KAUTH_VNODE_APPEND_DATA | KAUTH_VNODE_WRITE_EXTATTRIBUTES)) == rights)
6542 append = 1;
6543 }
6544 if ((error = vnode_immutable(vap, append, ignore)) != 0) {
6545 KAUTH_DEBUG("%p DENIED - file is immutable", vp);
6546 goto out;
6547 }
6548 }
6549 out:
6550 return(error);
6551 }
6552
6553 /*
6554 * Handle authorization actions for filesystems that advertise that the
6555 * server will be enforcing.
6556 *
6557 * Returns: 0 Authorization should be handled locally
6558 * 1 Authorization was handled by the FS
6559 *
6560 * Note: Imputed returns will only occur if the authorization request
6561 * was handled by the FS.
6562 *
6563 * Imputed: *resultp, modified Return code from FS when the request is
6564 * handled by the FS.
6565 * VNOP_ACCESS:???
6566 * VNOP_OPEN:???
6567 */
6568 static int
6569 vnode_authorize_opaque(vnode_t vp, int *resultp, kauth_action_t action, vfs_context_t ctx)
6570 {
6571 int error;
6572
6573 /*
6574 * If the vp is a device node, socket or FIFO it actually represents a local
6575 * endpoint, so we need to handle it locally.
6576 */
6577 switch(vp->v_type) {
6578 case VBLK:
6579 case VCHR:
6580 case VSOCK:
6581 case VFIFO:
6582 return(0);
6583 default:
6584 break;
6585 }
6586
6587 /*
6588 * In the advisory request case, if the filesystem doesn't think it's reliable
6589 * we will attempt to formulate a result ourselves based on VNOP_GETATTR data.
6590 */
6591 if ((action & KAUTH_VNODE_ACCESS) && !vfs_authopaqueaccess(vp->v_mount))
6592 return(0);
6593
6594 /*
6595 * Let the filesystem have a say in the matter. It's OK for it to not implemnent
6596 * VNOP_ACCESS, as most will authorise inline with the actual request.
6597 */
6598 if ((error = VNOP_ACCESS(vp, action, ctx)) != ENOTSUP) {
6599 *resultp = error;
6600 KAUTH_DEBUG("%p DENIED - opaque filesystem VNOP_ACCESS denied access", vp);
6601 return(1);
6602 }
6603
6604 /*
6605 * Typically opaque filesystems do authorisation in-line, but exec is a special case. In
6606 * order to be reasonably sure that exec will be permitted, we try a bit harder here.
6607 */
6608 if ((action & KAUTH_VNODE_EXECUTE) && (vp->v_type == VREG)) {
6609 /* try a VNOP_OPEN for readonly access */
6610 if ((error = VNOP_OPEN(vp, FREAD, ctx)) != 0) {
6611 *resultp = error;
6612 KAUTH_DEBUG("%p DENIED - EXECUTE denied because file could not be opened readonly", vp);
6613 return(1);
6614 }
6615 VNOP_CLOSE(vp, FREAD, ctx);
6616 }
6617
6618 /*
6619 * We don't have any reason to believe that the request has to be denied at this point,
6620 * so go ahead and allow it.
6621 */
6622 *resultp = 0;
6623 KAUTH_DEBUG("%p ALLOWED - bypassing access check for non-local filesystem", vp);
6624 return(1);
6625 }
6626
6627
6628
6629
6630 /*
6631 * Returns: KAUTH_RESULT_ALLOW
6632 * KAUTH_RESULT_DENY
6633 *
6634 * Imputed: *arg3, modified Error code in the deny case
6635 * EROFS Read-only file system
6636 * EACCES Permission denied
6637 * EPERM Operation not permitted [no execute]
6638 * vnode_getattr:ENOMEM Not enough space [only if has filesec]
6639 * vnode_getattr:???
6640 * vnode_authorize_opaque:*arg2 ???
6641 * vnode_authorize_checkimmutable:???
6642 * vnode_authorize_delete:???
6643 * vnode_authorize_simple:???
6644 */
6645
6646
6647 static int
6648 vnode_authorize_callback(kauth_cred_t cred, void *idata, kauth_action_t action,
6649 uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3)
6650 {
6651 vfs_context_t ctx;
6652 vnode_t cvp = NULLVP;
6653 vnode_t vp, dvp;
6654 int result = KAUTH_RESULT_DENY;
6655 int parent_iocount = 0;
6656 int parent_action; /* In case we need to use namedstream's data fork for cached rights*/
6657
6658 ctx = (vfs_context_t)arg0;
6659 vp = (vnode_t)arg1;
6660 dvp = (vnode_t)arg2;
6661
6662 /*
6663 * if there are 2 vnodes passed in, we don't know at
6664 * this point which rights to look at based on the
6665 * combined action being passed in... defer until later...
6666 * otherwise check the kauth 'rights' cache hung
6667 * off of the vnode we're interested in... if we've already
6668 * been granted the right we're currently interested in,
6669 * we can just return success... otherwise we'll go through
6670 * the process of authorizing the requested right(s)... if that
6671 * succeeds, we'll add the right(s) to the cache.
6672 * VNOP_SETATTR and VNOP_SETXATTR will invalidate this cache
6673 */
6674 if (dvp && vp)
6675 goto defer;
6676 if (dvp) {
6677 cvp = dvp;
6678 } else {
6679 /*
6680 * For named streams on local-authorization volumes, rights are cached on the parent;
6681 * authorization is determined by looking at the parent's properties anyway, so storing
6682 * on the parent means that we don't recompute for the named stream and that if
6683 * we need to flush rights (e.g. on VNOP_SETATTR()) we don't need to track down the
6684 * stream to flush its cache separately. If we miss in the cache, then we authorize
6685 * as if there were no cached rights (passing the named stream vnode and desired rights to
6686 * vnode_authorize_callback_int()).
6687 *
6688 * On an opaquely authorized volume, we don't know the relationship between the
6689 * data fork's properties and the rights granted on a stream. Thus, named stream vnodes
6690 * on such a volume are authorized directly (rather than using the parent) and have their
6691 * own caches. When a named stream vnode is created, we mark the parent as having a named
6692 * stream. On a VNOP_SETATTR() for the parent that may invalidate cached authorization, we
6693 * find the stream and flush its cache.
6694 */
6695 if (vnode_isnamedstream(vp) && (!vfs_authopaque(vp->v_mount))) {
6696 cvp = vnode_getparent(vp);
6697 if (cvp != NULLVP) {
6698 parent_iocount = 1;
6699 } else {
6700 cvp = NULL;
6701 goto defer; /* If we can't use the parent, take the slow path */
6702 }
6703
6704 /* Have to translate some actions */
6705 parent_action = action;
6706 if (parent_action & KAUTH_VNODE_READ_DATA) {
6707 parent_action &= ~KAUTH_VNODE_READ_DATA;
6708 parent_action |= KAUTH_VNODE_READ_EXTATTRIBUTES;
6709 }
6710 if (parent_action & KAUTH_VNODE_WRITE_DATA) {
6711 parent_action &= ~KAUTH_VNODE_WRITE_DATA;
6712 parent_action |= KAUTH_VNODE_WRITE_EXTATTRIBUTES;
6713 }
6714
6715 } else {
6716 cvp = vp;
6717 }
6718 }
6719
6720 if (vnode_cache_is_authorized(cvp, ctx, parent_iocount ? parent_action : action) == TRUE) {
6721 result = KAUTH_RESULT_ALLOW;
6722 goto out;
6723 }
6724 defer:
6725 result = vnode_authorize_callback_int(cred, idata, action, arg0, arg1, arg2, arg3);
6726
6727 if (result == KAUTH_RESULT_ALLOW && cvp != NULLVP) {
6728 KAUTH_DEBUG("%p - caching action = %x", cvp, action);
6729 vnode_cache_authorized_action(cvp, ctx, action);
6730 }
6731
6732 out:
6733 if (parent_iocount) {
6734 vnode_put(cvp);
6735 }
6736
6737 return result;
6738 }
6739
6740
6741 static int
6742 vnode_authorize_callback_int(__unused kauth_cred_t unused_cred, __unused void *idata, kauth_action_t action,
6743 uintptr_t arg0, uintptr_t arg1, uintptr_t arg2, uintptr_t arg3)
6744 {
6745 struct _vnode_authorize_context auth_context;
6746 vauth_ctx vcp;
6747 vfs_context_t ctx;
6748 vnode_t vp, dvp;
6749 kauth_cred_t cred;
6750 kauth_ace_rights_t rights;
6751 struct vnode_attr va, dva;
6752 int result;
6753 int *errorp;
6754 int noimmutable;
6755 boolean_t parent_authorized_for_delete_child = FALSE;
6756 boolean_t found_deny = FALSE;
6757 boolean_t parent_ref= FALSE;
6758
6759 vcp = &auth_context;
6760 ctx = vcp->ctx = (vfs_context_t)arg0;
6761 vp = vcp->vp = (vnode_t)arg1;
6762 dvp = vcp->dvp = (vnode_t)arg2;
6763 errorp = (int *)arg3;
6764 /*
6765 * Note that we authorize against the context, not the passed cred
6766 * (the same thing anyway)
6767 */
6768 cred = ctx->vc_ucred;
6769
6770 VATTR_INIT(&va);
6771 vcp->vap = &va;
6772 VATTR_INIT(&dva);
6773 vcp->dvap = &dva;
6774
6775 vcp->flags = vcp->flags_valid = 0;
6776
6777 #if DIAGNOSTIC
6778 if ((ctx == NULL) || (vp == NULL) || (cred == NULL))
6779 panic("vnode_authorize: bad arguments (context %p vp %p cred %p)", ctx, vp, cred);
6780 #endif
6781
6782 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)",
6783 vp, vfs_context_proc(ctx)->p_comm,
6784 (action & KAUTH_VNODE_ACCESS) ? "access" : "auth",
6785 (action & KAUTH_VNODE_READ_DATA) ? vnode_isdir(vp) ? " LIST_DIRECTORY" : " READ_DATA" : "",
6786 (action & KAUTH_VNODE_WRITE_DATA) ? vnode_isdir(vp) ? " ADD_FILE" : " WRITE_DATA" : "",
6787 (action & KAUTH_VNODE_EXECUTE) ? vnode_isdir(vp) ? " SEARCH" : " EXECUTE" : "",
6788 (action & KAUTH_VNODE_DELETE) ? " DELETE" : "",
6789 (action & KAUTH_VNODE_APPEND_DATA) ? vnode_isdir(vp) ? " ADD_SUBDIRECTORY" : " APPEND_DATA" : "",
6790 (action & KAUTH_VNODE_DELETE_CHILD) ? " DELETE_CHILD" : "",
6791 (action & KAUTH_VNODE_READ_ATTRIBUTES) ? " READ_ATTRIBUTES" : "",
6792 (action & KAUTH_VNODE_WRITE_ATTRIBUTES) ? " WRITE_ATTRIBUTES" : "",
6793 (action & KAUTH_VNODE_READ_EXTATTRIBUTES) ? " READ_EXTATTRIBUTES" : "",
6794 (action & KAUTH_VNODE_WRITE_EXTATTRIBUTES) ? " WRITE_EXTATTRIBUTES" : "",
6795 (action & KAUTH_VNODE_READ_SECURITY) ? " READ_SECURITY" : "",
6796 (action & KAUTH_VNODE_WRITE_SECURITY) ? " WRITE_SECURITY" : "",
6797 (action & KAUTH_VNODE_CHANGE_OWNER) ? " CHANGE_OWNER" : "",
6798 (action & KAUTH_VNODE_NOIMMUTABLE) ? " (noimmutable)" : "",
6799 vnode_isdir(vp) ? "directory" : "file",
6800 vp->v_name ? vp->v_name : "<NULL>", action, vp, dvp);
6801
6802 /*
6803 * Extract the control bits from the action, everything else is
6804 * requested rights.
6805 */
6806 noimmutable = (action & KAUTH_VNODE_NOIMMUTABLE) ? 1 : 0;
6807 rights = action & ~(KAUTH_VNODE_ACCESS | KAUTH_VNODE_NOIMMUTABLE);
6808
6809 if (rights & KAUTH_VNODE_DELETE) {
6810 #if DIAGNOSTIC
6811 if (dvp == NULL)
6812 panic("vnode_authorize: KAUTH_VNODE_DELETE test requires a directory");
6813 #endif
6814 /*
6815 * check to see if we've already authorized the parent
6816 * directory for deletion of its children... if so, we
6817 * can skip a whole bunch of work... we will still have to
6818 * authorize that this specific child can be removed
6819 */
6820 if (vnode_cache_is_authorized(dvp, ctx, KAUTH_VNODE_DELETE_CHILD) == TRUE)
6821 parent_authorized_for_delete_child = TRUE;
6822 } else {
6823 dvp = NULL;
6824 }
6825
6826 /*
6827 * Check for read-only filesystems.
6828 */
6829 if ((rights & KAUTH_VNODE_WRITE_RIGHTS) &&
6830 (vp->v_mount->mnt_flag & MNT_RDONLY) &&
6831 ((vp->v_type == VREG) || (vp->v_type == VDIR) ||
6832 (vp->v_type == VLNK) || (vp->v_type == VCPLX) ||
6833 (rights & KAUTH_VNODE_DELETE) || (rights & KAUTH_VNODE_DELETE_CHILD))) {
6834 result = EROFS;
6835 goto out;
6836 }
6837
6838 /*
6839 * Check for noexec filesystems.
6840 */
6841 if ((rights & KAUTH_VNODE_EXECUTE) && (vp->v_type == VREG) && (vp->v_mount->mnt_flag & MNT_NOEXEC)) {
6842 result = EACCES;
6843 goto out;
6844 }
6845
6846 /*
6847 * Handle cases related to filesystems with non-local enforcement.
6848 * This call can return 0, in which case we will fall through to perform a
6849 * check based on VNOP_GETATTR data. Otherwise it returns 1 and sets
6850 * an appropriate result, at which point we can return immediately.
6851 */
6852 if ((vp->v_mount->mnt_kern_flag & MNTK_AUTH_OPAQUE) && vnode_authorize_opaque(vp, &result, action, ctx))
6853 goto out;
6854
6855 /*
6856 * Get vnode attributes and extended security information for the vnode
6857 * and directory if required.
6858 */
6859 VATTR_WANTED(&va, va_mode);
6860 VATTR_WANTED(&va, va_uid);
6861 VATTR_WANTED(&va, va_gid);
6862 VATTR_WANTED(&va, va_flags);
6863 VATTR_WANTED(&va, va_acl);
6864 if ((result = vnode_getattr(vp, &va, ctx)) != 0) {
6865 KAUTH_DEBUG("%p ERROR - failed to get vnode attributes - %d", vp, result);
6866 goto out;
6867 }
6868 if (dvp) {
6869 VATTR_WANTED(&dva, va_mode);
6870 VATTR_WANTED(&dva, va_uid);
6871 VATTR_WANTED(&dva, va_gid);
6872 VATTR_WANTED(&dva, va_flags);
6873 VATTR_WANTED(&dva, va_acl);
6874 if ((result = vnode_getattr(dvp, &dva, ctx)) != 0) {
6875 KAUTH_DEBUG("%p ERROR - failed to get directory vnode attributes - %d", vp, result);
6876 goto out;
6877 }
6878 }
6879
6880 /*
6881 * If the vnode is an extended attribute data vnode (eg. a resource fork), *_DATA becomes
6882 * *_EXTATTRIBUTES.
6883 */
6884 if (vnode_isnamedstream(vp)) {
6885 if (rights & KAUTH_VNODE_READ_DATA) {
6886 rights &= ~KAUTH_VNODE_READ_DATA;
6887 rights |= KAUTH_VNODE_READ_EXTATTRIBUTES;
6888 }
6889 if (rights & KAUTH_VNODE_WRITE_DATA) {
6890 rights &= ~KAUTH_VNODE_WRITE_DATA;
6891 rights |= KAUTH_VNODE_WRITE_EXTATTRIBUTES;
6892 }
6893 }
6894
6895 /*
6896 * Point 'vp' to the resource fork's parent for ACL checking
6897 */
6898 if (vnode_isnamedstream(vp) &&
6899 (vp->v_parent != NULL) &&
6900 (vget_internal(vp->v_parent, 0, VNODE_NODEAD | VNODE_DRAINO) == 0)) {
6901 parent_ref = TRUE;
6902 vcp->vp = vp = vp->v_parent;
6903 if (VATTR_IS_SUPPORTED(&va, va_acl) && (va.va_acl != NULL))
6904 kauth_acl_free(va.va_acl);
6905 VATTR_INIT(&va);
6906 VATTR_WANTED(&va, va_mode);
6907 VATTR_WANTED(&va, va_uid);
6908 VATTR_WANTED(&va, va_gid);
6909 VATTR_WANTED(&va, va_flags);
6910 VATTR_WANTED(&va, va_acl);
6911 if ((result = vnode_getattr(vp, &va, ctx)) != 0)
6912 goto out;
6913 }
6914
6915 /*
6916 * Check for immutability.
6917 *
6918 * In the deletion case, parent directory immutability vetoes specific
6919 * file rights.
6920 */
6921 if ((result = vnode_authorize_checkimmutable(vp, &va, rights, noimmutable)) != 0)
6922 goto out;
6923 if ((rights & KAUTH_VNODE_DELETE) &&
6924 parent_authorized_for_delete_child == FALSE &&
6925 ((result = vnode_authorize_checkimmutable(dvp, &dva, KAUTH_VNODE_DELETE_CHILD, 0)) != 0))
6926 goto out;
6927
6928 /*
6929 * Clear rights that have been authorized by reaching this point, bail if nothing left to
6930 * check.
6931 */
6932 rights &= ~(KAUTH_VNODE_LINKTARGET | KAUTH_VNODE_CHECKIMMUTABLE);
6933 if (rights == 0)
6934 goto out;
6935
6936 /*
6937 * If we're not the superuser, authorize based on file properties;
6938 * note that even if parent_authorized_for_delete_child is TRUE, we
6939 * need to check on the node itself.
6940 */
6941 if (!vfs_context_issuser(ctx)) {
6942 /* process delete rights */
6943 if ((rights & KAUTH_VNODE_DELETE) &&
6944 ((result = vnode_authorize_delete(vcp, parent_authorized_for_delete_child)) != 0))
6945 goto out;
6946
6947 /* process remaining rights */
6948 if ((rights & ~KAUTH_VNODE_DELETE) &&
6949 (result = vnode_authorize_simple(vcp, rights, rights & KAUTH_VNODE_DELETE, &found_deny)) != 0)
6950 goto out;
6951 } else {
6952
6953 /*
6954 * Execute is only granted to root if one of the x bits is set. This check only
6955 * makes sense if the posix mode bits are actually supported.
6956 */
6957 if ((rights & KAUTH_VNODE_EXECUTE) &&
6958 (vp->v_type == VREG) &&
6959 VATTR_IS_SUPPORTED(&va, va_mode) &&
6960 !(va.va_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) {
6961 result = EPERM;
6962 KAUTH_DEBUG("%p DENIED - root execute requires at least one x bit in 0x%x", vp, va.va_mode);
6963 goto out;
6964 }
6965
6966 KAUTH_DEBUG("%p ALLOWED - caller is superuser", vp);
6967 }
6968 out:
6969 if (VATTR_IS_SUPPORTED(&va, va_acl) && (va.va_acl != NULL))
6970 kauth_acl_free(va.va_acl);
6971 if (VATTR_IS_SUPPORTED(&dva, va_acl) && (dva.va_acl != NULL))
6972 kauth_acl_free(dva.va_acl);
6973
6974 if (result) {
6975 if (parent_ref)
6976 vnode_put(vp);
6977 *errorp = result;
6978 KAUTH_DEBUG("%p DENIED - auth denied", vp);
6979 return(KAUTH_RESULT_DENY);
6980 }
6981 if ((rights & KAUTH_VNODE_SEARCH) && found_deny == FALSE && vp->v_type == VDIR) {
6982 /*
6983 * if we were successfully granted the right to search this directory
6984 * and there were NO ACL DENYs for search and the posix permissions also don't
6985 * deny execute, we can synthesize a global right that allows anyone to
6986 * traverse this directory during a pathname lookup without having to
6987 * match the credential associated with this cache of rights.
6988 */
6989 if (!VATTR_IS_SUPPORTED(&va, va_mode) ||
6990 ((va.va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) ==
6991 (S_IXUSR | S_IXGRP | S_IXOTH))) {
6992 vnode_cache_authorized_action(vp, ctx, KAUTH_VNODE_SEARCHBYANYONE);
6993 }
6994 }
6995 if ((rights & KAUTH_VNODE_DELETE) && parent_authorized_for_delete_child == FALSE) {
6996 /*
6997 * parent was successfully and newly authorized for content deletions
6998 * add it to the cache, but only if it doesn't have the sticky
6999 * bit set on it. This same check is done earlier guarding
7000 * fetching of dva, and if we jumped to out without having done
7001 * this, we will have returned already because of a non-zero
7002 * 'result' value.
7003 */
7004 if (VATTR_IS_SUPPORTED(&dva, va_mode) &&
7005 !(dva.va_mode & (S_ISVTX))) {
7006 /* OK to cache delete rights */
7007 KAUTH_DEBUG("%p - caching DELETE_CHILD rights", dvp);
7008 vnode_cache_authorized_action(dvp, ctx, KAUTH_VNODE_DELETE_CHILD);
7009 }
7010 }
7011 if (parent_ref)
7012 vnode_put(vp);
7013 /*
7014 * Note that this implies that we will allow requests for no rights, as well as
7015 * for rights that we do not recognise. There should be none of these.
7016 */
7017 KAUTH_DEBUG("%p ALLOWED - auth granted", vp);
7018 return(KAUTH_RESULT_ALLOW);
7019 }
7020
7021 int
7022 vnode_authattr_new(vnode_t dvp, struct vnode_attr *vap, int noauth, vfs_context_t ctx)
7023 {
7024 return vnode_authattr_new_internal(dvp, vap, noauth, NULL, ctx);
7025 }
7026
7027 /*
7028 * Check that the attribute information in vattr can be legally applied to
7029 * a new file by the context.
7030 */
7031 static int
7032 vnode_authattr_new_internal(vnode_t dvp, struct vnode_attr *vap, int noauth, uint32_t *defaulted_fieldsp, vfs_context_t ctx)
7033 {
7034 int error;
7035 int has_priv_suser, ismember, defaulted_owner, defaulted_group, defaulted_mode;
7036 kauth_cred_t cred;
7037 guid_t changer;
7038 mount_t dmp;
7039
7040 error = 0;
7041
7042 if (defaulted_fieldsp) {
7043 *defaulted_fieldsp = 0;
7044 }
7045
7046 defaulted_owner = defaulted_group = defaulted_mode = 0;
7047
7048 /*
7049 * Require that the filesystem support extended security to apply any.
7050 */
7051 if (!vfs_extendedsecurity(dvp->v_mount) &&
7052 (VATTR_IS_ACTIVE(vap, va_acl) || VATTR_IS_ACTIVE(vap, va_uuuid) || VATTR_IS_ACTIVE(vap, va_guuid))) {
7053 error = EINVAL;
7054 goto out;
7055 }
7056
7057 /*
7058 * Default some fields.
7059 */
7060 dmp = dvp->v_mount;
7061
7062 /*
7063 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit owner is set, that
7064 * owner takes ownership of all new files.
7065 */
7066 if ((dmp->mnt_flag & MNT_IGNORE_OWNERSHIP) && (dmp->mnt_fsowner != KAUTH_UID_NONE)) {
7067 VATTR_SET(vap, va_uid, dmp->mnt_fsowner);
7068 defaulted_owner = 1;
7069 } else {
7070 if (!VATTR_IS_ACTIVE(vap, va_uid)) {
7071 /* default owner is current user */
7072 VATTR_SET(vap, va_uid, kauth_cred_getuid(vfs_context_ucred(ctx)));
7073 defaulted_owner = 1;
7074 }
7075 }
7076
7077 /*
7078 * If the filesystem is mounted IGNORE_OWNERSHIP and an explicit grouo is set, that
7079 * group takes ownership of all new files.
7080 */
7081 if ((dmp->mnt_flag & MNT_IGNORE_OWNERSHIP) && (dmp->mnt_fsgroup != KAUTH_GID_NONE)) {
7082 VATTR_SET(vap, va_gid, dmp->mnt_fsgroup);
7083 defaulted_group = 1;
7084 } else {
7085 if (!VATTR_IS_ACTIVE(vap, va_gid)) {
7086 /* default group comes from parent object, fallback to current user */
7087 struct vnode_attr dva;
7088 VATTR_INIT(&dva);
7089 VATTR_WANTED(&dva, va_gid);
7090 if ((error = vnode_getattr(dvp, &dva, ctx)) != 0)
7091 goto out;
7092 if (VATTR_IS_SUPPORTED(&dva, va_gid)) {
7093 VATTR_SET(vap, va_gid, dva.va_gid);
7094 } else {
7095 VATTR_SET(vap, va_gid, kauth_cred_getgid(vfs_context_ucred(ctx)));
7096 }
7097 defaulted_group = 1;
7098 }
7099 }
7100
7101 if (!VATTR_IS_ACTIVE(vap, va_flags))
7102 VATTR_SET(vap, va_flags, 0);
7103
7104 /* default mode is everything, masked with current umask */
7105 if (!VATTR_IS_ACTIVE(vap, va_mode)) {
7106 VATTR_SET(vap, va_mode, ACCESSPERMS & ~vfs_context_proc(ctx)->p_fd->fd_cmask);
7107 KAUTH_DEBUG("ATTR - defaulting new file mode to %o from umask %o", vap->va_mode, vfs_context_proc(ctx)->p_fd->fd_cmask);
7108 defaulted_mode = 1;
7109 }
7110 /* set timestamps to now */
7111 if (!VATTR_IS_ACTIVE(vap, va_create_time)) {
7112 nanotime(&vap->va_create_time);
7113 VATTR_SET_ACTIVE(vap, va_create_time);
7114 }
7115
7116 /*
7117 * Check for attempts to set nonsensical fields.
7118 */
7119 if (vap->va_active & ~VNODE_ATTR_NEWOBJ) {
7120 error = EINVAL;
7121 KAUTH_DEBUG("ATTR - ERROR - attempt to set unsupported new-file attributes %llx",
7122 vap->va_active & ~VNODE_ATTR_NEWOBJ);
7123 goto out;
7124 }
7125
7126 /*
7127 * Quickly check for the applicability of any enforcement here.
7128 * Tests below maintain the integrity of the local security model.
7129 */
7130 if (vfs_authopaque(dvp->v_mount))
7131 goto out;
7132
7133 /*
7134 * We need to know if the caller is the superuser, or if the work is
7135 * otherwise already authorised.
7136 */
7137 cred = vfs_context_ucred(ctx);
7138 if (noauth) {
7139 /* doing work for the kernel */
7140 has_priv_suser = 1;
7141 } else {
7142 has_priv_suser = vfs_context_issuser(ctx);
7143 }
7144
7145
7146 if (VATTR_IS_ACTIVE(vap, va_flags)) {
7147 if (has_priv_suser) {
7148 if ((vap->va_flags & (UF_SETTABLE | SF_SETTABLE)) != vap->va_flags) {
7149 error = EPERM;
7150 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7151 goto out;
7152 }
7153 } else {
7154 if ((vap->va_flags & UF_SETTABLE) != vap->va_flags) {
7155 error = EPERM;
7156 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7157 goto out;
7158 }
7159 }
7160 }
7161
7162 /* if not superuser, validate legality of new-item attributes */
7163 if (!has_priv_suser) {
7164 if (!defaulted_mode && VATTR_IS_ACTIVE(vap, va_mode)) {
7165 /* setgid? */
7166 if (vap->va_mode & S_ISGID) {
7167 if ((error = kauth_cred_ismember_gid(cred, vap->va_gid, &ismember)) != 0) {
7168 KAUTH_DEBUG("ATTR - ERROR: got %d checking for membership in %d", error, vap->va_gid);
7169 goto out;
7170 }
7171 if (!ismember) {
7172 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", vap->va_gid);
7173 error = EPERM;
7174 goto out;
7175 }
7176 }
7177
7178 /* setuid? */
7179 if ((vap->va_mode & S_ISUID) && (vap->va_uid != kauth_cred_getuid(cred))) {
7180 KAUTH_DEBUG("ATTR - ERROR: illegal attempt to set the setuid bit");
7181 error = EPERM;
7182 goto out;
7183 }
7184 }
7185 if (!defaulted_owner && (vap->va_uid != kauth_cred_getuid(cred))) {
7186 KAUTH_DEBUG(" DENIED - cannot create new item owned by %d", vap->va_uid);
7187 error = EPERM;
7188 goto out;
7189 }
7190 if (!defaulted_group) {
7191 if ((error = kauth_cred_ismember_gid(cred, vap->va_gid, &ismember)) != 0) {
7192 KAUTH_DEBUG(" ERROR - got %d checking for membership in %d", error, vap->va_gid);
7193 goto out;
7194 }
7195 if (!ismember) {
7196 KAUTH_DEBUG(" DENIED - cannot create new item with group %d - not a member", vap->va_gid);
7197 error = EPERM;
7198 goto out;
7199 }
7200 }
7201
7202 /* initialising owner/group UUID */
7203 if (VATTR_IS_ACTIVE(vap, va_uuuid)) {
7204 if ((error = kauth_cred_getguid(cred, &changer)) != 0) {
7205 KAUTH_DEBUG(" ERROR - got %d trying to get caller UUID", error);
7206 /* XXX ENOENT here - no GUID - should perhaps become EPERM */
7207 goto out;
7208 }
7209 if (!kauth_guid_equal(&vap->va_uuuid, &changer)) {
7210 KAUTH_DEBUG(" ERROR - cannot create item with supplied owner UUID - not us");
7211 error = EPERM;
7212 goto out;
7213 }
7214 }
7215 if (VATTR_IS_ACTIVE(vap, va_guuid)) {
7216 if ((error = kauth_cred_ismember_guid(cred, &vap->va_guuid, &ismember)) != 0) {
7217 KAUTH_DEBUG(" ERROR - got %d trying to check group membership", error);
7218 goto out;
7219 }
7220 if (!ismember) {
7221 KAUTH_DEBUG(" ERROR - cannot create item with supplied group UUID - not a member");
7222 error = EPERM;
7223 goto out;
7224 }
7225 }
7226 }
7227 out:
7228 if (defaulted_fieldsp) {
7229 if (defaulted_mode) {
7230 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_MODE;
7231 }
7232 if (defaulted_group) {
7233 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_GID;
7234 }
7235 if (defaulted_owner) {
7236 *defaulted_fieldsp |= VATTR_PREPARE_DEFAULTED_UID;
7237 }
7238 }
7239 return(error);
7240 }
7241
7242 /*
7243 * Check that the attribute information in vap can be legally written by the
7244 * context.
7245 *
7246 * Call this when you're not sure about the vnode_attr; either its contents
7247 * have come from an unknown source, or when they are variable.
7248 *
7249 * Returns errno, or zero and sets *actionp to the KAUTH_VNODE_* actions that
7250 * must be authorized to be permitted to write the vattr.
7251 */
7252 int
7253 vnode_authattr(vnode_t vp, struct vnode_attr *vap, kauth_action_t *actionp, vfs_context_t ctx)
7254 {
7255 struct vnode_attr ova;
7256 kauth_action_t required_action;
7257 int error, has_priv_suser, ismember, chowner, chgroup, clear_suid, clear_sgid;
7258 guid_t changer;
7259 gid_t group;
7260 uid_t owner;
7261 mode_t newmode;
7262 kauth_cred_t cred;
7263 uint32_t fdelta;
7264
7265 VATTR_INIT(&ova);
7266 required_action = 0;
7267 error = 0;
7268
7269 /*
7270 * Quickly check for enforcement applicability.
7271 */
7272 if (vfs_authopaque(vp->v_mount))
7273 goto out;
7274
7275 /*
7276 * Check for attempts to set nonsensical fields.
7277 */
7278 if (vap->va_active & VNODE_ATTR_RDONLY) {
7279 KAUTH_DEBUG("ATTR - ERROR: attempt to set readonly attribute(s)");
7280 error = EINVAL;
7281 goto out;
7282 }
7283
7284 /*
7285 * We need to know if the caller is the superuser.
7286 */
7287 cred = vfs_context_ucred(ctx);
7288 has_priv_suser = kauth_cred_issuser(cred);
7289
7290 /*
7291 * If any of the following are changing, we need information from the old file:
7292 * va_uid
7293 * va_gid
7294 * va_mode
7295 * va_uuuid
7296 * va_guuid
7297 */
7298 if (VATTR_IS_ACTIVE(vap, va_uid) ||
7299 VATTR_IS_ACTIVE(vap, va_gid) ||
7300 VATTR_IS_ACTIVE(vap, va_mode) ||
7301 VATTR_IS_ACTIVE(vap, va_uuuid) ||
7302 VATTR_IS_ACTIVE(vap, va_guuid)) {
7303 VATTR_WANTED(&ova, va_mode);
7304 VATTR_WANTED(&ova, va_uid);
7305 VATTR_WANTED(&ova, va_gid);
7306 VATTR_WANTED(&ova, va_uuuid);
7307 VATTR_WANTED(&ova, va_guuid);
7308 KAUTH_DEBUG("ATTR - security information changing, fetching existing attributes");
7309 }
7310
7311 /*
7312 * If timestamps are being changed, we need to know who the file is owned
7313 * by.
7314 */
7315 if (VATTR_IS_ACTIVE(vap, va_create_time) ||
7316 VATTR_IS_ACTIVE(vap, va_change_time) ||
7317 VATTR_IS_ACTIVE(vap, va_modify_time) ||
7318 VATTR_IS_ACTIVE(vap, va_access_time) ||
7319 VATTR_IS_ACTIVE(vap, va_backup_time)) {
7320
7321 VATTR_WANTED(&ova, va_uid);
7322 #if 0 /* enable this when we support UUIDs as official owners */
7323 VATTR_WANTED(&ova, va_uuuid);
7324 #endif
7325 KAUTH_DEBUG("ATTR - timestamps changing, fetching uid and GUID");
7326 }
7327
7328 /*
7329 * If flags are being changed, we need the old flags.
7330 */
7331 if (VATTR_IS_ACTIVE(vap, va_flags)) {
7332 KAUTH_DEBUG("ATTR - flags changing, fetching old flags");
7333 VATTR_WANTED(&ova, va_flags);
7334 }
7335
7336 /*
7337 * If ACLs are being changed, we need the old ACLs.
7338 */
7339 if (VATTR_IS_ACTIVE(vap, va_acl)) {
7340 KAUTH_DEBUG("ATTR - acl changing, fetching old flags");
7341 VATTR_WANTED(&ova, va_acl);
7342 }
7343
7344 /*
7345 * If the size is being set, make sure it's not a directory.
7346 */
7347 if (VATTR_IS_ACTIVE(vap, va_data_size)) {
7348 /* size is meaningless on a directory, don't permit this */
7349 if (vnode_isdir(vp)) {
7350 KAUTH_DEBUG("ATTR - ERROR: size change requested on a directory");
7351 error = EISDIR;
7352 goto out;
7353 }
7354 }
7355
7356 /*
7357 * Get old data.
7358 */
7359 KAUTH_DEBUG("ATTR - fetching old attributes %016llx", ova.va_active);
7360 if ((error = vnode_getattr(vp, &ova, ctx)) != 0) {
7361 KAUTH_DEBUG(" ERROR - got %d trying to get attributes", error);
7362 goto out;
7363 }
7364
7365 /*
7366 * Size changes require write access to the file data.
7367 */
7368 if (VATTR_IS_ACTIVE(vap, va_data_size)) {
7369 /* if we can't get the size, or it's different, we need write access */
7370 KAUTH_DEBUG("ATTR - size change, requiring WRITE_DATA");
7371 required_action |= KAUTH_VNODE_WRITE_DATA;
7372 }
7373
7374 /*
7375 * Changing timestamps?
7376 *
7377 * Note that we are only called to authorize user-requested time changes;
7378 * side-effect time changes are not authorized. Authorisation is only
7379 * required for existing files.
7380 *
7381 * Non-owners are not permitted to change the time on an existing
7382 * file to anything other than the current time.
7383 */
7384 if (VATTR_IS_ACTIVE(vap, va_create_time) ||
7385 VATTR_IS_ACTIVE(vap, va_change_time) ||
7386 VATTR_IS_ACTIVE(vap, va_modify_time) ||
7387 VATTR_IS_ACTIVE(vap, va_access_time) ||
7388 VATTR_IS_ACTIVE(vap, va_backup_time)) {
7389 /*
7390 * The owner and root may set any timestamps they like,
7391 * provided that the file is not immutable. The owner still needs
7392 * WRITE_ATTRIBUTES (implied by ownership but still deniable).
7393 */
7394 if (has_priv_suser || vauth_node_owner(&ova, cred)) {
7395 KAUTH_DEBUG("ATTR - root or owner changing timestamps");
7396 required_action |= KAUTH_VNODE_CHECKIMMUTABLE | KAUTH_VNODE_WRITE_ATTRIBUTES;
7397 } else {
7398 /* just setting the current time? */
7399 if (vap->va_vaflags & VA_UTIMES_NULL) {
7400 KAUTH_DEBUG("ATTR - non-root/owner changing timestamps, requiring WRITE_ATTRIBUTES");
7401 required_action |= KAUTH_VNODE_WRITE_ATTRIBUTES;
7402 } else {
7403 KAUTH_DEBUG("ATTR - ERROR: illegal timestamp modification attempted");
7404 error = EACCES;
7405 goto out;
7406 }
7407 }
7408 }
7409
7410 /*
7411 * Changing file mode?
7412 */
7413 if (VATTR_IS_ACTIVE(vap, va_mode) && VATTR_IS_SUPPORTED(&ova, va_mode) && (ova.va_mode != vap->va_mode)) {
7414 KAUTH_DEBUG("ATTR - mode change from %06o to %06o", ova.va_mode, vap->va_mode);
7415
7416 /*
7417 * Mode changes always have the same basic auth requirements.
7418 */
7419 if (has_priv_suser) {
7420 KAUTH_DEBUG("ATTR - superuser mode change, requiring immutability check");
7421 required_action |= KAUTH_VNODE_CHECKIMMUTABLE;
7422 } else {
7423 /* need WRITE_SECURITY */
7424 KAUTH_DEBUG("ATTR - non-superuser mode change, requiring WRITE_SECURITY");
7425 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7426 }
7427
7428 /*
7429 * Can't set the setgid bit if you're not in the group and not root. Have to have
7430 * existing group information in the case we're not setting it right now.
7431 */
7432 if (vap->va_mode & S_ISGID) {
7433 required_action |= KAUTH_VNODE_CHECKIMMUTABLE; /* always required */
7434 if (!has_priv_suser) {
7435 if (VATTR_IS_ACTIVE(vap, va_gid)) {
7436 group = vap->va_gid;
7437 } else if (VATTR_IS_SUPPORTED(&ova, va_gid)) {
7438 group = ova.va_gid;
7439 } else {
7440 KAUTH_DEBUG("ATTR - ERROR: setgid but no gid available");
7441 error = EINVAL;
7442 goto out;
7443 }
7444 /*
7445 * This might be too restrictive; WRITE_SECURITY might be implied by
7446 * membership in this case, rather than being an additional requirement.
7447 */
7448 if ((error = kauth_cred_ismember_gid(cred, group, &ismember)) != 0) {
7449 KAUTH_DEBUG("ATTR - ERROR: got %d checking for membership in %d", error, vap->va_gid);
7450 goto out;
7451 }
7452 if (!ismember) {
7453 KAUTH_DEBUG(" DENIED - can't set SGID bit, not a member of %d", group);
7454 error = EPERM;
7455 goto out;
7456 }
7457 }
7458 }
7459
7460 /*
7461 * Can't set the setuid bit unless you're root or the file's owner.
7462 */
7463 if (vap->va_mode & S_ISUID) {
7464 required_action |= KAUTH_VNODE_CHECKIMMUTABLE; /* always required */
7465 if (!has_priv_suser) {
7466 if (VATTR_IS_ACTIVE(vap, va_uid)) {
7467 owner = vap->va_uid;
7468 } else if (VATTR_IS_SUPPORTED(&ova, va_uid)) {
7469 owner = ova.va_uid;
7470 } else {
7471 KAUTH_DEBUG("ATTR - ERROR: setuid but no uid available");
7472 error = EINVAL;
7473 goto out;
7474 }
7475 if (owner != kauth_cred_getuid(cred)) {
7476 /*
7477 * We could allow this if WRITE_SECURITY is permitted, perhaps.
7478 */
7479 KAUTH_DEBUG("ATTR - ERROR: illegal attempt to set the setuid bit");
7480 error = EPERM;
7481 goto out;
7482 }
7483 }
7484 }
7485 }
7486
7487 /*
7488 * Validate/mask flags changes. This checks that only the flags in
7489 * the UF_SETTABLE mask are being set, and preserves the flags in
7490 * the SF_SETTABLE case.
7491 *
7492 * Since flags changes may be made in conjunction with other changes,
7493 * we will ask the auth code to ignore immutability in the case that
7494 * the SF_* flags are not set and we are only manipulating the file flags.
7495 *
7496 */
7497 if (VATTR_IS_ACTIVE(vap, va_flags)) {
7498 /* compute changing flags bits */
7499 if (VATTR_IS_SUPPORTED(&ova, va_flags)) {
7500 fdelta = vap->va_flags ^ ova.va_flags;
7501 } else {
7502 fdelta = vap->va_flags;
7503 }
7504
7505 if (fdelta != 0) {
7506 KAUTH_DEBUG("ATTR - flags changing, requiring WRITE_SECURITY");
7507 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7508
7509 /* check that changing bits are legal */
7510 if (has_priv_suser) {
7511 /*
7512 * The immutability check will prevent us from clearing the SF_*
7513 * flags unless the system securelevel permits it, so just check
7514 * for legal flags here.
7515 */
7516 if (fdelta & ~(UF_SETTABLE | SF_SETTABLE)) {
7517 error = EPERM;
7518 KAUTH_DEBUG(" DENIED - superuser attempt to set illegal flag(s)");
7519 goto out;
7520 }
7521 } else {
7522 if (fdelta & ~UF_SETTABLE) {
7523 error = EPERM;
7524 KAUTH_DEBUG(" DENIED - user attempt to set illegal flag(s)");
7525 goto out;
7526 }
7527 }
7528 /*
7529 * If the caller has the ability to manipulate file flags,
7530 * security is not reduced by ignoring them for this operation.
7531 *
7532 * A more complete test here would consider the 'after' states of the flags
7533 * to determine whether it would permit the operation, but this becomes
7534 * very complex.
7535 *
7536 * Ignoring immutability is conditional on securelevel; this does not bypass
7537 * the SF_* flags if securelevel > 0.
7538 */
7539 required_action |= KAUTH_VNODE_NOIMMUTABLE;
7540 }
7541 }
7542
7543 /*
7544 * Validate ownership information.
7545 */
7546 chowner = 0;
7547 chgroup = 0;
7548 clear_suid = 0;
7549 clear_sgid = 0;
7550
7551 /*
7552 * uid changing
7553 * Note that if the filesystem didn't give us a UID, we expect that it doesn't
7554 * support them in general, and will ignore it if/when we try to set it.
7555 * We might want to clear the uid out of vap completely here.
7556 */
7557 if (VATTR_IS_ACTIVE(vap, va_uid)) {
7558 if (VATTR_IS_SUPPORTED(&ova, va_uid) && (vap->va_uid != ova.va_uid)) {
7559 if (!has_priv_suser && (kauth_cred_getuid(cred) != vap->va_uid)) {
7560 KAUTH_DEBUG(" DENIED - non-superuser cannot change ownershipt to a third party");
7561 error = EPERM;
7562 goto out;
7563 }
7564 chowner = 1;
7565 }
7566 clear_suid = 1;
7567 }
7568
7569 /*
7570 * gid changing
7571 * Note that if the filesystem didn't give us a GID, we expect that it doesn't
7572 * support them in general, and will ignore it if/when we try to set it.
7573 * We might want to clear the gid out of vap completely here.
7574 */
7575 if (VATTR_IS_ACTIVE(vap, va_gid)) {
7576 if (VATTR_IS_SUPPORTED(&ova, va_gid) && (vap->va_gid != ova.va_gid)) {
7577 if (!has_priv_suser) {
7578 if ((error = kauth_cred_ismember_gid(cred, vap->va_gid, &ismember)) != 0) {
7579 KAUTH_DEBUG(" ERROR - got %d checking for membership in %d", error, vap->va_gid);
7580 goto out;
7581 }
7582 if (!ismember) {
7583 KAUTH_DEBUG(" DENIED - group change from %d to %d but not a member of target group",
7584 ova.va_gid, vap->va_gid);
7585 error = EPERM;
7586 goto out;
7587 }
7588 }
7589 chgroup = 1;
7590 }
7591 clear_sgid = 1;
7592 }
7593
7594 /*
7595 * Owner UUID being set or changed.
7596 */
7597 if (VATTR_IS_ACTIVE(vap, va_uuuid)) {
7598 /* if the owner UUID is not actually changing ... */
7599 if (VATTR_IS_SUPPORTED(&ova, va_uuuid)) {
7600 if (kauth_guid_equal(&vap->va_uuuid, &ova.va_uuuid))
7601 goto no_uuuid_change;
7602
7603 /*
7604 * If the current owner UUID is a null GUID, check
7605 * it against the UUID corresponding to the owner UID.
7606 */
7607 if (kauth_guid_equal(&ova.va_uuuid, &kauth_null_guid) &&
7608 VATTR_IS_SUPPORTED(&ova, va_uid)) {
7609 guid_t uid_guid;
7610
7611 if (kauth_cred_uid2guid(ova.va_uid, &uid_guid) == 0 &&
7612 kauth_guid_equal(&vap->va_uuuid, &uid_guid))
7613 goto no_uuuid_change;
7614 }
7615 }
7616
7617 /*
7618 * The owner UUID cannot be set by a non-superuser to anything other than
7619 * their own or a null GUID (to "unset" the owner UUID).
7620 * Note that file systems must be prepared to handle the
7621 * null UUID case in a manner appropriate for that file
7622 * system.
7623 */
7624 if (!has_priv_suser) {
7625 if ((error = kauth_cred_getguid(cred, &changer)) != 0) {
7626 KAUTH_DEBUG(" ERROR - got %d trying to get caller UUID", error);
7627 /* XXX ENOENT here - no UUID - should perhaps become EPERM */
7628 goto out;
7629 }
7630 if (!kauth_guid_equal(&vap->va_uuuid, &changer) &&
7631 !kauth_guid_equal(&vap->va_uuuid, &kauth_null_guid)) {
7632 KAUTH_DEBUG(" ERROR - cannot set supplied owner UUID - not us / null");
7633 error = EPERM;
7634 goto out;
7635 }
7636 }
7637 chowner = 1;
7638 clear_suid = 1;
7639 }
7640 no_uuuid_change:
7641 /*
7642 * Group UUID being set or changed.
7643 */
7644 if (VATTR_IS_ACTIVE(vap, va_guuid)) {
7645 /* if the group UUID is not actually changing ... */
7646 if (VATTR_IS_SUPPORTED(&ova, va_guuid)) {
7647 if (kauth_guid_equal(&vap->va_guuid, &ova.va_guuid))
7648 goto no_guuid_change;
7649
7650 /*
7651 * If the current group UUID is a null UUID, check
7652 * it against the UUID corresponding to the group GID.
7653 */
7654 if (kauth_guid_equal(&ova.va_guuid, &kauth_null_guid) &&
7655 VATTR_IS_SUPPORTED(&ova, va_gid)) {
7656 guid_t gid_guid;
7657
7658 if (kauth_cred_gid2guid(ova.va_gid, &gid_guid) == 0 &&
7659 kauth_guid_equal(&vap->va_guuid, &gid_guid))
7660 goto no_guuid_change;
7661 }
7662 }
7663
7664 /*
7665 * The group UUID cannot be set by a non-superuser to anything other than
7666 * one of which they are a member or a null GUID (to "unset"
7667 * the group UUID).
7668 * Note that file systems must be prepared to handle the
7669 * null UUID case in a manner appropriate for that file
7670 * system.
7671 */
7672 if (!has_priv_suser) {
7673 if (kauth_guid_equal(&vap->va_guuid, &kauth_null_guid))
7674 ismember = 1;
7675 else if ((error = kauth_cred_ismember_guid(cred, &vap->va_guuid, &ismember)) != 0) {
7676 KAUTH_DEBUG(" ERROR - got %d trying to check group membership", error);
7677 goto out;
7678 }
7679 if (!ismember) {
7680 KAUTH_DEBUG(" ERROR - cannot set supplied group UUID - not a member / null");
7681 error = EPERM;
7682 goto out;
7683 }
7684 }
7685 chgroup = 1;
7686 }
7687 no_guuid_change:
7688
7689 /*
7690 * Compute authorisation for group/ownership changes.
7691 */
7692 if (chowner || chgroup || clear_suid || clear_sgid) {
7693 if (has_priv_suser) {
7694 KAUTH_DEBUG("ATTR - superuser changing file owner/group, requiring immutability check");
7695 required_action |= KAUTH_VNODE_CHECKIMMUTABLE;
7696 } else {
7697 if (chowner) {
7698 KAUTH_DEBUG("ATTR - ownership change, requiring TAKE_OWNERSHIP");
7699 required_action |= KAUTH_VNODE_TAKE_OWNERSHIP;
7700 }
7701 if (chgroup && !chowner) {
7702 KAUTH_DEBUG("ATTR - group change, requiring WRITE_SECURITY");
7703 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7704 }
7705
7706 /* clear set-uid and set-gid bits as required by Posix */
7707 if (VATTR_IS_ACTIVE(vap, va_mode)) {
7708 newmode = vap->va_mode;
7709 } else if (VATTR_IS_SUPPORTED(&ova, va_mode)) {
7710 newmode = ova.va_mode;
7711 } else {
7712 KAUTH_DEBUG("CHOWN - trying to change owner but cannot get mode from filesystem to mask setugid bits");
7713 newmode = 0;
7714 }
7715 if (newmode & (S_ISUID | S_ISGID)) {
7716 VATTR_SET(vap, va_mode, newmode & ~(S_ISUID | S_ISGID));
7717 KAUTH_DEBUG("CHOWN - masking setugid bits from mode %o to %o", newmode, vap->va_mode);
7718 }
7719 }
7720 }
7721
7722 /*
7723 * Authorise changes in the ACL.
7724 */
7725 if (VATTR_IS_ACTIVE(vap, va_acl)) {
7726
7727 /* no existing ACL */
7728 if (!VATTR_IS_ACTIVE(&ova, va_acl) || (ova.va_acl == NULL)) {
7729
7730 /* adding an ACL */
7731 if (vap->va_acl != NULL) {
7732 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7733 KAUTH_DEBUG("CHMOD - adding ACL");
7734 }
7735
7736 /* removing an existing ACL */
7737 } else if (vap->va_acl == NULL) {
7738 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7739 KAUTH_DEBUG("CHMOD - removing ACL");
7740
7741 /* updating an existing ACL */
7742 } else {
7743 if (vap->va_acl->acl_entrycount != ova.va_acl->acl_entrycount) {
7744 /* entry count changed, must be different */
7745 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7746 KAUTH_DEBUG("CHMOD - adding/removing ACL entries");
7747 } else if (vap->va_acl->acl_entrycount > 0) {
7748 /* both ACLs have the same ACE count, said count is 1 or more, bitwise compare ACLs */
7749 if (memcmp(&vap->va_acl->acl_ace[0], &ova.va_acl->acl_ace[0],
7750 sizeof(struct kauth_ace) * vap->va_acl->acl_entrycount)) {
7751 required_action |= KAUTH_VNODE_WRITE_SECURITY;
7752 KAUTH_DEBUG("CHMOD - changing ACL entries");
7753 }
7754 }
7755 }
7756 }
7757
7758 /*
7759 * Other attributes that require authorisation.
7760 */
7761 if (VATTR_IS_ACTIVE(vap, va_encoding))
7762 required_action |= KAUTH_VNODE_WRITE_ATTRIBUTES;
7763
7764 out:
7765 if (VATTR_IS_SUPPORTED(&ova, va_acl) && (ova.va_acl != NULL))
7766 kauth_acl_free(ova.va_acl);
7767 if (error == 0)
7768 *actionp = required_action;
7769 return(error);
7770 }
7771
7772 static int
7773 setlocklocal_callback(struct vnode *vp, __unused void *cargs)
7774 {
7775 vnode_lock_spin(vp);
7776 vp->v_flag |= VLOCKLOCAL;
7777 vnode_unlock(vp);
7778
7779 return (VNODE_RETURNED);
7780 }
7781
7782 void
7783 vfs_setlocklocal(mount_t mp)
7784 {
7785 mount_lock_spin(mp);
7786 mp->mnt_kern_flag |= MNTK_LOCK_LOCAL;
7787 mount_unlock(mp);
7788
7789 /*
7790 * The number of active vnodes is expected to be
7791 * very small when vfs_setlocklocal is invoked.
7792 */
7793 vnode_iterate(mp, 0, setlocklocal_callback, NULL);
7794 }
7795
7796 void
7797 vfs_setunmountpreflight(mount_t mp)
7798 {
7799 mount_lock_spin(mp);
7800 mp->mnt_kern_flag |= MNTK_UNMOUNT_PREFLIGHT;
7801 mount_unlock(mp);
7802 }
7803
7804 void
7805 vfs_setcompoundopen(mount_t mp)
7806 {
7807 mount_lock_spin(mp);
7808 mp->mnt_compound_ops |= COMPOUND_VNOP_OPEN;
7809 mount_unlock(mp);
7810 }
7811
7812 void
7813 vn_setunionwait(vnode_t vp)
7814 {
7815 vnode_lock_spin(vp);
7816 vp->v_flag |= VISUNION;
7817 vnode_unlock(vp);
7818 }
7819
7820
7821 void
7822 vn_checkunionwait(vnode_t vp)
7823 {
7824 vnode_lock_spin(vp);
7825 while ((vp->v_flag & VISUNION) == VISUNION)
7826 msleep((caddr_t)&vp->v_flag, &vp->v_lock, 0, 0, 0);
7827 vnode_unlock(vp);
7828 }
7829
7830 void
7831 vn_clearunionwait(vnode_t vp, int locked)
7832 {
7833 if (!locked)
7834 vnode_lock_spin(vp);
7835 if((vp->v_flag & VISUNION) == VISUNION) {
7836 vp->v_flag &= ~VISUNION;
7837 wakeup((caddr_t)&vp->v_flag);
7838 }
7839 if (!locked)
7840 vnode_unlock(vp);
7841 }
7842
7843 /*
7844 * XXX - get "don't trigger mounts" flag for thread; used by autofs.
7845 */
7846 extern int thread_notrigger(void);
7847
7848 int
7849 thread_notrigger(void)
7850 {
7851 struct uthread *uth = (struct uthread *)get_bsdthread_info(current_thread());
7852 return (uth->uu_notrigger);
7853 }
7854
7855 /*
7856 * Removes orphaned apple double files during a rmdir
7857 * Works by:
7858 * 1. vnode_suspend().
7859 * 2. Call VNOP_READDIR() till the end of directory is reached.
7860 * 3. Check if the directory entries returned are regular files with name starting with "._". If not, return ENOTEMPTY.
7861 * 4. Continue (2) and (3) till end of directory is reached.
7862 * 5. If all the entries in the directory were files with "._" name, delete all the files.
7863 * 6. vnode_resume()
7864 * 7. If deletion of all files succeeded, call VNOP_RMDIR() again.
7865 */
7866
7867 errno_t rmdir_remove_orphaned_appleDouble(vnode_t vp , vfs_context_t ctx, int * restart_flag)
7868 {
7869
7870 #define UIO_BUFF_SIZE 2048
7871 uio_t auio = NULL;
7872 int eofflag, siz = UIO_BUFF_SIZE, nentries = 0;
7873 int open_flag = 0, full_erase_flag = 0;
7874 char uio_buf[ UIO_SIZEOF(1) ];
7875 char *rbuf = NULL, *cpos, *cend;
7876 struct nameidata nd_temp;
7877 struct dirent *dp;
7878 errno_t error;
7879
7880 error = vnode_suspend(vp);
7881
7882 /*
7883 * restart_flag is set so that the calling rmdir sleeps and resets
7884 */
7885 if (error == EBUSY)
7886 *restart_flag = 1;
7887 if (error != 0)
7888 goto outsc;
7889
7890 /*
7891 * set up UIO
7892 */
7893 MALLOC(rbuf, caddr_t, siz, M_TEMP, M_WAITOK);
7894 if (rbuf)
7895 auio = uio_createwithbuffer(1, 0, UIO_SYSSPACE, UIO_READ,
7896 &uio_buf[0], sizeof(uio_buf));
7897 if (!rbuf || !auio) {
7898 error = ENOMEM;
7899 goto outsc;
7900 }
7901
7902 uio_setoffset(auio,0);
7903
7904 eofflag = 0;
7905
7906 if ((error = VNOP_OPEN(vp, FREAD, ctx)))
7907 goto outsc;
7908 else
7909 open_flag = 1;
7910
7911 /*
7912 * First pass checks if all files are appleDouble files.
7913 */
7914
7915 do {
7916 siz = UIO_BUFF_SIZE;
7917 uio_reset(auio, uio_offset(auio), UIO_SYSSPACE, UIO_READ);
7918 uio_addiov(auio, CAST_USER_ADDR_T(rbuf), UIO_BUFF_SIZE);
7919
7920 if((error = VNOP_READDIR(vp, auio, 0, &eofflag, &nentries, ctx)))
7921 goto outsc;
7922
7923 if (uio_resid(auio) != 0)
7924 siz -= uio_resid(auio);
7925
7926 /*
7927 * Iterate through directory
7928 */
7929 cpos = rbuf;
7930 cend = rbuf + siz;
7931 dp = (struct dirent*) cpos;
7932
7933 if (cpos == cend)
7934 eofflag = 1;
7935
7936 while ((cpos < cend)) {
7937 /*
7938 * Check for . and .. as well as directories
7939 */
7940 if (dp->d_ino != 0 &&
7941 !((dp->d_namlen == 1 && dp->d_name[0] == '.') ||
7942 (dp->d_namlen == 2 && dp->d_name[0] == '.' && dp->d_name[1] == '.'))) {
7943 /*
7944 * Check for irregular files and ._ files
7945 * If there is a ._._ file abort the op
7946 */
7947 if ( dp->d_namlen < 2 ||
7948 strncmp(dp->d_name,"._",2) ||
7949 (dp->d_namlen >= 4 && !strncmp(&(dp->d_name[2]), "._",2))) {
7950 error = ENOTEMPTY;
7951 goto outsc;
7952 }
7953 }
7954 cpos += dp->d_reclen;
7955 dp = (struct dirent*)cpos;
7956 }
7957
7958 /*
7959 * workaround for HFS/NFS setting eofflag before end of file
7960 */
7961 if (vp->v_tag == VT_HFS && nentries > 2)
7962 eofflag=0;
7963
7964 if (vp->v_tag == VT_NFS) {
7965 if (eofflag && !full_erase_flag) {
7966 full_erase_flag = 1;
7967 eofflag = 0;
7968 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
7969 }
7970 else if (!eofflag && full_erase_flag)
7971 full_erase_flag = 0;
7972 }
7973
7974 } while (!eofflag);
7975 /*
7976 * If we've made it here all the files in the dir are ._ files.
7977 * We can delete the files even though the node is suspended
7978 * because we are the owner of the file.
7979 */
7980
7981 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
7982 eofflag = 0;
7983 full_erase_flag = 0;
7984
7985 do {
7986 siz = UIO_BUFF_SIZE;
7987 uio_reset(auio, uio_offset(auio), UIO_SYSSPACE, UIO_READ);
7988 uio_addiov(auio, CAST_USER_ADDR_T(rbuf), UIO_BUFF_SIZE);
7989
7990 error = VNOP_READDIR(vp, auio, 0, &eofflag, &nentries, ctx);
7991
7992 if (error != 0)
7993 goto outsc;
7994
7995 if (uio_resid(auio) != 0)
7996 siz -= uio_resid(auio);
7997
7998 /*
7999 * Iterate through directory
8000 */
8001 cpos = rbuf;
8002 cend = rbuf + siz;
8003 dp = (struct dirent*) cpos;
8004
8005 if (cpos == cend)
8006 eofflag = 1;
8007
8008 while ((cpos < cend)) {
8009 /*
8010 * Check for . and .. as well as directories
8011 */
8012 if (dp->d_ino != 0 &&
8013 !((dp->d_namlen == 1 && dp->d_name[0] == '.') ||
8014 (dp->d_namlen == 2 && dp->d_name[0] == '.' && dp->d_name[1] == '.'))
8015 ) {
8016
8017 NDINIT(&nd_temp, DELETE, OP_UNLINK, USEDVP,
8018 UIO_SYSSPACE, CAST_USER_ADDR_T(dp->d_name),
8019 ctx);
8020 nd_temp.ni_dvp = vp;
8021 error = unlink1(ctx, &nd_temp, VNODE_REMOVE_SKIP_NAMESPACE_EVENT);
8022
8023 if (error && error != ENOENT) {
8024 goto outsc;
8025 }
8026
8027 }
8028 cpos += dp->d_reclen;
8029 dp = (struct dirent*)cpos;
8030 }
8031
8032 /*
8033 * workaround for HFS/NFS setting eofflag before end of file
8034 */
8035 if (vp->v_tag == VT_HFS && nentries > 2)
8036 eofflag=0;
8037
8038 if (vp->v_tag == VT_NFS) {
8039 if (eofflag && !full_erase_flag) {
8040 full_erase_flag = 1;
8041 eofflag = 0;
8042 uio_reset(auio, 0, UIO_SYSSPACE, UIO_READ);
8043 }
8044 else if (!eofflag && full_erase_flag)
8045 full_erase_flag = 0;
8046 }
8047
8048 } while (!eofflag);
8049
8050
8051 error = 0;
8052
8053 outsc:
8054 if (open_flag)
8055 VNOP_CLOSE(vp, FREAD, ctx);
8056
8057 uio_free(auio);
8058 FREE(rbuf, M_TEMP);
8059
8060 vnode_resume(vp);
8061
8062
8063 return(error);
8064
8065 }
8066
8067
8068 void
8069 lock_vnode_and_post(vnode_t vp, int kevent_num)
8070 {
8071 /* Only take the lock if there's something there! */
8072 if (vp->v_knotes.slh_first != NULL) {
8073 vnode_lock(vp);
8074 KNOTE(&vp->v_knotes, kevent_num);
8075 vnode_unlock(vp);
8076 }
8077 }
8078
8079 #ifdef JOE_DEBUG
8080 static void record_vp(vnode_t vp, int count) {
8081 struct uthread *ut;
8082
8083 #if CONFIG_TRIGGERS
8084 if (vp->v_resolve)
8085 return;
8086 #endif
8087 if ((vp->v_flag & VSYSTEM))
8088 return;
8089
8090 ut = get_bsdthread_info(current_thread());
8091 ut->uu_iocount += count;
8092
8093 if (count == 1) {
8094 if (ut->uu_vpindex < 32) {
8095 OSBacktrace((void **)&ut->uu_pcs[ut->uu_vpindex][0], 10);
8096
8097 ut->uu_vps[ut->uu_vpindex] = vp;
8098 ut->uu_vpindex++;
8099 }
8100 }
8101 }
8102 #endif
8103
8104
8105 #if CONFIG_TRIGGERS
8106
8107 #define TRIG_DEBUG 0
8108
8109 #if TRIG_DEBUG
8110 #define TRIG_LOG(...) do { printf("%s: ", __FUNCTION__); printf(__VA_ARGS__); } while (0)
8111 #else
8112 #define TRIG_LOG(...)
8113 #endif
8114
8115 /*
8116 * Resolver result functions
8117 */
8118
8119 resolver_result_t
8120 vfs_resolver_result(uint32_t seq, enum resolver_status stat, int aux)
8121 {
8122 /*
8123 * |<--- 32 --->|<--- 28 --->|<- 4 ->|
8124 * sequence auxiliary status
8125 */
8126 return (((uint64_t)seq) << 32) |
8127 (((uint64_t)(aux & 0x0fffffff)) << 4) |
8128 (uint64_t)(stat & 0x0000000F);
8129 }
8130
8131 enum resolver_status
8132 vfs_resolver_status(resolver_result_t result)
8133 {
8134 /* lower 4 bits is status */
8135 return (result & 0x0000000F);
8136 }
8137
8138 uint32_t
8139 vfs_resolver_sequence(resolver_result_t result)
8140 {
8141 /* upper 32 bits is sequence */
8142 return (uint32_t)(result >> 32);
8143 }
8144
8145 int
8146 vfs_resolver_auxiliary(resolver_result_t result)
8147 {
8148 /* 28 bits of auxiliary */
8149 return (int)(((uint32_t)(result & 0xFFFFFFF0)) >> 4);
8150 }
8151
8152 /*
8153 * SPI
8154 * Call in for resolvers to update vnode trigger state
8155 */
8156 int
8157 vnode_trigger_update(vnode_t vp, resolver_result_t result)
8158 {
8159 vnode_resolve_t rp;
8160 uint32_t seq;
8161 enum resolver_status stat;
8162
8163 if (vp->v_resolve == NULL) {
8164 return (EINVAL);
8165 }
8166
8167 stat = vfs_resolver_status(result);
8168 seq = vfs_resolver_sequence(result);
8169
8170 if ((stat != RESOLVER_RESOLVED) && (stat != RESOLVER_UNRESOLVED)) {
8171 return (EINVAL);
8172 }
8173
8174 rp = vp->v_resolve;
8175 lck_mtx_lock(&rp->vr_lock);
8176
8177 if (seq > rp->vr_lastseq) {
8178 if (stat == RESOLVER_RESOLVED)
8179 rp->vr_flags |= VNT_RESOLVED;
8180 else
8181 rp->vr_flags &= ~VNT_RESOLVED;
8182
8183 rp->vr_lastseq = seq;
8184 }
8185
8186 lck_mtx_unlock(&rp->vr_lock);
8187
8188 return (0);
8189 }
8190
8191 static int
8192 vnode_resolver_attach(vnode_t vp, vnode_resolve_t rp, boolean_t ref)
8193 {
8194 int error;
8195
8196 vnode_lock_spin(vp);
8197 if (vp->v_resolve != NULL) {
8198 vnode_unlock(vp);
8199 return EINVAL;
8200 } else {
8201 vp->v_resolve = rp;
8202 }
8203 vnode_unlock(vp);
8204
8205 if (ref) {
8206 error = vnode_ref_ext(vp, O_EVTONLY, VNODE_REF_FORCE);
8207 if (error != 0) {
8208 panic("VNODE_REF_FORCE didn't help...");
8209 }
8210 }
8211
8212 return 0;
8213 }
8214
8215 /*
8216 * VFS internal interfaces for vnode triggers
8217 *
8218 * vnode must already have an io count on entry
8219 * v_resolve is stable when io count is non-zero
8220 */
8221 static int
8222 vnode_resolver_create(mount_t mp, vnode_t vp, struct vnode_trigger_param *tinfo, boolean_t external)
8223 {
8224 vnode_resolve_t rp;
8225 int result;
8226 char byte;
8227
8228 #if 1
8229 /* minimum pointer test (debugging) */
8230 if (tinfo->vnt_data)
8231 byte = *((char *)tinfo->vnt_data);
8232 #endif
8233 MALLOC(rp, vnode_resolve_t, sizeof(*rp), M_TEMP, M_WAITOK);
8234 if (rp == NULL)
8235 return (ENOMEM);
8236
8237 lck_mtx_init(&rp->vr_lock, trigger_vnode_lck_grp, trigger_vnode_lck_attr);
8238
8239 rp->vr_resolve_func = tinfo->vnt_resolve_func;
8240 rp->vr_unresolve_func = tinfo->vnt_unresolve_func;
8241 rp->vr_rearm_func = tinfo->vnt_rearm_func;
8242 rp->vr_reclaim_func = tinfo->vnt_reclaim_func;
8243 rp->vr_data = tinfo->vnt_data;
8244 rp->vr_lastseq = 0;
8245 rp->vr_flags = tinfo->vnt_flags & VNT_VALID_MASK;
8246 if (external) {
8247 rp->vr_flags |= VNT_EXTERNAL;
8248 }
8249
8250 result = vnode_resolver_attach(vp, rp, external);
8251 if (result != 0) {
8252 goto out;
8253 }
8254
8255 if (mp) {
8256 OSAddAtomic(1, &mp->mnt_numtriggers);
8257 }
8258
8259 return (result);
8260
8261 out:
8262 FREE(rp, M_TEMP);
8263 return result;
8264 }
8265
8266 static void
8267 vnode_resolver_release(vnode_resolve_t rp)
8268 {
8269 /*
8270 * Give them a chance to free any private data
8271 */
8272 if (rp->vr_data && rp->vr_reclaim_func) {
8273 rp->vr_reclaim_func(NULLVP, rp->vr_data);
8274 }
8275
8276 lck_mtx_destroy(&rp->vr_lock, trigger_vnode_lck_grp);
8277 FREE(rp, M_TEMP);
8278
8279 }
8280
8281 /* Called after the vnode has been drained */
8282 static void
8283 vnode_resolver_detach(vnode_t vp)
8284 {
8285 vnode_resolve_t rp;
8286 mount_t mp;
8287
8288 mp = vnode_mount(vp);
8289
8290 vnode_lock(vp);
8291 rp = vp->v_resolve;
8292 vp->v_resolve = NULL;
8293 vnode_unlock(vp);
8294
8295 if ((rp->vr_flags & VNT_EXTERNAL) != 0) {
8296 vnode_rele_ext(vp, O_EVTONLY, 1);
8297 }
8298
8299 vnode_resolver_release(rp);
8300
8301 /* Keep count of active trigger vnodes per mount */
8302 OSAddAtomic(-1, &mp->mnt_numtriggers);
8303 }
8304
8305 /*
8306 * Pathname operations that don't trigger a mount for trigger vnodes
8307 */
8308 static const u_int64_t ignorable_pathops_mask =
8309 1LL << OP_MOUNT |
8310 1LL << OP_UNMOUNT |
8311 1LL << OP_STATFS |
8312 1LL << OP_ACCESS |
8313 1LL << OP_GETATTR |
8314 1LL << OP_LISTXATTR;
8315
8316 int
8317 vfs_istraditionaltrigger(enum path_operation op, const struct componentname *cnp)
8318 {
8319 if (cnp->cn_flags & ISLASTCN)
8320 return ((1LL << op) & ignorable_pathops_mask) == 0;
8321 else
8322 return (1);
8323 }
8324
8325 __private_extern__
8326 void
8327 vnode_trigger_rearm(vnode_t vp, vfs_context_t ctx)
8328 {
8329 vnode_resolve_t rp;
8330 resolver_result_t result;
8331 enum resolver_status status;
8332 uint32_t seq;
8333
8334 if ((vp->v_resolve == NULL) ||
8335 (vp->v_resolve->vr_rearm_func == NULL) ||
8336 (vp->v_resolve->vr_flags & VNT_AUTO_REARM) == 0) {
8337 return;
8338 }
8339
8340 rp = vp->v_resolve;
8341 lck_mtx_lock(&rp->vr_lock);
8342
8343 /*
8344 * Check if VFS initiated this unmount. If so, we'll catch it after the unresolve completes.
8345 */
8346 if (rp->vr_flags & VNT_VFS_UNMOUNTED) {
8347 lck_mtx_unlock(&rp->vr_lock);
8348 return;
8349 }
8350
8351 /* Check if this vnode is already armed */
8352 if ((rp->vr_flags & VNT_RESOLVED) == 0) {
8353 lck_mtx_unlock(&rp->vr_lock);
8354 return;
8355 }
8356
8357 lck_mtx_unlock(&rp->vr_lock);
8358
8359 result = rp->vr_rearm_func(vp, 0, rp->vr_data, ctx);
8360 status = vfs_resolver_status(result);
8361 seq = vfs_resolver_sequence(result);
8362
8363 lck_mtx_lock(&rp->vr_lock);
8364 if (seq > rp->vr_lastseq) {
8365 if (status == RESOLVER_UNRESOLVED)
8366 rp->vr_flags &= ~VNT_RESOLVED;
8367 rp->vr_lastseq = seq;
8368 }
8369 lck_mtx_unlock(&rp->vr_lock);
8370 }
8371
8372 __private_extern__
8373 int
8374 vnode_trigger_resolve(vnode_t vp, struct nameidata *ndp, vfs_context_t ctx)
8375 {
8376 vnode_resolve_t rp;
8377 enum path_operation op;
8378 resolver_result_t result;
8379 enum resolver_status status;
8380 uint32_t seq;
8381
8382 /* Only trigger on topmost vnodes */
8383 if ((vp->v_resolve == NULL) ||
8384 (vp->v_resolve->vr_resolve_func == NULL) ||
8385 (vp->v_mountedhere != NULL)) {
8386 return (0);
8387 }
8388
8389 rp = vp->v_resolve;
8390 lck_mtx_lock(&rp->vr_lock);
8391
8392 /* Check if this vnode is already resolved */
8393 if (rp->vr_flags & VNT_RESOLVED) {
8394 lck_mtx_unlock(&rp->vr_lock);
8395 return (0);
8396 }
8397
8398 lck_mtx_unlock(&rp->vr_lock);
8399
8400 /*
8401 * XXX
8402 * assumes that resolver will not access this trigger vnode (otherwise the kernel will deadlock)
8403 * is there anyway to know this???
8404 * there can also be other legitimate lookups in parallel
8405 *
8406 * XXX - should we call this on a separate thread with a timeout?
8407 *
8408 * XXX - should we use ISLASTCN to pick the op value??? Perhaps only leafs should
8409 * get the richer set and non-leafs should get generic OP_LOOKUP? TBD
8410 */
8411 op = (ndp->ni_op < OP_MAXOP) ? ndp->ni_op: OP_LOOKUP;
8412
8413 result = rp->vr_resolve_func(vp, &ndp->ni_cnd, op, 0, rp->vr_data, ctx);
8414 status = vfs_resolver_status(result);
8415 seq = vfs_resolver_sequence(result);
8416
8417 lck_mtx_lock(&rp->vr_lock);
8418 if (seq > rp->vr_lastseq) {
8419 if (status == RESOLVER_RESOLVED)
8420 rp->vr_flags |= VNT_RESOLVED;
8421 rp->vr_lastseq = seq;
8422 }
8423 lck_mtx_unlock(&rp->vr_lock);
8424
8425 /* On resolver errors, propagate the error back up */
8426 return (status == RESOLVER_ERROR ? vfs_resolver_auxiliary(result) : 0);
8427 }
8428
8429 static int
8430 vnode_trigger_unresolve(vnode_t vp, int flags, vfs_context_t ctx)
8431 {
8432 vnode_resolve_t rp;
8433 resolver_result_t result;
8434 enum resolver_status status;
8435 uint32_t seq;
8436
8437 if ((vp->v_resolve == NULL) || (vp->v_resolve->vr_unresolve_func == NULL)) {
8438 return (0);
8439 }
8440
8441 rp = vp->v_resolve;
8442 lck_mtx_lock(&rp->vr_lock);
8443
8444 /* Check if this vnode is already resolved */
8445 if ((rp->vr_flags & VNT_RESOLVED) == 0) {
8446 printf("vnode_trigger_unresolve: not currently resolved\n");
8447 lck_mtx_unlock(&rp->vr_lock);
8448 return (0);
8449 }
8450
8451 rp->vr_flags |= VNT_VFS_UNMOUNTED;
8452
8453 lck_mtx_unlock(&rp->vr_lock);
8454
8455 /*
8456 * XXX
8457 * assumes that resolver will not access this trigger vnode (otherwise the kernel will deadlock)
8458 * there can also be other legitimate lookups in parallel
8459 *
8460 * XXX - should we call this on a separate thread with a timeout?
8461 */
8462
8463 result = rp->vr_unresolve_func(vp, flags, rp->vr_data, ctx);
8464 status = vfs_resolver_status(result);
8465 seq = vfs_resolver_sequence(result);
8466
8467 lck_mtx_lock(&rp->vr_lock);
8468 if (seq > rp->vr_lastseq) {
8469 if (status == RESOLVER_UNRESOLVED)
8470 rp->vr_flags &= ~VNT_RESOLVED;
8471 rp->vr_lastseq = seq;
8472 }
8473 rp->vr_flags &= ~VNT_VFS_UNMOUNTED;
8474 lck_mtx_unlock(&rp->vr_lock);
8475
8476 /* On resolver errors, propagate the error back up */
8477 return (status == RESOLVER_ERROR ? vfs_resolver_auxiliary(result) : 0);
8478 }
8479
8480 static int
8481 triggerisdescendant(mount_t mp, mount_t rmp)
8482 {
8483 int match = FALSE;
8484
8485 /*
8486 * walk up vnode covered chain looking for a match
8487 */
8488 name_cache_lock_shared();
8489
8490 while (1) {
8491 vnode_t vp;
8492
8493 /* did we encounter "/" ? */
8494 if (mp->mnt_flag & MNT_ROOTFS)
8495 break;
8496
8497 vp = mp->mnt_vnodecovered;
8498 if (vp == NULLVP)
8499 break;
8500
8501 mp = vp->v_mount;
8502 if (mp == rmp) {
8503 match = TRUE;
8504 break;
8505 }
8506 }
8507
8508 name_cache_unlock();
8509
8510 return (match);
8511 }
8512
8513 struct trigger_unmount_info {
8514 vfs_context_t ctx;
8515 mount_t top_mp;
8516 vnode_t trigger_vp;
8517 mount_t trigger_mp;
8518 uint32_t trigger_vid;
8519 int flags;
8520 };
8521
8522 static int
8523 trigger_unmount_callback(mount_t mp, void * arg)
8524 {
8525 struct trigger_unmount_info * infop = (struct trigger_unmount_info *)arg;
8526 boolean_t mountedtrigger = FALSE;
8527
8528 /*
8529 * When we encounter the top level mount we're done
8530 */
8531 if (mp == infop->top_mp)
8532 return (VFS_RETURNED_DONE);
8533
8534 if ((mp->mnt_vnodecovered == NULL) ||
8535 (vnode_getwithref(mp->mnt_vnodecovered) != 0)) {
8536 return (VFS_RETURNED);
8537 }
8538
8539 if ((mp->mnt_vnodecovered->v_mountedhere == mp) &&
8540 (mp->mnt_vnodecovered->v_resolve != NULL) &&
8541 (mp->mnt_vnodecovered->v_resolve->vr_flags & VNT_RESOLVED)) {
8542 mountedtrigger = TRUE;
8543 }
8544 vnode_put(mp->mnt_vnodecovered);
8545
8546 /*
8547 * When we encounter a mounted trigger, check if its under the top level mount
8548 */
8549 if ( !mountedtrigger || !triggerisdescendant(mp, infop->top_mp) )
8550 return (VFS_RETURNED);
8551
8552 /*
8553 * Process any pending nested mount (now that its not referenced)
8554 */
8555 if ((infop->trigger_vp != NULLVP) &&
8556 (vnode_getwithvid(infop->trigger_vp, infop->trigger_vid) == 0)) {
8557 vnode_t vp = infop->trigger_vp;
8558 int error;
8559
8560 infop->trigger_vp = NULLVP;
8561
8562 if (mp == vp->v_mountedhere) {
8563 vnode_put(vp);
8564 printf("trigger_unmount_callback: unexpected match '%s'\n",
8565 mp->mnt_vfsstat.f_mntonname);
8566 return (VFS_RETURNED);
8567 }
8568 if (infop->trigger_mp != vp->v_mountedhere) {
8569 vnode_put(vp);
8570 printf("trigger_unmount_callback: trigger mnt changed! (%p != %p)\n",
8571 infop->trigger_mp, vp->v_mountedhere);
8572 goto savenext;
8573 }
8574
8575 error = vnode_trigger_unresolve(vp, infop->flags, infop->ctx);
8576 vnode_put(vp);
8577 if (error) {
8578 printf("unresolving: '%s', err %d\n",
8579 vp->v_mountedhere ? vp->v_mountedhere->mnt_vfsstat.f_mntonname :
8580 "???", error);
8581 return (VFS_RETURNED_DONE); /* stop iteration on errors */
8582 }
8583 }
8584 savenext:
8585 /*
8586 * We can't call resolver here since we hold a mount iter
8587 * ref on mp so save its covered vp for later processing
8588 */
8589 infop->trigger_vp = mp->mnt_vnodecovered;
8590 if ((infop->trigger_vp != NULLVP) &&
8591 (vnode_getwithref(infop->trigger_vp) == 0)) {
8592 if (infop->trigger_vp->v_mountedhere == mp) {
8593 infop->trigger_vid = infop->trigger_vp->v_id;
8594 infop->trigger_mp = mp;
8595 }
8596 vnode_put(infop->trigger_vp);
8597 }
8598
8599 return (VFS_RETURNED);
8600 }
8601
8602 /*
8603 * Attempt to unmount any trigger mounts nested underneath a mount.
8604 * This is a best effort attempt and no retries are performed here.
8605 *
8606 * Note: mp->mnt_rwlock is held exclusively on entry (so be carefull)
8607 */
8608 __private_extern__
8609 void
8610 vfs_nested_trigger_unmounts(mount_t mp, int flags, vfs_context_t ctx)
8611 {
8612 struct trigger_unmount_info info;
8613
8614 /* Must have trigger vnodes */
8615 if (mp->mnt_numtriggers == 0) {
8616 return;
8617 }
8618 /* Avoid recursive requests (by checking covered vnode) */
8619 if ((mp->mnt_vnodecovered != NULL) &&
8620 (vnode_getwithref(mp->mnt_vnodecovered) == 0)) {
8621 boolean_t recursive = FALSE;
8622
8623 if ((mp->mnt_vnodecovered->v_mountedhere == mp) &&
8624 (mp->mnt_vnodecovered->v_resolve != NULL) &&
8625 (mp->mnt_vnodecovered->v_resolve->vr_flags & VNT_VFS_UNMOUNTED)) {
8626 recursive = TRUE;
8627 }
8628 vnode_put(mp->mnt_vnodecovered);
8629 if (recursive)
8630 return;
8631 }
8632
8633 /*
8634 * Attempt to unmount any nested trigger mounts (best effort)
8635 */
8636 info.ctx = ctx;
8637 info.top_mp = mp;
8638 info.trigger_vp = NULLVP;
8639 info.trigger_vid = 0;
8640 info.trigger_mp = NULL;
8641 info.flags = flags;
8642
8643 (void) vfs_iterate(VFS_ITERATE_TAIL_FIRST, trigger_unmount_callback, &info);
8644
8645 /*
8646 * Process remaining nested mount (now that its not referenced)
8647 */
8648 if ((info.trigger_vp != NULLVP) &&
8649 (vnode_getwithvid(info.trigger_vp, info.trigger_vid) == 0)) {
8650 vnode_t vp = info.trigger_vp;
8651
8652 if (info.trigger_mp == vp->v_mountedhere) {
8653 (void) vnode_trigger_unresolve(vp, flags, ctx);
8654 }
8655 vnode_put(vp);
8656 }
8657 }
8658
8659 int
8660 vfs_addtrigger(mount_t mp, const char *relpath, struct vnode_trigger_info *vtip, vfs_context_t ctx)
8661 {
8662 struct nameidata nd;
8663 int res;
8664 vnode_t rvp, vp;
8665 struct vnode_trigger_param vtp;
8666
8667 /*
8668 * Must be called for trigger callback, wherein rwlock is held
8669 */
8670 lck_rw_assert(&mp->mnt_rwlock, LCK_RW_ASSERT_HELD);
8671
8672 TRIG_LOG("Adding trigger at %s\n", relpath);
8673 TRIG_LOG("Trying VFS_ROOT\n");
8674
8675 /*
8676 * We do a lookup starting at the root of the mountpoint, unwilling
8677 * to cross into other mountpoints.
8678 */
8679 res = VFS_ROOT(mp, &rvp, ctx);
8680 if (res != 0) {
8681 goto out;
8682 }
8683
8684 TRIG_LOG("Trying namei\n");
8685
8686 NDINIT(&nd, LOOKUP, OP_LOOKUP, USEDVP | NOCROSSMOUNT | FOLLOW, UIO_SYSSPACE,
8687 CAST_USER_ADDR_T(relpath), ctx);
8688 nd.ni_dvp = rvp;
8689 res = namei(&nd);
8690 if (res != 0) {
8691 vnode_put(rvp);
8692 goto out;
8693 }
8694
8695 vp = nd.ni_vp;
8696 nameidone(&nd);
8697 vnode_put(rvp);
8698
8699 TRIG_LOG("Trying vnode_resolver_create()\n");
8700
8701 /*
8702 * Set up blob. vnode_create() takes a larger structure
8703 * with creation info, and we needed something different
8704 * for this case. One needs to win, or we need to munge both;
8705 * vnode_create() wins.
8706 */
8707 bzero(&vtp, sizeof(vtp));
8708 vtp.vnt_resolve_func = vtip->vti_resolve_func;
8709 vtp.vnt_unresolve_func = vtip->vti_unresolve_func;
8710 vtp.vnt_rearm_func = vtip->vti_rearm_func;
8711 vtp.vnt_reclaim_func = vtip->vti_reclaim_func;
8712 vtp.vnt_reclaim_func = vtip->vti_reclaim_func;
8713 vtp.vnt_data = vtip->vti_data;
8714 vtp.vnt_flags = vtip->vti_flags;
8715
8716 res = vnode_resolver_create(mp, vp, &vtp, TRUE);
8717 vnode_put(vp);
8718 out:
8719 TRIG_LOG("Returning %d\n", res);
8720 return res;
8721 }
8722
8723 #endif /* CONFIG_TRIGGERS */