2000-09-20 02:13:01 +04:00
|
|
|
/* $NetBSD: nfs_node.c,v 1.36 2000/09/19 22:13:01 fvdl 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.
|
|
|
|
*
|
1996-02-18 14:53:36 +03:00
|
|
|
* @(#)nfs_node.c 8.6 (Berkeley) 5/22/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2000-09-19 21:04:50 +04:00
|
|
|
#include "opt_nfs.h"
|
1996-02-18 14:53:36 +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>
|
1998-09-01 07:11:36 +04:00
|
|
|
#include <sys/pool.h>
|
1997-07-08 03:34:55 +04:00
|
|
|
#include <sys/lock.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
#include <nfs/rpcv2.h>
|
1996-02-18 14:53:36 +03:00
|
|
|
#include <nfs/nfsproto.h>
|
1993-12-18 03:40:47 +03:00
|
|
|
#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
|
|
|
LIST_HEAD(nfsnodehashhead, nfsnode) *nfsnodehashtbl;
|
|
|
|
u_long nfsnodehash;
|
1997-07-08 03:34:55 +04:00
|
|
|
struct lock nfs_hashlock;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-09-01 07:11:36 +04:00
|
|
|
struct pool nfs_node_pool; /* memory pool for nfs nodes */
|
|
|
|
struct pool nfs_vattr_pool; /* memory pool for nfs vattrs */
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
|
1998-02-07 05:44:44 +03:00
|
|
|
nfsnodehashtbl = hashinit(desiredvnodes, M_NFSNODE, M_WAITOK, &nfsnodehash);
|
1997-07-08 03:34:55 +04:00
|
|
|
lockinit(&nfs_hashlock, PINOD, "nfs_hashlock", 0, 0);
|
1998-09-01 07:11:36 +04:00
|
|
|
|
|
|
|
pool_init(&nfs_node_pool, sizeof(struct nfsnode), 0, 0, 0, "nfsnodepl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_NFSNODE);
|
|
|
|
pool_init(&nfs_vattr_pool, sizeof(struct vattr), 0, 0, 0, "nfsvapl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_NFSNODE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2000-03-16 21:08:17 +03:00
|
|
|
/*
|
|
|
|
* Free resources previoslu allocated in nfs_nhinit().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
nfs_nhdone()
|
|
|
|
{
|
|
|
|
hashdone(nfsnodehashtbl, M_NFSNODE);
|
|
|
|
pool_destroy(&nfs_node_pool);
|
|
|
|
pool_destroy(&nfs_vattr_pool);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Compute an entry in the NFS hash table structure
|
|
|
|
*/
|
1996-02-18 14:53:36 +03:00
|
|
|
u_long
|
|
|
|
nfs_hash(fhp, fhsize)
|
2000-03-30 16:51:13 +04:00
|
|
|
nfsfh_t *fhp;
|
1996-02-18 14:53:36 +03:00
|
|
|
int fhsize;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 16:51:13 +04:00
|
|
|
u_char *fhpp;
|
|
|
|
u_long fhsum;
|
|
|
|
int i;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
fhpp = &fhp->fh_bytes[0];
|
|
|
|
fhsum = 0;
|
1996-02-18 14:53:36 +03:00
|
|
|
for (i = 0; i < fhsize; i++)
|
1993-03-21 12:45:37 +03:00
|
|
|
fhsum += *fhpp++;
|
1996-02-18 14:53:36 +03:00
|
|
|
return (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
|
1996-02-18 14:53:36 +03:00
|
|
|
nfs_nget(mntp, fhp, fhsize, npp)
|
1993-03-21 12:45:37 +03:00
|
|
|
struct mount *mntp;
|
2000-03-30 16:51:13 +04:00
|
|
|
nfsfh_t *fhp;
|
1996-02-18 14:53:36 +03:00
|
|
|
int fhsize;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct nfsnode **npp;
|
|
|
|
{
|
2000-03-30 16:51:13 +04:00
|
|
|
struct nfsnode *np;
|
1994-08-19 02:47:43 +04:00
|
|
|
struct nfsnodehashhead *nhpp;
|
2000-03-30 16:51:13 +04:00
|
|
|
struct vnode *vp;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct vnode *nvp;
|
|
|
|
int error;
|
|
|
|
|
1996-02-18 14:53:36 +03:00
|
|
|
nhpp = NFSNOHASH(nfs_hash(fhp, fhsize));
|
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) {
|
1996-02-18 14:53:36 +03:00
|
|
|
if (mntp != NFSTOV(np)->v_mount || np->n_fhsize != fhsize ||
|
1998-08-10 00:51:08 +04:00
|
|
|
memcmp((caddr_t)fhp, (caddr_t)np->n_fhp, fhsize))
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
vp = NFSTOV(np);
|
1998-03-01 05:20:01 +03:00
|
|
|
if (vget(vp, LK_EXCLUSIVE))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto loop;
|
|
|
|
*npp = np;
|
|
|
|
return(0);
|
|
|
|
}
|
1998-03-01 05:20:01 +03:00
|
|
|
if (lockmgr(&nfs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0))
|
1997-07-08 03:34:55 +04:00
|
|
|
goto loop;
|
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;
|
1998-03-01 05:20:01 +03:00
|
|
|
lockmgr(&nfs_hashlock, LK_RELEASE, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
1999-07-08 05:05:58 +04:00
|
|
|
nvp->v_vnlock = 0; /* XXX At least untill we do locking */
|
1993-03-21 12:45:37 +03:00
|
|
|
vp = nvp;
|
1998-09-01 07:11:36 +04:00
|
|
|
np = pool_get(&nfs_node_pool, PR_WAITOK);
|
1998-08-10 00:51:08 +04:00
|
|
|
memset((caddr_t)np, 0, sizeof *np);
|
2000-09-20 02:13:01 +04:00
|
|
|
lockinit(&np->n_commitlock, PINOD, "nfsclock", 0, 0);
|
1994-06-08 15:33:09 +04:00
|
|
|
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
|
|
|
|
*/
|
1994-08-19 02:47:43 +04:00
|
|
|
LIST_INSERT_HEAD(nhpp, np, n_hash);
|
1996-02-18 14:53:36 +03:00
|
|
|
if (fhsize > NFS_SMALLFH) {
|
2000-08-03 10:15:02 +04:00
|
|
|
np->n_fhp = malloc(fhsize, M_NFSBIGFH, M_WAITOK);
|
1996-02-18 14:53:36 +03:00
|
|
|
} else
|
|
|
|
np->n_fhp = &np->n_fh;
|
1998-08-10 00:51:08 +04:00
|
|
|
memcpy((caddr_t)np->n_fhp, (caddr_t)fhp, fhsize);
|
1996-02-18 14:53:36 +03:00
|
|
|
np->n_fhsize = fhsize;
|
1999-11-30 02:34:00 +03:00
|
|
|
np->n_accstamp = -1;
|
1998-09-01 07:11:36 +04:00
|
|
|
np->n_vattr = pool_get(&nfs_vattr_pool, PR_WAITOK);
|
1998-08-10 00:51:08 +04:00
|
|
|
memset(np->n_vattr, 0, sizeof (struct vattr));
|
1998-03-01 05:20:01 +03:00
|
|
|
lockmgr(&nfs_hashlock, LK_RELEASE, 0);
|
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-18 14:53:36 +03:00
|
|
|
struct proc *a_p;
|
1996-02-10 00:48:19 +03:00
|
|
|
} */ *ap = v;
|
2000-03-30 16:51:13 +04:00
|
|
|
struct nfsnode *np;
|
|
|
|
struct sillyrename *sp;
|
1998-03-01 05:20:01 +03:00
|
|
|
struct proc *p = ap->a_p;
|
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);
|
1997-02-12 20:26:56 +03:00
|
|
|
if (ap->a_vp->v_type != VDIR) {
|
1996-02-18 14:53:36 +03:00
|
|
|
sp = np->n_sillyrename;
|
1997-02-12 20:26:56 +03:00
|
|
|
np->n_sillyrename = (struct sillyrename *)0;
|
|
|
|
} else
|
1996-02-18 14:53:36 +03:00
|
|
|
sp = (struct sillyrename *)0;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (sp) {
|
1997-02-22 05:45:48 +03:00
|
|
|
/*
|
|
|
|
* If the usecount is greater than zero, then we are
|
|
|
|
* being inactivated by a forcible unmount and do not
|
|
|
|
* have to get our own reference. In the normal case,
|
|
|
|
* we need a reference to keep the vnode from being
|
|
|
|
* recycled by getnewvnode while we do the I/O
|
|
|
|
* associated with discarding the buffers.
|
|
|
|
*/
|
|
|
|
if (ap->a_vp->v_usecount > 0)
|
|
|
|
(void) nfs_vinvalbuf(ap->a_vp, 0, sp->s_cred, p, 1);
|
|
|
|
else if (vget(ap->a_vp, 0))
|
|
|
|
panic("nfs_inactive: lost vnode");
|
|
|
|
else {
|
|
|
|
(void) nfs_vinvalbuf(ap->a_vp, 0, sp->s_cred, p, 1);
|
|
|
|
vrele(ap->a_vp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Remove the silly file that was rename'd earlier
|
|
|
|
*/
|
1994-06-08 15:33:09 +04:00
|
|
|
nfs_removeit(sp);
|
1993-03-21 12:45:37 +03:00
|
|
|
crfree(sp->s_cred);
|
|
|
|
vrele(sp->s_dvp);
|
1996-02-18 14:53:36 +03:00
|
|
|
FREE((caddr_t)sp, M_NFSREQ);
|
1994-06-08 15:33:09 +04:00
|
|
|
}
|
|
|
|
np->n_flag &= (NMODIFIED | NFLUSHINPROG | NFLUSHWANT | NQNFSEVICTED |
|
|
|
|
NQNFSNONCACHE | NQNFSWRITE);
|
1998-03-01 05:20:01 +03:00
|
|
|
VOP_UNLOCK(ap->a_vp, 0);
|
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;
|
2000-03-30 16:51:13 +04:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct nfsnode *np = VTONFS(vp);
|
|
|
|
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);
|
1996-02-18 14:53:36 +03:00
|
|
|
|
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
|
|
|
}
|
1996-02-18 14:53:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Free up any directory cookie structures and
|
|
|
|
* large file handle structures that might be associated with
|
|
|
|
* this nfs node.
|
|
|
|
*/
|
1997-10-10 05:53:17 +04:00
|
|
|
if (vp->v_type == VDIR && np->n_dircache) {
|
1997-10-19 05:46:15 +04:00
|
|
|
nfs_invaldircache(vp, 1);
|
1997-10-10 05:53:17 +04:00
|
|
|
FREE(np->n_dircache, M_NFSDIROFF);
|
1996-02-18 14:53:36 +03:00
|
|
|
}
|
|
|
|
if (np->n_fhsize > NFS_SMALLFH) {
|
2000-08-03 10:15:02 +04:00
|
|
|
free((caddr_t)np->n_fhp, M_NFSBIGFH);
|
1996-02-18 14:53:36 +03:00
|
|
|
}
|
|
|
|
|
1998-09-01 07:11:36 +04:00
|
|
|
pool_put(&nfs_vattr_pool, np->n_vattr);
|
1993-03-21 12:45:37 +03:00
|
|
|
cache_purge(vp);
|
1998-09-01 07:11:36 +04:00
|
|
|
pool_put(&nfs_node_pool, vp->v_data);
|
1994-06-08 15:33:09 +04:00
|
|
|
vp->v_data = (void *)0;
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|