smb_node.c revision 8b2cc8ac894f2d58f38cf2fb7c3ac778f4c57c09
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* SMB Node State Machine
* ----------------------
*
*
* +----------- Creation/Allocation
* |
* | T0
* |
* v
* +----------------------------+ T1
* | SMB_NODE_STATE_AVAILABLE |--------------------+
* +----------------------------+ |
* | ^ |
* | | v
* | | T2 +-------------------------------+
* | |<---------| SMB_NODE_STATE_OPLOCK_GRANTED |
* | | +-------------------------------+
* | T5 | |
* | | | T3
* | | v
* | | T4 +--------------------------------+
* | +----------| SMB_NODE_STATE_OPLOCK_BREAKING |
* | +--------------------------------+
* |
* v
* +-----------------------------+
* | SMB_NODE_STATE_DESTROYING |
* +-----------------------------+
* |
* |
* | T6
* |
* +----------> Deletion/Free
*
* Transition T0
*
* This transition occurs in smb_node_lookup(). If the node looked for is
* not found in the has table a new node is created. The reference count is
* initialized to 1 and the state initialized to SMB_NODE_STATE_AVAILABLE.
*
* Transition T1
*
* This transition occurs smb_oplock_acquire() during an OPEN.
*
* Transition T2
*
* This transition occurs in smb_oplock_release(). The events triggering
* it are:
*
* - LockingAndX sent by the client that was granted the oplock.
* - Closing of the file.
*
* Transition T3
*
* This transition occurs in smb_oplock_break(). The events triggering
* it are:
*
* - Another client wants to open the file.
* - A client is trying to delete the file.
* - A client is trying to rename the file.
* - A client is trying to set/modify the file attributes.
*
* Transition T4
*
* This transition occurs in smb_oplock_release or smb_oplock_break(). The
* events triggering it are:
*
* - The client that was granting the oplock releases it (close or
* LockingAndx).
* - The time alloted to release the oplock expired.
*
* Transition T5
*
* This transition occurs in smb_node_release(). If the reference count
* drops to zero the state is moved to SMB_NODE_STATE_DESTROYING and no more
* reference count will be given out for that node.
*
* Transition T6
*
* This transition occurs in smb_node_release(). The structure is deleted.
*
* Comments
* --------
*
* The reason the smb node has 2 states is the following synchronization
* rule:
*
* There's a mutex embedded in the node used to protect its fields and
* there's a lock embedded in the bucket of the hash table the node belongs
* to. To increment or to decrement the reference count the mutex must be
* entered. To insert the node into the bucket and to remove it from the
* bucket the lock must be entered in RW_WRITER mode. When both (mutex and
* lock) have to be entered, the lock has always to be entered first then
* the mutex. This prevents a deadlock between smb_node_lookup() and
* smb_node_release() from occurring. However, in smb_node_release() when the
* reference count drops to zero and triggers the deletion of the node, the
* mutex has to be released before entering the lock of the bucket (to
* remove the node). This creates a window during which the node that is
* about to be freed could be given out by smb_node_lookup(). To close that
* window the node is moved to the state SMB_NODE_STATE_DESTROYING before
* releasing the mutex. That way, even if smb_node_lookup() finds it, the
* state will indicate that the node should be treated as non existent (of
* course the state of the node should be tested/updated under the
* protection of the mutex).
*/
#include <smbsrv/smb_incl.h>
#include <smbsrv/smb_fsops.h>
#include <smbsrv/smb_kstat.h>
#include <sys/pathname.h>
#include <sys/sdt.h>
#include <sys/nbmlock.h>
uint32_t smb_is_executable(char *);
static void smb_node_delete_on_close(smb_node_t *);
static void smb_node_create_audit_buf(smb_node_t *, int);
static void smb_node_destroy_audit_buf(smb_node_t *);
static void smb_node_audit(smb_node_t *);
static smb_node_t *smb_node_alloc(char *, vnode_t *, smb_attr_t *,
smb_llist_t *bucket, uint32_t hashkey);
static void smb_node_free(smb_node_t *);
static int smb_node_constructor(void *, void *, int);
static void smb_node_destructor(void *, void *);
static smb_llist_t *smb_node_get_hash(fsid_t *, smb_attr_t *, uint32_t *);
#define VALIDATE_DIR_NODE(_dir_, _node_) \
ASSERT((_dir_)->n_magic == SMB_NODE_MAGIC); \
ASSERT(((_dir_)->vp->v_xattrdir) || ((_dir_)->vp->v_type == VDIR)); \
ASSERT((_dir_)->dir_snode != (_node_));
static kmem_cache_t *smb_node_cache = NULL;
static boolean_t smb_node_initialized = B_FALSE;
static smb_llist_t smb_node_hash_table[SMBND_HASH_MASK+1];
/*
* smb_node_init
*
* Initialization of the SMB node layer.
*
* This function is not multi-thread safe. The caller must make sure only one
* thread makes the call.
*/
int
smb_node_init(void)
{
int i;
if (smb_node_initialized)
return (0);
smb_node_cache = kmem_cache_create(SMBSRV_KSTAT_NODE_CACHE,
sizeof (smb_node_t), 8, smb_node_constructor, smb_node_destructor,
NULL, NULL, NULL, 0);
for (i = 0; i <= SMBND_HASH_MASK; i++) {
smb_llist_constructor(&smb_node_hash_table[i],
sizeof (smb_node_t), offsetof(smb_node_t, n_lnd));
}
smb_node_initialized = B_TRUE;
return (0);
}
/*
* smb_node_fini
*
* This function is not multi-thread safe. The caller must make sure only one
* thread makes the call.
*/
void
smb_node_fini(void)
{
int i;
if (!smb_node_initialized)
return;
#ifdef DEBUG
for (i = 0; i <= SMBND_HASH_MASK; i++) {
smb_node_t *node;
/*
* The following sequence is just intended for sanity check.
* This will have to be modified when the code goes into
* production.
*
* The SMB node hash table should be emtpy at this point. If the
* hash table is not empty a panic will be triggered.
*
* The reason why SMB nodes are still remaining in the hash
* table is problably due to a mismatch between calls to
* smb_node_lookup() and smb_node_release(). You must track that
* down.
*/
node = smb_llist_head(&smb_node_hash_table[i]);
ASSERT(node == NULL);
}
#endif
for (i = 0; i <= SMBND_HASH_MASK; i++) {
smb_llist_destructor(&smb_node_hash_table[i]);
}
kmem_cache_destroy(smb_node_cache);
smb_node_cache = NULL;
smb_node_initialized = B_FALSE;
}
/*
* smb_node_lookup()
*
* NOTE: This routine should only be called by the file system interface layer,
* and not by SMB.
*
* smb_node_lookup() is called upon successful lookup, mkdir, and create
* (for both non-streams and streams). In each of these cases, a held vnode is
* passed into this routine. If a new smb_node is created it will take its
* own hold on the vnode. The caller's hold therefore still belongs to, and
* should be released by, the caller.
*
* A reference is taken on the smb_node whether found in the hash table
* or newly created.
*
* If an smb_node needs to be created, a reference is also taken on the
* dir_snode (if passed in).
*
* See smb_node_release() for details on the release of these references.
*/
/*ARGSUSED*/
smb_node_t *
smb_node_lookup(
struct smb_request *sr,
struct open_param *op,
cred_t *cred,
vnode_t *vp,
char *od_name,
smb_node_t *dir_snode,
smb_node_t *unnamed_node,
smb_attr_t *attr)
{
smb_llist_t *node_hdr;
smb_node_t *node;
uint32_t hashkey = 0;
fsid_t fsid;
int error;
krw_t lock_mode;
vnode_t *unnamed_vp = NULL;
/*
* smb_vop_getattr() is called here instead of smb_fsop_getattr(),
* because the node may not yet exist. We also do not want to call
* it with the list lock held.
*/
if (unnamed_node)
unnamed_vp = unnamed_node->vp;
/*
* This getattr is performed on behalf of the server
* that's why kcred is used not the user's cred
*/
attr->sa_mask = SMB_AT_ALL;
error = smb_vop_getattr(vp, unnamed_vp, attr, 0, kcred);
if (error)
return (NULL);
if (sr && sr->tid_tree) {
/*
* The fsid for a file is that of the tree, even
* if the file resides in a different mountpoint
* under the share.
*/
fsid = SMB_TREE_FSID(sr->tid_tree);
} else {
/*
* This should be getting executed only for the
* tree root smb_node.
*/
fsid = vp->v_vfsp->vfs_fsid;
}
node_hdr = smb_node_get_hash(&fsid, attr, &hashkey);
lock_mode = RW_READER;
smb_llist_enter(node_hdr, lock_mode);
for (;;) {
node = list_head(&node_hdr->ll_list);
while (node) {
ASSERT(node->n_magic == SMB_NODE_MAGIC);
ASSERT(node->n_hash_bucket == node_hdr);
if ((node->n_hashkey == hashkey) && (node->vp == vp)) {
mutex_enter(&node->n_mutex);
DTRACE_PROBE1(smb_node_lookup_hit,
smb_node_t *, node);
switch (node->n_state) {
case SMB_NODE_STATE_OPLOCK_GRANTED:
case SMB_NODE_STATE_OPLOCK_BREAKING:
case SMB_NODE_STATE_AVAILABLE:
/* The node was found. */
node->n_refcnt++;
if ((node->dir_snode == NULL) &&
(dir_snode != NULL) &&
(strcmp(od_name, "..") != 0) &&
(strcmp(od_name, ".") != 0)) {
VALIDATE_DIR_NODE(dir_snode,
node);
node->dir_snode = dir_snode;
smb_node_ref(dir_snode);
}
node->attr = *attr;
node->n_size = attr->sa_vattr.va_size;
smb_node_audit(node);
mutex_exit(&node->n_mutex);
smb_llist_exit(node_hdr);
return (node);
case SMB_NODE_STATE_DESTROYING:
/*
* Although the node exists it is about
* to be destroyed. We act as it hasn't
* been found.
*/
mutex_exit(&node->n_mutex);
break;
default:
/*
* Although the node exists it is in an
* unknown state. We act as it hasn't
* been found.
*/
ASSERT(0);
mutex_exit(&node->n_mutex);
break;
}
}
node = smb_llist_next(node_hdr, node);
}
if ((lock_mode == RW_READER) && smb_llist_upgrade(node_hdr)) {
lock_mode = RW_WRITER;
continue;
}
break;
}
node = smb_node_alloc(od_name, vp, attr, node_hdr, hashkey);
node->n_orig_uid = crgetuid(sr->user_cr);
if (op)
node->flags |= smb_is_executable(op->fqi.last_comp);
if (dir_snode) {
smb_node_ref(dir_snode);
node->dir_snode = dir_snode;
ASSERT(dir_snode->dir_snode != node);
ASSERT((dir_snode->vp->v_xattrdir) ||
(dir_snode->vp->v_type == VDIR));
}
if (unnamed_node) {
smb_node_ref(unnamed_node);
node->unnamed_stream_node = unnamed_node;
}
DTRACE_PROBE1(smb_node_lookup_miss, smb_node_t *, node);
smb_node_audit(node);
smb_llist_insert_head(node_hdr, node);
smb_llist_exit(node_hdr);
return (node);
}
/*
* smb_stream_node_lookup()
*
* Note: stream_name (the name that will be stored in the "od_name" field
* of a stream's smb_node) is the same as the on-disk name for the stream
* except that it does not have SMB_STREAM_PREFIX prepended.
*/
smb_node_t *
smb_stream_node_lookup(smb_request_t *sr, cred_t *cr, smb_node_t *fnode,
vnode_t *xattrdirvp, vnode_t *vp, char *stream_name, smb_attr_t *ret_attr)
{
smb_node_t *xattrdir_node;
smb_node_t *snode;
smb_attr_t tmp_attr;
xattrdir_node = smb_node_lookup(sr, NULL, cr, xattrdirvp, XATTR_DIR,
fnode, NULL, &tmp_attr);
if (xattrdir_node == NULL)
return (NULL);
snode = smb_node_lookup(sr, NULL, cr, vp, stream_name, xattrdir_node,
fnode, ret_attr);
(void) smb_node_release(xattrdir_node);
return (snode);
}
/*
* This function should be called whenever a reference is needed on an
* smb_node pointer. The copy of an smb_node pointer from one non-local
* data structure to another requires a reference to be taken on the smb_node
* (unless the usage is localized). Each data structure deallocation routine
* will call smb_node_release() on its smb_node pointers.
*
* In general, an smb_node pointer residing in a structure should never be
* stale. A node pointer may be NULL, however, and care should be taken
* prior to calling smb_node_ref(), which ASSERTs that the pointer is valid.
* Care also needs to be taken with respect to racing deallocations of a
* structure.
*/
void
smb_node_ref(smb_node_t *node)
{
SMB_NODE_VALID(node);
mutex_enter(&node->n_mutex);
switch (node->n_state) {
case SMB_NODE_STATE_AVAILABLE:
case SMB_NODE_STATE_OPLOCK_GRANTED:
case SMB_NODE_STATE_OPLOCK_BREAKING:
node->n_refcnt++;
ASSERT(node->n_refcnt);
DTRACE_PROBE1(smb_node_ref_exit, smb_node_t *, node);
smb_node_audit(node);
break;
default:
SMB_PANIC();
}
mutex_exit(&node->n_mutex);
}
/*
* smb_node_lookup() takes a hold on an smb_node, whether found in the
* hash table or newly created. This hold is expected to be released
* in the following manner.
*
* smb_node_lookup() takes an address of an smb_node pointer. This should
* be getting passed down via a lookup (whether path name or component), mkdir,
* create. If the original smb_node pointer resides in a data structure, then
* the deallocation routine for the data structure is responsible for calling
* smb_node_release() on the smb_node pointer. Alternatively,
* smb_node_release() can be called as soon as the smb_node pointer is no longer
* needed. In this case, callers are responsible for setting an embedded
* pointer to NULL if it is known that the last reference is being released.
*
* If the passed-in address of the smb_node pointer belongs to a local variable,
* then the caller with the local variable should call smb_node_release()
* directly.
*
* smb_node_release() itself will call smb_node_release() on a node's dir_snode,
* as smb_node_lookup() takes a hold on dir_snode.
*/
void
smb_node_release(smb_node_t *node)
{
SMB_NODE_VALID(node);
mutex_enter(&node->n_mutex);
ASSERT(node->n_refcnt);
DTRACE_PROBE1(smb_node_release, smb_node_t *, node);
if (--node->n_refcnt == 0) {
switch (node->n_state) {
case SMB_NODE_STATE_AVAILABLE:
node->n_state = SMB_NODE_STATE_DESTROYING;
mutex_exit(&node->n_mutex);
smb_llist_enter(node->n_hash_bucket, RW_WRITER);
smb_llist_remove(node->n_hash_bucket, node);
smb_llist_exit(node->n_hash_bucket);
/*
* Check if the file was deleted
*/
smb_node_delete_on_close(node);
if (node->dir_snode) {
ASSERT(node->dir_snode->n_magic ==
SMB_NODE_MAGIC);
smb_node_release(node->dir_snode);
}
if (node->unnamed_stream_node) {
ASSERT(node->unnamed_stream_node->n_magic ==
SMB_NODE_MAGIC);
smb_node_release(node->unnamed_stream_node);
}
smb_node_free(node);
return;
default:
SMB_PANIC();
}
}
smb_node_audit(node);
mutex_exit(&node->n_mutex);
}
static void
smb_node_delete_on_close(smb_node_t *node)
{
smb_node_t *d_snode;
int rc = 0;
uint32_t flags = 0;
d_snode = node->dir_snode;
if (node->flags & NODE_FLAGS_DELETE_ON_CLOSE) {
node->flags &= ~NODE_FLAGS_DELETE_ON_CLOSE;
flags = node->n_delete_on_close_flags;
ASSERT(node->od_name != NULL);
if (node->attr.sa_vattr.va_type == VDIR)
rc = smb_fsop_rmdir(0, node->delete_on_close_cred,
d_snode, node->od_name, flags);
else
rc = smb_fsop_remove(0, node->delete_on_close_cred,
d_snode, node->od_name, flags);
smb_cred_rele(node->delete_on_close_cred);
}
if (rc != 0)
cmn_err(CE_WARN, "File %s could not be removed, rc=%d\n",
node->od_name, rc);
DTRACE_PROBE2(smb_node_delete_on_close, int, rc, smb_node_t *, node);
}
/*
* smb_node_rename()
*
*/
void
smb_node_rename(
smb_node_t *from_dnode,
smb_node_t *ret_node,
smb_node_t *to_dnode,
char *to_name)
{
SMB_NODE_VALID(from_dnode);
SMB_NODE_VALID(to_dnode);
SMB_NODE_VALID(ret_node);
smb_node_ref(to_dnode);
mutex_enter(&ret_node->n_mutex);
switch (ret_node->n_state) {
case SMB_NODE_STATE_AVAILABLE:
case SMB_NODE_STATE_OPLOCK_GRANTED:
case SMB_NODE_STATE_OPLOCK_BREAKING:
ret_node->dir_snode = to_dnode;
mutex_exit(&ret_node->n_mutex);
ASSERT(to_dnode->dir_snode != ret_node);
ASSERT((to_dnode->vp->v_xattrdir) ||
(to_dnode->vp->v_type == VDIR));
smb_node_release(from_dnode);
(void) strcpy(ret_node->od_name, to_name);
/*
* XXX Need to update attributes?
*/
break;
default:
SMB_PANIC();
}
}
int
smb_node_root_init(vnode_t *vp, smb_server_t *sv, smb_node_t **root)
{
smb_attr_t va;
int error;
uint32_t hashkey;
smb_llist_t *node_hdr;
smb_node_t *node;
va.sa_mask = SMB_AT_ALL;
error = smb_vop_getattr(vp, NULL, &va, 0, kcred);
if (error) {
VN_RELE(vp);
return (error);
}
node_hdr = smb_node_get_hash(&vp->v_vfsp->vfs_fsid, &va, &hashkey);
node = smb_node_alloc(ROOTVOL, vp, &va, node_hdr, hashkey);
sv->si_root_smb_node = node;
smb_node_audit(node);
smb_llist_enter(node_hdr, RW_WRITER);
smb_llist_insert_head(node_hdr, node);
smb_llist_exit(node_hdr);
*root = node;
return (0);
}
/*
* smb_node_get_size
*/
u_offset_t
smb_node_get_size(smb_node_t *node, smb_attr_t *attr)
{
u_offset_t size;
if (attr->sa_vattr.va_type == VDIR)
return (0);
mutex_enter(&node->n_mutex);
if (node && (node->flags & NODE_FLAGS_SET_SIZE))
size = node->n_size;
else
size = attr->sa_vattr.va_size;
mutex_exit(&node->n_mutex);
return (size);
}
static int
timeval_cmp(timestruc_t *a, timestruc_t *b)
{
if (a->tv_sec < b->tv_sec)
return (-1);
if (a->tv_sec > b->tv_sec)
return (1);
/* Seconds are equal compare tv_nsec */
if (a->tv_nsec < b->tv_nsec)
return (-1);
return (a->tv_nsec > b->tv_nsec);
}
/*
* smb_node_set_time
*
* This function will update the time stored in the node and
* set the appropriate flags. If there is nothing to update,
* the function will return without any updates. The update
* is only in the node level and the attribute in the file system
* will be updated when client close the file.
*/
void
smb_node_set_time(
smb_node_t *node,
timestruc_t *crtime,
timestruc_t *mtime,
timestruc_t *atime,
timestruc_t *ctime,
uint_t what)
{
if (what == 0)
return;
if ((what & SMB_AT_CRTIME && crtime == 0) ||
(what & SMB_AT_MTIME && mtime == 0) ||
(what & SMB_AT_ATIME && atime == 0) ||
(what & SMB_AT_CTIME && ctime == 0))
return;
mutex_enter(&node->n_mutex);
if ((what & SMB_AT_CRTIME) &&
timeval_cmp((timestruc_t *)&node->attr.sa_crtime,
crtime) != 0) {
node->what |= SMB_AT_CRTIME;
node->attr.sa_crtime = *((timestruc_t *)crtime);
}
if ((what & SMB_AT_MTIME) &&
timeval_cmp((timestruc_t *)&node->attr.sa_vattr.va_mtime,
mtime) != 0) {
node->what |= SMB_AT_MTIME;
node->attr.sa_vattr.va_mtime = *((timestruc_t *)mtime);
}
if ((what & SMB_AT_ATIME) &&
timeval_cmp((timestruc_t *)&node->attr.sa_vattr.va_atime,
atime) != 0) {
node->what |= SMB_AT_ATIME;
node->attr.sa_vattr.va_atime = *((timestruc_t *)atime);
}
/*
* The ctime handling is trickier. It has three scenarios.
* 1. Only ctime need to be set and it is the same as the ctime
* stored in the node. (update not necessary)
* 2. The ctime is the same as the ctime stored in the node but
* is not the only time need to be set. (update required)
* 3. The ctime need to be set and is not the same as the ctime
* stored in the node. (update required)
* Unlike other time setting, the ctime needs to be set even when
* it is the same as the ctime in the node if there are other time
* needs to be set (#2). This will ensure the ctime not being
* updated when other times are being updated in the file system.
*
* Retained file rules:
*
* 1. Don't add SMB_AT_CTIME to node->what by default because the
* request will be rejected by filesystem
* 2. 'what' SMB_AT_CTIME shouldn't be set for retained files, i.e.
* any request for changing ctime on these files should have
* been already rejected
*/
node->what |= SMB_AT_CTIME;
if (what & SMB_AT_CTIME) {
if ((what == SMB_AT_CTIME) &&
timeval_cmp((timestruc_t *)&node->attr.sa_vattr.va_ctime,
ctime) == 0) {
node->what &= ~SMB_AT_CTIME;
} else {
gethrestime(&node->attr.sa_vattr.va_ctime);
}
} else {
gethrestime(&node->attr.sa_vattr.va_ctime);
}
mutex_exit(&node->n_mutex);
}
timestruc_t *
smb_node_get_crtime(smb_node_t *node)
{
return ((timestruc_t *)&node->attr.sa_crtime);
}
timestruc_t *
smb_node_get_atime(smb_node_t *node)
{
return ((timestruc_t *)&node->attr.sa_vattr.va_atime);
}
timestruc_t *
smb_node_get_ctime(smb_node_t *node)
{
return ((timestruc_t *)&node->attr.sa_vattr.va_ctime);
}
timestruc_t *
smb_node_get_mtime(smb_node_t *node)
{
return ((timestruc_t *)&node->attr.sa_vattr.va_mtime);
}
/*
* smb_node_set_dosattr
*
* Parse the specified DOS attributes and, if they have been modified,
* update the node cache. This call should be followed by a
* smb_sync_fsattr() call to write the attribute changes to filesystem.
*/
void
smb_node_set_dosattr(smb_node_t *node, uint32_t dosattr)
{
uint32_t mode = dosattr & (FILE_ATTRIBUTE_ARCHIVE |
FILE_ATTRIBUTE_READONLY |
FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM);
mutex_enter(&node->n_mutex);
if (node->attr.sa_dosattr != mode) {
node->attr.sa_dosattr = mode;
node->what |= SMB_AT_DOSATTR;
}
mutex_exit(&node->n_mutex);
}
/*
* smb_node_get_dosattr()
*
* This function is used to provide clients with information as to whether
* the readonly bit is set. Hence both the node attribute cache (which
* reflects the on-disk attributes) and node->readonly_creator (which
* reflects whether a readonly set is pending from a readonly create) are
* checked. In the latter case, the readonly attribute should be visible to
* all clients even though the readonly creator fid is immune to the readonly
* bit until close.
*/
uint32_t
smb_node_get_dosattr(smb_node_t *node)
{
uint32_t dosattr = node->attr.sa_dosattr;
if (node->readonly_creator)
dosattr |= FILE_ATTRIBUTE_READONLY;
if (!dosattr)
dosattr = FILE_ATTRIBUTE_NORMAL;
return (dosattr);
}
/*
* When DeleteOnClose is set on an smb_node, the common open code will
* reject subsequent open requests for the file. Observation of Windows
* 2000 indicates that subsequent opens should be allowed (assuming
* there would be no sharing violation) until the file is closed using
* the fid on which the DeleteOnClose was requested.
*
* If there are multiple opens with delete-on-close create options,
* whichever the first file handle is closed will trigger the node to be
* marked as delete-on-close. The credentials of that ofile will be used
* as the delete-on-close credentials of the node.
*/
int
smb_node_set_delete_on_close(smb_node_t *node, cred_t *cr, uint32_t flags)
{
int rc = -1;
mutex_enter(&node->n_mutex);
if (!(node->attr.sa_dosattr & FILE_ATTRIBUTE_READONLY) &&
!(node->flags & NODE_FLAGS_DELETE_ON_CLOSE)) {
crhold(cr);
node->delete_on_close_cred = cr;
node->n_delete_on_close_flags = flags;
node->flags |= NODE_FLAGS_DELETE_ON_CLOSE;
rc = 0;
}
mutex_exit(&node->n_mutex);
return (rc);
}
void
smb_node_reset_delete_on_close(smb_node_t *node)
{
mutex_enter(&node->n_mutex);
if (node->flags & NODE_FLAGS_DELETE_ON_CLOSE) {
node->flags &= ~NODE_FLAGS_DELETE_ON_CLOSE;
crfree(node->delete_on_close_cred);
node->delete_on_close_cred = NULL;
node->n_delete_on_close_flags = 0;
}
mutex_exit(&node->n_mutex);
}
/*
* smb_node_open_check
*
* check file sharing rules for current open request
* against all existing opens for a file.
*
* Returns NT_STATUS_SHARING_VIOLATION if there is any
* sharing conflict, otherwise returns NT_STATUS_SUCCESS.
*/
uint32_t
smb_node_open_check(
smb_node_t *node,
cred_t *cr,
uint32_t desired_access,
uint32_t share_access)
{
smb_ofile_t *of;
uint32_t status;
SMB_NODE_VALID(node);
smb_llist_enter(&node->n_ofile_list, RW_READER);
of = smb_llist_head(&node->n_ofile_list);
while (of) {
status = smb_ofile_open_check(of, cr, desired_access,
share_access);
switch (status) {
case NT_STATUS_INVALID_HANDLE:
case NT_STATUS_SUCCESS:
of = smb_llist_next(&node->n_ofile_list, of);
break;
default:
ASSERT(status == NT_STATUS_SHARING_VIOLATION);
smb_llist_exit(&node->n_ofile_list);
return (status);
}
}
smb_llist_exit(&node->n_ofile_list);
return (NT_STATUS_SUCCESS);
}
uint32_t
smb_node_rename_check(smb_node_t *node)
{
smb_ofile_t *of;
uint32_t status;
SMB_NODE_VALID(node);
/*
* Intra-CIFS check
*/
smb_llist_enter(&node->n_ofile_list, RW_READER);
of = smb_llist_head(&node->n_ofile_list);
while (of) {
status = smb_ofile_rename_check(of);
switch (status) {
case NT_STATUS_INVALID_HANDLE:
case NT_STATUS_SUCCESS:
of = smb_llist_next(&node->n_ofile_list, of);
break;
default:
ASSERT(status == NT_STATUS_SHARING_VIOLATION);
smb_llist_exit(&node->n_ofile_list);
return (status);
}
}
smb_llist_exit(&node->n_ofile_list);
/*
* system-wide share check
*/
if (nbl_share_conflict(node->vp, NBL_RENAME, NULL))
return (NT_STATUS_SHARING_VIOLATION);
else
return (NT_STATUS_SUCCESS);
}
uint32_t
smb_node_delete_check(smb_node_t *node)
{
smb_ofile_t *of;
uint32_t status;
SMB_NODE_VALID(node);
if (node->attr.sa_vattr.va_type == VDIR)
return (NT_STATUS_SUCCESS);
/*
* intra-CIFS check
*/
smb_llist_enter(&node->n_ofile_list, RW_READER);
of = smb_llist_head(&node->n_ofile_list);
while (of) {
status = smb_ofile_delete_check(of);
switch (status) {
case NT_STATUS_INVALID_HANDLE:
case NT_STATUS_SUCCESS:
of = smb_llist_next(&node->n_ofile_list, of);
break;
default:
ASSERT(status == NT_STATUS_SHARING_VIOLATION);
smb_llist_exit(&node->n_ofile_list);
return (status);
}
}
smb_llist_exit(&node->n_ofile_list);
/*
* system-wide share check
*/
if (nbl_share_conflict(node->vp, NBL_REMOVE, NULL))
return (NT_STATUS_SHARING_VIOLATION);
else
return (NT_STATUS_SUCCESS);
}
/*
* smb_node_start_crit()
*
* Enter critical region for share reservations.
* See comments above smb_fsop_shrlock().
*/
void
smb_node_start_crit(smb_node_t *node, krw_t mode)
{
rw_enter(&node->n_lock, mode);
nbl_start_crit(node->vp, mode);
}
/*
* smb_node_end_crit()
*
* Exit critical region for share reservations.
*/
void
smb_node_end_crit(smb_node_t *node)
{
nbl_end_crit(node->vp);
rw_exit(&node->n_lock);
}
int
smb_node_in_crit(smb_node_t *node)
{
return (nbl_in_crit(node->vp) && RW_LOCK_HELD(&node->n_lock));
}
void
smb_node_rdlock(smb_node_t *node)
{
rw_enter(&node->n_lock, RW_READER);
}
void
smb_node_wrlock(smb_node_t *node)
{
rw_enter(&node->n_lock, RW_WRITER);
}
void
smb_node_unlock(smb_node_t *node)
{
rw_exit(&node->n_lock);
}
uint32_t
smb_node_get_ofile_count(smb_node_t *node)
{
uint32_t cntr;
SMB_NODE_VALID(node);
smb_llist_enter(&node->n_ofile_list, RW_READER);
cntr = smb_llist_get_count(&node->n_ofile_list);
smb_llist_exit(&node->n_ofile_list);
return (cntr);
}
void
smb_node_add_ofile(smb_node_t *node, smb_ofile_t *of)
{
SMB_NODE_VALID(node);
smb_llist_enter(&node->n_ofile_list, RW_WRITER);
smb_llist_insert_tail(&node->n_ofile_list, of);
smb_llist_exit(&node->n_ofile_list);
}
void
smb_node_rem_ofile(smb_node_t *node, smb_ofile_t *of)
{
SMB_NODE_VALID(node);
smb_llist_enter(&node->n_ofile_list, RW_WRITER);
smb_llist_remove(&node->n_ofile_list, of);
smb_llist_exit(&node->n_ofile_list);
}
void
smb_node_inc_open_ofiles(smb_node_t *node)
{
SMB_NODE_VALID(node);
mutex_enter(&node->n_mutex);
node->n_open_count++;
mutex_exit(&node->n_mutex);
}
void
smb_node_dec_open_ofiles(smb_node_t *node)
{
SMB_NODE_VALID(node);
mutex_enter(&node->n_mutex);
node->n_open_count--;
mutex_exit(&node->n_mutex);
}
uint32_t
smb_node_get_open_ofiles(smb_node_t *node)
{
uint32_t cnt;
SMB_NODE_VALID(node);
mutex_enter(&node->n_mutex);
cnt = node->n_open_count;
mutex_exit(&node->n_mutex);
return (cnt);
}
/*
* smb_node_alloc
*/
static smb_node_t *
smb_node_alloc(
char *od_name,
vnode_t *vp,
smb_attr_t *attr,
smb_llist_t *bucket,
uint32_t hashkey)
{
smb_node_t *node;
node = kmem_cache_alloc(smb_node_cache, KM_SLEEP);
if (node->n_audit_buf != NULL)
node->n_audit_buf->anb_index = 0;
node->attr = *attr;
node->flags = NODE_FLAGS_ATTR_VALID;
node->n_size = node->attr.sa_vattr.va_size;
VN_HOLD(vp);
node->vp = vp;
node->n_refcnt = 1;
node->n_hash_bucket = bucket;
node->n_hashkey = hashkey;
node->n_orig_uid = 0;
node->readonly_creator = NULL;
node->waiting_event = 0;
node->what = 0;
node->n_open_count = 0;
node->dir_snode = NULL;
node->unnamed_stream_node = NULL;
node->delete_on_close_cred = NULL;
node->n_delete_on_close_flags = 0;
(void) strlcpy(node->od_name, od_name, sizeof (node->od_name));
if (strcmp(od_name, XATTR_DIR) == 0)
node->flags |= NODE_XATTR_DIR;
node->n_state = SMB_NODE_STATE_AVAILABLE;
node->n_magic = SMB_NODE_MAGIC;
return (node);
}
/*
* smb_node_free
*/
static void
smb_node_free(smb_node_t *node)
{
SMB_NODE_VALID(node);
node->n_magic = 0;
VERIFY(!list_link_active(&node->n_lnd));
VERIFY(node->n_lock_list.ll_count == 0);
VERIFY(node->n_ofile_list.ll_count == 0);
VERIFY(node->n_oplock.ol_xthread == NULL);
VERIFY(mutex_owner(&node->n_mutex) == NULL);
VERIFY(!RW_LOCK_HELD(&node->n_lock));
VN_RELE(node->vp);
kmem_cache_free(smb_node_cache, node);
}
/*
* smb_node_constructor
*/
static int
smb_node_constructor(void *buf, void *un, int kmflags)
{
_NOTE(ARGUNUSED(kmflags, un))
smb_node_t *node = (smb_node_t *)buf;
bzero(node, sizeof (smb_node_t));
smb_llist_constructor(&node->n_ofile_list, sizeof (smb_ofile_t),
offsetof(smb_ofile_t, f_nnd));
smb_llist_constructor(&node->n_lock_list, sizeof (smb_lock_t),
offsetof(smb_lock_t, l_lnd));
cv_init(&node->n_oplock.ol_cv, NULL, CV_DEFAULT, NULL);
rw_init(&node->n_lock, NULL, RW_DEFAULT, NULL);
mutex_init(&node->n_mutex, NULL, MUTEX_DEFAULT, NULL);
smb_node_create_audit_buf(node, kmflags);
return (0);
}
/*
* smb_node_destructor
*/
static void
smb_node_destructor(void *buf, void *un)
{
_NOTE(ARGUNUSED(un))
smb_node_t *node = (smb_node_t *)buf;
smb_node_destroy_audit_buf(node);
mutex_destroy(&node->n_mutex);
rw_destroy(&node->n_lock);
cv_destroy(&node->n_oplock.ol_cv);
smb_llist_destructor(&node->n_lock_list);
smb_llist_destructor(&node->n_ofile_list);
}
/*
* smb_node_create_audit_buf
*/
static void
smb_node_create_audit_buf(smb_node_t *node, int kmflags)
{
smb_audit_buf_node_t *abn;
if (smb_audit_flags & SMB_AUDIT_NODE) {
abn = kmem_zalloc(sizeof (smb_audit_buf_node_t), kmflags);
abn->anb_max_index = SMB_AUDIT_BUF_MAX_REC - 1;
node->n_audit_buf = abn;
}
}
/*
* smb_node_destroy_audit_buf
*/
static void
smb_node_destroy_audit_buf(smb_node_t *node)
{
if (node->n_audit_buf != NULL) {
kmem_free(node->n_audit_buf, sizeof (smb_audit_buf_node_t));
node->n_audit_buf = NULL;
}
}
/*
* smb_node_audit
*
* This function saves the calling stack in the audit buffer of the node passed
* in.
*/
static void
smb_node_audit(smb_node_t *node)
{
smb_audit_buf_node_t *abn;
smb_audit_record_node_t *anr;
if (node->n_audit_buf) {
abn = node->n_audit_buf;
anr = abn->anb_records;
anr += abn->anb_index;
abn->anb_index++;
abn->anb_index &= abn->anb_max_index;
anr->anr_refcnt = node->n_refcnt;
anr->anr_depth = getpcstack(anr->anr_stack,
SMB_AUDIT_STACK_DEPTH);
}
}
static smb_llist_t *
smb_node_get_hash(fsid_t *fsid, smb_attr_t *attr, uint32_t *phashkey)
{
uint32_t hashkey;
hashkey = fsid->val[0] + attr->sa_vattr.va_nodeid;
hashkey += (hashkey >> 24) + (hashkey >> 16) + (hashkey >> 8);
*phashkey = hashkey;
return (&smb_node_hash_table[(hashkey & SMBND_HASH_MASK)]);
}