2 Unix SMB/CIFS implementation.
3 byte range locking code
4 Updated to handle range splits/merges.
6 Copyright (C) Andrew Tridgell 1992-2000
7 Copyright (C) Jeremy Allison 1992-2000
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /* This module implements a tdb based byte range locking service,
24 replacing the fcntl() based byte range locking previously
25 used. This allows us to provide the same semantics as NT */
28 #include "librpc/gen_ndr/messaging.h"
31 #define DBGC_CLASS DBGC_LOCKING
35 /* The open brlock.tdb database. */
37 static struct db_context
*brlock_db
;
39 /****************************************************************************
40 Debug info at level 10 for lock struct.
41 ****************************************************************************/
43 static void print_lock_struct(unsigned int i
, struct lock_struct
*pls
)
45 DEBUG(10,("[%u]: smblctx = %llu, tid = %u, pid = %s, ",
47 (unsigned long long)pls
->context
.smblctx
,
48 (unsigned int)pls
->context
.tid
,
49 procid_str(talloc_tos(), &pls
->context
.pid
) ));
51 DEBUG(10,("start = %.0f, size = %.0f, fnum = %d, %s %s\n",
55 lock_type_name(pls
->lock_type
),
56 lock_flav_name(pls
->lock_flav
) ));
59 /****************************************************************************
60 See if two locking contexts are equal.
61 ****************************************************************************/
63 bool brl_same_context(const struct lock_context
*ctx1
,
64 const struct lock_context
*ctx2
)
66 return (procid_equal(&ctx1
->pid
, &ctx2
->pid
) &&
67 (ctx1
->smblctx
== ctx2
->smblctx
) &&
68 (ctx1
->tid
== ctx2
->tid
));
71 /****************************************************************************
72 See if lck1 and lck2 overlap.
73 ****************************************************************************/
75 static bool brl_overlap(const struct lock_struct
*lck1
,
76 const struct lock_struct
*lck2
)
78 /* XXX Remove for Win7 compatibility. */
79 /* this extra check is not redundent - it copes with locks
80 that go beyond the end of 64 bit file space */
81 if (lck1
->size
!= 0 &&
82 lck1
->start
== lck2
->start
&&
83 lck1
->size
== lck2
->size
) {
87 if (lck1
->start
>= (lck2
->start
+lck2
->size
) ||
88 lck2
->start
>= (lck1
->start
+lck1
->size
)) {
94 /****************************************************************************
95 See if lock2 can be added when lock1 is in place.
96 ****************************************************************************/
98 static bool brl_conflict(const struct lock_struct
*lck1
,
99 const struct lock_struct
*lck2
)
101 /* Ignore PENDING locks. */
102 if (IS_PENDING_LOCK(lck1
->lock_type
) || IS_PENDING_LOCK(lck2
->lock_type
))
105 /* Read locks never conflict. */
106 if (lck1
->lock_type
== READ_LOCK
&& lck2
->lock_type
== READ_LOCK
) {
110 /* A READ lock can stack on top of a WRITE lock if they have the same
112 if (lck1
->lock_type
== WRITE_LOCK
&& lck2
->lock_type
== READ_LOCK
&&
113 brl_same_context(&lck1
->context
, &lck2
->context
) &&
114 lck1
->fnum
== lck2
->fnum
) {
118 return brl_overlap(lck1
, lck2
);
121 /****************************************************************************
122 See if lock2 can be added when lock1 is in place - when both locks are POSIX
123 flavour. POSIX locks ignore fnum - they only care about dev/ino which we
125 ****************************************************************************/
127 static bool brl_conflict_posix(const struct lock_struct
*lck1
,
128 const struct lock_struct
*lck2
)
130 #if defined(DEVELOPER)
131 SMB_ASSERT(lck1
->lock_flav
== POSIX_LOCK
);
132 SMB_ASSERT(lck2
->lock_flav
== POSIX_LOCK
);
135 /* Ignore PENDING locks. */
136 if (IS_PENDING_LOCK(lck1
->lock_type
) || IS_PENDING_LOCK(lck2
->lock_type
))
139 /* Read locks never conflict. */
140 if (lck1
->lock_type
== READ_LOCK
&& lck2
->lock_type
== READ_LOCK
) {
144 /* Locks on the same context con't conflict. Ignore fnum. */
145 if (brl_same_context(&lck1
->context
, &lck2
->context
)) {
149 /* One is read, the other write, or the context is different,
151 return brl_overlap(lck1
, lck2
);
155 static bool brl_conflict1(const struct lock_struct
*lck1
,
156 const struct lock_struct
*lck2
)
158 if (IS_PENDING_LOCK(lck1
->lock_type
) || IS_PENDING_LOCK(lck2
->lock_type
))
161 if (lck1
->lock_type
== READ_LOCK
&& lck2
->lock_type
== READ_LOCK
) {
165 if (brl_same_context(&lck1
->context
, &lck2
->context
) &&
166 lck2
->lock_type
== READ_LOCK
&& lck1
->fnum
== lck2
->fnum
) {
170 if (lck2
->start
== 0 && lck2
->size
== 0 && lck1
->size
!= 0) {
174 if (lck1
->start
>= (lck2
->start
+ lck2
->size
) ||
175 lck2
->start
>= (lck1
->start
+ lck1
->size
)) {
183 /****************************************************************************
184 Check to see if this lock conflicts, but ignore our own locks on the
185 same fnum only. This is the read/write lock check code path.
186 This is never used in the POSIX lock case.
187 ****************************************************************************/
189 static bool brl_conflict_other(const struct lock_struct
*lck1
, const struct lock_struct
*lck2
)
191 if (IS_PENDING_LOCK(lck1
->lock_type
) || IS_PENDING_LOCK(lck2
->lock_type
))
194 if (lck1
->lock_type
== READ_LOCK
&& lck2
->lock_type
== READ_LOCK
)
197 /* POSIX flavour locks never conflict here - this is only called
198 in the read/write path. */
200 if (lck1
->lock_flav
== POSIX_LOCK
&& lck2
->lock_flav
== POSIX_LOCK
)
204 * Incoming WRITE locks conflict with existing READ locks even
205 * if the context is the same. JRA. See LOCKTEST7 in smbtorture.
208 if (!(lck2
->lock_type
== WRITE_LOCK
&& lck1
->lock_type
== READ_LOCK
)) {
209 if (brl_same_context(&lck1
->context
, &lck2
->context
) &&
210 lck1
->fnum
== lck2
->fnum
)
214 return brl_overlap(lck1
, lck2
);
217 /****************************************************************************
218 Check if an unlock overlaps a pending lock.
219 ****************************************************************************/
221 static bool brl_pending_overlap(const struct lock_struct
*lock
, const struct lock_struct
*pend_lock
)
223 if ((lock
->start
<= pend_lock
->start
) && (lock
->start
+ lock
->size
> pend_lock
->start
))
225 if ((lock
->start
>= pend_lock
->start
) && (lock
->start
<= pend_lock
->start
+ pend_lock
->size
))
230 /****************************************************************************
231 Amazingly enough, w2k3 "remembers" whether the last lock failure on a fnum
232 is the same as this one and changes its error code. I wonder if any
233 app depends on this ?
234 ****************************************************************************/
236 NTSTATUS
brl_lock_failed(files_struct
*fsp
, const struct lock_struct
*lock
, bool blocking_lock
)
238 if (lock
->start
>= 0xEF000000 && (lock
->start
>> 63) == 0) {
239 /* amazing the little things you learn with a test
240 suite. Locks beyond this offset (as a 64 bit
241 number!) always generate the conflict error code,
242 unless the top bit is set */
243 if (!blocking_lock
) {
244 fsp
->last_lock_failure
= *lock
;
246 return NT_STATUS_FILE_LOCK_CONFLICT
;
249 if (procid_equal(&lock
->context
.pid
, &fsp
->last_lock_failure
.context
.pid
) &&
250 lock
->context
.tid
== fsp
->last_lock_failure
.context
.tid
&&
251 lock
->fnum
== fsp
->last_lock_failure
.fnum
&&
252 lock
->start
== fsp
->last_lock_failure
.start
) {
253 return NT_STATUS_FILE_LOCK_CONFLICT
;
256 if (!blocking_lock
) {
257 fsp
->last_lock_failure
= *lock
;
259 return NT_STATUS_LOCK_NOT_GRANTED
;
262 /****************************************************************************
263 Open up the brlock.tdb database.
264 ****************************************************************************/
266 void brl_init(bool read_only
)
274 tdb_flags
= TDB_DEFAULT
|TDB_VOLATILE
|TDB_CLEAR_IF_FIRST
;
276 if (!lp_clustering()) {
278 * We can't use the SEQNUM trick to cache brlock
279 * entries in the clustering case because ctdb seqnum
280 * propagation has a delay.
282 tdb_flags
|= TDB_SEQNUM
;
285 brlock_db
= db_open(NULL
, lock_path("brlock.tdb"),
286 lp_open_files_db_hash_size(), tdb_flags
,
287 read_only
?O_RDONLY
:(O_RDWR
|O_CREAT
), 0644 );
289 DEBUG(0,("Failed to open byte range locking database %s\n",
290 lock_path("brlock.tdb")));
295 /****************************************************************************
296 Close down the brlock.tdb database.
297 ****************************************************************************/
299 void brl_shutdown(void)
301 TALLOC_FREE(brlock_db
);
305 /****************************************************************************
306 Compare two locks for sorting.
307 ****************************************************************************/
309 static int lock_compare(const struct lock_struct
*lck1
,
310 const struct lock_struct
*lck2
)
312 if (lck1
->start
!= lck2
->start
) {
313 return (lck1
->start
- lck2
->start
);
315 if (lck2
->size
!= lck1
->size
) {
316 return ((int)lck1
->size
- (int)lck2
->size
);
322 /****************************************************************************
323 Lock a range of bytes - Windows lock semantics.
324 ****************************************************************************/
326 NTSTATUS
brl_lock_windows_default(struct byte_range_lock
*br_lck
,
327 struct lock_struct
*plock
, bool blocking_lock
)
330 files_struct
*fsp
= br_lck
->fsp
;
331 struct lock_struct
*locks
= br_lck
->lock_data
;
334 SMB_ASSERT(plock
->lock_type
!= UNLOCK_LOCK
);
336 if ((plock
->start
+ plock
->size
- 1 < plock
->start
) &&
338 return NT_STATUS_INVALID_LOCK_RANGE
;
341 for (i
=0; i
< br_lck
->num_locks
; i
++) {
342 /* Do any Windows or POSIX locks conflict ? */
343 if (brl_conflict(&locks
[i
], plock
)) {
344 /* Remember who blocked us. */
345 plock
->context
.smblctx
= locks
[i
].context
.smblctx
;
346 return brl_lock_failed(fsp
,plock
,blocking_lock
);
349 if (plock
->start
== 0 && plock
->size
== 0 &&
350 locks
[i
].size
== 0) {
356 if (!IS_PENDING_LOCK(plock
->lock_type
)) {
357 contend_level2_oplocks_begin(fsp
, LEVEL2_CONTEND_WINDOWS_BRL
);
360 /* We can get the Windows lock, now see if it needs to
361 be mapped into a lower level POSIX one, and if so can
364 if (!IS_PENDING_LOCK(plock
->lock_type
) && lp_posix_locking(fsp
->conn
->params
)) {
366 if (!set_posix_lock_windows_flavour(fsp
,
375 /* We don't know who blocked us. */
376 plock
->context
.smblctx
= 0xFFFFFFFFFFFFFFFFLL
;
378 if (errno_ret
== EACCES
|| errno_ret
== EAGAIN
) {
379 status
= NT_STATUS_FILE_LOCK_CONFLICT
;
382 status
= map_nt_error_from_unix(errno
);
388 /* no conflicts - add it to the list of locks */
389 locks
= (struct lock_struct
*)SMB_REALLOC(locks
, (br_lck
->num_locks
+ 1) * sizeof(*locks
));
391 status
= NT_STATUS_NO_MEMORY
;
395 memcpy(&locks
[br_lck
->num_locks
], plock
, sizeof(struct lock_struct
));
396 br_lck
->num_locks
+= 1;
397 br_lck
->lock_data
= locks
;
398 br_lck
->modified
= True
;
402 if (!IS_PENDING_LOCK(plock
->lock_type
)) {
403 contend_level2_oplocks_end(fsp
, LEVEL2_CONTEND_WINDOWS_BRL
);
408 /****************************************************************************
409 Cope with POSIX range splits and merges.
410 ****************************************************************************/
412 static unsigned int brlock_posix_split_merge(struct lock_struct
*lck_arr
, /* Output array. */
413 struct lock_struct
*ex
, /* existing lock. */
414 struct lock_struct
*plock
) /* proposed lock. */
416 bool lock_types_differ
= (ex
->lock_type
!= plock
->lock_type
);
418 /* We can't merge non-conflicting locks on different context - ignore fnum. */
420 if (!brl_same_context(&ex
->context
, &plock
->context
)) {
422 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
426 /* We now know we have the same context. */
428 /* Did we overlap ? */
430 /*********************************************
441 **********************************************/
443 if ( (ex
->start
> (plock
->start
+ plock
->size
)) ||
444 (plock
->start
> (ex
->start
+ ex
->size
))) {
446 /* No overlap with this lock - copy existing. */
448 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
452 /*********************************************
453 +---------------------------+
455 +---------------------------+
456 +---------------------------+
457 | plock | -> replace with plock.
458 +---------------------------+
463 +---------------------------+
464 | plock | -> replace with plock.
465 +---------------------------+
467 **********************************************/
469 if ( (ex
->start
>= plock
->start
) &&
470 (ex
->start
+ ex
->size
<= plock
->start
+ plock
->size
) ) {
472 /* Replace - discard existing lock. */
477 /*********************************************
487 +---------------+-------+
488 | plock | ex | - different lock types.
489 +---------------+-------+
491 +-----------------------+
492 | plock | - same lock type.
493 +-----------------------+
494 **********************************************/
496 if (plock
->start
+ plock
->size
== ex
->start
) {
498 /* If the lock types are the same, we merge, if different, we
499 add the remainder of the old lock. */
501 if (lock_types_differ
) {
503 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
506 /* Merge - adjust incoming lock as we may have more
507 * merging to come. */
508 plock
->size
+= ex
->size
;
513 /*********************************************
522 +-------+---------------+
523 | ex | plock | - different lock types
524 +-------+---------------+
527 +-----------------------+
528 | plock | - same lock type.
529 +-----------------------+
531 **********************************************/
533 if (ex
->start
+ ex
->size
== plock
->start
) {
535 /* If the lock types are the same, we merge, if different, we
536 add the existing lock. */
538 if (lock_types_differ
) {
539 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
542 /* Merge - adjust incoming lock as we may have more
543 * merging to come. */
544 plock
->start
= ex
->start
;
545 plock
->size
+= ex
->size
;
550 /*********************************************
552 +-----------------------+
554 +-----------------------+
567 +---------------+-------+
568 | plock | ex | - different lock types.
569 +---------------+-------+
571 +-----------------------+
572 | plock | - same lock type.
573 +-----------------------+
574 **********************************************/
576 if ( (ex
->start
>= plock
->start
) &&
577 (ex
->start
<= plock
->start
+ plock
->size
) &&
578 (ex
->start
+ ex
->size
> plock
->start
+ plock
->size
) ) {
580 /* If the lock types are the same, we merge, if different, we
581 add the remainder of the old lock. */
583 if (lock_types_differ
) {
584 /* Add remaining existing. */
585 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
586 /* Adjust existing start and size. */
587 lck_arr
[0].start
= plock
->start
+ plock
->size
;
588 lck_arr
[0].size
= (ex
->start
+ ex
->size
) - (plock
->start
+ plock
->size
);
591 /* Merge - adjust incoming lock as we may have more
592 * merging to come. */
593 plock
->size
+= (ex
->start
+ ex
->size
) - (plock
->start
+ plock
->size
);
598 /*********************************************
600 +-----------------------+
602 +-----------------------+
615 +-------+---------------+
616 | ex | plock | - different lock types
617 +-------+---------------+
620 +-----------------------+
621 | plock | - same lock type.
622 +-----------------------+
624 **********************************************/
626 if ( (ex
->start
< plock
->start
) &&
627 (ex
->start
+ ex
->size
>= plock
->start
) &&
628 (ex
->start
+ ex
->size
<= plock
->start
+ plock
->size
) ) {
630 /* If the lock types are the same, we merge, if different, we
631 add the truncated old lock. */
633 if (lock_types_differ
) {
634 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
635 /* Adjust existing size. */
636 lck_arr
[0].size
= plock
->start
- ex
->start
;
639 /* Merge - adjust incoming lock as we may have more
640 * merging to come. MUST ADJUST plock SIZE FIRST ! */
641 plock
->size
+= (plock
->start
- ex
->start
);
642 plock
->start
= ex
->start
;
647 /*********************************************
649 +---------------------------+
651 +---------------------------+
656 +-------+---------+---------+
657 | ex | plock | ex | - different lock types.
658 +-------+---------+---------+
660 +---------------------------+
661 | plock | - same lock type.
662 +---------------------------+
663 **********************************************/
665 if ( (ex
->start
< plock
->start
) && (ex
->start
+ ex
->size
> plock
->start
+ plock
->size
) ) {
667 if (lock_types_differ
) {
669 /* We have to split ex into two locks here. */
671 memcpy(&lck_arr
[0], ex
, sizeof(struct lock_struct
));
672 memcpy(&lck_arr
[1], ex
, sizeof(struct lock_struct
));
674 /* Adjust first existing size. */
675 lck_arr
[0].size
= plock
->start
- ex
->start
;
677 /* Adjust second existing start and size. */
678 lck_arr
[1].start
= plock
->start
+ plock
->size
;
679 lck_arr
[1].size
= (ex
->start
+ ex
->size
) - (plock
->start
+ plock
->size
);
682 /* Just eat the existing locks, merge them into plock. */
683 plock
->start
= ex
->start
;
684 plock
->size
= ex
->size
;
689 /* Never get here. */
690 smb_panic("brlock_posix_split_merge");
693 /* Keep some compilers happy. */
697 /****************************************************************************
698 Lock a range of bytes - POSIX lock semantics.
699 We must cope with range splits and merges.
700 ****************************************************************************/
702 static NTSTATUS
brl_lock_posix(struct messaging_context
*msg_ctx
,
703 struct byte_range_lock
*br_lck
,
704 struct lock_struct
*plock
)
706 unsigned int i
, count
, posix_count
;
707 struct lock_struct
*locks
= br_lck
->lock_data
;
708 struct lock_struct
*tp
;
709 bool signal_pending_read
= False
;
710 bool break_oplocks
= false;
713 /* No zero-zero locks for POSIX. */
714 if (plock
->start
== 0 && plock
->size
== 0) {
715 return NT_STATUS_INVALID_PARAMETER
;
718 /* Don't allow 64-bit lock wrap. */
719 if (plock
->start
+ plock
->size
- 1 < plock
->start
) {
720 return NT_STATUS_INVALID_PARAMETER
;
723 /* The worst case scenario here is we have to split an
724 existing POSIX lock range into two, and add our lock,
725 so we need at most 2 more entries. */
727 tp
= SMB_MALLOC_ARRAY(struct lock_struct
, (br_lck
->num_locks
+ 2));
729 return NT_STATUS_NO_MEMORY
;
732 count
= posix_count
= 0;
734 for (i
=0; i
< br_lck
->num_locks
; i
++) {
735 struct lock_struct
*curr_lock
= &locks
[i
];
737 /* If we have a pending read lock, a lock downgrade should
738 trigger a lock re-evaluation. */
739 if (curr_lock
->lock_type
== PENDING_READ_LOCK
&&
740 brl_pending_overlap(plock
, curr_lock
)) {
741 signal_pending_read
= True
;
744 if (curr_lock
->lock_flav
== WINDOWS_LOCK
) {
745 /* Do any Windows flavour locks conflict ? */
746 if (brl_conflict(curr_lock
, plock
)) {
747 /* No games with error messages. */
749 /* Remember who blocked us. */
750 plock
->context
.smblctx
= curr_lock
->context
.smblctx
;
751 return NT_STATUS_FILE_LOCK_CONFLICT
;
753 /* Just copy the Windows lock into the new array. */
754 memcpy(&tp
[count
], curr_lock
, sizeof(struct lock_struct
));
757 unsigned int tmp_count
= 0;
759 /* POSIX conflict semantics are different. */
760 if (brl_conflict_posix(curr_lock
, plock
)) {
761 /* Can't block ourselves with POSIX locks. */
762 /* No games with error messages. */
764 /* Remember who blocked us. */
765 plock
->context
.smblctx
= curr_lock
->context
.smblctx
;
766 return NT_STATUS_FILE_LOCK_CONFLICT
;
769 /* Work out overlaps. */
770 tmp_count
+= brlock_posix_split_merge(&tp
[count
], curr_lock
, plock
);
771 posix_count
+= tmp_count
;
777 * Break oplocks while we hold a brl. Since lock() and unlock() calls
778 * are not symetric with POSIX semantics, we cannot guarantee our
779 * contend_level2_oplocks_begin/end calls will be acquired and
780 * released one-for-one as with Windows semantics. Therefore we only
781 * call contend_level2_oplocks_begin if this is the first POSIX brl on
784 break_oplocks
= (!IS_PENDING_LOCK(plock
->lock_type
) &&
787 contend_level2_oplocks_begin(br_lck
->fsp
,
788 LEVEL2_CONTEND_POSIX_BRL
);
791 /* Try and add the lock in order, sorted by lock start. */
792 for (i
=0; i
< count
; i
++) {
793 struct lock_struct
*curr_lock
= &tp
[i
];
795 if (curr_lock
->start
<= plock
->start
) {
801 memmove(&tp
[i
+1], &tp
[i
],
802 (count
- i
)*sizeof(struct lock_struct
));
804 memcpy(&tp
[i
], plock
, sizeof(struct lock_struct
));
807 /* We can get the POSIX lock, now see if it needs to
808 be mapped into a lower level POSIX one, and if so can
811 if (!IS_PENDING_LOCK(plock
->lock_type
) && lp_posix_locking(br_lck
->fsp
->conn
->params
)) {
814 /* The lower layer just needs to attempt to
815 get the system POSIX lock. We've weeded out
816 any conflicts above. */
818 if (!set_posix_lock_posix_flavour(br_lck
->fsp
,
824 /* We don't know who blocked us. */
825 plock
->context
.smblctx
= 0xFFFFFFFFFFFFFFFFLL
;
827 if (errno_ret
== EACCES
|| errno_ret
== EAGAIN
) {
829 status
= NT_STATUS_FILE_LOCK_CONFLICT
;
833 status
= map_nt_error_from_unix(errno
);
839 /* If we didn't use all the allocated size,
840 * Realloc so we don't leak entries per lock call. */
841 if (count
< br_lck
->num_locks
+ 2) {
842 tp
= (struct lock_struct
*)SMB_REALLOC(tp
, count
* sizeof(*locks
));
844 status
= NT_STATUS_NO_MEMORY
;
849 br_lck
->num_locks
= count
;
850 SAFE_FREE(br_lck
->lock_data
);
851 br_lck
->lock_data
= tp
;
853 br_lck
->modified
= True
;
855 /* A successful downgrade from write to read lock can trigger a lock
856 re-evalutation where waiting readers can now proceed. */
858 if (signal_pending_read
) {
859 /* Send unlock messages to any pending read waiters that overlap. */
860 for (i
=0; i
< br_lck
->num_locks
; i
++) {
861 struct lock_struct
*pend_lock
= &locks
[i
];
863 /* Ignore non-pending locks. */
864 if (!IS_PENDING_LOCK(pend_lock
->lock_type
)) {
868 if (pend_lock
->lock_type
== PENDING_READ_LOCK
&&
869 brl_pending_overlap(plock
, pend_lock
)) {
870 DEBUG(10,("brl_lock_posix: sending unlock message to pid %s\n",
871 procid_str_static(&pend_lock
->context
.pid
)));
873 messaging_send(msg_ctx
, pend_lock
->context
.pid
,
874 MSG_SMB_UNLOCK
, &data_blob_null
);
882 contend_level2_oplocks_end(br_lck
->fsp
,
883 LEVEL2_CONTEND_POSIX_BRL
);
888 NTSTATUS
smb_vfs_call_brl_lock_windows(struct vfs_handle_struct
*handle
,
889 struct byte_range_lock
*br_lck
,
890 struct lock_struct
*plock
,
892 struct blocking_lock_record
*blr
)
894 VFS_FIND(brl_lock_windows
);
895 return handle
->fns
->brl_lock_windows(handle
, br_lck
, plock
,
899 /****************************************************************************
900 Lock a range of bytes.
901 ****************************************************************************/
903 NTSTATUS
brl_lock(struct messaging_context
*msg_ctx
,
904 struct byte_range_lock
*br_lck
,
906 struct server_id pid
,
909 enum brl_type lock_type
,
910 enum brl_flavour lock_flav
,
913 struct blocking_lock_record
*blr
)
916 struct lock_struct lock
;
919 if (start
== 0 && size
== 0) {
920 DEBUG(0,("client sent 0/0 lock - please report this\n"));
925 /* Quieten valgrind on test. */
926 memset(&lock
, '\0', sizeof(lock
));
929 lock
.context
.smblctx
= smblctx
;
930 lock
.context
.pid
= pid
;
931 lock
.context
.tid
= br_lck
->fsp
->conn
->cnum
;
934 lock
.fnum
= br_lck
->fsp
->fnum
;
935 lock
.lock_type
= lock_type
;
936 lock
.lock_flav
= lock_flav
;
938 if (lock_flav
== WINDOWS_LOCK
) {
939 ret
= SMB_VFS_BRL_LOCK_WINDOWS(br_lck
->fsp
->conn
, br_lck
,
940 &lock
, blocking_lock
, blr
);
942 ret
= brl_lock_posix(msg_ctx
, br_lck
, &lock
);
946 /* sort the lock list */
947 TYPESAFE_QSORT(br_lck
->lock_data
, (size_t)br_lck
->num_locks
, lock_compare
);
950 /* If we're returning an error, return who blocked us. */
951 if (!NT_STATUS_IS_OK(ret
) && psmblctx
) {
952 *psmblctx
= lock
.context
.smblctx
;
957 /****************************************************************************
958 Unlock a range of bytes - Windows semantics.
959 ****************************************************************************/
961 bool brl_unlock_windows_default(struct messaging_context
*msg_ctx
,
962 struct byte_range_lock
*br_lck
,
963 const struct lock_struct
*plock
)
966 struct lock_struct
*locks
= br_lck
->lock_data
;
967 enum brl_type deleted_lock_type
= READ_LOCK
; /* shut the compiler up.... */
969 SMB_ASSERT(plock
->lock_type
== UNLOCK_LOCK
);
972 /* Delete write locks by preference... The lock list
973 is sorted in the zero zero case. */
975 for (i
= 0; i
< br_lck
->num_locks
; i
++) {
976 struct lock_struct
*lock
= &locks
[i
];
978 if (lock
->lock_type
== WRITE_LOCK
&&
979 brl_same_context(&lock
->context
, &plock
->context
) &&
980 lock
->fnum
== plock
->fnum
&&
981 lock
->lock_flav
== WINDOWS_LOCK
&&
982 lock
->start
== plock
->start
&&
983 lock
->size
== plock
->size
) {
985 /* found it - delete it */
986 deleted_lock_type
= lock
->lock_type
;
991 if (i
!= br_lck
->num_locks
) {
992 /* We found it - don't search again. */
993 goto unlock_continue
;
997 for (i
= 0; i
< br_lck
->num_locks
; i
++) {
998 struct lock_struct
*lock
= &locks
[i
];
1000 if (IS_PENDING_LOCK(lock
->lock_type
)) {
1004 /* Only remove our own locks that match in start, size, and flavour. */
1005 if (brl_same_context(&lock
->context
, &plock
->context
) &&
1006 lock
->fnum
== plock
->fnum
&&
1007 lock
->lock_flav
== WINDOWS_LOCK
&&
1008 lock
->start
== plock
->start
&&
1009 lock
->size
== plock
->size
) {
1010 deleted_lock_type
= lock
->lock_type
;
1015 if (i
== br_lck
->num_locks
) {
1016 /* we didn't find it */
1024 /* Actually delete the lock. */
1025 if (i
< br_lck
->num_locks
- 1) {
1026 memmove(&locks
[i
], &locks
[i
+1],
1027 sizeof(*locks
)*((br_lck
->num_locks
-1) - i
));
1030 br_lck
->num_locks
-= 1;
1031 br_lck
->modified
= True
;
1033 /* Unlock the underlying POSIX regions. */
1034 if(lp_posix_locking(br_lck
->fsp
->conn
->params
)) {
1035 release_posix_lock_windows_flavour(br_lck
->fsp
,
1044 /* Send unlock messages to any pending waiters that overlap. */
1045 for (j
=0; j
< br_lck
->num_locks
; j
++) {
1046 struct lock_struct
*pend_lock
= &locks
[j
];
1048 /* Ignore non-pending locks. */
1049 if (!IS_PENDING_LOCK(pend_lock
->lock_type
)) {
1053 /* We could send specific lock info here... */
1054 if (brl_pending_overlap(plock
, pend_lock
)) {
1055 DEBUG(10,("brl_unlock: sending unlock message to pid %s\n",
1056 procid_str_static(&pend_lock
->context
.pid
)));
1058 messaging_send(msg_ctx
, pend_lock
->context
.pid
,
1059 MSG_SMB_UNLOCK
, &data_blob_null
);
1063 contend_level2_oplocks_end(br_lck
->fsp
, LEVEL2_CONTEND_WINDOWS_BRL
);
1067 /****************************************************************************
1068 Unlock a range of bytes - POSIX semantics.
1069 ****************************************************************************/
1071 static bool brl_unlock_posix(struct messaging_context
*msg_ctx
,
1072 struct byte_range_lock
*br_lck
,
1073 struct lock_struct
*plock
)
1075 unsigned int i
, j
, count
;
1076 struct lock_struct
*tp
;
1077 struct lock_struct
*locks
= br_lck
->lock_data
;
1078 bool overlap_found
= False
;
1080 /* No zero-zero locks for POSIX. */
1081 if (plock
->start
== 0 && plock
->size
== 0) {
1085 /* Don't allow 64-bit lock wrap. */
1086 if (plock
->start
+ plock
->size
< plock
->start
||
1087 plock
->start
+ plock
->size
< plock
->size
) {
1088 DEBUG(10,("brl_unlock_posix: lock wrap\n"));
1092 /* The worst case scenario here is we have to split an
1093 existing POSIX lock range into two, so we need at most
1096 tp
= SMB_MALLOC_ARRAY(struct lock_struct
, (br_lck
->num_locks
+ 1));
1098 DEBUG(10,("brl_unlock_posix: malloc fail\n"));
1103 for (i
= 0; i
< br_lck
->num_locks
; i
++) {
1104 struct lock_struct
*lock
= &locks
[i
];
1105 unsigned int tmp_count
;
1107 /* Only remove our own locks - ignore fnum. */
1108 if (IS_PENDING_LOCK(lock
->lock_type
) ||
1109 !brl_same_context(&lock
->context
, &plock
->context
)) {
1110 memcpy(&tp
[count
], lock
, sizeof(struct lock_struct
));
1115 if (lock
->lock_flav
== WINDOWS_LOCK
) {
1116 /* Do any Windows flavour locks conflict ? */
1117 if (brl_conflict(lock
, plock
)) {
1121 /* Just copy the Windows lock into the new array. */
1122 memcpy(&tp
[count
], lock
, sizeof(struct lock_struct
));
1127 /* Work out overlaps. */
1128 tmp_count
= brlock_posix_split_merge(&tp
[count
], lock
, plock
);
1130 if (tmp_count
== 0) {
1131 /* plock overlapped the existing lock completely,
1132 or replaced it. Don't copy the existing lock. */
1133 overlap_found
= true;
1134 } else if (tmp_count
== 1) {
1135 /* Either no overlap, (simple copy of existing lock) or
1136 * an overlap of an existing lock. */
1137 /* If the lock changed size, we had an overlap. */
1138 if (tp
[count
].size
!= lock
->size
) {
1139 overlap_found
= true;
1142 } else if (tmp_count
== 2) {
1143 /* We split a lock range in two. */
1144 overlap_found
= true;
1147 /* Optimisation... */
1148 /* We know we're finished here as we can't overlap any
1149 more POSIX locks. Copy the rest of the lock array. */
1151 if (i
< br_lck
->num_locks
- 1) {
1152 memcpy(&tp
[count
], &locks
[i
+1],
1153 sizeof(*locks
)*((br_lck
->num_locks
-1) - i
));
1154 count
+= ((br_lck
->num_locks
-1) - i
);
1161 if (!overlap_found
) {
1162 /* Just ignore - no change. */
1164 DEBUG(10,("brl_unlock_posix: No overlap - unlocked.\n"));
1168 /* Unlock any POSIX regions. */
1169 if(lp_posix_locking(br_lck
->fsp
->conn
->params
)) {
1170 release_posix_lock_posix_flavour(br_lck
->fsp
,
1178 /* Realloc so we don't leak entries per unlock call. */
1180 tp
= (struct lock_struct
*)SMB_REALLOC(tp
, count
* sizeof(*locks
));
1182 DEBUG(10,("brl_unlock_posix: realloc fail\n"));
1186 /* We deleted the last lock. */
1191 contend_level2_oplocks_end(br_lck
->fsp
,
1192 LEVEL2_CONTEND_POSIX_BRL
);
1194 br_lck
->num_locks
= count
;
1195 SAFE_FREE(br_lck
->lock_data
);
1197 br_lck
->lock_data
= tp
;
1198 br_lck
->modified
= True
;
1200 /* Send unlock messages to any pending waiters that overlap. */
1202 for (j
=0; j
< br_lck
->num_locks
; j
++) {
1203 struct lock_struct
*pend_lock
= &locks
[j
];
1205 /* Ignore non-pending locks. */
1206 if (!IS_PENDING_LOCK(pend_lock
->lock_type
)) {
1210 /* We could send specific lock info here... */
1211 if (brl_pending_overlap(plock
, pend_lock
)) {
1212 DEBUG(10,("brl_unlock: sending unlock message to pid %s\n",
1213 procid_str_static(&pend_lock
->context
.pid
)));
1215 messaging_send(msg_ctx
, pend_lock
->context
.pid
,
1216 MSG_SMB_UNLOCK
, &data_blob_null
);
1223 bool smb_vfs_call_brl_unlock_windows(struct vfs_handle_struct
*handle
,
1224 struct messaging_context
*msg_ctx
,
1225 struct byte_range_lock
*br_lck
,
1226 const struct lock_struct
*plock
)
1228 VFS_FIND(brl_unlock_windows
);
1229 return handle
->fns
->brl_unlock_windows(handle
, msg_ctx
, br_lck
, plock
);
1232 /****************************************************************************
1233 Unlock a range of bytes.
1234 ****************************************************************************/
1236 bool brl_unlock(struct messaging_context
*msg_ctx
,
1237 struct byte_range_lock
*br_lck
,
1239 struct server_id pid
,
1242 enum brl_flavour lock_flav
)
1244 struct lock_struct lock
;
1246 lock
.context
.smblctx
= smblctx
;
1247 lock
.context
.pid
= pid
;
1248 lock
.context
.tid
= br_lck
->fsp
->conn
->cnum
;
1251 lock
.fnum
= br_lck
->fsp
->fnum
;
1252 lock
.lock_type
= UNLOCK_LOCK
;
1253 lock
.lock_flav
= lock_flav
;
1255 if (lock_flav
== WINDOWS_LOCK
) {
1256 return SMB_VFS_BRL_UNLOCK_WINDOWS(br_lck
->fsp
->conn
, msg_ctx
,
1259 return brl_unlock_posix(msg_ctx
, br_lck
, &lock
);
1263 /****************************************************************************
1264 Test if we could add a lock if we wanted to.
1265 Returns True if the region required is currently unlocked, False if locked.
1266 ****************************************************************************/
1268 bool brl_locktest(struct byte_range_lock
*br_lck
,
1270 struct server_id pid
,
1273 enum brl_type lock_type
,
1274 enum brl_flavour lock_flav
)
1278 struct lock_struct lock
;
1279 const struct lock_struct
*locks
= br_lck
->lock_data
;
1280 files_struct
*fsp
= br_lck
->fsp
;
1282 lock
.context
.smblctx
= smblctx
;
1283 lock
.context
.pid
= pid
;
1284 lock
.context
.tid
= br_lck
->fsp
->conn
->cnum
;
1287 lock
.fnum
= fsp
->fnum
;
1288 lock
.lock_type
= lock_type
;
1289 lock
.lock_flav
= lock_flav
;
1291 /* Make sure existing locks don't conflict */
1292 for (i
=0; i
< br_lck
->num_locks
; i
++) {
1294 * Our own locks don't conflict.
1296 if (brl_conflict_other(&locks
[i
], &lock
)) {
1302 * There is no lock held by an SMB daemon, check to
1303 * see if there is a POSIX lock from a UNIX or NFS process.
1304 * This only conflicts with Windows locks, not POSIX locks.
1307 if(lp_posix_locking(fsp
->conn
->params
) && (lock_flav
== WINDOWS_LOCK
)) {
1308 ret
= is_posix_locked(fsp
, &start
, &size
, &lock_type
, WINDOWS_LOCK
);
1310 DEBUG(10,("brl_locktest: posix start=%.0f len=%.0f %s for fnum %d file %s\n",
1311 (double)start
, (double)size
, ret
? "locked" : "unlocked",
1312 fsp
->fnum
, fsp_str_dbg(fsp
)));
1314 /* We need to return the inverse of is_posix_locked. */
1318 /* no conflicts - we could have added it */
1322 /****************************************************************************
1323 Query for existing locks.
1324 ****************************************************************************/
1326 NTSTATUS
brl_lockquery(struct byte_range_lock
*br_lck
,
1328 struct server_id pid
,
1331 enum brl_type
*plock_type
,
1332 enum brl_flavour lock_flav
)
1335 struct lock_struct lock
;
1336 const struct lock_struct
*locks
= br_lck
->lock_data
;
1337 files_struct
*fsp
= br_lck
->fsp
;
1339 lock
.context
.smblctx
= *psmblctx
;
1340 lock
.context
.pid
= pid
;
1341 lock
.context
.tid
= br_lck
->fsp
->conn
->cnum
;
1342 lock
.start
= *pstart
;
1344 lock
.fnum
= fsp
->fnum
;
1345 lock
.lock_type
= *plock_type
;
1346 lock
.lock_flav
= lock_flav
;
1348 /* Make sure existing locks don't conflict */
1349 for (i
=0; i
< br_lck
->num_locks
; i
++) {
1350 const struct lock_struct
*exlock
= &locks
[i
];
1351 bool conflict
= False
;
1353 if (exlock
->lock_flav
== WINDOWS_LOCK
) {
1354 conflict
= brl_conflict(exlock
, &lock
);
1356 conflict
= brl_conflict_posix(exlock
, &lock
);
1360 *psmblctx
= exlock
->context
.smblctx
;
1361 *pstart
= exlock
->start
;
1362 *psize
= exlock
->size
;
1363 *plock_type
= exlock
->lock_type
;
1364 return NT_STATUS_LOCK_NOT_GRANTED
;
1369 * There is no lock held by an SMB daemon, check to
1370 * see if there is a POSIX lock from a UNIX or NFS process.
1373 if(lp_posix_locking(fsp
->conn
->params
)) {
1374 bool ret
= is_posix_locked(fsp
, pstart
, psize
, plock_type
, POSIX_LOCK
);
1376 DEBUG(10,("brl_lockquery: posix start=%.0f len=%.0f %s for fnum %d file %s\n",
1377 (double)*pstart
, (double)*psize
, ret
? "locked" : "unlocked",
1378 fsp
->fnum
, fsp_str_dbg(fsp
)));
1381 /* Hmmm. No clue what to set smblctx to - use -1. */
1382 *psmblctx
= 0xFFFFFFFFFFFFFFFFLL
;
1383 return NT_STATUS_LOCK_NOT_GRANTED
;
1387 return NT_STATUS_OK
;
1391 bool smb_vfs_call_brl_cancel_windows(struct vfs_handle_struct
*handle
,
1392 struct byte_range_lock
*br_lck
,
1393 struct lock_struct
*plock
,
1394 struct blocking_lock_record
*blr
)
1396 VFS_FIND(brl_cancel_windows
);
1397 return handle
->fns
->brl_cancel_windows(handle
, br_lck
, plock
, blr
);
1400 /****************************************************************************
1401 Remove a particular pending lock.
1402 ****************************************************************************/
1403 bool brl_lock_cancel(struct byte_range_lock
*br_lck
,
1405 struct server_id pid
,
1408 enum brl_flavour lock_flav
,
1409 struct blocking_lock_record
*blr
)
1412 struct lock_struct lock
;
1414 lock
.context
.smblctx
= smblctx
;
1415 lock
.context
.pid
= pid
;
1416 lock
.context
.tid
= br_lck
->fsp
->conn
->cnum
;
1419 lock
.fnum
= br_lck
->fsp
->fnum
;
1420 lock
.lock_flav
= lock_flav
;
1421 /* lock.lock_type doesn't matter */
1423 if (lock_flav
== WINDOWS_LOCK
) {
1424 ret
= SMB_VFS_BRL_CANCEL_WINDOWS(br_lck
->fsp
->conn
, br_lck
,
1427 ret
= brl_lock_cancel_default(br_lck
, &lock
);
1433 bool brl_lock_cancel_default(struct byte_range_lock
*br_lck
,
1434 struct lock_struct
*plock
)
1437 struct lock_struct
*locks
= br_lck
->lock_data
;
1441 for (i
= 0; i
< br_lck
->num_locks
; i
++) {
1442 struct lock_struct
*lock
= &locks
[i
];
1444 /* For pending locks we *always* care about the fnum. */
1445 if (brl_same_context(&lock
->context
, &plock
->context
) &&
1446 lock
->fnum
== plock
->fnum
&&
1447 IS_PENDING_LOCK(lock
->lock_type
) &&
1448 lock
->lock_flav
== plock
->lock_flav
&&
1449 lock
->start
== plock
->start
&&
1450 lock
->size
== plock
->size
) {
1455 if (i
== br_lck
->num_locks
) {
1456 /* Didn't find it. */
1460 if (i
< br_lck
->num_locks
- 1) {
1461 /* Found this particular pending lock - delete it */
1462 memmove(&locks
[i
], &locks
[i
+1],
1463 sizeof(*locks
)*((br_lck
->num_locks
-1) - i
));
1466 br_lck
->num_locks
-= 1;
1467 br_lck
->modified
= True
;
1471 /****************************************************************************
1472 Remove any locks associated with a open file.
1473 We return True if this process owns any other Windows locks on this
1474 fd and so we should not immediately close the fd.
1475 ****************************************************************************/
1477 void brl_close_fnum(struct messaging_context
*msg_ctx
,
1478 struct byte_range_lock
*br_lck
)
1480 files_struct
*fsp
= br_lck
->fsp
;
1481 uint16 tid
= fsp
->conn
->cnum
;
1482 int fnum
= fsp
->fnum
;
1483 unsigned int i
, j
, dcount
=0;
1484 int num_deleted_windows_locks
= 0;
1485 struct lock_struct
*locks
= br_lck
->lock_data
;
1486 struct server_id pid
= procid_self();
1487 bool unlock_individually
= False
;
1488 bool posix_level2_contention_ended
= false;
1490 if(lp_posix_locking(fsp
->conn
->params
)) {
1492 /* Check if there are any Windows locks associated with this dev/ino
1493 pair that are not this fnum. If so we need to call unlock on each
1494 one in order to release the system POSIX locks correctly. */
1496 for (i
=0; i
< br_lck
->num_locks
; i
++) {
1497 struct lock_struct
*lock
= &locks
[i
];
1499 if (!procid_equal(&lock
->context
.pid
, &pid
)) {
1503 if (lock
->lock_type
!= READ_LOCK
&& lock
->lock_type
!= WRITE_LOCK
) {
1504 continue; /* Ignore pending. */
1507 if (lock
->context
.tid
!= tid
|| lock
->fnum
!= fnum
) {
1508 unlock_individually
= True
;
1513 if (unlock_individually
) {
1514 struct lock_struct
*locks_copy
;
1515 unsigned int num_locks_copy
;
1517 /* Copy the current lock array. */
1518 if (br_lck
->num_locks
) {
1519 locks_copy
= (struct lock_struct
*)TALLOC_MEMDUP(br_lck
, locks
, br_lck
->num_locks
* sizeof(struct lock_struct
));
1521 smb_panic("brl_close_fnum: talloc failed");
1527 num_locks_copy
= br_lck
->num_locks
;
1529 for (i
=0; i
< num_locks_copy
; i
++) {
1530 struct lock_struct
*lock
= &locks_copy
[i
];
1532 if (lock
->context
.tid
== tid
&& procid_equal(&lock
->context
.pid
, &pid
) &&
1533 (lock
->fnum
== fnum
)) {
1536 lock
->context
.smblctx
,
1547 /* We can bulk delete - any POSIX locks will be removed when the fd closes. */
1549 /* Remove any existing locks for this fnum (or any fnum if they're POSIX). */
1551 for (i
=0; i
< br_lck
->num_locks
; i
++) {
1552 struct lock_struct
*lock
= &locks
[i
];
1553 bool del_this_lock
= False
;
1555 if (lock
->context
.tid
== tid
&& procid_equal(&lock
->context
.pid
, &pid
)) {
1556 if ((lock
->lock_flav
== WINDOWS_LOCK
) && (lock
->fnum
== fnum
)) {
1557 del_this_lock
= True
;
1558 num_deleted_windows_locks
++;
1559 contend_level2_oplocks_end(br_lck
->fsp
,
1560 LEVEL2_CONTEND_WINDOWS_BRL
);
1561 } else if (lock
->lock_flav
== POSIX_LOCK
) {
1562 del_this_lock
= True
;
1564 /* Only end level2 contention once for posix */
1565 if (!posix_level2_contention_ended
) {
1566 posix_level2_contention_ended
= true;
1567 contend_level2_oplocks_end(br_lck
->fsp
,
1568 LEVEL2_CONTEND_POSIX_BRL
);
1573 if (del_this_lock
) {
1574 /* Send unlock messages to any pending waiters that overlap. */
1575 for (j
=0; j
< br_lck
->num_locks
; j
++) {
1576 struct lock_struct
*pend_lock
= &locks
[j
];
1578 /* Ignore our own or non-pending locks. */
1579 if (!IS_PENDING_LOCK(pend_lock
->lock_type
)) {
1583 /* Optimisation - don't send to this fnum as we're
1585 if (pend_lock
->context
.tid
== tid
&&
1586 procid_equal(&pend_lock
->context
.pid
, &pid
) &&
1587 pend_lock
->fnum
== fnum
) {
1591 /* We could send specific lock info here... */
1592 if (brl_pending_overlap(lock
, pend_lock
)) {
1593 messaging_send(msg_ctx
, pend_lock
->context
.pid
,
1594 MSG_SMB_UNLOCK
, &data_blob_null
);
1598 /* found it - delete it */
1599 if (br_lck
->num_locks
> 1 && i
< br_lck
->num_locks
- 1) {
1600 memmove(&locks
[i
], &locks
[i
+1],
1601 sizeof(*locks
)*((br_lck
->num_locks
-1) - i
));
1603 br_lck
->num_locks
--;
1604 br_lck
->modified
= True
;
1610 if(lp_posix_locking(fsp
->conn
->params
) && num_deleted_windows_locks
) {
1611 /* Reduce the Windows lock POSIX reference count on this dev/ino pair. */
1612 reduce_windows_lock_ref_count(fsp
, num_deleted_windows_locks
);
1616 /****************************************************************************
1617 Ensure this set of lock entries is valid.
1618 ****************************************************************************/
1619 static bool validate_lock_entries(unsigned int *pnum_entries
, struct lock_struct
**pplocks
)
1622 unsigned int num_valid_entries
= 0;
1623 struct lock_struct
*locks
= *pplocks
;
1625 for (i
= 0; i
< *pnum_entries
; i
++) {
1626 struct lock_struct
*lock_data
= &locks
[i
];
1627 if (!serverid_exists(&lock_data
->context
.pid
)) {
1628 /* This process no longer exists - mark this
1629 entry as invalid by zeroing it. */
1630 ZERO_STRUCTP(lock_data
);
1632 num_valid_entries
++;
1636 if (num_valid_entries
!= *pnum_entries
) {
1637 struct lock_struct
*new_lock_data
= NULL
;
1639 if (num_valid_entries
) {
1640 new_lock_data
= SMB_MALLOC_ARRAY(struct lock_struct
, num_valid_entries
);
1641 if (!new_lock_data
) {
1642 DEBUG(3, ("malloc fail\n"));
1646 num_valid_entries
= 0;
1647 for (i
= 0; i
< *pnum_entries
; i
++) {
1648 struct lock_struct
*lock_data
= &locks
[i
];
1649 if (lock_data
->context
.smblctx
&&
1650 lock_data
->context
.tid
) {
1651 /* Valid (nonzero) entry - copy it. */
1652 memcpy(&new_lock_data
[num_valid_entries
],
1653 lock_data
, sizeof(struct lock_struct
));
1654 num_valid_entries
++;
1659 SAFE_FREE(*pplocks
);
1660 *pplocks
= new_lock_data
;
1661 *pnum_entries
= num_valid_entries
;
1667 struct brl_forall_cb
{
1668 void (*fn
)(struct file_id id
, struct server_id pid
,
1669 enum brl_type lock_type
,
1670 enum brl_flavour lock_flav
,
1671 br_off start
, br_off size
,
1672 void *private_data
);
1676 /****************************************************************************
1677 Traverse the whole database with this function, calling traverse_callback
1679 ****************************************************************************/
1681 static int traverse_fn(struct db_record
*rec
, void *state
)
1683 struct brl_forall_cb
*cb
= (struct brl_forall_cb
*)state
;
1684 struct lock_struct
*locks
;
1685 struct file_id
*key
;
1687 unsigned int num_locks
= 0;
1688 unsigned int orig_num_locks
= 0;
1690 /* In a traverse function we must make a copy of
1691 dbuf before modifying it. */
1693 locks
= (struct lock_struct
*)memdup(rec
->value
.dptr
,
1696 return -1; /* Terminate traversal. */
1699 key
= (struct file_id
*)rec
->key
.dptr
;
1700 orig_num_locks
= num_locks
= rec
->value
.dsize
/sizeof(*locks
);
1702 /* Ensure the lock db is clean of entries from invalid processes. */
1704 if (!validate_lock_entries(&num_locks
, &locks
)) {
1706 return -1; /* Terminate traversal */
1709 if (orig_num_locks
!= num_locks
) {
1712 data
.dptr
= (uint8_t *)locks
;
1713 data
.dsize
= num_locks
*sizeof(struct lock_struct
);
1714 rec
->store(rec
, data
, TDB_REPLACE
);
1716 rec
->delete_rec(rec
);
1721 for ( i
=0; i
<num_locks
; i
++) {
1723 locks
[i
].context
.pid
,
1736 /*******************************************************************
1737 Call the specified function on each lock in the database.
1738 ********************************************************************/
1740 int brl_forall(void (*fn
)(struct file_id id
, struct server_id pid
,
1741 enum brl_type lock_type
,
1742 enum brl_flavour lock_flav
,
1743 br_off start
, br_off size
,
1744 void *private_data
),
1747 struct brl_forall_cb cb
;
1753 cb
.private_data
= private_data
;
1754 return brlock_db
->traverse(brlock_db
, traverse_fn
, &cb
);
1757 /*******************************************************************
1758 Store a potentially modified set of byte range lock data back into
1761 ********************************************************************/
1763 static int byte_range_lock_destructor(struct byte_range_lock
*br_lck
)
1765 if (br_lck
->read_only
) {
1766 SMB_ASSERT(!br_lck
->modified
);
1769 if (!br_lck
->modified
) {
1773 if (br_lck
->num_locks
== 0) {
1774 /* No locks - delete this entry. */
1775 NTSTATUS status
= br_lck
->record
->delete_rec(br_lck
->record
);
1776 if (!NT_STATUS_IS_OK(status
)) {
1777 DEBUG(0, ("delete_rec returned %s\n",
1778 nt_errstr(status
)));
1779 smb_panic("Could not delete byte range lock entry");
1785 data
.dptr
= (uint8
*)br_lck
->lock_data
;
1786 data
.dsize
= br_lck
->num_locks
* sizeof(struct lock_struct
);
1788 status
= br_lck
->record
->store(br_lck
->record
, data
,
1790 if (!NT_STATUS_IS_OK(status
)) {
1791 DEBUG(0, ("store returned %s\n", nt_errstr(status
)));
1792 smb_panic("Could not store byte range mode entry");
1798 SAFE_FREE(br_lck
->lock_data
);
1799 TALLOC_FREE(br_lck
->record
);
1803 /*******************************************************************
1804 Fetch a set of byte range lock data from the database.
1805 Leave the record locked.
1806 TALLOC_FREE(brl) will release the lock in the destructor.
1807 ********************************************************************/
1809 static struct byte_range_lock
*brl_get_locks_internal(TALLOC_CTX
*mem_ctx
,
1810 files_struct
*fsp
, bool read_only
)
1813 struct byte_range_lock
*br_lck
= TALLOC_P(mem_ctx
, struct byte_range_lock
);
1815 if (br_lck
== NULL
) {
1820 br_lck
->num_locks
= 0;
1821 br_lck
->modified
= False
;
1822 br_lck
->key
= fsp
->file_id
;
1824 key
.dptr
= (uint8
*)&br_lck
->key
;
1825 key
.dsize
= sizeof(struct file_id
);
1827 if (!fsp
->lockdb_clean
) {
1828 /* We must be read/write to clean
1829 the dead entries. */
1834 if (brlock_db
->fetch(brlock_db
, br_lck
, key
, &data
) == -1) {
1835 DEBUG(3, ("Could not fetch byte range lock record\n"));
1836 TALLOC_FREE(br_lck
);
1839 br_lck
->record
= NULL
;
1842 br_lck
->record
= brlock_db
->fetch_locked(brlock_db
, br_lck
, key
);
1844 if (br_lck
->record
== NULL
) {
1845 DEBUG(3, ("Could not lock byte range lock entry\n"));
1846 TALLOC_FREE(br_lck
);
1850 data
= br_lck
->record
->value
;
1853 br_lck
->read_only
= read_only
;
1854 br_lck
->lock_data
= NULL
;
1856 talloc_set_destructor(br_lck
, byte_range_lock_destructor
);
1858 br_lck
->num_locks
= data
.dsize
/ sizeof(struct lock_struct
);
1860 if (br_lck
->num_locks
!= 0) {
1861 br_lck
->lock_data
= SMB_MALLOC_ARRAY(struct lock_struct
,
1863 if (br_lck
->lock_data
== NULL
) {
1864 DEBUG(0, ("malloc failed\n"));
1865 TALLOC_FREE(br_lck
);
1869 memcpy(br_lck
->lock_data
, data
.dptr
, data
.dsize
);
1872 if (!fsp
->lockdb_clean
) {
1873 int orig_num_locks
= br_lck
->num_locks
;
1875 /* This is the first time we've accessed this. */
1876 /* Go through and ensure all entries exist - remove any that don't. */
1877 /* Makes the lockdb self cleaning at low cost. */
1879 if (!validate_lock_entries(&br_lck
->num_locks
,
1880 &br_lck
->lock_data
)) {
1881 SAFE_FREE(br_lck
->lock_data
);
1882 TALLOC_FREE(br_lck
);
1886 /* Ensure invalid locks are cleaned up in the destructor. */
1887 if (orig_num_locks
!= br_lck
->num_locks
) {
1888 br_lck
->modified
= True
;
1891 /* Mark the lockdb as "clean" as seen from this open file. */
1892 fsp
->lockdb_clean
= True
;
1895 if (DEBUGLEVEL
>= 10) {
1897 struct lock_struct
*locks
= br_lck
->lock_data
;
1898 DEBUG(10,("brl_get_locks_internal: %u current locks on file_id %s\n",
1900 file_id_string_tos(&fsp
->file_id
)));
1901 for( i
= 0; i
< br_lck
->num_locks
; i
++) {
1902 print_lock_struct(i
, &locks
[i
]);
1908 struct byte_range_lock
*brl_get_locks(TALLOC_CTX
*mem_ctx
,
1911 return brl_get_locks_internal(mem_ctx
, fsp
, False
);
1914 struct byte_range_lock
*brl_get_locks_readonly(files_struct
*fsp
)
1916 struct byte_range_lock
*br_lock
;
1918 if (lp_clustering()) {
1919 return brl_get_locks_internal(talloc_tos(), fsp
, true);
1922 if ((fsp
->brlock_rec
!= NULL
)
1923 && (brlock_db
->get_seqnum(brlock_db
) == fsp
->brlock_seqnum
)) {
1924 return fsp
->brlock_rec
;
1927 TALLOC_FREE(fsp
->brlock_rec
);
1929 br_lock
= brl_get_locks_internal(talloc_tos(), fsp
, false);
1930 if (br_lock
== NULL
) {
1933 fsp
->brlock_seqnum
= brlock_db
->get_seqnum(brlock_db
);
1935 fsp
->brlock_rec
= talloc_zero(fsp
, struct byte_range_lock
);
1936 if (fsp
->brlock_rec
== NULL
) {
1939 fsp
->brlock_rec
->fsp
= fsp
;
1940 fsp
->brlock_rec
->num_locks
= br_lock
->num_locks
;
1941 fsp
->brlock_rec
->read_only
= true;
1942 fsp
->brlock_rec
->key
= br_lock
->key
;
1944 fsp
->brlock_rec
->lock_data
= (struct lock_struct
*)
1945 talloc_memdup(fsp
->brlock_rec
, br_lock
->lock_data
,
1946 sizeof(struct lock_struct
) * br_lock
->num_locks
);
1947 if (fsp
->brlock_rec
->lock_data
== NULL
) {
1951 TALLOC_FREE(br_lock
);
1952 return fsp
->brlock_rec
;
1954 TALLOC_FREE(br_lock
);
1955 TALLOC_FREE(fsp
->brlock_rec
);
1959 struct brl_revalidate_state
{
1962 struct server_id
*pids
;
1966 * Collect PIDs of all processes with pending entries
1969 static void brl_revalidate_collect(struct file_id id
, struct server_id pid
,
1970 enum brl_type lock_type
,
1971 enum brl_flavour lock_flav
,
1972 br_off start
, br_off size
,
1975 struct brl_revalidate_state
*state
=
1976 (struct brl_revalidate_state
*)private_data
;
1978 if (!IS_PENDING_LOCK(lock_type
)) {
1982 add_to_large_array(state
, sizeof(pid
), (void *)&pid
,
1983 &state
->pids
, &state
->num_pids
,
1984 &state
->array_size
);
1988 * qsort callback to sort the processes
1991 static int compare_procids(const void *p1
, const void *p2
)
1993 const struct server_id
*i1
= (struct server_id
*)p1
;
1994 const struct server_id
*i2
= (struct server_id
*)p2
;
1996 if (i1
->pid
< i2
->pid
) return -1;
1997 if (i2
->pid
> i2
->pid
) return 1;
2002 * Send a MSG_SMB_UNLOCK message to all processes with pending byte range
2003 * locks so that they retry. Mainly used in the cluster code after a node has
2006 * Done in two steps to avoid double-sends: First we collect all entries in an
2007 * array, then qsort that array and only send to non-dupes.
2010 static void brl_revalidate(struct messaging_context
*msg_ctx
,
2013 struct server_id server_id
,
2016 struct brl_revalidate_state
*state
;
2018 struct server_id last_pid
;
2020 if (!(state
= TALLOC_ZERO_P(NULL
, struct brl_revalidate_state
))) {
2021 DEBUG(0, ("talloc failed\n"));
2025 brl_forall(brl_revalidate_collect
, state
);
2027 if (state
->array_size
== -1) {
2028 DEBUG(0, ("talloc failed\n"));
2032 if (state
->num_pids
== 0) {
2036 TYPESAFE_QSORT(state
->pids
, state
->num_pids
, compare_procids
);
2038 ZERO_STRUCT(last_pid
);
2040 for (i
=0; i
<state
->num_pids
; i
++) {
2041 if (procid_equal(&last_pid
, &state
->pids
[i
])) {
2043 * We've seen that one already
2048 messaging_send(msg_ctx
, state
->pids
[i
], MSG_SMB_UNLOCK
,
2050 last_pid
= state
->pids
[i
];
2058 void brl_register_msgs(struct messaging_context
*msg_ctx
)
2060 messaging_register(msg_ctx
, NULL
, MSG_SMB_BRL_VALIDATE
,