2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-2000
5 Copyright (C) Jeremy Allison 1992-2006
6 Copyright (C) Volker Lendecke 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 12 aug 96: Erik.Devriendt@te6.siemens.be
24 added support for shared memory implementation of share mode locking
26 May 1997. Jeremy Allison (jallison@whistle.com). Modified share mode
27 locking to deal with multiple share modes per open file.
29 September 1997. Jeremy Allison (jallison@whistle.com). Added oplock
32 rewritten completely to use new tdb code. Tridge, Dec '99
34 Added POSIX locking support. Jeremy Allison (jeremy@valinux.com), Apr. 2000.
35 Added Unix Extensions POSIX locking support. Jeremy Allison Mar 2006.
39 #include "system/filesys.h"
40 #include "lib/util/server_id.h"
41 #include "locking/proto.h"
42 #include "smbd/globals.h"
43 #include "dbwrap/dbwrap.h"
44 #include "dbwrap/dbwrap_open.h"
45 #include "../libcli/security/security.h"
49 #include "../librpc/gen_ndr/ndr_open_files.h"
50 #include "source3/lib/dbwrap/dbwrap_watch.h"
51 #include "locking/leases_db.h"
52 #include "../lib/util/memcache.h"
53 #include "lib/util/tevent_ntstatus.h"
56 #define DBGC_CLASS DBGC_LOCKING
58 #define NO_LOCKING_COUNT (-1)
60 /* the locking database handle */
61 static struct db_context
*lock_db
;
63 static bool locking_init_internal(bool read_only
)
65 struct db_context
*backend
;
73 db_path
= lock_path("locking.tdb");
74 if (db_path
== NULL
) {
78 backend
= db_open(NULL
, db_path
,
79 SMB_OPEN_DATABASE_TDB_HASH_SIZE
,
80 TDB_DEFAULT
|TDB_VOLATILE
|TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
,
81 read_only
?O_RDONLY
:O_RDWR
|O_CREAT
, 0644,
82 DBWRAP_LOCK_ORDER_1
, DBWRAP_FLAG_NONE
);
85 DEBUG(0,("ERROR: Failed to initialise locking database\n"));
89 lock_db
= db_open_watched(NULL
, backend
, server_messaging_context());
90 if (lock_db
== NULL
) {
91 DBG_ERR("db_open_watched failed\n");
96 if (!posix_locking_init(read_only
)) {
104 bool locking_init(void)
106 return locking_init_internal(false);
109 bool locking_init_readonly(void)
111 return locking_init_internal(true);
114 /*******************************************************************
115 Deinitialize the share_mode management.
116 ******************************************************************/
118 bool locking_end(void)
121 TALLOC_FREE(lock_db
);
125 /*******************************************************************
126 Form a static locking key for a dev/inode pair.
127 ******************************************************************/
129 static TDB_DATA
locking_key(const struct file_id
*id
)
131 return make_tdb_data((const uint8_t *)id
, sizeof(*id
));
134 /*******************************************************************
135 Share mode cache utility functions that store/delete/retrieve
136 entries from memcache.
138 For now share the statcache (global cache) memory space. If
139 a lock record gets orphaned (which shouldn't happen as we're
140 using the same locking_key data as lookup) it will eventually
141 fall out of the cache via the normal LRU trim mechanism. If
142 necessary we can always make this a separate (smaller) cache.
143 ******************************************************************/
145 static const DATA_BLOB
memcache_key(const struct file_id
*id
)
147 return data_blob_const((const void *)id
, sizeof(*id
));
150 static void share_mode_memcache_delete(struct share_mode_data
*d
)
152 const DATA_BLOB key
= memcache_key(&d
->id
);
154 DEBUG(10,("deleting entry for file %s seq 0x%llu key %s\n",
156 (unsigned long long) d
->sequence_number
,
157 file_id_string(talloc_tos(), &d
->id
)));
159 memcache_delete(NULL
,
160 SHARE_MODE_LOCK_CACHE
,
164 static void share_mode_memcache_store(struct share_mode_data
*d
)
166 const DATA_BLOB key
= memcache_key(&d
->id
);
168 DEBUG(10,("stored entry for file %s seq 0x%llu key %s\n",
170 (unsigned long long) d
->sequence_number
,
171 file_id_string(talloc_tos(), &d
->id
)));
173 /* Ensure everything stored in the cache is pristine. */
178 * Ensure the memory going into the cache
179 * doesn't have a destructor so it can be
180 * cleanly freed by share_mode_memcache_delete().
182 talloc_set_destructor(d
, NULL
);
184 /* Cache will own d after this call. */
185 memcache_add_talloc(NULL
,
186 SHARE_MODE_LOCK_CACHE
,
192 * NB. We use ndr_pull_hyper on a stack-created
193 * struct ndr_pull with no talloc allowed, as we
194 * need this to be really fast as an ndr-peek into
195 * the first 8 bytes of the blob.
198 static enum ndr_err_code
get_blob_sequence_number(DATA_BLOB
*blob
,
201 struct ndr_pull ndr
= {.data
= blob
->data
, .data_size
= blob
->length
};
202 NDR_CHECK(ndr_pull_hyper(&ndr
, NDR_SCALARS
, pseq
));
203 return NDR_ERR_SUCCESS
;
206 static int share_mode_data_nofree_destructor(struct share_mode_data
*d
)
211 static struct share_mode_data
*share_mode_memcache_fetch(TALLOC_CTX
*mem_ctx
,
212 const TDB_DATA id_key
,
215 enum ndr_err_code ndr_err
;
216 struct share_mode_data
*d
;
217 uint64_t sequence_number
;
222 /* Ensure this is a locking_key record. */
223 if (id_key
.dsize
!= sizeof(id
)) {
227 memcpy(&id
, id_key
.dptr
, id_key
.dsize
);
228 key
= memcache_key(&id
);
230 ptr
= memcache_lookup_talloc(NULL
,
231 SHARE_MODE_LOCK_CACHE
,
234 DEBUG(10,("failed to find entry for key %s\n",
235 file_id_string(mem_ctx
, &id
)));
238 /* sequence number key is at start of blob. */
239 ndr_err
= get_blob_sequence_number(blob
, &sequence_number
);
240 if (ndr_err
!= NDR_ERR_SUCCESS
) {
241 /* Bad blob. Remove entry. */
242 DEBUG(10,("bad blob %u key %s\n",
243 (unsigned int)ndr_err
,
244 file_id_string(mem_ctx
, &id
)));
245 memcache_delete(NULL
,
246 SHARE_MODE_LOCK_CACHE
,
251 d
= (struct share_mode_data
*)ptr
;
252 if (d
->sequence_number
!= sequence_number
) {
253 DEBUG(10,("seq changed (cached 0x%llu) (new 0x%llu) "
255 (unsigned long long)d
->sequence_number
,
256 (unsigned long long)sequence_number
,
257 file_id_string(mem_ctx
, &id
)));
258 /* Cache out of date. Remove entry. */
259 memcache_delete(NULL
,
260 SHARE_MODE_LOCK_CACHE
,
265 /* Move onto mem_ctx. */
266 d
= talloc_move(mem_ctx
, &ptr
);
269 * Now we own d, prevent the cache from freeing it
270 * when we delete the entry.
272 talloc_set_destructor(d
, share_mode_data_nofree_destructor
);
274 /* Remove from the cache. We own it now. */
275 memcache_delete(NULL
,
276 SHARE_MODE_LOCK_CACHE
,
279 /* And reset the destructor to none. */
280 talloc_set_destructor(d
, NULL
);
282 DEBUG(10,("fetched entry for file %s seq 0x%llu key %s\n",
284 (unsigned long long)d
->sequence_number
,
285 file_id_string(mem_ctx
, &id
)));
290 /*******************************************************************
291 Get all share mode entries for a dev/inode pair.
292 ********************************************************************/
294 static struct share_mode_data
*parse_share_modes(TALLOC_CTX
*mem_ctx
,
298 struct share_mode_data
*d
;
299 enum ndr_err_code ndr_err
;
303 blob
.data
= dbuf
.dptr
;
304 blob
.length
= dbuf
.dsize
;
306 /* See if we already have a cached copy of this key. */
307 d
= share_mode_memcache_fetch(mem_ctx
, key
, &blob
);
312 d
= talloc(mem_ctx
, struct share_mode_data
);
314 DEBUG(0, ("talloc failed\n"));
318 ndr_err
= ndr_pull_struct_blob_all(
319 &blob
, d
, d
, (ndr_pull_flags_fn_t
)ndr_pull_share_mode_data
);
320 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
321 DEBUG(1, ("ndr_pull_share_mode_lock failed: %s\n",
322 ndr_errstr(ndr_err
)));
327 * Initialize the values that are [skip] or [ignore]
328 * in the idl. The NDR code does not initialize them.
331 for (i
=0; i
<d
->num_share_modes
; i
++) {
332 struct share_mode_entry
*e
= &d
->share_modes
[i
];
336 if (e
->op_type
!= LEASE_OPLOCK
) {
339 if (e
->lease_idx
>= d
->num_leases
) {
342 e
->lease
= &d
->leases
[e
->lease_idx
];
347 if (DEBUGLEVEL
>= 10) {
348 DEBUG(10, ("parse_share_modes:\n"));
349 NDR_PRINT_DEBUG(share_mode_data
, d
);
358 /*******************************************************************
359 Create a storable data blob from a modified share_mode_data struct.
360 ********************************************************************/
362 static TDB_DATA
unparse_share_modes(struct share_mode_data
*d
)
365 enum ndr_err_code ndr_err
;
367 if (DEBUGLEVEL
>= 10) {
368 DEBUG(10, ("unparse_share_modes:\n"));
369 NDR_PRINT_DEBUG(share_mode_data
, d
);
372 share_mode_memcache_delete(d
);
374 /* Update the sequence number. */
375 d
->sequence_number
+= 1;
377 remove_stale_share_mode_entries(d
);
379 if (d
->num_share_modes
== 0) {
380 DEBUG(10, ("No used share mode found\n"));
381 return make_tdb_data(NULL
, 0);
384 ndr_err
= ndr_push_struct_blob(
385 &blob
, d
, d
, (ndr_push_flags_fn_t
)ndr_push_share_mode_data
);
386 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
387 smb_panic("ndr_push_share_mode_lock failed");
390 return make_tdb_data(blob
.data
, blob
.length
);
393 /*******************************************************************
394 If modified, store the share_mode_data back into the database.
395 ********************************************************************/
397 static int share_mode_data_destructor(struct share_mode_data
*d
)
406 data
= unparse_share_modes(d
);
408 if (data
.dptr
== NULL
) {
410 /* There has been an entry before, delete it */
412 status
= dbwrap_record_delete(d
->record
);
413 if (!NT_STATUS_IS_OK(status
)) {
416 DEBUG(0, ("delete_rec returned %s\n",
419 if (asprintf(&errmsg
, "could not delete share "
421 nt_errstr(status
)) == -1) {
422 smb_panic("could not delete share"
429 * Nothing to store in cache - allow the normal
430 * release of record lock and memory free.
435 status
= dbwrap_record_store(d
->record
, data
, TDB_REPLACE
);
436 if (!NT_STATUS_IS_OK(status
)) {
439 DEBUG(0, ("store returned %s\n", nt_errstr(status
)));
441 if (asprintf(&errmsg
, "could not store share mode entry: %s",
442 nt_errstr(status
)) == -1) {
443 smb_panic("could not store share mode entry");
449 * Release the record lock before putting in the cache.
451 TALLOC_FREE(d
->record
);
454 * Release the dptr as well before reparenting to NULL
455 * (in-memory cache) context.
457 TALLOC_FREE(data
.dptr
);
459 * Reparent d into the in-memory cache so it can be reused if the
460 * sequence number matches. See parse_share_modes()
464 share_mode_memcache_store(d
);
468 /*******************************************************************
469 Allocate a new share_mode_data struct, mark it unmodified.
470 fresh is set to note that currently there is no database entry.
471 ********************************************************************/
473 static struct share_mode_data
*fresh_share_mode_lock(
474 TALLOC_CTX
*mem_ctx
, const char *servicepath
,
475 const struct smb_filename
*smb_fname
,
476 const struct timespec
*old_write_time
)
478 struct share_mode_data
*d
;
480 if ((servicepath
== NULL
) || (smb_fname
== NULL
) ||
481 (old_write_time
== NULL
)) {
485 d
= talloc_zero(mem_ctx
, struct share_mode_data
);
489 /* New record - new sequence number. */
490 generate_random_buffer((uint8_t *)&d
->sequence_number
, 8);
492 d
->base_name
= talloc_strdup(d
, smb_fname
->base_name
);
493 if (d
->base_name
== NULL
) {
496 if (smb_fname
->stream_name
!= NULL
) {
497 d
->stream_name
= talloc_strdup(d
, smb_fname
->stream_name
);
498 if (d
->stream_name
== NULL
) {
502 d
->servicepath
= talloc_strdup(d
, servicepath
);
503 if (d
->servicepath
== NULL
) {
506 d
->old_write_time
= *old_write_time
;
511 DEBUG(0, ("talloc failed\n"));
516 /*******************************************************************
517 Either fetch a share mode from the database, or allocate a fresh
518 one if the record doesn't exist.
519 ********************************************************************/
521 static struct share_mode_lock
*get_share_mode_lock_internal(
522 TALLOC_CTX
*mem_ctx
, struct file_id id
,
523 const char *servicepath
, const struct smb_filename
*smb_fname
,
524 const struct timespec
*old_write_time
)
526 struct share_mode_lock
*lck
;
527 struct share_mode_data
*d
;
528 struct db_record
*rec
;
529 TDB_DATA key
= locking_key(&id
);
532 rec
= dbwrap_fetch_locked(lock_db
, mem_ctx
, key
);
534 DEBUG(3, ("Could not lock share entry\n"));
538 value
= dbwrap_record_get_value(rec
);
540 if (value
.dptr
== NULL
) {
541 d
= fresh_share_mode_lock(mem_ctx
, servicepath
, smb_fname
,
544 d
= parse_share_modes(mem_ctx
, key
, value
);
548 DEBUG(5, ("get_share_mode_lock_internal: "
549 "Could not get share mode lock\n"));
554 d
->record
= talloc_move(d
, &rec
);
555 talloc_set_destructor(d
, share_mode_data_destructor
);
557 lck
= talloc(mem_ctx
, struct share_mode_lock
);
559 DEBUG(1, ("talloc failed\n"));
563 lck
->data
= talloc_move(lck
, &d
);
568 * We can only ever have one share mode locked. Users of
569 * get_share_mode_lock never see this, it will be refcounted by
572 static struct share_mode_lock
*the_lock
;
573 static struct file_id the_lock_id
;
575 static int the_lock_destructor(struct share_mode_lock
*l
)
578 ZERO_STRUCT(the_lock_id
);
582 /*******************************************************************
583 Get a share_mode_lock, Reference counted to allow nested calls.
584 ********************************************************************/
586 struct share_mode_lock
*get_share_mode_lock(
589 const char *servicepath
,
590 const struct smb_filename
*smb_fname
,
591 const struct timespec
*old_write_time
)
593 struct share_mode_lock
*lck
;
595 lck
= talloc(mem_ctx
, struct share_mode_lock
);
597 DEBUG(1, ("talloc failed\n"));
601 if (the_lock
== NULL
) {
602 the_lock
= get_share_mode_lock_internal(
603 lck
, id
, servicepath
, smb_fname
, old_write_time
);
604 if (the_lock
== NULL
) {
607 talloc_set_destructor(the_lock
, the_lock_destructor
);
610 if (!file_id_equal(&the_lock_id
, &id
)) {
611 DEBUG(1, ("Can not lock two share modes "
612 "simultaneously\n"));
615 if (talloc_reference(lck
, the_lock
) == NULL
) {
616 DEBUG(1, ("talloc_reference failed\n"));
620 lck
->data
= the_lock
->data
;
627 struct fetch_share_mode_unlocked_state
{
629 struct share_mode_lock
*lck
;
632 static void fetch_share_mode_unlocked_parser(
633 TDB_DATA key
, TDB_DATA data
, void *private_data
)
635 struct fetch_share_mode_unlocked_state
*state
= private_data
;
637 if (data
.dsize
== 0) {
638 /* Likely a ctdb tombstone record, ignore it */
642 state
->lck
= talloc(state
->mem_ctx
, struct share_mode_lock
);
643 if (state
->lck
== NULL
) {
644 DEBUG(0, ("talloc failed\n"));
648 state
->lck
->data
= parse_share_modes(state
->lck
, key
, data
);
651 /*******************************************************************
652 Get a share_mode_lock without locking the database or reference
653 counting. Used by smbstatus to display existing share modes.
654 ********************************************************************/
656 struct share_mode_lock
*fetch_share_mode_unlocked(TALLOC_CTX
*mem_ctx
,
659 struct fetch_share_mode_unlocked_state state
= { .mem_ctx
= mem_ctx
};
660 TDB_DATA key
= locking_key(&id
);
663 status
= dbwrap_parse_record(
664 lock_db
, key
, fetch_share_mode_unlocked_parser
, &state
);
665 if (!NT_STATUS_IS_OK(status
)) {
671 static void fetch_share_mode_done(struct tevent_req
*subreq
);
673 struct fetch_share_mode_state
{
676 struct share_mode_lock
*lck
;
677 enum dbwrap_req_state req_state
;
681 * @brief Get a share_mode_lock without locking or refcounting
683 * This can be used in a clustered Samba environment where the async dbwrap
684 * request is sent over a socket to the local ctdbd. If the send queue is full
685 * and the caller was issuing multiple async dbwrap requests in a loop, the
686 * caller knows it's probably time to stop sending requests for now and try
689 * @param[in] mem_ctx The talloc memory context to use.
691 * @param[in] ev The event context to work on.
693 * @param[in] id The file id for the locking.tdb key
695 * @param[out] queued This boolean out parameter tells the caller whether the
696 * async request is blocked in a full send queue:
698 * false := request is dispatched
700 * true := send queue is full, request waiting to be
703 * @return The new async request, NULL on error.
705 struct tevent_req
*fetch_share_mode_send(TALLOC_CTX
*mem_ctx
,
706 struct tevent_context
*ev
,
710 struct tevent_req
*req
= NULL
;
711 struct fetch_share_mode_state
*state
= NULL
;
712 struct tevent_req
*subreq
= NULL
;
716 req
= tevent_req_create(mem_ctx
, &state
,
717 struct fetch_share_mode_state
);
723 state
->key
= locking_key(&state
->id
);
724 state
->lck
= talloc_zero(state
, struct share_mode_lock
);
725 if (tevent_req_nomem(state
->lck
, req
)) {
726 return tevent_req_post(req
, ev
);
729 subreq
= dbwrap_parse_record_send(state
,
733 fetch_share_mode_unlocked_parser
,
736 if (tevent_req_nomem(subreq
, req
)) {
737 return tevent_req_post(req
, ev
);
739 tevent_req_set_callback(subreq
, fetch_share_mode_done
, req
);
741 if (state
->req_state
< DBWRAP_REQ_DISPATCHED
) {
747 static void fetch_share_mode_done(struct tevent_req
*subreq
)
749 struct tevent_req
*req
= tevent_req_callback_data(
750 subreq
, struct tevent_req
);
753 status
= dbwrap_parse_record_recv(subreq
);
755 if (tevent_req_nterror(req
, status
)) {
759 tevent_req_done(req
);
763 NTSTATUS
fetch_share_mode_recv(struct tevent_req
*req
,
765 struct share_mode_lock
**_lck
)
767 struct fetch_share_mode_state
*state
= tevent_req_data(
768 req
, struct fetch_share_mode_state
);
769 struct share_mode_lock
*lck
= NULL
;
773 if (tevent_req_is_nterror(req
, &status
)) {
774 tevent_req_received(req
);
778 if (state
->lck
->data
== NULL
) {
779 tevent_req_received(req
);
780 return NT_STATUS_NOT_FOUND
;
783 lck
= talloc_move(mem_ctx
, &state
->lck
);
785 if (DEBUGLEVEL
>= 10) {
786 DBG_DEBUG("share_mode_data:\n");
787 NDR_PRINT_DEBUG(share_mode_data
, lck
->data
);
791 tevent_req_received(req
);
795 struct share_mode_forall_state
{
796 int (*fn
)(struct file_id fid
, const struct share_mode_data
*data
,
801 static int share_mode_traverse_fn(struct db_record
*rec
, void *_state
)
803 struct share_mode_forall_state
*state
=
804 (struct share_mode_forall_state
*)_state
;
809 enum ndr_err_code ndr_err
;
810 struct share_mode_data
*d
;
814 key
= dbwrap_record_get_key(rec
);
815 value
= dbwrap_record_get_value(rec
);
817 /* Ensure this is a locking_key record. */
818 if (key
.dsize
!= sizeof(fid
)) {
821 memcpy(&fid
, key
.dptr
, sizeof(fid
));
823 d
= talloc(talloc_tos(), struct share_mode_data
);
828 blob
.data
= value
.dptr
;
829 blob
.length
= value
.dsize
;
831 ndr_err
= ndr_pull_struct_blob_all(
832 &blob
, d
, d
, (ndr_pull_flags_fn_t
)ndr_pull_share_mode_data
);
833 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
834 DEBUG(1, ("ndr_pull_share_mode_lock failed\n"));
838 for (i
=0; i
<d
->num_share_modes
; i
++) {
839 struct share_mode_entry
*entry
= &d
->share_modes
[i
];
840 entry
->stale
= false; /* [skip] in idl */
841 entry
->lease
= &d
->leases
[entry
->lease_idx
];
844 if (DEBUGLEVEL
> 10) {
845 DEBUG(11, ("parse_share_modes:\n"));
846 NDR_PRINT_DEBUG(share_mode_data
, d
);
849 ret
= state
->fn(fid
, d
, state
->private_data
);
855 int share_mode_forall(int (*fn
)(struct file_id fid
,
856 const struct share_mode_data
*data
,
860 struct share_mode_forall_state state
= {
862 .private_data
= private_data
867 if (lock_db
== NULL
) {
871 status
= dbwrap_traverse_read(lock_db
, share_mode_traverse_fn
,
873 if (!NT_STATUS_IS_OK(status
)) {
880 struct share_entry_forall_state
{
881 int (*fn
)(const struct share_mode_entry
*e
,
882 const char *service_path
,
883 const char *base_name
,
884 const char *stream_name
,
889 static int share_entry_traverse_fn(struct file_id fid
,
890 const struct share_mode_data
*data
,
893 struct share_entry_forall_state
*state
= private_data
;
896 for (i
=0; i
<data
->num_share_modes
; i
++) {
899 ret
= state
->fn(&data
->share_modes
[i
],
903 state
->private_data
);
912 /*******************************************************************
913 Call the specified function on each entry under management by the
915 ********************************************************************/
917 int share_entry_forall(int (*fn
)(const struct share_mode_entry
*,
918 const char *, const char *,
919 const char *, void *),
922 struct share_entry_forall_state state
= {
923 .fn
= fn
, .private_data
= private_data
};
925 return share_mode_forall(share_entry_traverse_fn
, &state
);
928 bool share_mode_cleanup_disconnected(struct file_id fid
,
929 uint64_t open_persistent_id
)
932 TALLOC_CTX
*frame
= talloc_stackframe();
934 struct share_mode_data
*data
;
935 struct share_mode_lock
*lck
;
938 lck
= get_existing_share_mode_lock(frame
, fid
);
940 DEBUG(5, ("share_mode_cleanup_disconnected: "
941 "Could not fetch share mode entry for %s\n",
942 file_id_string(frame
, &fid
)));
947 for (n
=0; n
< data
->num_share_modes
; n
++) {
948 struct share_mode_entry
*entry
= &data
->share_modes
[n
];
950 if (!server_id_is_disconnected(&entry
->pid
)) {
951 struct server_id_buf tmp
;
952 DEBUG(5, ("share_mode_cleanup_disconnected: "
953 "file (file-id='%s', servicepath='%s', "
954 "base_name='%s%s%s') "
955 "is used by server %s ==> do not cleanup\n",
956 file_id_string(frame
, &fid
),
959 (data
->stream_name
== NULL
)
960 ? "" : "', stream_name='",
961 (data
->stream_name
== NULL
)
962 ? "" : data
->stream_name
,
963 server_id_str_buf(entry
->pid
, &tmp
)));
966 if (open_persistent_id
!= entry
->share_file_id
) {
967 DEBUG(5, ("share_mode_cleanup_disconnected: "
969 "(file-id='%s', servicepath='%s', "
970 "base_name='%s%s%s') "
971 "has share_file_id %llu but expected %llu"
972 "==> do not cleanup\n",
973 file_id_string(frame
, &fid
),
976 (data
->stream_name
== NULL
)
977 ? "" : "', stream_name='",
978 (data
->stream_name
== NULL
)
979 ? "" : data
->stream_name
,
980 (unsigned long long)entry
->share_file_id
,
981 (unsigned long long)open_persistent_id
));
986 for (n
=0; n
< data
->num_leases
; n
++) {
987 struct share_mode_lease
*l
= &data
->leases
[n
];
990 status
= leases_db_del(&l
->client_guid
, &l
->lease_key
, &fid
);
992 DEBUG(10, ("%s: leases_db_del returned %s\n", __func__
,
996 ok
= brl_cleanup_disconnected(fid
, open_persistent_id
);
998 DEBUG(10, ("share_mode_cleanup_disconnected: "
999 "failed to clean up byte range locks associated "
1000 "with file (file-id='%s', servicepath='%s', "
1001 "base_name='%s%s%s') and open_persistent_id %llu "
1002 "==> do not cleanup\n",
1003 file_id_string(frame
, &fid
),
1006 (data
->stream_name
== NULL
)
1007 ? "" : "', stream_name='",
1008 (data
->stream_name
== NULL
)
1009 ? "" : data
->stream_name
,
1010 (unsigned long long)open_persistent_id
));
1014 DEBUG(10, ("share_mode_cleanup_disconnected: "
1015 "cleaning up %u entries for file "
1016 "(file-id='%s', servicepath='%s', "
1017 "base_name='%s%s%s') "
1018 "from open_persistent_id %llu\n",
1019 data
->num_share_modes
,
1020 file_id_string(frame
, &fid
),
1023 (data
->stream_name
== NULL
)
1024 ? "" : "', stream_name='",
1025 (data
->stream_name
== NULL
)
1026 ? "" : data
->stream_name
,
1027 (unsigned long long)open_persistent_id
));
1029 data
->num_share_modes
= 0;
1030 data
->num_leases
= 0;
1031 data
->modified
= true;