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> 4021864bc5SMatthew Dillon #include <vfs/devfs/devfs.h> 4121864bc5SMatthew Dillon 4221864bc5SMatthew Dillon MALLOC_DECLARE(M_DEVFS); 4321864bc5SMatthew Dillon 4421864bc5SMatthew Dillon extern struct vop_ops devfs_vnode_norm_vops; 4521864bc5SMatthew Dillon extern struct vop_ops devfs_vnode_dev_vops; 4621864bc5SMatthew Dillon extern struct lock devfs_lock; 4721864bc5SMatthew Dillon 4821864bc5SMatthew Dillon static int devfs_mount (struct mount *mp, char *path, caddr_t data, 4921864bc5SMatthew Dillon struct ucred *cred); 5021864bc5SMatthew Dillon static int devfs_statfs (struct mount *mp, struct statfs *sbp, 5121864bc5SMatthew Dillon struct ucred *cred); 5221864bc5SMatthew Dillon static int devfs_unmount (struct mount *mp, int mntflags); 5321864bc5SMatthew Dillon int devfs_root(struct mount *mp, struct vnode **vpp); 5421864bc5SMatthew Dillon 5521864bc5SMatthew Dillon /* 5621864bc5SMatthew Dillon * VFS Operations. 5721864bc5SMatthew Dillon * 5821864bc5SMatthew Dillon * mount system call 5921864bc5SMatthew Dillon */ 6021864bc5SMatthew Dillon /* ARGSUSED */ 6121864bc5SMatthew Dillon static int 6221864bc5SMatthew Dillon devfs_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred) 6321864bc5SMatthew Dillon { 64*ca8d7677SMatthew Dillon struct devfs_mnt_data *mnt; 6521864bc5SMatthew Dillon size_t size; 6621864bc5SMatthew Dillon 6721864bc5SMatthew Dillon devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_mount() called!\n"); 6821864bc5SMatthew Dillon 6921864bc5SMatthew Dillon if (mp->mnt_flag & MNT_UPDATE) 7021864bc5SMatthew Dillon return (EOPNOTSUPP); 7121864bc5SMatthew Dillon 7221864bc5SMatthew Dillon 7321864bc5SMatthew Dillon mp->mnt_flag |= MNT_LOCAL; 7421864bc5SMatthew Dillon mp->mnt_kern_flag |= MNTK_NOSTKMNT; 75*ca8d7677SMatthew Dillon mp->mnt_data = NULL; 7621864bc5SMatthew Dillon vfs_getnewfsid(mp); 7721864bc5SMatthew Dillon 7821864bc5SMatthew Dillon size = sizeof("devfs") - 1; 7921864bc5SMatthew Dillon bcopy("devfs", mp->mnt_stat.f_mntfromname, size); 8021864bc5SMatthew Dillon bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size); 8121864bc5SMatthew Dillon devfs_statfs(mp, &mp->mnt_stat, cred); 8221864bc5SMatthew Dillon 8321864bc5SMatthew Dillon //XXX: save other mount info passed from userland or so. 84*ca8d7677SMatthew Dillon mnt = kmalloc(sizeof(*mnt), M_DEVFS, M_WAITOK | M_ZERO); 8521864bc5SMatthew Dillon 8621864bc5SMatthew Dillon lockmgr(&devfs_lock, LK_EXCLUSIVE); 87*ca8d7677SMatthew Dillon mp->mnt_data = (qaddr_t)mnt; 88*ca8d7677SMatthew Dillon mnt->jailed = jailed(cred); 89*ca8d7677SMatthew Dillon mnt->leak_count = 0; 90*ca8d7677SMatthew Dillon mnt->mp = mp; 91*ca8d7677SMatthew Dillon TAILQ_INIT(&mnt->orphan_list); 92*ca8d7677SMatthew Dillon mnt->mntonnamelen = strlen(mp->mnt_stat.f_mntonname); 93*ca8d7677SMatthew Dillon mnt->root_node = devfs_allocp(Proot, "", NULL, mp, NULL); 94*ca8d7677SMatthew Dillon KKASSERT(mnt->root_node); 9521864bc5SMatthew Dillon lockmgr(&devfs_lock, LK_RELEASE); 9621864bc5SMatthew Dillon 9721864bc5SMatthew Dillon vfs_add_vnodeops(mp, &devfs_vnode_norm_vops, &mp->mnt_vn_norm_ops); 9821864bc5SMatthew Dillon vfs_add_vnodeops(mp, &devfs_vnode_dev_vops, &mp->mnt_vn_spec_ops); 9921864bc5SMatthew Dillon 10021864bc5SMatthew Dillon devfs_debug(DEVFS_DEBUG_DEBUG, "calling devfs_mount_add\n"); 101*ca8d7677SMatthew Dillon devfs_mount_add(mnt); 10221864bc5SMatthew Dillon 10321864bc5SMatthew Dillon return (0); 10421864bc5SMatthew Dillon } 10521864bc5SMatthew Dillon 10621864bc5SMatthew Dillon /* 10721864bc5SMatthew Dillon * unmount system call 10821864bc5SMatthew Dillon */ 10921864bc5SMatthew Dillon static int 11021864bc5SMatthew Dillon devfs_unmount(struct mount *mp, int mntflags) 11121864bc5SMatthew Dillon { 11221864bc5SMatthew Dillon int error = 0; 11321864bc5SMatthew Dillon int flags = 0; 11421864bc5SMatthew Dillon 11521864bc5SMatthew Dillon devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_unmount() called!\n"); 11621864bc5SMatthew Dillon 11721864bc5SMatthew Dillon if (mntflags & MNT_FORCE) 11821864bc5SMatthew Dillon flags |= FORCECLOSE; 11921864bc5SMatthew Dillon 12021864bc5SMatthew Dillon error = vflush(mp, 0, flags); 12121864bc5SMatthew Dillon 12221864bc5SMatthew Dillon if (error) 12321864bc5SMatthew Dillon return (error); 12421864bc5SMatthew Dillon 125*ca8d7677SMatthew Dillon devfs_debug(DEVFS_DEBUG_SHOW, 126*ca8d7677SMatthew Dillon "There were %d devfs_node orphans left\n", 127*ca8d7677SMatthew Dillon devfs_tracer_orphan_count(mp, 1)); 128*ca8d7677SMatthew Dillon devfs_debug(DEVFS_DEBUG_SHOW, 129*ca8d7677SMatthew Dillon "There are %d devfs_node orphans left\n", 130*ca8d7677SMatthew Dillon devfs_tracer_orphan_count(mp, 0)); 13121864bc5SMatthew Dillon devfs_mount_del(DEVFS_MNTDATA(mp)); 13221864bc5SMatthew Dillon kfree(mp->mnt_data, M_DEVFS); 133*ca8d7677SMatthew Dillon mp->mnt_data = NULL; 13421864bc5SMatthew Dillon 13521864bc5SMatthew Dillon return (0); 13621864bc5SMatthew Dillon } 13721864bc5SMatthew Dillon 13821864bc5SMatthew Dillon /* 13921864bc5SMatthew Dillon * Sets *vpp to the root procfs vnode, referenced and exclusively locked 14021864bc5SMatthew Dillon */ 14121864bc5SMatthew Dillon int 14221864bc5SMatthew Dillon devfs_root(struct mount *mp, struct vnode **vpp) 14321864bc5SMatthew Dillon { 14421864bc5SMatthew Dillon int ret; 14521864bc5SMatthew Dillon devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_root() called!\n"); 14621864bc5SMatthew Dillon lockmgr(&devfs_lock, LK_EXCLUSIVE); 14721864bc5SMatthew Dillon ret = devfs_allocv(vpp, DEVFS_MNTDATA(mp)->root_node); 14821864bc5SMatthew Dillon lockmgr(&devfs_lock, LK_RELEASE); 14921864bc5SMatthew Dillon return ret; 15021864bc5SMatthew Dillon } 15121864bc5SMatthew Dillon 15221864bc5SMatthew Dillon /* 15321864bc5SMatthew Dillon * Get file system statistics. 15421864bc5SMatthew Dillon */ 15521864bc5SMatthew Dillon static int 15621864bc5SMatthew Dillon devfs_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred) 15721864bc5SMatthew Dillon { 15821864bc5SMatthew Dillon devfs_debug(DEVFS_DEBUG_DEBUG, "(vfsops) devfs_stat() called!\n"); 15921864bc5SMatthew Dillon sbp->f_bsize = DEV_BSIZE; 16021864bc5SMatthew Dillon sbp->f_iosize = DEV_BSIZE; 16121864bc5SMatthew Dillon sbp->f_blocks = 2; /* avoid divide by zero in some df's */ 16221864bc5SMatthew Dillon sbp->f_bfree = 0; 16321864bc5SMatthew Dillon sbp->f_bavail = 0; 16421864bc5SMatthew Dillon sbp->f_files = 0; 16521864bc5SMatthew Dillon sbp->f_ffree = 0; 16621864bc5SMatthew Dillon 16721864bc5SMatthew Dillon if (sbp != &mp->mnt_stat) { 16821864bc5SMatthew Dillon sbp->f_type = mp->mnt_vfc->vfc_typenum; 16921864bc5SMatthew Dillon bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid)); 17021864bc5SMatthew Dillon bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN); 17121864bc5SMatthew Dillon } 17221864bc5SMatthew Dillon 17321864bc5SMatthew Dillon return (0); 17421864bc5SMatthew Dillon } 17521864bc5SMatthew Dillon 17621864bc5SMatthew Dillon static struct vfsops devfs_vfsops = { 17721864bc5SMatthew Dillon .vfs_mount = devfs_mount, 17821864bc5SMatthew Dillon .vfs_unmount = devfs_unmount, 17921864bc5SMatthew Dillon .vfs_root = devfs_root, 18021864bc5SMatthew Dillon .vfs_statfs = devfs_statfs, 18121864bc5SMatthew Dillon .vfs_sync = vfs_stdsync 18221864bc5SMatthew Dillon }; 18321864bc5SMatthew Dillon 18421864bc5SMatthew Dillon VFS_SET(devfs_vfsops, devfs, VFCF_SYNTHETIC); 18521864bc5SMatthew Dillon MODULE_VERSION(devfs, 1); 186