3634d5b241
LK_CANRECURSE after a lock is created. Use them to implement macros that otherwise manipulated the flags directly. Assert that the associated lockmgr lock is exclusively locked by the current thread when manipulating these flags to ensure the flag updates are safe. This last change required some minor shuffling in a few filesystems to exclusively lock a brand new vnode slightly earlier. Reviewed by: kib MFC after: 3 days
441 lines
11 KiB
C
441 lines
11 KiB
C
/*-
|
|
* Copyright (c) 2000-2001 Boris Popov
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/proc.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/sx.h>
|
|
#include <sys/sysctl.h>
|
|
#include <sys/time.h>
|
|
#include <sys/vnode.h>
|
|
|
|
#include <netsmb/smb.h>
|
|
#include <netsmb/smb_conn.h>
|
|
#include <netsmb/smb_subr.h>
|
|
|
|
#include <vm/vm.h>
|
|
#include <vm/vm_extern.h>
|
|
/*#include <vm/vm_page.h>
|
|
#include <vm/vm_object.h>*/
|
|
|
|
#include <fs/smbfs/smbfs.h>
|
|
#include <fs/smbfs/smbfs_node.h>
|
|
#include <fs/smbfs/smbfs_subr.h>
|
|
|
|
#define SMBFS_NOHASH(smp, hval) (&(smp)->sm_hash[(hval) & (smp)->sm_hashlen])
|
|
#define smbfs_hash_lock(smp) sx_xlock(&smp->sm_hashlock)
|
|
#define smbfs_hash_unlock(smp) sx_xunlock(&smp->sm_hashlock)
|
|
|
|
extern struct vop_vector smbfs_vnodeops; /* XXX -> .h file */
|
|
|
|
MALLOC_DEFINE(M_SMBNODE, "smbufs_node", "SMBFS vnode private part");
|
|
static MALLOC_DEFINE(M_SMBNODENAME, "smbufs_nname", "SMBFS node name");
|
|
|
|
int smbfs_hashprint(struct mount *mp);
|
|
|
|
#if 0
|
|
#ifdef SYSCTL_DECL
|
|
SYSCTL_DECL(_vfs_smbfs);
|
|
#endif
|
|
SYSCTL_PROC(_vfs_smbfs, OID_AUTO, vnprint, CTLFLAG_WR|CTLTYPE_OPAQUE,
|
|
NULL, 0, smbfs_hashprint, "S,vnlist", "vnode hash");
|
|
#endif
|
|
|
|
#define FNV_32_PRIME ((u_int32_t) 0x01000193UL)
|
|
#define FNV1_32_INIT ((u_int32_t) 33554467UL)
|
|
|
|
u_int32_t
|
|
smbfs_hash(const u_char *name, int nmlen)
|
|
{
|
|
u_int32_t v;
|
|
|
|
for (v = FNV1_32_INIT; nmlen; name++, nmlen--) {
|
|
v *= FNV_32_PRIME;
|
|
v ^= (u_int32_t)*name;
|
|
}
|
|
return v;
|
|
}
|
|
|
|
int
|
|
smbfs_hashprint(struct mount *mp)
|
|
{
|
|
struct smbmount *smp = VFSTOSMBFS(mp);
|
|
struct smbnode_hashhead *nhpp;
|
|
struct smbnode *np;
|
|
int i;
|
|
|
|
for(i = 0; i <= smp->sm_hashlen; i++) {
|
|
nhpp = &smp->sm_hash[i];
|
|
LIST_FOREACH(np, nhpp, n_hash)
|
|
vprint("", SMBTOV(np));
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static char *
|
|
smbfs_name_alloc(const u_char *name, int nmlen)
|
|
{
|
|
u_char *cp;
|
|
|
|
nmlen++;
|
|
#ifdef SMBFS_NAME_DEBUG
|
|
cp = malloc(nmlen + 2 + sizeof(int), M_SMBNODENAME, M_WAITOK);
|
|
*(int*)cp = nmlen;
|
|
cp += sizeof(int);
|
|
cp[0] = 0xfc;
|
|
cp++;
|
|
bcopy(name, cp, nmlen - 1);
|
|
cp[nmlen] = 0xfe;
|
|
#else
|
|
cp = malloc(nmlen, M_SMBNODENAME, M_WAITOK);
|
|
bcopy(name, cp, nmlen - 1);
|
|
#endif
|
|
cp[nmlen - 1] = 0;
|
|
return cp;
|
|
}
|
|
|
|
static void
|
|
smbfs_name_free(u_char *name)
|
|
{
|
|
#ifdef SMBFS_NAME_DEBUG
|
|
int nmlen, slen;
|
|
u_char *cp;
|
|
|
|
cp = name;
|
|
cp--;
|
|
if (*cp != 0xfc)
|
|
panic("First byte of name entry '%s' corrupted", name);
|
|
cp -= sizeof(int);
|
|
nmlen = *(int*)cp;
|
|
slen = strlen(name) + 1;
|
|
if (nmlen != slen)
|
|
panic("Name length mismatch: was %d, now %d name '%s'",
|
|
nmlen, slen, name);
|
|
if (name[nmlen] != 0xfe)
|
|
panic("Last byte of name entry '%s' corrupted\n", name);
|
|
free(cp, M_SMBNODENAME);
|
|
#else
|
|
free(name, M_SMBNODENAME);
|
|
#endif
|
|
}
|
|
|
|
static int
|
|
smbfs_node_alloc(struct mount *mp, struct vnode *dvp,
|
|
const char *name, int nmlen, struct smbfattr *fap, struct vnode **vpp)
|
|
{
|
|
struct vattr vattr;
|
|
struct thread *td = curthread; /* XXX */
|
|
struct smbmount *smp = VFSTOSMBFS(mp);
|
|
struct smbnode_hashhead *nhpp;
|
|
struct smbnode *np, *np2, *dnp;
|
|
struct vnode *vp;
|
|
u_long hashval;
|
|
int error;
|
|
|
|
*vpp = NULL;
|
|
if (smp->sm_root != NULL && dvp == NULL) {
|
|
SMBERROR("do not allocate root vnode twice!\n");
|
|
return EINVAL;
|
|
}
|
|
if (nmlen == 2 && bcmp(name, "..", 2) == 0) {
|
|
if (dvp == NULL)
|
|
return EINVAL;
|
|
vp = VTOSMB(VTOSMB(dvp)->n_parent)->n_vnode;
|
|
error = vget(vp, LK_EXCLUSIVE, td);
|
|
if (error == 0)
|
|
*vpp = vp;
|
|
return error;
|
|
} else if (nmlen == 1 && name[0] == '.') {
|
|
SMBERROR("do not call me with dot!\n");
|
|
return EINVAL;
|
|
}
|
|
dnp = dvp ? VTOSMB(dvp) : NULL;
|
|
if (dnp == NULL && dvp != NULL) {
|
|
vprint("smbfs_node_alloc: dead parent vnode", dvp);
|
|
return EINVAL;
|
|
}
|
|
hashval = smbfs_hash(name, nmlen);
|
|
retry:
|
|
smbfs_hash_lock(smp);
|
|
loop:
|
|
nhpp = SMBFS_NOHASH(smp, hashval);
|
|
LIST_FOREACH(np, nhpp, n_hash) {
|
|
vp = SMBTOV(np);
|
|
if (np->n_parent != dvp ||
|
|
np->n_nmlen != nmlen || bcmp(name, np->n_name, nmlen) != 0)
|
|
continue;
|
|
VI_LOCK(vp);
|
|
smbfs_hash_unlock(smp);
|
|
if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK, td) != 0)
|
|
goto retry;
|
|
/* Force cached attributes to be refreshed if stale. */
|
|
(void)VOP_GETATTR(vp, &vattr, td->td_ucred);
|
|
/*
|
|
* If the file type on the server is inconsistent with
|
|
* what it was when we created the vnode, kill the
|
|
* bogus vnode now and fall through to the code below
|
|
* to create a new one with the right type.
|
|
*/
|
|
if ((vp->v_type == VDIR && (np->n_dosattr & SMB_FA_DIR) == 0) ||
|
|
(vp->v_type == VREG && (np->n_dosattr & SMB_FA_DIR) != 0)) {
|
|
vgone(vp);
|
|
vput(vp);
|
|
break;
|
|
}
|
|
*vpp = vp;
|
|
return 0;
|
|
}
|
|
smbfs_hash_unlock(smp);
|
|
/*
|
|
* If we don't have node attributes, then it is an explicit lookup
|
|
* for an existing vnode.
|
|
*/
|
|
if (fap == NULL)
|
|
return ENOENT;
|
|
|
|
np = malloc(sizeof *np, M_SMBNODE, M_WAITOK);
|
|
error = getnewvnode("smbfs", mp, &smbfs_vnodeops, &vp);
|
|
if (error) {
|
|
free(np, M_SMBNODE);
|
|
return error;
|
|
}
|
|
error = insmntque(vp, mp); /* XXX: Too early for mpsafe fs */
|
|
if (error != 0) {
|
|
free(np, M_SMBNODE);
|
|
return (error);
|
|
}
|
|
vp->v_type = fap->fa_attr & SMB_FA_DIR ? VDIR : VREG;
|
|
bzero(np, sizeof(*np));
|
|
vp->v_data = np;
|
|
np->n_vnode = vp;
|
|
np->n_mount = VFSTOSMBFS(mp);
|
|
np->n_nmlen = nmlen;
|
|
np->n_name = smbfs_name_alloc(name, nmlen);
|
|
np->n_ino = fap->fa_ino;
|
|
|
|
if (dvp) {
|
|
ASSERT_VOP_LOCKED(dvp, "smbfs_node_alloc");
|
|
np->n_parent = dvp;
|
|
if (/*vp->v_type == VDIR &&*/ (dvp->v_vflag & VV_ROOT) == 0) {
|
|
vref(dvp);
|
|
np->n_flag |= NREFPARENT;
|
|
}
|
|
} else if (vp->v_type == VREG)
|
|
SMBERROR("new vnode '%s' born without parent ?\n", np->n_name);
|
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
|
|
VN_LOCK_AREC(vp);
|
|
|
|
smbfs_hash_lock(smp);
|
|
LIST_FOREACH(np2, nhpp, n_hash) {
|
|
if (np2->n_parent != dvp ||
|
|
np2->n_nmlen != nmlen || bcmp(name, np2->n_name, nmlen) != 0)
|
|
continue;
|
|
vput(vp);
|
|
/* smb_name_free(np->n_name);
|
|
free(np, M_SMBNODE);*/
|
|
goto loop;
|
|
}
|
|
LIST_INSERT_HEAD(nhpp, np, n_hash);
|
|
smbfs_hash_unlock(smp);
|
|
*vpp = vp;
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
smbfs_nget(struct mount *mp, struct vnode *dvp, const char *name, int nmlen,
|
|
struct smbfattr *fap, struct vnode **vpp)
|
|
{
|
|
struct smbnode *np;
|
|
struct vnode *vp;
|
|
int error;
|
|
|
|
*vpp = NULL;
|
|
error = smbfs_node_alloc(mp, dvp, name, nmlen, fap, &vp);
|
|
if (error)
|
|
return error;
|
|
np = VTOSMB(vp);
|
|
if (fap)
|
|
smbfs_attr_cacheenter(vp, fap);
|
|
*vpp = vp;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Free smbnode, and give vnode back to system
|
|
*/
|
|
int
|
|
smbfs_reclaim(ap)
|
|
struct vop_reclaim_args /* {
|
|
struct vnode *a_vp;
|
|
struct thread *a_p;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct vnode *dvp;
|
|
struct smbnode *np = VTOSMB(vp);
|
|
struct smbmount *smp = VTOSMBFS(vp);
|
|
|
|
SMBVDEBUG("%s,%d\n", np->n_name, vrefcnt(vp));
|
|
|
|
KASSERT((np->n_flag & NOPEN) == 0, ("file not closed before reclaim"));
|
|
|
|
smbfs_hash_lock(smp);
|
|
/*
|
|
* Destroy the vm object and flush associated pages.
|
|
*/
|
|
vnode_destroy_vobject(vp);
|
|
|
|
dvp = (np->n_parent && (np->n_flag & NREFPARENT)) ?
|
|
np->n_parent : NULL;
|
|
|
|
if (np->n_hash.le_prev)
|
|
LIST_REMOVE(np, n_hash);
|
|
if (smp->sm_root == np) {
|
|
SMBVDEBUG("root vnode\n");
|
|
smp->sm_root = NULL;
|
|
}
|
|
vp->v_data = NULL;
|
|
smbfs_hash_unlock(smp);
|
|
if (np->n_name)
|
|
smbfs_name_free(np->n_name);
|
|
free(np, M_SMBNODE);
|
|
if (dvp != NULL) {
|
|
vrele(dvp);
|
|
/*
|
|
* Indicate that we released something; see comment
|
|
* in smbfs_unmount().
|
|
*/
|
|
smp->sm_didrele = 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
smbfs_inactive(ap)
|
|
struct vop_inactive_args /* {
|
|
struct vnode *a_vp;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
struct thread *td = ap->a_td;
|
|
struct ucred *cred = td->td_ucred;
|
|
struct vnode *vp = ap->a_vp;
|
|
struct smbnode *np = VTOSMB(vp);
|
|
struct smb_cred scred;
|
|
struct vattr va;
|
|
|
|
SMBVDEBUG("%s: %d\n", VTOSMB(vp)->n_name, vrefcnt(vp));
|
|
if ((np->n_flag & NOPEN) != 0) {
|
|
smb_makescred(&scred, td, cred);
|
|
smbfs_vinvalbuf(vp, td);
|
|
if (vp->v_type == VREG) {
|
|
VOP_GETATTR(vp, &va, cred);
|
|
smbfs_smb_close(np->n_mount->sm_share, np->n_fid,
|
|
&np->n_mtime, &scred);
|
|
} else if (vp->v_type == VDIR) {
|
|
if (np->n_dirseq != NULL) {
|
|
smbfs_findclose(np->n_dirseq, &scred);
|
|
np->n_dirseq = NULL;
|
|
}
|
|
}
|
|
np->n_flag &= ~NOPEN;
|
|
smbfs_attr_cacheremove(vp);
|
|
}
|
|
if (np->n_flag & NGONE)
|
|
vrecycle(vp, td);
|
|
return (0);
|
|
}
|
|
/*
|
|
* routines to maintain vnode attributes cache
|
|
* smbfs_attr_cacheenter: unpack np.i to vattr structure
|
|
*/
|
|
void
|
|
smbfs_attr_cacheenter(struct vnode *vp, struct smbfattr *fap)
|
|
{
|
|
struct smbnode *np = VTOSMB(vp);
|
|
|
|
if (vp->v_type == VREG) {
|
|
if (np->n_size != fap->fa_size) {
|
|
np->n_size = fap->fa_size;
|
|
vnode_pager_setsize(vp, np->n_size);
|
|
}
|
|
} else if (vp->v_type == VDIR) {
|
|
np->n_size = 16384; /* should be a better way ... */
|
|
} else
|
|
return;
|
|
np->n_mtime = fap->fa_mtime;
|
|
np->n_dosattr = fap->fa_attr;
|
|
np->n_attrage = time_second;
|
|
return;
|
|
}
|
|
|
|
int
|
|
smbfs_attr_cachelookup(struct vnode *vp, struct vattr *va)
|
|
{
|
|
struct smbnode *np = VTOSMB(vp);
|
|
struct smbmount *smp = VTOSMBFS(vp);
|
|
int diff;
|
|
|
|
diff = time_second - np->n_attrage;
|
|
if (diff > 2) /* XXX should be configurable */
|
|
return ENOENT;
|
|
va->va_type = vp->v_type; /* vnode type (for create) */
|
|
if (vp->v_type == VREG) {
|
|
va->va_mode = smp->sm_file_mode; /* files access mode and type */
|
|
if (np->n_dosattr & SMB_FA_RDONLY)
|
|
va->va_mode &= ~(S_IWUSR|S_IWGRP|S_IWOTH);
|
|
} else if (vp->v_type == VDIR) {
|
|
va->va_mode = smp->sm_dir_mode; /* files access mode and type */
|
|
} else
|
|
return EINVAL;
|
|
va->va_size = np->n_size;
|
|
va->va_nlink = 1; /* number of references to file */
|
|
va->va_uid = smp->sm_uid; /* owner user id */
|
|
va->va_gid = smp->sm_gid; /* owner group id */
|
|
va->va_fsid = vp->v_mount->mnt_stat.f_fsid.val[0];
|
|
va->va_fileid = np->n_ino; /* file id */
|
|
if (va->va_fileid == 0)
|
|
va->va_fileid = 2;
|
|
va->va_blocksize = SSTOVC(smp->sm_share)->vc_txmax;
|
|
va->va_mtime = np->n_mtime;
|
|
va->va_atime = va->va_ctime = va->va_mtime; /* time file changed */
|
|
va->va_gen = VNOVAL; /* generation number of file */
|
|
va->va_flags = 0; /* flags defined for file */
|
|
va->va_rdev = NODEV; /* device the special file represents */
|
|
va->va_bytes = va->va_size; /* bytes of disk space held by file */
|
|
va->va_filerev = 0; /* file modification number */
|
|
va->va_vaflags = 0; /* operations flags */
|
|
return 0;
|
|
}
|