]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/vnode.h
xnu-2050.24.15.tar.gz
[apple/xnu.git] / bsd / sys / vnode.h
CommitLineData
1c79356b 1/*
6d2010ae 2 * Copyright (c) 2000-2010 Apple Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
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.
8f6c56a5 14 *
2d21ac55
A
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
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
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.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
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#ifndef _VNODE_H_
65#define _VNODE_H_
66
9bccf70c 67#include <sys/appleapiopts.h>
1c79356b 68#include <sys/cdefs.h>
1c79356b 69#ifdef KERNEL
91447636
A
70#include <sys/kernel_types.h>
71#include <sys/signal.h>
72#endif
1c79356b
A
73
74/*
75 * The vnode is the focus of all file activity in UNIX. There is a
76 * unique vnode allocated for each active file, each current directory,
77 * each mounted-on file, text file, and the root.
78 */
79
80/*
81 * Vnode types. VNON means no type.
82 */
83enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD, VSTR,
84 VCPLX };
85
86/*
87 * Vnode tag types.
88 * These are for the benefit of external programs only (e.g., pstat)
89 * and should NEVER be inspected by the kernel.
90 */
91enum vtagtype {
92 VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC,
93 VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS,
2d21ac55
A
94 VT_UNION, VT_HFS, VT_ZFS, VT_DEVFS, VT_WEBDAV, VT_UDF, VT_AFP,
95 VT_CDDA, VT_CIFS, VT_OTHER};
1c79356b 96
91447636 97
1c79356b 98/*
91447636 99 * flags for VNOP_BLOCKMAP
1c79356b 100 */
91447636
A
101#define VNODE_READ 0x01
102#define VNODE_WRITE 0x02
1c79356b 103
9bccf70c 104
9bccf70c 105
91447636
A
106/* flags for VNOP_ALLOCATE */
107#define PREALLOCATE 0x00000001 /* preallocate allocation blocks */
108#define ALLOCATECONTIG 0x00000002 /* allocate contigious space */
109#define ALLOCATEALL 0x00000004 /* allocate all requested space */
110 /* or no space at all */
111#define FREEREMAINDER 0x00000008 /* deallocate allocated but */
112 /* unfilled blocks */
113#define ALLOCATEFROMPEOF 0x00000010 /* allocate from the physical eof */
114#define ALLOCATEFROMVOL 0x00000020 /* allocate from the volume offset */
9bccf70c 115
1c79356b 116/*
91447636 117 * Token indicating no attribute value yet assigned. some user source uses this
1c79356b 118 */
91447636 119#define VNOVAL (-1)
1c79356b 120
b0d623f7 121
91447636 122#ifdef KERNEL
55e303ae 123
91447636
A
124/*
125 * Flags for ioflag.
126 */
127#define IO_UNIT 0x0001 /* do I/O as atomic unit */
128#define IO_APPEND 0x0002 /* append write to end */
129#define IO_SYNC 0x0004 /* do I/O synchronously */
130#define IO_NODELOCKED 0x0008 /* underlying node already locked */
131#define IO_NDELAY 0x0010 /* FNDELAY flag set in file table */
132#define IO_NOZEROFILL 0x0020 /* F_SETSIZE fcntl uses to prevent zero filling */
2d21ac55
A
133#ifdef XNU_KERNEL_PRIVATE
134#define IO_REVOKE IO_NOZEROFILL /* revoked close for tty, will Not be used in conjunction */
135#endif /* XNU_KERNEL_PRIVATE */
91447636
A
136#define IO_TAILZEROFILL 0x0040 /* zero fills at the tail of write */
137#define IO_HEADZEROFILL 0x0080 /* zero fills at the head of write */
138#define IO_NOZEROVALID 0x0100 /* do not zero fill if valid page */
139#define IO_NOZERODIRTY 0x0200 /* do not zero fill if page is dirty */
140#define IO_CLOSE 0x0400 /* I/O issued from close path */
141#define IO_NOCACHE 0x0800 /* same effect as VNOCACHE_DATA, but only for this 1 I/O */
142#define IO_RAOFF 0x1000 /* same effect as VRAOFF, but only for this 1 I/O */
143#define IO_DEFWRITE 0x2000 /* defer write if vfs.defwrite is set */
2d21ac55
A
144#define IO_PASSIVE 0x4000 /* this I/O is marked as background I/O so it won't throttle Throttleable I/O */
145#define IO_BACKGROUND IO_PASSIVE /* used for backward compatibility. to be removed after IO_BACKGROUND is no longer
146 * used by DiskImages in-kernel mode */
147#define IO_NOAUTH 0x8000 /* No authorization checks. */
316670eb
A
148#define IO_NODIRECT 0x10000 /* don't use direct synchronous writes if IO_NOCACHE is specified */
149#define IO_ENCRYPTED 0x20000 /* Retrieve encrypted blocks from the filesystem */
150#define IO_RETURN_ON_THROTTLE 0x40000
151#define IO_SINGLE_WRITER 0x80000
152#define IO_SYSCALL_DISPATCH 0x100000 /* I/O origin is file table syscall */
55e303ae 153
1c79356b 154/*
91447636
A
155 * Component Name: this structure describes the pathname
156 * information that is passed through the VNOP interface.
1c79356b 157 */
91447636
A
158struct componentname {
159 /*
160 * Arguments to lookup.
161 */
b0d623f7
A
162 uint32_t cn_nameiop; /* lookup operation */
163 uint32_t cn_flags; /* flags (see below) */
91447636
A
164#ifdef BSD_KERNEL_PRIVATE
165 vfs_context_t cn_context;
6d2010ae 166 struct nameidata *cn_ndp; /* pointer back to nameidata */
91447636
A
167
168/* XXX use of these defines are deprecated */
169#define cn_proc (cn_context->vc_proc + 0) /* non-lvalue */
170#define cn_cred (cn_context->vc_ucred + 0) /* non-lvalue */
171
172#else
6d2010ae
A
173 void * cn_reserved1; /* use vfs_context_t */
174 void * cn_reserved2; /* use vfs_context_t */
91447636
A
175#endif
176 /*
177 * Shared between lookup and commit routines.
178 */
179 char *cn_pnbuf; /* pathname buffer */
b0d623f7 180 int cn_pnlen; /* length of allocated buffer */
91447636 181 char *cn_nameptr; /* pointer to looked up name */
b0d623f7
A
182 int cn_namelen; /* length of looked up component */
183 uint32_t cn_hash; /* hash value of looked up name */
184 uint32_t cn_consume; /* chars to consume in lookup() */
91447636 185};
0b4e3aa0 186
1c79356b 187/*
91447636 188 * component name operations (for VNOP_LOOKUP)
1c79356b 189 */
91447636
A
190#define LOOKUP 0 /* perform name lookup only */
191#define CREATE 1 /* setup for file creation */
192#define DELETE 2 /* setup for file deletion */
193#define RENAME 3 /* setup for file renaming */
194#define OPMASK 3 /* mask for operation */
195
196/*
197 * component name operational modifier flags
198 */
2d21ac55
A
199#define FOLLOW 0x00000040 /* follow symbolic links */
200#define NOTRIGGER 0x10000000 /* don't trigger automounts */
91447636
A
201
202/*
203 * component name parameter descriptors.
204 */
2d21ac55
A
205#define ISDOTDOT 0x00002000 /* current component name is .. */
206#define MAKEENTRY 0x00004000 /* entry is to be added to name cache */
207#define ISLASTCN 0x00008000 /* this is last component of pathname */
6d2010ae
A
208#define ISWHITEOUT 0x00020000 /* OBSOLETE: found whiteout */
209#define DOWHITEOUT 0x00040000 /* OBSOLETE: do whiteouts */
91447636
A
210
211
91447636
A
212/* The following structure specifies a vnode for creation */
213struct vnode_fsparam {
214 struct mount * vnfs_mp; /* mount point to which this vnode_t is part of */
215 enum vtype vnfs_vtype; /* vnode type */
216 const char * vnfs_str; /* File system Debug aid */
217 struct vnode * vnfs_dvp; /* The parent vnode */
218 void * vnfs_fsnode; /* inode */
219 int (**vnfs_vops)(void *); /* vnode dispatch table */
220 int vnfs_markroot; /* is this a root vnode in FS (not a system wide one) */
221 int vnfs_marksystem; /* is a system vnode */
222 dev_t vnfs_rdev; /* dev_t for block or char vnodes */
223 off_t vnfs_filesize; /* that way no need for getattr in UBC */
224 struct componentname * vnfs_cnp; /* component name to add to namecache */
225 uint32_t vnfs_flags; /* flags */
1c79356b
A
226};
227
91447636
A
228#define VNFS_NOCACHE 0x01 /* do not add to name cache at this time */
229#define VNFS_CANTCACHE 0x02 /* never add this instance to the name cache */
2d21ac55 230#define VNFS_ADDFSREF 0x04 /* take fs (named) reference */
91447636
A
231
232#define VNCREATE_FLAVOR 0
233#define VCREATESIZE sizeof(struct vnode_fsparam)
234
6d2010ae
A
235
236#ifdef KERNEL_PRIVATE
237/*
238 * Resolver callback SPI for trigger vnodes
239 *
240 * Only available from kernels built with CONFIG_TRIGGERS option
241 */
242
243/*!
244 @enum Pathname Lookup Operations
245 @abstract Constants defining pathname operations (passed to resolver callbacks)
246 */
247enum path_operation {
248 OP_LOOKUP,
249 OP_MOUNT,
250 OP_UNMOUNT,
251 OP_STATFS,
252 OP_OPEN,
253 OP_LINK,
254 OP_UNLINK,
255 OP_RENAME,
256 OP_CHDIR,
257 OP_CHROOT,
258 OP_MKNOD,
259 OP_MKFIFO,
260 OP_SYMLINK,
261 OP_ACCESS,
262 OP_PATHCONF,
263 OP_READLINK,
264 OP_GETATTR,
265 OP_SETATTR,
266 OP_TRUNCATE,
267 OP_COPYFILE,
268 OP_MKDIR,
269 OP_RMDIR,
270 OP_REVOKE,
271 OP_EXCHANGEDATA,
272 OP_SEARCHFS,
273 OP_FSCTL,
274 OP_GETXATTR,
275 OP_SETXATTR,
276 OP_REMOVEXATTR,
277 OP_LISTXATTR,
278 OP_MAXOP /* anything beyond previous entry is invalid */
279};
280
281/*
282 * is operation a traditional trigger (autofs)?
283 * 1 if trigger, 0 if no trigger
284 */
285extern int vfs_istraditionaltrigger(enum path_operation op, const struct componentname *cnp);
286
287/*!
288 @enum resolver status
289 @abstract Constants defining resolver status
290 @constant RESOLVER_RESOLVED the resolver has finished (typically means a successful mount)
291 @constant RESOLVER_NOCHANGE the resolver status didn't change
292 @constant RESOLVER_UNRESOLVED the resolver has finished (typically means a successful unmount)
293 @constant RESOLVER_ERROR the resolver encountered an error (errno passed in aux value)
294 @constant RESOLVER_STOP a request to destroy trigger XXX do we need this???
295 */
296enum resolver_status {
297 RESOLVER_RESOLVED,
298 RESOLVER_NOCHANGE,
299 RESOLVER_UNRESOLVED,
300 RESOLVER_ERROR,
301 RESOLVER_STOP
302};
303
304typedef uint64_t resolver_result_t;
305
306/*
307 * Compound resolver result
308 *
309 * The trigger vnode callbacks use a compound result value. In addition
310 * to the resolver status, it contains a sequence number and an auxiliary
311 * value.
312 *
313 * The sequence value is used by VFS to sequence-stamp trigger vnode
314 * state transitions. It is expected to be incremented each time a
315 * resolver changes state (ie resolved or unresolved). A result
316 * containing a stale sequence (older than a trigger vnode's current
317 * value) will be ignored by VFS.
318 *
319 * The auxiliary value is currently only used to deliver the errno
320 * value for RESOLVER_ERROR status conditions. When a RESOLVER_ERROR
321 * occurs, VFS will propagate this error back to the syscall that
322 * encountered the trigger vnode.
323 */
324extern resolver_result_t vfs_resolver_result(uint32_t seq, enum resolver_status stat, int aux);
325
326/*
327 * Extract values from a compound resolver result
328 */
329extern enum resolver_status vfs_resolver_status(resolver_result_t);
330extern uint32_t vfs_resolver_sequence(resolver_result_t);
331extern int vfs_resolver_auxiliary(resolver_result_t);
332
333
334/*!
335 @typedef trigger_vnode_resolve_callback_t
336 @abstract function prototype for a trigger vnode resolve callback
337 @discussion This function is associated with a trigger vnode during a vnode create. It is
338 typically called when a lookup operation occurs for a trigger vnode
339 @param vp The trigger vnode which needs resolving
340 @param cnp Various data about lookup, e.g. filename and state flags
341 @param pop The pathname operation that initiated the lookup (see enum path_operation).
342 @param flags
343 @param data Arbitrary data supplied by vnode trigger creator
344 @param ctx Context for authentication.
345 @return RESOLVER_RESOLVED, RESOLVER_NOCHANGE, RESOLVER_UNRESOLVED or RESOLVER_ERROR
346*/
347typedef resolver_result_t (* trigger_vnode_resolve_callback_t)(
348 vnode_t vp,
349 const struct componentname * cnp,
350 enum path_operation pop,
351 int flags,
352 void * data,
353 vfs_context_t ctx);
354
355/*!
356 @typedef trigger_vnode_unresolve_callback_t
357 @abstract function prototype for a trigger vnode unresolve callback
358 @discussion This function is associated with a trigger vnode during a vnode create. It is
359 called to unresolve a trigger vnode (typically this means unmount).
360 @param vp The trigger vnode which needs unresolving
361 @param flags Unmount flags
362 @param data Arbitrary data supplied by vnode trigger creator
363 @param ctx Context for authentication.
364 @return RESOLVER_NOCHANGE, RESOLVER_UNRESOLVED or RESOLVER_ERROR
365*/
366typedef resolver_result_t (* trigger_vnode_unresolve_callback_t)(
367 vnode_t vp,
368 int flags,
369 void * data,
370 vfs_context_t ctx);
371
372/*!
373 @typedef trigger_vnode_rearm_callback_t
374 @abstract function prototype for a trigger vnode rearm callback
375 @discussion This function is associated with a trigger vnode during a vnode create. It is
376 called to verify a rearm from VFS (i.e. should VFS rearm the trigger?).
377 @param vp The trigger vnode which needs rearming
378 @param flags
379 @param data Arbitrary data supplied by vnode trigger creator
380 @param ctx Context for authentication.
381 @return RESOLVER_NOCHANGE or RESOLVER_ERROR
382*/
383typedef resolver_result_t (* trigger_vnode_rearm_callback_t)(
384 vnode_t vp,
385 int flags,
386 void * data,
387 vfs_context_t ctx);
388
389/*!
390 @typedef trigger_vnode_reclaim_callback_t
391 @abstract function prototype for a trigger vnode reclaim callback
392 @discussion This function is associated with a trigger vnode during a vnode create. It is
393 called to deallocate private callback argument data
394 @param vp The trigger vnode associated with the data
395 @param data The arbitrary data supplied by vnode trigger creator
396*/
397typedef void (* trigger_vnode_reclaim_callback_t)(
398 vnode_t vp,
399 void * data);
400
401/*!
402 @function vnode_trigger_update
403 @abstract Update a trigger vnode's state.
404 @discussion This allows a resolver to notify VFS of a state change in a trigger vnode.
405 @param vp The trigger vnode whose information to update.
406 @param result A compound resolver result value
407 @return EINVAL if result value is invalid or vp isn't a trigger vnode
408 */
409extern int vnode_trigger_update(vnode_t vp, resolver_result_t result);
410
411struct vnode_trigger_info {
412 trigger_vnode_resolve_callback_t vti_resolve_func;
413 trigger_vnode_unresolve_callback_t vti_unresolve_func;
414 trigger_vnode_rearm_callback_t vti_rearm_func;
415 trigger_vnode_reclaim_callback_t vti_reclaim_func;
416 void * vti_data; /* auxiliary data (optional) */
417 uint32_t vti_flags; /* optional flags (see below) */
418};
419
420/*
421 * SPI for creating a trigger vnode
422 *
423 * Uses the VNCREATE_TRIGGER flavor with existing vnode_create() KPI
424 *
425 * Only one resolver per vnode.
426 *
427 * ERRORS (in addition to vnode_create errors):
428 * EINVAL (invalid resolver info, like invalid flags)
429 * ENOTDIR (only directories can have a resolver)
430 * EPERM (vnode cannot be a trigger - eg root dir of a file system)
431 * ENOMEM
432 */
433struct vnode_trigger_param {
434 struct vnode_fsparam vnt_params; /* same as for VNCREATE_FLAVOR */
435 trigger_vnode_resolve_callback_t vnt_resolve_func;
436 trigger_vnode_unresolve_callback_t vnt_unresolve_func;
437 trigger_vnode_rearm_callback_t vnt_rearm_func;
438 trigger_vnode_reclaim_callback_t vnt_reclaim_func;
439 void * vnt_data; /* auxiliary data (optional) */
440 uint32_t vnt_flags; /* optional flags (see below) */
441};
442
443#define VNCREATE_TRIGGER (('T' << 8) + ('V'))
444#define VNCREATE_TRIGGER_SIZE sizeof(struct vnode_trigger_param)
445
446/*
447 * vnode trigger flags (vnt_flags)
448 *
449 * VNT_AUTO_REARM:
450 * On unmounts of a trigger mount, automatically re-arm the trigger.
451 *
452 * VNT_NO_DIRECT_MOUNT:
453 * A trigger vnode instance that doesn't directly trigger a mount,
454 * instead it triggers the mounting of sub-trigger nodes.
455 */
456#define VNT_AUTO_REARM (1 << 0)
457#define VNT_NO_DIRECT_MOUNT (1 << 1)
458#define VNT_VALID_MASK (VNT_AUTO_REARM | VNT_NO_DIRECT_MOUNT)
459
460#endif /* KERNEL_PRIVATE */
461
462
1c79356b 463/*
91447636
A
464 * Vnode attributes, new-style.
465 *
466 * The vnode_attr structure is used to transact attribute changes and queries
467 * with the filesystem.
468 *
469 * Note that this structure may be extended, but existing fields must not move.
1c79356b 470 */
91447636 471
316670eb 472#define VATTR_INIT(v) do {(v)->va_supported = (v)->va_active = 0ll; (v)->va_vaflags = 0; } while(0)
91447636
A
473#define VATTR_SET_ACTIVE(v, a) ((v)->va_active |= VNODE_ATTR_ ## a)
474#define VATTR_SET_SUPPORTED(v, a) ((v)->va_supported |= VNODE_ATTR_ ## a)
475#define VATTR_IS_SUPPORTED(v, a) ((v)->va_supported & VNODE_ATTR_ ## a)
476#define VATTR_CLEAR_ACTIVE(v, a) ((v)->va_active &= ~VNODE_ATTR_ ## a)
477#define VATTR_CLEAR_SUPPORTED(v, a) ((v)->va_supported &= ~VNODE_ATTR_ ## a)
478#define VATTR_IS_ACTIVE(v, a) ((v)->va_active & VNODE_ATTR_ ## a)
479#define VATTR_ALL_SUPPORTED(v) (((v)->va_active & (v)->va_supported) == (v)->va_active)
480#define VATTR_INACTIVE_SUPPORTED(v) do {(v)->va_active &= ~(v)->va_supported; (v)->va_supported = 0;} while(0)
481#define VATTR_SET(v, a, x) do { (v)-> a = (x); VATTR_SET_ACTIVE(v, a);} while(0)
482#define VATTR_WANTED(v, a) VATTR_SET_ACTIVE(v, a)
483#define VATTR_RETURN(v, a, x) do { (v)-> a = (x); VATTR_SET_SUPPORTED(v, a);} while(0)
484#define VATTR_NOT_RETURNED(v, a) (VATTR_IS_ACTIVE(v, a) && !VATTR_IS_SUPPORTED(v, a))
1c79356b
A
485
486/*
91447636
A
487 * Two macros to simplify conditional checking in kernel code.
488 */
489#define VATTR_IS(v, a, x) (VATTR_IS_SUPPORTED(v, a) && (v)-> a == (x))
490#define VATTR_IS_NOT(v, a, x) (VATTR_IS_SUPPORTED(v, a) && (v)-> a != (x))
491
492#define VNODE_ATTR_va_rdev (1LL<< 0) /* 00000001 */
493#define VNODE_ATTR_va_nlink (1LL<< 1) /* 00000002 */
494#define VNODE_ATTR_va_total_size (1LL<< 2) /* 00000004 */
495#define VNODE_ATTR_va_total_alloc (1LL<< 3) /* 00000008 */
496#define VNODE_ATTR_va_data_size (1LL<< 4) /* 00000010 */
497#define VNODE_ATTR_va_data_alloc (1LL<< 5) /* 00000020 */
498#define VNODE_ATTR_va_iosize (1LL<< 6) /* 00000040 */
499#define VNODE_ATTR_va_uid (1LL<< 7) /* 00000080 */
500#define VNODE_ATTR_va_gid (1LL<< 8) /* 00000100 */
501#define VNODE_ATTR_va_mode (1LL<< 9) /* 00000200 */
502#define VNODE_ATTR_va_flags (1LL<<10) /* 00000400 */
503#define VNODE_ATTR_va_acl (1LL<<11) /* 00000800 */
504#define VNODE_ATTR_va_create_time (1LL<<12) /* 00001000 */
505#define VNODE_ATTR_va_access_time (1LL<<13) /* 00002000 */
506#define VNODE_ATTR_va_modify_time (1LL<<14) /* 00004000 */
507#define VNODE_ATTR_va_change_time (1LL<<15) /* 00008000 */
508#define VNODE_ATTR_va_backup_time (1LL<<16) /* 00010000 */
509#define VNODE_ATTR_va_fileid (1LL<<17) /* 00020000 */
510#define VNODE_ATTR_va_linkid (1LL<<18) /* 00040000 */
511#define VNODE_ATTR_va_parentid (1LL<<19) /* 00080000 */
512#define VNODE_ATTR_va_fsid (1LL<<20) /* 00100000 */
513#define VNODE_ATTR_va_filerev (1LL<<21) /* 00200000 */
514#define VNODE_ATTR_va_gen (1LL<<22) /* 00400000 */
515#define VNODE_ATTR_va_encoding (1LL<<23) /* 00800000 */
516#define VNODE_ATTR_va_type (1LL<<24) /* 01000000 */
517#define VNODE_ATTR_va_name (1LL<<25) /* 02000000 */
518#define VNODE_ATTR_va_uuuid (1LL<<26) /* 04000000 */
519#define VNODE_ATTR_va_guuid (1LL<<27) /* 08000000 */
520#define VNODE_ATTR_va_nchildren (1LL<<28) /* 10000000 */
2d21ac55 521#define VNODE_ATTR_va_dirlinkcount (1LL<<29) /* 20000000 */
6d2010ae 522#define VNODE_ATTR_va_addedtime (1LL<<30) /* 40000000 */
316670eb
A
523#define VNODE_ATTR_va_dataprotect_class (1LL<<31) /* 80000000 */
524#define VNODE_ATTR_va_dataprotect_flags (1LL<<32) /* 100000000 */
91447636
A
525
526#define VNODE_ATTR_BIT(n) (VNODE_ATTR_ ## n)
527/*
528 * Read-only attributes.
529 */
530#define VNODE_ATTR_RDONLY (VNODE_ATTR_BIT(va_rdev) | \
531 VNODE_ATTR_BIT(va_nlink) | \
532 VNODE_ATTR_BIT(va_total_size) | \
533 VNODE_ATTR_BIT(va_total_alloc) | \
534 VNODE_ATTR_BIT(va_data_alloc) | \
535 VNODE_ATTR_BIT(va_iosize) | \
536 VNODE_ATTR_BIT(va_fileid) | \
537 VNODE_ATTR_BIT(va_linkid) | \
538 VNODE_ATTR_BIT(va_parentid) | \
539 VNODE_ATTR_BIT(va_fsid) | \
540 VNODE_ATTR_BIT(va_filerev) | \
541 VNODE_ATTR_BIT(va_gen) | \
542 VNODE_ATTR_BIT(va_name) | \
543 VNODE_ATTR_BIT(va_type) | \
2d21ac55 544 VNODE_ATTR_BIT(va_nchildren) | \
316670eb
A
545 VNODE_ATTR_BIT(va_dirlinkcount) | \
546 VNODE_ATTR_BIT(va_addedtime))
91447636
A
547/*
548 * Attributes that can be applied to a new file object.
1c79356b 549 */
91447636
A
550#define VNODE_ATTR_NEWOBJ (VNODE_ATTR_BIT(va_rdev) | \
551 VNODE_ATTR_BIT(va_uid) | \
552 VNODE_ATTR_BIT(va_gid) | \
553 VNODE_ATTR_BIT(va_mode) | \
554 VNODE_ATTR_BIT(va_flags) | \
555 VNODE_ATTR_BIT(va_acl) | \
556 VNODE_ATTR_BIT(va_create_time) | \
557 VNODE_ATTR_BIT(va_modify_time) | \
558 VNODE_ATTR_BIT(va_change_time) | \
559 VNODE_ATTR_BIT(va_encoding) | \
560 VNODE_ATTR_BIT(va_type) | \
561 VNODE_ATTR_BIT(va_uuuid) | \
316670eb
A
562 VNODE_ATTR_BIT(va_guuid) | \
563 VNODE_ATTR_BIT(va_dataprotect_class) | \
564 VNODE_ATTR_BIT(va_dataprotect_flags))
91447636 565
b0d623f7 566
91447636
A
567struct vnode_attr {
568 /* bitfields */
569 uint64_t va_supported;
570 uint64_t va_active;
571
572 /*
573 * Control flags. The low 16 bits are reserved for the
574 * ioflags being passed for truncation operations.
575 */
576 int va_vaflags;
577
578 /* traditional stat(2) parameter fields */
579 dev_t va_rdev; /* device id (device nodes only) */
580 uint64_t va_nlink; /* number of references to this file */
581 uint64_t va_total_size; /* size in bytes of all forks */
582 uint64_t va_total_alloc; /* disk space used by all forks */
b0d623f7
A
583 uint64_t va_data_size; /* size in bytes of the fork managed by current vnode */
584 uint64_t va_data_alloc; /* disk space used by the fork managed by current vnode */
91447636
A
585 uint32_t va_iosize; /* optimal I/O blocksize */
586
587 /* file security information */
588 uid_t va_uid; /* owner UID */
589 gid_t va_gid; /* owner GID */
590 mode_t va_mode; /* posix permissions */
591 uint32_t va_flags; /* file flags */
592 struct kauth_acl *va_acl; /* access control list */
593
594 /* timestamps */
595 struct timespec va_create_time; /* time of creation */
596 struct timespec va_access_time; /* time of last access */
597 struct timespec va_modify_time; /* time of last data modification */
598 struct timespec va_change_time; /* time of last metadata change */
599 struct timespec va_backup_time; /* time of last backup */
600
601 /* file parameters */
602 uint64_t va_fileid; /* file unique ID in filesystem */
603 uint64_t va_linkid; /* file link unique ID */
604 uint64_t va_parentid; /* parent ID */
605 uint32_t va_fsid; /* filesystem ID */
606 uint64_t va_filerev; /* file revision counter */ /* XXX */
607 uint32_t va_gen; /* file generation count */ /* XXX - relationship of
608 * these two? */
609 /* misc parameters */
610 uint32_t va_encoding; /* filename encoding script */
611
612 enum vtype va_type; /* file type (create only) */
613 char * va_name; /* Name for ATTR_CMN_NAME; MAXPATHLEN bytes */
614 guid_t va_uuuid; /* file owner UUID */
615 guid_t va_guuid; /* file group UUID */
616
2d21ac55
A
617 /* Meaningful for directories only */
618 uint64_t va_nchildren; /* Number of items in a directory */
619 uint64_t va_dirlinkcount; /* Real references to dir (i.e. excluding "." and ".." refs) */
91447636
A
620
621 /* add new fields here only */
6d2010ae
A
622#ifdef BSD_KERNEL_PRIVATE
623 struct kauth_acl *va_base_acl;
624#else
625 void * va_reserved1;
626#endif /* BSD_KERNEL_PRIVATE */
316670eb 627 struct timespec va_addedtime; /* timestamp when item was added to parent directory */
b0d623f7 628
316670eb
A
629 /* Data Protection fields */
630 uint32_t va_dataprotect_class; /* class specified for this file if it didn't exist */
631 uint32_t va_dataprotect_flags; /* flags from NP open(2) to the filesystem */
91447636 632};
1c79356b 633
316670eb
A
634#ifdef BSD_KERNEL_PRIVATE
635/*
636 * Flags for va_dataprotect_flags
637 */
638#define VA_DP_RAWENCRYPTED 0x0001
639
640#endif
641
1c79356b 642/*
91447636 643 * Flags for va_vaflags.
1c79356b 644 */
6d2010ae
A
645#define VA_UTIMES_NULL 0x010000 /* utimes argument was NULL */
646#define VA_EXCLUSIVE 0x020000 /* exclusive create request */
647#define VA_NOINHERIT 0x040000 /* Don't inherit ACLs from parent */
648#define VA_NOAUTH 0x080000
91447636 649
1c79356b 650/*
91447636 651 * Modes. Some values same as Ixxx entries from inode.h for now.
1c79356b 652 */
91447636
A
653#define VSUID 0x800 /*04000*/ /* set user id on execution */
654#define VSGID 0x400 /*02000*/ /* set group id on execution */
655#define VSVTX 0x200 /*01000*/ /* save swapped text even after use */
656#define VREAD 0x100 /*00400*/ /* read, write, execute permissions */
657#define VWRITE 0x080 /*00200*/
658#define VEXEC 0x040 /*00100*/
659
1c79356b
A
660/*
661 * Convert between vnode types and inode formats (since POSIX.1
662 * defines mode word of stat structure in terms of inode formats).
663 */
664extern enum vtype iftovt_tab[];
665extern int vttoif_tab[];
666#define IFTOVT(mode) (iftovt_tab[((mode) & S_IFMT) >> 12])
667#define VTTOIF(indx) (vttoif_tab[(int)(indx)])
668#define MAKEIMODE(indx, mode) (int)(VTTOIF(indx) | (mode))
669
670/*
671 * Flags to various vnode functions.
672 */
673#define SKIPSYSTEM 0x0001 /* vflush: skip vnodes marked VSYSTEM */
674#define FORCECLOSE 0x0002 /* vflush: force file closeure */
675#define WRITECLOSE 0x0004 /* vflush: only close writeable files */
676#define SKIPSWAP 0x0008 /* vflush: skip vnodes marked VSWAP */
91447636 677#define SKIPROOT 0x0010 /* vflush: skip root vnodes marked VROOT */
1c79356b
A
678
679#define DOCLOSE 0x0008 /* vclean: close active files */
680
681#define V_SAVE 0x0001 /* vinvalbuf: sync file first */
682#define V_SAVEMETA 0x0002 /* vinvalbuf: leave indirect blocks */
683
91447636 684#define REVOKEALL 0x0001 /* vnop_revoke: revoke all aliases */
1c79356b 685
316670eb
A
686/* VNOP_REMOVE/unlink flags: */
687#define VNODE_REMOVE_NODELETEBUSY 0x0001 /* Do not delete busy files (Carbon) */
688#define VNODE_REMOVE_SKIP_NAMESPACE_EVENT 0x0002 /* Do not upcall to userland handlers */
1c79356b 689
91447636
A
690/* VNOP_READDIR flags: */
691#define VNODE_READDIR_EXTENDED 0x0001 /* use extended directory entries */
692#define VNODE_READDIR_REQSEEKOFF 0x0002 /* requires seek offset (cookies) */
3a60a9f5 693#define VNODE_READDIR_SEEKOFF32 0x0004 /* seek offset values should fit in 32 bits */
316670eb 694#define VNODE_READDIR_NAMEMAX 0x0008 /* For extended readdir, try to limit names to NAME_MAX bytes */
1c79356b 695
91447636 696#define NULLVP ((struct vnode *)NULL)
1c79356b 697
91447636
A
698#ifndef BSD_KERNEL_PRIVATE
699struct vnodeop_desc;
700#endif
1c79356b 701
91447636 702extern int desiredvnodes; /* number of vnodes desired */
1c79356b
A
703
704
705/*
706 * This structure is used to configure the new vnodeops vector.
707 */
708struct vnodeopv_entry_desc {
709 struct vnodeop_desc *opve_op; /* which operation this is */
710 int (*opve_impl)(void *); /* code implementing this operation */
711};
712struct vnodeopv_desc {
713 /* ptr to the ptr to the vector where op should go */
714 int (***opv_desc_vector_p)(void *);
715 struct vnodeopv_entry_desc *opv_desc_ops; /* null terminated list */
716};
717
b0d623f7
A
718/*!
719 @function vn_default_error
720 @abstract Default vnode operation to fill unsupported slots in vnode operation vectors.
721 @return ENOTSUP
1c79356b 722 */
91447636 723int vn_default_error(void);
1c79356b
A
724
725/*
726 * A generic structure.
727 * This can be used by bypass routines to identify generic arguments.
728 */
91447636 729struct vnop_generic_args {
1c79356b
A
730 struct vnodeop_desc *a_desc;
731 /* other random data follows, presumably */
732};
733
91447636
A
734#ifndef _KAUTH_ACTION_T
735typedef int kauth_action_t;
736# define _KAUTH_ACTION_T
737#endif
738
739#include <sys/vnode_if.h>
740
741__BEGIN_DECLS
742
b0d623f7
A
743/*!
744 @function vnode_create
745 @abstract Create and initialize a vnode.
746 @discussion Returns wth an iocount held on the vnode which must eventually be dropped with vnode_put().
747 @param flavor Should be VNCREATE_FLAVOR.
748 @param size Size of the struct vnode_fsparam in "data".
749 @param data Pointer to a struct vnode_fsparam containing initialization information.
750 @param vpp Pointer to a vnode pointer, to be filled in with newly created vnode.
751 @return 0 for success, error code otherwise.
752 */
753errno_t vnode_create(uint32_t, uint32_t, void *, vnode_t *);
754
755/*!
756 @function vnode_addfsref
757 @abstract Mark a vnode as being stored in a filesystem hash.
758 @discussion Should only be called once on a vnode, and never if that vnode was created with VNFS_ADDFSREF.
759 There should be a corresponding call to vnode_removefsref() when the vnode is reclaimed; VFS assumes that a
760 n unused vnode will not be marked as referenced by a filesystem.
761 @param vp The vnode to mark.
762 @return Always 0.
763 */
91447636 764int vnode_addfsref(vnode_t);
b0d623f7
A
765
766/*!
767 @function vnode_removefsref
768 @abstract Mark a vnode as no longer being stored in a filesystem hash.
769 @discussion Should only be called once on a vnode (during a reclaim), and only after the vnode has either been created with VNFS_ADDFSREF or marked by vnode_addfsref().
770 @param vp The vnode to unmark.
771 @return Always 0.
772 */
91447636
A
773int vnode_removefsref(vnode_t);
774
b0d623f7
A
775/*!
776 @function vnode_hasdirtyblks
777 @abstract Check if a vnode has dirty data waiting to be written to disk.
778 @discussion Note that this routine is unsynchronized; it is only a snapshot and its result may cease to be true at the moment it is returned..
779 @param vp The vnode to test.
780 @return Nonzero if there are dirty blocks, 0 otherwise
781 */
91447636 782int vnode_hasdirtyblks(vnode_t);
b0d623f7
A
783
784/*!
785 @function vnode_hascleanblks
786 @abstract Check if a vnode has clean buffers associated with it.
787 @discussion Note that this routine is unsynchronized; it is only a snapshot and its result may cease to be true at the moment it is returned..
788 @param vp The vnode to test.
789 @return Nonzero if there are clean blocks, 0 otherwise.
790 */
91447636 791int vnode_hascleanblks(vnode_t);
b0d623f7 792
2d21ac55 793#define VNODE_ASYNC_THROTTLE 15
b0d623f7
A
794/*!
795 @function vnode_waitforwrites
796 @abstract Wait for the number of pending writes on a vnode to drop below a target.
797 @param vp The vnode to monitor.
798 @param output_target Max pending write count with which to return.
799 @param slpflag Flags for msleep().
800 @param slptimeout Frequency with which to force a check for completion; increments of 10 ms.
801 @param msg String to pass msleep() .
802 @return 0 for success, or an error value from msleep().
803 */
2d21ac55 804int vnode_waitforwrites(vnode_t, int, int, int, const char *);
b0d623f7
A
805
806/*!
807 @function vnode_startwrite
808 @abstract Increment the count of pending writes on a vnode.
809 @param vp The vnode whose count to increment.
810 @return void.
811 */
91447636 812void vnode_startwrite(vnode_t);
b0d623f7
A
813
814/*!
815 @function vnode_startwrite
816 @abstract Decrement the count of pending writes on a vnode .
817 @discussion Also wakes up threads waiting for the write count to drop, as in vnode_waitforwrites.
818 @param vp The vnode whose count to decrement.
819 @return void.
820 */
91447636
A
821void vnode_writedone(vnode_t);
822
b0d623f7
A
823/*!
824 @function vnode_vtype
825 @abstract Return a vnode's type.
826 @param vp The vnode whose type to grab.
827 @return The vnode's type.
828 */
91447636 829enum vtype vnode_vtype(vnode_t);
b0d623f7
A
830
831/*!
832 @function vnode_vid
833 @abstract Return a vnode's vid (generation number), which is constant from creation until reclaim.
834 @param vp The vnode whose vid to grab.
835 @return The vnode's vid.
836 */
91447636 837uint32_t vnode_vid(vnode_t);
b0d623f7
A
838
839/*!
840 @function vnode_mountedhere
841 @abstract Returns a pointer to a mount placed on top of a vnode, should it exist.
842 @param vp The vnode from whom to take the covering mount.
843 @return Pointer to mount covering a vnode, or NULL if none exists.
844 */
91447636 845mount_t vnode_mountedhere(vnode_t vp);
b0d623f7
A
846
847/*!
848 @function vnode_mount
849 @abstract Get the mount structure for the filesystem that a vnode belongs to.
850 @param vp The vnode whose mount to grab.
851 @return The mount, directly.
852 */
91447636 853mount_t vnode_mount(vnode_t);
b0d623f7
A
854
855/*!
856 @function vnode_specrdev
857 @abstract Return the device id of the device associated with a special file.
858 @param vp The vnode whose device id to extract--vnode must be a special file.
859 @return The device id.
860 */
91447636 861dev_t vnode_specrdev(vnode_t);
b0d623f7
A
862
863/*!
864 @function vnode_fsnode
865 @abstract Gets the filesystem-specific data associated with a vnode.
866 @param vp The vnode whose data to grab.
867 @return The filesystem-specific data, directly.
868 */
91447636 869void * vnode_fsnode(vnode_t);
b0d623f7
A
870
871/*!
872 @function vnode_clearfsnode
873 @abstract Sets a vnode's filesystem-specific data to be NULL.
874 @discussion This routine should only be called when a vnode is no longer in use, i.e. during a VNOP_RECLAIM.
875 @param vp The vnode whose data to clear out.
876 @return void.
877 */
91447636
A
878void vnode_clearfsnode(vnode_t);
879
b0d623f7
A
880/*!
881 @function vnode_isvroot
882 @abstract Determine if a vnode is the root of its filesystem.
883 @param vp The vnode to test.
884 @return Nonzero if the vnode is the root, 0 if it is not.
885 */
91447636 886int vnode_isvroot(vnode_t);
b0d623f7
A
887
888/*!
889 @function vnode_issystem
890 @abstract Determine if a vnode is marked as a System vnode.
891 @param vp The vnode to test.
892 @return Nonzero if the vnode is a system vnode, 0 if it is not.
893 */
91447636 894int vnode_issystem(vnode_t);
b0d623f7
A
895
896/*!
897 @function vnode_ismount
898 @abstract Determine if there is currently a mount occurring which will cover this vnode.
899 @discussion Note that this is only a snapshot; a mount may begin or end at any time.
900 @param vp The vnode to test.
901 @return Nonzero if there is a mount in progress, 0 otherwise.
902 */
91447636 903int vnode_ismount(vnode_t);
b0d623f7
A
904
905/*!
906 @function vnode_isreg
907 @abstract Determine if a vnode is a regular file.
908 @param vp The vnode to test.
909 @return Nonzero if the vnode is of type VREG, 0 otherwise.
910 */
91447636 911int vnode_isreg(vnode_t);
b0d623f7
A
912
913/*!
914 @function vnode_isdir
915 @abstract Determine if a vnode is a directory.
916 @param vp The vnode to test.
917 @return Nonzero if the vnode is of type VDIR, 0 otherwise.
918 */
91447636 919int vnode_isdir(vnode_t);
b0d623f7
A
920
921/*!
922 @function vnode_islnk
923 @abstract Determine if a vnode is a symbolic link.
924 @param vp The vnode to test.
925 @return Nonzero if the vnode is of type VLNK, 0 otherwise.
926 */
91447636 927int vnode_islnk(vnode_t);
b0d623f7
A
928
929/*!
930 @function vnode_isfifo
931 @abstract Determine if a vnode is a named pipe.
932 @param vp The vnode to test.
933 @return Nonzero if the vnode is of type VFIFO, 0 otherwise.
934 */
91447636 935int vnode_isfifo(vnode_t);
b0d623f7
A
936
937/*!
938 @function vnode_isblk
939 @abstract Determine if a vnode is a block device special file.
940 @param vp The vnode to test.
941 @return Nonzero if the vnode is of type VBLK, 0 otherwise.
942 */
91447636 943int vnode_isblk(vnode_t);
b0d623f7
A
944
945/*!
946 @function vnode_ischr
947 @abstract Determine if a vnode is a character device special file.
948 @param vp The vnode to test.
949 @return Nonzero if the vnode is of type VCHR, 0 otherwise.
950 */
91447636
A
951int vnode_ischr(vnode_t);
952
b0d623f7
A
953/*!
954 @function vnode_isswap
955 @abstract Determine if a vnode is being used as a swap file.
956 @param vp The vnode to test.
957 @return Nonzero if the vnode is being used as swap, 0 otherwise.
958 */
959int vnode_isswap(vnode_t vp);
960
2d21ac55 961#ifdef __APPLE_API_UNSTABLE
b0d623f7
A
962/*!
963 @function vnode_isnamedstream
964 @abstract Determine if a vnode is a named stream.
965 @param vp The vnode to test.
966 @return Nonzero if the vnode is a named stream, 0 otherwise.
967 */
2d21ac55
A
968int vnode_isnamedstream(vnode_t);
969#endif
970
b0d623f7
A
971/*!
972 @function vnode_ismountedon
973 @abstract Determine if a vnode is a block device on which a filesystem has been mounted.
974 @discussion A block device marked as being mounted on cannot be opened.
975 @param vp The vnode to test.
976 @return Nonzero if the vnode is a block device on which an filesystem is mounted, 0 otherwise.
977 */
91447636 978int vnode_ismountedon(vnode_t);
b0d623f7
A
979
980/*!
981 @function vnode_setmountedon
982 @abstract Set flags indicating that a block device vnode has been mounted as a filesystem.
983 @discussion A block device marked as being mounted on cannot be opened.
984 @param vp The vnode to set flags on, a block device.
985 @return void.
986 */
91447636 987void vnode_setmountedon(vnode_t);
b0d623f7
A
988
989/*!
990 @function vnode_clearmountedon
991 @abstract Clear flags indicating that a block device vnode has been mounted as a filesystem.
992 @param vp The vnode to clear flags on, a block device.
993 @return void.
994 */
91447636
A
995void vnode_clearmountedon(vnode_t);
996
b0d623f7
A
997/*!
998 @function vnode_isrecycled
999 @abstract Check if a vnode is dead or in the process of being killed (recycled).
1000 @discussion This is only a snapshot: a vnode may start to be recycled, or go from dead to in use, at any time.
1001 @param vp The vnode to test.
1002 @return Nonzero if vnode is dead or being recycled, 0 otherwise.
1003 */
2d21ac55 1004int vnode_isrecycled(vnode_t);
b0d623f7
A
1005
1006/*!
1007 @function vnode_isnocache
1008 @abstract Check if a vnode is set to not have its data cached in memory (i.e. we write-through to disk and always read from disk).
1009 @param vp The vnode to test.
1010 @return Nonzero if vnode is set to not have data chached, 0 otherwise.
1011 */
91447636 1012int vnode_isnocache(vnode_t);
b0d623f7
A
1013
1014/*!
1015 @function vnode_israge
1016 @abstract Check if a vnode is marked for rapid aging
1017 @param vp The vnode to test.
1018 @return Nonzero if vnode is marked for rapid aging, 0 otherwise
1019 */
1020int vnode_israge(vnode_t);
1021
6d2010ae
A
1022/*!
1023 @function vnode_needssnapshots
1024 @abstract Check if a vnode needs snapshots events (regardless of its ctime status)
1025 @param vp The vnode to test.
1026 @return Nonzero if vnode needs snapshot events, 0 otherwise
1027 */
1028int vnode_needssnapshots(vnode_t);
1029
b0d623f7
A
1030/*!
1031 @function vnode_setnocache
1032 @abstract Set a vnode to not have its data cached in memory (i.e. we write-through to disk and always read from disk).
1033 @param vp The vnode whose flags to set.
1034 @return void.
1035 */
91447636 1036void vnode_setnocache(vnode_t);
b0d623f7
A
1037
1038/*!
1039 @function vnode_clearnocache
1040 @abstract Clear the flag on a vnode indicating that data should not be cached in memory (i.e. we write-through to disk and always read from disk).
1041 @param vp The vnode whose flags to clear.
1042 @return void.
1043 */
91447636 1044void vnode_clearnocache(vnode_t);
b0d623f7
A
1045
1046/*!
1047 @function vnode_isnoreadahead
1048 @abstract Check if a vnode is set to not have data speculatively read in in hopes of future cache hits.
1049 @param vp The vnode to test.
1050 @return Nonzero if readahead is disabled, 0 otherwise.
1051 */
91447636 1052int vnode_isnoreadahead(vnode_t);
b0d623f7
A
1053
1054/*!
1055 @function vnode_setnoreadahead
1056 @abstract Set a vnode to not have data speculatively read in in hopes of hitting in cache.
1057 @param vp The vnode on which to prevent readahead.
1058 @return void.
1059 */
91447636 1060void vnode_setnoreadahead(vnode_t);
2d21ac55 1061
b0d623f7
A
1062/*!
1063 @function vnode_clearnoreadahead
1064 @abstract Clear the flag indicating that a vnode should not have data speculatively read in.
1065 @param vp The vnode whose flag to clear.
1066 @return void.
1067 */
1068void vnode_clearnoreadahead(vnode_t);
2d21ac55 1069
91447636 1070/* left only for compat reasons as User code depends on this from getattrlist, for ex */
b0d623f7
A
1071
1072/*!
1073 @function vnode_settag
1074 @abstract Set a vnode filesystem-specific "tag."
1075 @discussion Sets a tag indicating which filesystem a vnode belongs to, e.g. VT_HFS, VT_UDF, VT_ZFS. The kernel never inspects this data, though the filesystem tags are defined in vnode.h; it is for the benefit of user programs via getattrlist.
1076 @param vp The vnode whose tag to set.
1077 @return void.
1078 */
91447636 1079void vnode_settag(vnode_t, int);
b0d623f7
A
1080
1081/*!
1082 @function vnode_tag
1083 @abstract Get the vnode filesystem-specific "tag."
1084 @discussion Gets the tag indicating which filesystem a vnode belongs to, e.g. VT_HFS, VT_UDF, VT_ZFS. The kernel never inspects this data, though the filesystem tags are defined in vnode.h; it is for the benefit of user programs via getattrlist.
1085 @param vp The vnode whose tag to grab.
1086 @return The tag.
1087 */
91447636 1088int vnode_tag(vnode_t);
b0d623f7
A
1089
1090/*!
1091 @function vnode_getattr
1092 @abstract Get vnode attributes.
1093 @discussion Desired attributes are set with VATTR_SET_ACTIVE and VNODE_ATTR* macros. Supported attributes are determined after call with VATTR_IS_SUPPORTED.
1094 @param vp The vnode whose attributes to grab.
1095 @param vap Structure containing: 1) A list of requested attributes 2) Space to indicate which attributes are supported and being returned 3) Space to return attributes.
1096 @param ctx Context for authentication.
1097 @return 0 for success or an error code.
1098 */
91447636 1099int vnode_getattr(vnode_t vp, struct vnode_attr *vap, vfs_context_t ctx);
b0d623f7
A
1100
1101/*!
1102 @function vnode_setattr
1103 @abstract Set vnode attributes.
1104 @discussion Attributes to set are marked with VATTR_SET_ACTIVE and VNODE_ATTR* macros. Attributes successfully set are determined after call with VATTR_IS_SUPPORTED.
1105 @param vp The vnode whose attributes to set.
1106 @param vap Structure containing: 1) A list of attributes to set 2) Space for values for those attributes 3) Space to indicate which attributes were set.
1107 @param ctx Context for authentication.
1108 @return 0 for success or an error code.
1109 */
91447636
A
1110int vnode_setattr(vnode_t vp, struct vnode_attr *vap, vfs_context_t ctx);
1111
b0d623f7
A
1112/*!
1113 @function vfs_rootvnode
1114 @abstract Returns the root vnode with an iocount.
1115 @discussion Caller must vnode_put() the root node when done.
1116 @return Pointer to root vnode if successful; error code if there is a problem taking an iocount.
1117 */
2d21ac55 1118vnode_t vfs_rootvnode(void);
2d21ac55 1119
b0d623f7
A
1120/*!
1121 @function vnode_uncache_credentials
1122 @abstract Clear out cached credentials on a vnode.
1123 @discussion When we authorize an action on a vnode, we cache the credential that was authorized and the actions it was authorized for in case a similar request follows. This function destroys that caching.
1124 @param vp The vnode whose cache to clear.
1125 @return void.
1126 */
2d21ac55 1127void vnode_uncache_credentials(vnode_t vp);
2d21ac55 1128
b0d623f7
A
1129/*!
1130 @function vnode_setmultipath
1131 @abstract Mark a vnode as being reachable by multiple paths, i.e. as a hard link.
1132 @discussion "Multipath" vnodes can be reached through more than one entry in the filesystem, and so must be handled differently for caching and event notification purposes. A filesystem should mark a vnode with multiple hardlinks this way.
1133 @param vp The vnode to mark.
1134 @return void.
1c79356b 1135 */
b0d623f7 1136void vnode_setmultipath(vnode_t vp);
91447636 1137
b0d623f7
A
1138/*!
1139 @function vnode_vfsmaxsymlen
1140 @abstract Determine the maximum length of a symbolic link for the filesystem on which a vnode resides.
1141 @param vp The vnode for which to get filesystem symlink size cap.
1142 @return Max symlink length.
1143 */
91447636 1144uint32_t vnode_vfsmaxsymlen(vnode_t);
b0d623f7
A
1145
1146/*!
1147 @function vnode_vfsisrdonly
1148 @abstract Determine if the filesystem to which a vnode belongs is mounted read-only.
1149 @param vp The vnode for which to get filesystem writeability.
1150 @return Nonzero if the filesystem is read-only, 0 otherwise.
1151 */
91447636 1152int vnode_vfsisrdonly(vnode_t);
b0d623f7
A
1153
1154/*!
1155 @function vnode_vfstypenum
1156 @abstract Get the "type number" of the filesystem to which a vnode belongs.
1157 @discussion This is an archaic construct; most filesystems are assigned a type number based on the order in which they are registered with the system.
1158 @param vp The vnode whose filesystem to examine.
1159 @return The type number of the fileystem to which the vnode belongs.
1160 */
91447636 1161int vnode_vfstypenum(vnode_t);
b0d623f7
A
1162
1163/*!
1164 @function vnode_vfsname
1165 @abstract Get the name of the filesystem to which a vnode belongs.
1166 @param vp The vnode whose filesystem to examine.
1167 @param buf Destination for vfs name: should have size MFSNAMELEN or greater.
1168 @return The name of the fileystem to which the vnode belongs.
1169 */
91447636 1170void vnode_vfsname(vnode_t, char *);
b0d623f7
A
1171
1172/*!
1173 @function vnode_vfs64bitready
1174 @abstract Determine if the filesystem to which a vnode belongs is marked as ready to interact with 64-bit user processes.
1175 @param vp The vnode whose filesystem to examine.
1176 @return Nonzero if filesystem is marked ready for 64-bit interactions; 0 otherwise.
1177 */
91447636
A
1178int vnode_vfs64bitready(vnode_t);
1179
b0d623f7 1180/* These should move to private ... not documenting for now */
2d21ac55
A
1181int vfs_context_get_special_port(vfs_context_t, int, ipc_port_t *);
1182int vfs_context_set_special_port(vfs_context_t, int, ipc_port_t);
b0d623f7
A
1183
1184/*!
1185 @function vfs_context_proc
1186 @abstract Get the BSD process structure associated with a vfs_context_t.
1187 @param ctx Context whose associated process to find.
1188 @return Process if available, NULL otherwise.
1189 */
91447636 1190proc_t vfs_context_proc(vfs_context_t);
b0d623f7
A
1191
1192/*!
1193 @function vfs_context_ucred
1194 @abstract Get the credential associated with a vfs_context_t.
1195 @discussion Succeeds if and only if the context has a thread, the thread has a task, and the task has a BSD proc.
1196 @param ctx Context whose associated process to find.
1197 @return Process if available, NULL otherwise.
1198 */
2d21ac55 1199kauth_cred_t vfs_context_ucred(vfs_context_t);
b0d623f7
A
1200
1201/*!
1202 @function vfs_context_pid
1203 @abstract Get the process id of the BSD process associated with a vfs_context_t.
1204 @param ctx Context whose associated process to find.
1205 @return Process id.
1206 */
91447636 1207int vfs_context_pid(vfs_context_t);
b0d623f7
A
1208
1209/*!
1210 @function vfs_context_issignal
1211 @abstract Get a bitfield of pending signals for the BSD process associated with a vfs_context_t.
1212 @discussion The bitfield is constructed using the sigmask() macro, in the sense of bits |= sigmask(SIGSEGV).
1213 @param ctx Context whose associated process to find.
1214 @return Bitfield of pending signals.
1215 */
91447636 1216int vfs_context_issignal(vfs_context_t, sigset_t);
b0d623f7
A
1217
1218/*!
1219 @function vfs_context_suser
1220 @abstract Determine if a vfs_context_t corresponds to the superuser.
1221 @param ctx Context to examine.
1222 @return Nonzero if context belongs to superuser, 0 otherwise.
1223 */
91447636 1224int vfs_context_suser(vfs_context_t);
b0d623f7
A
1225
1226/*!
1227 @function vfs_context_is64bit
1228 @abstract Determine if a vfs_context_t corresponds to a 64-bit user process.
1229 @param ctx Context to examine.
1230 @return Nonzero if context is of 64-bit process, 0 otherwise.
1231 */
91447636 1232int vfs_context_is64bit(vfs_context_t);
b0d623f7
A
1233
1234/*!
1235 @function vfs_context_create
1236 @abstract Create a new vfs_context_t with appropriate references held.
1237 @discussion The context must be released with vfs_context_rele() when no longer in use.
1238 @param ctx Context to copy, or NULL to use information from running thread.
1239 @return The new context, or NULL in the event of failure.
1240 */
91447636 1241vfs_context_t vfs_context_create(vfs_context_t);
b0d623f7
A
1242
1243/*!
1244 @function vfs_context_rele
1245 @abstract Release references on components of a context and deallocate it.
1246 @discussion A context should not be referenced after vfs_context_rele has been called.
1247 @param ctx Context to release.
1248 @return Always 0.
1249 */
91447636
A
1250int vfs_context_rele(vfs_context_t);
1251
b0d623f7
A
1252/*!
1253 @function vfs_context_current
1254 @abstract Get the vfs_context for the current thread, or the kernel context if there is no context for current thread.
1255 @discussion Kexts should not use this function--it is preferred to use vfs_context_create(NULL) and vfs_context_rele(), which ensure proper reference counting of underlying structures.
1256 @return Context for current thread, or kernel context if thread context is unavailable.
1257 */
1258vfs_context_t vfs_context_current(void);
1259#ifdef KERNEL_PRIVATE
1260int vfs_context_bind(vfs_context_t);
6d2010ae
A
1261
1262/*!
1263 @function vfs_ctx_skipatime
1264 @abstract Check to see if this context should skip updating a vnode's access times.
1265 @discussion This is currently tied to the vnode rapid aging process. If the process is marked for rapid aging,
1266 then the kernel should not update vnodes it touches for access time purposes. This will check to see if the
1267 specified process and/or thread is marked for rapid aging when it manipulates vnodes.
1268 @param ctx The context being investigated.
1269 @return 1 if we should skip access time updates.
1270 @return 0 if we should NOT skip access time updates.
1271 */
1272
1273int vfs_ctx_skipatime(vfs_context_t ctx);
1274
b0d623f7 1275#endif
91447636 1276
b0d623f7
A
1277/*!
1278 @function vflush
1279 @abstract Reclaim the vnodes associated with a mount.
1280 @param mp The mount whose vnodes to kill.
1281 @param skipvp A specific vnode to not reclaim or to let interrupt an un-forced flush
1282 @param flags Control which
1283 @discussion This function is used to clear out the vnodes associated with a mount as part of the unmount process.
1284 Its parameters can determine which vnodes to skip in the process and whether in-use vnodes should be forcibly reclaimed.
1285 Filesystems should call this function from their unmount code, because VFS code will always call it with SKIPROOT | SKIPSWAP | SKIPSYSTEM; filesystems
1286 must take care of such vnodes themselves.
1287 SKIPSYSTEM skip vnodes marked VSYSTEM
1288 FORCECLOSE force file closeure
1289 WRITECLOSE only close writeable files
1290 SKIPSWAP skip vnodes marked VSWAP
1291 SKIPROOT skip root vnodes marked VROOT
1292 @return 0 for success, EBUSY if vnodes were busy and FORCECLOSE was not set.
1293 */
91447636 1294int vflush(struct mount *mp, struct vnode *skipvp, int flags);
b0d623f7
A
1295
1296/*!
1297 @function vnode_get
1298 @abstract Increase the iocount on a vnode.
1299 @discussion If vnode_get() succeeds, the resulting io-reference must be dropped with vnode_put().
1300 This function succeeds unless the vnode in question is dead or in the process of dying AND the current iocount is zero.
1301 This means that it can block an ongoing reclaim which is blocked behind some other iocount.
1302
1303 On success, vnode_get() returns with an iocount held on the vnode; this type of reference is intended to be held only for short periods of time (e.g.
1304 across a function call) and provides a strong guarantee about the life of the vnode; vnodes with positive iocounts cannot be
1305 recycled, and an iocount is required for any operation on a vnode. However, vnode_get() does not provide any guarantees
1306 about the identity of the vnode it is called on; unless there is a known existing iocount on the vnode at time the call is made,
1307 it could be recycled and put back in use before the vnode_get() succeeds, so the caller may be referencing a
1308 completely different vnode than was intended. vnode_getwithref() and vnode_getwithvid()
1309 provide guarantees about vnode identity.
1310
1311 @return 0 for success, ENOENT if the vnode is dead and without existing io-reference.
1312 */
91447636 1313int vnode_get(vnode_t);
b0d623f7
A
1314
1315/*!
1316 @function vnode_getwithvid
1317 @abstract Increase the iocount on a vnode, checking that the vnode is alive and has not changed vid (i.e. been recycled)
1318 @discussion If vnode_getwithvid() succeeds, the resulting io-reference must be dropped with vnode_put().
1319 This function succeeds unless the vnode in question is dead, in the process of dying, or has been recycled (and given a different vnode id).
1320 The intended usage is that a vnode is stored and its vid (vnode_vid(vp)) recorded while an iocount is held (example: a filesystem hash). The
1321 iocount is then dropped, and time passes (perhaps locks are dropped and picked back up). Subsequently, vnode_getwithvid() is called to get an iocount,
1322 but we are alerted if the vnode has been recycled.
1323
1324 On success, vnode_getwithvid() returns with an iocount held on the vnode; this type of reference is intended to be held only for short periods of time (e.g.
1325 across a function call) and provides a strong guarantee about the life of the vnode. vnodes with positive iocounts cannot be
1326 recycled. An iocount is required for any operation on a vnode.
1327 @return 0 for success, ENOENT if the vnode is dead, in the process of being reclaimed, or has been recycled and reused.
1328 */
1329int vnode_getwithvid(vnode_t, uint32_t);
1330
6d2010ae
A
1331#ifdef BSD_KERNEL_PRIVATE
1332int vnode_getwithvid_drainok(vnode_t, uint32_t);
1333#endif /* BSD_KERNEL_PRIVATE */
1334
b0d623f7
A
1335/*!
1336 @function vnode_getwithref
1337 @abstract Increase the iocount on a vnode on which a usecount (persistent reference) is held.
1338 @discussion If vnode_getwithref() succeeds, the resulting io-reference must be dropped with vnode_put().
1339 vnode_getwithref() will succeed on dead vnodes; it should fail with ENOENT on vnodes which are in the process of being reclaimed.
1340 Because it is only called with a usecount on the vnode, the caller is guaranteed that the vnode has not been
1341 reused for a different file, though it may now be dead and have deadfs vnops (which return errors like EIO, ENXIO, ENOTDIR).
1342 On success, vnode_getwithref() returns with an iocount held on the vnode; this type of reference is intended to be held only for short periods of time (e.g.
1343 across a function call) and provides a strong guarantee about the life of the vnode. vnodes with positive iocounts cannot be
1344 recycled. An iocount is required for any operation on a vnode.
1345 @return 0 for success, ENOENT if the vnode is dead, in the process of being reclaimed, or has been recycled and reused.
1346 */
1347int vnode_getwithref(vnode_t);
1348
1349/*!
1350 @function vnode_put
1351 @abstract Decrement the iocount on a vnode.
1352 @discussion vnode_put() is called to indicate that a vnode is no longer in active use. It removes the guarantee that a
1353 vnode will not be recycled. This routine should be used to release io references no matter how they were obtained.
1354 @param vp The vnode whose iocount to drop.
1355 @return Always 0.
1356 */
91447636 1357int vnode_put(vnode_t);
b0d623f7
A
1358
1359/*!
1360 @function vnode_ref
1361 @abstract Increment the usecount on a vnode.
1362 @discussion If vnode_ref() succeeds, the resulting usecount must be released with vnode_rele(). vnode_ref() is called to obtain
1363 a persistent reference on a vnode. This type of reference does not provide the same strong guarantee that a vnode will persist
1364 as does an iocount--it merely ensures that a vnode will not be reused to represent a different file. However, a usecount may be
1365 held for extended periods of time, whereas an iocount is intended to be obtained and released quickly as part of performing a
1366 vnode operation. A holder of a usecount must call vnode_getwithref()/vnode_put() in order to perform any operations on that vnode.
1367 @param vp The vnode on which to obtain a persistent reference.
1368 @return 0 for success; ENOENT if the vnode is dead or in the process of being recycled AND the calling thread is not the vnode owner.
1369 */
91447636 1370int vnode_ref(vnode_t);
b0d623f7
A
1371
1372/*!
1373 @function vnode_rele
1374 @abstract Decrement the usecount on a vnode.
1375 @discussion vnode_rele() is called to relese a persistent reference on a vnode. Releasing the last usecount
1376 opens the door for a vnode to be reused as a new file; it also triggers a VNOP_INACTIVE call to the filesystem,
1377 though that will not happen immediately if there are outstanding iocount references.
1378 @param vp The vnode whose usecount to drop.
1379 @return void.
1380 */
91447636 1381void vnode_rele(vnode_t);
b0d623f7
A
1382
1383/*!
1384 @function vnode_isinuse
1385 @abstract Determine if the number of persistent (usecount) references on a vnode is greater than a given count.
1386 @discussion vnode_isinuse() compares a vnode's usecount (corresponding to vnode_ref() calls) to its refcnt parameter
1387 (the number of references the caller expects to be on the vnode). Note that "kusecount" references, corresponding
1388 to parties interested only in event notifications, e.g. open(..., O_EVTONLY), are not counted towards the total; the comparison is
1389 (usecount - kusecount > recnt). It is
1390 also important to note that the result is only a snapshot; usecounts can change from moment to moment, and the result of vnode_isinuse
1391 may no longer be correct the very moment that the caller receives it.
1392 @param vp The vnode whose use-status to check.
1393 @param refcnt The threshold for saying that a vnode is in use.
1394 @return void.
1395 */
91447636 1396int vnode_isinuse(vnode_t, int);
b0d623f7
A
1397
1398/*!
1399 @function vnode_recycle
1400 @abstract Cause a vnode to be reclaimed and prepared for reuse.
1401 @discussion Like all vnode KPIs, must be called with an iocount on the target vnode.
1402 vnode_recycle() will mark that vnode for reclaim when all existing references are dropped.
1403 @param vp The vnode to recycle.
1404 @return 1 if the vnode was reclaimed (i.e. there were no existing references), 0 if it was only marked for future reclaim.
1405 */
1406int vnode_recycle(vnode_t);
1407
1408#ifdef KERNEL_PRIVATE
1409
1410#define VNODE_EVENT_DELETE 0x00000001 /* file was removed */
1411#define VNODE_EVENT_WRITE 0x00000002 /* file or directory contents changed */
1412#define VNODE_EVENT_EXTEND 0x00000004 /* ubc size increased */
1413#define VNODE_EVENT_ATTRIB 0x00000008 /* attributes changed (suitable for permission changes if type unknown)*/
1414#define VNODE_EVENT_LINK 0x00000010 /* link count changed */
1415#define VNODE_EVENT_RENAME 0x00000020 /* vnode was renamed */
1416#define VNODE_EVENT_PERMS 0x00000040 /* permissions changed: will cause a NOTE_ATTRIB */
1417#define VNODE_EVENT_FILE_CREATED 0x00000080 /* file created in directory: will cause NOTE_WRITE */
1418#define VNODE_EVENT_DIR_CREATED 0x00000100 /* directory created inside this directory: will cause NOTE_WRITE */
1419#define VNODE_EVENT_FILE_REMOVED 0x00000200 /* file removed from this directory: will cause NOTE_WRITE */
1420#define VNODE_EVENT_DIR_REMOVED 0x00000400 /* subdirectory from this directory: will cause NOTE_WRITE */
1421
1422#ifdef BSD_KERNEL_PRIVATE
1423#define VNODE_NOTIFY_ATTRS (VNODE_ATTR_BIT(va_fsid) | \
1424 VNODE_ATTR_BIT(va_fileid)| \
1425 VNODE_ATTR_BIT(va_mode) | \
1426 VNODE_ATTR_BIT(va_uid) | \
1427 VNODE_ATTR_BIT(va_gid) | \
1428 VNODE_ATTR_BIT(va_dirlinkcount) | \
1429 VNODE_ATTR_BIT(va_nlink))
1430
1431
1432
1433#endif /* BSD_KERNEL_PRIVATE */
1434
1435/*!
1436 @function vnode_notify
1437 @abstract Send a notification up to VFS.
1438 @param vp Vnode for which to provide notification.
1439 @param vap Attributes for that vnode, to be passed to fsevents.
1440 @discussion Filesystem determines which attributes to pass up using
1441 vfs_get_notify_attributes(&vap). The most specific events possible should be passed,
1442 e.g. VNODE_EVENT_FILE_CREATED on a directory rather than just VNODE_EVENT_WRITE, but
1443 a less specific event can be passed up if more specific information is not available.
1444 Will not reenter the filesystem.
1445 @return 0 for success, else an error code.
1446 */
1447int vnode_notify(vnode_t, uint32_t, struct vnode_attr*);
1448
1449/*!
1450 @function vnode_ismonitored
1451 @abstract Check whether a file has watchers that would make it useful to query a server
1452 for file changes.
1453 @param vp Vnode to examine.
1454 @discussion Will not reenter the filesystem.
1455 @return Zero if not monitored, nonzero if monitored.
1456 */
1457int vnode_ismonitored(vnode_t);
1458
6d2010ae
A
1459
1460/*!
1461 @function vnode_isdyldsharedcache
1462 @abstract Check whether a file is a dyld shared cache file.
1463 @param vp Vnode to examine.
1464 @discussion Will not reenter the filesystem.
1465 @return nonzero if a dyld shared cache file, zero otherwise.
1466 */
1467int vnode_isdyldsharedcache(vnode_t);
1468
1469
b0d623f7
A
1470/*!
1471 @function vfs_get_notify_attributes
1472 @abstract Determine what attributes are required to send up a notification with vnode_notify().
1473 @param vap Structure to initialize and activate required attributes on.
1474 @discussion Will not reenter the filesystem.
1475 @return 0 for success, nonzero for error (currently always succeeds).
1476 */
1477int vfs_get_notify_attributes(struct vnode_attr *vap);
1478
1479/*!
1480 @function vn_getpath_fsenter
1481 @abstract Attempt to get a vnode's path, willing to enter the filesystem.
1482 @discussion Paths to vnodes are not always straightforward: a file with multiple hard-links will have multiple pathnames,
1483 and it is sometimes impossible to determine a vnode's full path. vn_getpath_fsenter() may enter the filesystem
1484 to try to construct a path, so filesystems should be wary of calling it.
1485 @param vp Vnode whose path to get
1486 @param pathbuf Buffer in which to store path.
1487 @param len Destination for length of resulting path string. Result will include NULL-terminator in count--that is, "len"
1488 will be strlen(pathbuf) + 1.
1489 @return 0 for success or an error.
1490 */
1491int vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len);
1492
1493#endif /* KERNEL_PRIVATE */
91447636
A
1494
1495#define VNODE_UPDATE_PARENT 0x01
1496#define VNODE_UPDATE_NAME 0x02
1497#define VNODE_UPDATE_CACHE 0x04
b0d623f7
A
1498#define VNODE_UPDATE_PURGE 0x08
1499/*!
1500 @function vnode_update_identity
1501 @abstract Update vnode data associated with the vfs cache.
1502 @discussion The vfs namecache is central to tracking vnode-identifying data and to locating files on the system. vnode_update_identity()
1503 is used to update vnode data associated with the cache. It can set a vnode's parent and/or name (also potentially set by vnode_create())
1504 or flush cache data.
1505 @param vp The vnode whose information to update.
1506 @param dvp Parent to set on the vnode if VNODE_UPDATE_PARENT is used.
1507 @param name Name to set in the cache for the vnode if VNODE_UPDATE_NAME is used. The buffer passed in can be subsequently freed, as the cache
1508 does its own name storage. String should be NULL-terminated unless length and hash value are specified.
1509 @param name_len Length of name, if known. Passing 0 causes the cache to determine the length itself.
1510 @param name_hashval Hash value of name, if known. Passing 0 causes the cache to hash the name itself.
1511 @param flags VNODE_UPDATE_PARENT: set parent. VNODE_UPDATE_NAME: set name. VNODE_UPDATE_CACHE: flush cache entries for hard links
1512 associated with this file. VNODE_UPDATE_PURGE: flush cache entries for hard links and children of this file.
1513 @return void.
1514 */
1515void vnode_update_identity(vnode_t vp, vnode_t dvp, const char *name, int name_len, uint32_t name_hashval, int flags);
1516
1517/*!
1518 @function vn_bwrite
1519 @abstract System-provided implementation of "bwrite" vnop.
1520 @discussion This routine is available for filesystems which do not want to implement their own "bwrite" vnop. It just calls
1521 buf_bwrite() without modifying its arguments.
1522 @param ap Standard parameters to a bwrite vnop.
1523 @return Results of buf_bwrite directly.
1524 */
91447636
A
1525int vn_bwrite(struct vnop_bwrite_args *ap);
1526
b0d623f7
A
1527/*!
1528 @function vnode_authorize
1529 @abstract Authorize a kauth-style action on a vnode.
1530 @discussion Operations on dead vnodes are always allowed (though never do anything).
1531 @param vp Vnode on which to authorize action.
1532 @param dvp Parent of "vp," can be NULL.
1533 @param action Action to authorize, e.g. KAUTH_VNODE_READ_DATA. See bsd/sys/kauth.h.
1534 @param ctx Context for which to authorize actions.
1535 @return EACCESS if permission is denied. 0 if operation allowed. Various errors from lower layers.
1536 */
91447636 1537int vnode_authorize(vnode_t /*vp*/, vnode_t /*dvp*/, kauth_action_t, vfs_context_t);
b0d623f7
A
1538
1539/*!
1540 @function vnode_authattr
1541 @abstract Given a vnode_attr structure, determine what kauth-style actions must be authorized in order to set those attributes.
1542 @discussion vnode_authorize requires kauth-style actions; if we want to set a vnode_attr structure on a vnode, we need to translate
1543 the set of attributes to a set of kauth-style actions. This routine will return errors for certain obviously disallowed, or
1544 incoherent, actions.
1545 @param vp The vnode on which to authorize action.
1546 @param vap Pointer to vnode_attr struct containing desired attributes to set and their values.
1547 @param actionp Destination for set of actions to authorize
1548 @param ctx Context for which to authorize actions.
1549 @return 0 (and a result in "actionp" for success. Otherwise, an error code.
1550 */
91447636 1551int vnode_authattr(vnode_t, struct vnode_attr *, kauth_action_t *, vfs_context_t);
b0d623f7
A
1552
1553/*!
1554 @function vnode_authattr_new
1555 @abstract Initialize and validate file creation parameters with respect to the current context.
1556 @discussion vnode_authattr_new() will fill in unitialized values in the vnode_attr struct with defaults, and will validate the structure
1557 with respect to the current context for file creation.
1558 @param dvp The directory in which creation will occur.
1559 @param vap Pointer to vnode_attr struct containing desired attributes to set and their values.
1560 @param noauth If 1, treat the caller as the superuser, i.e. do not check permissions.
1561 @param ctx Context for which to authorize actions.
1562 @return KAUTH_RESULT_ALLOW for success, an error to indicate invalid or disallowed attributes.
1563 */
91447636 1564int vnode_authattr_new(vnode_t /*dvp*/, struct vnode_attr *, int /*noauth*/, vfs_context_t);
b0d623f7
A
1565
1566/*!
1567 @function vnode_close
1568 @abstract Close a file as opened with vnode_open().
1569 @discussion vnode_close() drops the refcount (persistent reference) picked up in vnode_open() and calls down to the filesystem with VNOP_CLOSE. It should
1570 be called with both an iocount and a refcount on the vnode and will drop both.
1571 @param vp The vnode to close.
1572 @param flags Flags to close: FWASWRITTEN indicates that the file was written to.
1573 @param ctx Context against which to validate operation.
1574 @return 0 for success or an error from the filesystem.
1575 */
91447636
A
1576errno_t vnode_close(vnode_t, int, vfs_context_t);
1577
b0d623f7
A
1578/*!
1579 @function vn_getpath
1580 @abstract Construct the path to a vnode.
1581 @discussion Paths to vnodes are not always straightforward: a file with multiple hard-links will have multiple pathnames,
1582 and it is sometimes impossible to determine a vnode's full path. vn_getpath() will not enter the filesystem.
1583 @param vp The vnode whose path to obtain.
1584 @param pathbuf Destination for pathname; should be of size MAXPATHLEN
1585 @param len Destination for length of resulting path string. Result will include NULL-terminator in count--that is, "len"
1586 will be strlen(pathbuf) + 1.
1587 @return 0 for success or an error code.
1588 */
91447636 1589int vn_getpath(struct vnode *vp, char *pathbuf, int *len);
1c79356b
A
1590
1591/*
91447636 1592 * Flags for the vnode_lookup and vnode_open
1c79356b 1593 */
91447636
A
1594#define VNODE_LOOKUP_NOFOLLOW 0x01
1595#define VNODE_LOOKUP_NOCROSSMOUNT 0x02
6d2010ae 1596#define VNODE_LOOKUP_DOWHITEOUT 0x04 /* OBSOLETE */
b0d623f7
A
1597/*!
1598 @function vnode_lookup
1599 @abstract Convert a path into a vnode.
1600 @discussion This routine is a thin wrapper around xnu-internal lookup routines; if successful,
1601 it returns with an iocount held on the resulting vnode which must be dropped with vnode_put().
1602 @param path Path to look up.
1603 @param flags VNODE_LOOKUP_NOFOLLOW: do not follow symbolic links. VNODE_LOOKUP_NOCROSSMOUNT: do not cross mount points.
1604 @return Results 0 for success or an error code.
1605 */
91447636 1606errno_t vnode_lookup(const char *, int, vnode_t *, vfs_context_t);
b0d623f7
A
1607
1608/*!
1609 @function vnode_open
1610 @abstract Open a file identified by a path--roughly speaking an in-kernel open(2).
1611 @discussion If vnode_open() succeeds, it returns with both an iocount and a usecount on the returned vnode. These must
1612 be released eventually; the iocount should be released with vnode_put() as soon as any initial operations
1613 on the vnode are over, whereas the usecount should be released via vnode_close().
1614 @param path Path to look up.
1615 @param fmode e.g. O_NONBLOCK, O_APPEND; see bsd/sys/fcntl.h.
1616 @param cmode Permissions with which to create file if it does not exist.
1617 @param flags Same as vnode_lookup().
1618 @param vpp Destination for vnode.
1619 @param ctx Context with which to authorize open/creation.
1620 @return 0 for success or an error code.
1621 */
91447636 1622errno_t vnode_open(const char *, int, int, int, vnode_t *, vfs_context_t);
9bccf70c 1623
1c79356b 1624/*
91447636 1625 * exported vnode operations
1c79356b 1626 */
1c79356b 1627
b0d623f7
A
1628/*!
1629 @function vnode_iterate
1630 @abstract Perform an operation on (almost) all vnodes from a given mountpoint.
1631 @param mp Mount whose vnodes to operate on.
1632 @param flags
1633 VNODE_RELOAD Mark inactive vnodes for recycle.
1634 VNODE_WAIT
1635 VNODE_WRITEABLE Only examine vnodes with writes in progress.
1636 VNODE_WITHID No effect.
1637 VNODE_NOLOCK_INTERNAL No effect.
1638 VNODE_NODEAD No effect.
1639 VNODE_NOSUSPEND No effect.
1640 VNODE_ITERATE_ALL No effect.
1641 VNODE_ITERATE_ACTIVE No effect.
1642 VNODE_ITERATE_INACTIVE No effect.
1643
1644 @param callout Function to call on each vnode.
1645 @param arg Argument which will be passed to callout along with each vnode.
1646 @return Zero for success, else an error code. Will return 0 immediately if there are no vnodes hooked into the mount.
1647 @discussion Skips vnodes which are dead, in the process of reclaim, suspended, or of type VNON.
1648 */
91447636 1649int vnode_iterate(struct mount *, int, int (*)(struct vnode *, void *), void *);
b0d623f7 1650
1c79356b 1651/*
91447636 1652 * flags passed into vnode_iterate
1c79356b 1653 */
91447636
A
1654#define VNODE_RELOAD 0x01
1655#define VNODE_WAIT 0x02
1656#define VNODE_WRITEABLE 0x04
1657#define VNODE_WITHID 0x08
1658#define VNODE_NOLOCK_INTERNAL 0x10
1659#define VNODE_NODEAD 0x20
1660#define VNODE_NOSUSPEND 0x40
1661#define VNODE_ITERATE_ALL 0x80
1662#define VNODE_ITERATE_ACTIVE 0x100
1663#define VNODE_ITERATE_INACTIVE 0x200
593a1d5f
A
1664#ifdef BSD_KERNEL_PRIVATE
1665#define VNODE_ALWAYS 0x400
6d2010ae 1666#define VNODE_DRAINO 0x800
593a1d5f 1667#endif /* BSD_KERNEL_PRIVATE */
91447636
A
1668
1669/*
1670 * return values from callback
1671 */
1672#define VNODE_RETURNED 0 /* done with vnode, reference can be dropped */
1673#define VNODE_RETURNED_DONE 1 /* done with vnode, reference can be dropped, terminate iteration */
1674#define VNODE_CLAIMED 2 /* don't drop reference */
1675#define VNODE_CLAIMED_DONE 3 /* don't drop reference, terminate iteration */
1676
b0d623f7
A
1677/*!
1678 @function vn_revoke
1679 @abstract Invalidate all references to a vnode.
1680 @discussion Reclaims the vnode, giving it deadfs vnops (though not halting operations which are already in progress).
1681 Also reclaims all aliased vnodes (important for devices). People holding usecounts on the vnode, e.g. processes
1682 with the file open, will find that all subsequent operations but closing the file fail.
1683 @param vp The vnode to revoke.
1684 @param flags Unused.
1685 @param ctx Context against which to validate operation.
1686 @return 0 always.
1687 */
2d21ac55 1688int vn_revoke(vnode_t vp, int flags, vfs_context_t);
91447636 1689
91447636 1690/* namecache function prototypes */
b0d623f7
A
1691/*!
1692 @function cache_lookup
1693 @abstract Check for a filename in a directory using the VFS name cache.
1694 @discussion cache_lookup() will flush negative cache entries and return 0 if the operation of the cn_nameiop is CREATE or RENAME.
1695 Often used from the filesystem during a lookup vnop. The filesystem will be called to if there is a negative cache entry for a file,
1696 so it can make sense to initially check for negative entries (and possibly lush them).
1697 @param dvp Directory in which lookup is occurring.
1698 @param vpp Destination for vnode pointer.
1699 @param cnp Various data about lookup, e.g. filename and intended operation.
1700 @return ENOENT: the filesystem has previously added a negative entry with cache_enter() to indicate that there is no
1701 file of the given name in "dp." -1: successfully found a cached vnode (vpp is set). 0: No data in the cache, or operation is CRETE/RENAME.
1702 */
91447636 1703int cache_lookup(vnode_t dvp, vnode_t *vpp, struct componentname *cnp);
b0d623f7
A
1704
1705/*!
1706 @function cache_enter
1707 @abstract Add a (name,vnode) entry to the VFS namecache.
1708 @discussion Generally used to add a cache entry after a successful filesystem-level lookup or to add a
1709 negative entry after one which did not find its target.
1710 @param dvp Directory in which file lives.
1711 @param vp File to add to cache. A non-NULL vp is stored for rapid access; a NULL vp indicates
1712 that there is no such file in the directory and speeds future failed lookups.
1713 @param cnp Various data about lookup, e.g. filename and intended operation.
1714 @return void.
1715 */
91447636 1716void cache_enter(vnode_t dvp, vnode_t vp, struct componentname *cnp);
b0d623f7
A
1717
1718/*!
1719 @function cache_purge
1720 @abstract Remove all data relating to a vnode from the namecache.
1721 @discussion Will flush all hardlinks to the vnode as well as all children (should any exist). Logical
1722 to use when cached data about a vnode becomes invalid, for instance in an unlink.
1723 @param vp The vnode to purge.
1724 @return void.
1725 */
91447636 1726void cache_purge(vnode_t vp);
b0d623f7
A
1727
1728/*!
1729 @function cache_purge_negatives
1730 @abstract Remove all negative cache entries which are children of a given vnode.
1731 @discussion Appropriate to use when negative cache information for a directory could have
1732 become invalid, e.g. after file creation.
1733 @param vp The vnode whose negative children to purge.
1734 @return void.
1735 */
91447636
A
1736void cache_purge_negatives(vnode_t vp);
1737
b0d623f7 1738
91447636
A
1739/*
1740 * Global string-cache routines. You can pass zero for nc_hash
1741 * if you don't know it (add_name() will then compute the hash).
1742 * There are no flags for now but maybe someday.
1743 */
b0d623f7
A
1744/*!
1745 @function vfs_addname
1746 @abstract Deprecated
1747 @discussion vnode_update_identity() and vnode_create() make vfs_addname() unnecessary for kexts.
1748 */
1749const char *vfs_addname(const char *name, uint32_t len, uint32_t nc_hash, uint32_t flags);
1750
1751/*!
1752 @function vfs_removename
1753 @abstract Deprecated
1754 @discussion vnode_update_identity() and vnode_create() make vfs_addname() unnecessary for kexts.
1755 */
91447636
A
1756int vfs_removename(const char *name);
1757
b0d623f7
A
1758/*!
1759 @function vcount
1760 @abstract Count total references to a given file, disregarding "kusecount" (event listener, as with O_EVTONLY) references.
1761 @discussion For a regular file, just return (usecount-kusecount); for device files, return the sum over all
1762 vnodes 'v' which reference that device of (usecount(v) - kusecount(v)). Note that this is merely a snapshot and could be
1763 invalid by the time the caller checks the result.
1764 @param vp The vnode whose references to count.
1765 @return Count of references.
1766 */
2d21ac55
A
1767int vcount(vnode_t vp);
1768
b0d623f7
A
1769/*!
1770 @function vn_path_package_check
1771 @abstract Figure out if a path corresponds to a Mac OS X package.
1772 @discussion Determines if the extension on a path is a known OS X extension type.
1773 @param vp Unused.
1774 @param path Path to check.
1775 @param pathlen Size of path buffer.
1776 @param component Set to index of start of last path component if the path is found to be a package. Set to -1 if
1777 the path is not a known package type.
1778 @return 0 unless some parameter was invalid, in which case EINVAL is returned. Determine package-ness by checking
1779 what *component is set to.
1780 */
1781int vn_path_package_check(vnode_t vp, char *path, int pathlen, int *component);
1782
1783#ifdef KERNEL_PRIVATE
1784/*!
1785 @function vn_searchfs_inappropriate_name
1786 @abstract Figure out if the component is inappropriate for a SearchFS query.
1787 @param name component to check
1788 @param len length of component.
1789 @return 0 if no match, 1 if inappropriate.
1790 */
1791int vn_searchfs_inappropriate_name(const char *name, int len);
1792#endif
1793
1794/*!
1795 @function vn_rdwr
1796 @abstract Read from or write to a file.
1797 @discussion vn_rdwr() abstracts the details of constructing a uio and picking a vnode operation to allow
1798 simple in-kernel file I/O.
1799 @param rw UIO_READ for a read, UIO_WRITE for a write.
1800 @param vp The vnode on which to perform I/O.
1801 @param base Start of buffer into which to read or from which to write data.
1802 @param len Length of buffer.
1803 @param offset Offset within the file at which to start I/O.
1804 @param segflg What kind of address "base" is. See uio_seg definition in sys/uio.h. UIO_SYSSPACE for kernelspace, UIO_USERSPACE for userspace.
1805 UIO_USERSPACE32 and UIO_USERSPACE64 are in general preferred, but vn_rdwr will make sure that has the correct address sizes.
1806 @param ioflg Defined in vnode.h, e.g. IO_NOAUTH, IO_NOCACHE.
1807 @param cred Credential to pass down to filesystem for authentication.
1808 @param aresid Destination for amount of requested I/O which was not completed, as with uio_resid().
1809 @param p Process requesting I/O.
1810 @return 0 for success; errors from filesystem, and EIO if did not perform all requested I/O and the "aresid" parameter is NULL.
1811 */
1812int vn_rdwr(enum uio_rw, vnode_t, caddr_t, int, off_t, enum uio_seg, int, kauth_cred_t, int *, proc_t);
1813
1814/*!
1815 @function vnode_getname
1816 @abstract Get the name of a vnode from the VFS namecache.
1817 @discussion Not all vnodes have names, and vnode names can change (notably, hardlinks). Use this routine at your own risk.
1818 The string is returned with a refcount incremented in the cache; callers must call vnode_putname() to release that reference.
1819 @param vp The vnode whose name to grab.
1820 @return The name, or NULL if unavailable.
1821 */
1822const char *vnode_getname(vnode_t vp);
1823
1824/*!
1825 @function vnode_putname
1826 @abstract Release a reference on a name from the VFS cache.
1827 @discussion Should be called on a string obtained with vnode_getname().
1828 @param name String to release.
1829 @return void.
1830 */
1831void vnode_putname(const char *name);
1832
1833/*!
1834 @function vnode_getparent
1835 @abstract Get an iocount on the parent of a vnode.
1836 @discussion A vnode's parent may change over time or be reclaimed, so vnode_getparent() may return different
1837 results at different times (e.g. a multiple-hardlink file). The parent is returned with an iocount which must
1838 subsequently be dropped with vnode_put().
1839 @param vp The vnode whose parent to grab.
1840 @return Parent if available, else NULL.
1841 */
1842vnode_t vnode_getparent(vnode_t vp);
1843
6d2010ae
A
1844#ifdef KERNEL_PRIVATE
1845/*!
1846 @function vnode_lookup_continue_needed
1847 @abstract Determine whether vnode needs additional processing in VFS before being opened.
1848 @discussion If result is zero, filesystem can open this vnode. If result is nonzero,
1849 additional processing is needed in VFS (e.g. symlink, mountpoint). Nonzero results should
1850 be passed up to VFS.
1851 @param vp Vnode to consider opening (found by filesystem).
1852 @param cnp Componentname as passed to filesystem from VFS.
1853 @result 0 to indicate that a vnode can be opened, or an error that should be passed up to VFS.
1854 */
1855int vnode_lookup_continue_needed(vnode_t vp, struct componentname *cnp);
316670eb
A
1856
1857/*!
1858 @function vnode_istty
1859 @abstract Determine if the given vnode represents a tty device.
1860 @param vp Vnode to examine.
1861 @result Non-zero to indicate that the vnode represents a tty device. Zero otherwise.
1862 */
1863int vnode_istty(vnode_t vp);
6d2010ae
A
1864#endif /* KERNEL_PRIVATE */
1865
b0d623f7
A
1866#ifdef BSD_KERNEL_PRIVATE
1867/* Not in export list so can be private */
1868struct stat;
1869int vn_stat(struct vnode *vp, void * sb, kauth_filesec_t *xsec, int isstat64, vfs_context_t ctx);
1870int vn_stat_noauth(struct vnode *vp, void * sb, kauth_filesec_t *xsec, int isstat64, vfs_context_t ctx);
1871int vaccess(mode_t file_mode, uid_t uid, gid_t gid,
1872 mode_t acc_mode, kauth_cred_t cred);
1873int check_mountedon(dev_t dev, enum vtype type, int *errorp);
1874int vn_getcdhash(struct vnode *vp, off_t offset, unsigned char *cdhash);
1875void vnode_reclaim(vnode_t);
1876vfs_context_t vfs_context_kernel(void); /* get from 1st kernel thread */
1877int vfs_context_issuser(vfs_context_t);
1878vnode_t vfs_context_cwd(vfs_context_t);
1879vnode_t current_rootdir(void);
1880vnode_t current_workingdir(void);
1881void *vnode_vfsfsprivate(vnode_t);
1882struct vfsstatfs *vnode_vfsstatfs(vnode_t);
1883uint32_t vnode_vfsvisflags(vnode_t);
1884uint32_t vnode_vfscmdflags(vnode_t);
1885int vnode_is_openevt(vnode_t);
1886void vnode_set_openevt(vnode_t);
1887void vnode_clear_openevt(vnode_t);
1888int vnode_isstandard(vnode_t);
1889int vnode_makeimode(int, int);
1890enum vtype vnode_iftovt(int);
1891int vnode_vttoif(enum vtype);
1892int vnode_isshadow(vnode_t);
b0d623f7
A
1893/*
1894 * Indicate that a file has multiple hard links. VFS will always call
1895 * VNOP_LOOKUP on this vnode. Volfs will always ask for it's parent
1896 * object ID (instead of using the v_parent pointer).
1897 */
1898vnode_t vnode_parent(vnode_t);
1899void vnode_setparent(vnode_t, vnode_t);
1900const char * vnode_name(vnode_t);
1901void vnode_setname(vnode_t, char *);
1902int vnode_isnoflush(vnode_t);
1903void vnode_setnoflush(vnode_t);
1904void vnode_clearnoflush(vnode_t);
1905/* XXX temporary until we can arrive at a KPI for NFS, Seatbelt */
1906thread_t vfs_context_thread(vfs_context_t);
1907
1908#endif /* BSD_KERNEL_PRIVATE */
1909
91447636 1910__END_DECLS
1c79356b
A
1911
1912#endif /* KERNEL */
1913
1914#endif /* !_VNODE_H_ */