/* $NetBSD: smbfs_node.c,v 1.58 2017/05/28 16:36:37 hannken Exp $ */ /* * 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. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Boris Popov. * 4. Neither the name of the author nor the names of any co-contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * 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: src/sys/fs/smbfs/smbfs_node.c,v 1.5 2001/12/20 22:42:26 dillon Exp */ #include __KERNEL_RCSID(0, "$NetBSD: smbfs_node.c,v 1.58 2017/05/28 16:36:37 hannken Exp $"); #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include extern int (**smbfs_vnodeop_p)(void *); static const struct genfs_ops smbfs_genfsops = { .gop_write = genfs_compat_gop_write, }; struct pool smbfs_node_pool; int smbfs_loadvnode(struct mount *mp, struct vnode *vp, const void *key, size_t key_len, const void **new_key) { struct smbnode *np; np = pool_get(&smbfs_node_pool, PR_WAITOK); memset(np, 0, sizeof(*np)); vp->v_tag = VT_SMBFS; vp->v_op = smbfs_vnodeop_p; vp->v_type = VNON; vp->v_data = np; genfs_node_init(vp, &smbfs_genfsops); mutex_init(&np->n_lock, MUTEX_DEFAULT, IPL_NONE); np->n_key = kmem_alloc(key_len, KM_SLEEP); memcpy(np->n_key, key, key_len); KASSERT(key_len == SMBFS_KEYSIZE(np->n_nmlen)); np->n_vnode = vp; np->n_mount = VFSTOSMBFS(mp); if (np->n_parent != NULL && (np->n_parent->v_vflag & VV_ROOT) == 0) { vref(np->n_parent); np->n_flag |= NREFPARENT; } *new_key = np->n_key; return 0; } int smbfs_nget(struct mount *mp, struct vnode *dvp, const char *name, int nmlen, struct smbfattr *fap, struct vnode **vpp) { struct smbkey *key; struct smbmount *smp __diagused; struct smbnode *np; struct vnode *vp; union { struct smbkey u_key; char u_data[64]; } small_key; int error; const int key_len = SMBFS_KEYSIZE(nmlen); smp = VFSTOSMBFS(mp); /* do not allow allocating root vnode twice */ KASSERT(dvp != NULL || smp->sm_root == NULL); /* do not call with dot */ KASSERT(nmlen != 1 || name[0] != '.'); if (nmlen == 2 && memcmp(name, "..", 2) == 0) { if (dvp == NULL) return EINVAL; vp = VTOSMB(VTOSMB(dvp)->n_parent)->n_vnode; vref(vp); *vpp = vp; return 0; } #ifdef DIAGNOSTIC struct smbnode *dnp = dvp ? VTOSMB(dvp) : NULL; if (dnp == NULL && dvp != NULL) panic("smbfs_node_alloc: dead parent vnode %p", dvp); #endif if (key_len > sizeof(small_key)) key = kmem_alloc(key_len, KM_SLEEP); else key = &small_key.u_key; key->k_parent = dvp; key->k_nmlen = nmlen; memcpy(key->k_name, name, nmlen); retry: error = vcache_get(mp, key, key_len, &vp); if (error) goto out; mutex_enter(vp->v_interlock); np = VTOSMB(vp); KASSERT(np != NULL); mutex_enter(&np->n_lock); mutex_exit(vp->v_interlock); if (vp->v_type == VNON) { /* * If we don't have node attributes, then it is an * explicit lookup for an existing vnode. */ if (fap == NULL) { mutex_exit(&np->n_lock); vrele(vp); error = ENOENT; goto out; } vp->v_type = fap->fa_attr & SMB_FA_DIR ? VDIR : VREG; np->n_ino = fap->fa_ino; np->n_size = fap->fa_size; /* new file vnode has to have a parent */ KASSERT(vp->v_type != VREG || dvp != NULL); uvm_vnp_setsize(vp, np->n_size); } else { struct vattr vattr; /* Force cached attributes to be refreshed if stale. */ (void)VOP_GETATTR(vp, &vattr, curlwp->l_cred); /* * If the file type on the server is inconsistent with * what it was when we created the vnode, kill the * bogus vnode now and retry 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)) { mutex_exit(&np->n_lock); vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); smbfs_uncache(vp); goto retry; } } if (fap) smbfs_attr_cacheenter(vp, fap); *vpp = vp; mutex_exit(&np->n_lock); out: if (key != &small_key.u_key) kmem_free(key, key_len); return error; } /* * Remove vnode that changed its type on the server from * the vnode cache and the name cache. */ void smbfs_uncache(struct vnode *vp) { static uint32_t gen = 0; int error __diagused; char newname[10]; struct mount *mp = vp->v_mount; struct smbnode *np = VTOSMB(vp); struct smbkey *key = np->n_key, *oldkey, *newkey; int key_len = SMBFS_KEYSIZE(key->k_nmlen), newkey_len; /* Setup old key as current key. */ oldkey = kmem_alloc(key_len, KM_SLEEP); memcpy(oldkey, key, key_len); /* Setup new key as unique and illegal name with colon. */ snprintf(newname, sizeof(newname), ":%08x", atomic_inc_uint_nv(&gen)); newkey = kmem_alloc(SMBFS_KEYSIZE(strlen(newname)), KM_SLEEP); newkey->k_parent = NULL; newkey->k_nmlen = strlen(newname); memcpy(newkey->k_name, newname, newkey->k_nmlen); newkey_len = SMBFS_KEYSIZE(newkey->k_nmlen); /* Release parent and mark as gone. */ if (np->n_parent && (np->n_flag & NREFPARENT)) { vrele(np->n_parent); np->n_flag &= ~NREFPARENT; } np->n_flag |= NGONE; /* Rekey the node. */ error = vcache_rekey_enter(mp, vp, oldkey, key_len, newkey, newkey_len); KASSERT(error == 0); np->n_key = newkey; vcache_rekey_exit(mp, vp, oldkey, key_len, newkey, newkey_len); /* Purge from name cache and cleanup. */ cache_purge(vp); kmem_free(key, key_len); kmem_free(oldkey, key_len); vput(vp); } /* * Free smbnode, and give vnode back to system */ int smbfs_reclaim(void *v) { struct vop_reclaim_v2_args /* { struct vnode *a_vp; struct thread *a_p; } */ *ap = v; struct vnode *vp = ap->a_vp; struct vnode *dvp; struct smbnode *np = VTOSMB(vp); struct smbmount *smp = VTOSMBFS(vp); VOP_UNLOCK(vp); SMBVDEBUG("%.*s,%d\n", (int) np->n_nmlen, np->n_name, vp->v_usecount); dvp = (np->n_parent && (np->n_flag & NREFPARENT)) ? np->n_parent : NULL; if (smp->sm_root == np) { SMBVDEBUG0("root vnode\n"); smp->sm_root = NULL; } genfs_node_destroy(vp); /* To interlock with smbfs_nget(). */ mutex_enter(vp->v_interlock); vp->v_data = NULL; mutex_exit(vp->v_interlock); mutex_destroy(&np->n_lock); kmem_free(np->n_key, SMBFS_KEYSIZE(np->n_nmlen)); pool_put(&smbfs_node_pool, np); if (dvp) { vrele(dvp); /* * Indicate that we released something; see comment * in smbfs_unmount(). */ smp->sm_didrele = 1; } return 0; } int smbfs_inactive(void *v) { struct vop_inactive_v2_args /* { struct vnode *a_vp; bool *a_recycle; } */ *ap = v; struct lwp *l = curlwp; kauth_cred_t cred = l->l_cred; struct vnode *vp = ap->a_vp; struct smbnode *np = VTOSMB(vp); struct smb_cred scred; SMBVDEBUG("%.*s: %d\n", (int) np->n_nmlen, np->n_name, vp->v_usecount); if ((np->n_flag & NOPEN) != 0) { struct smb_share *ssp = np->n_mount->sm_share; smbfs_vinvalbuf(vp, V_SAVE, cred, l, 1); smb_makescred(&scred, l, cred); if (vp->v_type == VDIR && np->n_dirseq) { smbfs_findclose(np->n_dirseq, &scred); np->n_dirseq = NULL; } if (vp->v_type != VDIR || SMB_CAPS(SSTOVC(ssp)) & SMB_CAP_NT_SMBS) smbfs_smb_close(ssp, np->n_fid, &np->n_mtime, &scred); np->n_flag &= ~NOPEN; smbfs_attr_cacheremove(vp); } *ap->a_recycle = ((vp->v_type == VNON) || (np->n_flag & NGONE) != 0); 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; uvm_vnp_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_uptime; } int smbfs_attr_cachelookup(struct vnode *vp, struct vattr *va) { struct smbnode *np = VTOSMB(vp); struct smbmount *smp = VTOSMBFS(vp); time_t diff; diff = time_uptime - np->n_attrage; if (diff > SMBFS_ATTRTIMO) /* 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_args.file_mode; /* files access mode and type */ } else if (vp->v_type == VDIR) { va->va_mode = smp->sm_args.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_args.uid; /* owner user id */ va->va_gid = smp->sm_args.gid; /* owner group id */ va->va_fsid = vp->v_mount->mnt_stat.f_fsidx.__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 = VNOVAL; /* 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; }