summaryrefslogtreecommitdiff
path: root/source3/locking/locking.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-04-27 18:46:10 +0000
committerJeremy Allison <jra@samba.org>2000-04-27 18:46:10 +0000
commite3987ff7a638f9ea8b6794f1ed0df530d8488033 (patch)
tree699420ad5d125a75131eb8b02329770172ec7948 /source3/locking/locking.c
parent3d9141d4156a3207af03d4137acd4b1cde46cfae (diff)
downloadsamba-e3987ff7a638f9ea8b6794f1ed0df530d8488033.tar.gz
samba-e3987ff7a638f9ea8b6794f1ed0df530d8488033.tar.bz2
samba-e3987ff7a638f9ea8b6794f1ed0df530d8488033.zip
Fixed crash bugs Andrew pointed out with LOCK4 smbtorture
test. Was miscounting posix locks, plus was not taking into account the case where other_fsp == fsp in the 'move locks' case. DOH ! This code will be re-written anyway :-). Jeremy. (This used to be commit 5278ec016cb24d8263fe6e7c1d389f466270ef24)
Diffstat (limited to 'source3/locking/locking.c')
-rw-r--r--source3/locking/locking.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c
index 811dfbc101..b61e8acedc 100644
--- a/source3/locking/locking.c
+++ b/source3/locking/locking.c
@@ -284,7 +284,7 @@ static BOOL is_posix_locked(files_struct *fsp, SMB_BIG_UINT u_offset, SMB_BIG_UI
SMB_OFF_T count;
DEBUG(10,("is_posix_locked: File %s, offset = %.0f, count = %.0f, type = %s\n",
- fsp->fsp_name, (double)offset, (double)count, lock_type_name(lock_type) ));
+ fsp->fsp_name, (double)u_offset, (double)u_count, lock_type_name(lock_type) ));
/*
* If the requested lock won't fit in the POSIX range, we will
@@ -315,7 +315,7 @@ static BOOL set_posix_lock(files_struct *fsp, SMB_BIG_UINT u_offset, SMB_BIG_UIN
BOOL ret = True;
DEBUG(5,("set_posix_lock: File %s, offset = %.0f, count = %.0f, type = %s\n",
- fsp->fsp_name, (double)offset, (double)count, lock_type_name(lock_type) ));
+ fsp->fsp_name, (double)u_offset, (double)u_count, lock_type_name(lock_type) ));
/*
* If the requested lock won't fit in the POSIX range, we will
@@ -350,17 +350,15 @@ static BOOL release_posix_lock(files_struct *fsp, SMB_BIG_UINT u_offset, SMB_BIG
BOOL ret = True;
DEBUG(5,("release_posix_lock: File %s, offset = %.0f, count = %.0f\n",
- fsp->fsp_name, (double)offset, (double)count ));
+ fsp->fsp_name, (double)u_offset, (double)u_count ));
if(u_count == 0) {
/*
* This lock must overlap with an existing read-only lock
- * help by another fd. Just decrement the count but don't
- * do any POSIX call.
+ * help by another fd. Don't do any POSIX call.
*/
- fsp->num_posix_locks--;
return True;
}
@@ -374,10 +372,7 @@ static BOOL release_posix_lock(files_struct *fsp, SMB_BIG_UINT u_offset, SMB_BIG
ret = fcntl_lock(fsp->fd,SMB_F_SETLK,offset,count,F_UNLCK);
- if(ret)
- fsp->num_posix_locks--;
-
- return True;
+ return ret;
}
/****************************************************************************
@@ -565,6 +560,8 @@ BOOL do_unlock(files_struct *fsp,connection_struct *conn,
fsp->num_posix_locks--;
+ SMB_ASSERT(fsp->num_posix_locks >= 0);
+
return True; /* Did unlock */
}