s4:samba_kcc: Use 'dburl' passed from command line rather than lp.samdb_url()
[Samba.git] / source3 / locking / share_mode_lock.c
blob5e25404426f5ae31c10bdea6da45e69d07ef8cb1
1 /*
2 Unix SMB/CIFS implementation.
3 Locking functions
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/>.
21 Revision History:
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
30 support.
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.
38 #include "includes.h"
39 #include "system/filesys.h"
40 #include "locking/proto.h"
41 #include "smbd/globals.h"
42 #include "dbwrap/dbwrap.h"
43 #include "dbwrap/dbwrap_open.h"
44 #include "../libcli/security/security.h"
45 #include "serverid.h"
46 #include "messages.h"
47 #include "util_tdb.h"
48 #include "../librpc/gen_ndr/ndr_open_files.h"
49 #include "source3/lib/dbwrap/dbwrap_watch.h"
51 #undef DBGC_CLASS
52 #define DBGC_CLASS DBGC_LOCKING
54 #define NO_LOCKING_COUNT (-1)
56 /* the locking database handle */
57 static struct db_context *lock_db;
59 static bool locking_init_internal(bool read_only)
61 brl_init(read_only);
63 if (lock_db)
64 return True;
66 lock_db = db_open(NULL, lock_path("locking.tdb"),
67 SMB_OPEN_DATABASE_TDB_HASH_SIZE,
68 TDB_DEFAULT|TDB_VOLATILE|TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH,
69 read_only?O_RDONLY:O_RDWR|O_CREAT, 0644,
70 DBWRAP_LOCK_ORDER_1, DBWRAP_FLAG_NONE);
72 if (!lock_db) {
73 DEBUG(0,("ERROR: Failed to initialise locking database\n"));
74 return False;
77 if (!posix_locking_init(read_only))
78 return False;
80 dbwrap_watch_db(lock_db, server_messaging_context());
82 return True;
85 bool locking_init(void)
87 return locking_init_internal(false);
90 bool locking_init_readonly(void)
92 return locking_init_internal(true);
95 /*******************************************************************
96 Deinitialize the share_mode management.
97 ******************************************************************/
99 bool locking_end(void)
101 brl_shutdown();
102 TALLOC_FREE(lock_db);
103 return true;
106 /*******************************************************************
107 Form a static locking key for a dev/inode pair.
108 ******************************************************************/
110 static TDB_DATA locking_key(const struct file_id *id)
112 return make_tdb_data((const uint8_t *)id, sizeof(*id));
115 /*******************************************************************
116 Get all share mode entries for a dev/inode pair.
117 ********************************************************************/
119 static struct share_mode_data *parse_share_modes(TALLOC_CTX *mem_ctx,
120 const TDB_DATA dbuf)
122 struct share_mode_data *d;
123 enum ndr_err_code ndr_err;
124 uint32_t i;
125 DATA_BLOB blob;
127 d = talloc(mem_ctx, struct share_mode_data);
128 if (d == NULL) {
129 DEBUG(0, ("talloc failed\n"));
130 goto fail;
133 blob.data = dbuf.dptr;
134 blob.length = dbuf.dsize;
136 ndr_err = ndr_pull_struct_blob(
137 &blob, d, d, (ndr_pull_flags_fn_t)ndr_pull_share_mode_data);
138 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
139 DEBUG(1, ("ndr_pull_share_mode_lock failed: %s\n",
140 ndr_errstr(ndr_err)));
141 goto fail;
145 * Initialize the values that are [skip] in the idl. The NDR code does
146 * not initialize them.
149 for (i=0; i<d->num_share_modes; i++) {
150 d->share_modes[i].stale = false;
152 d->modified = false;
153 d->fresh = false;
155 if (DEBUGLEVEL >= 10) {
156 DEBUG(10, ("parse_share_modes:\n"));
157 NDR_PRINT_DEBUG(share_mode_data, d);
160 return d;
161 fail:
162 TALLOC_FREE(d);
163 return NULL;
166 /*******************************************************************
167 Create a storable data blob from a modified share_mode_data struct.
168 ********************************************************************/
170 static TDB_DATA unparse_share_modes(struct share_mode_data *d)
172 DATA_BLOB blob;
173 enum ndr_err_code ndr_err;
175 if (DEBUGLEVEL >= 10) {
176 DEBUG(10, ("unparse_share_modes:\n"));
177 NDR_PRINT_DEBUG(share_mode_data, d);
180 remove_stale_share_mode_entries(d);
182 if (d->num_share_modes == 0) {
183 DEBUG(10, ("No used share mode found\n"));
184 return make_tdb_data(NULL, 0);
187 ndr_err = ndr_push_struct_blob(
188 &blob, d, d, (ndr_push_flags_fn_t)ndr_push_share_mode_data);
189 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
190 smb_panic("ndr_push_share_mode_lock failed");
193 return make_tdb_data(blob.data, blob.length);
196 /*******************************************************************
197 If modified, store the share_mode_data back into the database.
198 ********************************************************************/
200 static int share_mode_data_destructor(struct share_mode_data *d)
202 NTSTATUS status;
203 TDB_DATA data;
205 if (!d->modified) {
206 return 0;
209 data = unparse_share_modes(d);
211 if (data.dptr == NULL) {
212 if (!d->fresh) {
213 /* There has been an entry before, delete it */
215 status = dbwrap_record_delete(d->record);
216 if (!NT_STATUS_IS_OK(status)) {
217 char *errmsg;
219 DEBUG(0, ("delete_rec returned %s\n",
220 nt_errstr(status)));
222 if (asprintf(&errmsg, "could not delete share "
223 "entry: %s\n",
224 nt_errstr(status)) == -1) {
225 smb_panic("could not delete share"
226 "entry");
228 smb_panic(errmsg);
231 goto done;
234 status = dbwrap_record_store(d->record, data, TDB_REPLACE);
235 if (!NT_STATUS_IS_OK(status)) {
236 char *errmsg;
238 DEBUG(0, ("store returned %s\n", nt_errstr(status)));
240 if (asprintf(&errmsg, "could not store share mode entry: %s",
241 nt_errstr(status)) == -1) {
242 smb_panic("could not store share mode entry");
244 smb_panic(errmsg);
247 done:
249 return 0;
252 /*******************************************************************
253 Allocate a new share_mode_data struct, mark it unmodified.
254 fresh is set to note that currently there is no database entry.
255 ********************************************************************/
257 static struct share_mode_data *fresh_share_mode_lock(
258 TALLOC_CTX *mem_ctx, const char *servicepath,
259 const struct smb_filename *smb_fname,
260 const struct timespec *old_write_time)
262 struct share_mode_data *d;
264 if ((servicepath == NULL) || (smb_fname == NULL) ||
265 (old_write_time == NULL)) {
266 return NULL;
269 d = talloc_zero(mem_ctx, struct share_mode_data);
270 if (d == NULL) {
271 goto fail;
273 d->base_name = talloc_strdup(d, smb_fname->base_name);
274 if (d->base_name == NULL) {
275 goto fail;
277 if (smb_fname->stream_name != NULL) {
278 d->stream_name = talloc_strdup(d, smb_fname->stream_name);
279 if (d->stream_name == NULL) {
280 goto fail;
283 d->servicepath = talloc_strdup(d, servicepath);
284 if (d->servicepath == NULL) {
285 goto fail;
287 d->old_write_time = *old_write_time;
288 d->modified = false;
289 d->fresh = true;
290 return d;
291 fail:
292 DEBUG(0, ("talloc failed\n"));
293 TALLOC_FREE(d);
294 return NULL;
297 /*******************************************************************
298 Either fetch a share mode from the database, or allocate a fresh
299 one if the record doesn't exist.
300 ********************************************************************/
302 static struct share_mode_lock *get_share_mode_lock_internal(
303 TALLOC_CTX *mem_ctx, struct file_id id,
304 const char *servicepath, const struct smb_filename *smb_fname,
305 const struct timespec *old_write_time)
307 struct share_mode_lock *lck;
308 struct share_mode_data *d;
309 struct db_record *rec;
310 TDB_DATA key = locking_key(&id);
311 TDB_DATA value;
313 rec = dbwrap_fetch_locked(lock_db, mem_ctx, key);
314 if (rec == NULL) {
315 DEBUG(3, ("Could not lock share entry\n"));
316 return NULL;
319 value = dbwrap_record_get_value(rec);
321 if (value.dptr == NULL) {
322 d = fresh_share_mode_lock(mem_ctx, servicepath, smb_fname,
323 old_write_time);
324 } else {
325 d = parse_share_modes(mem_ctx, value);
328 if (d == NULL) {
329 DEBUG(5, ("get_share_mode_lock_internal: "
330 "Could not get share mode lock\n"));
331 TALLOC_FREE(rec);
332 return NULL;
334 d->record = talloc_move(d, &rec);
335 talloc_set_destructor(d, share_mode_data_destructor);
337 lck = talloc(mem_ctx, struct share_mode_lock);
338 if (lck == NULL) {
339 DEBUG(1, ("talloc failed\n"));
340 TALLOC_FREE(d);
341 return NULL;
343 lck->data = talloc_move(lck, &d);
344 return lck;
348 * We can only ever have one share mode locked. Users of
349 * get_share_mode_lock never see this, it will be refcounted by
350 * talloc_reference.
352 static struct share_mode_lock *the_lock;
353 static struct file_id the_lock_id;
355 static int the_lock_destructor(struct share_mode_lock *l)
357 the_lock = NULL;
358 ZERO_STRUCT(the_lock_id);
359 return 0;
362 /*******************************************************************
363 Get a share_mode_lock, Reference counted to allow nested calls.
364 ********************************************************************/
366 struct share_mode_lock *get_share_mode_lock(
367 TALLOC_CTX *mem_ctx,
368 struct file_id id,
369 const char *servicepath,
370 const struct smb_filename *smb_fname,
371 const struct timespec *old_write_time)
373 struct share_mode_lock *lck;
375 lck = talloc(mem_ctx, struct share_mode_lock);
376 if (lck == NULL) {
377 DEBUG(1, ("talloc failed\n"));
378 return NULL;
381 if (the_lock == NULL) {
382 the_lock = get_share_mode_lock_internal(
383 lck, id, servicepath, smb_fname, old_write_time);
384 if (the_lock == NULL) {
385 goto fail;
387 talloc_set_destructor(the_lock, the_lock_destructor);
388 the_lock_id = id;
389 } else {
390 if (!file_id_equal(&the_lock_id, &id)) {
391 DEBUG(1, ("Can not lock two share modes "
392 "simultaneously\n"));
393 goto fail;
395 if (talloc_reference(lck, the_lock) == NULL) {
396 DEBUG(1, ("talloc_reference failed\n"));
397 goto fail;
400 lck->data = the_lock->data;
401 return lck;
402 fail:
403 TALLOC_FREE(lck);
404 return NULL;
407 static void fetch_share_mode_unlocked_parser(
408 TDB_DATA key, TDB_DATA data, void *private_data)
410 struct share_mode_lock *lck = talloc_get_type_abort(
411 private_data, struct share_mode_lock);
413 lck->data = parse_share_modes(lck, data);
416 /*******************************************************************
417 Get a share_mode_lock without locking the database or reference
418 counting. Used by smbstatus to display existing share modes.
419 ********************************************************************/
421 struct share_mode_lock *fetch_share_mode_unlocked(TALLOC_CTX *mem_ctx,
422 struct file_id id)
424 struct share_mode_lock *lck;
425 TDB_DATA key = locking_key(&id);
426 NTSTATUS status;
428 lck = talloc(mem_ctx, struct share_mode_lock);
429 if (lck == NULL) {
430 DEBUG(0, ("talloc failed\n"));
431 return NULL;
433 status = dbwrap_parse_record(
434 lock_db, key, fetch_share_mode_unlocked_parser, lck);
435 if (!NT_STATUS_IS_OK(status) ||
436 (lck->data == NULL)) {
437 TALLOC_FREE(lck);
438 return NULL;
440 return lck;
443 struct forall_state {
444 void (*fn)(const struct share_mode_entry *entry,
445 const char *sharepath,
446 const char *fname,
447 void *private_data);
448 void *private_data;
451 static int traverse_fn(struct db_record *rec, void *_state)
453 struct forall_state *state = (struct forall_state *)_state;
454 uint32_t i;
455 TDB_DATA key;
456 TDB_DATA value;
457 DATA_BLOB blob;
458 enum ndr_err_code ndr_err;
459 struct share_mode_data *d;
461 key = dbwrap_record_get_key(rec);
462 value = dbwrap_record_get_value(rec);
464 /* Ensure this is a locking_key record. */
465 if (key.dsize != sizeof(struct file_id))
466 return 0;
468 d = talloc(talloc_tos(), struct share_mode_data);
469 if (d == NULL) {
470 return 0;
473 blob.data = value.dptr;
474 blob.length = value.dsize;
476 ndr_err = ndr_pull_struct_blob(
477 &blob, d, d, (ndr_pull_flags_fn_t)ndr_pull_share_mode_data);
478 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
479 DEBUG(1, ("ndr_pull_share_mode_lock failed\n"));
480 return 0;
482 if (DEBUGLEVEL > 10) {
483 DEBUG(11, ("parse_share_modes:\n"));
484 NDR_PRINT_DEBUG(share_mode_data, d);
486 for (i=0; i<d->num_share_modes; i++) {
487 state->fn(&d->share_modes[i],
488 d->servicepath, d->base_name,
489 state->private_data);
491 TALLOC_FREE(d);
493 return 0;
496 /*******************************************************************
497 Call the specified function on each entry under management by the
498 share mode system.
499 ********************************************************************/
501 int share_mode_forall(void (*fn)(const struct share_mode_entry *, const char *,
502 const char *, void *),
503 void *private_data)
505 struct forall_state state;
506 NTSTATUS status;
507 int count;
509 if (lock_db == NULL)
510 return 0;
512 state.fn = fn;
513 state.private_data = private_data;
515 status = dbwrap_traverse_read(lock_db, traverse_fn, (void *)&state,
516 &count);
518 if (!NT_STATUS_IS_OK(status)) {
519 return -1;
520 } else {
521 return count;
525 bool share_mode_cleanup_disconnected(struct file_id fid,
526 uint64_t open_persistent_id)
528 bool ret = false;
529 TALLOC_CTX *frame = talloc_stackframe();
530 unsigned n;
531 struct share_mode_data *data;
532 struct share_mode_lock *lck;
533 bool ok;
535 lck = get_existing_share_mode_lock(frame, fid);
536 if (lck == NULL) {
537 DEBUG(5, ("share_mode_cleanup_disconnected: "
538 "Could not fetch share mode entry for %s\n",
539 file_id_string(frame, &fid)));
540 goto done;
542 data = lck->data;
544 for (n=0; n < data->num_share_modes; n++) {
545 struct share_mode_entry *entry = &data->share_modes[n];
547 if (!server_id_is_disconnected(&entry->pid)) {
548 DEBUG(5, ("share_mode_cleanup_disconnected: "
549 "file (file-id='%s', servicepath='%s', "
550 "base_name='%s%s%s') "
551 "is used by server %s ==> do not cleanup\n",
552 file_id_string(frame, &fid),
553 data->servicepath,
554 data->base_name,
555 (data->stream_name == NULL)
556 ? "" : "', stream_name='",
557 (data->stream_name == NULL)
558 ? "" : data->stream_name,
559 server_id_str(frame, &entry->pid)));
560 goto done;
562 if (open_persistent_id != entry->share_file_id) {
563 DEBUG(5, ("share_mode_cleanup_disconnected: "
564 "entry for file "
565 "(file-id='%s', servicepath='%s', "
566 "base_name='%s%s%s') "
567 "has share_file_id %llu but expected %llu"
568 "==> do not cleanup\n",
569 file_id_string(frame, &fid),
570 data->servicepath,
571 data->base_name,
572 (data->stream_name == NULL)
573 ? "" : "', stream_name='",
574 (data->stream_name == NULL)
575 ? "" : data->stream_name,
576 (unsigned long long)entry->share_file_id,
577 (unsigned long long)open_persistent_id));
578 goto done;
582 ok = brl_cleanup_disconnected(fid, open_persistent_id);
583 if (!ok) {
584 DEBUG(10, ("share_mode_cleanup_disconnected: "
585 "failed to clean up byte range locks associated "
586 "with file (file-id='%s', servicepath='%s', "
587 "base_name='%s%s%s') and open_persistent_id %llu "
588 "==> do not cleanup\n",
589 file_id_string(frame, &fid),
590 data->servicepath,
591 data->base_name,
592 (data->stream_name == NULL)
593 ? "" : "', stream_name='",
594 (data->stream_name == NULL)
595 ? "" : data->stream_name,
596 (unsigned long long)open_persistent_id));
597 goto done;
600 DEBUG(10, ("share_mode_cleanup_disconnected: "
601 "cleaning up %u entries for file "
602 "(file-id='%s', servicepath='%s', "
603 "base_name='%s%s%s') "
604 "from open_persistent_id %llu\n",
605 data->num_share_modes,
606 file_id_string(frame, &fid),
607 data->servicepath,
608 data->base_name,
609 (data->stream_name == NULL)
610 ? "" : "', stream_name='",
611 (data->stream_name == NULL)
612 ? "" : data->stream_name,
613 (unsigned long long)open_persistent_id));
615 data->num_share_modes = 0;
616 data->modified = true;
618 ret = true;
619 done:
620 talloc_free(frame);
621 return ret;