2a3e5eeb7c
- Remove all NFS related stuff from file system specific code. - Drop the vfs_checkexp hook and generalize it in the new nfs_check_export function, thus removing redundancy from all file systems. - Move all NFS export-related stuff from kern/vfs_subr.c to the new file sys/nfs/nfs_export.c. The former was becoming large and its code is always compiled, regardless of the build options. Using the latter, the code is only compiled in when NFSSERVER is enabled. While doing this, also make some functions in nfs_subs.c conditional to NFSSERVER. - Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a path and a set of export entries. At the moment it can only clear the exports list or append entries, one by one, but it is done in a way that allows setting the whole set of entries atomically in the future (see the comment in mountd_set_exports_list or in doc/TODO). - Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so that it becomes file system agnostic. In fact, all this whole thing was done to remove a 'XXX' block from this utility! - Change the mount*, newfs and fsck* userland utilities to not deal with NFS exports initialization; done internally by the kernel when initializing the NFS support for each file system. - Implement an interface for VFS (called VFS hooks) so that several kernel subsystems can run arbitrary code upon receipt of specific VFS events. At the moment, this only provides support for unmount and is used to destroy NFS exports lists from the file systems being unmounted, though it has room for extension. Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments and advice in the development of this patch.
727 lines
18 KiB
C
727 lines
18 KiB
C
/* $NetBSD: filecore_vfsops.c,v 1.21 2005/09/23 12:10:32 jmmv Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 1994 The Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* 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. Neither the name of the University 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 REGENTS 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 REGENTS 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.
|
|
*
|
|
* filecore_vfsops.c 1.1 1998/6/26
|
|
*/
|
|
|
|
/*-
|
|
* Copyright (c) 1998 Andrew McMurry
|
|
*
|
|
* 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 University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
|
|
*
|
|
* filecore_vfsops.c 1.1 1998/6/26
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: filecore_vfsops.c,v 1.21 2005/09/23 12:10:32 jmmv Exp $");
|
|
|
|
#if defined(_KERNEL_OPT)
|
|
#include "opt_compat_netbsd.h"
|
|
#endif
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/namei.h>
|
|
#include <sys/proc.h>
|
|
#include <sys/vnode.h>
|
|
#include <miscfs/specfs/specdev.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/buf.h>
|
|
#include <sys/file.h>
|
|
#include <sys/device.h>
|
|
#include <sys/errno.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/pool.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <fs/filecorefs/filecore.h>
|
|
#include <fs/filecorefs/filecore_extern.h>
|
|
#include <fs/filecorefs/filecore_node.h>
|
|
#include <fs/filecorefs/filecore_mount.h>
|
|
|
|
MALLOC_DEFINE(M_FILECOREMNT, "filecore mount", "Filecore FS mount structures");
|
|
|
|
extern const struct vnodeopv_desc filecore_vnodeop_opv_desc;
|
|
|
|
const struct vnodeopv_desc * const filecore_vnodeopv_descs[] = {
|
|
&filecore_vnodeop_opv_desc,
|
|
NULL,
|
|
};
|
|
|
|
struct vfsops filecore_vfsops = {
|
|
MOUNT_FILECORE,
|
|
filecore_mount,
|
|
filecore_start,
|
|
filecore_unmount,
|
|
filecore_root,
|
|
filecore_quotactl,
|
|
filecore_statvfs,
|
|
filecore_sync,
|
|
filecore_vget,
|
|
filecore_fhtovp,
|
|
filecore_vptofh,
|
|
filecore_init,
|
|
filecore_reinit,
|
|
filecore_done,
|
|
NULL, /* filecore_mountroot */
|
|
(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
|
|
vfs_stdextattrctl,
|
|
filecore_vnodeopv_descs,
|
|
};
|
|
VFS_ATTACH(filecore_vfsops);
|
|
|
|
static const struct genfs_ops filecore_genfsops = {
|
|
.gop_size = genfs_size,
|
|
};
|
|
|
|
/*
|
|
* Called by vfs_mountroot when iso is going to be mounted as root.
|
|
*
|
|
* Name is updated by mount(8) after booting.
|
|
*/
|
|
|
|
static int filecore_mountfs __P((struct vnode *devvp, struct mount *mp,
|
|
struct proc *p, struct filecore_args *argp));
|
|
|
|
#if 0
|
|
int
|
|
filecore_mountroot()
|
|
{
|
|
struct mount *mp;
|
|
extern struct vnode *rootvp;
|
|
struct proc *p = curproc; /* XXX */
|
|
int error;
|
|
struct filecore_args args;
|
|
|
|
if (root_device->dv_class != DV_DISK)
|
|
return (ENODEV);
|
|
|
|
/*
|
|
* Get vnodes for swapdev and rootdev.
|
|
*/
|
|
if (bdevvp(rootdev, &rootvp))
|
|
panic("filecore_mountroot: can't setup rootvp");
|
|
|
|
if ((error = vfs_rootmountalloc(MOUNT_FILECORE, "root_device", &mp)) != 0)
|
|
return (error);
|
|
|
|
args.flags = FILECOREMNT_ROOT;
|
|
if ((error = filecore_mountfs(rootvp, mp, p, &args)) != 0) {
|
|
mp->mnt_op->vfs_refcount--;
|
|
vfs_unbusy(mp);
|
|
free(mp, M_MOUNT);
|
|
return (error);
|
|
}
|
|
simple_lock(&mountlist_slock);
|
|
CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
|
|
simple_unlock(&mountlist_slock);
|
|
(void)filecore_statvfs(mp, &mp->mnt_stat, p);
|
|
vfs_unbusy(mp);
|
|
return (0);
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* VFS Operations.
|
|
*
|
|
* mount system call
|
|
*/
|
|
int
|
|
filecore_mount(mp, path, data, ndp, p)
|
|
struct mount *mp;
|
|
const char *path;
|
|
void *data;
|
|
struct nameidata *ndp;
|
|
struct proc *p;
|
|
{
|
|
struct vnode *devvp;
|
|
struct filecore_args args;
|
|
int error;
|
|
struct filecore_mnt *fcmp = NULL;
|
|
|
|
if (mp->mnt_flag & MNT_GETARGS) {
|
|
fcmp = VFSTOFILECORE(mp);
|
|
if (fcmp == NULL)
|
|
return EIO;
|
|
args.flags = fcmp->fc_mntflags;
|
|
args.uid = fcmp->fc_uid;
|
|
args.gid = fcmp->fc_gid;
|
|
args.fspec = NULL;
|
|
return copyout(&args, data, sizeof(args));
|
|
}
|
|
error = copyin(data, &args, sizeof (struct filecore_args));
|
|
if (error)
|
|
return (error);
|
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0)
|
|
return (EROFS);
|
|
|
|
if ((mp->mnt_flag & MNT_UPDATE) && args.fspec == NULL)
|
|
return EINVAL;
|
|
|
|
/*
|
|
* Not an update, or updating the name: look up the name
|
|
* and verify that it refers to a sensible block device.
|
|
*/
|
|
NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, p);
|
|
if ((error = namei(ndp)) != 0)
|
|
return (error);
|
|
devvp = ndp->ni_vp;
|
|
|
|
if (devvp->v_type != VBLK) {
|
|
vrele(devvp);
|
|
return ENOTBLK;
|
|
}
|
|
if (bdevsw_lookup(devvp->v_rdev) == NULL) {
|
|
vrele(devvp);
|
|
return ENXIO;
|
|
}
|
|
/*
|
|
* If mount by non-root, then verify that user has necessary
|
|
* permissions on the device.
|
|
*/
|
|
if (p->p_ucred->cr_uid != 0) {
|
|
vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
|
|
error = VOP_ACCESS(devvp, VREAD, p->p_ucred, p);
|
|
VOP_UNLOCK(devvp, 0);
|
|
if (error) {
|
|
vrele(devvp);
|
|
return (error);
|
|
}
|
|
}
|
|
if ((mp->mnt_flag & MNT_UPDATE) == 0)
|
|
error = filecore_mountfs(devvp, mp, p, &args);
|
|
else {
|
|
if (devvp != fcmp->fc_devvp)
|
|
error = EINVAL; /* needs translation */
|
|
else
|
|
vrele(devvp);
|
|
}
|
|
if (error) {
|
|
vrele(devvp);
|
|
return error;
|
|
}
|
|
fcmp = VFSTOFILECORE(mp);
|
|
return set_statvfs_info(path, UIO_USERSPACE, args.fspec, UIO_USERSPACE,
|
|
mp, p);
|
|
}
|
|
|
|
/*
|
|
* Common code for mount and mountroot
|
|
*/
|
|
static int
|
|
filecore_mountfs(devvp, mp, p, argp)
|
|
struct vnode *devvp;
|
|
struct mount *mp;
|
|
struct proc *p;
|
|
struct filecore_args *argp;
|
|
{
|
|
struct filecore_mnt *fcmp = (struct filecore_mnt *)0;
|
|
struct buf *bp = NULL;
|
|
dev_t dev = devvp->v_rdev;
|
|
int error = EINVAL;
|
|
int ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
|
|
extern struct vnode *rootvp;
|
|
struct filecore_disc_record *fcdr;
|
|
unsigned map;
|
|
unsigned log2secsize;
|
|
|
|
if (!ronly)
|
|
return EROFS;
|
|
|
|
/*
|
|
* Disallow multiple mounts of the same device.
|
|
* Disallow mounting of a device that is currently in use
|
|
* (except for root, which might share swap device for miniroot).
|
|
* Flush out any old buffers remaining from a previous use.
|
|
*/
|
|
if ((error = vfs_mountedon(devvp)) != 0)
|
|
return error;
|
|
if (vcount(devvp) > 1 && devvp != rootvp)
|
|
return EBUSY;
|
|
if ((error = vinvalbuf(devvp, V_SAVE, p->p_ucred, p, 0, 0)) != 0)
|
|
return (error);
|
|
|
|
error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, p);
|
|
if (error)
|
|
return error;
|
|
|
|
/* Read the filecore boot block to check FS validity and to find the map */
|
|
error = bread(devvp, FILECORE_BOOTBLOCK_BLKN,
|
|
FILECORE_BOOTBLOCK_SIZE, NOCRED, &bp);
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("bread(%p, %x, %d, CRED, %p)=%d\n", devvp,
|
|
FILECORE_BOOTBLOCK_BLKN, FILECORE_BOOTBLOCK_SIZE,
|
|
bp, error);
|
|
#endif
|
|
if (error != 0)
|
|
goto out;
|
|
if (filecore_bbchecksum(bp->b_data) != 0) {
|
|
error = EINVAL;
|
|
goto out;
|
|
}
|
|
fcdr = (struct filecore_disc_record *)(bp->b_data+FILECORE_BB_DISCREC);
|
|
map = ((((8 << fcdr->log2secsize) - fcdr->zone_spare)
|
|
* (fcdr->nzones / 2) - 8 * FILECORE_DISCREC_SIZE)
|
|
<< fcdr->log2bpmb) >> fcdr->log2secsize;
|
|
log2secsize = fcdr->log2secsize;
|
|
bp->b_flags |= B_AGE;
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("brelse(%p) vf1\n", bp);
|
|
#endif
|
|
brelse(bp);
|
|
bp = NULL;
|
|
|
|
/* Read the bootblock in the map */
|
|
error = bread(devvp, map, 1 << log2secsize, NOCRED, &bp);
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("bread(%p, %x, %d, CRED, %p)=%d\n", devvp,
|
|
map, 1 << log2secsize, bp, error);
|
|
#endif
|
|
if (error != 0)
|
|
goto out;
|
|
fcdr = (struct filecore_disc_record *)(bp->b_data + 4);
|
|
fcmp = malloc(sizeof *fcmp, M_FILECOREMNT, M_WAITOK);
|
|
memset(fcmp, 0, sizeof *fcmp);
|
|
if (fcdr->log2bpmb > fcdr->log2secsize)
|
|
fcmp->log2bsize = fcdr->log2bpmb;
|
|
else fcmp->log2bsize = fcdr->log2secsize;
|
|
fcmp->blksize = 1 << fcmp->log2bsize;
|
|
memcpy(&fcmp->drec, fcdr, sizeof(*fcdr));
|
|
fcmp->map = map;
|
|
fcmp->idspz = ((8 << fcdr->log2secsize) - fcdr->zone_spare)
|
|
/ (fcdr->idlen + 1);
|
|
fcmp->mask = (1 << fcdr->idlen) - 1;
|
|
if (fcdr->big_flag & 1) {
|
|
fcmp->nblks = ((((u_int64_t)fcdr->disc_size_2) << 32)
|
|
+ fcdr->disc_size) / fcmp->blksize;
|
|
} else {
|
|
fcmp->nblks=fcdr->disc_size / fcmp->blksize;
|
|
}
|
|
|
|
bp->b_flags |= B_AGE;
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("brelse(%p) vf2\n", bp);
|
|
#endif
|
|
brelse(bp);
|
|
bp = NULL;
|
|
|
|
mp->mnt_data = fcmp;
|
|
mp->mnt_stat.f_fsidx.__fsid_val[0] = (long)dev;
|
|
mp->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_FILECORE);
|
|
mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
|
|
mp->mnt_stat.f_namemax = 10;
|
|
mp->mnt_flag |= MNT_LOCAL;
|
|
mp->mnt_dev_bshift = fcdr->log2secsize;
|
|
mp->mnt_fs_bshift = fcmp->log2bsize;
|
|
|
|
fcmp->fc_mountp = mp;
|
|
fcmp->fc_dev = dev;
|
|
fcmp->fc_devvp = devvp;
|
|
fcmp->fc_mntflags = argp->flags;
|
|
if (argp->flags & FILECOREMNT_USEUID) {
|
|
fcmp->fc_uid = p->p_cred->p_ruid;
|
|
fcmp->fc_gid = p->p_cred->p_rgid;
|
|
} else {
|
|
fcmp->fc_uid = argp->uid;
|
|
fcmp->fc_gid = argp->gid;
|
|
}
|
|
|
|
return 0;
|
|
out:
|
|
if (bp) {
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("brelse(%p) vf3\n", bp);
|
|
#endif
|
|
brelse(bp);
|
|
}
|
|
vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
|
|
(void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, NOCRED, p);
|
|
VOP_UNLOCK(devvp, 0);
|
|
if (fcmp) {
|
|
free(fcmp, M_FILECOREMNT);
|
|
mp->mnt_data = NULL;
|
|
}
|
|
return error;
|
|
}
|
|
|
|
/*
|
|
* Make a filesystem operational.
|
|
* Nothing to do at the moment.
|
|
*/
|
|
/* ARGSUSED */
|
|
int
|
|
filecore_start(mp, flags, p)
|
|
struct mount *mp;
|
|
int flags;
|
|
struct proc *p;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* unmount system call
|
|
*/
|
|
int
|
|
filecore_unmount(mp, mntflags, p)
|
|
struct mount *mp;
|
|
int mntflags;
|
|
struct proc *p;
|
|
{
|
|
struct filecore_mnt *fcmp;
|
|
int error, flags = 0;
|
|
|
|
if (mntflags & MNT_FORCE)
|
|
flags |= FORCECLOSE;
|
|
#if 0
|
|
mntflushbuf(mp, 0);
|
|
if (mntinvalbuf(mp))
|
|
return EBUSY;
|
|
#endif
|
|
if ((error = vflush(mp, NULLVP, flags)) != 0)
|
|
return (error);
|
|
|
|
fcmp = VFSTOFILECORE(mp);
|
|
|
|
if (fcmp->fc_devvp->v_type != VBAD)
|
|
fcmp->fc_devvp->v_specmountpoint = NULL;
|
|
vn_lock(fcmp->fc_devvp, LK_EXCLUSIVE | LK_RETRY);
|
|
error = VOP_CLOSE(fcmp->fc_devvp, FREAD, NOCRED, p);
|
|
vput(fcmp->fc_devvp);
|
|
free(fcmp, M_FILECOREMNT);
|
|
mp->mnt_data = NULL;
|
|
mp->mnt_flag &= ~MNT_LOCAL;
|
|
return (error);
|
|
}
|
|
|
|
/*
|
|
* Return root of a filesystem
|
|
*/
|
|
int
|
|
filecore_root(mp, vpp)
|
|
struct mount *mp;
|
|
struct vnode **vpp;
|
|
{
|
|
struct vnode *nvp;
|
|
int error;
|
|
|
|
if ((error = VFS_VGET(mp, FILECORE_ROOTINO, &nvp)) != 0)
|
|
return (error);
|
|
*vpp = nvp;
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Do operations associated with quotas, not supported
|
|
*/
|
|
/* ARGSUSED */
|
|
int
|
|
filecore_quotactl(mp, cmd, uid, arg, p)
|
|
struct mount *mp;
|
|
int cmd;
|
|
uid_t uid;
|
|
void *arg;
|
|
struct proc *p;
|
|
{
|
|
|
|
return (EOPNOTSUPP);
|
|
}
|
|
|
|
/*
|
|
* Get file system statistics.
|
|
*/
|
|
int
|
|
filecore_statvfs(mp, sbp, p)
|
|
struct mount *mp;
|
|
struct statvfs *sbp;
|
|
struct proc *p;
|
|
{
|
|
struct filecore_mnt *fcmp = VFSTOFILECORE(mp);
|
|
|
|
sbp->f_bsize = fcmp->blksize;
|
|
sbp->f_frsize = sbp->f_bsize; /* XXX */
|
|
sbp->f_iosize = sbp->f_bsize; /* XXX */
|
|
sbp->f_blocks = fcmp->nblks;
|
|
sbp->f_bfree = 0; /* total free blocks */
|
|
sbp->f_bavail = 0; /* blocks free for non superuser */
|
|
sbp->f_bresvd = 0; /* reserved blocks */
|
|
sbp->f_files = 0; /* total files */
|
|
sbp->f_ffree = 0; /* free file nodes for non superuser */
|
|
sbp->f_favail = 0; /* free file nodes */
|
|
sbp->f_fresvd = 0; /* reserved file nodes */
|
|
copy_statvfs_info(sbp, mp);
|
|
return 0;
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
int
|
|
filecore_sync(mp, waitfor, cred, p)
|
|
struct mount *mp;
|
|
int waitfor;
|
|
struct ucred *cred;
|
|
struct proc *p;
|
|
{
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* File handle to vnode
|
|
*
|
|
* Have to be really careful about stale file handles:
|
|
* - check that the inode number is in range
|
|
* - call iget() to get the locked inode
|
|
* - check for an unallocated inode (i_mode == 0)
|
|
* - check that the generation number matches
|
|
*/
|
|
|
|
struct ifid {
|
|
ushort ifid_len;
|
|
ushort ifid_pad;
|
|
u_int32_t ifid_ino;
|
|
};
|
|
|
|
/* ARGSUSED */
|
|
int
|
|
filecore_fhtovp(mp, fhp, vpp)
|
|
struct mount *mp;
|
|
struct fid *fhp;
|
|
struct vnode **vpp;
|
|
{
|
|
struct ifid *ifhp = (struct ifid *)fhp;
|
|
struct vnode *nvp;
|
|
struct filecore_node *ip;
|
|
int error;
|
|
|
|
if ((error = VFS_VGET(mp, ifhp->ifid_ino, &nvp)) != 0) {
|
|
*vpp = NULLVP;
|
|
return (error);
|
|
}
|
|
ip = VTOI(nvp);
|
|
if (filecore_staleinode(ip)) {
|
|
vput(nvp);
|
|
*vpp = NULLVP;
|
|
return (ESTALE);
|
|
}
|
|
*vpp = nvp;
|
|
return (0);
|
|
}
|
|
|
|
/* This looks complicated. Look at other vgets as well as the iso9660 one.
|
|
*
|
|
* The filecore inode number is made up of 1 byte directory entry index and
|
|
* 3 bytes of the internal disc address of the directory. On a read-only
|
|
* filesystem this is unique. For a read-write version we may not be able to
|
|
* do vget, see msdosfs.
|
|
*/
|
|
|
|
int
|
|
filecore_vget(mp, ino, vpp)
|
|
struct mount *mp;
|
|
ino_t ino;
|
|
struct vnode **vpp;
|
|
{
|
|
struct filecore_mnt *fcmp;
|
|
struct filecore_node *ip;
|
|
struct buf *bp;
|
|
struct vnode *vp;
|
|
dev_t dev;
|
|
int error;
|
|
|
|
fcmp = VFSTOFILECORE(mp);
|
|
dev = fcmp->fc_dev;
|
|
if ((*vpp = filecore_ihashget(dev, ino)) != NULLVP)
|
|
return (0);
|
|
|
|
/* Allocate a new vnode/filecore_node. */
|
|
if ((error = getnewvnode(VT_FILECORE, mp, filecore_vnodeop_p, &vp))
|
|
!= 0) {
|
|
*vpp = NULLVP;
|
|
return (error);
|
|
}
|
|
ip = pool_get(&filecore_node_pool, PR_WAITOK);
|
|
memset(ip, 0, sizeof(struct filecore_node));
|
|
vp->v_data = ip;
|
|
ip->i_vnode = vp;
|
|
ip->i_dev = dev;
|
|
ip->i_number = ino;
|
|
ip->i_block = -1;
|
|
ip->i_parent = -2;
|
|
|
|
/*
|
|
* Put it onto its hash chain and lock it so that other requests for
|
|
* this inode will block if they arrive while we are sleeping waiting
|
|
* for old data structures to be purged or for the contents of the
|
|
* disk portion of this inode to be read.
|
|
*/
|
|
filecore_ihashins(ip);
|
|
|
|
if (ino == FILECORE_ROOTINO) {
|
|
/* Here we need to construct a root directory inode */
|
|
memcpy(ip->i_dirent.name, "root", 4);
|
|
ip->i_dirent.load = 0;
|
|
ip->i_dirent.exec = 0;
|
|
ip->i_dirent.len = FILECORE_DIR_SIZE;
|
|
ip->i_dirent.addr = fcmp->drec.root;
|
|
ip->i_dirent.attr = FILECORE_ATTR_DIR | FILECORE_ATTR_READ;
|
|
|
|
} else {
|
|
/* Read in Data from Directory Entry */
|
|
if ((error = filecore_bread(fcmp, ino & FILECORE_INO_MASK,
|
|
FILECORE_DIR_SIZE, NOCRED, &bp)) != 0) {
|
|
vput(vp);
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("brelse(%p) vf4\n", bp);
|
|
#endif
|
|
brelse(bp);
|
|
*vpp = NULL;
|
|
return (error);
|
|
}
|
|
|
|
memcpy(&ip->i_dirent,
|
|
fcdirentry(bp->b_data, ino >> FILECORE_INO_INDEX),
|
|
sizeof(struct filecore_direntry));
|
|
#ifdef FILECORE_DEBUG_BR
|
|
printf("brelse(%p) vf5\n", bp);
|
|
#endif
|
|
brelse(bp);
|
|
}
|
|
|
|
ip->i_mnt = fcmp;
|
|
ip->i_devvp = fcmp->fc_devvp;
|
|
ip->i_diroff = 0;
|
|
VREF(ip->i_devvp);
|
|
|
|
/*
|
|
* Setup type
|
|
*/
|
|
vp->v_type = VREG;
|
|
if (ip->i_dirent.attr & FILECORE_ATTR_DIR)
|
|
vp->v_type = VDIR;
|
|
|
|
/*
|
|
* Initialize the associated vnode
|
|
*/
|
|
switch (vp->v_type) {
|
|
case VFIFO:
|
|
case VCHR:
|
|
case VBLK:
|
|
/*
|
|
* Devices not supported.
|
|
*/
|
|
vput(vp);
|
|
return (EOPNOTSUPP);
|
|
case VLNK:
|
|
case VNON:
|
|
case VSOCK:
|
|
case VDIR:
|
|
case VBAD:
|
|
case VREG:
|
|
break;
|
|
}
|
|
|
|
if (ino == FILECORE_ROOTINO)
|
|
vp->v_flag |= VROOT;
|
|
|
|
/*
|
|
* XXX need generation number?
|
|
*/
|
|
|
|
genfs_node_init(vp, &filecore_genfsops);
|
|
vp->v_size = ip->i_size;
|
|
*vpp = vp;
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Vnode pointer to File handle
|
|
*/
|
|
/* ARGSUSED */
|
|
int
|
|
filecore_vptofh(vp, fhp)
|
|
struct vnode *vp;
|
|
struct fid *fhp;
|
|
{
|
|
struct filecore_node *ip = VTOI(vp);
|
|
struct ifid *ifhp;
|
|
|
|
ifhp = (struct ifid *)fhp;
|
|
ifhp->ifid_len = sizeof(struct ifid);
|
|
ifhp->ifid_ino = ip->i_number;
|
|
return 0;
|
|
}
|
|
|
|
SYSCTL_SETUP(sysctl_vfs_filecore_setup, "sysctl vfs.filecore subtree setup")
|
|
{
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
CTLFLAG_PERMANENT,
|
|
CTLTYPE_NODE, "vfs", NULL,
|
|
NULL, 0, NULL, 0,
|
|
CTL_VFS, CTL_EOL);
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
CTLFLAG_PERMANENT,
|
|
CTLTYPE_NODE, "filecore",
|
|
SYSCTL_DESCR("Acorn FILECORE file system"),
|
|
NULL, 0, NULL, 0,
|
|
CTL_VFS, 19, CTL_EOL);
|
|
/*
|
|
* XXX the "19" above could be dynamic, thereby eliminating
|
|
* one more instance of the "number to vfs" mapping problem,
|
|
* but "19" is the order as taken from sys/mount.h
|
|
*/
|
|
}
|