1 /* 2 * Copyright (c) 2000-2019 Apple Inc. All rights reserved. 3 * 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 * 6 * This file contains Original Code and/or Modifications of Original Code 7 * as defined in and that are subject to the Apple Public Source License 8 * Version 2.0 (the 'License'). You may not use this file except in 9 * compliance with the License. The rights granted to you under the License 10 * may not be used to create, or enable the creation or redistribution of, 11 * unlawful or unlicensed copies of an Apple operating system, or to 12 * circumvent, violate, or enable the circumvention or violation of, any 13 * terms of an Apple operating system software license agreement. 14 * 15 * Please obtain a copy of the License at 16 * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 * 18 * The Original Code and all software distributed under the License are 19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 * Please see the License for the specific language governing rights and 24 * limitations under the License. 25 * 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 */ 28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ 29 /* 30 * Copyright (c) 1989, 1993, 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 */ 63 /* 64 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce 65 * support for mandatory and extensible security protections. This notice 66 * is included in support of clause 2.2 (b) of the Apple Public License, 67 * Version 2.0. 68 */ 69 70 #include <sys/param.h> 71 #include <sys/systm.h> 72 #include <sys/mount_internal.h> 73 #include <sys/vnode_internal.h> 74 75 #include <nfs/nfs_conf.h> 76 77 /* 78 * These define the root filesystem, device, and root filesystem type. 79 */ 80 struct mount *rootfs; 81 struct vnode *rootvnode; 82 83 #ifdef CONFIG_IMGSRC_ACCESS 84 struct vnode *imgsrc_rootvnodes[MAX_IMAGEBOOT_NESTING]; /* [0] -> source volume, [1] -> first disk image */ 85 #endif /* CONFIG_IMGSRC_ACCESS */ 86 87 int (*mountroot)(void) = NULL; 88 89 /* 90 * Set up the initial array of known filesystem types. 91 */ 92 extern struct vfsops mfs_vfsops; 93 extern int mfs_mountroot(mount_t, vnode_t, vfs_context_t); /* dead */ 94 extern struct vfsops afs_vfsops; 95 extern struct vfsops null_vfsops; 96 extern struct vfsops devfs_vfsops; 97 extern const struct vfsops routefs_vfsops; 98 extern struct vfsops nullfs_vfsops; 99 extern struct vfsops bindfs_vfsops; 100 101 #if MOCKFS 102 extern struct vfsops mockfs_vfsops; 103 extern int mockfs_mountroot(mount_t, vnode_t, vfs_context_t); 104 #endif /* MOCKFS */ 105 106 enum fs_type_num { 107 FT_NFS = 2, 108 FT_DEVFS = 19, 109 FT_SYNTHFS = 20, 110 FT_ROUTEFS = 21, 111 FT_NULLFS = 22, 112 FT_BINDFS = 23, 113 FT_MOCKFS = 0x6D6F636B 114 }; 115 116 int fstypenumstart = FT_BINDFS + 1; 117 /* 118 * Set up the filesystem operations for vnodes. 119 */ 120 static struct vfstable vfstbllist[] = { 121 /* Device Filesystem */ 122 #if DEVFS 123 #if CONFIG_MACF 124 { 125 .vfc_vfsops = &devfs_vfsops, 126 .vfc_name = "devfs", 127 .vfc_typenum = FT_DEVFS, 128 .vfc_refcount = 0, 129 .vfc_flags = MNT_MULTILABEL, 130 .vfc_mountroot = NULL, 131 .vfc_next = NULL, 132 .vfc_reserved1 = 0, 133 .vfc_reserved2 = 0, 134 .vfc_vfsflags = VFC_VFSGENERICARGS | VFC_VFS64BITREADY, 135 .vfc_descptr = NULL, 136 .vfc_descsize = 0, 137 .vfc_sysctl = NULL 138 }, 139 #else /* !CONFIG_MAC */ 140 { 141 .vfc_vfsops = &devfs_vfsops, 142 .vfc_name = "devfs", 143 .vfc_typenum = FT_DEVFS, 144 .vfc_refcount = 0, 145 .vfc_flags = 0, 146 .vfc_mountroot = NULL, 147 .vfc_next = NULL, 148 .vfc_reserved1 = 0, 149 .vfc_reserved2 = 0, 150 .vfc_vfsflags = VFC_VFSGENERICARGS | VFC_VFS64BITREADY, 151 .vfc_descptr = NULL, 152 .vfc_descsize = 0, 153 .vfc_sysctl = NULL 154 }, 155 #endif /* CONFIG_MAC */ 156 #endif /* DEVFS */ 157 158 #ifndef __LP64__ 159 #endif /* __LP64__ */ 160 161 #if NULLFS 162 { 163 .vfc_vfsops = &nullfs_vfsops, 164 .vfc_name = "nullfs", 165 .vfc_typenum = FT_NULLFS, 166 .vfc_refcount = 0, 167 .vfc_flags = MNT_DONTBROWSE | MNT_RDONLY, 168 .vfc_mountroot = NULL, 169 .vfc_next = NULL, 170 .vfc_reserved1 = 0, 171 .vfc_reserved2 = 0, 172 .vfc_vfsflags = VFC_VFS64BITREADY, 173 .vfc_descptr = NULL, 174 .vfc_descsize = 0, 175 .vfc_sysctl = NULL 176 }, 177 #endif /* NULLFS */ 178 179 #if BINDFS 180 { 181 .vfc_vfsops = &bindfs_vfsops, 182 .vfc_name = "bindfs", 183 .vfc_typenum = FT_BINDFS, 184 .vfc_refcount = 0, 185 .vfc_flags = MNT_DONTBROWSE | MNT_RDONLY, 186 .vfc_mountroot = NULL, 187 .vfc_next = NULL, 188 .vfc_reserved1 = 0, 189 .vfc_reserved2 = 0, 190 .vfc_vfsflags = VFC_VFS64BITREADY, 191 .vfc_descptr = NULL, 192 .vfc_descsize = 0, 193 .vfc_sysctl = NULL 194 }, 195 #endif /* BINDFS */ 196 197 #if MOCKFS 198 /* If we are configured for it, mockfs should always be the last standard entry (and thus the last FS we attempt mountroot with) */ 199 { 200 .vfc_vfsops = &mockfs_vfsops, 201 .vfc_name = "mockfs", 202 .vfc_typenum = FT_MOCKFS, 203 .vfc_refcount = 0, 204 .vfc_flags = MNT_LOCAL, 205 .vfc_mountroot = mockfs_mountroot, 206 .vfc_next = NULL, 207 .vfc_reserved1 = 0, 208 .vfc_reserved2 = 0, 209 .vfc_vfsflags = VFC_VFSGENERICARGS, 210 .vfc_descptr = NULL, 211 .vfc_descsize = 0, 212 .vfc_sysctl = NULL 213 }, 214 #endif /* MOCKFS */ 215 216 #if ROUTEFS 217 /* If we are configured for it, mockfs should always be the last standard entry (and thus the last FS we attempt mountroot with) */ 218 { 219 .vfc_vfsops = &routefs_vfsops, 220 .vfc_name = "routefs", 221 .vfc_typenum = FT_ROUTEFS, 222 .vfc_refcount = 0, 223 .vfc_flags = MNT_LOCAL, 224 .vfc_mountroot = NULL, 225 .vfc_next = NULL, 226 .vfc_reserved1 = 0, 227 .vfc_reserved2 = 0, 228 .vfc_vfsflags = VFC_VFSGENERICARGS | VFC_VFS64BITREADY, 229 .vfc_descptr = NULL, 230 .vfc_descsize = 0, 231 .vfc_sysctl = NULL 232 }, 233 #endif /* ROUTEFS */ 234 235 { 236 .vfc_vfsops = NULL, 237 .vfc_name = "<unassigned>", 238 .vfc_typenum = 0, 239 .vfc_refcount = 0, 240 .vfc_flags = 0, 241 .vfc_mountroot = NULL, 242 .vfc_next = NULL, 243 .vfc_reserved1 = 0, 244 .vfc_reserved2 = 0, 245 .vfc_vfsflags = 0, 246 .vfc_descptr = NULL, 247 .vfc_descsize = 0, 248 .vfc_sysctl = NULL 249 }, 250 { 251 .vfc_vfsops = NULL, 252 .vfc_name = "<unassigned>", 253 .vfc_typenum = 0, 254 .vfc_refcount = 0, 255 .vfc_flags = 0, 256 .vfc_mountroot = NULL, 257 .vfc_next = NULL, 258 .vfc_reserved1 = 0, 259 .vfc_reserved2 = 0, 260 .vfc_vfsflags = 0, 261 .vfc_descptr = NULL, 262 .vfc_descsize = 0, 263 .vfc_sysctl = NULL 264 }, 265 }; 266 267 /* 268 * vfs_init will set maxvfstypenum to the highest defined type number. 269 */ 270 const int maxvfsslots = sizeof(vfstbllist) / sizeof(struct vfstable); 271 int numused_vfsslots = 0; 272 int numregistered_fses = 0; 273 int maxvfstypenum = VT_NON + 1; 274 struct vfstable *vfsconf = vfstbllist; 275 276 /* 277 * 278 * vfs_opv_descs enumerates the list of vnode classes, each with it's own 279 * vnode operation vector. It is consulted at system boot to build operation 280 * vectors. It is NULL terminated. 281 * 282 */ 283 extern struct vnodeopv_desc mfs_vnodeop_opv_desc; 284 extern const struct vnodeopv_desc dead_vnodeop_opv_desc; 285 #if FIFO && SOCKETS 286 extern const struct vnodeopv_desc fifo_vnodeop_opv_desc; 287 #endif /* SOCKETS */ 288 extern const struct vnodeopv_desc spec_vnodeop_opv_desc; 289 extern struct vnodeopv_desc null_vnodeop_opv_desc; 290 extern struct vnodeopv_desc devfs_vnodeop_opv_desc; 291 extern struct vnodeopv_desc devfs_spec_vnodeop_opv_desc; 292 #if FDESC 293 extern struct vnodeopv_desc devfs_devfd_vnodeop_opv_desc; 294 extern const struct vnodeopv_desc devfs_fdesc_vnodeop_opv_desc; 295 #endif /* FDESC */ 296 297 #if MOCKFS 298 extern const struct vnodeopv_desc mockfs_vnodeop_opv_desc; 299 #endif /* MOCKFS */ 300 301 extern const struct vnodeopv_desc nullfs_vnodeop_opv_desc; 302 extern const struct vnodeopv_desc bindfs_vnodeop_opv_desc; 303 304 const struct vnodeopv_desc *vfs_opv_descs[] = { 305 &dead_vnodeop_opv_desc, 306 #if FIFO && SOCKETS 307 &fifo_vnodeop_opv_desc, 308 #endif 309 &spec_vnodeop_opv_desc, 310 #if MFS 311 &mfs_vnodeop_opv_desc, 312 #endif 313 #if DEVFS 314 &devfs_vnodeop_opv_desc, 315 &devfs_spec_vnodeop_opv_desc, 316 #if FDESC 317 &devfs_devfd_vnodeop_opv_desc, 318 &devfs_fdesc_vnodeop_opv_desc, 319 #endif /* FDESC */ 320 #endif /* DEVFS */ 321 #if NULLFS 322 &nullfs_vnodeop_opv_desc, 323 #endif /* NULLFS */ 324 #if BINDFS 325 &bindfs_vnodeop_opv_desc, 326 #endif /* BINDFS */ 327 #if MOCKFS 328 &mockfs_vnodeop_opv_desc, 329 #endif /* MOCKFS */ 330 NULL 331 }; 332