2005-01-06 18:10:42 +00:00
|
|
|
/*-
|
1997-02-10 02:22:35 +00:00
|
|
|
* Copyright (c) 1992, 1993, 1995
|
1994-05-24 10:09:53 +00:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software donated to Berkeley by
|
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94
|
|
|
|
*
|
|
|
|
* @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Null Layer
|
|
|
|
* (See null_vnops.c for a description of what this does.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2004-07-10 21:20:11 +00:00
|
|
|
#include <sys/kdb.h>
|
1997-02-12 17:47:28 +00:00
|
|
|
#include <sys/kernel.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/lock.h>
|
1997-10-12 20:26:33 +00:00
|
|
|
#include <sys/malloc.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
2001-05-23 09:42:29 +00:00
|
|
|
#include <fs/nullfs/null.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2005-10-31 15:41:29 +00:00
|
|
|
static MALLOC_DEFINE(M_NULLFSMNT, "nullfs_mount", "NULLFS mount structure");
|
1997-10-12 20:26:33 +00:00
|
|
|
|
2003-06-12 20:48:38 +00:00
|
|
|
static vfs_fhtovp_t nullfs_fhtovp;
|
|
|
|
static vfs_checkexp_t nullfs_checkexp;
|
2004-07-30 22:08:52 +00:00
|
|
|
static vfs_mount_t nullfs_mount;
|
2003-06-12 20:48:38 +00:00
|
|
|
static vfs_quotactl_t nullfs_quotactl;
|
|
|
|
static vfs_root_t nullfs_root;
|
|
|
|
static vfs_sync_t nullfs_sync;
|
|
|
|
static vfs_statfs_t nullfs_statfs;
|
|
|
|
static vfs_unmount_t nullfs_unmount;
|
|
|
|
static vfs_vget_t nullfs_vget;
|
|
|
|
static vfs_vptofh_t nullfs_vptofh;
|
|
|
|
static vfs_extattrctl_t nullfs_extattrctl;
|
1995-12-03 14:54:48 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Mount null layer
|
|
|
|
*/
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2004-07-30 22:08:52 +00:00
|
|
|
nullfs_mount(struct mount *mp, struct thread *td)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
struct vnode *lowerrootvp, *vp;
|
|
|
|
struct vnode *nullm_rootvp;
|
|
|
|
struct null_mount *xmp;
|
2002-05-23 23:07:27 +00:00
|
|
|
char *target;
|
|
|
|
int isvnunlocked = 0, len;
|
2004-07-30 22:08:52 +00:00
|
|
|
struct nameidata nd, *ndp = &nd;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_mount(mp = %p)\n", (void *)mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2004-11-09 22:21:10 +00:00
|
|
|
if (mp->mnt_flag & MNT_ROOTFS)
|
|
|
|
return (EOPNOTSUPP);
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Update is a no-op
|
|
|
|
*/
|
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
|
|
|
return (EOPNOTSUPP);
|
2001-09-12 08:38:13 +00:00
|
|
|
/* return VFS_MOUNT(MOUNTTONULLMOUNT(mp)->nullm_vfs, path, data, ndp, td);*/
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get argument
|
|
|
|
*/
|
2002-05-23 23:07:27 +00:00
|
|
|
error = vfs_getopt(mp->mnt_optnew, "target", (void **)&target, &len);
|
|
|
|
if (error || target[len - 1] != '\0')
|
|
|
|
return (EINVAL);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-04-17 11:24:57 +00:00
|
|
|
/*
|
|
|
|
* Unlock lower node to avoid deadlock.
|
|
|
|
* (XXX) VOP_ISLOCKED is needed?
|
|
|
|
*/
|
2004-12-01 23:16:38 +00:00
|
|
|
if ((mp->mnt_vnodecovered->v_op == &null_vnodeops) &&
|
1999-12-11 16:13:02 +00:00
|
|
|
VOP_ISLOCKED(mp->mnt_vnodecovered, NULL)) {
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(mp->mnt_vnodecovered, 0, td);
|
1997-04-17 11:24:57 +00:00
|
|
|
isvnunlocked = 1;
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Find lower node
|
|
|
|
*/
|
2006-02-07 11:31:32 +00:00
|
|
|
NDINIT(ndp, LOOKUP, FOLLOW|LOCKLEAF,
|
2002-05-23 23:07:27 +00:00
|
|
|
UIO_SYSSPACE, target, td);
|
1994-10-10 07:55:48 +00:00
|
|
|
error = namei(ndp);
|
1997-04-17 11:24:57 +00:00
|
|
|
/*
|
|
|
|
* Re-lock vnode.
|
|
|
|
*/
|
1999-12-11 16:13:02 +00:00
|
|
|
if (isvnunlocked && !VOP_ISLOCKED(mp->mnt_vnodecovered, NULL))
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY, td);
|
1997-04-17 11:24:57 +00:00
|
|
|
|
1994-10-10 07:55:48 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
1999-12-15 23:02:35 +00:00
|
|
|
NDFREE(ndp, NDF_ONLY_PNBUF);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sanity check on lower vnode
|
|
|
|
*/
|
|
|
|
lowerrootvp = ndp->ni_vp;
|
|
|
|
|
1997-04-17 11:24:57 +00:00
|
|
|
/*
|
|
|
|
* Check multi null mount to avoid `lock against myself' panic.
|
|
|
|
*/
|
|
|
|
if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_mount: multi null mount?\n");
|
2000-10-22 16:15:12 +00:00
|
|
|
vput(lowerrootvp);
|
1997-04-19 06:04:13 +00:00
|
|
|
return (EDEADLK);
|
1997-04-17 11:24:57 +00:00
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
|
2003-02-19 05:47:46 +00:00
|
|
|
M_NULLFSMNT, M_WAITOK); /* XXX */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Save reference to underlying FS
|
|
|
|
*/
|
|
|
|
xmp->nullm_vfs = lowerrootvp->v_mount;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save reference. Each mount also holds
|
|
|
|
* a reference on the root vnode.
|
|
|
|
*/
|
2002-06-13 21:49:09 +00:00
|
|
|
error = null_nodeget(mp, lowerrootvp, &vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Make sure the node alias worked
|
|
|
|
*/
|
|
|
|
if (error) {
|
2002-09-25 02:28:07 +00:00
|
|
|
VOP_UNLOCK(vp, 0, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
vrele(lowerrootvp);
|
1997-10-12 20:26:33 +00:00
|
|
|
free(xmp, M_NULLFSMNT); /* XXX */
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keep a held reference to the root vnode.
|
|
|
|
* It is vrele'd in nullfs_unmount.
|
|
|
|
*/
|
|
|
|
nullm_rootvp = vp;
|
2002-08-04 10:29:36 +00:00
|
|
|
nullm_rootvp->v_vflag |= VV_ROOT;
|
1994-05-24 10:09:53 +00:00
|
|
|
xmp->nullm_rootvp = nullm_rootvp;
|
2002-09-25 02:28:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unlock the node (either the lower or the alias)
|
|
|
|
*/
|
|
|
|
VOP_UNLOCK(vp, 0, td);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
|
|
|
|
mp->mnt_flag |= MNT_LOCAL;
|
2006-02-10 18:06:49 +00:00
|
|
|
mp->mnt_kern_flag |= lowerrootvp->v_mount->mnt_kern_flag & MNTK_MPSAFE;
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_data = (qaddr_t) xmp;
|
1997-02-10 02:22:35 +00:00
|
|
|
vfs_getnewfsid(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2004-12-06 20:02:13 +00:00
|
|
|
vfs_mountedfrom(mp, target);
|
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free reference to null layer
|
|
|
|
*/
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
nullfs_unmount(mp, mntflags, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
int mntflags;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2000-09-05 09:02:07 +00:00
|
|
|
void *mntdata;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
int flags = 0;
|
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_unmount: mp = %p\n", (void *)mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-02-10 02:22:35 +00:00
|
|
|
if (mntflags & MNT_FORCE)
|
1994-05-24 10:09:53 +00:00
|
|
|
flags |= FORCECLOSE;
|
|
|
|
|
2001-05-16 18:04:37 +00:00
|
|
|
/* There is 1 extra root vnode reference (nullm_rootvp). */
|
2004-07-12 08:14:09 +00:00
|
|
|
error = vflush(mp, 1, flags, td);
|
1994-10-10 07:55:48 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finally, throw away the null_mount structure
|
|
|
|
*/
|
2000-09-05 09:02:07 +00:00
|
|
|
mntdata = mp->mnt_data;
|
1994-05-24 10:09:53 +00:00
|
|
|
mp->mnt_data = 0;
|
2000-09-25 15:38:32 +00:00
|
|
|
free(mntdata, M_NULLFSMNT);
|
1994-05-24 10:09:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2005-03-24 07:36:16 +00:00
|
|
|
nullfs_root(mp, flags, vpp, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
2005-03-24 07:36:16 +00:00
|
|
|
int flags;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode **vpp;
|
2004-07-12 08:14:09 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct vnode *vp;
|
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
|
1998-07-30 17:40:45 +00:00
|
|
|
(void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
|
|
|
|
(void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Return locked reference to root.
|
|
|
|
*/
|
|
|
|
vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
|
|
|
|
VREF(vp);
|
2000-09-25 15:38:32 +00:00
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
#ifdef NULLFS_DEBUG
|
1999-12-11 16:13:02 +00:00
|
|
|
if (VOP_ISLOCKED(vp, NULL)) {
|
2004-07-10 21:20:11 +00:00
|
|
|
kdb_enter("root vnode is locked.\n");
|
1997-04-19 06:04:13 +00:00
|
|
|
vrele(vp);
|
|
|
|
return (EDEADLK);
|
2000-09-05 09:02:07 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-04-11 11:16:29 +00:00
|
|
|
vn_lock(vp, flags | LK_RETRY, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
*vpp = vp;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
nullfs_quotactl(mp, cmd, uid, arg, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
int cmd;
|
|
|
|
uid_t uid;
|
2005-12-14 00:49:52 +00:00
|
|
|
void *arg;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
nullfs_statfs(mp, sbp, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
struct statfs *sbp;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct statfs mstat;
|
|
|
|
|
2000-09-05 09:02:07 +00:00
|
|
|
NULLFSDEBUG("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
|
1998-07-30 17:40:45 +00:00
|
|
|
(void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
|
|
|
|
(void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
bzero(&mstat, sizeof(mstat));
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/* now copy across the "interesting" information and fake the rest */
|
|
|
|
sbp->f_type = mstat.f_type;
|
|
|
|
sbp->f_flags = mstat.f_flags;
|
|
|
|
sbp->f_bsize = mstat.f_bsize;
|
|
|
|
sbp->f_iosize = mstat.f_iosize;
|
|
|
|
sbp->f_blocks = mstat.f_blocks;
|
|
|
|
sbp->f_bfree = mstat.f_bfree;
|
|
|
|
sbp->f_bavail = mstat.f_bavail;
|
|
|
|
sbp->f_files = mstat.f_files;
|
|
|
|
sbp->f_ffree = mstat.f_ffree;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2005-01-11 07:36:22 +00:00
|
|
|
nullfs_sync(mp, waitfor, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
int waitfor;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* XXX - Assumes no data cached at null layer.
|
|
|
|
*/
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
2002-03-17 01:25:47 +00:00
|
|
|
nullfs_vget(mp, ino, flags, vpp)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
ino_t ino;
|
2002-03-17 01:25:47 +00:00
|
|
|
int flags;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
2000-09-25 15:38:32 +00:00
|
|
|
int error;
|
2002-03-17 01:25:47 +00:00
|
|
|
error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
|
2000-09-25 15:38:32 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2002-06-13 21:49:09 +00:00
|
|
|
return (null_nodeget(mp, *vpp, vpp));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
1999-09-11 00:46:08 +00:00
|
|
|
nullfs_fhtovp(mp, fidp, vpp)
|
1994-05-24 10:09:53 +00:00
|
|
|
struct mount *mp;
|
|
|
|
struct fid *fidp;
|
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
2000-09-25 15:38:32 +00:00
|
|
|
int error;
|
|
|
|
error = VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, vpp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2002-06-13 21:49:09 +00:00
|
|
|
return (null_nodeget(mp, *vpp, vpp));
|
1999-09-11 00:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nullfs_checkexp(mp, nam, extflagsp, credanonp)
|
|
|
|
struct mount *mp;
|
|
|
|
struct sockaddr *nam;
|
|
|
|
int *extflagsp;
|
|
|
|
struct ucred **credanonp;
|
|
|
|
{
|
|
|
|
|
|
|
|
return VFS_CHECKEXP(MOUNTTONULLMOUNT(mp)->nullm_vfs, nam,
|
|
|
|
extflagsp, credanonp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
nullfs_vptofh(vp, fhp)
|
|
|
|
struct vnode *vp;
|
|
|
|
struct fid *fhp;
|
|
|
|
{
|
2003-05-31 18:46:45 +00:00
|
|
|
struct vnode *lvp;
|
|
|
|
|
|
|
|
lvp = NULLVPTOLOWERVP(vp);
|
|
|
|
return VFS_VPTOFH(lvp, fhp);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1999-12-19 06:08:07 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
nullfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, td)
|
1999-12-19 06:08:07 +00:00
|
|
|
struct mount *mp;
|
|
|
|
int cmd;
|
o Change the API and ABI of the Extended Attribute kernel interfaces to
introduce a new argument, "namespace", rather than relying on a first-
character namespace indicator. This is in line with more recent
thinking on EA interfaces on various mailing lists, including the
posix1e, Linux acl-devel, and trustedbsd-discuss forums. Two namespaces
are defined by default, EXTATTR_NAMESPACE_SYSTEM and
EXTATTR_NAMESPACE_USER, where the primary distinction lies in the
access control model: user EAs are accessible based on the normal
MAC and DAC file/directory protections, and system attributes are
limited to kernel-originated or appropriately privileged userland
requests.
o These API changes occur at several levels: the namespace argument is
introduced in the extattr_{get,set}_file() system call interfaces,
at the vnode operation level in the vop_{get,set}extattr() interfaces,
and in the UFS extended attribute implementation. Changes are also
introduced in the VFS extattrctl() interface (system call, VFS,
and UFS implementation), where the arguments are modified to include
a namespace field, as well as modified to advoid direct access to
userspace variables from below the VFS layer (in the style of recent
changes to mount by adrian@FreeBSD.org). This required some cleanup
and bug fixing regarding VFS locks and the VFS interface, as a vnode
pointer may now be optionally submitted to the VFS_EXTATTRCTL()
call. Updated documentation for the VFS interface will be committed
shortly.
o In the near future, the auto-starting feature will be updated to
search two sub-directories to the ".attribute" directory in appropriate
file systems: "user" and "system" to locate attributes intended for
those namespaces, as the single filename is no longer sufficient
to indicate what namespace the attribute is intended for. Until this
is committed, all attributes auto-started by UFS will be placed in
the EXTATTR_NAMESPACE_SYSTEM namespace.
o The default POSIX.1e attribute names for ACLs and Capabilities have
been updated to no longer include the '$' in their filename. As such,
if you're using these features, you'll need to rename the attribute
backing files to the same names without '$' symbols in front.
o Note that these changes will require changes in userland, which will
be committed shortly. These include modifications to the extended
attribute utilities, as well as to libutil for new namespace
string conversion routines. Once the matching userland changes are
committed, a buildworld is recommended to update all the necessary
include files and verify that the kernel and userland environments
are in sync. Note: If you do not use extended attributes (most people
won't), upgrading is not imperative although since the system call
API has changed, the new userland extended attribute code will no longer
compile with old include files.
o Couple of minor cleanups while I'm there: make more code compilation
conditional on FFS_EXTATTR, which should recover a bit of space on
kernels running without EA's, as well as update copyright dates.
Obtained from: TrustedBSD Project
2001-03-15 02:54:29 +00:00
|
|
|
struct vnode *filename_vp;
|
|
|
|
int namespace;
|
2000-01-19 06:07:34 +00:00
|
|
|
const char *attrname;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1999-12-19 06:08:07 +00:00
|
|
|
{
|
o Change the API and ABI of the Extended Attribute kernel interfaces to
introduce a new argument, "namespace", rather than relying on a first-
character namespace indicator. This is in line with more recent
thinking on EA interfaces on various mailing lists, including the
posix1e, Linux acl-devel, and trustedbsd-discuss forums. Two namespaces
are defined by default, EXTATTR_NAMESPACE_SYSTEM and
EXTATTR_NAMESPACE_USER, where the primary distinction lies in the
access control model: user EAs are accessible based on the normal
MAC and DAC file/directory protections, and system attributes are
limited to kernel-originated or appropriately privileged userland
requests.
o These API changes occur at several levels: the namespace argument is
introduced in the extattr_{get,set}_file() system call interfaces,
at the vnode operation level in the vop_{get,set}extattr() interfaces,
and in the UFS extended attribute implementation. Changes are also
introduced in the VFS extattrctl() interface (system call, VFS,
and UFS implementation), where the arguments are modified to include
a namespace field, as well as modified to advoid direct access to
userspace variables from below the VFS layer (in the style of recent
changes to mount by adrian@FreeBSD.org). This required some cleanup
and bug fixing regarding VFS locks and the VFS interface, as a vnode
pointer may now be optionally submitted to the VFS_EXTATTRCTL()
call. Updated documentation for the VFS interface will be committed
shortly.
o In the near future, the auto-starting feature will be updated to
search two sub-directories to the ".attribute" directory in appropriate
file systems: "user" and "system" to locate attributes intended for
those namespaces, as the single filename is no longer sufficient
to indicate what namespace the attribute is intended for. Until this
is committed, all attributes auto-started by UFS will be placed in
the EXTATTR_NAMESPACE_SYSTEM namespace.
o The default POSIX.1e attribute names for ACLs and Capabilities have
been updated to no longer include the '$' in their filename. As such,
if you're using these features, you'll need to rename the attribute
backing files to the same names without '$' symbols in front.
o Note that these changes will require changes in userland, which will
be committed shortly. These include modifications to the extended
attribute utilities, as well as to libutil for new namespace
string conversion routines. Once the matching userland changes are
committed, a buildworld is recommended to update all the necessary
include files and verify that the kernel and userland environments
are in sync. Note: If you do not use extended attributes (most people
won't), upgrading is not imperative although since the system call
API has changed, the new userland extended attribute code will no longer
compile with old include files.
o Couple of minor cleanups while I'm there: make more code compilation
conditional on FFS_EXTATTR, which should recover a bit of space on
kernels running without EA's, as well as update copyright dates.
Obtained from: TrustedBSD Project
2001-03-15 02:54:29 +00:00
|
|
|
return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, filename_vp,
|
2001-09-12 08:38:13 +00:00
|
|
|
namespace, attrname, td);
|
1999-12-19 06:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-12-11 09:24:58 +00:00
|
|
|
static struct vfsops null_vfsops = {
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_checkexp = nullfs_checkexp,
|
|
|
|
.vfs_extattrctl = nullfs_extattrctl,
|
|
|
|
.vfs_fhtovp = nullfs_fhtovp,
|
|
|
|
.vfs_init = nullfs_init,
|
2004-07-30 22:08:52 +00:00
|
|
|
.vfs_mount = nullfs_mount,
|
2003-06-12 20:48:38 +00:00
|
|
|
.vfs_quotactl = nullfs_quotactl,
|
|
|
|
.vfs_root = nullfs_root,
|
|
|
|
.vfs_statfs = nullfs_statfs,
|
|
|
|
.vfs_sync = nullfs_sync,
|
|
|
|
.vfs_uninit = nullfs_uninit,
|
|
|
|
.vfs_unmount = nullfs_unmount,
|
|
|
|
.vfs_vget = nullfs_vget,
|
|
|
|
.vfs_vptofh = nullfs_vptofh,
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
1994-09-21 03:47:43 +00:00
|
|
|
|
2000-07-28 11:54:09 +00:00
|
|
|
VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);
|