tdb: Pass argument "header" to tdb_new_database
[Samba/gbeck.git] / lib / tdb / common / open.c
blob6079463945074f4718bf78f1549cdd4285bf5679
1 /*
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
12 ** under the LGPL
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)
37 TDB_DATA hash_key;
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)
50 *magic1_hash = 1;
53 /* initialise a new database with a specified hash size */
54 static int tdb_new_database(struct tdb_context *tdb, struct tdb_header *header,
55 int hash_size)
57 struct tdb_header *newdb;
58 size_t size;
59 int ret = -1;
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;
65 return -1;
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;
79 if (tdb->flags & TDB_INTERNAL) {
80 tdb->map_size = size;
81 tdb->map_ptr = (char *)newdb;
82 memcpy(header, newdb, sizeof(*header));
83 /* Convert the `ondisk' version if asked. */
84 CONVERT(*newdb);
85 return 0;
87 if (lseek(tdb->fd, 0, SEEK_SET) == -1)
88 goto fail;
90 if (ftruncate(tdb->fd, 0) == -1)
91 goto fail;
93 /* This creates an endian-converted header, as if read from disk */
94 CONVERT(*newdb);
95 memcpy(header, newdb, sizeof(*header));
96 /* Don't endian-convert the magic food! */
97 memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
99 if (!tdb_write_all(tdb->fd, newdb, size))
100 goto fail;
102 ret = 0;
103 fail:
104 SAFE_FREE(newdb);
105 return ret;
110 static int tdb_already_open(dev_t device,
111 ino_t ino)
113 struct tdb_context *i;
115 for (i = tdbs; i; i = i->next) {
116 if (i->device == device && i->inode == ino) {
117 return 1;
121 return 0;
124 /* open the database, creating it if necessary
126 The open_flags and mode are passed straight to the open call on the
127 database file. A flags value of O_WRONLY is invalid. The hash size
128 is advisory, use zero for a default value.
130 Return is NULL on error, in which case errno is also set. Don't
131 try to call tdb_error or tdb_errname, just do strerror(errno).
133 @param name may be NULL for internal databases. */
134 _PUBLIC_ struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
135 int open_flags, mode_t mode)
137 return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
140 /* a default logging function */
141 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
142 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
146 static bool check_header_hash(struct tdb_context *tdb,
147 bool default_hash, uint32_t *m1, uint32_t *m2)
149 tdb_header_hash(tdb, m1, m2);
150 if (tdb->header.magic1_hash == *m1 &&
151 tdb->header.magic2_hash == *m2) {
152 return true;
155 /* If they explicitly set a hash, always respect it. */
156 if (!default_hash)
157 return false;
159 /* Otherwise, try the other inbuilt hash. */
160 if (tdb->hash_fn == tdb_old_hash)
161 tdb->hash_fn = tdb_jenkins_hash;
162 else
163 tdb->hash_fn = tdb_old_hash;
164 return check_header_hash(tdb, false, m1, m2);
167 _PUBLIC_ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
168 int open_flags, mode_t mode,
169 const struct tdb_logging_context *log_ctx,
170 tdb_hash_func hash_fn)
172 struct tdb_context *tdb;
173 struct stat st;
174 int rev = 0, locked = 0;
175 unsigned char *vp;
176 uint32_t vertest;
177 unsigned v;
178 const char *hash_alg;
179 uint32_t magic1, magic2;
181 if (!(tdb = (struct tdb_context *)calloc(1, sizeof *tdb))) {
182 /* Can't log this */
183 errno = ENOMEM;
184 goto fail;
186 tdb_io_init(tdb);
187 tdb->fd = -1;
188 #ifdef TDB_TRACE
189 tdb->tracefd = -1;
190 #endif
191 tdb->name = NULL;
192 tdb->map_ptr = NULL;
193 tdb->flags = tdb_flags;
194 tdb->open_flags = open_flags;
195 if (log_ctx) {
196 tdb->log = *log_ctx;
197 } else {
198 tdb->log.log_fn = null_log_fn;
199 tdb->log.log_private = NULL;
202 if (name == NULL && (tdb_flags & TDB_INTERNAL)) {
203 name = "__TDB_INTERNAL__";
206 if (name == NULL) {
207 tdb->name = discard_const_p(char, "__NULL__");
208 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: called with name == NULL\n"));
209 tdb->name = NULL;
210 errno = EINVAL;
211 goto fail;
214 /* now make a copy of the name, as the caller memory might went away */
215 if (!(tdb->name = (char *)strdup(name))) {
217 * set the name as the given string, so that tdb_name() will
218 * work in case of an error.
220 tdb->name = discard_const_p(char, name);
221 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't strdup(%s)\n",
222 name));
223 tdb->name = NULL;
224 errno = ENOMEM;
225 goto fail;
228 if (hash_fn) {
229 tdb->hash_fn = hash_fn;
230 hash_alg = "the user defined";
231 } else {
232 /* This controls what we use when creating a tdb. */
233 if (tdb->flags & TDB_INCOMPATIBLE_HASH) {
234 tdb->hash_fn = tdb_jenkins_hash;
235 } else {
236 tdb->hash_fn = tdb_old_hash;
238 hash_alg = "either default";
241 /* cache the page size */
242 tdb->page_size = getpagesize();
243 if (tdb->page_size <= 0) {
244 tdb->page_size = 0x2000;
247 tdb->max_dead_records = (tdb_flags & TDB_VOLATILE) ? 5 : 0;
249 if ((open_flags & O_ACCMODE) == O_WRONLY) {
250 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't open tdb %s write-only\n",
251 name));
252 errno = EINVAL;
253 goto fail;
256 if (hash_size == 0)
257 hash_size = DEFAULT_HASH_SIZE;
258 if ((open_flags & O_ACCMODE) == O_RDONLY) {
259 tdb->read_only = 1;
260 /* read only databases don't do locking or clear if first */
261 tdb->flags |= TDB_NOLOCK;
262 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
265 if ((tdb->flags & TDB_ALLOW_NESTING) &&
266 (tdb->flags & TDB_DISALLOW_NESTING)) {
267 tdb->ecode = TDB_ERR_NESTING;
268 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
269 "allow_nesting and disallow_nesting are not allowed together!"));
270 errno = EINVAL;
271 goto fail;
274 if (getenv("TDB_NO_FSYNC")) {
275 tdb->flags |= TDB_NOSYNC;
279 * TDB_ALLOW_NESTING is the default behavior.
280 * Note: this may change in future versions!
282 if (!(tdb->flags & TDB_DISALLOW_NESTING)) {
283 tdb->flags |= TDB_ALLOW_NESTING;
286 /* internal databases don't mmap or lock, and start off cleared */
287 if (tdb->flags & TDB_INTERNAL) {
288 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
289 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
290 if (tdb_new_database(tdb, &tdb->header, hash_size) != 0) {
291 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: tdb_new_database failed!"));
292 goto fail;
294 goto internal;
297 if ((tdb->fd = open(name, open_flags, mode)) == -1) {
298 TDB_LOG((tdb, TDB_DEBUG_WARNING, "tdb_open_ex: could not open file %s: %s\n",
299 name, strerror(errno)));
300 goto fail; /* errno set by open(2) */
303 /* on exec, don't inherit the fd */
304 v = fcntl(tdb->fd, F_GETFD, 0);
305 fcntl(tdb->fd, F_SETFD, v | FD_CLOEXEC);
307 /* ensure there is only one process initialising at once */
308 if (tdb_nest_lock(tdb, OPEN_LOCK, F_WRLCK, TDB_LOCK_WAIT) == -1) {
309 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to get open lock on %s: %s\n",
310 name, strerror(errno)));
311 goto fail; /* errno set by tdb_brlock */
314 /* we need to zero database if we are the only one with it open */
315 if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
316 (!tdb->read_only) &&
317 (locked = (tdb_nest_lock(tdb, ACTIVE_LOCK, F_WRLCK, TDB_LOCK_NOWAIT|TDB_LOCK_PROBE) == 0))) {
318 int ret;
319 ret = tdb_brlock(tdb, F_WRLCK, FREELIST_TOP, 0,
320 TDB_LOCK_WAIT);
321 if (ret == -1) {
322 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
323 "tdb_brlock failed for %s: %s\n",
324 name, strerror(errno)));
325 goto fail;
327 ret = tdb_new_database(tdb, &tdb->header, hash_size);
328 if (ret == -1) {
329 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
330 "tdb_new_database failed for %s: %s\n",
331 name, strerror(errno)));
332 tdb_unlockall(tdb);
333 goto fail;
335 ret = tdb_brunlock(tdb, F_WRLCK, FREELIST_TOP, 0);
336 if (ret == -1) {
337 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
338 "tdb_unlockall failed for %s: %s\n",
339 name, strerror(errno)));
340 goto fail;
342 ret = lseek(tdb->fd, 0, SEEK_SET);
343 if (ret == -1) {
344 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
345 "lseek failed for %s: %s\n",
346 name, strerror(errno)));
347 goto fail;
351 errno = 0;
352 if (read(tdb->fd, &tdb->header, sizeof(tdb->header)) != sizeof(tdb->header)
353 || strcmp(tdb->header.magic_food, TDB_MAGIC_FOOD) != 0) {
354 if (!(open_flags & O_CREAT) ||
355 tdb_new_database(tdb, &tdb->header, hash_size) == -1) {
356 if (errno == 0) {
357 errno = EIO; /* ie bad format or something */
359 goto fail;
361 rev = (tdb->flags & TDB_CONVERT);
362 } else if (tdb->header.version != TDB_VERSION
363 && !(rev = (tdb->header.version==TDB_BYTEREV(TDB_VERSION)))) {
364 /* wrong version */
365 errno = EIO;
366 goto fail;
368 vp = (unsigned char *)&tdb->header.version;
369 vertest = (((uint32_t)vp[0]) << 24) | (((uint32_t)vp[1]) << 16) |
370 (((uint32_t)vp[2]) << 8) | (uint32_t)vp[3];
371 tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
372 if (!rev)
373 tdb->flags &= ~TDB_CONVERT;
374 else {
375 tdb->flags |= TDB_CONVERT;
376 tdb_convert(&tdb->header, sizeof(tdb->header));
378 if (fstat(tdb->fd, &st) == -1)
379 goto fail;
381 if (tdb->header.rwlocks != 0 &&
382 tdb->header.rwlocks != TDB_HASH_RWLOCK_MAGIC) {
383 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: spinlocks no longer supported\n"));
384 goto fail;
387 if ((tdb->header.magic1_hash == 0) && (tdb->header.magic2_hash == 0)) {
388 /* older TDB without magic hash references */
389 tdb->hash_fn = tdb_old_hash;
390 } else if (!check_header_hash(tdb, !hash_fn, &magic1, &magic2)) {
391 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
392 "%s was not created with %s hash function we are using\n"
393 "magic1_hash[0x%08X %s 0x%08X] "
394 "magic2_hash[0x%08X %s 0x%08X]\n",
395 name, hash_alg,
396 tdb->header.magic1_hash,
397 (tdb->header.magic1_hash == magic1) ? "==" : "!=",
398 magic1,
399 tdb->header.magic2_hash,
400 (tdb->header.magic2_hash == magic2) ? "==" : "!=",
401 magic2));
402 errno = EINVAL;
403 goto fail;
406 /* Is it already in the open list? If so, fail. */
407 if (tdb_already_open(st.st_dev, st.st_ino)) {
408 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
409 "%s (%d,%d) is already open in this process\n",
410 name, (int)st.st_dev, (int)st.st_ino));
411 errno = EBUSY;
412 goto fail;
415 /* Beware truncation! */
416 tdb->map_size = st.st_size;
417 if (tdb->map_size != st.st_size) {
418 /* Ensure ecode is set for log fn. */
419 tdb->ecode = TDB_ERR_IO;
420 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
421 "len %llu too large!\n", (long long)st.st_size));
422 errno = EIO;
423 goto fail;
426 tdb->device = st.st_dev;
427 tdb->inode = st.st_ino;
428 tdb_mmap(tdb);
429 if (locked) {
430 if (tdb_nest_unlock(tdb, ACTIVE_LOCK, F_WRLCK, false) == -1) {
431 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
432 "failed to release ACTIVE_LOCK on %s: %s\n",
433 name, strerror(errno)));
434 goto fail;
439 /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
440 we didn't get the initial exclusive lock as we need to let all other
441 users know we're using it. */
443 if (tdb_flags & TDB_CLEAR_IF_FIRST) {
444 /* leave this lock in place to indicate it's in use */
445 if (tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
446 goto fail;
450 /* if needed, run recovery */
451 if (tdb_transaction_recover(tdb) == -1) {
452 goto fail;
455 #ifdef TDB_TRACE
457 char tracefile[strlen(name) + 32];
459 snprintf(tracefile, sizeof(tracefile),
460 "%s.trace.%li", name, (long)getpid());
461 tdb->tracefd = open(tracefile, O_WRONLY|O_CREAT|O_EXCL, 0600);
462 if (tdb->tracefd >= 0) {
463 tdb_enable_seqnum(tdb);
464 tdb_trace_open(tdb, "tdb_open", hash_size, tdb_flags,
465 open_flags);
466 } else
467 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to open trace file %s!\n", tracefile));
469 #endif
471 internal:
472 /* Internal (memory-only) databases skip all the code above to
473 * do with disk files, and resume here by releasing their
474 * open lock and hooking into the active list. */
475 if (tdb_nest_unlock(tdb, OPEN_LOCK, F_WRLCK, false) == -1) {
476 goto fail;
478 tdb->next = tdbs;
479 tdbs = tdb;
480 return tdb;
482 fail:
483 { int save_errno = errno;
485 if (!tdb)
486 return NULL;
488 #ifdef TDB_TRACE
489 close(tdb->tracefd);
490 #endif
491 if (tdb->map_ptr) {
492 if (tdb->flags & TDB_INTERNAL)
493 SAFE_FREE(tdb->map_ptr);
494 else
495 tdb_munmap(tdb);
497 if (tdb->fd != -1)
498 if (close(tdb->fd) != 0)
499 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to close tdb->fd on error!\n"));
500 SAFE_FREE(tdb->lockrecs);
501 SAFE_FREE(tdb->name);
502 SAFE_FREE(tdb);
503 errno = save_errno;
504 return NULL;
509 * Set the maximum number of dead records per hash chain
512 _PUBLIC_ void tdb_set_max_dead(struct tdb_context *tdb, int max_dead)
514 tdb->max_dead_records = max_dead;
518 * Close a database.
520 * @returns -1 for error; 0 for success.
522 _PUBLIC_ int tdb_close(struct tdb_context *tdb)
524 struct tdb_context **i;
525 int ret = 0;
527 if (tdb->transaction) {
528 tdb_transaction_cancel(tdb);
530 tdb_trace(tdb, "tdb_close");
532 if (tdb->map_ptr) {
533 if (tdb->flags & TDB_INTERNAL)
534 SAFE_FREE(tdb->map_ptr);
535 else
536 tdb_munmap(tdb);
538 SAFE_FREE(tdb->name);
539 if (tdb->fd != -1) {
540 ret = close(tdb->fd);
541 tdb->fd = -1;
543 SAFE_FREE(tdb->lockrecs);
545 /* Remove from contexts list */
546 for (i = &tdbs; *i; i = &(*i)->next) {
547 if (*i == tdb) {
548 *i = tdb->next;
549 break;
553 #ifdef TDB_TRACE
554 close(tdb->tracefd);
555 #endif
556 memset(tdb, 0, sizeof(*tdb));
557 SAFE_FREE(tdb);
559 return ret;
562 /* register a loging function */
563 _PUBLIC_ void tdb_set_logging_function(struct tdb_context *tdb,
564 const struct tdb_logging_context *log_ctx)
566 tdb->log = *log_ctx;
569 _PUBLIC_ void *tdb_get_logging_private(struct tdb_context *tdb)
571 return tdb->log.log_private;
574 static int tdb_reopen_internal(struct tdb_context *tdb, bool active_lock)
576 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
577 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
578 struct stat st;
579 #endif
581 if (tdb->flags & TDB_INTERNAL) {
582 return 0; /* Nothing to do. */
585 if (tdb_have_extra_locks(tdb)) {
586 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed with locks held\n"));
587 goto fail;
590 if (tdb->transaction != 0) {
591 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed inside a transaction\n"));
592 goto fail;
595 /* If we have real pread & pwrite, we can skip reopen. */
596 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
597 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
598 if (tdb_munmap(tdb) != 0) {
599 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
600 goto fail;
602 if (close(tdb->fd) != 0)
603 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
604 tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
605 if (tdb->fd == -1) {
606 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: open failed (%s)\n", strerror(errno)));
607 goto fail;
609 if (fstat(tdb->fd, &st) != 0) {
610 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
611 goto fail;
613 if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
614 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: file dev/inode has changed!\n"));
615 goto fail;
617 if (tdb_mmap(tdb) != 0) {
618 goto fail;
620 #endif /* fake pread or pwrite */
622 /* We may still think we hold the active lock. */
623 tdb->num_lockrecs = 0;
624 SAFE_FREE(tdb->lockrecs);
626 if (active_lock && tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
627 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: failed to obtain active lock\n"));
628 goto fail;
631 return 0;
633 fail:
634 tdb_close(tdb);
635 return -1;
638 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
639 seek pointer from our parent and to re-establish locks */
640 _PUBLIC_ int tdb_reopen(struct tdb_context *tdb)
642 return tdb_reopen_internal(tdb, tdb->flags & TDB_CLEAR_IF_FIRST);
645 /* reopen all tdb's */
646 _PUBLIC_ int tdb_reopen_all(int parent_longlived)
648 struct tdb_context *tdb;
650 for (tdb=tdbs; tdb; tdb = tdb->next) {
651 bool active_lock = (tdb->flags & TDB_CLEAR_IF_FIRST);
654 * If the parent is longlived (ie. a
655 * parent daemon architecture), we know
656 * it will keep it's active lock on a
657 * tdb opened with CLEAR_IF_FIRST. Thus
658 * for child processes we don't have to
659 * add an active lock. This is essential
660 * to improve performance on systems that
661 * keep POSIX locks as a non-scalable data
662 * structure in the kernel.
664 if (parent_longlived) {
665 /* Ensure no clear-if-first. */
666 active_lock = false;
669 if (tdb_reopen_internal(tdb, active_lock) != 0)
670 return -1;
673 return 0;