tdb: always open internal databases with incompatible hash.
[samba.git] / lib / tdb / common / open.c
1  /*
2    Unix SMB/CIFS implementation.
3
4    trivial database library
5
6    Copyright (C) Andrew Tridgell              1999-2005
7    Copyright (C) Paul `Rusty' Russell              2000
8    Copyright (C) Jeremy Allison                    2000-2003
9
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
13
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.
18
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.
23
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/>.
26 */
27
28 #include "tdb_private.h"
29
30 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
31 static struct tdb_context *tdbs = NULL;
32
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)
36 {
37         TDB_DATA hash_key;
38         uint32_t tdb_magic = TDB_MAGIC;
39
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);
43
44         hash_key.dptr = (unsigned char *)CONVERT(tdb_magic);
45         hash_key.dsize = sizeof(tdb_magic);
46         *magic2_hash = tdb->hash_fn(&hash_key);
47
48         /* Make sure at least one hash is non-zero! */
49         if (*magic1_hash == 0 && *magic2_hash == 0)
50                 *magic1_hash = 1;
51 }
52
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)
56 {
57         struct tdb_header *newdb;
58         size_t size;
59         int ret = -1;
60
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;
66         }
67
68         /* Fill in the header */
69         newdb->version = TDB_VERSION;
70         newdb->hash_size = hash_size;
71
72         tdb_header_hash(tdb, &newdb->magic1_hash, &newdb->magic2_hash);
73
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;
78
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;
86         }
87         if (lseek(tdb->fd, 0, SEEK_SET) == -1)
88                 goto fail;
89
90         if (ftruncate(tdb->fd, 0) == -1)
91                 goto fail;
92
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);
98
99         if (!tdb_write_all(tdb->fd, newdb, size))
100                 goto fail;
101
102         ret = 0;
103   fail:
104         SAFE_FREE(newdb);
105         return ret;
106 }
107
108
109
110 static int tdb_already_open(dev_t device,
111                             ino_t ino)
112 {
113         struct tdb_context *i;
114
115         for (i = tdbs; i; i = i->next) {
116                 if (i->device == device && i->inode == ino) {
117                         return 1;
118                 }
119         }
120
121         return 0;
122 }
123
124 /* open the database, creating it if necessary
125
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.
129
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).
132
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)
136 {
137         return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
138 }
139
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, ...)
143 {
144 }
145
146 static bool check_header_hash(struct tdb_context *tdb,
147                               struct tdb_header *header,
148                               bool default_hash, uint32_t *m1, uint32_t *m2)
149 {
150         tdb_header_hash(tdb, m1, m2);
151         if (header->magic1_hash == *m1 &&
152             header->magic2_hash == *m2) {
153                 return true;
154         }
155
156         /* If they explicitly set a hash, always respect it. */
157         if (!default_hash)
158                 return false;
159
160         /* Otherwise, try the other inbuilt hash. */
161         if (tdb->hash_fn == tdb_old_hash)
162                 tdb->hash_fn = tdb_jenkins_hash;
163         else
164                 tdb->hash_fn = tdb_old_hash;
165         return check_header_hash(tdb, header, false, m1, m2);
166 }
167
168 _PUBLIC_ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
169                                 int open_flags, mode_t mode,
170                                 const struct tdb_logging_context *log_ctx,
171                                 tdb_hash_func hash_fn)
172 {
173         struct tdb_header header;
174         struct tdb_context *tdb;
175         struct stat st;
176         int rev = 0, locked = 0;
177         unsigned char *vp;
178         uint32_t vertest;
179         unsigned v;
180         const char *hash_alg;
181         uint32_t magic1, magic2;
182
183         ZERO_STRUCT(header);
184
185         if (!(tdb = (struct tdb_context *)calloc(1, sizeof *tdb))) {
186                 /* Can't log this */
187                 errno = ENOMEM;
188                 goto fail;
189         }
190         tdb_io_init(tdb);
191
192         if (tdb_flags & TDB_INTERNAL) {
193                 tdb_flags |= TDB_INCOMPATIBLE_HASH;
194         }
195
196         tdb->fd = -1;
197 #ifdef TDB_TRACE
198         tdb->tracefd = -1;
199 #endif
200         tdb->name = NULL;
201         tdb->map_ptr = NULL;
202         tdb->flags = tdb_flags;
203         tdb->open_flags = open_flags;
204         if (log_ctx) {
205                 tdb->log = *log_ctx;
206         } else {
207                 tdb->log.log_fn = null_log_fn;
208                 tdb->log.log_private = NULL;
209         }
210
211         if (name == NULL && (tdb_flags & TDB_INTERNAL)) {
212                 name = "__TDB_INTERNAL__";
213         }
214
215         if (name == NULL) {
216                 tdb->name = discard_const_p(char, "__NULL__");
217                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: called with name == NULL\n"));
218                 tdb->name = NULL;
219                 errno = EINVAL;
220                 goto fail;
221         }
222
223         /* now make a copy of the name, as the caller memory might go away */
224         if (!(tdb->name = (char *)strdup(name))) {
225                 /*
226                  * set the name as the given string, so that tdb_name() will
227                  * work in case of an error.
228                  */
229                 tdb->name = discard_const_p(char, name);
230                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't strdup(%s)\n",
231                          name));
232                 tdb->name = NULL;
233                 errno = ENOMEM;
234                 goto fail;
235         }
236
237         if (hash_fn) {
238                 tdb->hash_fn = hash_fn;
239                 hash_alg = "the user defined";
240         } else {
241                 /* This controls what we use when creating a tdb. */
242                 if (tdb->flags & TDB_INCOMPATIBLE_HASH) {
243                         tdb->hash_fn = tdb_jenkins_hash;
244                 } else {
245                         tdb->hash_fn = tdb_old_hash;
246                 }
247                 hash_alg = "either default";
248         }
249
250         /* cache the page size */
251         tdb->page_size = getpagesize();
252         if (tdb->page_size <= 0) {
253                 tdb->page_size = 0x2000;
254         }
255
256         tdb->max_dead_records = (tdb_flags & TDB_VOLATILE) ? 5 : 0;
257
258         if ((open_flags & O_ACCMODE) == O_WRONLY) {
259                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't open tdb %s write-only\n",
260                          name));
261                 errno = EINVAL;
262                 goto fail;
263         }
264
265         if (hash_size == 0)
266                 hash_size = DEFAULT_HASH_SIZE;
267         if ((open_flags & O_ACCMODE) == O_RDONLY) {
268                 tdb->read_only = 1;
269                 /* read only databases don't do locking or clear if first */
270                 tdb->flags |= TDB_NOLOCK;
271                 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
272         }
273
274         if ((tdb->flags & TDB_ALLOW_NESTING) &&
275             (tdb->flags & TDB_DISALLOW_NESTING)) {
276                 tdb->ecode = TDB_ERR_NESTING;
277                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
278                         "allow_nesting and disallow_nesting are not allowed together!"));
279                 errno = EINVAL;
280                 goto fail;
281         }
282
283         if (getenv("TDB_NO_FSYNC")) {
284                 tdb->flags |= TDB_NOSYNC;
285         }
286
287         /*
288          * TDB_ALLOW_NESTING is the default behavior.
289          * Note: this may change in future versions!
290          */
291         if (!(tdb->flags & TDB_DISALLOW_NESTING)) {
292                 tdb->flags |= TDB_ALLOW_NESTING;
293         }
294
295         /* internal databases don't mmap or lock, and start off cleared */
296         if (tdb->flags & TDB_INTERNAL) {
297                 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
298                 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
299                 if (tdb_new_database(tdb, &header, hash_size) != 0) {
300                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: tdb_new_database failed!"));
301                         goto fail;
302                 }
303                 tdb->hash_size = hash_size;
304                 goto internal;
305         }
306
307         if ((tdb->fd = open(name, open_flags, mode)) == -1) {
308                 TDB_LOG((tdb, TDB_DEBUG_WARNING, "tdb_open_ex: could not open file %s: %s\n",
309                          name, strerror(errno)));
310                 goto fail;      /* errno set by open(2) */
311         }
312
313         /* on exec, don't inherit the fd */
314         v = fcntl(tdb->fd, F_GETFD, 0);
315         fcntl(tdb->fd, F_SETFD, v | FD_CLOEXEC);
316
317         /* ensure there is only one process initialising at once */
318         if (tdb_nest_lock(tdb, OPEN_LOCK, F_WRLCK, TDB_LOCK_WAIT) == -1) {
319                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to get open lock on %s: %s\n",
320                          name, strerror(errno)));
321                 goto fail;      /* errno set by tdb_brlock */
322         }
323
324         /* we need to zero database if we are the only one with it open */
325         if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
326             (!tdb->read_only) &&
327             (locked = (tdb_nest_lock(tdb, ACTIVE_LOCK, F_WRLCK, TDB_LOCK_NOWAIT|TDB_LOCK_PROBE) == 0))) {
328                 int ret;
329                 ret = tdb_brlock(tdb, F_WRLCK, FREELIST_TOP, 0,
330                                  TDB_LOCK_WAIT);
331                 if (ret == -1) {
332                         TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
333                                  "tdb_brlock failed for %s: %s\n",
334                                  name, strerror(errno)));
335                         goto fail;
336                 }
337                 ret = tdb_new_database(tdb, &header, hash_size);
338                 if (ret == -1) {
339                         TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
340                                  "tdb_new_database failed for %s: %s\n",
341                                  name, strerror(errno)));
342                         tdb_unlockall(tdb);
343                         goto fail;
344                 }
345                 ret = tdb_brunlock(tdb, F_WRLCK, FREELIST_TOP, 0);
346                 if (ret == -1) {
347                         TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
348                                  "tdb_unlockall failed for %s: %s\n",
349                                  name, strerror(errno)));
350                         goto fail;
351                 }
352                 ret = lseek(tdb->fd, 0, SEEK_SET);
353                 if (ret == -1) {
354                         TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
355                                  "lseek failed for %s: %s\n",
356                                  name, strerror(errno)));
357                         goto fail;
358                 }
359         }
360
361         errno = 0;
362         if (read(tdb->fd, &header, sizeof(header)) != sizeof(header)
363             || strcmp(header.magic_food, TDB_MAGIC_FOOD) != 0) {
364                 if (!(open_flags & O_CREAT) ||
365                     tdb_new_database(tdb, &header, hash_size) == -1) {
366                         if (errno == 0) {
367                                 errno = EIO; /* ie bad format or something */
368                         }
369                         goto fail;
370                 }
371                 rev = (tdb->flags & TDB_CONVERT);
372         } else if (header.version != TDB_VERSION
373                    && !(rev = (header.version==TDB_BYTEREV(TDB_VERSION)))) {
374                 /* wrong version */
375                 errno = EIO;
376                 goto fail;
377         }
378         vp = (unsigned char *)&header.version;
379         vertest = (((uint32_t)vp[0]) << 24) | (((uint32_t)vp[1]) << 16) |
380                   (((uint32_t)vp[2]) << 8) | (uint32_t)vp[3];
381         tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
382         if (!rev)
383                 tdb->flags &= ~TDB_CONVERT;
384         else {
385                 tdb->flags |= TDB_CONVERT;
386                 tdb_convert(&header, sizeof(header));
387         }
388         if (fstat(tdb->fd, &st) == -1)
389                 goto fail;
390
391         if (header.rwlocks != 0 &&
392             header.rwlocks != TDB_HASH_RWLOCK_MAGIC) {
393                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: spinlocks no longer supported\n"));
394                 goto fail;
395         }
396         tdb->hash_size = header.hash_size;
397
398         if ((header.magic1_hash == 0) && (header.magic2_hash == 0)) {
399                 /* older TDB without magic hash references */
400                 tdb->hash_fn = tdb_old_hash;
401         } else if (!check_header_hash(tdb, &header, !hash_fn,
402                                       &magic1, &magic2)) {
403                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
404                          "%s was not created with %s hash function we are using\n"
405                          "magic1_hash[0x%08X %s 0x%08X] "
406                          "magic2_hash[0x%08X %s 0x%08X]\n",
407                          name, hash_alg,
408                          header.magic1_hash,
409                          (header.magic1_hash == magic1) ? "==" : "!=",
410                          magic1,
411                          header.magic2_hash,
412                          (header.magic2_hash == magic2) ? "==" : "!=",
413                          magic2));
414                 errno = EINVAL;
415                 goto fail;
416         }
417
418         /* Is it already in the open list?  If so, fail. */
419         if (tdb_already_open(st.st_dev, st.st_ino)) {
420                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
421                          "%s (%d,%d) is already open in this process\n",
422                          name, (int)st.st_dev, (int)st.st_ino));
423                 errno = EBUSY;
424                 goto fail;
425         }
426
427         /* Beware truncation! */
428         tdb->map_size = st.st_size;
429         if (tdb->map_size != st.st_size) {
430                 /* Ensure ecode is set for log fn. */
431                 tdb->ecode = TDB_ERR_IO;
432                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
433                          "len %llu too large!\n", (long long)st.st_size));
434                 errno = EIO;
435                 goto fail;
436         }
437
438         tdb->device = st.st_dev;
439         tdb->inode = st.st_ino;
440         tdb_mmap(tdb);
441         if (locked) {
442                 if (tdb_nest_unlock(tdb, ACTIVE_LOCK, F_WRLCK, false) == -1) {
443                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
444                                  "failed to release ACTIVE_LOCK on %s: %s\n",
445                                  name, strerror(errno)));
446                         goto fail;
447                 }
448
449         }
450
451         /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
452            we didn't get the initial exclusive lock as we need to let all other
453            users know we're using it. */
454
455         if (tdb_flags & TDB_CLEAR_IF_FIRST) {
456                 /* leave this lock in place to indicate it's in use */
457                 if (tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
458                         goto fail;
459                 }
460         }
461
462         /* if needed, run recovery */
463         if (tdb_transaction_recover(tdb) == -1) {
464                 goto fail;
465         }
466
467 #ifdef TDB_TRACE
468         {
469                 char tracefile[strlen(name) + 32];
470
471                 snprintf(tracefile, sizeof(tracefile),
472                          "%s.trace.%li", name, (long)getpid());
473                 tdb->tracefd = open(tracefile, O_WRONLY|O_CREAT|O_EXCL, 0600);
474                 if (tdb->tracefd >= 0) {
475                         tdb_enable_seqnum(tdb);
476                         tdb_trace_open(tdb, "tdb_open", hash_size, tdb_flags,
477                                        open_flags);
478                 } else
479                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to open trace file %s!\n", tracefile));
480         }
481 #endif
482
483  internal:
484         /* Internal (memory-only) databases skip all the code above to
485          * do with disk files, and resume here by releasing their
486          * open lock and hooking into the active list. */
487         if (tdb_nest_unlock(tdb, OPEN_LOCK, F_WRLCK, false) == -1) {
488                 goto fail;
489         }
490         tdb->next = tdbs;
491         tdbs = tdb;
492         return tdb;
493
494  fail:
495         { int save_errno = errno;
496
497         if (!tdb)
498                 return NULL;
499
500 #ifdef TDB_TRACE
501         close(tdb->tracefd);
502 #endif
503         if (tdb->map_ptr) {
504                 if (tdb->flags & TDB_INTERNAL)
505                         SAFE_FREE(tdb->map_ptr);
506                 else
507                         tdb_munmap(tdb);
508         }
509         if (tdb->fd != -1)
510                 if (close(tdb->fd) != 0)
511                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to close tdb->fd on error!\n"));
512         SAFE_FREE(tdb->lockrecs);
513         SAFE_FREE(tdb->name);
514         SAFE_FREE(tdb);
515         errno = save_errno;
516         return NULL;
517         }
518 }
519
520 /*
521  * Set the maximum number of dead records per hash chain
522  */
523
524 _PUBLIC_ void tdb_set_max_dead(struct tdb_context *tdb, int max_dead)
525 {
526         tdb->max_dead_records = max_dead;
527 }
528
529 /**
530  * Close a database.
531  *
532  * @returns -1 for error; 0 for success.
533  **/
534 _PUBLIC_ int tdb_close(struct tdb_context *tdb)
535 {
536         struct tdb_context **i;
537         int ret = 0;
538
539         if (tdb->transaction) {
540                 tdb_transaction_cancel(tdb);
541         }
542         tdb_trace(tdb, "tdb_close");
543
544         if (tdb->map_ptr) {
545                 if (tdb->flags & TDB_INTERNAL)
546                         SAFE_FREE(tdb->map_ptr);
547                 else
548                         tdb_munmap(tdb);
549         }
550         SAFE_FREE(tdb->name);
551         if (tdb->fd != -1) {
552                 ret = close(tdb->fd);
553                 tdb->fd = -1;
554         }
555         SAFE_FREE(tdb->lockrecs);
556
557         /* Remove from contexts list */
558         for (i = &tdbs; *i; i = &(*i)->next) {
559                 if (*i == tdb) {
560                         *i = tdb->next;
561                         break;
562                 }
563         }
564
565 #ifdef TDB_TRACE
566         close(tdb->tracefd);
567 #endif
568         memset(tdb, 0, sizeof(*tdb));
569         SAFE_FREE(tdb);
570
571         return ret;
572 }
573
574 /* register a loging function */
575 _PUBLIC_ void tdb_set_logging_function(struct tdb_context *tdb,
576                                        const struct tdb_logging_context *log_ctx)
577 {
578         tdb->log = *log_ctx;
579 }
580
581 _PUBLIC_ void *tdb_get_logging_private(struct tdb_context *tdb)
582 {
583         return tdb->log.log_private;
584 }
585
586 static int tdb_reopen_internal(struct tdb_context *tdb, bool active_lock)
587 {
588 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
589         !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
590         struct stat st;
591 #endif
592
593         if (tdb->flags & TDB_INTERNAL) {
594                 return 0; /* Nothing to do. */
595         }
596
597         if (tdb_have_extra_locks(tdb)) {
598                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed with locks held\n"));
599                 goto fail;
600         }
601
602         if (tdb->transaction != 0) {
603                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed inside a transaction\n"));
604                 goto fail;
605         }
606
607 /* If we have real pread & pwrite, we can skip reopen. */
608 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
609         !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
610         if (tdb_munmap(tdb) != 0) {
611                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
612                 goto fail;
613         }
614         if (close(tdb->fd) != 0)
615                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
616         tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
617         if (tdb->fd == -1) {
618                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: open failed (%s)\n", strerror(errno)));
619                 goto fail;
620         }
621         if (fstat(tdb->fd, &st) != 0) {
622                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
623                 goto fail;
624         }
625         if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
626                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: file dev/inode has changed!\n"));
627                 goto fail;
628         }
629         if (tdb_mmap(tdb) != 0) {
630                 goto fail;
631         }
632 #endif /* fake pread or pwrite */
633
634         /* We may still think we hold the active lock. */
635         tdb->num_lockrecs = 0;
636         SAFE_FREE(tdb->lockrecs);
637         tdb->lockrecs_array_length = 0;
638
639         if (active_lock && tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
640                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: failed to obtain active lock\n"));
641                 goto fail;
642         }
643
644         return 0;
645
646 fail:
647         tdb_close(tdb);
648         return -1;
649 }
650
651 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
652    seek pointer from our parent and to re-establish locks */
653 _PUBLIC_ int tdb_reopen(struct tdb_context *tdb)
654 {
655         return tdb_reopen_internal(tdb, tdb->flags & TDB_CLEAR_IF_FIRST);
656 }
657
658 /* reopen all tdb's */
659 _PUBLIC_ int tdb_reopen_all(int parent_longlived)
660 {
661         struct tdb_context *tdb;
662
663         for (tdb=tdbs; tdb; tdb = tdb->next) {
664                 bool active_lock = (tdb->flags & TDB_CLEAR_IF_FIRST);
665
666                 /*
667                  * If the parent is longlived (ie. a
668                  * parent daemon architecture), we know
669                  * it will keep it's active lock on a
670                  * tdb opened with CLEAR_IF_FIRST. Thus
671                  * for child processes we don't have to
672                  * add an active lock. This is essential
673                  * to improve performance on systems that
674                  * keep POSIX locks as a non-scalable data
675                  * structure in the kernel.
676                  */
677                 if (parent_longlived) {
678                         /* Ensure no clear-if-first. */
679                         active_lock = false;
680                 }
681
682                 if (tdb_reopen_internal(tdb, active_lock) != 0)
683                         return -1;
684         }
685
686         return 0;
687 }