xref: /xnu-8792.81.2/bsd/miscfs/devfs/devfs_vfsops.c (revision 19c3b8c28c31cb8130e034cfb5df6bf9ba342d90)
1*19c3b8c2SApple OSS Distributions /*
2*19c3b8c2SApple OSS Distributions  * Copyright (c) 2000-2010 Apple Inc. All rights reserved.
3*19c3b8c2SApple OSS Distributions  *
4*19c3b8c2SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*19c3b8c2SApple OSS Distributions  *
6*19c3b8c2SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*19c3b8c2SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*19c3b8c2SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*19c3b8c2SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*19c3b8c2SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*19c3b8c2SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*19c3b8c2SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*19c3b8c2SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*19c3b8c2SApple OSS Distributions  *
15*19c3b8c2SApple OSS Distributions  * Please obtain a copy of the License at
16*19c3b8c2SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*19c3b8c2SApple OSS Distributions  *
18*19c3b8c2SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*19c3b8c2SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*19c3b8c2SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*19c3b8c2SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*19c3b8c2SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*19c3b8c2SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*19c3b8c2SApple OSS Distributions  * limitations under the License.
25*19c3b8c2SApple OSS Distributions  *
26*19c3b8c2SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*19c3b8c2SApple OSS Distributions  */
28*19c3b8c2SApple OSS Distributions /*-
29*19c3b8c2SApple OSS Distributions  * Copyright 1997,1998 Julian Elischer.  All rights reserved.
30*19c3b8c2SApple OSS Distributions  * [email protected]
31*19c3b8c2SApple OSS Distributions  *
32*19c3b8c2SApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
33*19c3b8c2SApple OSS Distributions  * modification, are permitted provided that the following conditions are
34*19c3b8c2SApple OSS Distributions  * met:
35*19c3b8c2SApple OSS Distributions  *  1. Redistributions of source code must retain the above copyright
36*19c3b8c2SApple OSS Distributions  *     notice, this list of conditions and the following disclaimer.
37*19c3b8c2SApple OSS Distributions  *  2. Redistributions in binary form must reproduce the above copyright notice,
38*19c3b8c2SApple OSS Distributions  *     this list of conditions and the following disclaimer in the documentation
39*19c3b8c2SApple OSS Distributions  *     and/or other materials provided with the distribution.
40*19c3b8c2SApple OSS Distributions  *
41*19c3b8c2SApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY EXPRESS
42*19c3b8c2SApple OSS Distributions  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
43*19c3b8c2SApple OSS Distributions  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
44*19c3b8c2SApple OSS Distributions  * DISCLAIMED.  IN NO EVENT SHALL THE HOLDER OR CONTRIBUTORS BE LIABLE FOR
45*19c3b8c2SApple OSS Distributions  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46*19c3b8c2SApple OSS Distributions  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
47*19c3b8c2SApple OSS Distributions  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
48*19c3b8c2SApple OSS Distributions  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49*19c3b8c2SApple OSS Distributions  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50*19c3b8c2SApple OSS Distributions  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51*19c3b8c2SApple OSS Distributions  * SUCH DAMAGE.
52*19c3b8c2SApple OSS Distributions  *
53*19c3b8c2SApple OSS Distributions  * devfs_vfsops.c
54*19c3b8c2SApple OSS Distributions  *
55*19c3b8c2SApple OSS Distributions  */
56*19c3b8c2SApple OSS Distributions /*
57*19c3b8c2SApple OSS Distributions  * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
58*19c3b8c2SApple OSS Distributions  * support for mandatory and extensible security protections.  This notice
59*19c3b8c2SApple OSS Distributions  * is included in support of clause 2.2 (b) of the Apple Public License,
60*19c3b8c2SApple OSS Distributions  * Version 2.0.
61*19c3b8c2SApple OSS Distributions  */
62*19c3b8c2SApple OSS Distributions /*
63*19c3b8c2SApple OSS Distributions  * HISTORY
64*19c3b8c2SApple OSS Distributions  *  Dieter Siegmund ([email protected]) Wed Jul 14 13:37:59 PDT 1999
65*19c3b8c2SApple OSS Distributions  *  - modified devfs_statfs() to use devfs_stats to calculate the
66*19c3b8c2SApple OSS Distributions  *    amount of memory used by devfs
67*19c3b8c2SApple OSS Distributions  */
68*19c3b8c2SApple OSS Distributions 
69*19c3b8c2SApple OSS Distributions 
70*19c3b8c2SApple OSS Distributions #include <sys/param.h>
71*19c3b8c2SApple OSS Distributions #include <sys/systm.h>
72*19c3b8c2SApple OSS Distributions #include <sys/kernel.h>
73*19c3b8c2SApple OSS Distributions #include <sys/vnode_internal.h>
74*19c3b8c2SApple OSS Distributions #include <sys/proc.h>
75*19c3b8c2SApple OSS Distributions #include <sys/kauth.h>
76*19c3b8c2SApple OSS Distributions #include <sys/mount_internal.h>
77*19c3b8c2SApple OSS Distributions #include <sys/malloc.h>
78*19c3b8c2SApple OSS Distributions #include <sys/conf.h>
79*19c3b8c2SApple OSS Distributions #include <libkern/OSAtomic.h>
80*19c3b8c2SApple OSS Distributions #include <atm/atm_internal.h>
81*19c3b8c2SApple OSS Distributions 
82*19c3b8c2SApple OSS Distributions #if CONFIG_MACF
83*19c3b8c2SApple OSS Distributions #include <security/mac_framework.h>
84*19c3b8c2SApple OSS Distributions #endif
85*19c3b8c2SApple OSS Distributions 
86*19c3b8c2SApple OSS Distributions #include "devfs.h"
87*19c3b8c2SApple OSS Distributions #include "devfsdefs.h"
88*19c3b8c2SApple OSS Distributions 
89*19c3b8c2SApple OSS Distributions #if FDESC
90*19c3b8c2SApple OSS Distributions #include "fdesc.h"
91*19c3b8c2SApple OSS Distributions #endif /* FDESC */
92*19c3b8c2SApple OSS Distributions 
93*19c3b8c2SApple OSS Distributions 
94*19c3b8c2SApple OSS Distributions static int devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, vfs_context_t ctx);
95*19c3b8c2SApple OSS Distributions static int devfs_vfs_getattr(mount_t mp, struct vfs_attr *fsap, vfs_context_t ctx);
96*19c3b8c2SApple OSS Distributions 
97*19c3b8c2SApple OSS Distributions #if CONFIG_DEV_KMEM
98*19c3b8c2SApple OSS Distributions extern boolean_t dev_kmem_enabled;
99*19c3b8c2SApple OSS Distributions #endif
100*19c3b8c2SApple OSS Distributions 
101*19c3b8c2SApple OSS Distributions /*-
102*19c3b8c2SApple OSS Distributions  * Called from the generic VFS startups.
103*19c3b8c2SApple OSS Distributions  * This is the second stage of DEVFS initialisation.
104*19c3b8c2SApple OSS Distributions  * The probed devices have already been loaded and the
105*19c3b8c2SApple OSS Distributions  * basic structure of the DEVFS created.
106*19c3b8c2SApple OSS Distributions  * We take the oportunity to mount the hidden DEVFS layer, so that
107*19c3b8c2SApple OSS Distributions  * devices from devfs get sync'd.
108*19c3b8c2SApple OSS Distributions  */
109*19c3b8c2SApple OSS Distributions static int
devfs_init(__unused struct vfsconf * vfsp)110*19c3b8c2SApple OSS Distributions devfs_init(__unused struct vfsconf *vfsp)
111*19c3b8c2SApple OSS Distributions {
112*19c3b8c2SApple OSS Distributions 	if (devfs_sinit()) {
113*19c3b8c2SApple OSS Distributions 		return ENOTSUP;
114*19c3b8c2SApple OSS Distributions 	}
115*19c3b8c2SApple OSS Distributions 	devfs_make_node(makedev(0, 0), DEVFS_CHAR,
116*19c3b8c2SApple OSS Distributions 	    UID_ROOT, GID_WHEEL, 0622, "console");
117*19c3b8c2SApple OSS Distributions 	devfs_make_node(makedev(2, 0), DEVFS_CHAR,
118*19c3b8c2SApple OSS Distributions 	    UID_ROOT, GID_WHEEL, 0666, "tty");
119*19c3b8c2SApple OSS Distributions #if CONFIG_DEV_KMEM
120*19c3b8c2SApple OSS Distributions 	if (dev_kmem_enabled) {
121*19c3b8c2SApple OSS Distributions 		/* (3,0) reserved for /dev/mem physical memory */
122*19c3b8c2SApple OSS Distributions 		devfs_make_node(makedev(3, 1), DEVFS_CHAR,
123*19c3b8c2SApple OSS Distributions 		    UID_ROOT, GID_KMEM, 0640, "kmem");
124*19c3b8c2SApple OSS Distributions 	}
125*19c3b8c2SApple OSS Distributions #endif
126*19c3b8c2SApple OSS Distributions 	devfs_make_node(makedev(3, 2), DEVFS_CHAR,
127*19c3b8c2SApple OSS Distributions 	    UID_ROOT, GID_WHEEL, 0666, "null");
128*19c3b8c2SApple OSS Distributions 	devfs_make_node(makedev(3, 3), DEVFS_CHAR,
129*19c3b8c2SApple OSS Distributions 	    UID_ROOT, GID_WHEEL, 0666, "zero");
130*19c3b8c2SApple OSS Distributions 	uint32_t logging_config = atm_get_diagnostic_config();
131*19c3b8c2SApple OSS Distributions 
132*19c3b8c2SApple OSS Distributions 	devfs_make_node(makedev(6, 0), DEVFS_CHAR,
133*19c3b8c2SApple OSS Distributions 	    UID_ROOT, GID_WHEEL, 0600, "klog");
134*19c3b8c2SApple OSS Distributions 
135*19c3b8c2SApple OSS Distributions 	if (!(logging_config & ATM_TRACE_DISABLE)) {
136*19c3b8c2SApple OSS Distributions 		devfs_make_node(makedev(7, 0), DEVFS_CHAR,
137*19c3b8c2SApple OSS Distributions 		    UID_LOGD, GID_LOGD, 0600, "oslog");
138*19c3b8c2SApple OSS Distributions 		if (cdevsw_setkqueueok(7, (&(cdevsw[7])), 0) == -1) {
139*19c3b8c2SApple OSS Distributions 			return ENOTSUP;
140*19c3b8c2SApple OSS Distributions 		}
141*19c3b8c2SApple OSS Distributions 
142*19c3b8c2SApple OSS Distributions 		devfs_make_node(makedev(8, 0), DEVFS_CHAR,
143*19c3b8c2SApple OSS Distributions 		    UID_ROOT, GID_WHEEL, 0600, "oslog_stream");
144*19c3b8c2SApple OSS Distributions 		if (cdevsw_setkqueueok(8, (&(cdevsw[8])), 0) == -1) {
145*19c3b8c2SApple OSS Distributions 			return ENOTSUP;
146*19c3b8c2SApple OSS Distributions 		}
147*19c3b8c2SApple OSS Distributions 	}
148*19c3b8c2SApple OSS Distributions 
149*19c3b8c2SApple OSS Distributions 
150*19c3b8c2SApple OSS Distributions #if  FDESC
151*19c3b8c2SApple OSS Distributions 	devfs_fdesc_init();
152*19c3b8c2SApple OSS Distributions #endif
153*19c3b8c2SApple OSS Distributions 
154*19c3b8c2SApple OSS Distributions 	return 0;
155*19c3b8c2SApple OSS Distributions }
156*19c3b8c2SApple OSS Distributions 
157*19c3b8c2SApple OSS Distributions /*-
158*19c3b8c2SApple OSS Distributions  *  mp	 - pointer to 'mount' structure
159*19c3b8c2SApple OSS Distributions  *  path - addr in user space of mount point (ie /usr or whatever)
160*19c3b8c2SApple OSS Distributions  *  data - addr in user space of mount params including the
161*19c3b8c2SApple OSS Distributions  *         name of the block special file to treat as a filesystem.
162*19c3b8c2SApple OSS Distributions  *         (NOT USED)
163*19c3b8c2SApple OSS Distributions  *  ndp  - namei data pointer (NOT USED)
164*19c3b8c2SApple OSS Distributions  *  p    - proc pointer
165*19c3b8c2SApple OSS Distributions  * devfs is special in that it doesn't require any device to be mounted..
166*19c3b8c2SApple OSS Distributions  * It makes up its data as it goes along.
167*19c3b8c2SApple OSS Distributions  * it must be mounted during single user.. until it is, only std{in/out/err}
168*19c3b8c2SApple OSS Distributions  * and the root filesystem are available.
169*19c3b8c2SApple OSS Distributions  */
170*19c3b8c2SApple OSS Distributions /*proto*/
171*19c3b8c2SApple OSS Distributions int
devfs_mount(struct mount * mp,__unused vnode_t devvp,__unused user_addr_t data,vfs_context_t ctx)172*19c3b8c2SApple OSS Distributions devfs_mount(struct mount *mp, __unused vnode_t devvp, __unused user_addr_t data, vfs_context_t ctx)
173*19c3b8c2SApple OSS Distributions {
174*19c3b8c2SApple OSS Distributions 	struct devfsmount *devfs_mp_p;  /* devfs specific mount info */
175*19c3b8c2SApple OSS Distributions 	int error;
176*19c3b8c2SApple OSS Distributions 
177*19c3b8c2SApple OSS Distributions 	/*-
178*19c3b8c2SApple OSS Distributions 	 *  If they just want to update, we don't need to do anything.
179*19c3b8c2SApple OSS Distributions 	 */
180*19c3b8c2SApple OSS Distributions 	if (mp->mnt_flag & MNT_UPDATE) {
181*19c3b8c2SApple OSS Distributions 		return 0;
182*19c3b8c2SApple OSS Distributions 	}
183*19c3b8c2SApple OSS Distributions 
184*19c3b8c2SApple OSS Distributions 	/* Advisory locking should be handled at the VFS layer */
185*19c3b8c2SApple OSS Distributions 	vfs_setlocklocal(mp);
186*19c3b8c2SApple OSS Distributions 
187*19c3b8c2SApple OSS Distributions 	/*-
188*19c3b8c2SApple OSS Distributions 	 *  Well, it's not an update, it's a real mount request.
189*19c3b8c2SApple OSS Distributions 	 *  Time to get dirty.
190*19c3b8c2SApple OSS Distributions 	 * HERE we should check to see if we are already mounted here.
191*19c3b8c2SApple OSS Distributions 	 */
192*19c3b8c2SApple OSS Distributions 
193*19c3b8c2SApple OSS Distributions 	devfs_mp_p = kalloc_type(struct devfsmount,
194*19c3b8c2SApple OSS Distributions 	    Z_WAITOK | Z_ZERO | Z_NOFAIL);
195*19c3b8c2SApple OSS Distributions 	devfs_mp_p->mount = mp;
196*19c3b8c2SApple OSS Distributions 
197*19c3b8c2SApple OSS Distributions 	/*-
198*19c3b8c2SApple OSS Distributions 	 *  Fill out some fields
199*19c3b8c2SApple OSS Distributions 	 */
200*19c3b8c2SApple OSS Distributions 	__IGNORE_WCASTALIGN(mp->mnt_data = (qaddr_t)devfs_mp_p);
201*19c3b8c2SApple OSS Distributions 	mp->mnt_vfsstat.f_fsid.val[0] = (int32_t)VM_KERNEL_ADDRHASH(devfs_mp_p);
202*19c3b8c2SApple OSS Distributions 	mp->mnt_vfsstat.f_fsid.val[1] = vfs_typenum(mp);
203*19c3b8c2SApple OSS Distributions 	mp->mnt_flag |= MNT_LOCAL;
204*19c3b8c2SApple OSS Distributions 
205*19c3b8c2SApple OSS Distributions 	DEVFS_LOCK();
206*19c3b8c2SApple OSS Distributions 	error = dev_dup_plane(devfs_mp_p);
207*19c3b8c2SApple OSS Distributions 	DEVFS_UNLOCK();
208*19c3b8c2SApple OSS Distributions 
209*19c3b8c2SApple OSS Distributions 	if (error) {
210*19c3b8c2SApple OSS Distributions 		mp->mnt_data = (qaddr_t)0;
211*19c3b8c2SApple OSS Distributions 		kfree_type(struct devfsmount, devfs_mp_p);
212*19c3b8c2SApple OSS Distributions 		return error;
213*19c3b8c2SApple OSS Distributions 	} else {
214*19c3b8c2SApple OSS Distributions 		DEVFS_INCR_MOUNTS();
215*19c3b8c2SApple OSS Distributions 	}
216*19c3b8c2SApple OSS Distributions 
217*19c3b8c2SApple OSS Distributions 	/*-
218*19c3b8c2SApple OSS Distributions 	 *  Copy in the name of the directory the filesystem
219*19c3b8c2SApple OSS Distributions 	 *  is to be mounted on.
220*19c3b8c2SApple OSS Distributions 	 *  And we clear the remainder of the character strings
221*19c3b8c2SApple OSS Distributions 	 *  to be tidy.
222*19c3b8c2SApple OSS Distributions 	 */
223*19c3b8c2SApple OSS Distributions 
224*19c3b8c2SApple OSS Distributions 	bzero(mp->mnt_vfsstat.f_mntfromname, MAXPATHLEN);
225*19c3b8c2SApple OSS Distributions 	bcopy("devfs", mp->mnt_vfsstat.f_mntfromname, 5);
226*19c3b8c2SApple OSS Distributions 	(void)devfs_statfs(mp, &mp->mnt_vfsstat, ctx);
227*19c3b8c2SApple OSS Distributions 
228*19c3b8c2SApple OSS Distributions 	return 0;
229*19c3b8c2SApple OSS Distributions }
230*19c3b8c2SApple OSS Distributions 
231*19c3b8c2SApple OSS Distributions 
232*19c3b8c2SApple OSS Distributions static int
devfs_start(__unused struct mount * mp,__unused int flags,__unused vfs_context_t ctx)233*19c3b8c2SApple OSS Distributions devfs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t ctx)
234*19c3b8c2SApple OSS Distributions {
235*19c3b8c2SApple OSS Distributions 	return 0;
236*19c3b8c2SApple OSS Distributions }
237*19c3b8c2SApple OSS Distributions 
238*19c3b8c2SApple OSS Distributions /*-
239*19c3b8c2SApple OSS Distributions  *  Unmount the filesystem described by mp.
240*19c3b8c2SApple OSS Distributions  */
241*19c3b8c2SApple OSS Distributions static int
devfs_unmount(struct mount * mp,int mntflags,__unused vfs_context_t ctx)242*19c3b8c2SApple OSS Distributions devfs_unmount( struct mount *mp, int mntflags, __unused vfs_context_t ctx)
243*19c3b8c2SApple OSS Distributions {
244*19c3b8c2SApple OSS Distributions 	struct devfsmount *devfs_mp_p = (struct devfsmount *)mp->mnt_data;
245*19c3b8c2SApple OSS Distributions 	int flags = 0;
246*19c3b8c2SApple OSS Distributions 	int force = 0;
247*19c3b8c2SApple OSS Distributions 	int error;
248*19c3b8c2SApple OSS Distributions 
249*19c3b8c2SApple OSS Distributions 	if (mntflags & MNT_FORCE) {
250*19c3b8c2SApple OSS Distributions 		flags |= FORCECLOSE;
251*19c3b8c2SApple OSS Distributions 		force = 1;
252*19c3b8c2SApple OSS Distributions 	}
253*19c3b8c2SApple OSS Distributions 	error = vflush(mp, NULLVP, flags);
254*19c3b8c2SApple OSS Distributions 	if (error && !force) {
255*19c3b8c2SApple OSS Distributions 		return error;
256*19c3b8c2SApple OSS Distributions 	}
257*19c3b8c2SApple OSS Distributions 
258*19c3b8c2SApple OSS Distributions 	DEVFS_LOCK();
259*19c3b8c2SApple OSS Distributions 	devfs_free_plane(devfs_mp_p);
260*19c3b8c2SApple OSS Distributions 	DEVFS_UNLOCK();
261*19c3b8c2SApple OSS Distributions 
262*19c3b8c2SApple OSS Distributions 	DEVFS_DECR_MOUNTS();
263*19c3b8c2SApple OSS Distributions 
264*19c3b8c2SApple OSS Distributions 	kfree_type(struct devfsmount, devfs_mp_p);
265*19c3b8c2SApple OSS Distributions 	mp->mnt_data = (qaddr_t)0;
266*19c3b8c2SApple OSS Distributions 	mp->mnt_flag &= ~MNT_LOCAL;
267*19c3b8c2SApple OSS Distributions 
268*19c3b8c2SApple OSS Distributions 	return 0;
269*19c3b8c2SApple OSS Distributions }
270*19c3b8c2SApple OSS Distributions 
271*19c3b8c2SApple OSS Distributions /* return the address of the root vnode  in *vpp */
272*19c3b8c2SApple OSS Distributions static int
devfs_root(struct mount * mp,struct vnode ** vpp,__unused vfs_context_t ctx)273*19c3b8c2SApple OSS Distributions devfs_root(struct mount *mp, struct vnode **vpp, __unused vfs_context_t ctx)
274*19c3b8c2SApple OSS Distributions {
275*19c3b8c2SApple OSS Distributions 	struct devfsmount *devfs_mp_p = (struct devfsmount *)(mp->mnt_data);
276*19c3b8c2SApple OSS Distributions 	int error;
277*19c3b8c2SApple OSS Distributions 
278*19c3b8c2SApple OSS Distributions 	DEVFS_LOCK();
279*19c3b8c2SApple OSS Distributions 	/* last parameter to devfs_dntovn() is ignored */
280*19c3b8c2SApple OSS Distributions 	error = devfs_dntovn(devfs_mp_p->plane_root->de_dnp, vpp, NULL);
281*19c3b8c2SApple OSS Distributions 	DEVFS_UNLOCK();
282*19c3b8c2SApple OSS Distributions 
283*19c3b8c2SApple OSS Distributions 	return error;
284*19c3b8c2SApple OSS Distributions }
285*19c3b8c2SApple OSS Distributions 
286*19c3b8c2SApple OSS Distributions static int
devfs_statfs(struct mount * mp,struct vfsstatfs * sbp,__unused vfs_context_t ctx)287*19c3b8c2SApple OSS Distributions devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, __unused vfs_context_t ctx)
288*19c3b8c2SApple OSS Distributions {
289*19c3b8c2SApple OSS Distributions 	struct devfsmount *devfs_mp_p = (struct devfsmount *)mp->mnt_data;
290*19c3b8c2SApple OSS Distributions 
291*19c3b8c2SApple OSS Distributions 	/*-
292*19c3b8c2SApple OSS Distributions 	 *  Fill in the stat block.
293*19c3b8c2SApple OSS Distributions 	 */
294*19c3b8c2SApple OSS Distributions 	//sbp->f_type   = mp->mnt_vfsstat.f_type;
295*19c3b8c2SApple OSS Distributions 	sbp->f_flags  = 0;              /* XXX */
296*19c3b8c2SApple OSS Distributions 	sbp->f_bsize  = 512;
297*19c3b8c2SApple OSS Distributions 	sbp->f_iosize = 512;
298*19c3b8c2SApple OSS Distributions 	sbp->f_blocks = (devfs_stats.mounts * sizeof(struct devfsmount)
299*19c3b8c2SApple OSS Distributions 	    + devfs_stats.nodes * sizeof(devnode_t)
300*19c3b8c2SApple OSS Distributions 	    + devfs_stats.entries * sizeof(devdirent_t)
301*19c3b8c2SApple OSS Distributions 	    + devfs_stats.stringspace
302*19c3b8c2SApple OSS Distributions 	    ) / sbp->f_bsize;
303*19c3b8c2SApple OSS Distributions 	sbp->f_bfree  = 0;
304*19c3b8c2SApple OSS Distributions 	sbp->f_bavail = 0;
305*19c3b8c2SApple OSS Distributions 	sbp->f_files  = devfs_stats.nodes;
306*19c3b8c2SApple OSS Distributions 	sbp->f_ffree  = 0;
307*19c3b8c2SApple OSS Distributions 	sbp->f_fsid.val[0] = (int32_t)VM_KERNEL_ADDRHASH(devfs_mp_p);
308*19c3b8c2SApple OSS Distributions 	sbp->f_fsid.val[1] = vfs_typenum(mp);
309*19c3b8c2SApple OSS Distributions 
310*19c3b8c2SApple OSS Distributions 	return 0;
311*19c3b8c2SApple OSS Distributions }
312*19c3b8c2SApple OSS Distributions 
313*19c3b8c2SApple OSS Distributions static int
devfs_vfs_getattr(__unused mount_t mp,struct vfs_attr * fsap,__unused vfs_context_t ctx)314*19c3b8c2SApple OSS Distributions devfs_vfs_getattr(__unused mount_t mp, struct vfs_attr *fsap, __unused vfs_context_t ctx)
315*19c3b8c2SApple OSS Distributions {
316*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_objcount, devfs_stats.nodes);
317*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_maxobjcount, devfs_stats.nodes);
318*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_bsize, 512);
319*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_iosize, 512);
320*19c3b8c2SApple OSS Distributions 	if (VFSATTR_IS_ACTIVE(fsap, f_blocks) || VFSATTR_IS_ACTIVE(fsap, f_bused)) {
321*19c3b8c2SApple OSS Distributions 		fsap->f_blocks = (devfs_stats.mounts * sizeof(struct devfsmount)
322*19c3b8c2SApple OSS Distributions 		    + devfs_stats.nodes * sizeof(devnode_t)
323*19c3b8c2SApple OSS Distributions 		    + devfs_stats.entries * sizeof(devdirent_t)
324*19c3b8c2SApple OSS Distributions 		    + devfs_stats.stringspace
325*19c3b8c2SApple OSS Distributions 		    ) / fsap->f_bsize;
326*19c3b8c2SApple OSS Distributions 		fsap->f_bused = fsap->f_blocks;
327*19c3b8c2SApple OSS Distributions 		VFSATTR_SET_SUPPORTED(fsap, f_blocks);
328*19c3b8c2SApple OSS Distributions 		VFSATTR_SET_SUPPORTED(fsap, f_bused);
329*19c3b8c2SApple OSS Distributions 	}
330*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_bfree, 0);
331*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_bavail, 0);
332*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_files, devfs_stats.nodes);
333*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_ffree, 0);
334*19c3b8c2SApple OSS Distributions 	VFSATTR_RETURN(fsap, f_fssubtype, 0);
335*19c3b8c2SApple OSS Distributions 
336*19c3b8c2SApple OSS Distributions 	if (VFSATTR_IS_ACTIVE(fsap, f_capabilities)) {
337*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.capabilities[VOL_CAPABILITIES_FORMAT] =
338*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_SYMBOLICLINKS |
339*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_HARDLINKS |
340*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_NO_ROOT_TIMES |
341*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_CASE_SENSITIVE |
342*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_CASE_PRESERVING |
343*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_FAST_STATFS |
344*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_2TB_FILESIZE |
345*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_HIDDEN_FILES;
346*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.capabilities[VOL_CAPABILITIES_INTERFACES] =
347*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_ATTRLIST;
348*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.capabilities[VOL_CAPABILITIES_RESERVED1] = 0;
349*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.capabilities[VOL_CAPABILITIES_RESERVED2] = 0;
350*19c3b8c2SApple OSS Distributions 
351*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.valid[VOL_CAPABILITIES_FORMAT] =
352*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_PERSISTENTOBJECTIDS |
353*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_SYMBOLICLINKS |
354*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_HARDLINKS |
355*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_JOURNAL |
356*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_JOURNAL_ACTIVE |
357*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_NO_ROOT_TIMES |
358*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_SPARSE_FILES |
359*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_ZERO_RUNS |
360*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_CASE_SENSITIVE |
361*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_CASE_PRESERVING |
362*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_FAST_STATFS |
363*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_2TB_FILESIZE |
364*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_OPENDENYMODES |
365*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_HIDDEN_FILES |
366*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_PATH_FROM_ID |
367*19c3b8c2SApple OSS Distributions 		    VOL_CAP_FMT_NO_VOLUME_SIZES;
368*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.valid[VOL_CAPABILITIES_INTERFACES] =
369*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_SEARCHFS |
370*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_ATTRLIST |
371*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_NFSEXPORT |
372*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_READDIRATTR |
373*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_EXCHANGEDATA |
374*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_COPYFILE |
375*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_ALLOCATE |
376*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_VOL_RENAME |
377*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_ADVLOCK |
378*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_FLOCK |
379*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_EXTENDED_SECURITY |
380*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_USERACCESS |
381*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_MANLOCK |
382*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_EXTENDED_ATTR |
383*19c3b8c2SApple OSS Distributions 		    VOL_CAP_INT_NAMEDSTREAMS;
384*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.valid[VOL_CAPABILITIES_RESERVED1] = 0;
385*19c3b8c2SApple OSS Distributions 		fsap->f_capabilities.valid[VOL_CAPABILITIES_RESERVED2] = 0;
386*19c3b8c2SApple OSS Distributions 
387*19c3b8c2SApple OSS Distributions 		VFSATTR_SET_SUPPORTED(fsap, f_capabilities);
388*19c3b8c2SApple OSS Distributions 	}
389*19c3b8c2SApple OSS Distributions 
390*19c3b8c2SApple OSS Distributions 	if (VFSATTR_IS_ACTIVE(fsap, f_attributes)) {
391*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.validattr.commonattr =
392*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_NAME | ATTR_CMN_DEVID | ATTR_CMN_FSID |
393*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_OBJTYPE | ATTR_CMN_OBJTAG | ATTR_CMN_OBJID |
394*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_PAROBJID |
395*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_MODTIME | ATTR_CMN_CHGTIME | ATTR_CMN_ACCTIME |
396*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_OWNERID | ATTR_CMN_GRPID | ATTR_CMN_ACCESSMASK |
397*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_FLAGS | ATTR_CMN_USERACCESS | ATTR_CMN_FILEID;
398*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.validattr.volattr =
399*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_FSTYPE | ATTR_VOL_SIZE | ATTR_VOL_SPACEFREE |
400*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_SPACEAVAIL | ATTR_VOL_MINALLOCATION |
401*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_OBJCOUNT | ATTR_VOL_MAXOBJCOUNT |
402*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_MOUNTPOINT | ATTR_VOL_MOUNTFLAGS |
403*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_MOUNTEDDEVICE | ATTR_VOL_CAPABILITIES |
404*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_ATTRIBUTES;
405*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.validattr.dirattr =
406*19c3b8c2SApple OSS Distributions 		    ATTR_DIR_LINKCOUNT | ATTR_DIR_MOUNTSTATUS;
407*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.validattr.fileattr =
408*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_LINKCOUNT | ATTR_FILE_TOTALSIZE |
409*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_IOBLOCKSIZE | ATTR_FILE_DEVTYPE |
410*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_DATALENGTH;
411*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.validattr.forkattr = 0;
412*19c3b8c2SApple OSS Distributions 
413*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.nativeattr.commonattr =
414*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_NAME | ATTR_CMN_DEVID | ATTR_CMN_FSID |
415*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_OBJTYPE | ATTR_CMN_OBJTAG | ATTR_CMN_OBJID |
416*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_PAROBJID |
417*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_MODTIME | ATTR_CMN_CHGTIME | ATTR_CMN_ACCTIME |
418*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_OWNERID | ATTR_CMN_GRPID | ATTR_CMN_ACCESSMASK |
419*19c3b8c2SApple OSS Distributions 		    ATTR_CMN_FLAGS | ATTR_CMN_USERACCESS | ATTR_CMN_FILEID;
420*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.nativeattr.volattr =
421*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_FSTYPE | ATTR_VOL_SIZE | ATTR_VOL_SPACEFREE |
422*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_SPACEAVAIL | ATTR_VOL_MINALLOCATION |
423*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_OBJCOUNT | ATTR_VOL_MAXOBJCOUNT |
424*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_MOUNTPOINT | ATTR_VOL_MOUNTFLAGS |
425*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_MOUNTEDDEVICE | ATTR_VOL_CAPABILITIES |
426*19c3b8c2SApple OSS Distributions 		    ATTR_VOL_ATTRIBUTES;
427*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.nativeattr.dirattr =
428*19c3b8c2SApple OSS Distributions 		    ATTR_DIR_MOUNTSTATUS;
429*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.nativeattr.fileattr =
430*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_LINKCOUNT | ATTR_FILE_TOTALSIZE |
431*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_IOBLOCKSIZE | ATTR_FILE_DEVTYPE |
432*19c3b8c2SApple OSS Distributions 		    ATTR_FILE_DATALENGTH;
433*19c3b8c2SApple OSS Distributions 		fsap->f_attributes.nativeattr.forkattr = 0;
434*19c3b8c2SApple OSS Distributions 
435*19c3b8c2SApple OSS Distributions 		VFSATTR_SET_SUPPORTED(fsap, f_attributes);
436*19c3b8c2SApple OSS Distributions 	}
437*19c3b8c2SApple OSS Distributions 
438*19c3b8c2SApple OSS Distributions 	return 0;
439*19c3b8c2SApple OSS Distributions }
440*19c3b8c2SApple OSS Distributions 
441*19c3b8c2SApple OSS Distributions static int
devfs_sync(__unused struct mount * mp,__unused int waitfor,__unused vfs_context_t ctx)442*19c3b8c2SApple OSS Distributions devfs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx)
443*19c3b8c2SApple OSS Distributions {
444*19c3b8c2SApple OSS Distributions 	return 0;
445*19c3b8c2SApple OSS Distributions }
446*19c3b8c2SApple OSS Distributions 
447*19c3b8c2SApple OSS Distributions 
448*19c3b8c2SApple OSS Distributions static int
devfs_vget(__unused struct mount * mp,__unused ino64_t ino,__unused struct vnode ** vpp,__unused vfs_context_t ctx)449*19c3b8c2SApple OSS Distributions devfs_vget(__unused struct mount *mp, __unused ino64_t ino, __unused struct vnode **vpp, __unused vfs_context_t ctx)
450*19c3b8c2SApple OSS Distributions {
451*19c3b8c2SApple OSS Distributions 	return ENOTSUP;
452*19c3b8c2SApple OSS Distributions }
453*19c3b8c2SApple OSS Distributions 
454*19c3b8c2SApple OSS Distributions /*************************************************************
455*19c3b8c2SApple OSS Distributions  * The concept of exporting a kernel generated devfs is stupid
456*19c3b8c2SApple OSS Distributions  * So don't handle filehandles
457*19c3b8c2SApple OSS Distributions  */
458*19c3b8c2SApple OSS Distributions 
459*19c3b8c2SApple OSS Distributions static int
devfs_fhtovp(__unused struct mount * mp,__unused int fhlen,__unused unsigned char * fhp,__unused struct vnode ** vpp,__unused vfs_context_t ctx)460*19c3b8c2SApple OSS Distributions devfs_fhtovp(__unused struct mount *mp, __unused int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx)
461*19c3b8c2SApple OSS Distributions {
462*19c3b8c2SApple OSS Distributions 	return EINVAL;
463*19c3b8c2SApple OSS Distributions }
464*19c3b8c2SApple OSS Distributions 
465*19c3b8c2SApple OSS Distributions 
466*19c3b8c2SApple OSS Distributions static int
devfs_vptofh(__unused struct vnode * vp,__unused int * fhlenp,__unused unsigned char * fhp,__unused vfs_context_t ctx)467*19c3b8c2SApple OSS Distributions devfs_vptofh(__unused struct vnode *vp, __unused int *fhlenp, __unused unsigned char *fhp, __unused vfs_context_t ctx)
468*19c3b8c2SApple OSS Distributions {
469*19c3b8c2SApple OSS Distributions 	return EINVAL;
470*19c3b8c2SApple OSS Distributions }
471*19c3b8c2SApple OSS Distributions 
472*19c3b8c2SApple OSS Distributions static int
devfs_sysctl(__unused int * name,__unused u_int namelen,__unused user_addr_t oldp,__unused size_t * oldlenp,__unused user_addr_t newp,__unused size_t newlen,__unused vfs_context_t ctx)473*19c3b8c2SApple OSS Distributions devfs_sysctl(__unused int *name, __unused u_int namelen, __unused user_addr_t oldp,
474*19c3b8c2SApple OSS Distributions     __unused size_t *oldlenp, __unused user_addr_t newp,
475*19c3b8c2SApple OSS Distributions     __unused size_t newlen, __unused vfs_context_t ctx)
476*19c3b8c2SApple OSS Distributions {
477*19c3b8c2SApple OSS Distributions 	return ENOTSUP;
478*19c3b8c2SApple OSS Distributions }
479*19c3b8c2SApple OSS Distributions 
480*19c3b8c2SApple OSS Distributions #include <sys/namei.h>
481*19c3b8c2SApple OSS Distributions 
482*19c3b8c2SApple OSS Distributions /*
483*19c3b8c2SApple OSS Distributions  * Function: devfs_kernel_mount
484*19c3b8c2SApple OSS Distributions  * Purpose:
485*19c3b8c2SApple OSS Distributions  *   Mount devfs at the given mount point from within the kernel.
486*19c3b8c2SApple OSS Distributions  */
487*19c3b8c2SApple OSS Distributions int
devfs_kernel_mount(char * mntname)488*19c3b8c2SApple OSS Distributions devfs_kernel_mount(char * mntname)
489*19c3b8c2SApple OSS Distributions {
490*19c3b8c2SApple OSS Distributions 	int error;
491*19c3b8c2SApple OSS Distributions 	vfs_context_t ctx = vfs_context_kernel();
492*19c3b8c2SApple OSS Distributions 	char fsname[] = "devfs";
493*19c3b8c2SApple OSS Distributions 
494*19c3b8c2SApple OSS Distributions 	error = kernel_mount(fsname, NULLVP, NULLVP, mntname, NULL, 0, MNT_DONTBROWSE, KERNEL_MOUNT_NOAUTH | KERNEL_MOUNT_DEVFS, ctx);
495*19c3b8c2SApple OSS Distributions 	if (error) {
496*19c3b8c2SApple OSS Distributions 		printf("devfs_kernel_mount: kernel_mount failed: %d\n", error);
497*19c3b8c2SApple OSS Distributions 		return error;
498*19c3b8c2SApple OSS Distributions 	}
499*19c3b8c2SApple OSS Distributions 
500*19c3b8c2SApple OSS Distributions 	return 0;
501*19c3b8c2SApple OSS Distributions }
502*19c3b8c2SApple OSS Distributions 
503*19c3b8c2SApple OSS Distributions const struct vfsops devfs_vfsops = {
504*19c3b8c2SApple OSS Distributions 	.vfs_mount   = devfs_mount,
505*19c3b8c2SApple OSS Distributions 	.vfs_start   = devfs_start,
506*19c3b8c2SApple OSS Distributions 	.vfs_unmount = devfs_unmount,
507*19c3b8c2SApple OSS Distributions 	.vfs_root    = devfs_root,
508*19c3b8c2SApple OSS Distributions 	.vfs_getattr = devfs_vfs_getattr,
509*19c3b8c2SApple OSS Distributions 	.vfs_sync    = devfs_sync,
510*19c3b8c2SApple OSS Distributions 	.vfs_vget    = devfs_vget,
511*19c3b8c2SApple OSS Distributions 	.vfs_fhtovp  = devfs_fhtovp,
512*19c3b8c2SApple OSS Distributions 	.vfs_vptofh  = devfs_vptofh,
513*19c3b8c2SApple OSS Distributions 	.vfs_init    = devfs_init,
514*19c3b8c2SApple OSS Distributions 	.vfs_sysctl  = devfs_sysctl,
515*19c3b8c2SApple OSS Distributions 	// There are other VFS ops that we do not support
516*19c3b8c2SApple OSS Distributions };
517