2 Unix SMB/CIFS implementation.
4 trivial database library
6 Copyright (C) Andrew Tridgell 1999-2005
7 Copyright (C) Paul `Rusty' Russell 2000
8 Copyright (C) Jeremy Allison 2000-2003
10 ** NOTE! The following LGPL license applies to the tdb
11 ** library. This does NOT imply that all of Samba is released
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 3 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 #include "tdb_private.h"
30 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
31 static struct tdb_context
*tdbs
= NULL
;
33 /* We use two hashes to double-check they're using the right hash function. */
34 void tdb_header_hash(struct tdb_context
*tdb
,
35 uint32_t *magic1_hash
, uint32_t *magic2_hash
)
38 uint32_t tdb_magic
= TDB_MAGIC
;
40 hash_key
.dptr
= discard_const_p(unsigned char, TDB_MAGIC_FOOD
);
41 hash_key
.dsize
= sizeof(TDB_MAGIC_FOOD
);
42 *magic1_hash
= tdb
->hash_fn(&hash_key
);
44 hash_key
.dptr
= (unsigned char *)CONVERT(tdb_magic
);
45 hash_key
.dsize
= sizeof(tdb_magic
);
46 *magic2_hash
= tdb
->hash_fn(&hash_key
);
48 /* Make sure at least one hash is non-zero! */
49 if (*magic1_hash
== 0 && *magic2_hash
== 0)
53 /* initialise a new database with a specified hash size */
54 static int tdb_new_database(struct tdb_context
*tdb
, struct tdb_header
*header
,
57 struct tdb_header
*newdb
;
61 /* We make it up in memory, then write it out if not internal */
62 size
= sizeof(struct tdb_header
) + (hash_size
+1)*sizeof(tdb_off_t
);
63 if (!(newdb
= (struct tdb_header
*)calloc(size
, 1))) {
64 tdb
->ecode
= TDB_ERR_OOM
;
68 /* Fill in the header */
69 newdb
->version
= TDB_VERSION
;
70 newdb
->hash_size
= hash_size
;
72 tdb_header_hash(tdb
, &newdb
->magic1_hash
, &newdb
->magic2_hash
);
74 /* Make sure older tdbs (which don't check the magic hash fields)
75 * will refuse to open this TDB. */
76 if (tdb
->flags
& TDB_INCOMPATIBLE_HASH
)
77 newdb
->rwlocks
= TDB_HASH_RWLOCK_MAGIC
;
80 * We create a tdb with TDB_FEATURE_FLAG_MUTEX support,
81 * the flag combination and runtime feature checks
82 * are done by the caller already.
84 if (tdb
->flags
& TDB_MUTEX_LOCKING
) {
85 newdb
->feature_flags
|= TDB_FEATURE_FLAG_MUTEX
;
89 * If we have any features we add the FEATURE_FLAG_MAGIC, overwriting the
90 * TDB_HASH_RWLOCK_MAGIC above.
92 if (newdb
->feature_flags
!= 0) {
93 newdb
->rwlocks
= TDB_FEATURE_FLAG_MAGIC
;
97 * It's required for some following code paths
98 * to have the fields on 'tdb' up-to-date.
100 * E.g. tdb_mutex_size() requires it
102 tdb
->feature_flags
= newdb
->feature_flags
;
103 tdb
->hash_size
= newdb
->hash_size
;
105 if (tdb
->flags
& TDB_INTERNAL
) {
106 tdb
->map_size
= size
;
107 tdb
->map_ptr
= (char *)newdb
;
108 memcpy(header
, newdb
, sizeof(*header
));
109 /* Convert the `ondisk' version if asked. */
113 if (lseek(tdb
->fd
, 0, SEEK_SET
) == -1)
116 if (ftruncate(tdb
->fd
, 0) == -1)
119 if (newdb
->feature_flags
& TDB_FEATURE_FLAG_MUTEX
) {
120 newdb
->mutex_size
= tdb_mutex_size(tdb
);
121 tdb
->hdr_ofs
= newdb
->mutex_size
;
124 /* This creates an endian-converted header, as if read from disk */
126 memcpy(header
, newdb
, sizeof(*header
));
127 /* Don't endian-convert the magic food! */
128 memcpy(newdb
->magic_food
, TDB_MAGIC_FOOD
, strlen(TDB_MAGIC_FOOD
)+1);
130 if (!tdb_write_all(tdb
->fd
, newdb
, size
))
133 if (newdb
->feature_flags
& TDB_FEATURE_FLAG_MUTEX
) {
136 * Now we init the mutex area
137 * followed by a second header.
142 newdb
->mutex_size
+ sizeof(struct tdb_header
));
146 ret
= tdb_mutex_init(tdb
);
152 * Write a second header behind the mutexes. That's the area
153 * that will be mmapp'ed.
155 ret
= lseek(tdb
->fd
, newdb
->mutex_size
, SEEK_SET
);
159 if (!tdb_write_all(tdb
->fd
, newdb
, size
)) {
172 static int tdb_already_open(dev_t device
,
175 struct tdb_context
*i
;
177 for (i
= tdbs
; i
; i
= i
->next
) {
178 if (i
->device
== device
&& i
->inode
== ino
) {
186 /* open the database, creating it if necessary
188 The open_flags and mode are passed straight to the open call on the
189 database file. A flags value of O_WRONLY is invalid. The hash size
190 is advisory, use zero for a default value.
192 Return is NULL on error, in which case errno is also set. Don't
193 try to call tdb_error or tdb_errname, just do strerror(errno).
195 @param name may be NULL for internal databases. */
196 _PUBLIC_
struct tdb_context
*tdb_open(const char *name
, int hash_size
, int tdb_flags
,
197 int open_flags
, mode_t mode
)
199 return tdb_open_ex(name
, hash_size
, tdb_flags
, open_flags
, mode
, NULL
, NULL
);
202 /* a default logging function */
203 static void null_log_fn(struct tdb_context
*tdb
, enum tdb_debug_level level
, const char *fmt
, ...) PRINTF_ATTRIBUTE(3, 4);
204 static void null_log_fn(struct tdb_context
*tdb
, enum tdb_debug_level level
, const char *fmt
, ...)
208 static bool check_header_hash(struct tdb_context
*tdb
,
209 struct tdb_header
*header
,
210 bool default_hash
, uint32_t *m1
, uint32_t *m2
)
212 tdb_header_hash(tdb
, m1
, m2
);
213 if (header
->magic1_hash
== *m1
&&
214 header
->magic2_hash
== *m2
) {
218 /* If they explicitly set a hash, always respect it. */
222 /* Otherwise, try the other inbuilt hash. */
223 if (tdb
->hash_fn
== tdb_old_hash
)
224 tdb
->hash_fn
= tdb_jenkins_hash
;
226 tdb
->hash_fn
= tdb_old_hash
;
227 return check_header_hash(tdb
, header
, false, m1
, m2
);
230 static bool tdb_mutex_open_ok(struct tdb_context
*tdb
,
231 const struct tdb_header
*header
)
233 if (tdb
->flags
& TDB_NOLOCK
) {
235 * We don't look at locks, so it does not matter to have a
236 * compatible mutex implementation. Allow the open.
241 if (!(tdb
->flags
& TDB_MUTEX_LOCKING
)) {
242 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_mutex_open_ok[%s]: "
243 "Can use mutexes only with "
244 "MUTEX_LOCKING or NOLOCK\n",
249 if (tdb_mutex_size(tdb
) != header
->mutex_size
) {
250 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_mutex_open_ok[%s]: "
251 "Mutex size changed from %"PRIu32
" to %zu\n.",
254 tdb_mutex_size(tdb
)));
261 _PUBLIC_
struct tdb_context
*tdb_open_ex(const char *name
, int hash_size
, int tdb_flags
,
262 int open_flags
, mode_t mode
,
263 const struct tdb_logging_context
*log_ctx
,
264 tdb_hash_func hash_fn
)
266 int orig_errno
= errno
;
267 struct tdb_header header
= {
270 struct tdb_context
*tdb
;
277 const char *hash_alg
;
278 uint32_t magic1
, magic2
;
281 if (!(tdb
= (struct tdb_context
*)calloc(1, sizeof *tdb
))) {
288 if (tdb_flags
& TDB_INTERNAL
) {
289 tdb_flags
|= TDB_INCOMPATIBLE_HASH
;
291 if (tdb_flags
& TDB_MUTEX_LOCKING
) {
292 tdb_flags
|= TDB_INCOMPATIBLE_HASH
;
301 tdb
->flags
= tdb_flags
;
302 tdb
->open_flags
= open_flags
;
306 tdb
->log
.log_fn
= null_log_fn
;
307 tdb
->log
.log_private
= NULL
;
310 if (name
== NULL
&& (tdb_flags
& TDB_INTERNAL
)) {
311 name
= "__TDB_INTERNAL__";
315 tdb
->name
= discard_const_p(char, "__NULL__");
316 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: called with name == NULL\n"));
322 /* now make a copy of the name, as the caller memory might go away */
323 if (!(tdb
->name
= (char *)strdup(name
))) {
325 * set the name as the given string, so that tdb_name() will
326 * work in case of an error.
328 tdb
->name
= discard_const_p(char, name
);
329 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: can't strdup(%s)\n",
337 tdb
->hash_fn
= hash_fn
;
338 hash_alg
= "the user defined";
340 /* This controls what we use when creating a tdb. */
341 if (tdb
->flags
& TDB_INCOMPATIBLE_HASH
) {
342 tdb
->hash_fn
= tdb_jenkins_hash
;
344 tdb
->hash_fn
= tdb_old_hash
;
346 hash_alg
= "either default";
349 /* cache the page size */
350 tdb
->page_size
= getpagesize();
351 if (tdb
->page_size
<= 0) {
352 tdb
->page_size
= 0x2000;
355 tdb
->max_dead_records
= (tdb_flags
& TDB_VOLATILE
) ? 5 : 0;
357 if ((open_flags
& O_ACCMODE
) == O_WRONLY
) {
358 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: can't open tdb %s write-only\n",
365 hash_size
= DEFAULT_HASH_SIZE
;
366 if ((open_flags
& O_ACCMODE
) == O_RDONLY
) {
368 /* read only databases don't do locking or clear if first */
369 tdb
->flags
|= TDB_NOLOCK
;
370 tdb
->flags
&= ~(TDB_CLEAR_IF_FIRST
|TDB_MUTEX_LOCKING
);
373 if ((tdb
->flags
& TDB_ALLOW_NESTING
) &&
374 (tdb
->flags
& TDB_DISALLOW_NESTING
)) {
375 tdb
->ecode
= TDB_ERR_NESTING
;
376 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
377 "allow_nesting and disallow_nesting are not allowed together!"));
382 if (tdb
->flags
& TDB_MUTEX_LOCKING
) {
384 * Here we catch bugs in the callers,
385 * the runtime check for existing tdb's comes later.
388 if (tdb
->flags
& TDB_INTERNAL
) {
389 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
390 "invalid flags for %s - TDB_MUTEX_LOCKING and "
391 "TDB_INTERNAL are not allowed together\n", name
));
396 if (tdb
->flags
& TDB_NOMMAP
) {
397 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
398 "invalid flags for %s - TDB_MUTEX_LOCKING and "
399 "TDB_NOMMAP are not allowed together\n", name
));
404 if (tdb
->read_only
) {
405 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
406 "invalid flags for %s - TDB_MUTEX_LOCKING "
407 "not allowed read only\n", name
));
413 * The callers should have called
414 * tdb_runtime_check_for_robust_mutexes()
415 * before using TDB_MUTEX_LOCKING!
417 * This makes sure the caller understands
418 * that the locking may behave a bit differently
419 * than with pure fcntl locking. E.g. multiple
420 * read locks are not supported.
422 if (!tdb_runtime_check_for_robust_mutexes()) {
423 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
424 "invalid flags for %s - TDB_MUTEX_LOCKING "
425 "requires support for robust_mutexes\n",
432 if (getenv("TDB_NO_FSYNC")) {
433 tdb
->flags
|= TDB_NOSYNC
;
437 * TDB_ALLOW_NESTING is the default behavior.
438 * Note: this may change in future versions!
440 if (!(tdb
->flags
& TDB_DISALLOW_NESTING
)) {
441 tdb
->flags
|= TDB_ALLOW_NESTING
;
444 /* internal databases don't mmap or lock, and start off cleared */
445 if (tdb
->flags
& TDB_INTERNAL
) {
446 tdb
->flags
|= (TDB_NOLOCK
| TDB_NOMMAP
);
447 tdb
->flags
&= ~TDB_CLEAR_IF_FIRST
;
448 if (tdb_new_database(tdb
, &header
, hash_size
) != 0) {
449 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: tdb_new_database failed!"));
452 tdb
->hash_size
= hash_size
;
456 if ((tdb
->fd
= open(name
, open_flags
, mode
)) == -1) {
457 TDB_LOG((tdb
, TDB_DEBUG_WARNING
, "tdb_open_ex: could not open file %s: %s\n",
458 name
, strerror(errno
)));
459 goto fail
; /* errno set by open(2) */
462 /* on exec, don't inherit the fd */
463 v
= fcntl(tdb
->fd
, F_GETFD
, 0);
464 fcntl(tdb
->fd
, F_SETFD
, v
| FD_CLOEXEC
);
466 /* ensure there is only one process initialising at once */
467 if (tdb_nest_lock(tdb
, OPEN_LOCK
, F_WRLCK
, TDB_LOCK_WAIT
) == -1) {
468 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: failed to get open lock on %s: %s\n",
469 name
, strerror(errno
)));
470 goto fail
; /* errno set by tdb_brlock */
473 /* we need to zero database if we are the only one with it open */
474 if ((tdb_flags
& TDB_CLEAR_IF_FIRST
) &&
476 ret
= tdb_nest_lock(tdb
, ACTIVE_LOCK
, F_WRLCK
,
477 TDB_LOCK_NOWAIT
|TDB_LOCK_PROBE
);
481 ret
= tdb_brlock(tdb
, F_WRLCK
, FREELIST_TOP
, 0,
484 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
485 "tdb_brlock failed for %s: %s\n",
486 name
, strerror(errno
)));
489 ret
= tdb_new_database(tdb
, &header
, hash_size
);
491 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
492 "tdb_new_database failed for "
493 "%s: %s\n", name
, strerror(errno
)));
497 ret
= tdb_brunlock(tdb
, F_WRLCK
, FREELIST_TOP
, 0);
499 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
500 "tdb_unlockall failed for %s: %s\n",
501 name
, strerror(errno
)));
504 ret
= lseek(tdb
->fd
, 0, SEEK_SET
);
506 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
507 "lseek failed for %s: %s\n",
508 name
, strerror(errno
)));
515 if (read(tdb
->fd
, &header
, sizeof(header
)) != sizeof(header
)
516 || strcmp(header
.magic_food
, TDB_MAGIC_FOOD
) != 0) {
517 if (!(open_flags
& O_CREAT
) ||
518 tdb_new_database(tdb
, &header
, hash_size
) == -1) {
520 errno
= EIO
; /* ie bad format or something */
524 rev
= (tdb
->flags
& TDB_CONVERT
);
525 } else if (header
.version
!= TDB_VERSION
526 && !(rev
= (header
.version
==TDB_BYTEREV(TDB_VERSION
)))) {
531 vp
= (unsigned char *)&header
.version
;
532 vertest
= (((uint32_t)vp
[0]) << 24) | (((uint32_t)vp
[1]) << 16) |
533 (((uint32_t)vp
[2]) << 8) | (uint32_t)vp
[3];
534 tdb
->flags
|= (vertest
==TDB_VERSION
) ? TDB_BIGENDIAN
: 0;
536 tdb
->flags
&= ~TDB_CONVERT
;
538 tdb
->flags
|= TDB_CONVERT
;
539 tdb_convert(&header
, sizeof(header
));
543 * We only use st.st_dev and st.st_ino from the raw fstat()
544 * call, everything else needs to use tdb_fstat() in order
545 * to skip tdb->hdr_ofs!
547 if (fstat(tdb
->fd
, &st
) == -1) {
550 tdb
->device
= st
.st_dev
;
551 tdb
->inode
= st
.st_ino
;
554 if (header
.rwlocks
!= 0 &&
555 header
.rwlocks
!= TDB_FEATURE_FLAG_MAGIC
&&
556 header
.rwlocks
!= TDB_HASH_RWLOCK_MAGIC
) {
557 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: spinlocks no longer supported\n"));
562 if (header
.hash_size
== 0) {
563 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: invalid database: 0 hash_size\n"));
568 tdb
->hash_size
= header
.hash_size
;
570 if (header
.rwlocks
== TDB_FEATURE_FLAG_MAGIC
) {
571 tdb
->feature_flags
= header
.feature_flags
;
574 if (tdb
->feature_flags
& ~TDB_SUPPORTED_FEATURE_FLAGS
) {
575 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: unsupported "
576 "features in tdb %s: 0x%08x (supported: 0x%08x)\n",
577 name
, (unsigned)tdb
->feature_flags
,
578 (unsigned)TDB_SUPPORTED_FEATURE_FLAGS
));
583 if (tdb
->feature_flags
& TDB_FEATURE_FLAG_MUTEX
) {
584 if (!tdb_mutex_open_ok(tdb
, &header
)) {
590 * We need to remember the hdr_ofs
591 * also for the TDB_NOLOCK case
592 * if the current library doesn't support
595 tdb
->hdr_ofs
= header
.mutex_size
;
597 if ((!(tdb_flags
& TDB_CLEAR_IF_FIRST
)) && (!tdb
->read_only
)) {
599 * Open an existing mutexed tdb, but without
600 * CLEAR_IF_FIRST. We need to initialize the
601 * mutex array and keep the CLEAR_IF_FIRST
604 ret
= tdb_nest_lock(tdb
, ACTIVE_LOCK
, F_WRLCK
,
605 TDB_LOCK_NOWAIT
|TDB_LOCK_PROBE
);
609 ret
= tdb_mutex_init(tdb
);
613 "tdb_open_ex: tdb_mutex_init "
614 "failed for ""%s: %s\n",
615 name
, strerror(errno
)));
622 if ((header
.magic1_hash
== 0) && (header
.magic2_hash
== 0)) {
623 /* older TDB without magic hash references */
624 tdb
->hash_fn
= tdb_old_hash
;
625 } else if (!check_header_hash(tdb
, &header
, !hash_fn
,
627 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
628 "%s was not created with %s hash function we are using\n"
629 "magic1_hash[0x%08X %s 0x%08X] "
630 "magic2_hash[0x%08X %s 0x%08X]\n",
633 (header
.magic1_hash
== magic1
) ? "==" : "!=",
636 (header
.magic2_hash
== magic2
) ? "==" : "!=",
642 /* Is it already in the open list? If so, fail. */
643 if (tdb_already_open(tdb
->device
, tdb
->inode
)) {
644 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
645 "%s (%d,%d) is already open in this process\n",
646 name
, (int)tdb
->device
, (int)tdb
->inode
));
652 * We had tdb_mmap(tdb) here before,
653 * but we need to use tdb_fstat(),
654 * which is triggered from tdb_oob() before calling tdb_mmap().
655 * As this skips tdb->hdr_ofs.
658 ret
= tdb_oob(tdb
, 0, 1, 0);
664 if (tdb
->feature_flags
& TDB_FEATURE_FLAG_MUTEX
) {
665 if (!(tdb
->flags
& TDB_NOLOCK
)) {
666 ret
= tdb_mutex_mmap(tdb
);
673 if (tdb
->hash_size
> UINT32_MAX
/4) {
674 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
675 "hash size %"PRIu32
" too large\n", tdb
->hash_size
));
680 ret
= tdb_oob(tdb
, FREELIST_TOP
, 4*tdb
->hash_size
, 1);
682 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_open_ex: "
683 "hash size %"PRIu32
" does not fit\n", tdb
->hash_size
));
689 if (tdb_nest_unlock(tdb
, ACTIVE_LOCK
, F_WRLCK
, false) == -1) {
690 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: "
691 "failed to release ACTIVE_LOCK on %s: %s\n",
692 name
, strerror(errno
)));
699 if (locked
|| (tdb_flags
& TDB_CLEAR_IF_FIRST
)) {
701 * We always need to do this if the CLEAR_IF_FIRST
702 * flag is set, even if we didn't get the initial
703 * exclusive lock as we need to let all other users
704 * know we're using it.
707 ret
= tdb_nest_lock(tdb
, ACTIVE_LOCK
, F_RDLCK
, TDB_LOCK_WAIT
);
713 /* if needed, run recovery */
714 if (tdb_transaction_recover(tdb
) == -1) {
720 char tracefile
[strlen(name
) + 32];
722 snprintf(tracefile
, sizeof(tracefile
),
723 "%s.trace.%li", name
, (long)getpid());
724 tdb
->tracefd
= open(tracefile
, O_WRONLY
|O_CREAT
|O_EXCL
, 0600);
725 if (tdb
->tracefd
>= 0) {
726 tdb_enable_seqnum(tdb
);
727 tdb_trace_open(tdb
, "tdb_open", hash_size
, tdb_flags
,
730 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: failed to open trace file %s!\n", tracefile
));
735 /* Internal (memory-only) databases skip all the code above to
736 * do with disk files, and resume here by releasing their
737 * open lock and hooking into the active list. */
738 if (tdb_nest_unlock(tdb
, OPEN_LOCK
, F_WRLCK
, false) == -1) {
747 { int save_errno
= errno
;
756 if (tdb
->flags
& TDB_INTERNAL
)
757 SAFE_FREE(tdb
->map_ptr
);
762 if (close(tdb
->fd
) != 0)
763 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_open_ex: failed to close tdb->fd on error!\n"));
764 SAFE_FREE(tdb
->lockrecs
);
765 SAFE_FREE(tdb
->name
);
773 * Set the maximum number of dead records per hash chain
776 _PUBLIC_
void tdb_set_max_dead(struct tdb_context
*tdb
, int max_dead
)
778 tdb
->max_dead_records
= max_dead
;
784 * @returns -1 for error; 0 for success.
786 _PUBLIC_
int tdb_close(struct tdb_context
*tdb
)
788 struct tdb_context
**i
;
791 if (tdb
->transaction
) {
792 tdb_transaction_cancel(tdb
);
794 tdb_trace(tdb
, "tdb_close");
797 if (tdb
->flags
& TDB_INTERNAL
)
798 SAFE_FREE(tdb
->map_ptr
);
803 tdb_mutex_munmap(tdb
);
805 SAFE_FREE(tdb
->name
);
807 ret
= close(tdb
->fd
);
810 SAFE_FREE(tdb
->lockrecs
);
812 /* Remove from contexts list */
813 for (i
= &tdbs
; *i
; i
= &(*i
)->next
) {
823 memset(tdb
, 0, sizeof(*tdb
));
829 /* register a logging function */
830 _PUBLIC_
void tdb_set_logging_function(struct tdb_context
*tdb
,
831 const struct tdb_logging_context
*log_ctx
)
836 _PUBLIC_
void *tdb_get_logging_private(struct tdb_context
*tdb
)
838 return tdb
->log
.log_private
;
841 static int tdb_reopen_internal(struct tdb_context
*tdb
, bool active_lock
)
843 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
844 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
848 if (tdb
->flags
& TDB_INTERNAL
) {
849 return 0; /* Nothing to do. */
852 if (tdb_have_extra_locks(tdb
)) {
853 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_reopen: reopen not allowed with locks held\n"));
857 if (tdb
->transaction
!= 0) {
858 TDB_LOG((tdb
, TDB_DEBUG_ERROR
, "tdb_reopen: reopen not allowed inside a transaction\n"));
862 /* If we have real pread & pwrite, we can skip reopen. */
863 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
864 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
865 if (tdb_munmap(tdb
) != 0) {
866 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: munmap failed (%s)\n", strerror(errno
)));
869 if (close(tdb
->fd
) != 0)
870 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
871 tdb
->fd
= open(tdb
->name
, tdb
->open_flags
& ~(O_CREAT
|O_TRUNC
), 0);
873 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: open failed (%s)\n", strerror(errno
)));
877 * We only use st.st_dev and st.st_ino from the raw fstat()
878 * call, everything else needs to use tdb_fstat() in order
879 * to skip tdb->hdr_ofs!
881 if (fstat(tdb
->fd
, &st
) != 0) {
882 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: fstat failed (%s)\n", strerror(errno
)));
885 if (st
.st_ino
!= tdb
->inode
|| st
.st_dev
!= tdb
->device
) {
886 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: file dev/inode has changed!\n"));
892 * We had tdb_mmap(tdb) here before,
893 * but we need to use tdb_fstat(),
894 * which is triggered from tdb_oob() before calling tdb_mmap().
895 * As this skips tdb->hdr_ofs.
898 if (tdb_oob(tdb
, 0, 1, 0) != 0) {
901 #endif /* fake pread or pwrite */
903 /* We may still think we hold the active lock. */
904 tdb
->num_lockrecs
= 0;
905 SAFE_FREE(tdb
->lockrecs
);
906 tdb
->lockrecs_array_length
= 0;
908 if (active_lock
&& tdb_nest_lock(tdb
, ACTIVE_LOCK
, F_RDLCK
, TDB_LOCK_WAIT
) == -1) {
909 TDB_LOG((tdb
, TDB_DEBUG_FATAL
, "tdb_reopen: failed to obtain active lock\n"));
920 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
921 seek pointer from our parent and to re-establish locks */
922 _PUBLIC_
int tdb_reopen(struct tdb_context
*tdb
)
925 active_lock
= (tdb
->flags
& (TDB_CLEAR_IF_FIRST
|TDB_MUTEX_LOCKING
));
927 return tdb_reopen_internal(tdb
, active_lock
);
930 /* reopen all tdb's */
931 _PUBLIC_
int tdb_reopen_all(int parent_longlived
)
933 struct tdb_context
*tdb
;
935 for (tdb
=tdbs
; tdb
; tdb
= tdb
->next
) {
939 (tdb
->flags
& (TDB_CLEAR_IF_FIRST
|TDB_MUTEX_LOCKING
));
942 * If the parent is longlived (ie. a
943 * parent daemon architecture), we know
944 * it will keep it's active lock on a
945 * tdb opened with CLEAR_IF_FIRST. Thus
946 * for child processes we don't have to
947 * add an active lock. This is essential
948 * to improve performance on systems that
949 * keep POSIX locks as a non-scalable data
950 * structure in the kernel.
952 if (parent_longlived
) {
953 /* Ensure no clear-if-first. */
957 if (tdb_reopen_internal(tdb
, active_lock
) != 0)