/* $NetBSD: sysvbfs_vfsops.c,v 1.4 2006/05/15 11:16:16 yamt Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by UCHIYAMA Yasushi. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the NetBSD * Foundation, Inc. and its contributors. * 4. Neither the name of The NetBSD Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: sysvbfs_vfsops.c,v 1.4 2006/05/15 11:16:16 yamt Exp $"); #include #include #include #include #include #include #include #include #include #include #include /* v-node */ #include #include /* devsw */ #include #include /* external interface */ #include /* internal interface */ #ifdef SYSVBFS_VNOPS_DEBUG #define DPRINTF(fmt, args...) printf(fmt, ##args) #else #define DPRINTF(arg...) ((void)0) #endif MALLOC_DEFINE(M_SYSVBFS_VFS, "sysvbfs vfs", "sysvbfs vfs structures"); POOL_INIT(sysvbfs_node_pool, sizeof(struct sysvbfs_node), 0, 0, 0, "sysvbfs_node_pool", &pool_allocator_nointr); int sysvbfs_mountfs(struct vnode *, struct mount *, struct lwp *); int sysvbfs_mount(struct mount *mp, const char *path, void *data, struct nameidata *ndp, struct lwp *l) { struct sysvbfs_args args; struct sysvbfs_mount *bmp = NULL; struct vnode *devvp = NULL; struct proc *p = l->l_proc; int error; boolean_t update; DPRINTF("%s: mnt_flag=%x\n", __FUNCTION__, mp->mnt_flag); if (mp->mnt_flag & MNT_GETARGS) { if ((bmp = (void *)mp->mnt_data) == NULL) return EIO; args.fspec = NULL; return copyout(&args, data, sizeof(args)); } if ((error = copyin(data, &args, sizeof(args))) != 0) return error; DPRINTF("%s: args.fspec=%s\n", __FUNCTION__, args.fspec); update = mp->mnt_flag & MNT_UPDATE; if (args.fspec == NULL) { /* nothing to do. */ return EINVAL; } if (args.fspec != NULL) { /* Look up the name and verify that it's sane. */ NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, l); if ((error = namei(ndp)) != 0) return (error); devvp = ndp->ni_vp; if (!update) { /* * Be sure this is a valid block device */ if (devvp->v_type != VBLK) error = ENOTBLK; else if (bdevsw_lookup(devvp->v_specinfo->si_rdev) == NULL) error = ENXIO; } else { /* * Be sure we're still naming the same device * used for our initial mount */ if (devvp != bmp->devvp) error = EINVAL; } } /* * If mount by non-root, then verify that user has necessary * permissions on the device. */ if (error == 0 && kauth_cred_geteuid(p->p_cred) != 0) { int accessmode = VREAD; if (update ? (mp->mnt_iflag & IMNT_WANTRDWR) != 0 : (mp->mnt_flag & MNT_RDONLY) == 0) accessmode |= VWRITE; vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY); error = VOP_ACCESS(devvp, accessmode, p->p_cred, l); VOP_UNLOCK(devvp, 0); } if (error) { vrele(devvp); return error; } if (!update) { if ((error = sysvbfs_mountfs(devvp, mp, l)) != 0) { vrele(devvp); return error; } } else if (mp->mnt_flag & MNT_RDONLY) { /* XXX: r/w -> read only */ } return set_statvfs_info(path, UIO_USERSPACE, args.fspec, UIO_USERSPACE, mp, l); } int sysvbfs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l) { kauth_cred_t cred = l->l_proc->p_cred; struct sysvbfs_mount *bmp; struct partinfo dpart; int error; if ((error = vfs_mountedon(devvp)) != 0) return error; /* Already mounted */ if (vcount(devvp) > 1) return EBUSY; /* Opened by other */ vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY); error = vinvalbuf(devvp, V_SAVE, cred, l, 0, 0); VOP_UNLOCK(devvp, 0); if (error) return error; /* Open block device */ if ((error = VOP_OPEN(devvp, FREAD, NOCRED, l)) != 0) return error; /* Get partition information */ if ((error = VOP_IOCTL(devvp, DIOCGPART, &dpart, FREAD, cred, l)) != 0) return error; bmp = malloc(sizeof(struct sysvbfs_mount), M_SYSVBFS_VFS, M_WAITOK); if (bmp == NULL) return ENOMEM; bmp->devvp = devvp; bmp->mountp = mp; if ((error = sysvbfs_bfs_init(&bmp->bfs, devvp)) != 0) { free(bmp, M_SYSVBFS_VFS); return error; } LIST_INIT(&bmp->bnode_head); mp->mnt_data = bmp; mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)devvp->v_rdev; mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_SYSVBFS); mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0]; mp->mnt_flag |= MNT_LOCAL; mp->mnt_dev_bshift = BFS_BSIZE; mp->mnt_fs_bshift = BFS_BSHIFT; DPRINTF("fstype=%d dtype=%d bsize=%d\n", dpart.part->p_fstype, dpart.disklab->d_type, dpart.disklab->d_secsize); return 0; } int sysvbfs_start(struct mount *mp, int flags, struct lwp *l) { DPRINTF("%s:\n", __FUNCTION__); /* Nothing to do. */ return 0; } int sysvbfs_unmount(struct mount *mp, int mntflags, struct lwp *l) { struct sysvbfs_mount *bmp = (void *)mp->mnt_data; int error; DPRINTF("%s: %p\n", __FUNCTION__, bmp); if ((error = vflush(mp, NULLVP, mntflags & MNT_FORCE ? FORCECLOSE : 0)) != 0) return error; vn_lock(bmp->devvp, LK_EXCLUSIVE | LK_RETRY); error = VOP_CLOSE(bmp->devvp, FREAD, NOCRED, l); vput(bmp->devvp); sysvbfs_bfs_fini(bmp->bfs); free(bmp, M_SYSVBFS_VFS); mp->mnt_data = NULL; mp->mnt_flag &= ~MNT_LOCAL; return 0; } int sysvbfs_root(struct mount *mp, struct vnode **vpp) { struct vnode *vp; int error; DPRINTF("%s:\n", __FUNCTION__); if ((error = VFS_VGET(mp, BFS_ROOT_INODE, &vp)) != 0) return error; *vpp = vp; return 0; } int sysvbfs_quotactl(struct mount *mp, int cmd, uid_t uid, void *arg, struct lwp *l) { DPRINTF("%s:\n", __FUNCTION__); /* Don't support. */ return 0; } int sysvbfs_statvfs(struct mount *mp, struct statvfs *f, struct lwp *l) { struct sysvbfs_mount *bmp = mp->mnt_data; struct bfs *bfs = bmp->bfs; int free_block; size_t data_block; data_block = (bfs->data_end - bfs->data_start) >> BFS_BSHIFT; if (bfs_inode_alloc(bfs, 0, 0, &free_block) != 0) free_block = 0; else free_block = (bfs->data_end >> BFS_BSHIFT) - free_block; DPRINTF("%s: %d %d %d\n", __FUNCTION__, bfs->data_start, bfs->data_end, free_block); f->f_bsize = BFS_BSIZE; f->f_frsize = BFS_BSIZE; f->f_iosize = BFS_BSIZE; f->f_blocks = data_block; f->f_bfree = free_block; f->f_bavail = f->f_bfree; f->f_bresvd = 0; f->f_files = bfs->n_inode; f->f_ffree = bfs->max_inode - f->f_files; f->f_favail = f->f_ffree; f->f_fresvd = 0; copy_statvfs_info(f, mp); return 0; } int sysvbfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred, struct lwp *l) { struct sysvbfs_mount *bmp = mp->mnt_data; struct sysvbfs_node *bnode; struct vnode *v; int err, error; DPRINTF("%s:\n", __FUNCTION__); error = 0; simple_lock(&mntvnode_slock); for (bnode = LIST_FIRST(&bmp->bnode_head); bnode != NULL; bnode = LIST_NEXT(bnode, link)) { simple_unlock(&mntvnode_slock); v = bnode->vnode; err = vget(v, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK); if (err == 0) { err = VOP_FSYNC(v, cred, FSYNC_WAIT, 0, 0, l); vput(v); } if (err != 0) error = err; simple_lock(&mntvnode_slock); } simple_unlock(&mntvnode_slock); return error; } int sysvbfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp) { struct sysvbfs_mount *bmp = mp->mnt_data; struct bfs *bfs = bmp->bfs; struct vnode *vp; struct sysvbfs_node *bnode; struct bfs_inode *inode; int error; DPRINTF("%s: i-node=%d\n", __FUNCTION__, ino); /* Lookup requested i-node */ if (!bfs_inode_lookup(bfs, ino, &inode)) { DPRINTF("bfs_inode_lookup failed.\n"); return ENOENT; } for (bnode = LIST_FIRST(&bmp->bnode_head); bnode != NULL; bnode = LIST_NEXT(bnode, link)) { if (bnode->inode->number == ino) { *vpp = bnode->vnode; } } /* Allocate v-node. */ if ((error = getnewvnode(VT_SYSVBFS, mp, sysvbfs_vnodeop_p, &vp)) != 0) { DPRINTF("%s: getnewvnode error.\n", __FUNCTION__); return error; } /* Lock vnode here */ vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); /* Allocate i-node */ vp->v_data = pool_get(&sysvbfs_node_pool, PR_WAITOK); memset(vp->v_data, 0, sizeof(struct sysvbfs_node)); bnode = vp->v_data; simple_lock(&mntvnode_slock); LIST_INSERT_HEAD(&bmp->bnode_head, bnode, link); simple_unlock(&mntvnode_slock); bnode->vnode = vp; bnode->bmp = bmp; bnode->inode = inode; bnode->lockf = NULL; /* advlock */ if (ino == BFS_ROOT_INODE) { /* BFS is flat filesystem */ vp->v_type = VDIR; vp->v_flag |= VROOT; } else { vp->v_type = VREG; } vp->v_size = bfs_file_size(inode); genfs_node_init(vp, &sysvbfs_genfsops); uvm_vnp_setsize(vp, vp->v_size); *vpp = vp; return 0; } int sysvbfs_fhtovp(struct mount *mp, struct fid *fid, struct vnode **vpp) { DPRINTF("%s:\n", __FUNCTION__); /* notyet */ return EOPNOTSUPP; } int sysvbfs_vptofh(struct vnode *vpp, struct fid *fid) { DPRINTF("%s:\n", __FUNCTION__); /* notyet */ return EOPNOTSUPP; } void sysvbfs_init(void) { /* Nothing to do. */ DPRINTF("%s:\n", __FUNCTION__); } void sysvbfs_reinit(void) { /* Nothing to do. */ DPRINTF("%s:\n", __FUNCTION__); } void sysvbfs_done(void) { DPRINTF("%s:\n", __FUNCTION__); pool_destroy(&sysvbfs_node_pool); } int sysvbfs_gop_alloc(struct vnode *vp, off_t off, off_t len, int flags, kauth_cred_t cred) { return 0; }