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 * 33 * Redistribution and use in source and binary forms, with or without 34 * modification, are permitted provided that the following conditions 35 * are met: 36 * 1. Redistributions of source code must retain the above copyright 37 * notice, this list of conditions and the following disclaimer. 38 * 2. Redistributions in binary form must reproduce the above copyright 39 * notice, this list of conditions and the following disclaimer in the 40 * documentation and/or other materials provided with the distribution. 41 * 3. All advertising materials mentioning features or use of this software 42 * must display the following acknowledgement: 43 * This product includes software developed by the University of 44 * California, Berkeley and its contributors. 45 * 4. Neither the name of the University nor the names of its contributors 46 * may be used to endorse or promote products derived from this software 47 * without specific prior written permission. 48 * 49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 59 * SUCH DAMAGE. 60 * 61 * @(#)vnode.h 8.17 (Berkeley) 5/20/95 62 */ 63 /* 64 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce 65 * support for mandatory and extensible security protections. This notice 66 * is included in support of clause 2.2 (b) of the Apple Public License, 67 * Version 2.0. 68 */ 69 70 #ifndef _SYS_VNODE_INTERNAL_H_ 71 #define _SYS_VNODE_INTERNAL_H_ 72 73 #include <sys/appleapiopts.h> 74 #include <sys/cdefs.h> 75 #include <sys/queue.h> 76 #include <sys/lock.h> 77 78 #include <sys/time.h> 79 #include <sys/uio.h> 80 81 #include <sys/vm.h> 82 #include <sys/systm.h> 83 #include <kern/locks.h> 84 #include <vm/vm_kern.h> 85 #include <sys/vnode.h> 86 #include <sys/namei.h> 87 #include <kern/smr.h> 88 #include <sys/vfs_context.h> 89 #include <sys/sysctl.h> 90 91 92 struct lockf; 93 struct label; 94 95 LIST_HEAD(buflists, buf); 96 97 #if CONFIG_TRIGGERS 98 /* 99 * VFS Internal (private) trigger vnode resolver info. 100 */ 101 struct vnode_resolve { 102 lck_mtx_t vr_lock; /* protects vnode_resolve_t fields */ 103 trigger_vnode_resolve_callback_t vr_resolve_func; 104 trigger_vnode_unresolve_callback_t vr_unresolve_func; 105 trigger_vnode_rearm_callback_t vr_rearm_func; 106 trigger_vnode_reclaim_callback_t vr_reclaim_func; 107 void * vr_data; /* private data for resolver */ 108 uint32_t vr_flags; 109 uint32_t vr_lastseq; 110 }; 111 typedef struct vnode_resolve *vnode_resolve_t; 112 113 /* private vr_flags */ 114 #define VNT_RESOLVED (1UL << 31) 115 #define VNT_VFS_UNMOUNTED (1UL << 30) 116 #define VNT_EXTERNAL (1UL << 29) 117 118 #endif /* CONFIG_TRIGGERS */ 119 120 #if CONFIG_IOCOUNT_TRACE 121 #define IOCOUNT_TRACE_VGET 0 122 #define IOCOUNT_TRACE_VPUT 1 123 #define IOCOUNT_TRACE_MAX_TYPES 2 124 #define IOCOUNT_TRACE_MAX_IDX 32 125 #define IOCOUNT_TRACE_MAX_FRAMES 16 126 127 struct vnode_iocount_trace { 128 int idx; 129 int counts[IOCOUNT_TRACE_MAX_IDX]; 130 void *stacks[IOCOUNT_TRACE_MAX_IDX][IOCOUNT_TRACE_MAX_FRAMES]; 131 }; 132 typedef struct vnode_iocount_trace *vnode_iocount_trace_t; 133 #endif /* CONFIG_IOCOUNT_TRACE */ 134 135 #if CONFIG_FILE_LEASES 136 #define FL_FLAG_RELEASE_PENDING 0x00000001 137 #define FL_FLAG_DOWNGRADE_PENDING 0x00000002 138 139 struct file_lease { 140 LIST_ENTRY(file_lease) fl_link; 141 struct fileglob *fl_fg; /* The file that the lease is placed on */ 142 pid_t fl_pid; /* The process's pid that owns the lease */ 143 int fl_type; /* The file lease type: F_RDLCK, F_WRLCK */ 144 uint32_t fl_flags; /* The file lease flags */ 145 uint64_t fl_release_start; /* The lease release start time */ 146 uint64_t fl_downgrade_start; /* The lease downgrade start time */ 147 }; 148 typedef struct file_lease *file_lease_t; 149 #endif /* CONFIG_FILE_LEASES */ 150 151 /* 152 * Reading or writing any of these items requires holding the appropriate lock. 153 * v_freelist is locked by the global vnode_list_lock 154 * v_mntvnodes is locked by the mount_lock 155 * v_nclinks and v_ncchildren are protected by the global name_cache_lock 156 * v_cleanblkhd and v_dirtyblkhd and v_iterblkflags are locked via the global buf_mtx 157 * the rest of the structure is protected by the vnode_lock 158 */ 159 struct vnode { 160 lck_mtx_t v_lock; /* vnode mutex */ 161 TAILQ_ENTRY(vnode) v_freelist; /* vnode freelist */ 162 TAILQ_ENTRY(vnode) v_mntvnodes; /* vnodes for mount point */ 163 TAILQ_HEAD(, namecache) v_ncchildren; /* name cache entries that regard us as their parent */ 164 LIST_HEAD(, namecache) v_nclinks; /* name cache entries that name this vnode */ 165 vnode_t v_defer_reclaimlist; /* in case we have to defer the reclaim to avoid recursion */ 166 uint32_t v_listflag; /* flags protected by the vnode_list_lock (see below) */ 167 uint32_t v_flag; /* vnode flags (see below) */ 168 uint16_t v_lflag; /* vnode local and named ref flags */ 169 uint8_t v_iterblkflags; /* buf iterator flags */ 170 uint8_t v_references; /* number of times io_count has been granted */ 171 int32_t v_kusecount; /* count of in-kernel refs */ 172 int32_t v_usecount; /* reference count of users */ 173 int32_t v_iocount; /* iocounters */ 174 void * XNU_PTRAUTH_SIGNED_PTR("vnode.v_owner") v_owner; /* act that owns the vnode */ 175 uint8_t v_ext_flag; /* additional vnode flags, (v_flags is not enough) */ 176 uint8_t v_type; /* vnode type */ 177 uint16_t v_tag; /* type of underlying data */ 178 uint32_t v_id; /* identity of vnode contents */ 179 union { 180 struct mount * XNU_PTRAUTH_SIGNED_PTR("vnode.v_data") vu_mountedhere; /* ptr to mounted vfs (VDIR) */ 181 struct socket * XNU_PTRAUTH_SIGNED_PTR("vnode.vu_socket") vu_socket; /* unix ipc (VSOCK) */ 182 struct specinfo * XNU_PTRAUTH_SIGNED_PTR("vnode.vu_specinfo") vu_specinfo; /* device (VCHR, VBLK) */ 183 struct fifoinfo * XNU_PTRAUTH_SIGNED_PTR("vnode.vu_fifoinfo") vu_fifoinfo; /* fifo (VFIFO) */ 184 struct ubc_info * XNU_PTRAUTH_SIGNED_PTR("vnode.vu_ubcinfo") vu_ubcinfo; /* valid for (VREG) */ 185 } v_un; 186 struct buflists v_cleanblkhd; /* clean blocklist head */ 187 struct buflists v_dirtyblkhd; /* dirty blocklist head */ 188 struct klist v_knotes; /* knotes attached to this vnode */ 189 /* 190 * the following 4 fields are protected 191 * by the name_cache_lock held in 192 * excluive mode 193 */ 194 kauth_cred_t XNU_PTRAUTH_SIGNED_PTR("vnode.v_cred") v_cred; /* last authorized credential */ 195 kauth_action_t v_authorized_actions; /* current authorized actions for v_cred */ 196 int v_cred_timestamp; /* determine if entry is stale for MNTK_AUTH_OPAQUE */ 197 int v_nc_generation; /* changes when nodes are removed from the name cache */ 198 /* 199 * back to the vnode lock for protection 200 */ 201 int32_t v_numoutput; /* num of writes in progress */ 202 int32_t v_writecount; /* reference count of writers */ 203 uint32_t v_holdcount; /* reference to keep vnode from being freed after reclaim */ 204 const char *v_name; /* name component of the vnode */ 205 vnode_t XNU_PTRAUTH_SIGNED_PTR("vnode.v_parent") v_parent; /* pointer to parent vnode */ 206 struct lockf *v_lockf; /* advisory lock list head */ 207 int(**v_op)(void *); /* vnode operations vector */ 208 mount_t XNU_PTRAUTH_SIGNED_PTR("vnode.v_mount") v_mount; /* ptr to vfs we are in */ 209 void * v_data; /* private data for fs */ 210 #if CONFIG_MACF 211 struct label *v_label; /* MAC security label */ 212 #endif 213 #if CONFIG_TRIGGERS 214 vnode_resolve_t v_resolve; /* trigger vnode resolve info (VDIR only) */ 215 #endif /* CONFIG_TRIGGERS */ 216 #if CONFIG_FIRMLINKS 217 vnode_t v_fmlink; /* firmlink if set (VDIR only), Points to source 218 * if VFLINKTARGET is set, if VFLINKTARGET is not 219 * set, points to target */ 220 #endif /* CONFIG_FIRMLINKS */ 221 #if CONFIG_IO_COMPRESSION_STATS 222 io_compression_stats_t io_compression_stats; /* IO compression statistics */ 223 #endif /* CONFIG_IO_COMPRESSION_STATS */ 224 225 #if CONFIG_IOCOUNT_TRACE 226 vnode_iocount_trace_t v_iocount_trace; 227 #endif /* CONFIG_IOCOUNT_TRACE */ 228 229 #if CONFIG_FILE_LEASES 230 LIST_HEAD(fl_head, file_lease) v_leases; /* list of leases in place */ 231 #endif /* CONFIG_FILE_LEASES */ 232 }; 233 234 #define v_mountedhere v_un.vu_mountedhere 235 #define v_socket v_un.vu_socket 236 #define v_specinfo v_un.vu_specinfo 237 #define v_fifoinfo v_un.vu_fifoinfo 238 #define v_ubcinfo v_un.vu_ubcinfo 239 240 241 /* 242 * v_iterblkflags 243 */ 244 #define VBI_ITER 0x1 245 #define VBI_ITERWANT 0x2 246 #define VBI_CLEAN 0x4 247 #define VBI_DIRTY 0x8 248 #define VBI_NEWBUF 0x10 249 250 /* 251 * v_listflag 252 */ 253 #define VLIST_RAGE 0x01 /* vnode is currently in the rapid age list */ 254 #define VLIST_DEAD 0x02 /* vnode is currently in the dead list */ 255 #define VLIST_ASYNC_WORK 0x04 /* vnode is currently on the deferred async work queue */ 256 #define VLIST_NO_REUSE 0x08 /* vnode should not be reused, will be deallocated */ 257 258 /* 259 * v_lflags 260 */ 261 #define VL_SUSPENDED 0x0001 /* vnode is suspended */ 262 #define VL_DRAIN 0x0002 /* vnode is being drained */ 263 #define VL_TERMINATE 0x0004 /* vnode is in the process of being recycled */ 264 #define VL_TERMWANT 0x0008 /* there's a waiter for recycle finish (vnode_getiocount)*/ 265 #define VL_DEAD 0x0010 /* vnode is dead, cleaned of filesystem-specific info */ 266 #define VL_MARKTERM 0x0020 /* vnode should be recycled when no longer referenced */ 267 #define VL_OPSCHANGE 0x0040 /* device vnode is changing vnodeops */ 268 #define VL_NEEDINACTIVE 0x0080 /* delay VNOP_INACTIVE until iocount goes to 0 */ 269 270 #define VL_LABEL 0x0100 /* vnode is marked for labeling */ 271 #define VL_LABELWAIT 0x0200 /* vnode is marked for labeling */ 272 #define VL_LABELED 0x0400 /* vnode is labeled */ 273 #define VL_LWARNED 0x0800 274 #define VL_HASSTREAMS 0x1000 /* vnode has had at least one associated named stream vnode (may not have one any longer) */ 275 276 #define VNAMED_UBC 0x2000 /* ubc named reference */ 277 #define VNAMED_MOUNT 0x4000 /* mount point named reference */ 278 #define VNAMED_FSHASH 0x8000 /* FS hash named reference */ 279 280 /* 281 * v_flags 282 */ 283 #define VROOT 0x000001 /* root of its file system */ 284 #define VTEXT 0x000002 /* vnode is a pure text prototype */ 285 #define VSYSTEM 0x000004 /* vnode being used by kernel */ 286 #define VISTTY 0x000008 /* vnode represents a tty */ 287 #define VRAGE 0x000010 /* vnode is in rapid age state */ 288 #define VBDEVVP 0x000020 /* vnode created by bdevvp */ 289 #define VDEVFLUSH 0x000040 /* device vnode after vflush */ 290 #define VMOUNT 0x000080 /* mount operation in progress */ 291 #define VBWAIT 0x000100 /* waiting for output to complete */ 292 #define VSHARED_DYLD 0x000200 /* vnode is a dyld shared cache file */ 293 #define VNOCACHE_DATA 0x000400 /* don't keep data cached once it's been consumed */ 294 #define VSTANDARD 0x000800 /* vnode obtained from common pool */ 295 #define VAGE 0x001000 /* Insert vnode at head of free list */ 296 #define VRAOFF 0x002000 /* read ahead disabled */ 297 #define VNCACHEABLE 0x004000 /* vnode is allowed to be put back in name cache */ 298 #if NAMEDSTREAMS 299 #define VISSHADOW 0x008000 /* vnode is a shadow file */ 300 #endif 301 #define VSWAP 0x010000 /* vnode is being used as swapfile */ 302 #define VTHROTTLED 0x020000 /* writes or pageouts have been throttled */ 303 /* wakeup tasks waiting when count falls below threshold */ 304 #define VNOFLUSH 0x040000 /* don't vflush() if SKIPSYSTEM */ 305 #define VLOCKLOCAL 0x080000 /* this vnode does adv locking in vfs */ 306 #define VISHARDLINK 0x100000 /* hard link needs special processing on lookup and in volfs */ 307 #define VISUNION 0x200000 /* union special processing */ 308 #define VISNAMEDSTREAM 0x400000 /* vnode is a named stream (eg HFS resource fork) */ 309 #define VOPENEVT 0x800000 /* if process is P_CHECKOPENEVT, then or in the O_EVTONLY flag on open */ 310 #define VCANDEALLOC 0x1000000 311 #define VNOCS 0x2000000 /* is there no code signature available */ 312 #define VISDIRTY 0x4000000 /* vnode will need IO if reclaimed */ 313 #define VFASTDEVCANDIDATE 0x8000000 /* vnode is a candidate to store on a fast device */ 314 #define VAUTOCANDIDATE 0x10000000 /* vnode was automatically marked as a fast-dev candidate */ 315 #define VFMLINKTARGET 0x20000000 /* vnode is firmlink target */ 316 #define VMOUNTEDHERE 0x40000000 /* vnode is a mountpoint */ 317 /* 318 * 0x80000000 not used. 319 */ 320 321 /* v_ext_flags (8 bits) */ 322 #define VE_LINKCHANGE 0x01 323 #define VE_LINKCHANGEWAIT 0x02 324 325 /* 326 * This structure describes vnode data which is specific to a file descriptor. 327 * It is currently used only for file descriptors which are for opened for 328 * directories. 329 */ 330 struct fd_vn_data { 331 lck_mtx_t fv_lock; /* Used to serialize directory enumeration on fd */ 332 off_t fv_offset; /* Offset to be used */ 333 void *fv_dircookie; /* If FS doesn't like offsets in directories */ 334 caddr_t fv_buf; /* Temporary buffer to store directory entries */ 335 size_t fv_bufsiz; /* Valid size of fv_buf */ 336 size_t fv_bufdone; /* How much of fv_buf is processed */ 337 size_t fv_bufallocsiz; /* Allocation size determined for Buffer*/ 338 off_t fv_soff; /* Starting FS offset for this buffer */ 339 off_t fv_eoff; /* Ending FS offset for this buffer */ 340 int fv_eofflag;/* Does fv_eoff represent EOF ? */ 341 }; 342 343 /* 344 * FV_DIRBUF_START_SIZ is the initial size of the buffer passed to VNOP_READDIR. 345 * That may not be enough for some filesytems so the current algorithm works its 346 * way upto FV_DIRBUF_MAX_SIZ 347 */ 348 #define FV_DIRBUF_DIRENTRY_SIZ (sizeof(struct direntry)) 349 #define FV_DIRBUF_START_SIZ FV_DIRBUF_DIRENTRY_SIZ 350 #define FV_DIRBUF_MAX_SIZ (4*(sizeof(struct direntry))) 351 352 #define FV_LOCK(fvd) lck_mtx_lock(&(((struct fd_vn_data *)fvd)->fv_lock)) 353 #define FV_UNLOCK(fvd) lck_mtx_unlock(&(((struct fd_vn_data *)fvd)->fv_lock)) 354 355 /* 356 * Global vnode data. 357 */ 358 extern struct vnode *rootvnode; /* root (i.e. "/") vnode */ 359 360 #ifdef CONFIG_IMGSRC_ACCESS 361 #define MAX_IMAGEBOOT_NESTING 2 362 extern struct vnode *imgsrc_rootvnodes[]; 363 #endif /* CONFIG_IMGSRC_ACCESS */ 364 365 366 /* 367 * Mods for exensibility. 368 */ 369 370 /* 371 * Flags for vdesc_flags: 372 */ 373 #define VDESC_MAX_VPS 16 374 /* Low order 16 flag bits are reserved for willrele flags for vp arguments. */ 375 #define VDESC_VP0_WILLRELE 0x00001 376 #define VDESC_VP1_WILLRELE 0x00002 377 #define VDESC_VP2_WILLRELE 0x00004 378 #define VDESC_VP3_WILLRELE 0x00008 379 #define VDESC_NOMAP_VPP 0x00100 380 #define VDESC_VPP_WILLRELE 0x00200 381 382 #define VDESC_DISABLED 0x10000 /* descriptor defined but op is unused, has no op slot */ 383 384 /* 385 * VDESC_NO_OFFSET is used to identify the end of the offset list 386 * and in places where no such field exists. 387 */ 388 #define VDESC_NO_OFFSET -1 389 390 /* 391 * This structure describes the vnode operation taking place. 392 */ 393 struct vnodeop_desc { 394 int vdesc_offset; /* offset in vector--first for speed */ 395 const char *vdesc_name; /* a readable name for debugging */ 396 int vdesc_flags; /* VDESC_* flags */ 397 398 /* 399 * These ops are used by bypass routines to map and locate arguments. 400 * Creds and procs are not needed in bypass routines, but sometimes 401 * they are useful to (for example) transport layers. 402 * Nameidata is useful because it has a cred in it. 403 */ 404 int *vdesc_vp_offsets; /* list ended by VDESC_NO_OFFSET */ 405 int vdesc_vpp_offset; /* return vpp location */ 406 int vdesc_cred_offset; /* cred location, if any */ 407 int vdesc_proc_offset; /* proc location, if any */ 408 int vdesc_componentname_offset; /* if any */ 409 int vdesc_context_offset; /* context location, if any */ 410 /* 411 * Finally, we've got a list of private data (about each operation) 412 * for each transport layer. (Support to manage this list is not 413 * yet part of BSD.) 414 */ 415 caddr_t *vdesc_transports; 416 }; 417 418 /* 419 * A list of all the operation descs. 420 */ 421 extern struct vnodeop_desc *vnodeop_descs[]; 422 423 424 /* 425 * This macro is very helpful in defining those offsets in the vdesc struct. 426 * 427 * This is stolen from X11R4. I ingored all the fancy stuff for 428 * Crays, so if you decide to port this to such a serious machine, 429 * you might want to consult Intrisics.h's XtOffset{,Of,To}. 430 */ 431 #define VOPARG_OFFSET(p_type, field) \ 432 ((int) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL))) 433 #define VOPARG_OFFSETOF(s_type, field) \ 434 VOPARG_OFFSET(s_type*,field) 435 #define VOPARG_OFFSETTO(S_TYPE, S_OFFSET, STRUCT_P) \ 436 ((S_TYPE)(((char*)(STRUCT_P))+(S_OFFSET))) 437 438 439 440 /* 441 * VOCALL calls an op given an ops vector. We break it out because BSD's 442 * vclean changes the ops vector and then wants to call ops with the old 443 * vector. 444 */ 445 #define VOCALL(OPSV, OFF, AP) (( *((OPSV)[(OFF)])) (AP)) 446 447 /* 448 * This call works for vnodes in the kernel. 449 */ 450 #define VCALL(VP, OFF, AP) VOCALL((VP)->v_op,(OFF),(AP)) 451 #define VDESC(OP) (& __CONCAT(OP,_desc)) 452 #define VOFFSET(OP) (VDESC(OP)->vdesc_offset) 453 454 struct ostat; 455 456 /* bdevvp moved to vnode.h as private KPI */ 457 void cvtstat(struct stat *st, struct ostat *ost); 458 void vprint(const char *label, struct vnode *vp); 459 460 461 __private_extern__ int set_package_extensions_table(user_addr_t data, int nentries, int maxwidth); 462 #if CONFIG_MACF 463 int vn_setlabel(struct vnode *vp, struct label *intlabel, 464 vfs_context_t context); 465 #endif 466 void fifo_printinfo(struct vnode *vp); 467 int vn_open(struct nameidata *ndp, int fmode, int cmode); 468 int vn_open_modflags(struct nameidata *ndp, int *fmode, int cmode); 469 int vn_open_auth(struct nameidata *ndp, int *fmode, struct vnode_attr *, vnode_t authvp); 470 int vn_close(vnode_t, int flags, vfs_context_t ctx); 471 errno_t vn_remove(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx); 472 errno_t vn_rename(struct vnode *fdvp, struct vnode **fvpp, struct componentname *fcnp, struct vnode_attr *fvap, 473 struct vnode *tdvp, struct vnode **tvpp, struct componentname *tcnp, struct vnode_attr *tvap, 474 uint32_t flags, vfs_context_t ctx); 475 476 void lock_vnode_and_post(vnode_t, int); 477 478 #define post_event_if_success(_vp, _error, _event) \ 479 do { \ 480 if (0 == (_error)) { \ 481 lock_vnode_and_post((_vp), (_event)); \ 482 } \ 483 } while (0) 484 485 /* Authorization subroutines */ 486 int vn_authorize_open_existing(vnode_t vp, struct componentname *cnp, int fmode, vfs_context_t ctx, void *reserved); 487 int vn_authorize_create(vnode_t, struct componentname *, struct vnode_attr *, vfs_context_t, void*); 488 int vn_attribute_prepare(vnode_t dvp, struct vnode_attr *vap, uint32_t *defaulted_fieldsp, vfs_context_t ctx); 489 void vn_attribute_cleanup(struct vnode_attr *vap, uint32_t defaulted_fields); 490 int vn_authorize_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp, 491 struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp, 492 vfs_context_t ctx, void *reserved); 493 int vn_authorize_renamex(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp, 494 struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp, 495 vfs_context_t ctx, vfs_rename_flags_t flags, void *reserved); 496 int vn_authorize_renamex_with_paths(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp, const char *from_path, 497 struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp, const char *to_path, 498 vfs_context_t ctx, vfs_rename_flags_t flags, void *reserved); 499 500 typedef int (*vn_create_authorizer_t)(vnode_t, struct componentname *, struct vnode_attr *, vfs_context_t, void*); 501 int vn_authorize_mkdir(vnode_t, struct componentname *, struct vnode_attr *, vfs_context_t, void*); 502 int vn_authorize_null(vnode_t, struct componentname *, struct vnode_attr *, vfs_context_t, void*); 503 int vnode_attr_authorize_dir_clone(struct vnode_attr *vap, kauth_action_t action, 504 struct vnode_attr *dvap, vnode_t sdvp, mount_t mp, dir_clone_authorizer_op_t vattr_op, 505 uint32_t flags, vfs_context_t ctx, void *reserved); 506 /* End of authorization subroutines */ 507 508 void vnode_attr_handle_uid_and_gid(struct vnode_attr *vap, mount_t mp, vfs_context_t ctx); 509 510 #define VN_CREATE_NOAUTH (1<<0) 511 #define VN_CREATE_NOINHERIT (1<<1) 512 #define VN_CREATE_UNION (1<<2) 513 #define VN_CREATE_NOLABEL (1<<3) 514 #define VN_CREATE_DOOPEN (1<<4) /* Open file if a batched operation is available */ 515 errno_t vn_create(vnode_t, vnode_t *, struct nameidata *, struct vnode_attr *, uint32_t, int, uint32_t*, vfs_context_t); 516 int vn_mkdir(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx); 517 int vn_rmdir(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx); 518 519 int vn_getxattr(vnode_t, const char *, uio_t, size_t *, int, vfs_context_t); 520 int vn_setxattr(vnode_t, const char *, uio_t, int, vfs_context_t); 521 int vn_removexattr(vnode_t, const char *, int, vfs_context_t); 522 int vn_listxattr(vnode_t, uio_t, size_t *, int, vfs_context_t); 523 524 #if NAMEDSTREAMS 525 errno_t vnode_getnamedstream(vnode_t, vnode_t *, const char *, enum nsoperation, int, vfs_context_t); 526 errno_t vnode_makenamedstream(vnode_t, vnode_t *, const char *, int, vfs_context_t); 527 errno_t vnode_removenamedstream(vnode_t, vnode_t, const char *, int, vfs_context_t); 528 errno_t vnode_flushnamedstream(vnode_t vp, vnode_t svp, vfs_context_t context); 529 errno_t vnode_relenamedstream(vnode_t vp, vnode_t svp); 530 errno_t vnode_verifynamedstream(vnode_t vp); 531 #endif 532 533 534 void nchinit(void); 535 int resize_namecache(int newsize); 536 void name_cache_lock_shared(void); 537 boolean_t name_cache_lock_shared_to_exclusive(void); 538 void name_cache_lock(void); 539 void name_cache_unlock(void); 540 void cache_enter_with_gen(vnode_t dvp, vnode_t vp, struct componentname *cnp, int gen); 541 const char *cache_enter_create(vnode_t dvp, vnode_t vp, struct componentname *cnp); 542 543 extern int nc_disabled; 544 545 #define vnode_lock_convert(v) lck_mtx_convert_spin(&(v)->v_lock) 546 547 void vnode_lock_spin(vnode_t); 548 549 550 void vnode_list_lock(void); 551 void vnode_list_unlock(void); 552 553 #define VNODE_REF_FORCE 0x1 554 int vnode_ref_ext(vnode_t, int, int); 555 556 void vnode_rele_internal(vnode_t, int, int, int); 557 #ifdef BSD_KERNEL_PRIVATE 558 int vnode_getalways(vnode_t); 559 int vnode_getalways_from_pager(vnode_t); 560 int vget_internal(vnode_t, int, int); 561 errno_t vnode_getiocount(vnode_t, unsigned int, int); 562 vnode_t vnode_getparent_if_different(vnode_t, vnode_t); 563 void vnode_link_lock(vnode_t); 564 void vnode_link_unlock(vnode_t); 565 #endif /* BSD_KERNEL_PRIVATE */ 566 int vnode_get_locked(vnode_t); 567 int vnode_put_locked(vnode_t); 568 #ifdef BSD_KERNEL_PRIVATE 569 int vnode_put_from_pager(vnode_t); 570 vnode_t vnode_drop_and_unlock(vnode_t); 571 #endif /* BSD_KERNEL_PRIVATE */ 572 573 int vnode_issock(vnode_t); 574 int vnode_isaliased(vnode_t); 575 576 void unlock_fsnode(vnode_t, int *); 577 int lock_fsnode(vnode_t, int *); 578 579 errno_t vnode_resume(vnode_t); 580 errno_t vnode_suspend(vnode_t); 581 582 583 errno_t vnode_mtime(vnode_t, struct timespec *, vfs_context_t); 584 errno_t vnode_flags(vnode_t, uint32_t *, vfs_context_t); 585 586 errno_t vnode_size(vnode_t, off_t *, vfs_context_t); 587 errno_t vnode_setsize(vnode_t, off_t, int ioflag, vfs_context_t); 588 int vnode_setattr_fallback(vnode_t vp, struct vnode_attr *vap, vfs_context_t ctx); 589 int vnode_isspec(vnode_t vp); 590 591 592 #ifdef BSD_KERNEL_PRIVATE 593 594 typedef uint32_t compound_vnop_id_t; 595 #define COMPOUND_VNOP_OPEN 0x01 596 #define COMPOUND_VNOP_MKDIR 0x02 597 #define COMPOUND_VNOP_RENAME 0x04 598 #define COMPOUND_VNOP_REMOVE 0x08 599 #define COMPOUND_VNOP_RMDIR 0x10 600 601 int vnode_compound_rename_available(vnode_t vp); 602 int vnode_compound_rmdir_available(vnode_t vp); 603 int vnode_compound_mkdir_available(vnode_t vp); 604 int vnode_compound_remove_available(vnode_t vp); 605 int vnode_compound_open_available(vnode_t vp); 606 int vnode_compound_op_available(vnode_t, compound_vnop_id_t); 607 #endif /* BSD_KERNEL_PRIVATE */ 608 609 void vn_setunionwait(vnode_t); 610 void vn_checkunionwait(vnode_t); 611 void vn_clearunionwait(vnode_t, int); 612 613 void SPECHASH_LOCK(void); 614 void SPECHASH_UNLOCK(void); 615 lck_mtx_t * SPECHASH_LOCK_ADDR(void); 616 617 void vnode_authorize_init(void); 618 619 void vfsinit(void); 620 void vnode_lock(vnode_t); 621 void vnode_unlock(vnode_t); 622 623 void vn_print_state(vnode_t /* vp */, const char * /* fmt */, ...) 624 __printflike(2, 3); 625 626 #if DEVELOPMENT || DEBUG 627 #define VNASSERT(exp, vp, msg) \ 628 do { \ 629 if (__improbable(!(exp))) { \ 630 vn_print_state(vp, "VNASSERT failed %s:%d\n", __FILE__, \ 631 __LINE__); \ 632 panic msg; \ 633 } \ 634 } while (0) 635 #else 636 #define VNASSERT(exp, vp, msg) 637 #endif /* DEVELOPMENT || DEBUG */ 638 639 /* 640 * XXX exported symbols; should be static 641 */ 642 void vfs_op_init(void); 643 void vfs_opv_init(void); 644 645 #ifdef BSD_KERNEL_PRIVATE 646 int vfs_sysctl_node SYSCTL_HANDLER_ARGS; 647 void vnode_setneedinactive(vnode_t); 648 int vnode_hasnamedstreams(vnode_t); /* Does this vnode have associated named streams? */ 649 650 errno_t 651 vnode_readdir64(struct vnode *vp, struct uio *uio, int flags, int *eofflag, 652 int *numdirent, vfs_context_t ctxp); 653 654 void vnode_setswapmount(vnode_t); 655 int64_t vnode_getswappin_avail(vnode_t); 656 657 int vnode_get_snapdir(vnode_t, vnode_t *, vfs_context_t); 658 659 #if CONFIG_TRIGGERS 660 /* VFS Internal Vnode Trigger Interfaces (Private) */ 661 int vnode_trigger_resolve(vnode_t, struct nameidata *, vfs_context_t); 662 void vnode_trigger_rearm(vnode_t, vfs_context_t); 663 void vfs_nested_trigger_unmounts(mount_t, int, vfs_context_t); 664 #endif /* CONFIG_TRIGGERS */ 665 666 int build_path_with_parent(vnode_t, vnode_t /* parent */, char *, int, int *, size_t *, int, vfs_context_t); 667 668 void nspace_resolver_init(void); 669 void nspace_resolver_exited(struct proc *); 670 671 int vnode_isinuse_locked(vnode_t, int, int ); 672 673 kauth_cred_t vnode_cred(vnode_t); 674 675 int fsgetpath_internal(vfs_context_t, int, uint64_t, vm_size_t, caddr_t, uint32_t options, int *); 676 677 #endif /* BSD_KERNEL_PRIVATE */ 678 679 #if CONFIG_IO_COMPRESSION_STATS 680 /* 681 * update the IO compression stats tracked at block granularity 682 */ 683 int vnode_updateiocompressionblockstats(vnode_t vp, uint32_t size_bucket); 684 685 /* 686 * update the IO compression stats tracked for the buffer 687 */ 688 int vnode_updateiocompressionbufferstats(vnode_t vp, uint64_t uncompressed_size, uint64_t compressed_size, uint32_t size_bucket, uint32_t compression_bucket); 689 690 #endif /* CONFIG_IO_COMPRESSION_STATS */ 691 692 extern bool rootvp_is_ssd; 693 694 #if CONFIG_FILE_LEASES 695 int vnode_setlease(vnode_t vp, struct fileglob *fg, int fl_type, int expcounts, 696 vfs_context_t ctx); 697 int vnode_getlease(vnode_t vp); 698 int vnode_breaklease(vnode_t vp, uint32_t oflags, vfs_context_t ctx); 699 void vnode_breakdirlease(vnode_t vp, bool need_parent, uint32_t oflags); 700 void vnode_revokelease(vnode_t vp, bool locked); 701 #endif /* CONFIG_FILE_LEASES */ 702 703 bool vfs_context_allow_fs_blksize_nocache_write(vfs_context_t); 704 705 #define VFS_SMR_DECLARE \ 706 extern smr_t vfs_smr 707 708 #define VFS_SMR() vfs_smr 709 #define vfs_smr_enter() smr_enter(VFS_SMR()) 710 #define vfs_smr_leave() smr_leave(VFS_SMR()) 711 #define vfs_smr_synchronize() smr_synchronize(VFS_SMR()) 712 713 bool vnode_hold_smr(vnode_t); 714 715 #endif /* !_SYS_VNODE_INTERNAL_H_ */ 716