Remove unneeded variable "const struct auth_session_info *session_info"
[Samba/gebeck_regimport.git] / lib / tdb / common / open.c
blobb10f5ebe974d0c4cf078285672f407e42f106b0c
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, int hash_size)
56 struct tdb_header *newdb;
57 size_t size;
58 int ret = -1;
60 /* We make it up in memory, then write it out if not internal */
61 size = sizeof(struct tdb_header) + (hash_size+1)*sizeof(tdb_off_t);
62 if (!(newdb = (struct tdb_header *)calloc(size, 1))) {
63 tdb->ecode = TDB_ERR_OOM;
64 return -1;
67 /* Fill in the header */
68 newdb->version = TDB_VERSION;
69 newdb->hash_size = hash_size;
71 tdb_header_hash(tdb, &newdb->magic1_hash, &newdb->magic2_hash);
73 /* Make sure older tdbs (which don't check the magic hash fields)
74 * will refuse to open this TDB. */
75 if (tdb->flags & TDB_INCOMPATIBLE_HASH)
76 newdb->rwlocks = TDB_HASH_RWLOCK_MAGIC;
78 if (tdb->flags & TDB_INTERNAL) {
79 tdb->map_size = size;
80 tdb->map_ptr = (char *)newdb;
81 memcpy(&tdb->header, newdb, sizeof(tdb->header));
82 /* Convert the `ondisk' version if asked. */
83 CONVERT(*newdb);
84 return 0;
86 if (lseek(tdb->fd, 0, SEEK_SET) == -1)
87 goto fail;
89 if (ftruncate(tdb->fd, 0) == -1)
90 goto fail;
92 /* This creates an endian-converted header, as if read from disk */
93 CONVERT(*newdb);
94 memcpy(&tdb->header, newdb, sizeof(tdb->header));
95 /* Don't endian-convert the magic food! */
96 memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
98 if (!tdb_write_all(tdb->fd, newdb, size))
99 goto fail;
101 ret = 0;
102 fail:
103 SAFE_FREE(newdb);
104 return ret;
109 static int tdb_already_open(dev_t device,
110 ino_t ino)
112 struct tdb_context *i;
114 for (i = tdbs; i; i = i->next) {
115 if (i->device == device && i->inode == ino) {
116 return 1;
120 return 0;
123 /* open the database, creating it if necessary
125 The open_flags and mode are passed straight to the open call on the
126 database file. A flags value of O_WRONLY is invalid. The hash size
127 is advisory, use zero for a default value.
129 Return is NULL on error, in which case errno is also set. Don't
130 try to call tdb_error or tdb_errname, just do strerror(errno).
132 @param name may be NULL for internal databases. */
133 _PUBLIC_ struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
134 int open_flags, mode_t mode)
136 return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
139 /* a default logging function */
140 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
141 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
145 static bool check_header_hash(struct tdb_context *tdb,
146 bool default_hash, uint32_t *m1, uint32_t *m2)
148 tdb_header_hash(tdb, m1, m2);
149 if (tdb->header.magic1_hash == *m1 &&
150 tdb->header.magic2_hash == *m2) {
151 return true;
154 /* If they explicitly set a hash, always respect it. */
155 if (!default_hash)
156 return false;
158 /* Otherwise, try the other inbuilt hash. */
159 if (tdb->hash_fn == tdb_old_hash)
160 tdb->hash_fn = tdb_jenkins_hash;
161 else
162 tdb->hash_fn = tdb_old_hash;
163 return check_header_hash(tdb, false, m1, m2);
166 _PUBLIC_ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
167 int open_flags, mode_t mode,
168 const struct tdb_logging_context *log_ctx,
169 tdb_hash_func hash_fn)
171 struct tdb_context *tdb;
172 struct stat st;
173 int rev = 0, locked = 0;
174 unsigned char *vp;
175 uint32_t vertest;
176 unsigned v;
177 const char *hash_alg;
178 uint32_t magic1, magic2;
180 if (!(tdb = (struct tdb_context *)calloc(1, sizeof *tdb))) {
181 /* Can't log this */
182 errno = ENOMEM;
183 goto fail;
185 tdb_io_init(tdb);
186 tdb->fd = -1;
187 #ifdef TDB_TRACE
188 tdb->tracefd = -1;
189 #endif
190 tdb->name = NULL;
191 tdb->map_ptr = NULL;
192 tdb->flags = tdb_flags;
193 tdb->open_flags = open_flags;
194 if (log_ctx) {
195 tdb->log = *log_ctx;
196 } else {
197 tdb->log.log_fn = null_log_fn;
198 tdb->log.log_private = NULL;
201 if (name == NULL && (tdb_flags & TDB_INTERNAL)) {
202 name = "__TDB_INTERNAL__";
205 if (name == NULL) {
206 tdb->name = discard_const_p(char, "__NULL__");
207 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: called with name == NULL\n"));
208 tdb->name = NULL;
209 errno = EINVAL;
210 goto fail;
213 /* now make a copy of the name, as the caller memory might went away */
214 if (!(tdb->name = (char *)strdup(name))) {
216 * set the name as the given string, so that tdb_name() will
217 * work in case of an error.
219 tdb->name = discard_const_p(char, name);
220 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't strdup(%s)\n",
221 name));
222 tdb->name = NULL;
223 errno = ENOMEM;
224 goto fail;
227 if (hash_fn) {
228 tdb->hash_fn = hash_fn;
229 hash_alg = "the user defined";
230 } else {
231 /* This controls what we use when creating a tdb. */
232 if (tdb->flags & TDB_INCOMPATIBLE_HASH) {
233 tdb->hash_fn = tdb_jenkins_hash;
234 } else {
235 tdb->hash_fn = tdb_old_hash;
237 hash_alg = "either default";
240 /* cache the page size */
241 tdb->page_size = getpagesize();
242 if (tdb->page_size <= 0) {
243 tdb->page_size = 0x2000;
246 tdb->max_dead_records = (tdb_flags & TDB_VOLATILE) ? 5 : 0;
248 if ((open_flags & O_ACCMODE) == O_WRONLY) {
249 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't open tdb %s write-only\n",
250 name));
251 errno = EINVAL;
252 goto fail;
255 if (hash_size == 0)
256 hash_size = DEFAULT_HASH_SIZE;
257 if ((open_flags & O_ACCMODE) == O_RDONLY) {
258 tdb->read_only = 1;
259 /* read only databases don't do locking or clear if first */
260 tdb->flags |= TDB_NOLOCK;
261 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
264 if ((tdb->flags & TDB_ALLOW_NESTING) &&
265 (tdb->flags & TDB_DISALLOW_NESTING)) {
266 tdb->ecode = TDB_ERR_NESTING;
267 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
268 "allow_nesting and disallow_nesting are not allowed together!"));
269 errno = EINVAL;
270 goto fail;
273 if (getenv("TDB_NO_FSYNC")) {
274 tdb->flags |= TDB_NOSYNC;
278 * TDB_ALLOW_NESTING is the default behavior.
279 * Note: this may change in future versions!
281 if (!(tdb->flags & TDB_DISALLOW_NESTING)) {
282 tdb->flags |= TDB_ALLOW_NESTING;
285 /* internal databases don't mmap or lock, and start off cleared */
286 if (tdb->flags & TDB_INTERNAL) {
287 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
288 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
289 if (tdb_new_database(tdb, hash_size) != 0) {
290 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: tdb_new_database failed!"));
291 goto fail;
293 goto internal;
296 if ((tdb->fd = open(name, open_flags, mode)) == -1) {
297 TDB_LOG((tdb, TDB_DEBUG_WARNING, "tdb_open_ex: could not open file %s: %s\n",
298 name, strerror(errno)));
299 goto fail; /* errno set by open(2) */
302 /* on exec, don't inherit the fd */
303 v = fcntl(tdb->fd, F_GETFD, 0);
304 fcntl(tdb->fd, F_SETFD, v | FD_CLOEXEC);
306 /* ensure there is only one process initialising at once */
307 if (tdb_nest_lock(tdb, OPEN_LOCK, F_WRLCK, TDB_LOCK_WAIT) == -1) {
308 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to get open lock on %s: %s\n",
309 name, strerror(errno)));
310 goto fail; /* errno set by tdb_brlock */
313 /* we need to zero database if we are the only one with it open */
314 if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
315 (!tdb->read_only) &&
316 (locked = (tdb_nest_lock(tdb, ACTIVE_LOCK, F_WRLCK, TDB_LOCK_NOWAIT|TDB_LOCK_PROBE) == 0))) {
317 int ret;
318 ret = tdb_brlock(tdb, F_WRLCK, FREELIST_TOP, 0,
319 TDB_LOCK_WAIT);
320 if (ret == -1) {
321 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
322 "tdb_brlock failed for %s: %s\n",
323 name, strerror(errno)));
324 goto fail;
326 ret = tdb_new_database(tdb, hash_size);
327 if (ret == -1) {
328 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
329 "tdb_new_database failed for %s: %s\n",
330 name, strerror(errno)));
331 tdb_unlockall(tdb);
332 goto fail;
334 ret = tdb_brunlock(tdb, F_WRLCK, FREELIST_TOP, 0);
335 if (ret == -1) {
336 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
337 "tdb_unlockall failed for %s: %s\n",
338 name, strerror(errno)));
339 goto fail;
341 ret = lseek(tdb->fd, 0, SEEK_SET);
342 if (ret == -1) {
343 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
344 "lseek failed for %s: %s\n",
345 name, strerror(errno)));
346 goto fail;
350 errno = 0;
351 if (read(tdb->fd, &tdb->header, sizeof(tdb->header)) != sizeof(tdb->header)
352 || strcmp(tdb->header.magic_food, TDB_MAGIC_FOOD) != 0) {
353 if (!(open_flags & O_CREAT) || tdb_new_database(tdb, hash_size) == -1) {
354 if (errno == 0) {
355 errno = EIO; /* ie bad format or something */
357 goto fail;
359 rev = (tdb->flags & TDB_CONVERT);
360 } else if (tdb->header.version != TDB_VERSION
361 && !(rev = (tdb->header.version==TDB_BYTEREV(TDB_VERSION)))) {
362 /* wrong version */
363 errno = EIO;
364 goto fail;
366 vp = (unsigned char *)&tdb->header.version;
367 vertest = (((uint32_t)vp[0]) << 24) | (((uint32_t)vp[1]) << 16) |
368 (((uint32_t)vp[2]) << 8) | (uint32_t)vp[3];
369 tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
370 if (!rev)
371 tdb->flags &= ~TDB_CONVERT;
372 else {
373 tdb->flags |= TDB_CONVERT;
374 tdb_convert(&tdb->header, sizeof(tdb->header));
376 if (fstat(tdb->fd, &st) == -1)
377 goto fail;
379 if (tdb->header.rwlocks != 0 &&
380 tdb->header.rwlocks != TDB_HASH_RWLOCK_MAGIC) {
381 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: spinlocks no longer supported\n"));
382 goto fail;
385 if ((tdb->header.magic1_hash == 0) && (tdb->header.magic2_hash == 0)) {
386 /* older TDB without magic hash references */
387 tdb->hash_fn = tdb_old_hash;
388 } else if (!check_header_hash(tdb, !hash_fn, &magic1, &magic2)) {
389 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
390 "%s was not created with %s hash function we are using\n"
391 "magic1_hash[0x%08X %s 0x%08X] "
392 "magic2_hash[0x%08X %s 0x%08X]\n",
393 name, hash_alg,
394 tdb->header.magic1_hash,
395 (tdb->header.magic1_hash == magic1) ? "==" : "!=",
396 magic1,
397 tdb->header.magic2_hash,
398 (tdb->header.magic2_hash == magic2) ? "==" : "!=",
399 magic2));
400 errno = EINVAL;
401 goto fail;
404 /* Is it already in the open list? If so, fail. */
405 if (tdb_already_open(st.st_dev, st.st_ino)) {
406 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
407 "%s (%d,%d) is already open in this process\n",
408 name, (int)st.st_dev, (int)st.st_ino));
409 errno = EBUSY;
410 goto fail;
413 /* Beware truncation! */
414 tdb->map_size = st.st_size;
415 if (tdb->map_size != st.st_size) {
416 /* Ensure ecode is set for log fn. */
417 tdb->ecode = TDB_ERR_IO;
418 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
419 "len %llu too large!\n", (long long)st.st_size));
420 errno = EIO;
421 goto fail;
424 tdb->device = st.st_dev;
425 tdb->inode = st.st_ino;
426 tdb_mmap(tdb);
427 if (locked) {
428 if (tdb_nest_unlock(tdb, ACTIVE_LOCK, F_WRLCK, false) == -1) {
429 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
430 "failed to release ACTIVE_LOCK on %s: %s\n",
431 name, strerror(errno)));
432 goto fail;
437 /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
438 we didn't get the initial exclusive lock as we need to let all other
439 users know we're using it. */
441 if (tdb_flags & TDB_CLEAR_IF_FIRST) {
442 /* leave this lock in place to indicate it's in use */
443 if (tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
444 goto fail;
448 /* if needed, run recovery */
449 if (tdb_transaction_recover(tdb) == -1) {
450 goto fail;
453 #ifdef TDB_TRACE
455 char tracefile[strlen(name) + 32];
457 snprintf(tracefile, sizeof(tracefile),
458 "%s.trace.%li", name, (long)getpid());
459 tdb->tracefd = open(tracefile, O_WRONLY|O_CREAT|O_EXCL, 0600);
460 if (tdb->tracefd >= 0) {
461 tdb_enable_seqnum(tdb);
462 tdb_trace_open(tdb, "tdb_open", hash_size, tdb_flags,
463 open_flags);
464 } else
465 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to open trace file %s!\n", tracefile));
467 #endif
469 internal:
470 /* Internal (memory-only) databases skip all the code above to
471 * do with disk files, and resume here by releasing their
472 * open lock and hooking into the active list. */
473 if (tdb_nest_unlock(tdb, OPEN_LOCK, F_WRLCK, false) == -1) {
474 goto fail;
476 tdb->next = tdbs;
477 tdbs = tdb;
478 return tdb;
480 fail:
481 { int save_errno = errno;
483 if (!tdb)
484 return NULL;
486 #ifdef TDB_TRACE
487 close(tdb->tracefd);
488 #endif
489 if (tdb->map_ptr) {
490 if (tdb->flags & TDB_INTERNAL)
491 SAFE_FREE(tdb->map_ptr);
492 else
493 tdb_munmap(tdb);
495 if (tdb->fd != -1)
496 if (close(tdb->fd) != 0)
497 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to close tdb->fd on error!\n"));
498 SAFE_FREE(tdb->lockrecs);
499 SAFE_FREE(tdb->name);
500 SAFE_FREE(tdb);
501 errno = save_errno;
502 return NULL;
507 * Set the maximum number of dead records per hash chain
510 _PUBLIC_ void tdb_set_max_dead(struct tdb_context *tdb, int max_dead)
512 tdb->max_dead_records = max_dead;
516 * Close a database.
518 * @returns -1 for error; 0 for success.
520 _PUBLIC_ int tdb_close(struct tdb_context *tdb)
522 struct tdb_context **i;
523 int ret = 0;
525 if (tdb->transaction) {
526 tdb_transaction_cancel(tdb);
528 tdb_trace(tdb, "tdb_close");
530 if (tdb->map_ptr) {
531 if (tdb->flags & TDB_INTERNAL)
532 SAFE_FREE(tdb->map_ptr);
533 else
534 tdb_munmap(tdb);
536 SAFE_FREE(tdb->name);
537 if (tdb->fd != -1) {
538 ret = close(tdb->fd);
539 tdb->fd = -1;
541 SAFE_FREE(tdb->lockrecs);
543 /* Remove from contexts list */
544 for (i = &tdbs; *i; i = &(*i)->next) {
545 if (*i == tdb) {
546 *i = tdb->next;
547 break;
551 #ifdef TDB_TRACE
552 close(tdb->tracefd);
553 #endif
554 memset(tdb, 0, sizeof(*tdb));
555 SAFE_FREE(tdb);
557 return ret;
560 /* register a loging function */
561 _PUBLIC_ void tdb_set_logging_function(struct tdb_context *tdb,
562 const struct tdb_logging_context *log_ctx)
564 tdb->log = *log_ctx;
567 _PUBLIC_ void *tdb_get_logging_private(struct tdb_context *tdb)
569 return tdb->log.log_private;
572 static int tdb_reopen_internal(struct tdb_context *tdb, bool active_lock)
574 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
575 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
576 struct stat st;
577 #endif
579 if (tdb->flags & TDB_INTERNAL) {
580 return 0; /* Nothing to do. */
583 if (tdb_have_extra_locks(tdb)) {
584 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed with locks held\n"));
585 goto fail;
588 if (tdb->transaction != 0) {
589 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed inside a transaction\n"));
590 goto fail;
593 /* If we have real pread & pwrite, we can skip reopen. */
594 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
595 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
596 if (tdb_munmap(tdb) != 0) {
597 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
598 goto fail;
600 if (close(tdb->fd) != 0)
601 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
602 tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
603 if (tdb->fd == -1) {
604 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: open failed (%s)\n", strerror(errno)));
605 goto fail;
607 if (fstat(tdb->fd, &st) != 0) {
608 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
609 goto fail;
611 if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
612 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: file dev/inode has changed!\n"));
613 goto fail;
615 if (tdb_mmap(tdb) != 0) {
616 goto fail;
618 #endif /* fake pread or pwrite */
620 /* We may still think we hold the active lock. */
621 tdb->num_lockrecs = 0;
622 SAFE_FREE(tdb->lockrecs);
624 if (active_lock && tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
625 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: failed to obtain active lock\n"));
626 goto fail;
629 return 0;
631 fail:
632 tdb_close(tdb);
633 return -1;
636 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
637 seek pointer from our parent and to re-establish locks */
638 _PUBLIC_ int tdb_reopen(struct tdb_context *tdb)
640 return tdb_reopen_internal(tdb, tdb->flags & TDB_CLEAR_IF_FIRST);
643 /* reopen all tdb's */
644 _PUBLIC_ int tdb_reopen_all(int parent_longlived)
646 struct tdb_context *tdb;
648 for (tdb=tdbs; tdb; tdb = tdb->next) {
649 bool active_lock = (tdb->flags & TDB_CLEAR_IF_FIRST);
652 * If the parent is longlived (ie. a
653 * parent daemon architecture), we know
654 * it will keep it's active lock on a
655 * tdb opened with CLEAR_IF_FIRST. Thus
656 * for child processes we don't have to
657 * add an active lock. This is essential
658 * to improve performance on systems that
659 * keep POSIX locks as a non-scalable data
660 * structure in the kernel.
662 if (parent_longlived) {
663 /* Ensure no clear-if-first. */
664 active_lock = false;
667 if (tdb_reopen_internal(tdb, active_lock) != 0)
668 return -1;
671 return 0;