Removed version number from file header.
[ira/wip.git] / source3 / smbd / blocking.c
index 1aa80b27977fdd095f8268ee8593fdf4d0d879dc..024e5b9f66252a8c2441249d837aceb4b870efba 100644 (file)
@@ -1,6 +1,5 @@
 /* 
-   Unix SMB/Netbios implementation.
-   Version 1.9.
+   Unix SMB/CIFS implementation.
    Blocking Locking functions
    Copyright (C) Jeremy Allison 1998
    
@@ -20,9 +19,7 @@
 */
 
 #include "includes.h"
-extern int DEBUGLEVEL;
-extern int Client;
-extern int chain_size;
+
 extern char *OutBuffer;
 
 /****************************************************************************
@@ -33,6 +30,7 @@ extern char *OutBuffer;
 typedef struct {
   ubi_slNode msg_next;
   int com_type;
+  files_struct *fsp;
   time_t expire_time;
   int lock_num;
   char *inbuf;
@@ -47,8 +45,27 @@ static ubi_slList blocking_lock_queue = { NULL, (ubi_slNodePtr)&blocking_lock_qu
 
 static void free_blocking_lock_record(blocking_lock_record *blr)
 {
-  free(blr->inbuf);
-  free((char *)blr);
+  SAFE_FREE(blr->inbuf);
+  SAFE_FREE(blr);
+}
+
+/****************************************************************************
+ Get the files_struct given a particular queued SMB.
+*****************************************************************************/
+
+static files_struct *get_fsp_from_pkt(char *inbuf)
+{
+  switch(CVAL(inbuf,smb_com)) {
+  case SMBlock:
+  case SMBlockread:
+    return file_fsp(inbuf,smb_vwv0);
+  case SMBlockingX:
+    return file_fsp(inbuf,smb_vwv2);
+  default:
+    DEBUG(0,("get_fsp_from_pkt: PANIC - unknown type on blocking lock queue - exiting.!\n"));
+    exit_server("PANIC - unknown type on blocking lock queue");
+  }
+  return NULL; /* Keep compiler happy. */
 }
 
 /****************************************************************************
@@ -67,7 +84,6 @@ static BOOL in_chained_smb(void)
 BOOL push_blocking_lock_request( char *inbuf, int length, int lock_timeout, int lock_num)
 {
   blocking_lock_record *blr;
-  files_struct *fsp = file_fsp(inbuf,smb_vwv2);
 
   if(in_chained_smb() ) {
     DEBUG(0,("push_blocking_lock_request: cannot queue a chained request (currently).\n"));
@@ -86,11 +102,12 @@ BOOL push_blocking_lock_request( char *inbuf, int length, int lock_timeout, int
 
   if((blr->inbuf = (char *)malloc(length)) == NULL) {
     DEBUG(0,("push_blocking_lock_request: Malloc fail (2)!\n" ));
-    free((char *)blr);
+    SAFE_FREE(blr);
     return False;
   }
 
   blr->com_type = CVAL(inbuf,smb_com);
+  blr->fsp = get_fsp_from_pkt(inbuf);
   blr->expire_time = (lock_timeout == -1) ? (time_t)-1 : time(NULL) + (time_t)lock_timeout;
   blr->lock_num = lock_num;
   memcpy(blr->inbuf, inbuf, length);
@@ -98,8 +115,10 @@ BOOL push_blocking_lock_request( char *inbuf, int length, int lock_timeout, int
 
   ubi_slAddTail(&blocking_lock_queue, blr);
 
-  DEBUG(3,("push_blocking_lock_request: lock request length=%d blocked with expiry time %d \
-for fnum = %d, name = %s\n", length, (int)blr->expire_time, fsp->fnum, fsp->fsp_name ));
+
+  DEBUG(3,("push_blocking_lock_request: lock request length=%d blocked with expiry time %d (+%d) \
+for fnum = %d, name = %s\n", length, (int)blr->expire_time, lock_timeout,
+        blr->fsp->fnum, blr->fsp->fsp_name ));
 
   return True;
 }
@@ -110,10 +129,11 @@ for fnum = %d, name = %s\n", length, (int)blr->expire_time, fsp->fnum, fsp->fsp_
 
 static void send_blocking_reply(char *outbuf, int outsize)
 {
-  if(outsize > 4)
-    smb_setlen(outbuf,outsize - 4);
+       if(outsize > 4)
+               smb_setlen(outbuf,outsize - 4);
 
-  send_smb(Client,outbuf);
+       if (!send_smb(smbd_server_fd(),outbuf))
+               exit_server("send_blocking_reply: send_smb failed.");
 }
 
 /****************************************************************************
@@ -149,17 +169,15 @@ static void reply_lockingX_success(blocking_lock_record *blr)
  Return a generic lock fail error blocking call.
 *****************************************************************************/
 
-static void generic_blocking_lock_error(blocking_lock_record *blr, int eclass, int32 ecode)
+static void generic_blocking_lock_error(blocking_lock_record *blr, NTSTATUS status)
 {
-  char *outbuf = OutBuffer;
-  char *inbuf = blr->inbuf;
-  construct_reply_common(inbuf, outbuf);
-
-  if(eclass == 0) /* NT Error. */
-    SSVAL(outbuf,smb_flg2, SVAL(outbuf,smb_flg2) | FLAGS2_32_BIT_ERROR_CODES);
+       char *outbuf = OutBuffer;
+       char *inbuf = blr->inbuf;
+       construct_reply_common(inbuf, outbuf);
 
-  ERROR(eclass,ecode);
-  send_smb(Client,outbuf);
+       ERROR_NT(status);
+       if (!send_smb(smbd_server_fd(),outbuf))
+               exit_server("generic_blocking_lock_error: send_smb failed.");
 }
 
 /****************************************************************************
@@ -167,54 +185,68 @@ static void generic_blocking_lock_error(blocking_lock_record *blr, int eclass, i
  obtained first.
 *****************************************************************************/
 
-static void reply_lockingX_error(blocking_lock_record *blr, int eclass, int32 ecode)
+static void reply_lockingX_error(blocking_lock_record *blr, NTSTATUS status)
 {
-  char *inbuf = blr->inbuf;
-  files_struct *fsp = file_fsp(inbuf,smb_vwv2);
-  connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
-  uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
-  uint32 count, offset;
-  char *data;
-  int i;
-
-  data = smb_buf(inbuf) + 10*num_ulocks;
-
-  /* 
-   * Data now points at the beginning of the list
-   * of smb_lkrng structs.
-   */
-
-  for(i = blr->lock_num; i >= 0; i--) {
-    int dummy1;
-    uint32 dummy2;
-    count = IVAL(data,SMB_LKLEN_OFFSET(i));
-    offset = IVAL(data,SMB_LKOFF_OFFSET(i));
-    do_unlock(fsp,conn,count,offset,&dummy1,&dummy2);
-  }
-
-  generic_blocking_lock_error(blr, eclass, ecode);
+       char *inbuf = blr->inbuf;
+       files_struct *fsp = blr->fsp;
+       connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
+       uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
+       SMB_BIG_UINT count = (SMB_BIG_UINT)0, offset = (SMB_BIG_UINT) 0;
+       uint16 lock_pid;
+       unsigned char locktype = CVAL(inbuf,smb_vwv3);
+       BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES);
+       char *data;
+       int i;
+
+       data = smb_buf(inbuf) + ((large_file_format ? 20 : 10)*num_ulocks);
+       
+       /* 
+        * Data now points at the beginning of the list
+        * of smb_lkrng structs.
+        */
+
+       /*
+        * Ensure we don't do a remove on the lock that just failed,
+        * as under POSIX rules, if we have a lock already there, we
+        * will delete it (and we shouldn't) .....
+        */
+       
+       for(i = blr->lock_num - 1; i >= 0; i--) {
+               BOOL err;
+               
+               lock_pid = get_lock_pid( data, i, large_file_format);
+               count = get_lock_count( data, i, large_file_format);
+               offset = get_lock_offset( data, i, large_file_format, &err);
+               
+               /*
+                * We know err cannot be set as if it was the lock
+                * request would never have been queued. JRA.
+                */
+               
+               do_unlock(fsp,conn,lock_pid,count,offset);
+       }
+       
+       generic_blocking_lock_error(blr, status);
 }
 
 /****************************************************************************
  Return a lock fail error.
 *****************************************************************************/
 
-static void blocking_lock_reply_error(blocking_lock_record *blr, int eclass, int32 ecode)
+static void blocking_lock_reply_error(blocking_lock_record *blr, NTSTATUS status)
 {
-  switch(blr->com_type) {
-  case SMBlock:
-    generic_blocking_lock_error(blr, eclass, ecode);
-    break;
-  case SMBlockread:
-    generic_blocking_lock_error(blr, eclass, ecode);
-    break;
-  case SMBlockingX:
-    reply_lockingX_error(blr, eclass, ecode);
-    break;
-  default:
-    DEBUG(0,("blocking_lock_reply_error: PANIC - unknown type on blocking lock queue - exiting.!\n"));
-    exit_server("PANIC - unknown type on blocking lock queue");
-  }
+       switch(blr->com_type) {
+       case SMBlock:
+       case SMBlockread:
+               generic_blocking_lock_error(blr, status);
+               break;
+       case SMBlockingX:
+               reply_lockingX_error(blr, status);
+               break;
+       default:
+               DEBUG(0,("blocking_lock_reply_error: PANIC - unknown type on blocking lock queue - exiting.!\n"));
+               exit_server("PANIC - unknown type on blocking lock queue");
+       }
 }
 
 /****************************************************************************
@@ -224,64 +256,68 @@ static void blocking_lock_reply_error(blocking_lock_record *blr, int eclass, int
 
 static BOOL process_lockread(blocking_lock_record *blr)
 {
-  char *outbuf = OutBuffer;
-  char *inbuf = blr->inbuf;
-  int nread = -1;
-  char *data;
-  int outsize = 0;
-  uint32 startpos, numtoread;
-  int eclass;
-  uint32 ecode;
-  connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
-  files_struct *fsp = file_fsp(inbuf,smb_vwv0);
-
-  numtoread = SVAL(inbuf,smb_vwv1);
-  startpos = IVAL(inbuf,smb_vwv2);
-  numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
-  data = smb_buf(outbuf) + 3;
+       char *outbuf = OutBuffer;
+       char *inbuf = blr->inbuf;
+       ssize_t nread = -1;
+       char *data, *p;
+       int outsize = 0;
+       SMB_OFF_T startpos;
+       size_t numtoread;
+       NTSTATUS status;
+       connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
+       files_struct *fsp = blr->fsp;
+
+       numtoread = SVAL(inbuf,smb_vwv1);
+       startpos = IVAL(inbuf,smb_vwv2);
+       
+       numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
+       data = smb_buf(outbuf) + 3;
  
-  if(!do_lock( fsp, conn, numtoread, startpos, F_RDLCK, &eclass, &ecode)) {
-    if((errno != EACCES) && (errno != EAGAIN)) {
-      /*
-       * We have other than a "can't get lock" POSIX
-       * error. Send an error.
-       * Return True so we get dequeued.
-       */
-
-      generic_blocking_lock_error(blr, eclass, ecode);
-      return True;
-    }
-
-    /*
-     * Still waiting for lock....
-     */
-
-    DEBUG(10,("process_lockread: failed to get lock for file = %s. Still waiting....\n",
-          fsp->fsp_name));
-    return False;
-  }
-
-  nread = read_file(fsp,data,startpos,numtoread);
-
-  if (nread < 0) {
-    generic_blocking_lock_error(blr,ERRDOS,ERRnoaccess);
-    return True;
-  }
-
-  construct_reply_common(inbuf, outbuf);
-  outsize = set_message(outbuf,5,3,True);
-
-  outsize += nread;
-  SSVAL(outbuf,smb_vwv0,nread);
-  SSVAL(outbuf,smb_vwv5,nread+3);
-  SSVAL(smb_buf(outbuf),1,nread);
-
-  DEBUG(3, ( "process_lockread file = %s, fnum=%d num=%d nread=%d\n",
-        fsp->fsp_name, fsp->fnum, numtoread, nread ) );
-
-  send_blocking_reply(outbuf,outsize);
-  return True;
+       status = do_lock( fsp, conn, SVAL(inbuf,smb_pid), (SMB_BIG_UINT)numtoread, 
+                         (SMB_BIG_UINT)startpos, READ_LOCK);
+       if (NT_STATUS_V(status)) {
+               if ((errno != EACCES) && (errno != EAGAIN)) {
+                       /*
+                        * We have other than a "can't get lock" POSIX
+                        * error. Send an error.
+                        * Return True so we get dequeued.
+                        */
+                       generic_blocking_lock_error(blr, status);
+                       return True;
+               }
+
+               /*
+                * Still waiting for lock....
+                */
+               
+               DEBUG(10,("process_lockread: failed to get lock for file = %s. Still waiting....\n",
+                         fsp->fsp_name));
+               return False;
+       }
+
+       nread = read_file(fsp,data,startpos,numtoread);
+
+       if (nread < 0) {
+               generic_blocking_lock_error(blr,NT_STATUS_ACCESS_DENIED);
+               return True;
+       }
+       
+       construct_reply_common(inbuf, outbuf);
+       outsize = set_message(outbuf,5,0,True);
+       
+       outsize += nread;
+       SSVAL(outbuf,smb_vwv0,nread);
+       SSVAL(outbuf,smb_vwv5,nread+3);
+       p = smb_buf(outbuf);
+       *p++ = 1;
+       SSVAL(p,0,nread); p += 2;
+       set_message_end(outbuf, p+nread);
+       
+       DEBUG(3, ( "process_lockread file = %s, fnum=%d num=%d nread=%d\n",
+                  fsp->fsp_name, fsp->fnum, (int)numtoread, (int)nread ) );
+       
+       send_blocking_reply(outbuf,outsize);
+       return True;
 }
 
 /****************************************************************************
@@ -291,52 +327,50 @@ static BOOL process_lockread(blocking_lock_record *blr)
 
 static BOOL process_lock(blocking_lock_record *blr)
 {
-  char *outbuf = OutBuffer;
-  char *inbuf = blr->inbuf;
-  int outsize;
-  uint32 count,offset;
-  int eclass;
-  uint32 ecode;
-  connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
-  files_struct *fsp = file_fsp(inbuf,smb_vwv0);
-
-  count = IVAL(inbuf,smb_vwv1);
-  offset = IVAL(inbuf,smb_vwv3);
-
-  errno = 0;
-  if (!do_lock(fsp, conn, count, offset, F_WRLCK, &eclass, &ecode)) {
-    if((errno != EACCES) && (errno != EAGAIN)) {
-
-      /*
-       * We have other than a "can't get lock" POSIX
-       * error. Send an error.
-       * Return True so we get dequeued.
-       */
-
-      blocking_lock_reply_error(blr, eclass, ecode);
-      return True;
-    }
-
-    /*
-     * Still can't get the lock - keep waiting.
-     */
-
-    DEBUG(10,("process_lock: failed to get lock for file = %s. Still waiting....\n",
-          fsp->fsp_name));
-    return False;
-  }
-
-  /*
-   * Success - we got the lock.
-   */
-
-  DEBUG(3,("process_lock : file=%s fnum=%d ofs=%d cnt=%d\n",
-       fsp->fsp_name, fsp->fnum, (int)offset, (int)count));
-
-  construct_reply_common(inbuf, outbuf);
-  outsize = set_message(outbuf,0,0,True);
-  send_blocking_reply(outbuf,outsize);
-  return True;
+       char *outbuf = OutBuffer;
+       char *inbuf = blr->inbuf;
+       int outsize;
+       SMB_OFF_T count = 0, offset = 0;
+       NTSTATUS status;
+       connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
+       files_struct *fsp = blr->fsp;
+
+       count = IVAL(inbuf,smb_vwv1);
+       offset = IVAL(inbuf,smb_vwv3);
+
+       errno = 0;
+       status = do_lock(fsp, conn, SVAL(inbuf,smb_pid), (SMB_BIG_UINT)count, 
+                        (SMB_BIG_UINT)offset, WRITE_LOCK);
+       if (NT_STATUS_IS_ERR(status)) {
+               if((errno != EACCES) && (errno != EAGAIN)) {
+                       /*
+                        * We have other than a "can't get lock" POSIX
+                        * error. Send an error.
+                        * Return True so we get dequeued.
+                        */
+                       
+                       blocking_lock_reply_error(blr, status);
+                       return True;
+               }
+               /*
+                * Still can't get the lock - keep waiting.
+                */
+               DEBUG(10,("process_lock: failed to get lock for file = %s. Still waiting....\n",
+                         fsp->fsp_name));
+               return False;
+       }
+
+       /*
+        * Success - we got the lock.
+        */
+       
+       DEBUG(3,("process_lock : file=%s fnum=%d offset=%.0f count=%.0f\n",
+                fsp->fsp_name, fsp->fnum, (double)offset, (double)count));
+       
+       construct_reply_common(inbuf, outbuf);
+       outsize = set_message(outbuf,0,0,True);
+       send_blocking_reply(outbuf,outsize);
+       return True;
 }
 
 /****************************************************************************
@@ -346,65 +380,72 @@ static BOOL process_lock(blocking_lock_record *blr)
 
 static BOOL process_lockingX(blocking_lock_record *blr)
 {
-  char *inbuf = blr->inbuf;
-  unsigned char locktype = CVAL(inbuf,smb_vwv3);
-  files_struct *fsp = file_fsp(inbuf,smb_vwv2);
-  connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
-  uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
-  uint16 num_locks = SVAL(inbuf,smb_vwv7);
-  uint32 count, offset;
-  char *data;
-  int eclass=0;
-  uint32 ecode=0;
-
-  data = smb_buf(inbuf) + 10*num_ulocks;
-
-  /* 
-   * Data now points at the beginning of the list
-   * of smb_lkrng structs.
-   */
-
-  for(; blr->lock_num < num_locks; blr->lock_num++) {
-    count = IVAL(data,SMB_LKLEN_OFFSET(blr->lock_num));
-    offset = IVAL(data,SMB_LKOFF_OFFSET(blr->lock_num));
-    errno = 0;
-    if(!do_lock(fsp,conn,count,offset, ((locktype & 1) ? F_RDLCK : F_WRLCK),
-                &eclass, &ecode))
-      break;
-  }
-
-  if(blr->lock_num == num_locks) {
-
-    /*
-     * Success - we got all the locks.
-     */
-
-    DEBUG(3,("process_lockingX file = %s, fnum=%d type=%d num_locks=%d\n",
-          fsp->fsp_name, fsp->fnum, (unsigned int)locktype, num_locks) );
-
-    reply_lockingX_success(blr);
-    return True;
-
-  } else if((errno != EACCES) && (errno != EAGAIN)) {
-
-    /*
-     * We have other than a "can't get lock" POSIX
-     * error. Free any locks we had and return an error.
-     * Return True so we get dequeued.
-     */
-
-    blocking_lock_reply_error(blr, eclass, ecode);
-    return True;
-  }
-
-  /*
-   * Still can't get all the locks - keep waiting.
-   */
-
-  DEBUG(10,("process_lockingX: only got %d locks of %d needed for file %s, fnum = %d. \
-Waiting....\n", blr->lock_num, num_locks, fsp->fsp_name, fsp->fnum));
-
-  return False;
+       char *inbuf = blr->inbuf;
+       unsigned char locktype = CVAL(inbuf,smb_vwv3);
+       files_struct *fsp = blr->fsp;
+       connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
+       uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
+       uint16 num_locks = SVAL(inbuf,smb_vwv7);
+       SMB_BIG_UINT count = (SMB_BIG_UINT)0, offset = (SMB_BIG_UINT)0;
+       uint16 lock_pid;
+       BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES);
+       char *data;
+       NTSTATUS status = NT_STATUS_OK;
+
+       data = smb_buf(inbuf) + ((large_file_format ? 20 : 10)*num_ulocks);
+
+       /* 
+        * Data now points at the beginning of the list
+        * of smb_lkrng structs.
+        */
+       
+       for(; blr->lock_num < num_locks; blr->lock_num++) {
+               BOOL err;
+
+               lock_pid = get_lock_pid( data, blr->lock_num, large_file_format);
+               count = get_lock_count( data, blr->lock_num, large_file_format);
+               offset = get_lock_offset( data, blr->lock_num, large_file_format, &err);
+               
+               /*
+                * We know err cannot be set as if it was the lock
+                * request would never have been queued. JRA.
+                */
+               errno = 0;
+               status = do_lock(fsp,conn,lock_pid,count,offset, 
+                                ((locktype & 1) ? READ_LOCK : WRITE_LOCK));
+               if (NT_STATUS_IS_ERR(status)) break;
+       }
+
+       if(blr->lock_num == num_locks) {
+               /*
+                * Success - we got all the locks.
+                */
+               
+               DEBUG(3,("process_lockingX file = %s, fnum=%d type=%d num_locks=%d\n",
+                        fsp->fsp_name, fsp->fnum, (unsigned int)locktype, num_locks) );
+
+               reply_lockingX_success(blr);
+               return True;
+       } else if ((errno != EACCES) && (errno != EAGAIN)) {
+               /*
+                * We have other than a "can't get lock" POSIX
+                * error. Free any locks we had and return an error.
+                * Return True so we get dequeued.
+                */
+               
+               blocking_lock_reply_error(blr, status);
+               return True;
+       }
+
+       /*
+        * Still can't get all the locks - keep waiting.
+        */
+       
+       DEBUG(10,("process_lockingX: only got %d locks of %d needed for file %s, fnum = %d. \
+Waiting....\n", 
+                 blr->lock_num, num_locks, fsp->fsp_name, fsp->fnum));
+       
+       return False;
 }
 
 /****************************************************************************
@@ -428,25 +469,6 @@ static BOOL blocking_lock_record_process(blocking_lock_record *blr)
   return False; /* Keep compiler happy. */
 }
 
-/****************************************************************************
- Get the files_struct given a particular queued SMB.
-*****************************************************************************/
-
-static files_struct *get_fsp_from_blr(blocking_lock_record *blr)
-{
-  switch(blr->com_type) {
-  case SMBlock:
-  case SMBlockread:
-    return file_fsp(blr->inbuf,smb_vwv0);
-  case SMBlockingX:
-    return file_fsp(blr->inbuf,smb_vwv2);
-  default:
-    DEBUG(0,("get_fsp_from_blr: PANIC - unknown type on blocking lock queue - exiting.!\n"));
-    exit_server("PANIC - unknown type on blocking lock queue");
-  }
-  return NULL; /* Keep compiler happy. */
-}
-
 /****************************************************************************
  Delete entries by fnum from the blocking lock pending queue.
 *****************************************************************************/
@@ -457,9 +479,11 @@ void remove_pending_lock_requests_by_fid(files_struct *fsp)
   blocking_lock_record *prev = NULL;
 
   while(blr != NULL) {
-    files_struct *req_fsp = get_fsp_from_blr(blr);
+    if(blr->fsp->fnum == fsp->fnum) {
+
+      DEBUG(10,("remove_pending_lock_requests_by_fid - removing request type %d for \
+file %s fnum = %d\n", blr->com_type, fsp->fsp_name, fsp->fnum ));
 
-    if(req_fsp == fsp) {
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
       continue;
@@ -481,7 +505,12 @@ void remove_pending_lock_requests_by_mid(int mid)
 
   while(blr != NULL) {
     if(SVAL(blr->inbuf,smb_mid) == mid) {
-      blocking_lock_reply_error(blr,0,NT_STATUS_CANCELLED);
+      files_struct *fsp = blr->fsp;
+
+      DEBUG(10,("remove_pending_lock_requests_by_mid - removing request type %d for \
+file %s fnum = %d\n", blr->com_type, fsp->fsp_name, fsp->fnum ));
+
+      blocking_lock_reply_error(blr,NT_STATUS_CANCELLED);
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
       continue;
@@ -492,6 +521,16 @@ void remove_pending_lock_requests_by_mid(int mid)
   }
 }
 
+/****************************************************************************
+ Return True if the blocking lock queue has entries.
+*****************************************************************************/
+
+BOOL blocking_locks_pending(void)
+{
+  blocking_lock_record *blr = (blocking_lock_record *)ubi_slFirst( &blocking_lock_queue );
+  return (blr == NULL ? False : True);
+}
+
 /****************************************************************************
  Process the blocking lock queue. Note that this is only called as root.
 *****************************************************************************/
@@ -511,14 +550,15 @@ void process_blocking_lock_queue(time_t t)
   while(blr != NULL) {
     connection_struct *conn = NULL;
     uint16 vuid;
-    files_struct *fsp = get_fsp_from_blr(blr);
+    files_struct *fsp = NULL;
 
     /*
-     * Ensure we don't have any old chain_fnum values
+     * Ensure we don't have any old chain_fsp values
      * sitting around....
      */
     chain_size = 0;
     file_chain_reset();
+    fsp = blr->fsp;
 
     conn = conn_find(SVAL(blr->inbuf,smb_tid));
     vuid = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID :
@@ -535,33 +575,33 @@ void process_blocking_lock_queue(time_t t)
       DEBUG(5,("process_blocking_lock_queue: pending lock fnum = %d for file %s timed out.\n",
           fsp->fnum, fsp->fsp_name ));
 
-      blocking_lock_reply_error(blr,ERRSRV,ERRaccess);
+      blocking_lock_reply_error(blr,NT_STATUS_ACCESS_DENIED);
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
       continue;
     }
 
-    if(!become_user(conn,vuid)) {
+    if(!change_to_user(conn,vuid)) {
       DEBUG(0,("process_blocking_lock_queue: Unable to become user vuid=%d.\n",
             vuid ));
       /*
        * Remove the entry and return an error to the client.
        */
-      blocking_lock_reply_error(blr,ERRSRV,ERRaccess);
+      blocking_lock_reply_error(blr,NT_STATUS_ACCESS_DENIED);
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
       continue;
     }
 
-    if(!become_service(conn,True)) {
+    if(!set_current_service(conn,True)) {
       DEBUG(0,("process_blocking_lock_queue: Unable to become service Error was %s.\n", strerror(errno) ));
       /*
        * Remove the entry and return an error to the client.
        */
-      blocking_lock_reply_error(blr,ERRSRV,ERRaccess);
+      blocking_lock_reply_error(blr,NT_STATUS_ACCESS_DENIED);
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
-      unbecome_user();
+      change_to_root_user();
       continue;
     }
 
@@ -574,11 +614,11 @@ void process_blocking_lock_queue(time_t t)
     if(blocking_lock_record_process(blr)) {
       free_blocking_lock_record((blocking_lock_record *)ubi_slRemNext( &blocking_lock_queue, prev));
       blr = (blocking_lock_record *)(prev ? ubi_slNext(prev) : ubi_slFirst(&blocking_lock_queue));
-      unbecome_user();
+      change_to_root_user();
       continue;
     }
 
-    unbecome_user();
+    change_to_root_user();
 
     /*
      * Move to the next in the list.