1997-10-10 06:01:05 +04:00
|
|
|
/* $NetBSD: union_vnops.c,v 1.36 1997/10/10 02:01:08 fvdl Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993, 1994 The Regents of the University of California.
|
|
|
|
* Copyright (c) 1992, 1993, 1994 Jan-Simon Pendry.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed 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.
|
|
|
|
* 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.
|
|
|
|
*
|
1994-12-14 19:30:40 +03:00
|
|
|
* @(#)union_vnops.c 8.22 (Berkeley) 12/10/94
|
1994-06-08 15:33:09 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/time.h>
|
1994-12-14 19:30:40 +03:00
|
|
|
#include <sys/stat.h>
|
1994-06-08 15:33:09 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <miscfs/union/union.h>
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
/*
|
|
|
|
* Global vfs data structures
|
|
|
|
*/
|
|
|
|
|
1996-02-13 16:12:48 +03:00
|
|
|
int union_lookup __P((void *));
|
|
|
|
int union_create __P((void *));
|
|
|
|
int union_whiteout __P((void *));
|
|
|
|
int union_mknod __P((void *));
|
|
|
|
int union_open __P((void *));
|
|
|
|
int union_close __P((void *));
|
|
|
|
int union_access __P((void *));
|
|
|
|
int union_getattr __P((void *));
|
|
|
|
int union_setattr __P((void *));
|
|
|
|
int union_read __P((void *));
|
|
|
|
int union_write __P((void *));
|
|
|
|
int union_lease __P((void *));
|
|
|
|
int union_ioctl __P((void *));
|
1996-09-07 16:40:22 +04:00
|
|
|
int union_poll __P((void *));
|
1996-02-13 16:12:48 +03:00
|
|
|
int union_mmap __P((void *));
|
|
|
|
int union_fsync __P((void *));
|
|
|
|
int union_seek __P((void *));
|
|
|
|
int union_remove __P((void *));
|
|
|
|
int union_link __P((void *));
|
|
|
|
int union_rename __P((void *));
|
|
|
|
int union_mkdir __P((void *));
|
|
|
|
int union_rmdir __P((void *));
|
|
|
|
int union_symlink __P((void *));
|
|
|
|
int union_readdir __P((void *));
|
|
|
|
int union_readlink __P((void *));
|
|
|
|
int union_abortop __P((void *));
|
|
|
|
int union_inactive __P((void *));
|
|
|
|
int union_reclaim __P((void *));
|
|
|
|
int union_lock __P((void *));
|
|
|
|
int union_unlock __P((void *));
|
|
|
|
int union_bmap __P((void *));
|
|
|
|
int union_print __P((void *));
|
|
|
|
int union_islocked __P((void *));
|
|
|
|
int union_pathconf __P((void *));
|
|
|
|
int union_advlock __P((void *));
|
|
|
|
int union_strategy __P((void *));
|
1996-02-10 01:39:56 +03:00
|
|
|
|
|
|
|
int (**union_vnodeop_p) __P((void *));
|
|
|
|
struct vnodeopv_entry_desc union_vnodeop_entries[] = {
|
|
|
|
{ &vop_default_desc, vn_default_error },
|
|
|
|
{ &vop_lookup_desc, union_lookup }, /* lookup */
|
|
|
|
{ &vop_create_desc, union_create }, /* create */
|
|
|
|
{ &vop_whiteout_desc, union_whiteout }, /* whiteout */
|
|
|
|
{ &vop_mknod_desc, union_mknod }, /* mknod */
|
|
|
|
{ &vop_open_desc, union_open }, /* open */
|
|
|
|
{ &vop_close_desc, union_close }, /* close */
|
|
|
|
{ &vop_access_desc, union_access }, /* access */
|
|
|
|
{ &vop_getattr_desc, union_getattr }, /* getattr */
|
|
|
|
{ &vop_setattr_desc, union_setattr }, /* setattr */
|
|
|
|
{ &vop_read_desc, union_read }, /* read */
|
|
|
|
{ &vop_write_desc, union_write }, /* write */
|
|
|
|
{ &vop_lease_desc, union_lease }, /* lease */
|
|
|
|
{ &vop_ioctl_desc, union_ioctl }, /* ioctl */
|
1996-09-07 16:40:22 +04:00
|
|
|
{ &vop_poll_desc, union_poll }, /* poll */
|
1996-02-10 01:39:56 +03:00
|
|
|
{ &vop_mmap_desc, union_mmap }, /* mmap */
|
|
|
|
{ &vop_fsync_desc, union_fsync }, /* fsync */
|
|
|
|
{ &vop_seek_desc, union_seek }, /* seek */
|
|
|
|
{ &vop_remove_desc, union_remove }, /* remove */
|
|
|
|
{ &vop_link_desc, union_link }, /* link */
|
|
|
|
{ &vop_rename_desc, union_rename }, /* rename */
|
|
|
|
{ &vop_mkdir_desc, union_mkdir }, /* mkdir */
|
|
|
|
{ &vop_rmdir_desc, union_rmdir }, /* rmdir */
|
|
|
|
{ &vop_symlink_desc, union_symlink }, /* symlink */
|
|
|
|
{ &vop_readdir_desc, union_readdir }, /* readdir */
|
|
|
|
{ &vop_readlink_desc, union_readlink }, /* readlink */
|
|
|
|
{ &vop_abortop_desc, union_abortop }, /* abortop */
|
|
|
|
{ &vop_inactive_desc, union_inactive }, /* inactive */
|
|
|
|
{ &vop_reclaim_desc, union_reclaim }, /* reclaim */
|
|
|
|
{ &vop_lock_desc, union_lock }, /* lock */
|
|
|
|
{ &vop_unlock_desc, union_unlock }, /* unlock */
|
|
|
|
{ &vop_bmap_desc, union_bmap }, /* bmap */
|
|
|
|
{ &vop_strategy_desc, union_strategy }, /* strategy */
|
|
|
|
{ &vop_print_desc, union_print }, /* print */
|
|
|
|
{ &vop_islocked_desc, union_islocked }, /* islocked */
|
|
|
|
{ &vop_pathconf_desc, union_pathconf }, /* pathconf */
|
|
|
|
{ &vop_advlock_desc, union_advlock }, /* advlock */
|
|
|
|
#ifdef notdef
|
|
|
|
{ &vop_blkatoff_desc, union_blkatoff }, /* blkatoff */
|
|
|
|
{ &vop_valloc_desc, union_valloc }, /* valloc */
|
|
|
|
{ &vop_vfree_desc, union_vfree }, /* vfree */
|
|
|
|
{ &vop_truncate_desc, union_truncate }, /* truncate */
|
|
|
|
{ &vop_update_desc, union_update }, /* update */
|
|
|
|
{ &vop_bwrite_desc, union_bwrite }, /* bwrite */
|
|
|
|
#endif
|
|
|
|
{ (struct vnodeop_desc*)NULL, (int(*) __P((void *)))NULL }
|
|
|
|
};
|
|
|
|
struct vnodeopv_desc union_vnodeop_opv_desc =
|
|
|
|
{ &union_vnodeop_p, union_vnodeop_entries };
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
#define FIXUP(un) { \
|
|
|
|
if (((un)->un_flags & UN_ULOCK) == 0) { \
|
|
|
|
union_fixup(un); \
|
|
|
|
} \
|
|
|
|
}
|
1996-02-10 01:39:56 +03:00
|
|
|
static void union_fixup __P((struct union_node *));
|
|
|
|
static int union_lookup1 __P((struct vnode *, struct vnode **,
|
|
|
|
struct vnode **, struct componentname *));
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
union_fixup(un)
|
|
|
|
struct union_node *un;
|
|
|
|
{
|
|
|
|
|
|
|
|
VOP_LOCK(un->un_uppervp);
|
|
|
|
un->un_flags |= UN_ULOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1994-06-16 03:07:54 +04:00
|
|
|
union_lookup1(udvp, dvpp, vpp, cnp)
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *udvp;
|
1994-06-16 03:07:54 +04:00
|
|
|
struct vnode **dvpp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode **vpp;
|
|
|
|
struct componentname *cnp;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct vnode *tdvp;
|
1994-06-16 03:07:54 +04:00
|
|
|
struct vnode *dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct mount *mp;
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
dvp = *dvpp;
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* If stepping up the directory tree, check for going
|
|
|
|
* back across the mount point, in which case do what
|
|
|
|
* lookup would do by stepping back down the mount
|
|
|
|
* hierarchy.
|
|
|
|
*/
|
|
|
|
if (cnp->cn_flags & ISDOTDOT) {
|
1994-06-16 03:07:54 +04:00
|
|
|
while ((dvp != udvp) && (dvp->v_flag & VROOT)) {
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* Don't do the NOCROSSMOUNT check
|
|
|
|
* at this level. By definition,
|
|
|
|
* union fs deals with namespaces, not
|
|
|
|
* filesystems.
|
|
|
|
*/
|
|
|
|
tdvp = dvp;
|
1994-06-16 03:07:54 +04:00
|
|
|
*dvpp = dvp = dvp->v_mount->mnt_vnodecovered;
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(tdvp);
|
|
|
|
VREF(dvp);
|
|
|
|
VOP_LOCK(dvp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
error = VOP_LOOKUP(dvp, &tdvp, cnp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The parent directory will have been unlocked, unless lookup
|
|
|
|
* found the last component. In which case, re-lock the node
|
|
|
|
* here to allow it to be unlocked again (phew) in union_lookup.
|
|
|
|
*/
|
|
|
|
if (dvp != tdvp && !(cnp->cn_flags & ISLASTCN))
|
|
|
|
VOP_LOCK(dvp);
|
|
|
|
|
|
|
|
dvp = tdvp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lastly check if the current node is a mount point in
|
|
|
|
* which case walk up the mount hierarchy making sure not to
|
|
|
|
* bump into the root of the mount tree (ie. dvp != udvp).
|
|
|
|
*/
|
|
|
|
while (dvp != udvp && (dvp->v_type == VDIR) &&
|
|
|
|
(mp = dvp->v_mountedhere)) {
|
|
|
|
|
|
|
|
if (mp->mnt_flag & MNT_MLOCK) {
|
|
|
|
mp->mnt_flag |= MNT_MWAIT;
|
|
|
|
sleep((caddr_t) mp, PVFS);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
if ((error = VFS_ROOT(mp, &tdvp)) != 0) {
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(dvp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
vput(dvp);
|
|
|
|
dvp = tdvp;
|
|
|
|
}
|
|
|
|
|
|
|
|
*vpp = dvp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_lookup(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_lookup_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
int uerror, lerror;
|
|
|
|
struct vnode *uppervp, *lowervp;
|
|
|
|
struct vnode *upperdvp, *lowerdvp;
|
|
|
|
struct vnode *dvp = ap->a_dvp;
|
|
|
|
struct union_node *dun = VTOUNION(dvp);
|
|
|
|
struct componentname *cnp = ap->a_cnp;
|
|
|
|
int lockparent = cnp->cn_flags & LOCKPARENT;
|
|
|
|
struct union_mount *um = MOUNTTOUNIONMOUNT(dvp->v_mount);
|
1996-02-10 01:39:56 +03:00
|
|
|
struct ucred *saved_cred = NULL;
|
1994-12-14 19:30:40 +03:00
|
|
|
int iswhiteout;
|
|
|
|
struct vattr va;
|
|
|
|
|
|
|
|
#ifdef notyet
|
|
|
|
if (cnp->cn_namelen == 3 &&
|
|
|
|
cnp->cn_nameptr[2] == '.' &&
|
|
|
|
cnp->cn_nameptr[1] == '.' &&
|
|
|
|
cnp->cn_nameptr[0] == '.') {
|
|
|
|
dvp = *ap->a_vpp = LOWERVP(ap->a_dvp);
|
|
|
|
if (dvp == NULLVP)
|
|
|
|
return (ENOENT);
|
|
|
|
VREF(dvp);
|
|
|
|
VOP_LOCK(dvp);
|
|
|
|
if (!lockparent || !(cnp->cn_flags & ISLASTCN))
|
|
|
|
VOP_UNLOCK(ap->a_dvp);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
cnp->cn_flags |= LOCKPARENT;
|
|
|
|
|
|
|
|
upperdvp = dun->un_uppervp;
|
|
|
|
lowerdvp = dun->un_lowervp;
|
|
|
|
uppervp = NULLVP;
|
|
|
|
lowervp = NULLVP;
|
1994-12-14 19:30:40 +03:00
|
|
|
iswhiteout = 0;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* do the lookup in the upper level.
|
|
|
|
* if that level comsumes additional pathnames,
|
|
|
|
* then assume that something special is going
|
|
|
|
* on and just return that vnode.
|
|
|
|
*/
|
1994-06-16 03:07:54 +04:00
|
|
|
if (upperdvp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
FIXUP(dun);
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* If we're doing `..' in the underlying filesystem,
|
|
|
|
* we must drop our lock on the union node before
|
|
|
|
* going up the tree in the lower file system--if we block
|
|
|
|
* on the lowervp lock, and that's held by someone else
|
|
|
|
* coming down the tree and who's waiting for our lock,
|
|
|
|
* we would be hosed.
|
|
|
|
*/
|
|
|
|
if (cnp->cn_flags & ISDOTDOT) {
|
|
|
|
/* retain lock on underlying VP: */
|
|
|
|
dun->un_flags |= UN_KLOCK;
|
|
|
|
VOP_UNLOCK(dvp);
|
|
|
|
}
|
1994-06-16 03:07:54 +04:00
|
|
|
uerror = union_lookup1(um->um_uppervp, &upperdvp,
|
1996-05-11 02:57:49 +04:00
|
|
|
&uppervp, cnp);
|
|
|
|
if (cnp->cn_flags & ISDOTDOT) {
|
|
|
|
if (dun->un_uppervp == upperdvp) {
|
|
|
|
/*
|
|
|
|
* we got the underlying bugger back locked...
|
|
|
|
* now take back the union node lock. Since we
|
|
|
|
* hold the uppervp lock, we can diddle union
|
|
|
|
* locking flags at will. :)
|
|
|
|
*/
|
|
|
|
dun->un_flags |= UN_ULOCK;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* if upperdvp got swapped out, it means we did
|
|
|
|
* some mount point magic, and we do not have
|
|
|
|
* dun->un_uppervp locked currently--so we get it
|
|
|
|
* locked here (don't set the UN_ULOCK flag).
|
|
|
|
*/
|
|
|
|
VOP_LOCK(dvp);
|
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*if (uppervp == upperdvp)
|
1996-05-11 02:57:49 +04:00
|
|
|
dun->un_flags |= UN_KLOCK;*/
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
if (cnp->cn_consume != 0) {
|
|
|
|
*ap->a_vpp = uppervp;
|
|
|
|
if (!lockparent)
|
|
|
|
cnp->cn_flags &= ~LOCKPARENT;
|
|
|
|
return (uerror);
|
|
|
|
}
|
1994-12-14 19:30:40 +03:00
|
|
|
if (uerror == ENOENT || uerror == EJUSTRETURN) {
|
|
|
|
if (cnp->cn_flags & ISWHITEOUT) {
|
|
|
|
iswhiteout = 1;
|
|
|
|
} else if (lowerdvp != NULLVP) {
|
|
|
|
lerror = VOP_GETATTR(upperdvp, &va,
|
1996-05-11 02:57:49 +04:00
|
|
|
cnp->cn_cred,
|
|
|
|
cnp->cn_proc);
|
1994-12-14 19:30:40 +03:00
|
|
|
if (lerror == 0 && (va.va_flags & OPAQUE))
|
|
|
|
iswhiteout = 1;
|
|
|
|
}
|
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
} else {
|
|
|
|
uerror = ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in a similar way to the upper layer, do the lookup
|
|
|
|
* in the lower layer. this time, if there is some
|
|
|
|
* component magic going on, then vput whatever we got
|
|
|
|
* back from the upper layer and return the lower vnode
|
|
|
|
* instead.
|
|
|
|
*/
|
1994-12-14 19:30:40 +03:00
|
|
|
if (lowerdvp != NULLVP && !iswhiteout) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int nameiop;
|
|
|
|
|
|
|
|
VOP_LOCK(lowerdvp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only do a LOOKUP on the bottom node, since
|
|
|
|
* we won't be making changes to it anyway.
|
|
|
|
*/
|
|
|
|
nameiop = cnp->cn_nameiop;
|
|
|
|
cnp->cn_nameiop = LOOKUP;
|
|
|
|
if (um->um_op == UNMNT_BELOW) {
|
|
|
|
saved_cred = cnp->cn_cred;
|
|
|
|
cnp->cn_cred = um->um_cred;
|
|
|
|
}
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* we shouldn't have to worry about locking interactions
|
|
|
|
* between the lower layer and our union layer (w.r.t.
|
|
|
|
* `..' processing) because we don't futz with lowervp
|
|
|
|
* locks in the union-node instantiation code path.
|
|
|
|
*/
|
1994-06-16 03:07:54 +04:00
|
|
|
lerror = union_lookup1(um->um_lowervp, &lowerdvp,
|
1994-06-08 15:33:09 +04:00
|
|
|
&lowervp, cnp);
|
|
|
|
if (um->um_op == UNMNT_BELOW)
|
|
|
|
cnp->cn_cred = saved_cred;
|
|
|
|
cnp->cn_nameiop = nameiop;
|
|
|
|
|
|
|
|
if (lowervp != lowerdvp)
|
|
|
|
VOP_UNLOCK(lowerdvp);
|
|
|
|
|
|
|
|
if (cnp->cn_consume != 0) {
|
1994-06-16 03:07:54 +04:00
|
|
|
if (uppervp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
if (uppervp == upperdvp)
|
|
|
|
vrele(uppervp);
|
|
|
|
else
|
|
|
|
vput(uppervp);
|
|
|
|
uppervp = NULLVP;
|
|
|
|
}
|
|
|
|
*ap->a_vpp = lowervp;
|
|
|
|
if (!lockparent)
|
|
|
|
cnp->cn_flags &= ~LOCKPARENT;
|
|
|
|
return (lerror);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lerror = ENOENT;
|
1994-06-17 19:21:33 +04:00
|
|
|
if ((cnp->cn_flags & ISDOTDOT) && dun->un_pvp != NULLVP) {
|
|
|
|
lowervp = LOWERVP(dun->un_pvp);
|
|
|
|
if (lowervp != NULLVP) {
|
|
|
|
VREF(lowervp);
|
|
|
|
VOP_LOCK(lowervp);
|
|
|
|
lerror = 0;
|
|
|
|
}
|
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!lockparent)
|
|
|
|
cnp->cn_flags &= ~LOCKPARENT;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* at this point, we have uerror and lerror indicating
|
|
|
|
* possible errors with the lookups in the upper and lower
|
|
|
|
* layers. additionally, uppervp and lowervp are (locked)
|
|
|
|
* references to existing vnodes in the upper and lower layers.
|
|
|
|
*
|
|
|
|
* there are now three cases to consider.
|
|
|
|
* 1. if both layers returned an error, then return whatever
|
|
|
|
* error the upper layer generated.
|
|
|
|
*
|
|
|
|
* 2. if the top layer failed and the bottom layer succeeded
|
|
|
|
* then two subcases occur.
|
|
|
|
* a. the bottom vnode is not a directory, in which
|
|
|
|
* case just return a new union vnode referencing
|
|
|
|
* an empty top layer and the existing bottom layer.
|
|
|
|
* b. the bottom vnode is a directory, in which case
|
|
|
|
* create a new directory in the top-level and
|
|
|
|
* continue as in case 3.
|
|
|
|
*
|
|
|
|
* 3. if the top layer succeeded then return a new union
|
|
|
|
* vnode referencing whatever the new top layer and
|
|
|
|
* whatever the bottom layer returned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
*ap->a_vpp = NULLVP;
|
|
|
|
|
|
|
|
/* case 1. */
|
|
|
|
if ((uerror != 0) && (lerror != 0)) {
|
|
|
|
return (uerror);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* case 2. */
|
|
|
|
if (uerror != 0 /* && (lerror == 0) */ ) {
|
|
|
|
if (lowervp->v_type == VDIR) { /* case 2b. */
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* We may be racing another process to make the
|
|
|
|
* upper-level shadow directory. Be careful with
|
|
|
|
* locks/etc!
|
|
|
|
*/
|
1994-06-08 15:33:09 +04:00
|
|
|
dun->un_flags &= ~UN_ULOCK;
|
|
|
|
VOP_UNLOCK(upperdvp);
|
|
|
|
uerror = union_mkshadow(um, upperdvp, cnp, &uppervp);
|
|
|
|
VOP_LOCK(upperdvp);
|
|
|
|
dun->un_flags |= UN_ULOCK;
|
|
|
|
|
|
|
|
if (uerror) {
|
1994-06-16 03:07:54 +04:00
|
|
|
if (lowervp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(lowervp);
|
|
|
|
lowervp = NULLVP;
|
|
|
|
}
|
|
|
|
return (uerror);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (lowervp != NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
VOP_UNLOCK(lowervp);
|
|
|
|
|
|
|
|
error = union_allocvp(ap->a_vpp, dvp->v_mount, dvp, upperdvp, cnp,
|
1994-12-14 19:30:40 +03:00
|
|
|
uppervp, lowervp, 1);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
if (error) {
|
1994-06-16 03:07:54 +04:00
|
|
|
if (uppervp != NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(uppervp);
|
1994-06-16 03:07:54 +04:00
|
|
|
if (lowervp != NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
vrele(lowervp);
|
|
|
|
} else {
|
|
|
|
if (*ap->a_vpp != dvp)
|
|
|
|
if (!lockparent || !(cnp->cn_flags & ISLASTCN))
|
|
|
|
VOP_UNLOCK(dvp);
|
1996-05-11 02:57:49 +04:00
|
|
|
if (cnp->cn_namelen == 1 &&
|
|
|
|
cnp->cn_nameptr[0] == '.' &&
|
|
|
|
*ap->a_vpp != dvp) {
|
1996-05-13 11:13:23 +04:00
|
|
|
panic("union_lookup returning . (%p) not same as startdir (%p)",
|
1996-05-11 02:57:49 +04:00
|
|
|
ap->a_vpp, dvp);
|
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_create(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_create_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
struct vattr *a_vap;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
1994-12-15 22:06:50 +03:00
|
|
|
struct vnode *dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 22:06:50 +03:00
|
|
|
if ((dvp = un->un_uppervp) != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct mount *mp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
FIXUP(un);
|
|
|
|
|
|
|
|
VREF(dvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
1994-12-14 19:30:40 +03:00
|
|
|
mp = ap->a_dvp->v_mount;
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(ap->a_dvp);
|
|
|
|
error = VOP_CREATE(dvp, &vp, ap->a_cnp, ap->a_vap);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
error = union_allocvp(
|
|
|
|
ap->a_vpp,
|
1994-12-14 19:30:40 +03:00
|
|
|
mp,
|
|
|
|
NULLVP,
|
1994-06-08 15:33:09 +04:00
|
|
|
NULLVP,
|
|
|
|
ap->a_cnp,
|
|
|
|
vp,
|
1994-12-14 19:30:40 +03:00
|
|
|
NULLVP,
|
|
|
|
1);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (error)
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
return (EROFS);
|
|
|
|
}
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_whiteout(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-12-14 19:30:40 +03:00
|
|
|
struct vop_whiteout_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
int a_flags;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
|
|
|
|
1994-12-30 01:42:10 +03:00
|
|
|
if (un->un_uppervp == NULLVP)
|
1994-12-14 19:30:40 +03:00
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
FIXUP(un);
|
1994-12-30 01:42:10 +03:00
|
|
|
return (VOP_WHITEOUT(un->un_uppervp, ap->a_cnp, ap->a_flags));
|
1994-12-14 19:30:40 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_mknod(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_mknod_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
struct vattr *a_vap;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
1994-12-15 21:58:11 +03:00
|
|
|
struct vnode *dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
if ((dvp = un->un_uppervp) != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct mount *mp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
FIXUP(un);
|
|
|
|
|
|
|
|
VREF(dvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
1994-12-14 19:30:40 +03:00
|
|
|
mp = ap->a_dvp->v_mount;
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(ap->a_dvp);
|
|
|
|
error = VOP_MKNOD(dvp, &vp, ap->a_cnp, ap->a_vap);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (vp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
error = union_allocvp(
|
|
|
|
ap->a_vpp,
|
1994-12-14 19:30:40 +03:00
|
|
|
mp,
|
|
|
|
NULLVP,
|
1994-06-08 15:33:09 +04:00
|
|
|
NULLVP,
|
|
|
|
ap->a_cnp,
|
|
|
|
vp,
|
1994-12-14 19:30:40 +03:00
|
|
|
NULLVP,
|
|
|
|
1);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (error)
|
|
|
|
vput(vp);
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
return (EROFS);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_open(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_open_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_mode;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
1994-12-30 01:42:10 +03:00
|
|
|
struct vnode *tvp;
|
|
|
|
int mode = ap->a_mode;
|
|
|
|
struct ucred *cred = ap->a_cred;
|
|
|
|
struct proc *p = ap->a_p;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is an existing upper vp then simply open that.
|
|
|
|
*/
|
1994-12-30 01:42:10 +03:00
|
|
|
tvp = un->un_uppervp;
|
|
|
|
if (tvp == NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* If the lower vnode is being opened for writing, then
|
|
|
|
* copy the file contents to the upper vnode and open that,
|
|
|
|
* otherwise can simply open the lower vnode.
|
|
|
|
*/
|
1994-12-30 01:42:10 +03:00
|
|
|
tvp = un->un_lowervp;
|
|
|
|
if ((ap->a_mode & FWRITE) && (tvp->v_type == VREG)) {
|
|
|
|
error = union_copyup(un, (mode&O_TRUNC) == 0, cred, p);
|
|
|
|
if (error == 0)
|
|
|
|
error = VOP_OPEN(un->un_uppervp, mode, cred, p);
|
|
|
|
return (error);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Just open the lower vnode
|
|
|
|
*/
|
|
|
|
un->un_openl++;
|
1994-12-30 01:42:10 +03:00
|
|
|
VOP_LOCK(tvp);
|
|
|
|
error = VOP_OPEN(tvp, mode, cred, p);
|
|
|
|
VOP_UNLOCK(tvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXUP(un);
|
1994-12-30 01:42:10 +03:00
|
|
|
|
|
|
|
error = VOP_OPEN(tvp, mode, cred, p);
|
|
|
|
|
|
|
|
return (error);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_close(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_close_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
struct vnode *vp;
|
|
|
|
|
1994-12-13 19:59:50 +03:00
|
|
|
if ((vp = un->un_uppervp) == NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
#ifdef UNION_DIAGNOSTIC
|
|
|
|
if (un->un_openl <= 0)
|
|
|
|
panic("union: un_openl cnt");
|
|
|
|
#endif
|
|
|
|
--un->un_openl;
|
|
|
|
vp = un->un_lowervp;
|
|
|
|
}
|
|
|
|
|
1995-06-27 04:12:21 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
/*
|
|
|
|
* We should never encounter a vnode with both upper and
|
|
|
|
* lower vnodes NULL.
|
|
|
|
*/
|
|
|
|
if (vp == NULLVP) {
|
|
|
|
vprint("empty union vnode", vp);
|
|
|
|
panic("union_close empty vnode");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1994-12-13 19:59:50 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_close), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check access permission on the union vnode.
|
|
|
|
* The access check being enforced is to check
|
|
|
|
* against both the underlying vnode, and any
|
|
|
|
* copied vnode. This ensures that no additional
|
|
|
|
* file permissions are given away simply because
|
|
|
|
* the user caused an implicit file copy.
|
|
|
|
*/
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_access(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_access_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_mode;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
1994-12-13 19:59:50 +03:00
|
|
|
int error = EACCES;
|
1994-12-30 01:42:10 +03:00
|
|
|
struct vnode *vp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if ((vp = un->un_uppervp) != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
FIXUP(un);
|
1994-12-30 01:42:10 +03:00
|
|
|
return (VOP_ACCESS(vp, ap->a_mode, ap->a_cred, ap->a_p));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if ((vp = un->un_lowervp) != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
VOP_LOCK(vp);
|
1994-12-30 01:42:10 +03:00
|
|
|
error = VOP_ACCESS(vp, ap->a_mode, ap->a_cred, ap->a_p);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (error == 0) {
|
1995-07-13 17:19:18 +04:00
|
|
|
struct union_mount *um = MOUNTTOUNIONMOUNT(ap->a_vp->v_mount);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-30 01:42:10 +03:00
|
|
|
if (um->um_op == UNMNT_BELOW)
|
|
|
|
error = VOP_ACCESS(vp, ap->a_mode,
|
|
|
|
um->um_cred, ap->a_p);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
VOP_UNLOCK(vp);
|
1994-12-30 01:42:10 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-06-16 03:07:54 +04:00
|
|
|
* We handle getattr only to change the fsid and
|
|
|
|
* track object sizes
|
1994-06-08 15:33:09 +04:00
|
|
|
*/
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_getattr(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_getattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct vattr *a_vap;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
struct vnode *vp = un->un_uppervp;
|
|
|
|
struct vattr *vap;
|
|
|
|
struct vattr va;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some programs walk the filesystem hierarchy by counting
|
|
|
|
* links to directories to avoid stat'ing all the time.
|
|
|
|
* This means the link count on directories needs to be "correct".
|
|
|
|
* The only way to do that is to call getattr on both layers
|
|
|
|
* and fix up the link count. The link count will not necessarily
|
|
|
|
* be accurate but will be large enough to defeat the tree walkers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
vap = ap->a_vap;
|
|
|
|
|
1994-12-15 22:06:50 +03:00
|
|
|
if ((vp = un->un_uppervp) != NULLVP) {
|
1994-06-16 03:07:54 +04:00
|
|
|
/*
|
|
|
|
* It's not clear whether VOP_GETATTR is to be
|
|
|
|
* called with the vnode locked or not. stat() calls
|
|
|
|
* it with (vp) locked, and fstat calls it with
|
|
|
|
* (vp) unlocked.
|
|
|
|
* In the mean time, compensate here by checking
|
|
|
|
* the union_node's lock flag.
|
|
|
|
*/
|
|
|
|
if (un->un_flags & UN_LOCKED)
|
|
|
|
FIXUP(un);
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
error = VOP_GETATTR(vp, vap, ap->a_cred, ap->a_p);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1994-06-16 03:07:54 +04:00
|
|
|
union_newsize(ap->a_vp, vap->va_size, VNOVAL);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vp == NULLVP) {
|
|
|
|
vp = un->un_lowervp;
|
|
|
|
} else if (vp->v_type == VDIR) {
|
|
|
|
vp = un->un_lowervp;
|
|
|
|
vap = &va;
|
|
|
|
} else {
|
|
|
|
vp = NULLVP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vp != NULLVP) {
|
|
|
|
error = VOP_GETATTR(vp, vap, ap->a_cred, ap->a_p);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1994-06-16 03:07:54 +04:00
|
|
|
union_newsize(ap->a_vp, VNOVAL, vap->va_size);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((vap != ap->a_vap) && (vap->va_type == VDIR))
|
|
|
|
ap->a_vap->va_nlink += vap->va_nlink;
|
|
|
|
|
1994-06-17 19:21:33 +04:00
|
|
|
ap->a_vap->va_fsid = ap->a_vp->v_mount->mnt_stat.f_fsid.val[0];
|
1994-06-08 15:33:09 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_setattr(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_setattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct vattr *a_vap;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle case of truncating lower object to zero size,
|
|
|
|
* by creating a zero length upper object. This is to
|
|
|
|
* handle the case of open with O_TRUNC and O_CREAT.
|
|
|
|
*/
|
1994-12-30 01:42:10 +03:00
|
|
|
if ((un->un_uppervp == NULLVP) &&
|
1994-06-08 15:33:09 +04:00
|
|
|
/* assert(un->un_lowervp != NULLVP) */
|
1994-12-30 01:42:10 +03:00
|
|
|
(un->un_lowervp->v_type == VREG)) {
|
1994-12-15 22:15:06 +03:00
|
|
|
error = union_copyup(un, (ap->a_vap->va_size != 0),
|
|
|
|
ap->a_cred, ap->a_p);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to set attributes in upper layer,
|
|
|
|
* otherwise return read-only filesystem error.
|
|
|
|
*/
|
1994-12-30 01:42:10 +03:00
|
|
|
if (un->un_uppervp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
FIXUP(un);
|
1994-12-30 01:42:10 +03:00
|
|
|
error = VOP_SETATTR(un->un_uppervp, ap->a_vap,
|
|
|
|
ap->a_cred, ap->a_p);
|
1994-06-16 03:07:54 +04:00
|
|
|
if ((error == 0) && (ap->a_vap->va_size != VNOVAL))
|
|
|
|
union_newsize(ap->a_vp, ap->a_vap->va_size, VNOVAL);
|
1994-06-08 15:33:09 +04:00
|
|
|
} else {
|
|
|
|
error = EROFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_read(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_read_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp = OTHERVP(ap->a_vp);
|
|
|
|
int dolock = (vp == LOWERVP(ap->a_vp));
|
|
|
|
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_vp));
|
|
|
|
error = VOP_READ(vp, ap->a_uio, ap->a_ioflag, ap->a_cred);
|
|
|
|
if (dolock)
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* perhaps the size of the underlying object has changed under
|
|
|
|
* our feet. take advantage of the offset information present
|
|
|
|
* in the uio structure.
|
|
|
|
*/
|
|
|
|
if (error == 0) {
|
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
off_t cur = ap->a_uio->uio_offset;
|
|
|
|
|
|
|
|
if (vp == un->un_uppervp) {
|
|
|
|
if (cur > un->un_uppersz)
|
|
|
|
union_newsize(ap->a_vp, cur, VNOVAL);
|
|
|
|
} else {
|
|
|
|
if (cur > un->un_lowersz)
|
|
|
|
union_newsize(ap->a_vp, VNOVAL, cur);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_write(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_read_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct vnode *vp;
|
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
vp = UPPERVP(ap->a_vp);
|
|
|
|
if (vp == NULLVP)
|
|
|
|
panic("union: missing upper layer in write");
|
|
|
|
|
|
|
|
FIXUP(un);
|
1994-06-08 15:33:09 +04:00
|
|
|
error = VOP_WRITE(vp, ap->a_uio, ap->a_ioflag, ap->a_cred);
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
/*
|
|
|
|
* the size of the underlying object may be changed by the
|
|
|
|
* write.
|
|
|
|
*/
|
|
|
|
if (error == 0) {
|
|
|
|
off_t cur = ap->a_uio->uio_offset;
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (cur > un->un_uppersz)
|
|
|
|
union_newsize(ap->a_vp, cur, VNOVAL);
|
1994-06-16 03:07:54 +04:00
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
|
|
|
union_lease(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-12-13 19:59:50 +03:00
|
|
|
struct vop_lease_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct proc *a_p;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
int a_flag;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-12-13 19:59:50 +03:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_lease), ap));
|
1994-12-13 19:59:50 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_ioctl(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_ioctl_args /* {
|
|
|
|
struct vnode *a_vp;
|
1994-10-31 00:43:03 +03:00
|
|
|
u_long a_command;
|
1994-06-08 15:33:09 +04:00
|
|
|
caddr_t a_data;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_ioctl), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-09-07 16:40:22 +04:00
|
|
|
union_poll(v)
|
1996-02-10 01:39:56 +03:00
|
|
|
void *v;
|
|
|
|
{
|
1996-09-07 16:40:22 +04:00
|
|
|
struct vop_poll_args /* {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
1996-09-07 16:40:22 +04:00
|
|
|
int a_events;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
1996-09-07 16:40:22 +04:00
|
|
|
return (VCALL(vp, VOFFSET(vop_poll), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_mmap(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_mmap_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_fflags;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_mmap), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_fsync(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_fsync_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
int a_waitfor;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error = 0;
|
|
|
|
struct vnode *targetvp = OTHERVP(ap->a_vp);
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (targetvp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int dolock = (targetvp == LOWERVP(ap->a_vp));
|
|
|
|
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(targetvp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_vp));
|
1994-12-30 01:42:10 +03:00
|
|
|
error = VOP_FSYNC(targetvp, ap->a_cred,
|
|
|
|
ap->a_waitfor, ap->a_p);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (dolock)
|
|
|
|
VOP_UNLOCK(targetvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_seek(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_seek_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
off_t a_oldoff;
|
|
|
|
off_t a_newoff;
|
|
|
|
struct ucred *a_cred;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_seek), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_remove(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_remove_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct union_node *dun = VTOUNION(ap->a_dvp);
|
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (dun->un_uppervp == NULLVP)
|
|
|
|
panic("union remove: null upper vnode");
|
|
|
|
|
|
|
|
if (un->un_uppervp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *dvp = dun->un_uppervp;
|
|
|
|
struct vnode *vp = un->un_uppervp;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct componentname *cnp = ap->a_cnp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
FIXUP(dun);
|
|
|
|
VREF(dvp);
|
|
|
|
dun->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
FIXUP(un);
|
|
|
|
VREF(vp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_vp);
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (union_dowhiteout(un, cnp->cn_cred, cnp->cn_proc))
|
|
|
|
cnp->cn_flags |= DOWHITEOUT;
|
|
|
|
error = VOP_REMOVE(dvp, vp, cnp);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (!error)
|
|
|
|
union_removed_upper(un);
|
|
|
|
} else {
|
1994-12-14 19:30:40 +03:00
|
|
|
FIXUP(dun);
|
|
|
|
error = union_mkwhiteout(
|
|
|
|
MOUNTTOUNIONMOUNT(UNIONTOV(dun)->v_mount),
|
|
|
|
dun->un_uppervp, ap->a_cnp, un->un_path);
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(ap->a_dvp);
|
|
|
|
vput(ap->a_vp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1996-05-11 02:57:49 +04:00
|
|
|
/* a_dvp: directory in which to link
|
|
|
|
a_vp: new target of the link
|
|
|
|
a_cnp: name for the link
|
|
|
|
*/
|
1994-06-08 15:33:09 +04:00
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_link(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_link_args /* {
|
1996-02-09 17:45:36 +03:00
|
|
|
struct vnode *a_dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-16 03:07:54 +04:00
|
|
|
int error = 0;
|
1996-02-09 17:45:36 +03:00
|
|
|
struct union_node *dun;
|
|
|
|
struct vnode *dvp;
|
1994-06-16 03:07:54 +04:00
|
|
|
struct vnode *vp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1996-02-09 17:45:36 +03:00
|
|
|
dun = VTOUNION(ap->a_dvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1996-05-11 02:57:49 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (!(ap->a_cnp->cn_flags & LOCKPARENT)) {
|
1996-10-13 06:21:25 +04:00
|
|
|
printf("union_link called without LOCKPARENT set!\n");
|
1996-05-11 02:57:49 +04:00
|
|
|
error = EIO; /* need some error code for "caller is a bozo" */
|
|
|
|
} else
|
|
|
|
#endif
|
1996-02-09 17:45:36 +03:00
|
|
|
if (ap->a_dvp->v_op != ap->a_vp->v_op) {
|
|
|
|
vp = ap->a_vp;
|
1994-06-08 15:33:09 +04:00
|
|
|
} else {
|
1996-02-09 17:45:36 +03:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
|
|
|
|
if (un->un_uppervp == NULLVP) {
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* needs to be copied up before we can link it.
|
|
|
|
*/
|
1996-02-09 17:45:36 +03:00
|
|
|
VOP_LOCK(ap->a_vp);
|
|
|
|
if (dun->un_uppervp == un->un_dirvp) {
|
1996-05-11 02:57:49 +04:00
|
|
|
VOP_UNLOCK(ap->a_dvp);
|
1994-06-16 03:07:54 +04:00
|
|
|
}
|
1996-02-09 17:45:36 +03:00
|
|
|
error = union_copyup(un, 1, ap->a_cnp->cn_cred,
|
1994-06-16 03:07:54 +04:00
|
|
|
ap->a_cnp->cn_proc);
|
1996-02-09 17:45:36 +03:00
|
|
|
if (dun->un_uppervp == un->un_dirvp) {
|
1996-05-11 02:57:49 +04:00
|
|
|
/* During copyup, we dropped the lock on the
|
|
|
|
* dir and invalidated any saved namei lookup
|
|
|
|
* state for the directory we'll be entering
|
|
|
|
* the link in. We need to re-run the lookup
|
|
|
|
* in that directory to reset any state needed
|
|
|
|
* for VOP_LINK.
|
|
|
|
* Call relookup on the union-layer to
|
|
|
|
* reset the state.
|
|
|
|
*/
|
|
|
|
vp = NULLVP;
|
|
|
|
if (dun->un_uppervp == NULLVP)
|
|
|
|
panic("union: null upperdvp?");
|
|
|
|
/*
|
|
|
|
* relookup starts with an unlocked node,
|
|
|
|
* and since LOCKPARENT is set returns
|
|
|
|
* the starting directory locked.
|
|
|
|
*/
|
|
|
|
if ((error = relookup(ap->a_dvp,
|
|
|
|
&vp, ap->a_cnp))) {
|
|
|
|
vrele(ap->a_dvp);
|
|
|
|
VOP_UNLOCK(ap->a_vp);
|
|
|
|
return EROFS;
|
|
|
|
}
|
|
|
|
if (vp != NULLVP) {
|
|
|
|
/* The name we want to create has
|
|
|
|
mysteriously appeared (a race?) */
|
|
|
|
error = EEXIST;
|
|
|
|
VOP_UNLOCK(ap->a_vp);
|
|
|
|
goto croak;
|
|
|
|
}
|
1994-06-16 03:07:54 +04:00
|
|
|
}
|
1996-02-09 17:45:36 +03:00
|
|
|
VOP_UNLOCK(ap->a_vp);
|
1994-06-16 03:07:54 +04:00
|
|
|
}
|
1996-02-09 17:45:36 +03:00
|
|
|
vp = un->un_uppervp;
|
1994-06-16 03:07:54 +04:00
|
|
|
}
|
|
|
|
|
1996-02-09 17:45:36 +03:00
|
|
|
dvp = dun->un_uppervp;
|
|
|
|
if (dvp == NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
error = EROFS;
|
1994-06-16 03:07:54 +04:00
|
|
|
|
|
|
|
if (error) {
|
1996-05-11 02:57:49 +04:00
|
|
|
croak:
|
1996-02-09 17:45:36 +03:00
|
|
|
vput(ap->a_dvp);
|
1994-06-16 03:07:54 +04:00
|
|
|
return (error);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
1996-02-09 17:45:36 +03:00
|
|
|
FIXUP(dun);
|
|
|
|
VREF(dvp);
|
|
|
|
dun->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_dvp);
|
1994-06-16 03:07:54 +04:00
|
|
|
|
1996-02-09 17:45:36 +03:00
|
|
|
return (VOP_LINK(dvp, vp, ap->a_cnp));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_rename(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_rename_args /* {
|
|
|
|
struct vnode *a_fdvp;
|
|
|
|
struct vnode *a_fvp;
|
|
|
|
struct componentname *a_fcnp;
|
|
|
|
struct vnode *a_tdvp;
|
|
|
|
struct vnode *a_tvp;
|
|
|
|
struct componentname *a_tcnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
|
|
|
|
struct vnode *fdvp = ap->a_fdvp;
|
|
|
|
struct vnode *fvp = ap->a_fvp;
|
|
|
|
struct vnode *tdvp = ap->a_tdvp;
|
|
|
|
struct vnode *tvp = ap->a_tvp;
|
|
|
|
|
|
|
|
if (fdvp->v_op == union_vnodeop_p) { /* always true */
|
|
|
|
struct union_node *un = VTOUNION(fdvp);
|
|
|
|
if (un->un_uppervp == NULLVP) {
|
1994-12-14 19:30:40 +03:00
|
|
|
/*
|
|
|
|
* this should never happen in normal
|
|
|
|
* operation but might if there was
|
|
|
|
* a problem creating the top-level shadow
|
|
|
|
* directory.
|
|
|
|
*/
|
|
|
|
error = EXDEV;
|
1994-06-08 15:33:09 +04:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
fdvp = un->un_uppervp;
|
|
|
|
VREF(fdvp);
|
|
|
|
vrele(ap->a_fdvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fvp->v_op == union_vnodeop_p) { /* always true */
|
|
|
|
struct union_node *un = VTOUNION(fvp);
|
|
|
|
if (un->un_uppervp == NULLVP) {
|
1994-12-14 19:30:40 +03:00
|
|
|
/* XXX: should do a copyup */
|
|
|
|
error = EXDEV;
|
1994-06-08 15:33:09 +04:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (un->un_lowervp != NULLVP)
|
|
|
|
ap->a_fcnp->cn_flags |= DOWHITEOUT;
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
fvp = un->un_uppervp;
|
|
|
|
VREF(fvp);
|
|
|
|
vrele(ap->a_fvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tdvp->v_op == union_vnodeop_p) {
|
|
|
|
struct union_node *un = VTOUNION(tdvp);
|
|
|
|
if (un->un_uppervp == NULLVP) {
|
1994-06-16 03:07:54 +04:00
|
|
|
/*
|
|
|
|
* this should never happen in normal
|
|
|
|
* operation but might if there was
|
|
|
|
* a problem creating the top-level shadow
|
|
|
|
* directory.
|
|
|
|
*/
|
1994-12-14 19:30:40 +03:00
|
|
|
error = EXDEV;
|
1994-06-08 15:33:09 +04:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
tdvp = un->un_uppervp;
|
|
|
|
VREF(tdvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_tdvp);
|
|
|
|
}
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (tvp != NULLVP && tvp->v_op == union_vnodeop_p) {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(tvp);
|
|
|
|
|
|
|
|
tvp = un->un_uppervp;
|
1994-06-16 03:07:54 +04:00
|
|
|
if (tvp != NULLVP) {
|
|
|
|
VREF(tvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(ap->a_tvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (VOP_RENAME(fdvp, fvp, ap->a_fcnp, tdvp, tvp, ap->a_tcnp));
|
|
|
|
|
|
|
|
bad:
|
|
|
|
vrele(fdvp);
|
|
|
|
vrele(fvp);
|
|
|
|
vput(tdvp);
|
1994-06-16 03:07:54 +04:00
|
|
|
if (tvp != NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(tvp);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_mkdir(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_mkdir_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
struct vattr *a_vap;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
|
|
|
struct vnode *dvp = un->un_uppervp;
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (dvp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp;
|
|
|
|
|
|
|
|
FIXUP(un);
|
|
|
|
VREF(dvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
1994-12-14 19:30:40 +03:00
|
|
|
VOP_UNLOCK(ap->a_dvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
error = VOP_MKDIR(dvp, &vp, ap->a_cnp, ap->a_vap);
|
1994-12-14 19:30:40 +03:00
|
|
|
if (error) {
|
|
|
|
vrele(ap->a_dvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
return (error);
|
1994-12-14 19:30:40 +03:00
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
error = union_allocvp(
|
|
|
|
ap->a_vpp,
|
|
|
|
ap->a_dvp->v_mount,
|
|
|
|
ap->a_dvp,
|
|
|
|
NULLVP,
|
|
|
|
ap->a_cnp,
|
|
|
|
vp,
|
1994-12-14 19:30:40 +03:00
|
|
|
NULLVP,
|
|
|
|
1);
|
|
|
|
vrele(ap->a_dvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (error)
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
return (EROFS);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_rmdir(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_rmdir_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct union_node *dun = VTOUNION(ap->a_dvp);
|
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (dun->un_uppervp == NULLVP)
|
|
|
|
panic("union rmdir: null upper vnode");
|
|
|
|
|
|
|
|
if (un->un_uppervp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *dvp = dun->un_uppervp;
|
|
|
|
struct vnode *vp = un->un_uppervp;
|
1994-12-14 19:30:40 +03:00
|
|
|
struct componentname *cnp = ap->a_cnp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
FIXUP(dun);
|
|
|
|
VREF(dvp);
|
|
|
|
dun->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
FIXUP(un);
|
|
|
|
VREF(vp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_vp);
|
|
|
|
|
1994-12-14 19:30:40 +03:00
|
|
|
if (union_dowhiteout(un, cnp->cn_cred, cnp->cn_proc))
|
|
|
|
cnp->cn_flags |= DOWHITEOUT;
|
1995-07-13 17:19:18 +04:00
|
|
|
error = VOP_RMDIR(dvp, vp, cnp);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (!error)
|
|
|
|
union_removed_upper(un);
|
|
|
|
} else {
|
1994-12-14 19:30:40 +03:00
|
|
|
FIXUP(dun);
|
|
|
|
error = union_mkwhiteout(
|
|
|
|
MOUNTTOUNIONMOUNT(UNIONTOV(dun)->v_mount),
|
|
|
|
dun->un_uppervp, ap->a_cnp, un->un_path);
|
1994-06-08 15:33:09 +04:00
|
|
|
vput(ap->a_dvp);
|
|
|
|
vput(ap->a_vp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_symlink(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_symlink_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
struct vattr *a_vap;
|
|
|
|
char *a_target;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
|
|
|
struct vnode *dvp = un->un_uppervp;
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (dvp != NULLVP) {
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp;
|
|
|
|
|
|
|
|
FIXUP(un);
|
|
|
|
VREF(dvp);
|
|
|
|
un->un_flags |= UN_KLOCK;
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
error = VOP_SYMLINK(dvp, &vp, ap->a_cnp,
|
|
|
|
ap->a_vap, ap->a_target);
|
|
|
|
*ap->a_vpp = NULLVP;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
return (EROFS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* union_readdir works in concert with getdirentries and
|
|
|
|
* readdir(3) to provide a list of entries in the unioned
|
|
|
|
* directories. getdirentries is responsible for walking
|
|
|
|
* down the union stack. readdir(3) is responsible for
|
|
|
|
* eliminating duplicate names from the returned data stream.
|
|
|
|
*/
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_readdir(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_readdir_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
int *a_eofflag;
|
1997-10-10 06:01:05 +04:00
|
|
|
off_t *a_cookies;
|
1994-06-08 15:33:09 +04:00
|
|
|
int a_ncookies;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
register struct union_node *un = VTOUNION(ap->a_vp);
|
1994-12-15 22:15:06 +03:00
|
|
|
register struct vnode *vp;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 22:15:06 +03:00
|
|
|
if ((vp = un->un_uppervp) == NULLVP)
|
1994-06-08 15:33:09 +04:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
FIXUP(un);
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_readdir), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_readlink(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_readlink_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
struct ucred *a_cred;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp = OTHERVP(ap->a_vp);
|
|
|
|
int dolock = (vp == LOWERVP(ap->a_vp));
|
|
|
|
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_vp));
|
1994-12-13 19:59:50 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
error = VCALL(vp, VOFFSET(vop_readlink), ap);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (dolock)
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_abortop(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_abortop_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp = OTHERVP(ap->a_dvp);
|
|
|
|
struct union_node *un = VTOUNION(ap->a_dvp);
|
|
|
|
int islocked = un->un_flags & UN_LOCKED;
|
|
|
|
int dolock = (vp == LOWERVP(ap->a_dvp));
|
|
|
|
|
|
|
|
if (islocked) {
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_dvp));
|
|
|
|
}
|
1994-12-13 23:27:37 +03:00
|
|
|
ap->a_dvp = vp;
|
1994-12-13 19:59:50 +03:00
|
|
|
error = VCALL(vp, VOFFSET(vop_abortop), ap);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (islocked && dolock)
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_inactive(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_inactive_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-16 03:07:54 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do nothing (and _don't_ bypass).
|
|
|
|
* Wait to vrele lowervp until reclaim,
|
|
|
|
* so that until then our union_node is in the
|
|
|
|
* cache and reusable.
|
|
|
|
*
|
|
|
|
* NEEDSWORK: Someday, consider inactive'ing
|
|
|
|
* the lowervp and then trying to reactivate it
|
|
|
|
* with capabilities (v_id)
|
|
|
|
* like they do in the name lookup cache code.
|
|
|
|
* That's too much work for now.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef UNION_DIAGNOSTIC
|
|
|
|
if (un->un_flags & UN_LOCKED)
|
|
|
|
panic("union: inactivating locked node");
|
1994-06-16 03:07:54 +04:00
|
|
|
if (un->un_flags & UN_ULOCK)
|
|
|
|
panic("union: inactivating w/locked upper node");
|
1994-06-08 15:33:09 +04:00
|
|
|
#endif
|
|
|
|
|
1995-05-30 22:11:46 +04:00
|
|
|
union_diruncache(un);
|
1994-12-14 19:30:40 +03:00
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if ((un->un_flags & UN_CACHED) == 0)
|
|
|
|
vgone(ap->a_vp);
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_reclaim(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_reclaim_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
union_freevp(ap->a_vp);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_lock(v)
|
|
|
|
void *v;
|
1994-06-08 15:33:09 +04:00
|
|
|
{
|
1996-02-10 01:39:56 +03:00
|
|
|
struct vop_lock_args *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct union_node *un;
|
|
|
|
|
|
|
|
start:
|
|
|
|
while (vp->v_flag & VXLOCK) {
|
|
|
|
vp->v_flag |= VXWANT;
|
|
|
|
sleep((caddr_t)vp, PINOD);
|
|
|
|
}
|
|
|
|
|
|
|
|
un = VTOUNION(vp);
|
|
|
|
|
1994-06-16 03:07:54 +04:00
|
|
|
if (un->un_uppervp != NULLVP) {
|
|
|
|
if (((un->un_flags & UN_ULOCK) == 0) &&
|
|
|
|
(vp->v_usecount != 0)) {
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* We MUST always use the order of: take upper
|
|
|
|
* vp lock, manipulate union node flags, drop
|
|
|
|
* upper vp lock. This code must not be an
|
|
|
|
* exception.
|
|
|
|
*/
|
1994-06-08 15:33:09 +04:00
|
|
|
VOP_LOCK(un->un_uppervp);
|
1995-05-30 12:51:24 +04:00
|
|
|
un->un_flags |= UN_ULOCK;
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
#ifdef DIAGNOSTIC
|
1995-05-30 12:51:24 +04:00
|
|
|
if (un->un_flags & UN_KLOCK) {
|
1995-05-30 14:28:15 +04:00
|
|
|
vprint("dangling upper lock", vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
panic("union: dangling upper lock");
|
1995-05-30 12:51:24 +04:00
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (un->un_flags & UN_LOCKED) {
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (curproc && un->un_pid == curproc->p_pid &&
|
|
|
|
un->un_pid > -1 && curproc->p_pid > -1)
|
|
|
|
panic("union: locking against myself");
|
|
|
|
#endif
|
1994-12-30 01:48:16 +03:00
|
|
|
un->un_flags |= UN_WANTED;
|
|
|
|
sleep((caddr_t)un, PINOD);
|
1994-06-08 15:33:09 +04:00
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (curproc)
|
|
|
|
un->un_pid = curproc->p_pid;
|
|
|
|
else
|
|
|
|
un->un_pid = -1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
un->un_flags |= UN_LOCKED;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-05-11 02:57:49 +04:00
|
|
|
/*
|
|
|
|
* When operations want to vput() a union node yet retain a lock on
|
|
|
|
* the upper VP (say, to do some further operations like link(),
|
|
|
|
* mkdir(), ...), they set UN_KLOCK on the union node, then call
|
|
|
|
* vput() which calls VOP_UNLOCK() and comes here. union_unlock()
|
|
|
|
* unlocks the union node (leaving the upper VP alone), clears the
|
|
|
|
* KLOCK flag, and then returns to vput(). The caller then does whatever
|
|
|
|
* is left to do with the upper VP, and insures that it gets unlocked.
|
|
|
|
*
|
|
|
|
* If UN_KLOCK isn't set, then the upper VP is unlocked here.
|
|
|
|
*/
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_unlock(v)
|
|
|
|
void *v;
|
1994-06-08 15:33:09 +04:00
|
|
|
{
|
1996-02-10 01:39:56 +03:00
|
|
|
struct vop_lock_args *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct union_node *un = VTOUNION(ap->a_vp);
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if ((un->un_flags & UN_LOCKED) == 0)
|
|
|
|
panic("union: unlock unlocked node");
|
|
|
|
if (curproc && un->un_pid != curproc->p_pid &&
|
|
|
|
curproc->p_pid > -1 && un->un_pid > -1)
|
|
|
|
panic("union: unlocking other process's union node");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
un->un_flags &= ~UN_LOCKED;
|
|
|
|
|
|
|
|
if ((un->un_flags & (UN_ULOCK|UN_KLOCK)) == UN_ULOCK)
|
|
|
|
VOP_UNLOCK(un->un_uppervp);
|
|
|
|
|
|
|
|
un->un_flags &= ~(UN_ULOCK|UN_KLOCK);
|
|
|
|
|
1994-12-30 01:48:16 +03:00
|
|
|
if (un->un_flags & UN_WANTED) {
|
|
|
|
un->un_flags &= ~UN_WANTED;
|
|
|
|
wakeup((caddr_t)un);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
un->un_pid = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_bmap(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_bmap_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
daddr_t a_bn;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
daddr_t *a_bnp;
|
|
|
|
int *a_runp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp = OTHERVP(ap->a_vp);
|
|
|
|
int dolock = (vp == LOWERVP(ap->a_vp));
|
|
|
|
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_vp));
|
1994-12-13 19:59:50 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
error = VCALL(vp, VOFFSET(vop_bmap), ap);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (dolock)
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_print(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_print_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
|
1996-10-13 06:21:25 +04:00
|
|
|
printf("\ttag VT_UNION, vp=%p, uppervp=%p, lowervp=%p\n",
|
1996-05-24 03:34:14 +04:00
|
|
|
vp, UPPERVP(vp), LOWERVP(vp));
|
1995-05-30 12:51:24 +04:00
|
|
|
if (UPPERVP(vp))
|
1995-05-30 14:28:15 +04:00
|
|
|
vprint("uppervp", UPPERVP(vp));
|
1995-05-30 12:51:24 +04:00
|
|
|
if (LOWERVP(vp))
|
1995-05-30 14:28:15 +04:00
|
|
|
vprint("lowervp", LOWERVP(vp));
|
1996-05-11 02:57:49 +04:00
|
|
|
if (VTOUNION(vp)->un_dircache) {
|
|
|
|
struct vnode **vpp;
|
|
|
|
for (vpp = VTOUNION(vp)->un_dircache; *vpp != NULLVP; vpp++)
|
|
|
|
vprint("dircache:", *vpp);
|
|
|
|
}
|
1994-06-08 15:33:09 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_islocked(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_islocked_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
return ((VTOUNION(ap->a_vp)->un_flags & UN_LOCKED) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_pathconf(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_pathconf_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_name;
|
1994-10-20 07:22:35 +03:00
|
|
|
register_t *a_retval;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
int error;
|
|
|
|
struct vnode *vp = OTHERVP(ap->a_vp);
|
|
|
|
int dolock = (vp == LOWERVP(ap->a_vp));
|
|
|
|
|
|
|
|
if (dolock)
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
else
|
|
|
|
FIXUP(VTOUNION(ap->a_vp));
|
1994-12-13 19:59:50 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
error = VCALL(vp, VOFFSET(vop_pathconf), ap);
|
1994-06-08 15:33:09 +04:00
|
|
|
if (dolock)
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_advlock(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_advlock_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
caddr_t a_id;
|
|
|
|
int a_op;
|
|
|
|
struct flock *a_fl;
|
|
|
|
int a_flags;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-12-15 21:58:11 +03:00
|
|
|
register struct vnode *vp = OTHERVP(ap->a_vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1994-12-15 21:58:11 +03:00
|
|
|
ap->a_vp = vp;
|
|
|
|
return (VCALL(vp, VOFFSET(vop_advlock), ap));
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX - vop_strategy must be hand coded because it has no
|
|
|
|
* vnode in its arguments.
|
|
|
|
* This goes away with a merged VM/buffer cache.
|
|
|
|
*/
|
|
|
|
int
|
1996-02-10 01:39:56 +03:00
|
|
|
union_strategy(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_strategy_args /* {
|
|
|
|
struct buf *a_bp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct buf *bp = ap->a_bp;
|
|
|
|
int error;
|
|
|
|
struct vnode *savedvp;
|
|
|
|
|
|
|
|
savedvp = bp->b_vp;
|
|
|
|
bp->b_vp = OTHERVP(bp->b_vp);
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (bp->b_vp == NULLVP)
|
|
|
|
panic("union_strategy: nil vp");
|
|
|
|
if (((bp->b_flags & B_READ) == 0) &&
|
|
|
|
(bp->b_vp == LOWERVP(savedvp)))
|
|
|
|
panic("union_strategy: writing to lowervp");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
error = VOP_STRATEGY(bp);
|
|
|
|
bp->b_vp = savedvp;
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|