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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #define DBGC_CLASS DBGC_LOCKING
27 /****************************************************************************
28 This is the structure to queue to implement blocking locks.
29 notify. It consists of the requesting SMB and the expiry time.
30 *****************************************************************************/
32 typedef struct _blocking_lock_record {
33 struct _blocking_lock_record *next;
34 struct _blocking_lock_record *prev;
37 struct timeval expire_time;
42 enum brl_flavour lock_flav;
43 enum brl_type lock_type;
46 } blocking_lock_record;
48 /* dlink list we store pending lock records on. */
49 static blocking_lock_record *blocking_lock_queue;
51 /* dlink list we move cancelled lock records onto. */
52 static blocking_lock_record *blocking_lock_cancelled_queue;
54 /* The event that makes us process our blocking lock queue */
55 static struct timed_event *brl_timeout;
57 /****************************************************************************
58 Destructor for the above structure.
59 ****************************************************************************/
61 static void free_blocking_lock_record(blocking_lock_record *blr)
63 SAFE_FREE(blr->inbuf);
67 /****************************************************************************
68 Determine if this is a secondary element of a chained SMB.
69 **************************************************************************/
71 static BOOL in_chained_smb(void)
73 return (chain_size != 0);
76 static void received_unlock_msg(int msg_type, struct server_id src,
77 void *buf, size_t len,
79 static void process_blocking_lock_queue(void);
81 static void brl_timeout_fn(struct event_context *event_ctx,
82 struct timed_event *te,
83 const struct timeval *now,
86 SMB_ASSERT(brl_timeout == te);
87 TALLOC_FREE(brl_timeout);
89 change_to_root_user(); /* TODO: Possibly run all timed events as
92 process_blocking_lock_queue();
95 /****************************************************************************
96 After a change to blocking_lock_queue, recalculate the timed_event for the
98 ****************************************************************************/
100 static BOOL recalc_brl_timeout(void)
102 blocking_lock_record *brl;
103 struct timeval next_timeout;
105 TALLOC_FREE(brl_timeout);
107 next_timeout = timeval_zero();
109 for (brl = blocking_lock_queue; brl; brl = brl->next) {
110 if (timeval_is_zero(&brl->expire_time)) {
114 if (timeval_is_zero(&next_timeout)) {
115 next_timeout = brl->expire_time;
118 next_timeout = timeval_min(&next_timeout,
123 if (timeval_is_zero(&next_timeout)) {
127 if (!(brl_timeout = event_add_timed(smbd_event_context(), NULL,
128 next_timeout, "brl_timeout",
129 brl_timeout_fn, NULL))) {
137 /****************************************************************************
138 Function to push a blocking lock request onto the lock queue.
139 ****************************************************************************/
141 BOOL push_blocking_lock_request( struct byte_range_lock *br_lck,
142 char *inbuf, int length,
147 enum brl_type lock_type,
148 enum brl_flavour lock_flav,
149 SMB_BIG_UINT offset, SMB_BIG_UINT count)
151 static BOOL set_lock_msg;
152 blocking_lock_record *blr;
155 if(in_chained_smb() ) {
156 DEBUG(0,("push_blocking_lock_request: cannot queue a chained request (currently).\n"));
161 * Now queue an entry on the blocking lock queue. We setup
162 * the expiration time here.
165 if((blr = SMB_MALLOC_P(blocking_lock_record)) == NULL) {
166 DEBUG(0,("push_blocking_lock_request: Malloc fail !\n" ));
173 if((blr->inbuf = (char *)SMB_MALLOC(length)) == NULL) {
174 DEBUG(0,("push_blocking_lock_request: Malloc fail (2)!\n" ));
179 blr->com_type = CVAL(inbuf,smb_com);
181 if (lock_timeout == -1) {
182 blr->expire_time.tv_sec = 0;
183 blr->expire_time.tv_usec = 0; /* Never expire. */
185 blr->expire_time = timeval_current_ofs(lock_timeout/1000,
186 (lock_timeout % 1000) * 1000);
188 blr->lock_num = lock_num;
189 blr->lock_pid = lock_pid;
190 blr->lock_flav = lock_flav;
191 blr->lock_type = lock_type;
192 blr->offset = offset;
194 memcpy(blr->inbuf, inbuf, length);
195 blr->length = length;
197 /* Add a pending lock record for this. */
198 status = brl_lock(smbd_messaging_context(), br_lck,
203 lock_type == READ_LOCK ? PENDING_READ_LOCK : PENDING_WRITE_LOCK,
205 lock_timeout ? True : False); /* blocking_lock. */
207 if (!NT_STATUS_IS_OK(status)) {
208 DEBUG(0,("push_blocking_lock_request: failed to add PENDING_LOCK record.\n"));
209 DLIST_REMOVE(blocking_lock_queue, blr);
210 free_blocking_lock_record(blr);
214 DLIST_ADD_END(blocking_lock_queue, blr, blocking_lock_record *);
215 recalc_brl_timeout();
217 /* Ensure we'll receive messages when this is unlocked. */
219 message_register(MSG_SMB_UNLOCK, received_unlock_msg,
224 DEBUG(3,("push_blocking_lock_request: lock request length=%d blocked with "
225 "expiry time (%u sec. %u usec) (+%d msec) for fnum = %d, name = %s\n",
226 length, (unsigned int)blr->expire_time.tv_sec,
227 (unsigned int)blr->expire_time.tv_usec, lock_timeout,
228 blr->fsp->fnum, blr->fsp->fsp_name ));
230 /* Push the MID of this packet on the signing queue. */
231 srv_defer_sign_response(SVAL(inbuf,smb_mid));
236 /****************************************************************************
237 Return a smd with a given size.
238 *****************************************************************************/
240 static void send_blocking_reply(char *outbuf, int outsize, const char *inbuf)
243 smb_setlen(inbuf, outbuf,outsize - 4);
246 if (!send_smb(smbd_server_fd(),outbuf)) {
247 exit_server_cleanly("send_blocking_reply: send_smb failed.");
251 /****************************************************************************
252 Return a lockingX success SMB.
253 *****************************************************************************/
255 static void reply_lockingX_success(blocking_lock_record *blr)
257 char *outbuf = get_OutBuffer();
258 int bufsize = BUFFER_SIZE;
259 char *inbuf = blr->inbuf;
262 construct_reply_common(inbuf, outbuf);
263 set_message(inbuf,outbuf,2,0,True);
266 * As this message is a lockingX call we must handle
267 * any following chained message correctly.
268 * This is normally handled in construct_reply(),
269 * but as that calls switch_message, we can't use
270 * that here and must set up the chain info manually.
273 outsize = chain_reply(inbuf,outbuf,blr->length,bufsize);
275 outsize += chain_size;
277 send_blocking_reply(outbuf,outsize,inbuf);
280 /****************************************************************************
281 Return a generic lock fail error blocking call.
282 *****************************************************************************/
284 static void generic_blocking_lock_error(blocking_lock_record *blr, NTSTATUS status)
286 char *outbuf = get_OutBuffer();
287 char *inbuf = blr->inbuf;
288 construct_reply_common(inbuf, outbuf);
290 /* whenever a timeout is given w2k maps LOCK_NOT_GRANTED to
291 FILE_LOCK_CONFLICT! (tridge) */
292 if (NT_STATUS_EQUAL(status, NT_STATUS_LOCK_NOT_GRANTED)) {
293 status = NT_STATUS_FILE_LOCK_CONFLICT;
296 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
297 /* Store the last lock error. */
298 files_struct *fsp = blr->fsp;
300 fsp->last_lock_failure.context.smbpid = blr->lock_pid;
301 fsp->last_lock_failure.context.tid = fsp->conn->cnum;
302 fsp->last_lock_failure.context.pid = procid_self();
303 fsp->last_lock_failure.start = blr->offset;
304 fsp->last_lock_failure.size = blr->count;
305 fsp->last_lock_failure.fnum = fsp->fnum;
306 fsp->last_lock_failure.lock_type = READ_LOCK; /* Don't care. */
307 fsp->last_lock_failure.lock_flav = blr->lock_flav;
311 if (!send_smb(smbd_server_fd(),outbuf)) {
312 exit_server_cleanly("generic_blocking_lock_error: send_smb failed.");
316 /****************************************************************************
317 Return a lock fail error for a lockingX call. Undo all the locks we have
319 *****************************************************************************/
321 static void reply_lockingX_error(blocking_lock_record *blr, NTSTATUS status)
323 char *inbuf = blr->inbuf;
324 files_struct *fsp = blr->fsp;
325 uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
326 SMB_BIG_UINT count = (SMB_BIG_UINT)0, offset = (SMB_BIG_UINT) 0;
328 unsigned char locktype = CVAL(inbuf,smb_vwv3);
329 BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES);
333 data = smb_buf(inbuf) + ((large_file_format ? 20 : 10)*num_ulocks);
336 * Data now points at the beginning of the list
337 * of smb_lkrng structs.
341 * Ensure we don't do a remove on the lock that just failed,
342 * as under POSIX rules, if we have a lock already there, we
343 * will delete it (and we shouldn't) .....
346 for(i = blr->lock_num - 1; i >= 0; i--) {
349 lock_pid = get_lock_pid( data, i, large_file_format);
350 count = get_lock_count( data, i, large_file_format);
351 offset = get_lock_offset( data, i, large_file_format, &err);
354 * We know err cannot be set as if it was the lock
355 * request would never have been queued. JRA.
358 do_unlock(smbd_messaging_context(),
366 generic_blocking_lock_error(blr, status);
369 /****************************************************************************
370 Return a lock fail error.
371 *****************************************************************************/
373 static void blocking_lock_reply_error(blocking_lock_record *blr, NTSTATUS status)
375 switch(blr->com_type) {
377 reply_lockingX_error(blr, status);
382 char *outbuf = get_OutBuffer();
383 char *inbuf = blr->inbuf;
384 construct_reply_common(inbuf, outbuf);
385 /* construct_reply_common has done us the favor to pre-fill the
386 * command field with SMBtranss2 which is wrong :-)
388 SCVAL(outbuf,smb_com,SMBtrans2);
390 if (!send_smb(smbd_server_fd(),outbuf)) {
391 exit_server_cleanly("blocking_lock_reply_error: send_smb failed.");
396 DEBUG(0,("blocking_lock_reply_error: PANIC - unknown type on blocking lock queue - exiting.!\n"));
397 exit_server("PANIC - unknown type on blocking lock queue");
401 /****************************************************************************
402 Attempt to finish off getting all pending blocking locks for a lockingX call.
403 Returns True if we want to be removed from the list.
404 *****************************************************************************/
406 static BOOL process_lockingX(blocking_lock_record *blr)
408 char *inbuf = blr->inbuf;
409 unsigned char locktype = CVAL(inbuf,smb_vwv3);
410 files_struct *fsp = blr->fsp;
411 uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
412 uint16 num_locks = SVAL(inbuf,smb_vwv7);
413 SMB_BIG_UINT count = (SMB_BIG_UINT)0, offset = (SMB_BIG_UINT)0;
415 BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES);
417 NTSTATUS status = NT_STATUS_OK;
419 data = smb_buf(inbuf) + ((large_file_format ? 20 : 10)*num_ulocks);
422 * Data now points at the beginning of the list
423 * of smb_lkrng structs.
426 for(; blr->lock_num < num_locks; blr->lock_num++) {
427 struct byte_range_lock *br_lck = NULL;
430 lock_pid = get_lock_pid( data, blr->lock_num, large_file_format);
431 count = get_lock_count( data, blr->lock_num, large_file_format);
432 offset = get_lock_offset( data, blr->lock_num, large_file_format, &err);
435 * We know err cannot be set as if it was the lock
436 * request would never have been queued. JRA.
439 br_lck = do_lock(smbd_messaging_context(),
444 ((locktype & LOCKING_ANDX_SHARED_LOCK) ?
445 READ_LOCK : WRITE_LOCK),
452 if (NT_STATUS_IS_ERR(status)) {
457 if(blr->lock_num == num_locks) {
459 * Success - we got all the locks.
462 DEBUG(3,("process_lockingX file = %s, fnum=%d type=%d num_locks=%d\n",
463 fsp->fsp_name, fsp->fnum, (unsigned int)locktype, num_locks) );
465 reply_lockingX_success(blr);
467 } else if (!NT_STATUS_EQUAL(status,NT_STATUS_LOCK_NOT_GRANTED) &&
468 !NT_STATUS_EQUAL(status,NT_STATUS_FILE_LOCK_CONFLICT)) {
470 * We have other than a "can't get lock"
471 * error. Free any locks we had and return an error.
472 * Return True so we get dequeued.
475 blocking_lock_reply_error(blr, status);
480 * Still can't get all the locks - keep waiting.
483 DEBUG(10,("process_lockingX: only got %d locks of %d needed for file %s, fnum = %d. \
485 blr->lock_num, num_locks, fsp->fsp_name, fsp->fnum));
490 /****************************************************************************
491 Attempt to get the posix lock request from a SMBtrans2 call.
492 Returns True if we want to be removed from the list.
493 *****************************************************************************/
495 static BOOL process_trans2(blocking_lock_record *blr)
497 char *inbuf = blr->inbuf;
501 struct byte_range_lock *br_lck = do_lock(smbd_messaging_context(),
512 if (!NT_STATUS_IS_OK(status)) {
513 if (ERROR_WAS_LOCK_DENIED(status)) {
514 /* Still can't get the lock, just keep waiting. */
518 * We have other than a "can't get lock"
519 * error. Send an error and return True so we get dequeued.
521 blocking_lock_reply_error(blr, status);
525 /* We finally got the lock, return success. */
526 outbuf = get_OutBuffer();
527 construct_reply_common(inbuf, outbuf);
528 SCVAL(outbuf,smb_com,SMBtrans2);
530 /* Fake up max_data_bytes here - we know it fits. */
531 send_trans2_replies(inbuf, outbuf, max_send, params, 2, NULL, 0, 0xffff);
536 /****************************************************************************
537 Process a blocking lock SMB.
538 Returns True if we want to be removed from the list.
539 *****************************************************************************/
541 static BOOL blocking_lock_record_process(blocking_lock_record *blr)
543 switch(blr->com_type) {
545 return process_lockingX(blr);
548 return process_trans2(blr);
550 DEBUG(0,("blocking_lock_record_process: PANIC - unknown type on blocking lock queue - exiting.!\n"));
551 exit_server("PANIC - unknown type on blocking lock queue");
553 return False; /* Keep compiler happy. */
556 /****************************************************************************
557 Cancel entries by fnum from the blocking lock pending queue.
558 *****************************************************************************/
560 void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lock *br_lck)
562 blocking_lock_record *blr, *next = NULL;
564 for(blr = blocking_lock_queue; blr; blr = next) {
566 if(blr->fsp->fnum == fsp->fnum) {
567 unsigned char locktype = 0;
569 if (blr->com_type == SMBlockingX) {
570 locktype = CVAL(blr->inbuf,smb_vwv3);
574 DEBUG(10,("remove_pending_lock_requests_by_fid - removing request type %d for \
575 file %s fnum = %d\n", blr->com_type, fsp->fsp_name, fsp->fnum ));
577 brl_lock_cancel(br_lck,
584 blocking_lock_cancel(fsp,
590 NT_STATUS_RANGE_NOT_LOCKED);
596 /****************************************************************************
597 Delete entries by mid from the blocking lock pending queue. Always send reply.
598 *****************************************************************************/
600 void remove_pending_lock_requests_by_mid(int mid)
602 blocking_lock_record *blr, *next = NULL;
604 for(blr = blocking_lock_queue; blr; blr = next) {
606 if(SVAL(blr->inbuf,smb_mid) == mid) {
607 files_struct *fsp = blr->fsp;
608 struct byte_range_lock *br_lck = brl_get_locks(NULL, fsp);
611 DEBUG(10,("remove_pending_lock_requests_by_mid - removing request type %d for \
612 file %s fnum = %d\n", blr->com_type, fsp->fsp_name, fsp->fnum ));
614 brl_lock_cancel(br_lck,
623 blocking_lock_reply_error(blr,NT_STATUS_FILE_LOCK_CONFLICT);
624 DLIST_REMOVE(blocking_lock_queue, blr);
625 free_blocking_lock_record(blr);
630 /****************************************************************************
631 Is this mid a blocking lock request on the queue ?
632 *****************************************************************************/
634 BOOL blocking_lock_was_deferred(int mid)
636 blocking_lock_record *blr, *next = NULL;
638 for(blr = blocking_lock_queue; blr; blr = next) {
640 if(SVAL(blr->inbuf,smb_mid) == mid) {
647 /****************************************************************************
648 Set a flag as an unlock request affects one of our pending locks.
649 *****************************************************************************/
651 static void received_unlock_msg(int msg_type, struct server_id src,
652 void *buf, size_t len,
655 DEBUG(10,("received_unlock_msg\n"));
656 process_blocking_lock_queue();
659 /****************************************************************************
660 Process the blocking lock queue. Note that this is only called as root.
661 *****************************************************************************/
663 static void process_blocking_lock_queue(void)
665 struct timeval tv_curr = timeval_current();
666 blocking_lock_record *blr, *next = NULL;
667 BOOL recalc_timeout = False;
670 * Go through the queue and see if we can get any of the locks.
673 for (blr = blocking_lock_queue; blr; blr = next) {
674 connection_struct *conn = NULL;
676 files_struct *fsp = NULL;
681 * Ensure we don't have any old chain_fsp values
688 conn = conn_find(SVAL(blr->inbuf,smb_tid));
689 vuid = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID :
690 SVAL(blr->inbuf,smb_uid);
692 DEBUG(5,("process_blocking_lock_queue: examining pending lock fnum = %d for file %s\n",
693 fsp->fnum, fsp->fsp_name ));
695 if (!timeval_is_zero(&blr->expire_time) && timeval_compare(&blr->expire_time, &tv_curr) <= 0) {
696 struct byte_range_lock *br_lck = brl_get_locks(NULL, fsp);
699 * Lock expired - throw away all previously
700 * obtained locks and return lock error.
704 DEBUG(5,("process_blocking_lock_queue: pending lock fnum = %d for file %s timed out.\n",
705 fsp->fnum, fsp->fsp_name ));
707 brl_lock_cancel(br_lck,
716 blocking_lock_reply_error(blr,NT_STATUS_FILE_LOCK_CONFLICT);
717 DLIST_REMOVE(blocking_lock_queue, blr);
718 free_blocking_lock_record(blr);
719 recalc_timeout = True;
723 if(!change_to_user(conn,vuid)) {
724 struct byte_range_lock *br_lck = brl_get_locks(NULL, fsp);
727 * Remove the entry and return an error to the client.
731 brl_lock_cancel(br_lck,
740 DEBUG(0,("process_blocking_lock_queue: Unable to become user vuid=%d.\n",
742 blocking_lock_reply_error(blr,NT_STATUS_ACCESS_DENIED);
743 DLIST_REMOVE(blocking_lock_queue, blr);
744 free_blocking_lock_record(blr);
745 recalc_timeout = True;
749 if(!set_current_service(conn,SVAL(blr->inbuf,smb_flg),True)) {
750 struct byte_range_lock *br_lck = brl_get_locks(NULL, fsp);
753 * Remove the entry and return an error to the client.
757 brl_lock_cancel(br_lck,
766 DEBUG(0,("process_blocking_lock_queue: Unable to become service Error was %s.\n", strerror(errno) ));
767 blocking_lock_reply_error(blr,NT_STATUS_ACCESS_DENIED);
768 DLIST_REMOVE(blocking_lock_queue, blr);
769 free_blocking_lock_record(blr);
770 recalc_timeout = True;
771 change_to_root_user();
776 * Go through the remaining locks and try and obtain them.
777 * The call returns True if all locks were obtained successfully
778 * and False if we still need to wait.
781 if(blocking_lock_record_process(blr)) {
782 struct byte_range_lock *br_lck = brl_get_locks(NULL, fsp);
785 brl_lock_cancel(br_lck,
794 DLIST_REMOVE(blocking_lock_queue, blr);
795 free_blocking_lock_record(blr);
796 recalc_timeout = True;
798 change_to_root_user();
801 if (recalc_timeout) {
802 recalc_brl_timeout();
806 /****************************************************************************
807 Handle a cancel message. Lock already moved onto the cancel queue.
808 *****************************************************************************/
810 #define MSG_BLOCKING_LOCK_CANCEL_SIZE (sizeof(blocking_lock_record *) + sizeof(NTSTATUS))
812 static void process_blocking_lock_cancel_message(int msg_type,
813 struct server_id src,
814 void *buf, size_t len,
818 const char *msg = (const char *)buf;
819 blocking_lock_record *blr;
822 smb_panic("process_blocking_lock_cancel_message: null msg\n");
825 if (len != MSG_BLOCKING_LOCK_CANCEL_SIZE) {
826 DEBUG(0, ("process_blocking_lock_cancel_message: "
827 "Got invalid msg len %d\n", (int)len));
828 smb_panic("process_blocking_lock_cancel_message: bad msg\n");
831 memcpy(&blr, msg, sizeof(blr));
832 memcpy(&err, &msg[sizeof(blr)], sizeof(NTSTATUS));
834 DEBUG(10,("process_blocking_lock_cancel_message: returning error %s\n",
837 blocking_lock_reply_error(blr, err);
838 DLIST_REMOVE(blocking_lock_cancelled_queue, blr);
839 free_blocking_lock_record(blr);
842 /****************************************************************************
843 Send ourselves a blocking lock cancelled message. Handled asynchronously above.
844 *****************************************************************************/
846 BOOL blocking_lock_cancel(files_struct *fsp,
850 enum brl_flavour lock_flav,
851 unsigned char locktype,
854 static BOOL initialized;
855 char msg[MSG_BLOCKING_LOCK_CANCEL_SIZE];
856 blocking_lock_record *blr;
859 /* Register our message. */
860 message_register(MSG_SMB_BLOCKING_LOCK_CANCEL,
861 process_blocking_lock_cancel_message,
867 for (blr = blocking_lock_queue; blr; blr = blr->next) {
868 if (fsp == blr->fsp &&
869 lock_pid == blr->lock_pid &&
870 offset == blr->offset &&
871 count == blr->count &&
872 lock_flav == blr->lock_flav) {
881 /* Check the flags are right. */
882 if (blr->com_type == SMBlockingX &&
883 (locktype & LOCKING_ANDX_LARGE_FILES) !=
884 (CVAL(blr->inbuf,smb_vwv3) & LOCKING_ANDX_LARGE_FILES)) {
888 /* Move to cancelled queue. */
889 DLIST_REMOVE(blocking_lock_queue, blr);
890 DLIST_ADD(blocking_lock_cancelled_queue, blr);
892 /* Create the message. */
893 memcpy(msg, &blr, sizeof(blr));
894 memcpy(&msg[sizeof(blr)], &err, sizeof(NTSTATUS));
896 message_send_pid(pid_to_procid(sys_getpid()),
897 MSG_SMB_BLOCKING_LOCK_CANCEL,
898 &msg, sizeof(msg), True);