xref: /xnu-11417.121.6/bsd/miscfs/nullfs/nullfs.h (revision a1e26a70f38d1d7daa7b49b258e2f8538ad81650)
1*a1e26a70SApple OSS Distributions /*
2*a1e26a70SApple OSS Distributions  * Copyright (c) 2016 Apple Inc. All rights reserved.
3*a1e26a70SApple OSS Distributions  *
4*a1e26a70SApple OSS Distributions  * @APPLE_LICENSE_HEADER_START@
5*a1e26a70SApple OSS Distributions  *
6*a1e26a70SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*a1e26a70SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*a1e26a70SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*a1e26a70SApple OSS Distributions  * compliance with the License. Please obtain a copy of the License at
10*a1e26a70SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this
11*a1e26a70SApple OSS Distributions  * file.
12*a1e26a70SApple OSS Distributions  *
13*a1e26a70SApple OSS Distributions  * The Original Code and all software distributed under the License are
14*a1e26a70SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15*a1e26a70SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16*a1e26a70SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17*a1e26a70SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18*a1e26a70SApple OSS Distributions  * Please see the License for the specific language governing rights and
19*a1e26a70SApple OSS Distributions  * limitations under the License.
20*a1e26a70SApple OSS Distributions  *
21*a1e26a70SApple OSS Distributions  * @APPLE_LICENSE_HEADER_END@
22*a1e26a70SApple OSS Distributions  */
23*a1e26a70SApple OSS Distributions 
24*a1e26a70SApple OSS Distributions /*-
25*a1e26a70SApple OSS Distributions  * Portions Copyright (c) 1992, 1993
26*a1e26a70SApple OSS Distributions  *  The Regents of the University of California.  All rights reserved.
27*a1e26a70SApple OSS Distributions  *
28*a1e26a70SApple OSS Distributions  * This code is derived from software donated to Berkeley by
29*a1e26a70SApple OSS Distributions  * Jan-Simon Pendry.
30*a1e26a70SApple OSS Distributions  *
31*a1e26a70SApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
32*a1e26a70SApple OSS Distributions  * modification, are permitted provided that the following conditions
33*a1e26a70SApple OSS Distributions  * are met:
34*a1e26a70SApple OSS Distributions  * 1. Redistributions of source code must retain the above copyright
35*a1e26a70SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer.
36*a1e26a70SApple OSS Distributions  * 2. Redistributions in binary form must reproduce the above copyright
37*a1e26a70SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer in the
38*a1e26a70SApple OSS Distributions  *    documentation and/or other materials provided with the distribution.
39*a1e26a70SApple OSS Distributions  * 4. Neither the name of the University nor the names of its contributors
40*a1e26a70SApple OSS Distributions  *    may be used to endorse or promote products derived from this software
41*a1e26a70SApple OSS Distributions  *    without specific prior written permission.
42*a1e26a70SApple OSS Distributions  *
43*a1e26a70SApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
44*a1e26a70SApple OSS Distributions  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45*a1e26a70SApple OSS Distributions  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46*a1e26a70SApple OSS Distributions  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
47*a1e26a70SApple OSS Distributions  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48*a1e26a70SApple OSS Distributions  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49*a1e26a70SApple OSS Distributions  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50*a1e26a70SApple OSS Distributions  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51*a1e26a70SApple OSS Distributions  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52*a1e26a70SApple OSS Distributions  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53*a1e26a70SApple OSS Distributions  * SUCH DAMAGE.
54*a1e26a70SApple OSS Distributions  *
55*a1e26a70SApple OSS Distributions  *  @(#)null.h  8.3 (Berkeley) 8/20/94
56*a1e26a70SApple OSS Distributions  *
57*a1e26a70SApple OSS Distributions  * $FreeBSD$
58*a1e26a70SApple OSS Distributions  */
59*a1e26a70SApple OSS Distributions 
60*a1e26a70SApple OSS Distributions #ifndef FS_NULL_H
61*a1e26a70SApple OSS Distributions #define FS_NULL_H
62*a1e26a70SApple OSS Distributions 
63*a1e26a70SApple OSS Distributions #include <sys/appleapiopts.h>
64*a1e26a70SApple OSS Distributions #include <libkern/libkern.h>
65*a1e26a70SApple OSS Distributions #include <sys/vnode.h>
66*a1e26a70SApple OSS Distributions #include <sys/vnode_if.h>
67*a1e26a70SApple OSS Distributions #include <sys/ubc.h>
68*a1e26a70SApple OSS Distributions #include <vfs/vfs_support.h>
69*a1e26a70SApple OSS Distributions #include <sys/lock.h>
70*a1e26a70SApple OSS Distributions 
71*a1e26a70SApple OSS Distributions #include <sys/cdefs.h>
72*a1e26a70SApple OSS Distributions #include <sys/types.h>
73*a1e26a70SApple OSS Distributions #include <sys/syslimits.h>
74*a1e26a70SApple OSS Distributions 
75*a1e26a70SApple OSS Distributions #if KERNEL
76*a1e26a70SApple OSS Distributions #include <libkern/tree.h>
77*a1e26a70SApple OSS Distributions #else
78*a1e26a70SApple OSS Distributions #include <System/libkern/tree.h>
79*a1e26a70SApple OSS Distributions #endif
80*a1e26a70SApple OSS Distributions 
81*a1e26a70SApple OSS Distributions // #define NULLFS_DEBUG 0
82*a1e26a70SApple OSS Distributions 
83*a1e26a70SApple OSS Distributions #define NULLM_CACHE 0x0001
84*a1e26a70SApple OSS Distributions #define NULLM_CASEINSENSITIVE 0x0000000000000002
85*a1e26a70SApple OSS Distributions #define NULLM_UNVEIL 0x1ULL << 2
86*a1e26a70SApple OSS Distributions 
87*a1e26a70SApple OSS Distributions typedef int (*vop_t)(void *);
88*a1e26a70SApple OSS Distributions 
89*a1e26a70SApple OSS Distributions struct null_mount {
90*a1e26a70SApple OSS Distributions 	struct vnode * nullm_rootvp;       /* Reference to root null_node (inode 1) */
91*a1e26a70SApple OSS Distributions 	struct vnode * nullm_secondvp;     /* Reference to virtual directory vnode to wrap app
92*a1e26a70SApple OSS Distributions 	                                    *  bundles (inode 2) */
93*a1e26a70SApple OSS Distributions 	struct vnode * nullm_lowerrootvp;  /* reference to the root of the tree we are
94*a1e26a70SApple OSS Distributions 	                                    * relocating (in the other file system) */
95*a1e26a70SApple OSS Distributions 	uint32_t nullm_lowerrootvid;       /* store the lower root vid so we can check
96*a1e26a70SApple OSS Distributions 	                                    *  before we build the shadow vnode lazily*/
97*a1e26a70SApple OSS Distributions 	lck_mtx_t nullm_lock;              /* lock to protect rootvp and secondvp above */
98*a1e26a70SApple OSS Distributions 	uint64_t nullm_flags;
99*a1e26a70SApple OSS Distributions 	uid_t uid;
100*a1e26a70SApple OSS Distributions 	gid_t gid;
101*a1e26a70SApple OSS Distributions };
102*a1e26a70SApple OSS Distributions 
103*a1e26a70SApple OSS Distributions struct null_mount_conf {
104*a1e26a70SApple OSS Distributions 	uint64_t flags;
105*a1e26a70SApple OSS Distributions };
106*a1e26a70SApple OSS Distributions 
107*a1e26a70SApple OSS Distributions #ifdef KERNEL
108*a1e26a70SApple OSS Distributions 
109*a1e26a70SApple OSS Distributions #define NULL_FLAG_HASHED 0x000000001
110*a1e26a70SApple OSS Distributions 
111*a1e26a70SApple OSS Distributions /*
112*a1e26a70SApple OSS Distributions  * A cache of vnode references
113*a1e26a70SApple OSS Distributions  */
114*a1e26a70SApple OSS Distributions struct null_node {
115*a1e26a70SApple OSS Distributions 	LIST_ENTRY(null_node) null_hash; /* Hash list */
116*a1e26a70SApple OSS Distributions 	struct vnode * null_lowervp;     /* VREFed once */
117*a1e26a70SApple OSS Distributions 	struct vnode * null_vnode;       /* Back pointer */
118*a1e26a70SApple OSS Distributions 	uint32_t null_lowervid;          /* vid for lowervp to detect lowervp getting recycled out
119*a1e26a70SApple OSS Distributions 	                                  *  from under us */
120*a1e26a70SApple OSS Distributions 	uint32_t null_myvid;
121*a1e26a70SApple OSS Distributions 	uint32_t null_flags;
122*a1e26a70SApple OSS Distributions };
123*a1e26a70SApple OSS Distributions 
124*a1e26a70SApple OSS Distributions struct vnodeop_desc_fake {
125*a1e26a70SApple OSS Distributions 	int vdesc_offset;
126*a1e26a70SApple OSS Distributions 	const char * vdesc_name;
127*a1e26a70SApple OSS Distributions 	/* other stuff */
128*a1e26a70SApple OSS Distributions };
129*a1e26a70SApple OSS Distributions 
130*a1e26a70SApple OSS Distributions #define NULLV_NOUNLOCK 0x0001
131*a1e26a70SApple OSS Distributions #define NULLV_DROP 0x0002
132*a1e26a70SApple OSS Distributions 
133*a1e26a70SApple OSS Distributions #define MOUNTTONULLMOUNT(mp) ((struct null_mount *)(vfs_fsprivate(mp)))
134*a1e26a70SApple OSS Distributions #define VTONULL(vp) ((struct null_node *)vnode_fsnode(vp))
135*a1e26a70SApple OSS Distributions #define NULLTOV(xp) ((xp)->null_vnode)
136*a1e26a70SApple OSS Distributions 
137*a1e26a70SApple OSS Distributions __BEGIN_DECLS
138*a1e26a70SApple OSS Distributions 
139*a1e26a70SApple OSS Distributions int nullfs_init(struct vfsconf * vfsp);
140*a1e26a70SApple OSS Distributions void nullfs_init_lck(lck_mtx_t * lck);
141*a1e26a70SApple OSS Distributions void nullfs_destroy_lck(lck_mtx_t * lck);
142*a1e26a70SApple OSS Distributions int nullfs_uninit(void);
143*a1e26a70SApple OSS Distributions int null_nodeget(
144*a1e26a70SApple OSS Distributions 	struct mount * mp, struct vnode * lowervp, struct vnode * dvp, struct vnode ** vpp, struct componentname * cnp, int root);
145*a1e26a70SApple OSS Distributions int null_hashget(struct mount * mp, struct vnode * lowervp, struct vnode ** vpp);
146*a1e26a70SApple OSS Distributions int null_getnewvnode(
147*a1e26a70SApple OSS Distributions 	struct mount * mp, struct vnode * lowervp, struct vnode * dvp, struct vnode ** vpp, struct componentname * cnp, int root);
148*a1e26a70SApple OSS Distributions void null_hashrem(struct null_node * xp);
149*a1e26a70SApple OSS Distributions 
150*a1e26a70SApple OSS Distributions int nullfs_getbackingvnode(vnode_t in_vp, vnode_t* out_vpp);
151*a1e26a70SApple OSS Distributions 
152*a1e26a70SApple OSS Distributions vfs_context_t nullfs_get_patched_context(struct null_mount * null_mp, vfs_context_t ctx);
153*a1e26a70SApple OSS Distributions void nullfs_cleanup_patched_context(struct null_mount * null_mp, vfs_context_t ctx);
154*a1e26a70SApple OSS Distributions 
155*a1e26a70SApple OSS Distributions #define NULLVPTOLOWERVP(vp) (VTONULL(vp)->null_lowervp)
156*a1e26a70SApple OSS Distributions #define NULLVPTOLOWERVID(vp) (VTONULL(vp)->null_lowervid)
157*a1e26a70SApple OSS Distributions #define NULLVPTOMYVID(vp) (VTONULL(vp)->null_myvid)
158*a1e26a70SApple OSS Distributions 
159*a1e26a70SApple OSS Distributions extern const struct vnodeopv_desc nullfs_vnodeop_opv_desc;
160*a1e26a70SApple OSS Distributions 
161*a1e26a70SApple OSS Distributions extern vop_t * nullfs_vnodeop_p;
162*a1e26a70SApple OSS Distributions 
163*a1e26a70SApple OSS Distributions __END_DECLS
164*a1e26a70SApple OSS Distributions 
165*a1e26a70SApple OSS Distributions #ifdef NULLFS_DEBUG
166*a1e26a70SApple OSS Distributions #define NULLFSDEBUG(format, args...) printf(format, ##args)
167*a1e26a70SApple OSS Distributions #else
168*a1e26a70SApple OSS Distributions #define NULLFSDEBUG(format, args...)
169*a1e26a70SApple OSS Distributions #endif /* NULLFS_DEBUG */
170*a1e26a70SApple OSS Distributions 
171*a1e26a70SApple OSS Distributions #endif /* KERNEL */
172*a1e26a70SApple OSS Distributions 
173*a1e26a70SApple OSS Distributions #endif
174