2 Unix SMB/CIFS implementation.
3 Blocking Locking functions
4 Copyright (C) Jeremy Allison 1998-2003
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "smbd/globals.h"
22 #include "librpc/gen_ndr/messaging.h"
25 #define DBGC_CLASS DBGC_LOCKING
27 /****************************************************************************
28 Determine if this is a secondary element of a chained SMB.
29 **************************************************************************/
31 static void received_unlock_msg(struct messaging_context
*msg
,
34 struct server_id server_id
,
37 void brl_timeout_fn(struct event_context
*event_ctx
,
38 struct timed_event
*te
,
42 struct smbd_server_connection
*sconn
= talloc_get_type_abort(
43 private_data
, struct smbd_server_connection
);
45 if (sconn
->using_smb2
) {
46 SMB_ASSERT(sconn
->smb2
.locks
.brl_timeout
== te
);
47 TALLOC_FREE(sconn
->smb2
.locks
.brl_timeout
);
49 SMB_ASSERT(sconn
->smb1
.locks
.brl_timeout
== te
);
50 TALLOC_FREE(sconn
->smb1
.locks
.brl_timeout
);
53 change_to_root_user(); /* TODO: Possibly run all timed events as
56 process_blocking_lock_queue(sconn
);
59 /****************************************************************************
60 We need a version of timeval_min that treats zero timval as infinite.
61 ****************************************************************************/
63 struct timeval
timeval_brl_min(const struct timeval
*tv1
,
64 const struct timeval
*tv2
)
66 if (timeval_is_zero(tv1
)) {
69 if (timeval_is_zero(tv2
)) {
72 return timeval_min(tv1
, tv2
);
75 /****************************************************************************
76 After a change to blocking_lock_queue, recalculate the timed_event for the
78 ****************************************************************************/
80 static bool recalc_brl_timeout(struct smbd_server_connection
*sconn
)
82 struct blocking_lock_record
*blr
;
83 struct timeval next_timeout
;
84 int max_brl_timeout
= lp_parm_int(-1, "brl", "recalctime", 5);
86 TALLOC_FREE(sconn
->smb1
.locks
.brl_timeout
);
88 next_timeout
= timeval_zero();
90 for (blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= blr
->next
) {
91 if (timeval_is_zero(&blr
->expire_time
)) {
93 * If we're blocked on pid 0xFFFFFFFFFFFFFFFFLL this is
94 * a POSIX lock, so calculate a timeout of
95 * 10 seconds into the future.
97 if (blr
->blocking_smblctx
== 0xFFFFFFFFFFFFFFFFLL
) {
98 struct timeval psx_to
= timeval_current_ofs(10, 0);
99 next_timeout
= timeval_brl_min(&next_timeout
, &psx_to
);
105 next_timeout
= timeval_brl_min(&next_timeout
, &blr
->expire_time
);
108 if (timeval_is_zero(&next_timeout
)) {
109 DEBUG(10, ("Next timeout = Infinite.\n"));
114 to account for unclean shutdowns by clients we need a
115 maximum timeout that we use for checking pending locks. If
116 we have any pending locks at all, then check if the pending
117 lock can continue at least every brl:recalctime seconds
120 This saves us needing to do a message_send_all() in the
121 SIGCHLD handler in the parent daemon. That
122 message_send_all() caused O(n^2) work to be done when IP
123 failovers happened in clustered Samba, which could make the
124 entire system unusable for many minutes.
127 if (max_brl_timeout
> 0) {
128 struct timeval min_to
= timeval_current_ofs(max_brl_timeout
, 0);
129 next_timeout
= timeval_min(&next_timeout
, &min_to
);
133 struct timeval cur
, from_now
;
135 cur
= timeval_current();
136 from_now
= timeval_until(&cur
, &next_timeout
);
137 DEBUG(10, ("Next timeout = %d.%d seconds from now.\n",
138 (int)from_now
.tv_sec
, (int)from_now
.tv_usec
));
141 sconn
->smb1
.locks
.brl_timeout
= event_add_timed(smbd_event_context(),
143 brl_timeout_fn
, sconn
);
144 if (sconn
->smb1
.locks
.brl_timeout
== NULL
) {
152 /****************************************************************************
153 Function to push a blocking lock request onto the lock queue.
154 ****************************************************************************/
156 bool push_blocking_lock_request( struct byte_range_lock
*br_lck
,
157 struct smb_request
*req
,
162 enum brl_type lock_type
,
163 enum brl_flavour lock_flav
,
166 uint64_t blocking_smblctx
)
168 struct smbd_server_connection
*sconn
= req
->sconn
;
169 struct blocking_lock_record
*blr
;
173 return push_blocking_lock_request_smb2(br_lck
,
186 if(req_is_in_chain(req
)) {
187 DEBUG(0,("push_blocking_lock_request: cannot queue a chained request (currently).\n"));
192 * Now queue an entry on the blocking lock queue. We setup
193 * the expiration time here.
196 blr
= talloc(NULL
, struct blocking_lock_record
);
198 DEBUG(0,("push_blocking_lock_request: Malloc fail !\n" ));
206 if (lock_timeout
== -1) {
207 blr
->expire_time
.tv_sec
= 0;
208 blr
->expire_time
.tv_usec
= 0; /* Never expire. */
210 blr
->expire_time
= timeval_current_ofs(lock_timeout
/1000,
211 (lock_timeout
% 1000) * 1000);
213 blr
->lock_num
= lock_num
;
214 blr
->smblctx
= smblctx
;
215 blr
->blocking_smblctx
= blocking_smblctx
;
216 blr
->lock_flav
= lock_flav
;
217 blr
->lock_type
= lock_type
;
218 blr
->offset
= offset
;
221 /* Specific brl_lock() implementations can fill this in. */
222 blr
->blr_private
= NULL
;
224 /* Add a pending lock record for this. */
225 status
= brl_lock(req
->sconn
->msg_ctx
,
228 sconn_server_id(req
->sconn
),
231 lock_type
== READ_LOCK
? PENDING_READ_LOCK
: PENDING_WRITE_LOCK
,
237 if (!NT_STATUS_IS_OK(status
)) {
238 DEBUG(0,("push_blocking_lock_request: failed to add PENDING_LOCK record.\n"));
243 SMB_PERFCOUNT_DEFER_OP(&req
->pcd
, &req
->pcd
);
244 blr
->req
= talloc_move(blr
, &req
);
246 DLIST_ADD_END(sconn
->smb1
.locks
.blocking_lock_queue
, blr
, struct blocking_lock_record
*);
247 recalc_brl_timeout(sconn
);
249 /* Ensure we'll receive messages when this is unlocked. */
250 if (!sconn
->smb1
.locks
.blocking_lock_unlock_state
) {
251 messaging_register(sconn
->msg_ctx
, NULL
,
252 MSG_SMB_UNLOCK
, received_unlock_msg
);
253 sconn
->smb1
.locks
.blocking_lock_unlock_state
= true;
256 DEBUG(3,("push_blocking_lock_request: lock request blocked with "
257 "expiry time (%u sec. %u usec) (+%d msec) for fnum = %d, name = %s\n",
258 (unsigned int)blr
->expire_time
.tv_sec
,
259 (unsigned int)blr
->expire_time
.tv_usec
, lock_timeout
,
260 blr
->fsp
->fnum
, fsp_str_dbg(blr
->fsp
)));
265 /****************************************************************************
266 Return a lockingX success SMB.
267 *****************************************************************************/
269 static void reply_lockingX_success(struct blocking_lock_record
*blr
)
271 reply_outbuf(blr
->req
, 2, 0);
274 * As this message is a lockingX call we must handle
275 * any following chained message correctly.
276 * This is normally handled in construct_reply(),
277 * but as that calls switch_message, we can't use
278 * that here and must set up the chain info manually.
281 chain_reply(blr
->req
);
282 TALLOC_FREE(blr
->req
->outbuf
);
285 /****************************************************************************
286 Return a generic lock fail error blocking call.
287 *****************************************************************************/
289 static void generic_blocking_lock_error(struct blocking_lock_record
*blr
, NTSTATUS status
)
291 /* whenever a timeout is given w2k maps LOCK_NOT_GRANTED to
292 FILE_LOCK_CONFLICT! (tridge) */
293 if (NT_STATUS_EQUAL(status
, NT_STATUS_LOCK_NOT_GRANTED
)) {
294 status
= NT_STATUS_FILE_LOCK_CONFLICT
;
297 if (NT_STATUS_EQUAL(status
, NT_STATUS_FILE_LOCK_CONFLICT
)) {
298 /* Store the last lock error. */
299 files_struct
*fsp
= blr
->fsp
;
302 fsp
->last_lock_failure
.context
.smblctx
= blr
->smblctx
;
303 fsp
->last_lock_failure
.context
.tid
= fsp
->conn
->cnum
;
304 fsp
->last_lock_failure
.context
.pid
=
305 sconn_server_id(fsp
->conn
->sconn
);
306 fsp
->last_lock_failure
.start
= blr
->offset
;
307 fsp
->last_lock_failure
.size
= blr
->count
;
308 fsp
->last_lock_failure
.fnum
= fsp
->fnum
;
309 fsp
->last_lock_failure
.lock_type
= READ_LOCK
; /* Don't care. */
310 fsp
->last_lock_failure
.lock_flav
= blr
->lock_flav
;
314 reply_nterror(blr
->req
, status
);
315 if (!srv_send_smb(blr
->req
->sconn
, (char *)blr
->req
->outbuf
,
316 true, blr
->req
->seqnum
+1,
317 blr
->req
->encrypted
, NULL
)) {
318 exit_server_cleanly("generic_blocking_lock_error: srv_send_smb failed.");
320 TALLOC_FREE(blr
->req
->outbuf
);
323 /****************************************************************************
324 Return a lock fail error for a lockingX call. Undo all the locks we have
326 *****************************************************************************/
328 static void reply_lockingX_error(struct blocking_lock_record
*blr
, NTSTATUS status
)
330 files_struct
*fsp
= blr
->fsp
;
331 uint16 num_ulocks
= SVAL(blr
->req
->vwv
+6, 0);
332 uint64_t count
= (uint64_t)0, offset
= (uint64_t) 0;
334 unsigned char locktype
= CVAL(blr
->req
->vwv
+3, 0);
335 bool large_file_format
= (locktype
& LOCKING_ANDX_LARGE_FILES
);
339 data
= (uint8_t *)blr
->req
->buf
340 + ((large_file_format
? 20 : 10)*num_ulocks
);
343 * Data now points at the beginning of the list
344 * of smb_lkrng structs.
348 * Ensure we don't do a remove on the lock that just failed,
349 * as under POSIX rules, if we have a lock already there, we
350 * will delete it (and we shouldn't) .....
353 for(i
= blr
->lock_num
- 1; i
>= 0; i
--) {
356 smblctx
= get_lock_pid( data
, i
, large_file_format
);
357 count
= get_lock_count( data
, i
, large_file_format
);
358 offset
= get_lock_offset( data
, i
, large_file_format
, &err
);
361 * We know err cannot be set as if it was the lock
362 * request would never have been queued. JRA.
365 do_unlock(fsp
->conn
->sconn
->msg_ctx
,
373 generic_blocking_lock_error(blr
, status
);
376 /****************************************************************************
377 Return a lock fail error.
378 *****************************************************************************/
380 static void blocking_lock_reply_error(struct blocking_lock_record
*blr
, NTSTATUS status
)
382 DEBUG(10, ("Replying with error=%s. BLR = %p\n", nt_errstr(status
), blr
));
384 switch(blr
->req
->cmd
) {
386 reply_lockingX_error(blr
, status
);
390 reply_nterror(blr
->req
, status
);
393 * construct_reply_common has done us the favor to pre-fill
394 * the command field with SMBtranss2 which is wrong :-)
396 SCVAL(blr
->req
->outbuf
,smb_com
,SMBtrans2
);
398 if (!srv_send_smb(blr
->req
->sconn
,
399 (char *)blr
->req
->outbuf
,
400 true, blr
->req
->seqnum
+1,
401 IS_CONN_ENCRYPTED(blr
->fsp
->conn
),
403 exit_server_cleanly("blocking_lock_reply_error: "
404 "srv_send_smb failed.");
406 TALLOC_FREE(blr
->req
->outbuf
);
409 DEBUG(0,("blocking_lock_reply_error: PANIC - unknown type on blocking lock queue - exiting.!\n"));
410 exit_server("PANIC - unknown type on blocking lock queue");
414 /****************************************************************************
415 Attempt to finish off getting all pending blocking locks for a lockingX call.
416 Returns True if we want to be removed from the list.
417 *****************************************************************************/
419 static bool process_lockingX(struct blocking_lock_record
*blr
)
421 unsigned char locktype
= CVAL(blr
->req
->vwv
+3, 0);
422 files_struct
*fsp
= blr
->fsp
;
423 uint16 num_ulocks
= SVAL(blr
->req
->vwv
+6, 0);
424 uint16 num_locks
= SVAL(blr
->req
->vwv
+7, 0);
425 uint64_t count
= (uint64_t)0, offset
= (uint64_t)0;
427 bool large_file_format
= (locktype
& LOCKING_ANDX_LARGE_FILES
);
429 NTSTATUS status
= NT_STATUS_OK
;
431 data
= (uint8_t *)blr
->req
->buf
432 + ((large_file_format
? 20 : 10)*num_ulocks
);
435 * Data now points at the beginning of the list
436 * of smb_lkrng structs.
439 for(; blr
->lock_num
< num_locks
; blr
->lock_num
++) {
440 struct byte_range_lock
*br_lck
= NULL
;
443 smblctx
= get_lock_pid( data
, blr
->lock_num
, large_file_format
);
444 count
= get_lock_count( data
, blr
->lock_num
, large_file_format
);
445 offset
= get_lock_offset( data
, blr
->lock_num
, large_file_format
, &err
);
448 * We know err cannot be set as if it was the lock
449 * request would never have been queued. JRA.
452 br_lck
= do_lock(fsp
->conn
->sconn
->msg_ctx
,
457 ((locktype
& LOCKING_ANDX_SHARED_LOCK
) ?
458 READ_LOCK
: WRITE_LOCK
),
462 &blr
->blocking_smblctx
,
467 if (NT_STATUS_IS_ERR(status
)) {
472 if(blr
->lock_num
== num_locks
) {
474 * Success - we got all the locks.
477 DEBUG(3,("process_lockingX file = %s, fnum=%d type=%d "
478 "num_locks=%d\n", fsp_str_dbg(fsp
), fsp
->fnum
,
479 (unsigned int)locktype
, num_locks
));
481 reply_lockingX_success(blr
);
485 if (!NT_STATUS_EQUAL(status
,NT_STATUS_LOCK_NOT_GRANTED
) &&
486 !NT_STATUS_EQUAL(status
,NT_STATUS_FILE_LOCK_CONFLICT
)) {
488 * We have other than a "can't get lock"
489 * error. Free any locks we had and return an error.
490 * Return True so we get dequeued.
492 blocking_lock_reply_error(blr
, status
);
497 * Still can't get all the locks - keep waiting.
500 DEBUG(10,("process_lockingX: only got %d locks of %d needed for file %s, fnum = %d. \
502 blr
->lock_num
, num_locks
, fsp_str_dbg(fsp
), fsp
->fnum
));
507 /****************************************************************************
508 Attempt to get the posix lock request from a SMBtrans2 call.
509 Returns True if we want to be removed from the list.
510 *****************************************************************************/
512 static bool process_trans2(struct blocking_lock_record
*blr
)
516 struct byte_range_lock
*br_lck
= do_lock(
517 blr
->fsp
->conn
->sconn
->msg_ctx
,
526 &blr
->blocking_smblctx
,
530 if (!NT_STATUS_IS_OK(status
)) {
531 if (ERROR_WAS_LOCK_DENIED(status
)) {
532 /* Still can't get the lock, just keep waiting. */
536 * We have other than a "can't get lock"
537 * error. Send an error and return True so we get dequeued.
539 blocking_lock_reply_error(blr
, status
);
543 /* We finally got the lock, return success. */
546 /* Fake up max_data_bytes here - we know it fits. */
547 send_trans2_replies(blr
->fsp
->conn
, blr
->req
, params
, 2, NULL
, 0, 0xffff);
552 /****************************************************************************
553 Process a blocking lock SMB.
554 Returns True if we want to be removed from the list.
555 *****************************************************************************/
557 static bool blocking_lock_record_process(struct blocking_lock_record
*blr
)
559 switch(blr
->req
->cmd
) {
561 return process_lockingX(blr
);
564 return process_trans2(blr
);
566 DEBUG(0,("blocking_lock_record_process: PANIC - unknown type on blocking lock queue - exiting.!\n"));
567 exit_server("PANIC - unknown type on blocking lock queue");
569 return False
; /* Keep compiler happy. */
572 /****************************************************************************
573 Cancel entries by fnum from the blocking lock pending queue.
574 Called when a file is closed.
575 *****************************************************************************/
577 void cancel_pending_lock_requests_by_fid(files_struct
*fsp
,
578 struct byte_range_lock
*br_lck
,
579 enum file_close_type close_type
)
581 struct smbd_server_connection
*sconn
= fsp
->conn
->sconn
;
582 struct blocking_lock_record
*blr
, *blr_cancelled
, *next
= NULL
;
584 if (sconn
->using_smb2
) {
585 cancel_pending_lock_requests_by_fid_smb2(fsp
,
591 for(blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= next
) {
592 unsigned char locktype
= 0;
595 if (blr
->fsp
->fnum
!= fsp
->fnum
) {
599 if (blr
->req
->cmd
== SMBlockingX
) {
600 locktype
= CVAL(blr
->req
->vwv
+3, 0);
603 DEBUG(10, ("remove_pending_lock_requests_by_fid - removing "
604 "request type %d for file %s fnum = %d\n",
605 blr
->req
->cmd
, fsp_str_dbg(fsp
), fsp
->fnum
));
607 blr_cancelled
= blocking_lock_cancel_smb1(fsp
,
613 NT_STATUS_RANGE_NOT_LOCKED
);
615 SMB_ASSERT(blr_cancelled
== blr
);
617 brl_lock_cancel(br_lck
,
619 sconn_server_id(sconn
),
625 /* We're closing the file fsp here, so ensure
626 * we don't have a dangling pointer. */
631 /****************************************************************************
632 Delete entries by mid from the blocking lock pending queue. Always send reply.
633 Only called from the SMB1 cancel code.
634 *****************************************************************************/
636 void remove_pending_lock_requests_by_mid_smb1(
637 struct smbd_server_connection
*sconn
, uint64_t mid
)
639 struct blocking_lock_record
*blr
, *next
= NULL
;
641 for(blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= next
) {
643 struct byte_range_lock
*br_lck
;
647 if (blr
->req
->mid
!= mid
) {
652 br_lck
= brl_get_locks(talloc_tos(), fsp
);
655 DEBUG(10, ("remove_pending_lock_requests_by_mid_smb1 - "
656 "removing request type %d for file %s fnum "
657 "= %d\n", blr
->req
->cmd
, fsp_str_dbg(fsp
),
660 brl_lock_cancel(br_lck
,
662 sconn_server_id(sconn
),
670 blocking_lock_reply_error(blr
,NT_STATUS_FILE_LOCK_CONFLICT
);
671 DLIST_REMOVE(sconn
->smb1
.locks
.blocking_lock_queue
, blr
);
676 /****************************************************************************
677 Is this mid a blocking lock request on the queue ?
678 Currently only called from the SMB1 unix extensions POSIX lock code.
679 *****************************************************************************/
681 bool blocking_lock_was_deferred_smb1(
682 struct smbd_server_connection
*sconn
, uint64_t mid
)
684 struct blocking_lock_record
*blr
, *next
= NULL
;
686 for(blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= next
) {
688 if(blr
->req
->mid
== mid
) {
695 /****************************************************************************
696 Set a flag as an unlock request affects one of our pending locks.
697 *****************************************************************************/
699 static void received_unlock_msg(struct messaging_context
*msg
,
702 struct server_id server_id
,
705 struct smbd_server_connection
*sconn
;
707 sconn
= msg_ctx_to_sconn(msg
);
709 DEBUG(1, ("could not find sconn\n"));
713 DEBUG(10,("received_unlock_msg\n"));
714 process_blocking_lock_queue(sconn
);
717 /****************************************************************************
718 Process the blocking lock queue. Note that this is only called as root.
719 *****************************************************************************/
721 void process_blocking_lock_queue(struct smbd_server_connection
*sconn
)
723 struct timeval tv_curr
= timeval_current();
724 struct blocking_lock_record
*blr
, *next
= NULL
;
726 if (sconn
->using_smb2
) {
727 process_blocking_lock_queue_smb2(sconn
, tv_curr
);
732 * Go through the queue and see if we can get any of the locks.
735 for (blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= next
) {
740 * Go through the remaining locks and try and obtain them.
741 * The call returns True if all locks were obtained successfully
742 * and False if we still need to wait.
745 DEBUG(10, ("Processing BLR = %p\n", blr
));
747 /* We use set_current_service so connections with
748 * pending locks are not marked as idle.
751 set_current_service(blr
->fsp
->conn
,
752 SVAL(blr
->req
->inbuf
,smb_flg
),
755 if(blocking_lock_record_process(blr
)) {
756 struct byte_range_lock
*br_lck
= brl_get_locks(
757 talloc_tos(), blr
->fsp
);
759 DEBUG(10, ("BLR_process returned true: cancelling and "
760 "removing lock. BLR = %p\n", blr
));
763 brl_lock_cancel(br_lck
,
765 sconn_server_id(sconn
),
773 DLIST_REMOVE(sconn
->smb1
.locks
.blocking_lock_queue
, blr
);
779 * We couldn't get the locks for this record on the list.
780 * If the time has expired, return a lock error.
783 if (!timeval_is_zero(&blr
->expire_time
) && timeval_compare(&blr
->expire_time
, &tv_curr
) <= 0) {
784 struct byte_range_lock
*br_lck
= brl_get_locks(
785 talloc_tos(), blr
->fsp
);
787 DEBUG(10, ("Lock timed out! BLR = %p\n", blr
));
790 * Lock expired - throw away all previously
791 * obtained locks and return lock error.
795 DEBUG(5,("process_blocking_lock_queue: "
796 "pending lock fnum = %d for file %s "
797 "timed out.\n", blr
->fsp
->fnum
,
798 fsp_str_dbg(blr
->fsp
)));
800 brl_lock_cancel(br_lck
,
802 sconn_server_id(sconn
),
810 blocking_lock_reply_error(blr
,NT_STATUS_FILE_LOCK_CONFLICT
);
811 DLIST_REMOVE(sconn
->smb1
.locks
.blocking_lock_queue
, blr
);
816 recalc_brl_timeout(sconn
);
819 /****************************************************************************
820 Handle a cancel message. Lock already moved onto the cancel queue.
821 *****************************************************************************/
823 #define MSG_BLOCKING_LOCK_CANCEL_SIZE (sizeof(struct blocking_lock_record *) + sizeof(NTSTATUS))
825 static void process_blocking_lock_cancel_message(struct messaging_context
*ctx
,
828 struct server_id server_id
,
831 struct smbd_server_connection
*sconn
;
833 const char *msg
= (const char *)data
->data
;
834 struct blocking_lock_record
*blr
;
836 if (data
->data
== NULL
) {
837 smb_panic("process_blocking_lock_cancel_message: null msg");
840 if (data
->length
!= MSG_BLOCKING_LOCK_CANCEL_SIZE
) {
841 DEBUG(0, ("process_blocking_lock_cancel_message: "
842 "Got invalid msg len %d\n", (int)data
->length
));
843 smb_panic("process_blocking_lock_cancel_message: bad msg");
846 sconn
= msg_ctx_to_sconn(ctx
);
848 DEBUG(1, ("could not find sconn\n"));
852 memcpy(&blr
, msg
, sizeof(blr
));
853 memcpy(&err
, &msg
[sizeof(blr
)], sizeof(NTSTATUS
));
855 DEBUG(10,("process_blocking_lock_cancel_message: returning error %s\n",
858 blocking_lock_reply_error(blr
, err
);
859 DLIST_REMOVE(sconn
->smb1
.locks
.blocking_lock_cancelled_queue
, blr
);
863 /****************************************************************************
864 Send ourselves a blocking lock cancelled message. Handled asynchronously above.
865 Returns the blocking_lock_record that is being cancelled.
866 Only called from the SMB1 code.
867 *****************************************************************************/
869 struct blocking_lock_record
*blocking_lock_cancel_smb1(files_struct
*fsp
,
873 enum brl_flavour lock_flav
,
874 unsigned char locktype
,
877 struct smbd_server_connection
*sconn
= fsp
->conn
->sconn
;
878 char msg
[MSG_BLOCKING_LOCK_CANCEL_SIZE
];
879 struct blocking_lock_record
*blr
;
881 if (!sconn
->smb1
.locks
.blocking_lock_cancel_state
) {
882 /* Register our message. */
883 messaging_register(sconn
->msg_ctx
, NULL
,
884 MSG_SMB_BLOCKING_LOCK_CANCEL
,
885 process_blocking_lock_cancel_message
);
887 sconn
->smb1
.locks
.blocking_lock_cancel_state
= True
;
890 for (blr
= sconn
->smb1
.locks
.blocking_lock_queue
; blr
; blr
= blr
->next
) {
891 if (fsp
== blr
->fsp
&&
892 smblctx
== blr
->smblctx
&&
893 offset
== blr
->offset
&&
894 count
== blr
->count
&&
895 lock_flav
== blr
->lock_flav
) {
904 /* Check the flags are right. */
905 if (blr
->req
->cmd
== SMBlockingX
&&
906 (locktype
& LOCKING_ANDX_LARGE_FILES
) !=
907 (CVAL(blr
->req
->vwv
+3, 0) & LOCKING_ANDX_LARGE_FILES
)) {
911 /* Move to cancelled queue. */
912 DLIST_REMOVE(sconn
->smb1
.locks
.blocking_lock_queue
, blr
);
913 DLIST_ADD(sconn
->smb1
.locks
.blocking_lock_cancelled_queue
, blr
);
915 /* Create the message. */
916 memcpy(msg
, &blr
, sizeof(blr
));
917 memcpy(&msg
[sizeof(blr
)], &err
, sizeof(NTSTATUS
));
919 messaging_send_buf(sconn
->msg_ctx
, sconn_server_id(sconn
),
920 MSG_SMB_BLOCKING_LOCK_CANCEL
,
921 (uint8
*)&msg
, sizeof(msg
));