smbd: Rename lck1->lock in brl_conflict_other
[kamenim/samba-autobuild/.git] / source3 / locking / brlock.c
index e9c073b5c631ae3c976c40c0228a32aecd4bfdae..56c700e5eced95979d4f65048b8bd2aae1e0fa5c 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
    Unix SMB/CIFS implementation.
    byte range locking code
    Updated to handle range splits/merges.
@@ -32,6 +32,7 @@
 #include "dbwrap/dbwrap_open.h"
 #include "serverid.h"
 #include "messages.h"
+#include "util_tdb.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_LOCKING
 
 static struct db_context *brlock_db;
 
+struct byte_range_lock {
+       struct files_struct *fsp;
+       unsigned int num_locks;
+       bool modified;
+       bool have_read_oplocks;
+       struct lock_struct *lock_data;
+       struct db_record *record;
+};
+
 /****************************************************************************
  Debug info at level 10 for lock struct.
 ****************************************************************************/
@@ -54,19 +64,44 @@ static void print_lock_struct(unsigned int i, const struct lock_struct *pls)
                        (unsigned int)pls->context.tid,
                        server_id_str(talloc_tos(), &pls->context.pid) ));
 
-       DEBUG(10,("start = %.0f, size = %.0f, fnum = %llu, %s %s\n",
-               (double)pls->start,
-               (double)pls->size,
-               (unsigned long long)pls->fnum,
-               lock_type_name(pls->lock_type),
-               lock_flav_name(pls->lock_flav) ));
+       DEBUG(10, ("start = %ju, size = %ju, fnum = %ju, %s %s\n",
+                  (uintmax_t)pls->start,
+                  (uintmax_t)pls->size,
+                  (uintmax_t)pls->fnum,
+                  lock_type_name(pls->lock_type),
+                  lock_flav_name(pls->lock_flav)));
+}
+
+unsigned int brl_num_locks(const struct byte_range_lock *brl)
+{
+       return brl->num_locks;
+}
+
+struct files_struct *brl_fsp(struct byte_range_lock *brl)
+{
+       return brl->fsp;
+}
+
+bool brl_have_read_oplocks(const struct byte_range_lock *brl)
+{
+       return brl->have_read_oplocks;
+}
+
+void brl_set_have_read_oplocks(struct byte_range_lock *brl,
+                              bool have_read_oplocks)
+{
+       DEBUG(10, ("Setting have_read_oplocks to %s\n",
+                  have_read_oplocks ? "true" : "false"));
+       SMB_ASSERT(brl->record != NULL); /* otherwise we're readonly */
+       brl->have_read_oplocks = have_read_oplocks;
+       brl->modified = true;
 }
 
 /****************************************************************************
  See if two locking contexts are equal.
 ****************************************************************************/
 
-bool brl_same_context(const struct lock_context *ctx1, 
+static bool brl_same_context(const struct lock_context *ctx1,
                             const struct lock_context *ctx2)
 {
        return (serverid_equal(&ctx1->pid, &ctx2->pid) &&
@@ -82,7 +117,7 @@ static bool brl_overlap(const struct lock_struct *lck1,
                         const struct lock_struct *lck2)
 {
        /* XXX Remove for Win7 compatibility. */
-       /* this extra check is not redundent - it copes with locks
+       /* this extra check is not redundant - it copes with locks
           that go beyond the end of 64 bit file space */
        if (lck1->size != 0 &&
            lck1->start == lck2->start &&
@@ -101,7 +136,7 @@ static bool brl_overlap(const struct lock_struct *lck1,
  See if lock2 can be added when lock1 is in place.
 ****************************************************************************/
 
-static bool brl_conflict(const struct lock_struct *lck1, 
+static bool brl_conflict(const struct lock_struct *lck1,
                         const struct lock_struct *lck2)
 {
        /* Ignore PENDING locks. */
@@ -122,7 +157,7 @@ static bool brl_conflict(const struct lock_struct *lck1,
        }
 
        return brl_overlap(lck1, lck2);
-} 
+}
 
 /****************************************************************************
  See if lock2 can be added when lock1 is in place - when both locks are POSIX
@@ -130,7 +165,7 @@ static bool brl_conflict(const struct lock_struct *lck1,
  know already match.
 ****************************************************************************/
 
-static bool brl_conflict_posix(const struct lock_struct *lck1, 
+static bool brl_conflict_posix(const struct lock_struct *lck1,
                                const struct lock_struct *lck2)
 {
 #if defined(DEVELOPER)
@@ -147,7 +182,7 @@ static bool brl_conflict_posix(const struct lock_struct *lck1,
                return False;
        }
 
-       /* Locks on the same context con't conflict. Ignore fnum. */
+       /* Locks on the same context don't conflict. Ignore fnum. */
        if (brl_same_context(&lck1->context, &lck2->context)) {
                return False;
        }
@@ -155,10 +190,10 @@ static bool brl_conflict_posix(const struct lock_struct *lck1,
        /* One is read, the other write, or the context is different,
           do they overlap ? */
        return brl_overlap(lck1, lck2);
-} 
+}
 
 #if ZERO_ZERO
-static bool brl_conflict1(const struct lock_struct *lck1, 
+static bool brl_conflict1(const struct lock_struct *lck1,
                         const struct lock_struct *lck2)
 {
        if (IS_PENDING_LOCK(lck1->lock_type) || IS_PENDING_LOCK(lck2->lock_type))
@@ -183,7 +218,7 @@ static bool brl_conflict1(const struct lock_struct *lck1,
        }
 
        return True;
-} 
+}
 #endif
 
 /****************************************************************************
@@ -192,18 +227,18 @@ static bool brl_conflict1(const struct lock_struct *lck1,
  This is never used in the POSIX lock case.
 ****************************************************************************/
 
-static bool brl_conflict_other(const struct lock_struct *lck1, const struct lock_struct *lck2)
+static bool brl_conflict_other(const struct lock_struct *lock, const struct lock_struct *lck2)
 {
-       if (IS_PENDING_LOCK(lck1->lock_type) || IS_PENDING_LOCK(lck2->lock_type))
+       if (IS_PENDING_LOCK(lock->lock_type) || IS_PENDING_LOCK(lck2->lock_type))
                return False;
 
-       if (lck1->lock_type == READ_LOCK && lck2->lock_type == READ_LOCK) 
+       if (lock->lock_type == READ_LOCK && lck2->lock_type == READ_LOCK)
                return False;
 
        /* POSIX flavour locks never conflict here - this is only called
           in the read/write path. */
 
-       if (lck1->lock_flav == POSIX_LOCK && lck2->lock_flav == POSIX_LOCK)
+       if (lock->lock_flav == POSIX_LOCK && lck2->lock_flav == POSIX_LOCK)
                return False;
 
        /*
@@ -211,14 +246,14 @@ static bool brl_conflict_other(const struct lock_struct *lck1, const struct lock
         * if the context is the same. JRA. See LOCKTEST7 in smbtorture.
         */
 
-       if (!(lck2->lock_type == WRITE_LOCK && lck1->lock_type == READ_LOCK)) {
-               if (brl_same_context(&lck1->context, &lck2->context) &&
-                                       lck1->fnum == lck2->fnum)
+       if (!(lck2->lock_type == WRITE_LOCK && lock->lock_type == READ_LOCK)) {
+               if (brl_same_context(&lock->context, &lck2->context) &&
+                                       lock->fnum == lck2->fnum)
                        return False;
        }
 
-       return brl_overlap(lck1, lck2);
-} 
+       return brl_overlap(lock, lck2);
+}
 
 /****************************************************************************
  Check if an unlock overlaps a pending lock.
@@ -228,7 +263,7 @@ static bool brl_pending_overlap(const struct lock_struct *lock, const struct loc
 {
        if ((lock->start <= pend_lock->start) && (lock->start + lock->size > pend_lock->start))
                return True;
-       if ((lock->start >= pend_lock->start) && (lock->start <= pend_lock->start + pend_lock->size))
+       if ((lock->start >= pend_lock->start) && (lock->start < pend_lock->start + pend_lock->size))
                return True;
        return False;
 }
@@ -239,7 +274,9 @@ static bool brl_pending_overlap(const struct lock_struct *lock, const struct loc
  app depends on this ?
 ****************************************************************************/
 
-NTSTATUS brl_lock_failed(files_struct *fsp, const struct lock_struct *lock, bool blocking_lock)
+static NTSTATUS brl_lock_failed(files_struct *fsp,
+                               const struct lock_struct *lock,
+                               bool blocking_lock)
 {
        if (lock->start >= 0xEF000000 && (lock->start >> 63) == 0) {
                /* amazing the little things you learn with a test
@@ -289,9 +326,9 @@ void brl_init(bool read_only)
        }
 
        brlock_db = db_open(NULL, lock_path("brlock.tdb"),
-                           lp_open_files_db_hash_size(), tdb_flags,
+                           SMB_OPEN_DATABASE_TDB_HASH_SIZE, tdb_flags,
                            read_only?O_RDONLY:(O_RDWR|O_CREAT), 0644,
-                           DBWRAP_LOCK_ORDER_2);
+                           DBWRAP_LOCK_ORDER_2, DBWRAP_FLAG_NONE);
        if (!brlock_db) {
                DEBUG(0,("Failed to open byte range locking database %s\n",
                        lock_path("brlock.tdb")));
@@ -313,7 +350,7 @@ void brl_shutdown(void)
  Compare two locks for sorting.
 ****************************************************************************/
 
-static int lock_compare(const struct lock_struct *lck1, 
+static int lock_compare(const struct lock_struct *lck1,
                         const struct lock_struct *lck2)
 {
        if (lck1->start != lck2->start) {
@@ -353,7 +390,7 @@ NTSTATUS brl_lock_windows_default(struct byte_range_lock *br_lck,
                        return brl_lock_failed(fsp,plock,blocking_lock);
                }
 #if ZERO_ZERO
-               if (plock->start == 0 && plock->size == 0 && 
+               if (plock->start == 0 && plock->size == 0 &&
                                locks[i].size == 0) {
                        break;
                }
@@ -393,7 +430,8 @@ NTSTATUS brl_lock_windows_default(struct byte_range_lock *br_lck,
        }
 
        /* no conflicts - add it to the list of locks */
-       locks = (struct lock_struct *)SMB_REALLOC(locks, (br_lck->num_locks + 1) * sizeof(*locks));
+       locks = talloc_realloc(br_lck, locks, struct lock_struct,
+                              (br_lck->num_locks + 1));
        if (!locks) {
                status = NT_STATUS_NO_MEMORY;
                goto fail;
@@ -731,7 +769,7 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
           existing POSIX lock range into two, and add our lock,
           so we need at most 2 more entries. */
 
-       tp = SMB_MALLOC_ARRAY(struct lock_struct, (br_lck->num_locks + 2));
+       tp = talloc_array(br_lck, struct lock_struct, br_lck->num_locks + 2);
        if (!tp) {
                return NT_STATUS_NO_MEMORY;
        }
@@ -752,7 +790,7 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
                        /* Do any Windows flavour locks conflict ? */
                        if (brl_conflict(curr_lock, plock)) {
                                /* No games with error messages. */
-                               SAFE_FREE(tp);
+                               TALLOC_FREE(tp);
                                /* Remember who blocked us. */
                                plock->context.smblctx = curr_lock->context.smblctx;
                                return NT_STATUS_FILE_LOCK_CONFLICT;
@@ -767,7 +805,7 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
                        if (brl_conflict_posix(curr_lock, plock)) {
                                /* Can't block ourselves with POSIX locks. */
                                /* No games with error messages. */
-                               SAFE_FREE(tp);
+                               TALLOC_FREE(tp);
                                /* Remember who blocked us. */
                                plock->context.smblctx = curr_lock->context.smblctx;
                                return NT_STATUS_FILE_LOCK_CONFLICT;
@@ -832,11 +870,11 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
                        plock->context.smblctx = 0xFFFFFFFFFFFFFFFFLL;
 
                        if (errno_ret == EACCES || errno_ret == EAGAIN) {
-                               SAFE_FREE(tp);
+                               TALLOC_FREE(tp);
                                status = NT_STATUS_FILE_LOCK_CONFLICT;
                                goto fail;
                        } else {
-                               SAFE_FREE(tp);
+                               TALLOC_FREE(tp);
                                status = map_nt_error_from_unix(errno);
                                goto fail;
                        }
@@ -846,7 +884,7 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
        /* If we didn't use all the allocated size,
         * Realloc so we don't leak entries per lock call. */
        if (count < br_lck->num_locks + 2) {
-               tp = (struct lock_struct *)SMB_REALLOC(tp, count * sizeof(*locks));
+               tp = talloc_realloc(br_lck, tp, struct lock_struct, count);
                if (!tp) {
                        status = NT_STATUS_NO_MEMORY;
                        goto fail;
@@ -854,7 +892,7 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
        }
 
        br_lck->num_locks = count;
-       SAFE_FREE(br_lck->lock_data);
+       TALLOC_FREE(br_lck->lock_data);
        br_lck->lock_data = tp;
        locks = tp;
        br_lck->modified = True;
@@ -895,12 +933,11 @@ static NTSTATUS brl_lock_posix(struct messaging_context *msg_ctx,
 NTSTATUS smb_vfs_call_brl_lock_windows(struct vfs_handle_struct *handle,
                                       struct byte_range_lock *br_lck,
                                       struct lock_struct *plock,
-                                      bool blocking_lock,
-                                      struct blocking_lock_record *blr)
+                                      bool blocking_lock)
 {
        VFS_FIND(brl_lock_windows);
        return handle->fns->brl_lock_windows_fn(handle, br_lck, plock,
-                                               blocking_lock, blr);
+                                               blocking_lock);
 }
 
 /****************************************************************************
@@ -912,12 +949,11 @@ NTSTATUS brl_lock(struct messaging_context *msg_ctx,
                uint64_t smblctx,
                struct server_id pid,
                br_off start,
-               br_off size, 
+               br_off size,
                enum brl_type lock_type,
                enum brl_flavour lock_flav,
                bool blocking_lock,
-               uint64_t *psmblctx,
-               struct blocking_lock_record *blr)
+               uint64_t *psmblctx)
 {
        NTSTATUS ret;
        struct lock_struct lock;
@@ -928,23 +964,20 @@ NTSTATUS brl_lock(struct messaging_context *msg_ctx,
        }
 #endif
 
-#ifdef DEVELOPER
-       /* Quieten valgrind on test. */
-       memset(&lock, '\0', sizeof(lock));
-#endif
-
-       lock.context.smblctx = smblctx;
-       lock.context.pid = pid;
-       lock.context.tid = br_lck->fsp->conn->cnum;
-       lock.start = start;
-       lock.size = size;
-       lock.fnum = br_lck->fsp->fnum;
-       lock.lock_type = lock_type;
-       lock.lock_flav = lock_flav;
+       lock = (struct lock_struct) {
+               .context.smblctx = smblctx,
+               .context.pid = pid,
+               .context.tid = br_lck->fsp->conn->cnum,
+               .start = start,
+               .size = size,
+               .fnum = br_lck->fsp->fnum,
+               .lock_type = lock_type,
+               .lock_flav = lock_flav
+       };
 
        if (lock_flav == WINDOWS_LOCK) {
                ret = SMB_VFS_BRL_LOCK_WINDOWS(br_lck->fsp->conn, br_lck,
-                   &lock, blocking_lock, blr);
+                                              &lock, blocking_lock);
        } else {
                ret = brl_lock_posix(msg_ctx, br_lck, &lock);
        }
@@ -961,6 +994,17 @@ NTSTATUS brl_lock(struct messaging_context *msg_ctx,
        return ret;
 }
 
+static void brl_delete_lock_struct(struct lock_struct *locks,
+                                  unsigned num_locks,
+                                  unsigned del_idx)
+{
+       if (del_idx >= num_locks) {
+               return;
+       }
+       memmove(&locks[del_idx], &locks[del_idx+1],
+               sizeof(*locks) * (num_locks - del_idx - 1));
+}
+
 /****************************************************************************
  Unlock a range of bytes - Windows semantics.
 ****************************************************************************/
@@ -1028,12 +1072,7 @@ bool brl_unlock_windows_default(struct messaging_context *msg_ctx,
   unlock_continue:
 #endif
 
-       /* Actually delete the lock. */
-       if (i < br_lck->num_locks - 1) {
-               memmove(&locks[i], &locks[i+1], 
-                       sizeof(*locks)*((br_lck->num_locks-1) - i));
-       }
-
+       brl_delete_lock_struct(locks, br_lck->num_locks, i);
        br_lck->num_locks -= 1;
        br_lck->modified = True;
 
@@ -1100,7 +1139,7 @@ static bool brl_unlock_posix(struct messaging_context *msg_ctx,
           existing POSIX lock range into two, so we need at most
           1 more entry. */
 
-       tp = SMB_MALLOC_ARRAY(struct lock_struct, (br_lck->num_locks + 1));
+       tp = talloc_array(br_lck, struct lock_struct, br_lck->num_locks + 1);
        if (!tp) {
                DEBUG(10,("brl_unlock_posix: malloc fail\n"));
                return False;
@@ -1122,7 +1161,7 @@ static bool brl_unlock_posix(struct messaging_context *msg_ctx,
                if (lock->lock_flav == WINDOWS_LOCK) {
                        /* Do any Windows flavour locks conflict ? */
                        if (brl_conflict(lock, plock)) {
-                               SAFE_FREE(tp);
+                               TALLOC_FREE(tp);
                                return false;
                        }
                        /* Just copy the Windows lock into the new array. */
@@ -1167,7 +1206,7 @@ static bool brl_unlock_posix(struct messaging_context *msg_ctx,
 
        if (!overlap_found) {
                /* Just ignore - no change. */
-               SAFE_FREE(tp);
+               TALLOC_FREE(tp);
                DEBUG(10,("brl_unlock_posix: No overlap - unlocked.\n"));
                return True;
        }
@@ -1184,14 +1223,14 @@ static bool brl_unlock_posix(struct messaging_context *msg_ctx,
 
        /* Realloc so we don't leak entries per unlock call. */
        if (count) {
-               tp = (struct lock_struct *)SMB_REALLOC(tp, count * sizeof(*locks));
+               tp = talloc_realloc(br_lck, tp, struct lock_struct, count);
                if (!tp) {
                        DEBUG(10,("brl_unlock_posix: realloc fail\n"));
                        return False;
                }
        } else {
                /* We deleted the last lock. */
-               SAFE_FREE(tp);
+               TALLOC_FREE(tp);
                tp = NULL;
        }
 
@@ -1199,7 +1238,7 @@ static bool brl_unlock_posix(struct messaging_context *msg_ctx,
                                   LEVEL2_CONTEND_POSIX_BRL);
 
        br_lck->num_locks = count;
-       SAFE_FREE(br_lck->lock_data);
+       TALLOC_FREE(br_lck->lock_data);
        locks = tp;
        br_lck->lock_data = tp;
        br_lck->modified = True;
@@ -1233,7 +1272,7 @@ bool smb_vfs_call_brl_unlock_windows(struct vfs_handle_struct *handle,
                                     const struct lock_struct *plock)
 {
        VFS_FIND(brl_unlock_windows);
-       return handle->fns->brl_unlock_windows_fn(handle, msg_ctx, br_lck, 
+       return handle->fns->brl_unlock_windows_fn(handle, msg_ctx, br_lck,
                                                  plock);
 }
 
@@ -1277,7 +1316,7 @@ bool brl_locktest(struct byte_range_lock *br_lck,
                uint64_t smblctx,
                struct server_id pid,
                br_off start,
-               br_off size, 
+               br_off size,
                enum brl_type lock_type,
                enum brl_flavour lock_flav)
 {
@@ -1315,9 +1354,10 @@ bool brl_locktest(struct byte_range_lock *br_lck,
        if(lp_posix_locking(fsp->conn->params) && (lock_flav == WINDOWS_LOCK)) {
                ret = is_posix_locked(fsp, &start, &size, &lock_type, WINDOWS_LOCK);
 
-               DEBUG(10,("brl_locktest: posix start=%.0f len=%.0f %s for %s file %s\n",
-                       (double)start, (double)size, ret ? "locked" : "unlocked",
-                       fsp_fnum_dbg(fsp), fsp_str_dbg(fsp)));
+               DEBUG(10, ("brl_locktest: posix start=%ju len=%ju %s for %s "
+                          "file %s\n", (uintmax_t)start, (uintmax_t)size,
+                          ret ? "locked" : "unlocked",
+                          fsp_fnum_dbg(fsp), fsp_str_dbg(fsp)));
 
                /* We need to return the inverse of is_posix_locked. */
                ret = !ret;
@@ -1335,7 +1375,7 @@ NTSTATUS brl_lockquery(struct byte_range_lock *br_lck,
                uint64_t *psmblctx,
                struct server_id pid,
                br_off *pstart,
-               br_off *psize, 
+               br_off *psize,
                enum brl_type *plock_type,
                enum brl_flavour lock_flav)
 {
@@ -1360,7 +1400,7 @@ NTSTATUS brl_lockquery(struct byte_range_lock *br_lck,
 
                if (exlock->lock_flav == WINDOWS_LOCK) {
                        conflict = brl_conflict(exlock, &lock);
-               } else {        
+               } else {
                        conflict = brl_conflict_posix(exlock, &lock);
                }
 
@@ -1381,9 +1421,10 @@ NTSTATUS brl_lockquery(struct byte_range_lock *br_lck,
        if(lp_posix_locking(fsp->conn->params)) {
                bool ret = is_posix_locked(fsp, pstart, psize, plock_type, POSIX_LOCK);
 
-               DEBUG(10,("brl_lockquery: posix start=%.0f len=%.0f %s for %s file %s\n",
-                       (double)*pstart, (double)*psize, ret ? "locked" : "unlocked",
-                       fsp_fnum_dbg(fsp), fsp_str_dbg(fsp)));
+               DEBUG(10, ("brl_lockquery: posix start=%ju len=%ju %s for %s "
+                          "file %s\n", (uintmax_t)*pstart,
+                          (uintmax_t)*psize, ret ? "locked" : "unlocked",
+                          fsp_fnum_dbg(fsp), fsp_str_dbg(fsp)));
 
                if (ret) {
                        /* Hmmm. No clue what to set smblctx to - use -1. */
@@ -1398,11 +1439,10 @@ NTSTATUS brl_lockquery(struct byte_range_lock *br_lck,
 
 bool smb_vfs_call_brl_cancel_windows(struct vfs_handle_struct *handle,
                                     struct byte_range_lock *br_lck,
-                                    struct lock_struct *plock,
-                                    struct blocking_lock_record *blr)
+                                    struct lock_struct *plock)
 {
        VFS_FIND(brl_cancel_windows);
-       return handle->fns->brl_cancel_windows_fn(handle, br_lck, plock, blr);
+       return handle->fns->brl_cancel_windows_fn(handle, br_lck, plock);
 }
 
 /****************************************************************************
@@ -1413,8 +1453,7 @@ bool brl_lock_cancel(struct byte_range_lock *br_lck,
                struct server_id pid,
                br_off start,
                br_off size,
-               enum brl_flavour lock_flav,
-               struct blocking_lock_record *blr)
+               enum brl_flavour lock_flav)
 {
        bool ret;
        struct lock_struct lock;
@@ -1430,7 +1469,7 @@ bool brl_lock_cancel(struct byte_range_lock *br_lck,
 
        if (lock_flav == WINDOWS_LOCK) {
                ret = SMB_VFS_BRL_CANCEL_WINDOWS(br_lck->fsp->conn, br_lck,
-                   &lock, blr);
+                                                &lock);
        } else {
                ret = brl_lock_cancel_default(br_lck, &lock);
        }
@@ -1465,12 +1504,7 @@ bool brl_lock_cancel_default(struct byte_range_lock *br_lck,
                return False;
        }
 
-       if (i < br_lck->num_locks - 1) {
-               /* Found this particular pending lock - delete it */
-               memmove(&locks[i], &locks[i+1], 
-                       sizeof(*locks)*((br_lck->num_locks-1) - i));
-       }
-
+       brl_delete_lock_struct(locks, br_lck->num_locks, i);
        br_lck->num_locks -= 1;
        br_lck->modified = True;
        return True;
@@ -1500,7 +1534,7 @@ void brl_close_fnum(struct messaging_context *msg_ctx,
                if (!locks_copy) {
                        smb_panic("brl_close_fnum: talloc failed");
                        }
-       } else {        
+       } else {
                locks_copy = NULL;
        }
 
@@ -1522,53 +1556,217 @@ void brl_close_fnum(struct messaging_context *msg_ctx,
        }
 }
 
+bool brl_mark_disconnected(struct files_struct *fsp)
+{
+       uint32_t tid = fsp->conn->cnum;
+       uint64_t smblctx;
+       uint64_t fnum = fsp->fnum;
+       unsigned int i;
+       struct server_id self = messaging_server_id(fsp->conn->sconn->msg_ctx);
+       struct byte_range_lock *br_lck = NULL;
+
+       if (fsp->op == NULL) {
+               return false;
+       }
+
+       smblctx = fsp->op->global->open_persistent_id;
+
+       if (!fsp->op->global->durable) {
+               return false;
+       }
+
+       if (fsp->current_lock_count == 0) {
+               return true;
+       }
+
+       br_lck = brl_get_locks(talloc_tos(), fsp);
+       if (br_lck == NULL) {
+               return false;
+       }
+
+       for (i=0; i < br_lck->num_locks; i++) {
+               struct lock_struct *lock = &br_lck->lock_data[i];
+
+               /*
+                * as this is a durable handle, we only expect locks
+                * of the current file handle!
+                */
+
+               if (lock->context.smblctx != smblctx) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (lock->context.tid != tid) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (!serverid_equal(&lock->context.pid, &self)) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (lock->fnum != fnum) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               server_id_set_disconnected(&lock->context.pid);
+               lock->context.tid = TID_FIELD_INVALID;
+               lock->fnum = FNUM_FIELD_INVALID;
+       }
+
+       br_lck->modified = true;
+       TALLOC_FREE(br_lck);
+       return true;
+}
+
+bool brl_reconnect_disconnected(struct files_struct *fsp)
+{
+       uint32_t tid = fsp->conn->cnum;
+       uint64_t smblctx;
+       uint64_t fnum = fsp->fnum;
+       unsigned int i;
+       struct server_id self = messaging_server_id(fsp->conn->sconn->msg_ctx);
+       struct byte_range_lock *br_lck = NULL;
+
+       if (fsp->op == NULL) {
+               return false;
+       }
+
+       smblctx = fsp->op->global->open_persistent_id;
+
+       if (!fsp->op->global->durable) {
+               return false;
+       }
+
+       /*
+        * When reconnecting, we do not want to validate the brlock entries
+        * and thereby remove our own (disconnected) entries but reactivate
+        * them instead.
+        */
+       fsp->lockdb_clean = true;
+
+       br_lck = brl_get_locks(talloc_tos(), fsp);
+       if (br_lck == NULL) {
+               return false;
+       }
+
+       if (br_lck->num_locks == 0) {
+               TALLOC_FREE(br_lck);
+               return true;
+       }
+
+       for (i=0; i < br_lck->num_locks; i++) {
+               struct lock_struct *lock = &br_lck->lock_data[i];
+
+               /*
+                * as this is a durable handle we only expect locks
+                * of the current file handle!
+                */
+
+               if (lock->context.smblctx != smblctx) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (lock->context.tid != TID_FIELD_INVALID) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (!server_id_is_disconnected(&lock->context.pid)) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               if (lock->fnum != FNUM_FIELD_INVALID) {
+                       TALLOC_FREE(br_lck);
+                       return false;
+               }
+
+               lock->context.pid = self;
+               lock->context.tid = tid;
+               lock->fnum = fnum;
+       }
+
+       fsp->current_lock_count = br_lck->num_locks;
+       br_lck->modified = true;
+       TALLOC_FREE(br_lck);
+       return true;
+}
+
 /****************************************************************************
  Ensure this set of lock entries is valid.
 ****************************************************************************/
-static bool validate_lock_entries(unsigned int *pnum_entries, struct lock_struct **pplocks)
+static bool validate_lock_entries(unsigned int *pnum_entries, struct lock_struct **pplocks,
+                                 bool keep_disconnected)
 {
        unsigned int i;
-       unsigned int num_valid_entries = 0;
        struct lock_struct *locks = *pplocks;
+       unsigned int num_entries = *pnum_entries;
+       TALLOC_CTX *frame;
+       struct server_id *ids;
+       bool *exists;
 
-       for (i = 0; i < *pnum_entries; i++) {
-               struct lock_struct *lock_data = &locks[i];
-               if (!serverid_exists(&lock_data->context.pid)) {
-                       /* This process no longer exists - mark this
-                          entry as invalid by zeroing it. */
-                       ZERO_STRUCTP(lock_data);
-               } else {
-                       num_valid_entries++;
-               }
+       if (num_entries == 0) {
+               return true;
        }
 
-       if (num_valid_entries != *pnum_entries) {
-               struct lock_struct *new_lock_data = NULL;
+       frame = talloc_stackframe();
 
-               if (num_valid_entries) {
-                       new_lock_data = SMB_MALLOC_ARRAY(struct lock_struct, num_valid_entries);
-                       if (!new_lock_data) {
-                               DEBUG(3, ("malloc fail\n"));
-                               return False;
-                       }
+       ids = talloc_array(frame, struct server_id, num_entries);
+       if (ids == NULL) {
+               DEBUG(0, ("validate_lock_entries: "
+                         "talloc_array(struct server_id, %u) failed\n",
+                         num_entries));
+               talloc_free(frame);
+               return false;
+       }
 
-                       num_valid_entries = 0;
-                       for (i = 0; i < *pnum_entries; i++) {
-                               struct lock_struct *lock_data = &locks[i];
-                               if (lock_data->context.smblctx &&
-                                               lock_data->context.tid) {
-                                       /* Valid (nonzero) entry - copy it. */
-                                       memcpy(&new_lock_data[num_valid_entries],
-                                               lock_data, sizeof(struct lock_struct));
-                                       num_valid_entries++;
-                               }
-                       }
+       exists = talloc_array(frame, bool, num_entries);
+       if (exists == NULL) {
+               DEBUG(0, ("validate_lock_entries: "
+                         "talloc_array(bool, %u) failed\n",
+                         num_entries));
+               talloc_free(frame);
+               return false;
+       }
+
+       for (i = 0; i < num_entries; i++) {
+               ids[i] = locks[i].context.pid;
+       }
+
+       if (!serverids_exist(ids, num_entries, exists)) {
+               DEBUG(3, ("validate_lock_entries: serverids_exists failed\n"));
+               talloc_free(frame);
+               return false;
+       }
+
+       i = 0;
+
+       while (i < num_entries) {
+               if (exists[i]) {
+                       i++;
+                       continue;
                }
 
-               SAFE_FREE(*pplocks);
-               *pplocks = new_lock_data;
-               *pnum_entries = num_valid_entries;
+               if (keep_disconnected &&
+                   server_id_is_disconnected(&ids[i]))
+               {
+                       i++;
+                       continue;
+               }
+
+               /* This process no longer exists */
+
+               brl_delete_lock_struct(locks, num_entries, i);
+               num_entries -= 1;
        }
+       TALLOC_FREE(frame);
+
+       *pnum_entries = num_entries;
 
        return True;
 }
@@ -1604,7 +1802,8 @@ static int brl_traverse_fn(struct db_record *rec, void *state)
        /* In a traverse function we must make a copy of
           dbuf before modifying it. */
 
-       locks = (struct lock_struct *)memdup(value.dptr, value.dsize);
+       locks = (struct lock_struct *)talloc_memdup(
+               talloc_tos(), value.dptr, value.dsize);
        if (!locks) {
                return -1; /* Terminate traversal. */
        }
@@ -1614,8 +1813,8 @@ static int brl_traverse_fn(struct db_record *rec, void *state)
 
        /* Ensure the lock db is clean of entries from invalid processes. */
 
-       if (!validate_lock_entries(&num_locks, &locks)) {
-               SAFE_FREE(locks);
+       if (!validate_lock_entries(&num_locks, &locks, true)) {
+               TALLOC_FREE(locks);
                return -1; /* Terminate traversal */
        }
 
@@ -1642,7 +1841,7 @@ static int brl_traverse_fn(struct db_record *rec, void *state)
                }
        }
 
-       SAFE_FREE(locks);
+       TALLOC_FREE(locks);
        return 0;
 }
 
@@ -1683,15 +1882,21 @@ int brl_forall(void (*fn)(struct file_id id, struct server_id pid,
 
 static void byte_range_lock_flush(struct byte_range_lock *br_lck)
 {
-       if (br_lck->read_only) {
-               SMB_ASSERT(!br_lck->modified);
-       }
-
+       size_t data_len;
        if (!br_lck->modified) {
+               DEBUG(10, ("br_lck not modified\n"));
                goto done;
        }
 
-       if (br_lck->num_locks == 0) {
+       data_len = br_lck->num_locks * sizeof(struct lock_struct);
+
+       if (br_lck->have_read_oplocks) {
+               data_len += 1;
+       }
+
+       DEBUG(10, ("data_len=%d\n", (int)data_len));
+
+       if (data_len == 0) {
                /* No locks - delete this entry. */
                NTSTATUS status = dbwrap_record_delete(br_lck->record);
                if (!NT_STATUS_IS_OK(status)) {
@@ -1703,28 +1908,35 @@ static void byte_range_lock_flush(struct byte_range_lock *br_lck)
                TDB_DATA data;
                NTSTATUS status;
 
-               data.dptr = (uint8 *)br_lck->lock_data;
-               data.dsize = br_lck->num_locks * sizeof(struct lock_struct);
+               data.dsize = data_len;
+               data.dptr = talloc_array(talloc_tos(), uint8_t, data_len);
+               SMB_ASSERT(data.dptr != NULL);
+
+               memcpy(data.dptr, br_lck->lock_data,
+                      br_lck->num_locks * sizeof(struct lock_struct));
+
+               if (br_lck->have_read_oplocks) {
+                       data.dptr[data_len-1] = 1;
+               }
 
                status = dbwrap_record_store(br_lck->record, data, TDB_REPLACE);
+               TALLOC_FREE(data.dptr);
                if (!NT_STATUS_IS_OK(status)) {
                        DEBUG(0, ("store returned %s\n", nt_errstr(status)));
                        smb_panic("Could not store byte range mode entry");
                }
        }
 
- done:
+       DEBUG(10, ("seqnum=%d\n", dbwrap_get_seqnum(brlock_db)));
 
-       br_lck->read_only = true;
+ done:
        br_lck->modified = false;
-
        TALLOC_FREE(br_lck->record);
 }
 
 static int byte_range_lock_destructor(struct byte_range_lock *br_lck)
 {
        byte_range_lock_flush(br_lck);
-       SAFE_FREE(br_lck->lock_data);
        return 0;
 }
 
@@ -1734,12 +1946,10 @@ static int byte_range_lock_destructor(struct byte_range_lock *br_lck)
  TALLOC_FREE(brl) will release the lock in the destructor.
 ********************************************************************/
 
-static struct byte_range_lock *brl_get_locks_internal(TALLOC_CTX *mem_ctx,
-                                       files_struct *fsp, bool read_only)
+struct byte_range_lock *brl_get_locks(TALLOC_CTX *mem_ctx, files_struct *fsp)
 {
        TDB_DATA key, data;
        struct byte_range_lock *br_lck = talloc(mem_ctx, struct byte_range_lock);
-       bool do_read_only = read_only;
 
        if (br_lck == NULL) {
                return NULL;
@@ -1747,40 +1957,22 @@ static struct byte_range_lock *brl_get_locks_internal(TALLOC_CTX *mem_ctx,
 
        br_lck->fsp = fsp;
        br_lck->num_locks = 0;
+       br_lck->have_read_oplocks = false;
        br_lck->modified = False;
-       br_lck->key = fsp->file_id;
 
-       key.dptr = (uint8 *)&br_lck->key;
+       key.dptr = (uint8 *)&fsp->file_id;
        key.dsize = sizeof(struct file_id);
 
-       if (!fsp->lockdb_clean) {
-               /* We must be read/write to clean
-                  the dead entries. */
-               do_read_only = false;
-       }
+       br_lck->record = dbwrap_fetch_locked(brlock_db, br_lck, key);
 
-       if (do_read_only) {
-               NTSTATUS status;
-               status = dbwrap_fetch(brlock_db, br_lck, key, &data);
-               if (!NT_STATUS_IS_OK(status)) {
-                       DEBUG(3, ("Could not fetch byte range lock record\n"));
-                       TALLOC_FREE(br_lck);
-                       return NULL;
-               }
-               br_lck->record = NULL;
-       } else {
-               br_lck->record = dbwrap_fetch_locked(brlock_db, br_lck, key);
-
-               if (br_lck->record == NULL) {
-                       DEBUG(3, ("Could not lock byte range lock entry\n"));
-                       TALLOC_FREE(br_lck);
-                       return NULL;
-               }
-
-               data = dbwrap_record_get_value(br_lck->record);
+       if (br_lck->record == NULL) {
+               DEBUG(3, ("Could not lock byte range lock entry\n"));
+               TALLOC_FREE(br_lck);
+               return NULL;
        }
 
-       br_lck->read_only = do_read_only;
+       data = dbwrap_record_get_value(br_lck->record);
+
        br_lck->lock_data = NULL;
 
        talloc_set_destructor(br_lck, byte_range_lock_destructor);
@@ -1788,27 +1980,42 @@ static struct byte_range_lock *brl_get_locks_internal(TALLOC_CTX *mem_ctx,
        br_lck->num_locks = data.dsize / sizeof(struct lock_struct);
 
        if (br_lck->num_locks != 0) {
-               br_lck->lock_data = SMB_MALLOC_ARRAY(struct lock_struct,
-                                                    br_lck->num_locks);
+               br_lck->lock_data = talloc_array(
+                       br_lck, struct lock_struct, br_lck->num_locks);
                if (br_lck->lock_data == NULL) {
                        DEBUG(0, ("malloc failed\n"));
                        TALLOC_FREE(br_lck);
                        return NULL;
                }
 
-               memcpy(br_lck->lock_data, data.dptr, data.dsize);
+               memcpy(br_lck->lock_data, data.dptr,
+                      talloc_get_size(br_lck->lock_data));
+       }
+
+       DEBUG(10, ("data.dsize=%d\n", (int)data.dsize));
+
+       if ((data.dsize % sizeof(struct lock_struct)) == 1) {
+               br_lck->have_read_oplocks = (data.dptr[data.dsize-1] == 1);
        }
 
        if (!fsp->lockdb_clean) {
                int orig_num_locks = br_lck->num_locks;
 
-               /* This is the first time we've accessed this. */
-               /* Go through and ensure all entries exist - remove any that don't. */
-               /* Makes the lockdb self cleaning at low cost. */
+               /*
+                * This is the first time we access the byte range lock
+                * record with this fsp. Go through and ensure all entries
+                * are valid - remove any that don't.
+                * This makes the lockdb self cleaning at low cost.
+                *
+                * Note: Disconnected entries belong to disconnected
+                * durable handles. So at this point, we have a new
+                * handle on the file and the disconnected durable has
+                * already been closed (we are not a durable reconnect).
+                * So we need to clean the disconnected brl entry.
+                */
 
                if (!validate_lock_entries(&br_lck->num_locks,
-                                          &br_lck->lock_data)) {
-                       SAFE_FREE(br_lck->lock_data);
+                                          &br_lck->lock_data, false)) {
                        TALLOC_FREE(br_lck);
                        return NULL;
                }
@@ -1833,47 +2040,152 @@ static struct byte_range_lock *brl_get_locks_internal(TALLOC_CTX *mem_ctx,
                }
        }
 
-       if (do_read_only != read_only) {
-               /*
-                * this stores the record and gets rid of
-                * the write lock that is needed for a cleanup
-                */
-               byte_range_lock_flush(br_lck);
-       }
-
        return br_lck;
 }
 
-struct byte_range_lock *brl_get_locks(TALLOC_CTX *mem_ctx,
-                                       files_struct *fsp)
+struct brl_get_locks_readonly_state {
+       TALLOC_CTX *mem_ctx;
+       struct byte_range_lock **br_lock;
+};
+
+static void brl_get_locks_readonly_parser(TDB_DATA key, TDB_DATA data,
+                                         void *private_data)
 {
-       return brl_get_locks_internal(mem_ctx, fsp, False);
+       struct brl_get_locks_readonly_state *state =
+               (struct brl_get_locks_readonly_state *)private_data;
+       struct byte_range_lock *br_lock;
+
+       br_lock = talloc_pooled_object(
+               state->mem_ctx, struct byte_range_lock, 1, data.dsize);
+       if (br_lock == NULL) {
+               *state->br_lock = NULL;
+               return;
+       }
+       br_lock->lock_data = (struct lock_struct *)talloc_memdup(
+               br_lock, data.dptr, data.dsize);
+       br_lock->num_locks = data.dsize / sizeof(struct lock_struct);
+
+       if ((data.dsize % sizeof(struct lock_struct)) == 1) {
+               br_lock->have_read_oplocks = (data.dptr[data.dsize-1] == 1);
+       } else {
+               br_lock->have_read_oplocks = false;
+       }
+
+       DEBUG(10, ("Got %d bytes, have_read_oplocks: %s\n", (int)data.dsize,
+                  br_lock->have_read_oplocks ? "true" : "false"));
+
+       *state->br_lock = br_lock;
 }
 
 struct byte_range_lock *brl_get_locks_readonly(files_struct *fsp)
 {
-       struct byte_range_lock *br_lock;
+       struct byte_range_lock *br_lock = NULL;
+       struct byte_range_lock *rw = NULL;
 
-       if (lp_clustering()) {
-               return brl_get_locks_internal(talloc_tos(), fsp, true);
-       }
+       DEBUG(10, ("seqnum=%d, fsp->brlock_seqnum=%d\n",
+                  dbwrap_get_seqnum(brlock_db), fsp->brlock_seqnum));
 
        if ((fsp->brlock_rec != NULL)
            && (dbwrap_get_seqnum(brlock_db) == fsp->brlock_seqnum)) {
+               /*
+                * We have cached the brlock_rec and the database did not
+                * change.
+                */
                return fsp->brlock_rec;
        }
 
-       TALLOC_FREE(fsp->brlock_rec);
+       if (!fsp->lockdb_clean) {
+               /*
+                * Fetch the record in R/W mode to give validate_lock_entries
+                * a chance to kick in once.
+                */
+               rw = brl_get_locks(talloc_tos(), fsp);
+               if (rw == NULL) {
+                       return NULL;
+               }
+               fsp->lockdb_clean = true;
+       }
 
-       br_lock = brl_get_locks_internal(talloc_tos(), fsp, true);
-       if (br_lock == NULL) {
-               return NULL;
+       if (rw != NULL) {
+               size_t lock_data_size;
+
+               /*
+                * Make a copy of the already retrieved and sanitized rw record
+                */
+               lock_data_size = rw->num_locks * sizeof(struct lock_struct);
+               br_lock = talloc_pooled_object(
+                       fsp, struct byte_range_lock, 1, lock_data_size);
+               if (br_lock == NULL) {
+                       goto fail;
+               }
+               br_lock->have_read_oplocks = rw->have_read_oplocks;
+               br_lock->num_locks = rw->num_locks;
+               br_lock->lock_data = (struct lock_struct *)talloc_memdup(
+                       br_lock, rw->lock_data, lock_data_size);
+       } else {
+               struct brl_get_locks_readonly_state state;
+               NTSTATUS status;
+
+               /*
+                * Parse the record fresh from the database
+                */
+
+               state.mem_ctx = fsp;
+               state.br_lock = &br_lock;
+
+               status = dbwrap_parse_record(
+                       brlock_db,
+                       make_tdb_data((uint8_t *)&fsp->file_id,
+                                     sizeof(fsp->file_id)),
+                       brl_get_locks_readonly_parser, &state);
+
+               if (NT_STATUS_EQUAL(status,NT_STATUS_NOT_FOUND)) {
+                       /*
+                        * No locks on this file. Return an empty br_lock.
+                        */
+                       br_lock = talloc(fsp, struct byte_range_lock);
+                       if (br_lock == NULL) {
+                               goto fail;
+                       }
+
+                       br_lock->have_read_oplocks = false;
+                       br_lock->num_locks = 0;
+                       br_lock->lock_data = NULL;
+
+               } else if (!NT_STATUS_IS_OK(status)) {
+                       DEBUG(3, ("Could not parse byte range lock record: "
+                                 "%s\n", nt_errstr(status)));
+                       goto fail;
+               }
+               if (br_lock == NULL) {
+                       goto fail;
+               }
        }
-       fsp->brlock_seqnum = dbwrap_get_seqnum(brlock_db);
 
-       fsp->brlock_rec = talloc_move(fsp, &br_lock);
+       br_lock->fsp = fsp;
+       br_lock->modified = false;
+       br_lock->record = NULL;
 
-       return fsp->brlock_rec;
+       if (lp_clustering()) {
+               /*
+                * In the cluster case we can't cache the brlock struct
+                * because dbwrap_get_seqnum does not work reliably over
+                * ctdb. Thus we have to throw away the brlock struct soon.
+                */
+               talloc_steal(talloc_tos(), br_lock);
+       } else {
+               /*
+                * Cache the brlock struct, invalidated when the dbwrap_seqnum
+                * changes. See beginning of this routine.
+                */
+               TALLOC_FREE(fsp->brlock_rec);
+               fsp->brlock_rec = br_lock;
+               fsp->brlock_seqnum = dbwrap_get_seqnum(brlock_db);
+       }
+
+fail:
+       TALLOC_FREE(rw);
+       return br_lock;
 }
 
 struct brl_revalidate_state {
@@ -1914,7 +2226,7 @@ static int compare_procids(const void *p1, const void *p2)
        const struct server_id *i2 = (const struct server_id *)p2;
 
        if (i1->pid < i2->pid) return -1;
-       if (i2->pid > i2->pid) return 1;
+       if (i1->pid > i2->pid) return 1;
        return 0;
 }
 
@@ -1974,3 +2286,75 @@ void brl_revalidate(struct messaging_context *msg_ctx,
        TALLOC_FREE(state);
        return;
 }
+
+bool brl_cleanup_disconnected(struct file_id fid, uint64_t open_persistent_id)
+{
+       bool ret = false;
+       TALLOC_CTX *frame = talloc_stackframe();
+       TDB_DATA key, val;
+       struct db_record *rec;
+       struct lock_struct *lock;
+       unsigned n, num;
+       NTSTATUS status;
+
+       key = make_tdb_data((void*)&fid, sizeof(fid));
+
+       rec = dbwrap_fetch_locked(brlock_db, frame, key);
+       if (rec == NULL) {
+               DEBUG(5, ("brl_cleanup_disconnected: failed to fetch record "
+                         "for file %s\n", file_id_string(frame, &fid)));
+               goto done;
+       }
+
+       val = dbwrap_record_get_value(rec);
+       lock = (struct lock_struct*)val.dptr;
+       num = val.dsize / sizeof(struct lock_struct);
+       if (lock == NULL) {
+               DEBUG(10, ("brl_cleanup_disconnected: no byte range locks for "
+                          "file %s\n", file_id_string(frame, &fid)));
+               ret = true;
+               goto done;
+       }
+
+       for (n=0; n<num; n++) {
+               struct lock_context *ctx = &lock[n].context;
+
+               if (!server_id_is_disconnected(&ctx->pid)) {
+                       DEBUG(5, ("brl_cleanup_disconnected: byte range lock "
+                                 "%s used by server %s, do not cleanup\n",
+                                 file_id_string(frame, &fid),
+                                 server_id_str(frame, &ctx->pid)));
+                       goto done;
+               }
+
+               if (ctx->smblctx != open_persistent_id) {
+                       DEBUG(5, ("brl_cleanup_disconnected: byte range lock "
+                                 "%s expected smblctx %llu but found %llu"
+                                 ", do not cleanup\n",
+                                 file_id_string(frame, &fid),
+                                 (unsigned long long)open_persistent_id,
+                                 (unsigned long long)ctx->smblctx));
+                       goto done;
+               }
+       }
+
+       status = dbwrap_record_delete(rec);
+       if (!NT_STATUS_IS_OK(status)) {
+               DEBUG(5, ("brl_cleanup_disconnected: failed to delete record "
+                         "for file %s from %s, open %llu: %s\n",
+                         file_id_string(frame, &fid), dbwrap_name(brlock_db),
+                         (unsigned long long)open_persistent_id,
+                         nt_errstr(status)));
+               goto done;
+       }
+
+       DEBUG(10, ("brl_cleanup_disconnected: "
+                  "file %s cleaned up %u entries from open %llu\n",
+                  file_id_string(frame, &fid), num,
+                  (unsigned long long)open_persistent_id));
+
+       ret = true;
+done:
+       talloc_free(frame);
+       return ret;
+}