1996-02-10 00:48:19 +03:00
|
|
|
/* $NetBSD: nfs_node.c,v 1.15 1996/02/09 21:48:24 christos Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-06-08 15:33:09 +04:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Rick Macklem at The University of Guelph.
|
|
|
|
*
|
|
|
|
* 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-06-29 10:39:25 +04:00
|
|
|
* @(#)nfs_node.c 8.2 (Berkeley) 12/30/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1993-12-18 03:40:47 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
#include <nfs/rpcv2.h>
|
1993-12-18 03:40:47 +03:00
|
|
|
#include <nfs/nfsv2.h>
|
|
|
|
#include <nfs/nfs.h>
|
|
|
|
#include <nfs/nfsnode.h>
|
|
|
|
#include <nfs/nfsmount.h>
|
1994-06-08 15:33:09 +04:00
|
|
|
#include <nfs/nqnfs.h>
|
1996-02-10 00:48:19 +03:00
|
|
|
#include <nfs/nfs_var.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-19 02:47:43 +04:00
|
|
|
#define NFSNOHASH(fhsum) \
|
|
|
|
(&nfsnodehashtbl[(fhsum) & nfsnodehash])
|
|
|
|
LIST_HEAD(nfsnodehashhead, nfsnode) *nfsnodehashtbl;
|
|
|
|
u_long nfsnodehash;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#define FALSE 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize hash links for nfsnodes
|
|
|
|
* and build nfsnode free list.
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
nfs_nhinit()
|
|
|
|
{
|
|
|
|
|
1994-08-19 02:47:43 +04:00
|
|
|
nfsnodehashtbl = hashinit(desiredvnodes, M_NFSNODE, &nfsnodehash);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute an entry in the NFS hash table structure
|
|
|
|
*/
|
1994-08-19 02:47:43 +04:00
|
|
|
struct nfsnodehashhead *
|
1993-03-21 12:45:37 +03:00
|
|
|
nfs_hash(fhp)
|
|
|
|
register nfsv2fh_t *fhp;
|
|
|
|
{
|
|
|
|
register u_char *fhpp;
|
|
|
|
register u_long fhsum;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fhpp = &fhp->fh_bytes[0];
|
|
|
|
fhsum = 0;
|
|
|
|
for (i = 0; i < NFSX_FH; i++)
|
|
|
|
fhsum += *fhpp++;
|
1994-08-19 02:47:43 +04:00
|
|
|
return (NFSNOHASH(fhsum));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look up a vnode/nfsnode by file handle.
|
|
|
|
* Callers must check for mount points!!
|
|
|
|
* In all cases, a pointer to a
|
|
|
|
* nfsnode structure is returned.
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
nfs_nget(mntp, fhp, npp)
|
|
|
|
struct mount *mntp;
|
|
|
|
register nfsv2fh_t *fhp;
|
|
|
|
struct nfsnode **npp;
|
|
|
|
{
|
1994-08-19 02:47:43 +04:00
|
|
|
register struct nfsnode *np;
|
|
|
|
struct nfsnodehashhead *nhpp;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct vnode *vp;
|
|
|
|
struct vnode *nvp;
|
|
|
|
int error;
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
nhpp = nfs_hash(fhp);
|
1993-03-21 12:45:37 +03:00
|
|
|
loop:
|
1994-08-19 02:47:43 +04:00
|
|
|
for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (mntp != NFSTOV(np)->v_mount ||
|
|
|
|
bcmp((caddr_t)fhp, (caddr_t)&np->n_fh, NFSX_FH))
|
|
|
|
continue;
|
|
|
|
vp = NFSTOV(np);
|
1994-04-25 07:49:27 +04:00
|
|
|
if (vget(vp, 1))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto loop;
|
|
|
|
*npp = np;
|
|
|
|
return(0);
|
|
|
|
}
|
1996-02-10 00:48:19 +03:00
|
|
|
error = getnewvnode(VT_NFS, mntp, nfsv2_vnodeop_p, &nvp);
|
|
|
|
if (error) {
|
1993-03-21 12:45:37 +03:00
|
|
|
*npp = 0;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
vp = nvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
MALLOC(np, struct nfsnode *, sizeof *np, M_NFSNODE, M_WAITOK);
|
|
|
|
vp->v_data = np;
|
1993-03-21 12:45:37 +03:00
|
|
|
np->n_vnode = vp;
|
|
|
|
/*
|
|
|
|
* Insert the nfsnode in the hash queue for its new file handle
|
|
|
|
*/
|
|
|
|
np->n_flag = 0;
|
1994-08-19 02:47:43 +04:00
|
|
|
LIST_INSERT_HEAD(nhpp, np, n_hash);
|
1993-03-21 12:45:37 +03:00
|
|
|
bcopy((caddr_t)fhp, (caddr_t)&np->n_fh, NFSX_FH);
|
|
|
|
np->n_attrstamp = 0;
|
|
|
|
np->n_direofoffset = 0;
|
|
|
|
np->n_sillyrename = (struct sillyrename *)0;
|
|
|
|
np->n_size = 0;
|
|
|
|
np->n_mtime = 0;
|
1993-07-28 06:20:34 +04:00
|
|
|
np->n_lockf = 0;
|
1994-06-08 15:33:09 +04:00
|
|
|
if (VFSTONFS(mntp)->nm_flag & NFSMNT_NQNFS) {
|
|
|
|
np->n_brev = 0;
|
|
|
|
np->n_lrev = 0;
|
|
|
|
np->n_expiry = (time_t)0;
|
1994-08-19 02:47:43 +04:00
|
|
|
np->n_timer.cqe_next = (struct nfsnode *)0;
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
*npp = np;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
|
|
|
nfs_inactive(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_inactive_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct nfsnode *np;
|
|
|
|
register struct sillyrename *sp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct proc *p = curproc; /* XXX */
|
1994-06-13 19:39:13 +04:00
|
|
|
extern int prtactive;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
np = VTONFS(ap->a_vp);
|
|
|
|
if (prtactive && ap->a_vp->v_usecount != 0)
|
|
|
|
vprint("nfs_inactive: pushing active", ap->a_vp);
|
1993-03-21 12:45:37 +03:00
|
|
|
sp = np->n_sillyrename;
|
|
|
|
np->n_sillyrename = (struct sillyrename *)0;
|
|
|
|
if (sp) {
|
|
|
|
/*
|
|
|
|
* Remove the silly file that was rename'd earlier
|
|
|
|
*/
|
1994-06-08 15:33:09 +04:00
|
|
|
(void) nfs_vinvalbuf(ap->a_vp, 0, sp->s_cred, p, 1);
|
|
|
|
nfs_removeit(sp);
|
1993-03-21 12:45:37 +03:00
|
|
|
crfree(sp->s_cred);
|
|
|
|
vrele(sp->s_dvp);
|
1994-06-08 15:33:09 +04:00
|
|
|
#ifdef SILLYSEPARATE
|
1993-03-21 12:45:37 +03:00
|
|
|
free((caddr_t)sp, M_NFSREQ);
|
|
|
|
#endif
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
np->n_flag &= (NMODIFIED | NFLUSHINPROG | NFLUSHWANT | NQNFSEVICTED |
|
|
|
|
NQNFSNONCACHE | NQNFSWRITE);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reclaim an nfsnode so that it can be used for other purposes.
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
|
|
|
nfs_reclaim(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_reclaim_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
register struct vnode *vp = ap->a_vp;
|
1993-03-21 12:45:37 +03:00
|
|
|
register struct nfsnode *np = VTONFS(vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
register struct nfsmount *nmp = VFSTONFS(vp->v_mount);
|
1994-06-13 19:39:13 +04:00
|
|
|
extern int prtactive;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (prtactive && vp->v_usecount != 0)
|
|
|
|
vprint("nfs_reclaim: pushing active", vp);
|
1994-08-19 02:47:43 +04:00
|
|
|
LIST_REMOVE(np, n_hash);
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For nqnfs, take it off the timer queue as required.
|
|
|
|
*/
|
1994-08-19 02:47:43 +04:00
|
|
|
if ((nmp->nm_flag & NFSMNT_NQNFS) && np->n_timer.cqe_next != 0) {
|
|
|
|
CIRCLEQ_REMOVE(&nmp->nm_timerhead, np, n_timer);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
cache_purge(vp);
|
1994-06-08 15:33:09 +04:00
|
|
|
FREE(vp->v_data, M_NFSNODE);
|
|
|
|
vp->v_data = (void *)0;
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock an nfsnode
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
|
|
|
nfs_lock(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_lock_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:33:09 +04:00
|
|
|
register struct vnode *vp = ap->a_vp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* Ugh, another place where interruptible mounts will get hung.
|
|
|
|
* If you make this sleep interruptible, then you have to fix all
|
|
|
|
* the VOP_LOCK() calls to expect interruptibility.
|
|
|
|
*/
|
|
|
|
while (vp->v_flag & VXLOCK) {
|
|
|
|
vp->v_flag |= VXWANT;
|
|
|
|
sleep((caddr_t)vp, PINOD);
|
|
|
|
}
|
|
|
|
if (vp->v_tag == VT_NON)
|
|
|
|
return (ENOENT);
|
1994-04-22 03:23:29 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unlock an nfsnode
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
|
|
|
nfs_unlock(v)
|
|
|
|
void *v;
|
|
|
|
{
|
|
|
|
#if 0
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_unlock_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
|
|
|
#endif
|
1994-04-22 03:23:29 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for a locked nfsnode
|
|
|
|
*/
|
1996-02-10 00:48:19 +03:00
|
|
|
int
|
|
|
|
nfs_islocked(v)
|
|
|
|
void *v;
|
|
|
|
{
|
|
|
|
#if 0
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_islocked_args /* {
|
|
|
|
struct vnode *a_vp;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nfs abort op, called after namei() when a CREATE/DELETE isn't actually
|
|
|
|
* done. Currently nothing to do.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1994-06-08 15:33:09 +04:00
|
|
|
int
|
1996-02-10 00:48:19 +03:00
|
|
|
nfs_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 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
if ((ap->a_cnp->cn_flags & (HASBUF | SAVESTART)) == HASBUF)
|
|
|
|
FREE(ap->a_cnp->cn_pnbuf, M_NAMEI);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|