]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
2d21ac55 | 2 | * Copyright (c) 2000-2007 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, 1995 | |
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 | * @(#)vfs_conf.c 8.11 (Berkeley) 5/10/95 | |
62 | */ | |
2d21ac55 A |
63 | /* |
64 | * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce | |
65 | * support for mandatory and extensible security protections. This notice | |
66 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
67 | * Version 2.0. | |
68 | */ | |
1c79356b A |
69 | |
70 | #include <sys/param.h> | |
71 | #include <sys/systm.h> | |
91447636 A |
72 | #include <sys/mount_internal.h> |
73 | #include <sys/vnode_internal.h> | |
1c79356b A |
74 | |
75 | /* | |
76 | * These define the root filesystem, device, and root filesystem type. | |
77 | */ | |
78 | struct mount *rootfs; | |
79 | struct vnode *rootvnode; | |
b7266188 A |
80 | |
81 | #ifdef CONFIG_IMGSRC_ACCESS | |
6d2010ae A |
82 | struct vnode *imgsrc_rootvnodes[MAX_IMAGEBOOT_NESTING]; /* [0] -> source volume, [1] -> first disk image */ |
83 | #endif /* CONFIG_IMGSRC_ACCESS */ | |
b7266188 | 84 | |
2d21ac55 | 85 | int (*mountroot)(void) = NULL; |
1c79356b A |
86 | |
87 | /* | |
88 | * Set up the initial array of known filesystem types. | |
89 | */ | |
1c79356b | 90 | extern struct vfsops mfs_vfsops; |
2d21ac55 | 91 | extern int mfs_mountroot(mount_t, vnode_t, vfs_context_t); /* dead */ |
1c79356b | 92 | extern struct vfsops hfs_vfsops; |
2d21ac55 | 93 | extern int hfs_mountroot(mount_t, vnode_t, vfs_context_t); |
1c79356b | 94 | extern struct vfsops nfs_vfsops; |
2d21ac55 | 95 | extern int nfs_mountroot(void); |
1c79356b | 96 | extern struct vfsops afs_vfsops; |
1c79356b | 97 | extern struct vfsops null_vfsops; |
1c79356b A |
98 | extern struct vfsops devfs_vfsops; |
99 | ||
39236c6e A |
100 | #if MOCKFS |
101 | extern struct vfsops mockfs_vfsops; | |
102 | extern int mockfs_mountroot(mount_t, vnode_t, vfs_context_t); | |
103 | #endif /* MOCKFS */ | |
104 | ||
2d21ac55 A |
105 | /* |
106 | * For nfs_mountroot(void) cast. nfs_mountroot ignores its parameters, if | |
107 | * invoked through this table. | |
108 | */ | |
109 | typedef int (*mountroot_t)(mount_t, vnode_t, vfs_context_t); | |
110 | ||
1c79356b A |
111 | /* |
112 | * Set up the filesystem operations for vnodes. | |
113 | */ | |
6601e61a | 114 | static struct vfstable vfstbllist[] = { |
1c79356b A |
115 | /* HFS/HFS+ Filesystem */ |
116 | #if HFS | |
39236c6e | 117 | { &hfs_vfsops, "hfs", 17, 0, (MNT_LOCAL | MNT_DOVOLFS), hfs_mountroot, NULL, 0, 0, VFC_VFSLOCALARGS | VFC_VFSREADDIR_EXTENDED | VFC_VFS64BITREADY | VFC_VFSVNOP_PAGEOUTV2 | VFC_VFSVNOP_PAGEINV2, NULL, 0}, |
1c79356b A |
118 | #endif |
119 | ||
1c79356b | 120 | /* Memory-based Filesystem */ |
b0d623f7 A |
121 | |
122 | #ifndef __LP64__ | |
1c79356b | 123 | #if MFS |
b0d623f7 | 124 | { &mfs_vfsops, "mfs", 3, 0, MNT_LOCAL, mfs_mountroot, NULL, 0, 0, VFC_VFSGENERICARGS, NULL, 0}, |
1c79356b | 125 | #endif |
b0d623f7 | 126 | #endif /* __LP64__ */ |
1c79356b A |
127 | |
128 | /* Sun-compatible Network Filesystem */ | |
129 | #if NFSCLIENT | |
39236c6e | 130 | { &nfs_vfsops, "nfs", 2, 0, 0, NULL, NULL, 0, 0, VFC_VFSGENERICARGS | VFC_VFSPREFLIGHT | VFC_VFS64BITREADY | VFC_VFSREADDIR_EXTENDED, NULL, 0}, |
1c79356b A |
131 | #endif |
132 | ||
133 | /* Andrew Filesystem */ | |
b0d623f7 | 134 | #ifndef __LP64__ |
1c79356b | 135 | #if AFS |
b0d623f7 | 136 | { &afs_vfsops, "andrewfs", 13, 0, 0, afs_mountroot, NULL, 0, 0, VFC_VFSGENERICARGS , NULL, 0}, |
1c79356b | 137 | #endif |
b0d623f7 | 138 | #endif /* __LP64__ */ |
1c79356b | 139 | |
1c79356b A |
140 | /* Device Filesystem */ |
141 | #if DEVFS | |
2d21ac55 | 142 | #if CONFIG_MACF |
39236c6e | 143 | { &devfs_vfsops, "devfs", 19, 0, (MNT_DONTBROWSE | MNT_MULTILABEL), NULL, NULL, 0, 0, VFC_VFSGENERICARGS | VFC_VFS64BITREADY, NULL, 0}, |
2d21ac55 | 144 | #else |
39236c6e | 145 | { &devfs_vfsops, "devfs", 19, 0, MNT_DONTBROWSE, NULL, NULL, 0, 0, VFC_VFSGENERICARGS | VFC_VFS64BITREADY, NULL, 0}, |
2d21ac55 | 146 | #endif /* MAC */ |
1c79356b | 147 | #endif |
9bccf70c | 148 | |
b0d623f7 A |
149 | #ifndef __LP64__ |
150 | #endif /* __LP64__ */ | |
2d21ac55 | 151 | |
39236c6e A |
152 | #if MOCKFS |
153 | /* If we are configured for it, mockfs should always be the last standard entry (and thus the last FS we attempt mountroot with) */ | |
154 | { &mockfs_vfsops, "mockfs", 0x6D6F636B, 0, MNT_LOCAL, mockfs_mountroot, NULL, 0, 0, VFC_VFSGENERICARGS, NULL, 0}, | |
155 | #endif /* MOCKFS */ | |
156 | ||
b0d623f7 A |
157 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, |
158 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
159 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
160 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
161 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
162 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
163 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
164 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
165 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
166 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
167 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
168 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
169 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
170 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0}, | |
171 | {NULL, "<unassigned>", 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, 0} | |
1c79356b A |
172 | }; |
173 | ||
174 | /* | |
175 | * Initially the size of the list, vfs_init will set maxvfsconf | |
176 | * to the highest defined type number. | |
177 | */ | |
6601e61a | 178 | int maxvfsslots = sizeof(vfstbllist) / sizeof (struct vfstable); |
1c79356b | 179 | int numused_vfsslots = 0; |
6601e61a A |
180 | int maxvfsconf = sizeof(vfstbllist) / sizeof (struct vfstable); |
181 | struct vfstable *vfsconf = vfstbllist; | |
1c79356b A |
182 | |
183 | /* | |
184 | * | |
185 | * vfs_opv_descs enumerates the list of vnode classes, each with it's own | |
186 | * vnode operation vector. It is consulted at system boot to build operation | |
187 | * vectors. It is NULL terminated. | |
188 | * | |
189 | */ | |
1c79356b A |
190 | extern struct vnodeopv_desc mfs_vnodeop_opv_desc; |
191 | extern struct vnodeopv_desc dead_vnodeop_opv_desc; | |
2d21ac55 | 192 | #if FIFO && SOCKETS |
1c79356b | 193 | extern struct vnodeopv_desc fifo_vnodeop_opv_desc; |
2d21ac55 | 194 | #endif /* SOCKETS */ |
1c79356b A |
195 | extern struct vnodeopv_desc spec_vnodeop_opv_desc; |
196 | extern struct vnodeopv_desc nfsv2_vnodeop_opv_desc; | |
197 | extern struct vnodeopv_desc spec_nfsv2nodeop_opv_desc; | |
198 | extern struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc; | |
2d21ac55 A |
199 | extern struct vnodeopv_desc nfsv4_vnodeop_opv_desc; |
200 | extern struct vnodeopv_desc spec_nfsv4nodeop_opv_desc; | |
201 | extern struct vnodeopv_desc fifo_nfsv4nodeop_opv_desc; | |
1c79356b | 202 | extern struct vnodeopv_desc null_vnodeop_opv_desc; |
1c79356b | 203 | extern struct vnodeopv_desc hfs_vnodeop_opv_desc; |
39236c6e | 204 | #if CONFIG_HFS_STD |
b0d623f7 | 205 | extern struct vnodeopv_desc hfs_std_vnodeop_opv_desc; |
39236c6e | 206 | #endif |
1c79356b A |
207 | extern struct vnodeopv_desc hfs_specop_opv_desc; |
208 | extern struct vnodeopv_desc hfs_fifoop_opv_desc; | |
1c79356b A |
209 | extern struct vnodeopv_desc devfs_vnodeop_opv_desc; |
210 | extern struct vnodeopv_desc devfs_spec_vnodeop_opv_desc; | |
b0d623f7 A |
211 | #if FDESC |
212 | extern struct vnodeopv_desc devfs_devfd_vnodeop_opv_desc; | |
213 | extern struct vnodeopv_desc devfs_fdesc_vnodeop_opv_desc; | |
214 | #endif /* FDESC */ | |
1c79356b | 215 | |
39236c6e A |
216 | #if MOCKFS |
217 | extern struct vnodeopv_desc mockfs_vnodeop_opv_desc; | |
218 | #endif /* MOCKFS */ | |
219 | ||
1c79356b | 220 | struct vnodeopv_desc *vfs_opv_descs[] = { |
1c79356b | 221 | &dead_vnodeop_opv_desc, |
2d21ac55 | 222 | #if FIFO && SOCKETS |
1c79356b A |
223 | &fifo_vnodeop_opv_desc, |
224 | #endif | |
225 | &spec_vnodeop_opv_desc, | |
1c79356b A |
226 | #if MFS |
227 | &mfs_vnodeop_opv_desc, | |
228 | #endif | |
229 | #if NFSCLIENT | |
230 | &nfsv2_vnodeop_opv_desc, | |
231 | &spec_nfsv2nodeop_opv_desc, | |
2d21ac55 A |
232 | &nfsv4_vnodeop_opv_desc, |
233 | &spec_nfsv4nodeop_opv_desc, | |
1c79356b A |
234 | #if FIFO |
235 | &fifo_nfsv2nodeop_opv_desc, | |
2d21ac55 | 236 | &fifo_nfsv4nodeop_opv_desc, |
1c79356b A |
237 | #endif |
238 | #endif | |
1c79356b A |
239 | #if HFS |
240 | &hfs_vnodeop_opv_desc, | |
39236c6e | 241 | #if CONFIG_HFS_STD |
b0d623f7 | 242 | &hfs_std_vnodeop_opv_desc, |
39236c6e | 243 | #endif |
1c79356b A |
244 | &hfs_specop_opv_desc, |
245 | #if FIFO | |
246 | &hfs_fifoop_opv_desc, | |
247 | #endif | |
248 | #endif | |
1c79356b A |
249 | #if DEVFS |
250 | &devfs_vnodeop_opv_desc, | |
251 | &devfs_spec_vnodeop_opv_desc, | |
b0d623f7 A |
252 | #if FDESC |
253 | &devfs_devfd_vnodeop_opv_desc, | |
254 | &devfs_fdesc_vnodeop_opv_desc, | |
255 | #endif /* FDESC */ | |
256 | #endif /* DEVFS */ | |
39236c6e A |
257 | #if MOCKFS |
258 | &mockfs_vnodeop_opv_desc, | |
259 | #endif /* MOCKFS */ | |
1c79356b A |
260 | NULL |
261 | }; |