xref: /dflybsd-src/sys/vfs/devfs/devfs_vfsops.c (revision 9cf39e57443abe8456b5bad6ed885cd176009dc6)
121864bc5SMatthew Dillon /*
221864bc5SMatthew Dillon  * Copyright (c) 2009 The DragonFly Project.  All rights reserved.
321864bc5SMatthew Dillon  *
421864bc5SMatthew Dillon  * This code is derived from software contributed to The DragonFly Project
521864bc5SMatthew Dillon  * by Alex Hornung <ahornung@gmail.com>
621864bc5SMatthew Dillon  *
721864bc5SMatthew Dillon  * Redistribution and use in source and binary forms, with or without
821864bc5SMatthew Dillon  * modification, are permitted provided that the following conditions
921864bc5SMatthew Dillon  * are met:
1021864bc5SMatthew Dillon  *
1121864bc5SMatthew Dillon  * 1. Redistributions of source code must retain the above copyright
1221864bc5SMatthew Dillon  *    notice, this list of conditions and the following disclaimer.
1321864bc5SMatthew Dillon  * 2. Redistributions in binary form must reproduce the above copyright
1421864bc5SMatthew Dillon  *    notice, this list of conditions and the following disclaimer in
1521864bc5SMatthew Dillon  *    the documentation and/or other materials provided with the
1621864bc5SMatthew Dillon  *    distribution.
1721864bc5SMatthew Dillon  * 3. Neither the name of The DragonFly Project nor the names of its
1821864bc5SMatthew Dillon  *    contributors may be used to endorse or promote products derived
1921864bc5SMatthew Dillon  *    from this software without specific, prior written permission.
2021864bc5SMatthew Dillon  *
2121864bc5SMatthew Dillon  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2221864bc5SMatthew Dillon  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2321864bc5SMatthew Dillon  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
2421864bc5SMatthew Dillon  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
2521864bc5SMatthew Dillon  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
2621864bc5SMatthew Dillon  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
2721864bc5SMatthew Dillon  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2821864bc5SMatthew Dillon  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
2921864bc5SMatthew Dillon  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3021864bc5SMatthew Dillon  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
3121864bc5SMatthew Dillon  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3221864bc5SMatthew Dillon  * SUCH DAMAGE.
3321864bc5SMatthew Dillon  */
3421864bc5SMatthew Dillon #include <sys/param.h>
3521864bc5SMatthew Dillon #include <sys/systm.h>
3621864bc5SMatthew Dillon #include <sys/kernel.h>
3721864bc5SMatthew Dillon #include <sys/mount.h>
3821864bc5SMatthew Dillon #include <sys/vnode.h>
3921864bc5SMatthew Dillon #include <sys/jail.h>
40fa7e6f37SAlex Hornung #include <sys/lock.h>
4121864bc5SMatthew Dillon #include <vfs/devfs/devfs.h>
4221864bc5SMatthew Dillon 
4321864bc5SMatthew Dillon MALLOC_DECLARE(M_DEVFS);
4421864bc5SMatthew Dillon 
4521864bc5SMatthew Dillon extern struct vop_ops devfs_vnode_norm_vops;
4621864bc5SMatthew Dillon extern struct vop_ops devfs_vnode_dev_vops;
4721864bc5SMatthew Dillon extern struct lock 	devfs_lock;
4821864bc5SMatthew Dillon 
4921864bc5SMatthew Dillon static int	devfs_mount (struct mount *mp, char *path, caddr_t data,
5021864bc5SMatthew Dillon 				  struct ucred *cred);
5121864bc5SMatthew Dillon static int	devfs_statfs (struct mount *mp, struct statfs *sbp,
5221864bc5SMatthew Dillon 				struct ucred *cred);
5321864bc5SMatthew Dillon static int	devfs_unmount (struct mount *mp, int mntflags);
5421864bc5SMatthew Dillon int			devfs_root(struct mount *mp, struct vnode **vpp);
55fa7e6f37SAlex Hornung static int	devfs_vget(struct mount *mp, struct vnode *dvp,
56fa7e6f37SAlex Hornung 				ino_t ino, struct vnode **vpp);
57fa7e6f37SAlex Hornung static int	devfs_fhtovp(struct mount *mp, struct vnode *rootvp,
58fa7e6f37SAlex Hornung 				struct fid *fhp, struct vnode **vpp);
59fa7e6f37SAlex Hornung static int	devfs_vptofh(struct vnode *vp, struct fid *fhp);
60fa7e6f37SAlex Hornung 
6121864bc5SMatthew Dillon 
6221864bc5SMatthew Dillon /*
6321864bc5SMatthew Dillon  * VFS Operations.
6421864bc5SMatthew Dillon  *
6521864bc5SMatthew Dillon  * mount system call
6621864bc5SMatthew Dillon  */
6721864bc5SMatthew Dillon /* ARGSUSED */
6821864bc5SMatthew Dillon static int
6921864bc5SMatthew Dillon devfs_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred)
7021864bc5SMatthew Dillon {
71*9cf39e57SAlex Hornung 	struct devfs_mount_info info;
72ca8d7677SMatthew Dillon 	struct devfs_mnt_data *mnt;
7321864bc5SMatthew Dillon 	size_t size;
74*9cf39e57SAlex Hornung 	int error;
7521864bc5SMatthew Dillon 
7621864bc5SMatthew Dillon 	devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_mount() called!\n");
7721864bc5SMatthew Dillon 
7821864bc5SMatthew Dillon 	if (mp->mnt_flag & MNT_UPDATE)
7921864bc5SMatthew Dillon 		return (EOPNOTSUPP);
8021864bc5SMatthew Dillon 
81*9cf39e57SAlex Hornung 	if (data == NULL) {
82*9cf39e57SAlex Hornung 		bzero(&info, sizeof(info));
83*9cf39e57SAlex Hornung 	} else {
84*9cf39e57SAlex Hornung 		if ((error = copyin(data, &info, sizeof(info))) != 0)
85*9cf39e57SAlex Hornung 			return (error);
86*9cf39e57SAlex Hornung 	}
8721864bc5SMatthew Dillon 
8821864bc5SMatthew Dillon 	mp->mnt_flag |= MNT_LOCAL;
8921864bc5SMatthew Dillon 	mp->mnt_kern_flag |= MNTK_NOSTKMNT;
90ca8d7677SMatthew Dillon 	mp->mnt_data = NULL;
9121864bc5SMatthew Dillon 	vfs_getnewfsid(mp);
9221864bc5SMatthew Dillon 
9321864bc5SMatthew Dillon 	size = sizeof("devfs") - 1;
9421864bc5SMatthew Dillon 	bcopy("devfs", mp->mnt_stat.f_mntfromname, size);
9521864bc5SMatthew Dillon 	bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
9621864bc5SMatthew Dillon 	devfs_statfs(mp, &mp->mnt_stat, cred);
9721864bc5SMatthew Dillon 
98bc185c5aSAlex Hornung 	/*
99bc185c5aSAlex Hornung 	 * XXX: save other mount info passed from userland or so.
100bc185c5aSAlex Hornung 	 */
101ca8d7677SMatthew Dillon 	mnt = kmalloc(sizeof(*mnt), M_DEVFS, M_WAITOK | M_ZERO);
10221864bc5SMatthew Dillon 
10321864bc5SMatthew Dillon 	lockmgr(&devfs_lock, LK_EXCLUSIVE);
104ca8d7677SMatthew Dillon 	mp->mnt_data = (qaddr_t)mnt;
105*9cf39e57SAlex Hornung 
106*9cf39e57SAlex Hornung 	if (info.flags & DEVFS_MNT_JAIL)
107*9cf39e57SAlex Hornung 		mnt->jailed = 1;
108*9cf39e57SAlex Hornung 	else
109ca8d7677SMatthew Dillon 		mnt->jailed = jailed(cred);
110*9cf39e57SAlex Hornung 
111ca8d7677SMatthew Dillon 	mnt->leak_count = 0;
112ca8d7677SMatthew Dillon 	mnt->mp = mp;
113ca8d7677SMatthew Dillon 	TAILQ_INIT(&mnt->orphan_list);
114ca8d7677SMatthew Dillon 	mnt->root_node = devfs_allocp(Proot, "", NULL, mp, NULL);
115ca8d7677SMatthew Dillon 	KKASSERT(mnt->root_node);
11621864bc5SMatthew Dillon 	lockmgr(&devfs_lock, LK_RELEASE);
11721864bc5SMatthew Dillon 
11821864bc5SMatthew Dillon 	vfs_add_vnodeops(mp, &devfs_vnode_norm_vops, &mp->mnt_vn_norm_ops);
11921864bc5SMatthew Dillon 	vfs_add_vnodeops(mp, &devfs_vnode_dev_vops, &mp->mnt_vn_spec_ops);
12021864bc5SMatthew Dillon 
12121864bc5SMatthew Dillon 	devfs_debug(DEVFS_DEBUG_DEBUG, "calling devfs_mount_add\n");
122ca8d7677SMatthew Dillon 	devfs_mount_add(mnt);
12321864bc5SMatthew Dillon 
12421864bc5SMatthew Dillon 	return (0);
12521864bc5SMatthew Dillon }
12621864bc5SMatthew Dillon 
12721864bc5SMatthew Dillon /*
12821864bc5SMatthew Dillon  * unmount system call
12921864bc5SMatthew Dillon  */
13021864bc5SMatthew Dillon static int
13121864bc5SMatthew Dillon devfs_unmount(struct mount *mp, int mntflags)
13221864bc5SMatthew Dillon {
13321864bc5SMatthew Dillon 	int error = 0;
13421864bc5SMatthew Dillon 	int flags = 0;
13521864bc5SMatthew Dillon 
13621864bc5SMatthew Dillon 	devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_unmount() called!\n");
13721864bc5SMatthew Dillon 
13821864bc5SMatthew Dillon 	if (mntflags & MNT_FORCE)
13921864bc5SMatthew Dillon 		flags |= FORCECLOSE;
14021864bc5SMatthew Dillon 
14121864bc5SMatthew Dillon 	error = vflush(mp, 0, flags);
14221864bc5SMatthew Dillon 
14321864bc5SMatthew Dillon 	if (error)
14421864bc5SMatthew Dillon 		return (error);
14589bf2026SMatthew Dillon 	devfs_tracer_orphan_count(mp, 1);
14621864bc5SMatthew Dillon 	devfs_mount_del(DEVFS_MNTDATA(mp));
14721864bc5SMatthew Dillon 	kfree(mp->mnt_data, M_DEVFS);
148ca8d7677SMatthew Dillon 	mp->mnt_data = NULL;
14921864bc5SMatthew Dillon 
15021864bc5SMatthew Dillon 	return (0);
15121864bc5SMatthew Dillon }
15221864bc5SMatthew Dillon 
15321864bc5SMatthew Dillon /*
15421864bc5SMatthew Dillon  * Sets *vpp to the root procfs vnode, referenced and exclusively locked
15521864bc5SMatthew Dillon  */
15621864bc5SMatthew Dillon int
15721864bc5SMatthew Dillon devfs_root(struct mount *mp, struct vnode **vpp)
15821864bc5SMatthew Dillon {
15921864bc5SMatthew Dillon 	int ret;
16021864bc5SMatthew Dillon 	devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_root() called!\n");
16121864bc5SMatthew Dillon 	lockmgr(&devfs_lock, LK_EXCLUSIVE);
16221864bc5SMatthew Dillon 	ret = devfs_allocv(vpp, DEVFS_MNTDATA(mp)->root_node);
16321864bc5SMatthew Dillon 	lockmgr(&devfs_lock, LK_RELEASE);
16421864bc5SMatthew Dillon 	return ret;
16521864bc5SMatthew Dillon }
16621864bc5SMatthew Dillon 
16721864bc5SMatthew Dillon /*
16821864bc5SMatthew Dillon  * Get file system statistics.
16921864bc5SMatthew Dillon  */
17021864bc5SMatthew Dillon static int
17121864bc5SMatthew Dillon devfs_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
17221864bc5SMatthew Dillon {
17321864bc5SMatthew Dillon 	devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_stat() called!\n");
17421864bc5SMatthew Dillon 	sbp->f_bsize = DEV_BSIZE;
17521864bc5SMatthew Dillon 	sbp->f_iosize = DEV_BSIZE;
17621864bc5SMatthew Dillon 	sbp->f_blocks = 2;	/* avoid divide by zero in some df's */
17721864bc5SMatthew Dillon 	sbp->f_bfree = 0;
17821864bc5SMatthew Dillon 	sbp->f_bavail = 0;
17921864bc5SMatthew Dillon 	sbp->f_files = 0;
18021864bc5SMatthew Dillon 	sbp->f_ffree = 0;
18121864bc5SMatthew Dillon 
18221864bc5SMatthew Dillon 	if (sbp != &mp->mnt_stat) {
18321864bc5SMatthew Dillon 		sbp->f_type = mp->mnt_vfc->vfc_typenum;
18421864bc5SMatthew Dillon 		bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
18521864bc5SMatthew Dillon 		bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
18621864bc5SMatthew Dillon 	}
18721864bc5SMatthew Dillon 
18821864bc5SMatthew Dillon 	return (0);
18921864bc5SMatthew Dillon }
19021864bc5SMatthew Dillon 
191fa7e6f37SAlex Hornung static int
192fa7e6f37SAlex Hornung devfs_fhtovp(struct mount *mp, struct vnode *rootvp,
193fa7e6f37SAlex Hornung 	   struct fid *fhp, struct vnode **vpp)
194fa7e6f37SAlex Hornung {
195fa7e6f37SAlex Hornung 	struct vnode		*vp;
196fa7e6f37SAlex Hornung 	struct devfs_fid	*dfhp;
197fa7e6f37SAlex Hornung 
198fa7e6f37SAlex Hornung 	dfhp = (struct devfs_fid *)fhp;
199fa7e6f37SAlex Hornung 
200fa7e6f37SAlex Hornung 	if (dfhp->fid_gen != boottime.tv_sec)
201fa7e6f37SAlex Hornung 		return EINVAL;
202fa7e6f37SAlex Hornung 
203fa7e6f37SAlex Hornung 	vp = devfs_inode_to_vnode(mp, dfhp->fid_ino);
204fa7e6f37SAlex Hornung 
205bc185c5aSAlex Hornung 	if (vp == NULL)
206fa7e6f37SAlex Hornung 		return ENOENT;
207fa7e6f37SAlex Hornung 
208bc185c5aSAlex Hornung 	*vpp = vp;
209fa7e6f37SAlex Hornung 	return 0;
210fa7e6f37SAlex Hornung }
211fa7e6f37SAlex Hornung 
212fa7e6f37SAlex Hornung /*
213fa7e6f37SAlex Hornung  * Vnode pointer to File handle
214fa7e6f37SAlex Hornung  */
215fa7e6f37SAlex Hornung /* ARGSUSED */
216fa7e6f37SAlex Hornung static int
217fa7e6f37SAlex Hornung devfs_vptofh(struct vnode *vp, struct fid *fhp)
218fa7e6f37SAlex Hornung {
219fa7e6f37SAlex Hornung 	struct devfs_node	*node;
220fa7e6f37SAlex Hornung 	struct devfs_fid	*dfhp;
221fa7e6f37SAlex Hornung 
222fa7e6f37SAlex Hornung 	if ((node = DEVFS_NODE(vp)) != NULL) {
223fa7e6f37SAlex Hornung 		dfhp = (struct devfs_fid *)fhp;
224fa7e6f37SAlex Hornung 		dfhp->fid_len = sizeof(struct devfs_fid);
225fa7e6f37SAlex Hornung 		dfhp->fid_ino = node->d_dir.d_ino;
226fa7e6f37SAlex Hornung 		dfhp->fid_gen = boottime.tv_sec;
227fa7e6f37SAlex Hornung 	} else {
228fa7e6f37SAlex Hornung 		return ENOENT;
229fa7e6f37SAlex Hornung 	}
230fa7e6f37SAlex Hornung 
231fa7e6f37SAlex Hornung 	return (0);
232fa7e6f37SAlex Hornung }
233fa7e6f37SAlex Hornung 
234fa7e6f37SAlex Hornung static int
235fa7e6f37SAlex Hornung devfs_vget(struct mount *mp, struct vnode *dvp, ino_t ino, struct vnode **vpp)
236fa7e6f37SAlex Hornung {
237fa7e6f37SAlex Hornung 	struct vnode *vp;
238fa7e6f37SAlex Hornung 	vp = devfs_inode_to_vnode(mp, ino);
239fa7e6f37SAlex Hornung 
240bc185c5aSAlex Hornung 	if (vp == NULL)
241fa7e6f37SAlex Hornung 		return ENOENT;
242fa7e6f37SAlex Hornung 
243bc185c5aSAlex Hornung 	*vpp = vp;
244fa7e6f37SAlex Hornung 	return 0;
245fa7e6f37SAlex Hornung }
246fa7e6f37SAlex Hornung 
247fa7e6f37SAlex Hornung 
24821864bc5SMatthew Dillon static struct vfsops devfs_vfsops = {
24921864bc5SMatthew Dillon 	.vfs_mount 	=   devfs_mount,
25021864bc5SMatthew Dillon 	.vfs_unmount =  devfs_unmount,
25121864bc5SMatthew Dillon 	.vfs_root 	=   devfs_root,
25221864bc5SMatthew Dillon 	.vfs_statfs =   devfs_statfs,
253fa7e6f37SAlex Hornung 	.vfs_sync 	=   vfs_stdsync,
254fa7e6f37SAlex Hornung 	.vfs_vget	= 	devfs_vget,
255fa7e6f37SAlex Hornung 	.vfs_vptofh	= 	devfs_vptofh,
256fa7e6f37SAlex Hornung 	.vfs_fhtovp	= 	devfs_fhtovp
25721864bc5SMatthew Dillon };
25821864bc5SMatthew Dillon 
25921864bc5SMatthew Dillon VFS_SET(devfs_vfsops, devfs, VFCF_SYNTHETIC);
26021864bc5SMatthew Dillon MODULE_VERSION(devfs, 1);
261