r6238: Ensure if realloc fails on an internal
[Samba/ekacnet.git] / source4 / lib / tdb / common / tdb.c
blob6554ec5697aec7224f113abd61d4d780ac838f51
1 /*
2 Unix SMB/CIFS implementation.
4 trivial database library
6 Copyright (C) Andrew Tridgell 1999-2004
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 2 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, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 /* NOTE: If you use tdbs under valgrind, and in particular if you run
31 * tdbtorture, you may get spurious "uninitialized value" warnings. I
32 * think this is because valgrind doesn't understand that the mmap'd
33 * area may be written to by other processes. Memory can, from the
34 * point of view of the grinded process, spontaneously become
35 * initialized.
37 * I can think of a few solutions. [mbp 20030311]
39 * 1 - Write suppressions for Valgrind so that it doesn't complain
40 * about this. Probably the most reasonable but people need to
41 * remember to use them.
43 * 2 - Use IO not mmap when running under valgrind. Not so nice.
45 * 3 - Use the special valgrind macros to mark memory as valid at the
46 * right time. Probably too hard -- the process just doesn't know.
47 */
49 #ifndef _SAMBA_BUILD_
50 #if HAVE_CONFIG_H
51 #include <config.h>
52 #endif
54 #include <stdlib.h>
55 #include <stdio.h>
56 #include <stdint.h>
57 #include <fcntl.h>
58 #include <unistd.h>
59 #include <string.h>
60 #include <fcntl.h>
61 #include <errno.h>
62 #include <sys/mman.h>
63 #include <sys/stat.h>
64 #include "tdb.h"
65 #else
66 #include "includes.h"
67 #include "lib/tdb/include/tdb.h"
68 #include "system/time.h"
69 #include "system/shmem.h"
70 #include "system/filesys.h"
71 #endif
73 #define TDB_MAGIC_FOOD "TDB file\n"
74 #define TDB_VERSION (0x26011967 + 6)
75 #define TDB_MAGIC (0x26011999U)
76 #define TDB_FREE_MAGIC (~TDB_MAGIC)
77 #define TDB_DEAD_MAGIC (0xFEE1DEAD)
78 #define TDB_ALIGNMENT 4
79 #define MIN_REC_SIZE (2*sizeof(struct list_struct) + TDB_ALIGNMENT)
80 #define DEFAULT_HASH_SIZE 131
81 #define TDB_PAGE_SIZE 0x2000
82 #define FREELIST_TOP (sizeof(struct tdb_header))
83 #define TDB_ALIGN(x,a) (((x) + (a)-1) & ~((a)-1))
84 #define TDB_BYTEREV(x) (((((x)&0xff)<<24)|((x)&0xFF00)<<8)|(((x)>>8)&0xFF00)|((x)>>24))
85 #define TDB_DEAD(r) ((r)->magic == TDB_DEAD_MAGIC)
86 #define TDB_BAD_MAGIC(r) ((r)->magic != TDB_MAGIC && !TDB_DEAD(r))
87 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off))
88 #define TDB_DATA_START(hash_size) (TDB_HASH_TOP(hash_size-1) + TDB_SPINLOCK_SIZE(hash_size))
91 /* NB assumes there is a local variable called "tdb" that is the
92 * current context, also takes doubly-parenthesized print-style
93 * argument. */
94 #define TDB_LOG(x) tdb->log_fn x
96 /* lock offsets */
97 #define GLOBAL_LOCK 0
98 #define ACTIVE_LOCK 4
100 #ifndef MAP_FILE
101 #define MAP_FILE 0
102 #endif
104 #ifndef MAP_FAILED
105 #define MAP_FAILED ((void *)-1)
106 #endif
108 /* free memory if the pointer is valid and zero the pointer */
109 #ifndef SAFE_FREE
110 #define SAFE_FREE(x) do { if ((x) != NULL) {free((x)); (x)=NULL;} } while(0)
111 #endif
113 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
114 TDB_DATA tdb_null;
116 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
117 static TDB_CONTEXT *tdbs = NULL;
119 static int tdb_munmap(TDB_CONTEXT *tdb)
121 if (tdb->flags & TDB_INTERNAL)
122 return 0;
124 #ifdef HAVE_MMAP
125 if (tdb->map_ptr) {
126 int ret = munmap(tdb->map_ptr, tdb->map_size);
127 if (ret != 0)
128 return ret;
130 #endif
131 tdb->map_ptr = NULL;
132 return 0;
135 static void tdb_mmap(TDB_CONTEXT *tdb)
137 if (tdb->flags & TDB_INTERNAL)
138 return;
140 #ifdef HAVE_MMAP
141 if (!(tdb->flags & TDB_NOMMAP)) {
142 tdb->map_ptr = mmap(NULL, tdb->map_size,
143 PROT_READ|(tdb->read_only? 0:PROT_WRITE),
144 MAP_SHARED|MAP_FILE, tdb->fd, 0);
147 * NB. When mmap fails it returns MAP_FAILED *NOT* NULL !!!!
150 if (tdb->map_ptr == MAP_FAILED) {
151 tdb->map_ptr = NULL;
152 TDB_LOG((tdb, 2, "tdb_mmap failed for size %d (%s)\n",
153 tdb->map_size, strerror(errno)));
155 } else {
156 tdb->map_ptr = NULL;
158 #else
159 tdb->map_ptr = NULL;
160 #endif
163 /* Endian conversion: we only ever deal with 4 byte quantities */
164 static void *convert(void *buf, u32 size)
166 u32 i, *p = buf;
167 for (i = 0; i < size / 4; i++)
168 p[i] = TDB_BYTEREV(p[i]);
169 return buf;
171 #define DOCONV() (tdb->flags & TDB_CONVERT)
172 #define CONVERT(x) (DOCONV() ? convert(&x, sizeof(x)) : &x)
174 /* the body of the database is made of one list_struct for the free space
175 plus a separate data list for each hash value */
176 struct list_struct {
177 tdb_off next; /* offset of the next record in the list */
178 tdb_len rec_len; /* total byte length of record */
179 tdb_len key_len; /* byte length of key */
180 tdb_len data_len; /* byte length of data */
181 u32 full_hash; /* the full 32 bit hash of the key */
182 u32 magic; /* try to catch errors */
183 /* the following union is implied:
184 union {
185 char record[rec_len];
186 struct {
187 char key[key_len];
188 char data[data_len];
190 u32 totalsize; (tailer)
195 /* a byte range locking function - return 0 on success
196 this functions locks/unlocks 1 byte at the specified offset.
198 On error, errno is also set so that errors are passed back properly
199 through tdb_open(). */
200 static int tdb_brlock(TDB_CONTEXT *tdb, tdb_off offset,
201 int rw_type, int lck_type, int probe)
203 struct flock fl;
204 int ret;
206 if (tdb->flags & TDB_NOLOCK)
207 return 0;
208 if ((rw_type == F_WRLCK) && (tdb->read_only)) {
209 errno = EACCES;
210 return -1;
213 fl.l_type = rw_type;
214 fl.l_whence = SEEK_SET;
215 fl.l_start = offset;
216 fl.l_len = 1;
217 fl.l_pid = 0;
219 do {
220 ret = fcntl(tdb->fd,lck_type,&fl);
221 } while (ret == -1 && errno == EINTR);
223 if (ret == -1) {
224 if (!probe && lck_type != F_SETLK) {
225 /* Ensure error code is set for log fun to examine. */
226 tdb->ecode = TDB_ERR_LOCK;
227 TDB_LOG((tdb, 5,"tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d\n",
228 tdb->fd, offset, rw_type, lck_type));
230 /* Generic lock error. errno set by fcntl.
231 * EAGAIN is an expected return from non-blocking
232 * locks. */
233 if (errno != EAGAIN) {
234 TDB_LOG((tdb, 5, "tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d: %s\n",
235 tdb->fd, offset, rw_type, lck_type,
236 strerror(errno)));
238 return TDB_ERRCODE(TDB_ERR_LOCK, -1);
240 return 0;
243 /* lock a list in the database. list -1 is the alloc list */
244 static int tdb_lock(TDB_CONTEXT *tdb, int list, int ltype)
246 if (list < -1 || list >= (int)tdb->header.hash_size) {
247 TDB_LOG((tdb, 0,"tdb_lock: invalid list %d for ltype=%d\n",
248 list, ltype));
249 return -1;
251 if (tdb->flags & TDB_NOLOCK)
252 return 0;
254 /* Since fcntl locks don't nest, we do a lock for the first one,
255 and simply bump the count for future ones */
256 if (tdb->locked[list+1].count == 0) {
257 if (!tdb->read_only && tdb->header.rwlocks) {
258 if (tdb_spinlock(tdb, list, ltype)) {
259 TDB_LOG((tdb, 0, "tdb_lock spinlock failed on list %d ltype=%d\n",
260 list, ltype));
261 return -1;
263 } else if (tdb_brlock(tdb,FREELIST_TOP+4*list,ltype,F_SETLKW, 0)) {
264 TDB_LOG((tdb, 0,"tdb_lock failed on list %d ltype=%d (%s)\n",
265 list, ltype, strerror(errno)));
266 return -1;
268 tdb->locked[list+1].ltype = ltype;
270 tdb->locked[list+1].count++;
271 return 0;
274 /* unlock the database: returns void because it's too late for errors. */
275 /* changed to return int it may be interesting to know there
276 has been an error --simo */
277 static int tdb_unlock(TDB_CONTEXT *tdb, int list, int ltype)
279 int ret = -1;
281 if (tdb->flags & TDB_NOLOCK)
282 return 0;
284 /* Sanity checks */
285 if (list < -1 || list >= (int)tdb->header.hash_size) {
286 TDB_LOG((tdb, 0, "tdb_unlock: list %d invalid (%d)\n", list, tdb->header.hash_size));
287 return ret;
290 if (tdb->locked[list+1].count==0) {
291 TDB_LOG((tdb, 0, "tdb_unlock: count is 0\n"));
292 return ret;
295 if (tdb->locked[list+1].count == 1) {
296 /* Down to last nested lock: unlock underneath */
297 if (!tdb->read_only && tdb->header.rwlocks) {
298 ret = tdb_spinunlock(tdb, list, ltype);
299 } else {
300 ret = tdb_brlock(tdb, FREELIST_TOP+4*list, F_UNLCK, F_SETLKW, 0);
302 } else {
303 ret = 0;
305 tdb->locked[list+1].count--;
307 if (ret)
308 TDB_LOG((tdb, 0,"tdb_unlock: An error occurred unlocking!\n"));
309 return ret;
312 /* This is based on the hash algorithm from gdbm */
313 static u32 default_tdb_hash(TDB_DATA *key)
315 u32 value; /* Used to compute the hash value. */
316 u32 i; /* Used to cycle through random values. */
318 /* Set the initial value from the key size. */
319 for (value = 0x238F13AF * key->dsize, i=0; i < key->dsize; i++)
320 value = (value + (key->dptr[i] << (i*5 % 24)));
322 return (1103515243 * value + 12345);
325 /* check for an out of bounds access - if it is out of bounds then
326 see if the database has been expanded by someone else and expand
327 if necessary
328 note that "len" is the minimum length needed for the db
330 static int tdb_oob(TDB_CONTEXT *tdb, tdb_off len, int probe)
332 struct stat st;
333 if (len <= tdb->map_size)
334 return 0;
335 if (tdb->flags & TDB_INTERNAL) {
336 if (!probe) {
337 /* Ensure ecode is set for log fn. */
338 tdb->ecode = TDB_ERR_IO;
339 TDB_LOG((tdb, 0,"tdb_oob len %d beyond internal malloc size %d\n",
340 (int)len, (int)tdb->map_size));
342 return TDB_ERRCODE(TDB_ERR_IO, -1);
345 if (fstat(tdb->fd, &st) == -1)
346 return TDB_ERRCODE(TDB_ERR_IO, -1);
348 if (st.st_size < (size_t)len) {
349 if (!probe) {
350 /* Ensure ecode is set for log fn. */
351 tdb->ecode = TDB_ERR_IO;
352 TDB_LOG((tdb, 0,"tdb_oob len %d beyond eof at %d\n",
353 (int)len, (int)st.st_size));
355 return TDB_ERRCODE(TDB_ERR_IO, -1);
358 /* Unmap, update size, remap */
359 if (tdb_munmap(tdb) == -1)
360 return TDB_ERRCODE(TDB_ERR_IO, -1);
361 tdb->map_size = st.st_size;
362 tdb_mmap(tdb);
363 return 0;
366 /* write a lump of data at a specified offset */
367 static int tdb_write(TDB_CONTEXT *tdb, tdb_off off, void *buf, tdb_len len)
369 if (tdb_oob(tdb, off + len, 0) != 0)
370 return -1;
372 if (tdb->map_ptr)
373 memcpy(off + (char *)tdb->map_ptr, buf, len);
374 #ifdef HAVE_PWRITE
375 else if (pwrite(tdb->fd, buf, len, off) != (ssize_t)len) {
376 #else
377 else if (lseek(tdb->fd, off, SEEK_SET) != off
378 || write(tdb->fd, buf, len) != (ssize_t)len) {
379 #endif
380 /* Ensure ecode is set for log fn. */
381 tdb->ecode = TDB_ERR_IO;
382 TDB_LOG((tdb, 0,"tdb_write failed at %d len=%d (%s)\n",
383 off, len, strerror(errno)));
384 return TDB_ERRCODE(TDB_ERR_IO, -1);
386 return 0;
389 /* read a lump of data at a specified offset, maybe convert */
390 static int tdb_read(TDB_CONTEXT *tdb,tdb_off off,void *buf,tdb_len len,int cv)
392 if (tdb_oob(tdb, off + len, 0) != 0)
393 return -1;
395 if (tdb->map_ptr)
396 memcpy(buf, off + (char *)tdb->map_ptr, len);
397 #ifdef HAVE_PREAD
398 else if (pread(tdb->fd, buf, len, off) != (ssize_t)len) {
399 #else
400 else if (lseek(tdb->fd, off, SEEK_SET) != off
401 || read(tdb->fd, buf, len) != (ssize_t)len) {
402 #endif
403 /* Ensure ecode is set for log fn. */
404 tdb->ecode = TDB_ERR_IO;
405 TDB_LOG((tdb, 0,"tdb_read failed at %d len=%d (%s)\n",
406 off, len, strerror(errno)));
407 return TDB_ERRCODE(TDB_ERR_IO, -1);
409 if (cv)
410 convert(buf, len);
411 return 0;
414 /* read a lump of data, allocating the space for it */
415 static char *tdb_alloc_read(TDB_CONTEXT *tdb, tdb_off offset, tdb_len len)
417 char *buf;
419 if (!(buf = malloc(len))) {
420 /* Ensure ecode is set for log fn. */
421 tdb->ecode = TDB_ERR_OOM;
422 TDB_LOG((tdb, 0,"tdb_alloc_read malloc failed len=%d (%s)\n",
423 len, strerror(errno)));
424 return TDB_ERRCODE(TDB_ERR_OOM, buf);
426 if (tdb_read(tdb, offset, buf, len, 0) == -1) {
427 SAFE_FREE(buf);
428 return NULL;
430 return buf;
433 /* read/write a tdb_off */
434 static int ofs_read(TDB_CONTEXT *tdb, tdb_off offset, tdb_off *d)
436 return tdb_read(tdb, offset, (char*)d, sizeof(*d), DOCONV());
438 static int ofs_write(TDB_CONTEXT *tdb, tdb_off offset, tdb_off *d)
440 tdb_off off = *d;
441 return tdb_write(tdb, offset, CONVERT(off), sizeof(*d));
444 /* read/write a record */
445 static int rec_read(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec)
447 if (tdb_read(tdb, offset, rec, sizeof(*rec),DOCONV()) == -1)
448 return -1;
449 if (TDB_BAD_MAGIC(rec)) {
450 /* Ensure ecode is set for log fn. */
451 tdb->ecode = TDB_ERR_CORRUPT;
452 TDB_LOG((tdb, 0,"rec_read bad magic 0x%x at offset=%d\n", rec->magic, offset));
453 return TDB_ERRCODE(TDB_ERR_CORRUPT, -1);
455 return tdb_oob(tdb, rec->next+sizeof(*rec), 0);
457 static int rec_write(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec)
459 struct list_struct r = *rec;
460 return tdb_write(tdb, offset, CONVERT(r), sizeof(r));
463 /* read a freelist record and check for simple errors */
464 static int rec_free_read(TDB_CONTEXT *tdb, tdb_off off, struct list_struct *rec)
466 if (tdb_read(tdb, off, rec, sizeof(*rec),DOCONV()) == -1)
467 return -1;
469 if (rec->magic == TDB_MAGIC) {
470 /* this happens when a app is showdown while deleting a record - we should
471 not completely fail when this happens */
472 TDB_LOG((tdb, 0,"rec_free_read non-free magic 0x%x at offset=%d - fixing\n",
473 rec->magic, off));
474 rec->magic = TDB_FREE_MAGIC;
475 if (tdb_write(tdb, off, rec, sizeof(*rec)) == -1)
476 return -1;
479 if (rec->magic != TDB_FREE_MAGIC) {
480 /* Ensure ecode is set for log fn. */
481 tdb->ecode = TDB_ERR_CORRUPT;
482 TDB_LOG((tdb, 0,"rec_free_read bad magic 0x%x at offset=%d\n",
483 rec->magic, off));
484 return TDB_ERRCODE(TDB_ERR_CORRUPT, -1);
486 if (tdb_oob(tdb, rec->next+sizeof(*rec), 0) != 0)
487 return -1;
488 return 0;
491 /* update a record tailer (must hold allocation lock) */
492 static int update_tailer(TDB_CONTEXT *tdb, tdb_off offset,
493 const struct list_struct *rec)
495 tdb_off totalsize;
497 /* Offset of tailer from record header */
498 totalsize = sizeof(*rec) + rec->rec_len;
499 return ofs_write(tdb, offset + totalsize - sizeof(tdb_off),
500 &totalsize);
503 static tdb_off tdb_dump_record(TDB_CONTEXT *tdb, tdb_off offset)
505 struct list_struct rec;
506 tdb_off tailer_ofs, tailer;
508 if (tdb_read(tdb, offset, (char *)&rec, sizeof(rec), DOCONV()) == -1) {
509 printf("ERROR: failed to read record at %u\n", offset);
510 return 0;
513 printf(" rec: offset=0x%08x next=0x%08x rec_len=%d key_len=%d data_len=%d full_hash=0x%x magic=0x%x\n",
514 offset, rec.next, rec.rec_len, rec.key_len, rec.data_len, rec.full_hash, rec.magic);
516 tailer_ofs = offset + sizeof(rec) + rec.rec_len - sizeof(tdb_off);
517 if (ofs_read(tdb, tailer_ofs, &tailer) == -1) {
518 printf("ERROR: failed to read tailer at %u\n", tailer_ofs);
519 return rec.next;
522 if (tailer != rec.rec_len + sizeof(rec)) {
523 printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n",
524 (unsigned int)tailer, (unsigned int)(rec.rec_len + sizeof(rec)));
526 return rec.next;
529 static int tdb_dump_chain(TDB_CONTEXT *tdb, int i)
531 tdb_off rec_ptr, top;
533 top = TDB_HASH_TOP(i);
535 if (tdb_lock(tdb, i, F_WRLCK) != 0)
536 return -1;
538 if (ofs_read(tdb, top, &rec_ptr) == -1)
539 return tdb_unlock(tdb, i, F_WRLCK);
541 if (rec_ptr)
542 printf("hash=%d\n", i);
544 while (rec_ptr) {
545 rec_ptr = tdb_dump_record(tdb, rec_ptr);
548 return tdb_unlock(tdb, i, F_WRLCK);
551 void tdb_dump_all(TDB_CONTEXT *tdb)
553 int i;
554 for (i=0;i<tdb->header.hash_size;i++) {
555 tdb_dump_chain(tdb, i);
557 printf("freelist:\n");
558 tdb_dump_chain(tdb, -1);
561 int tdb_printfreelist(TDB_CONTEXT *tdb)
563 int ret;
564 long total_free = 0;
565 tdb_off offset, rec_ptr;
566 struct list_struct rec;
568 if ((ret = tdb_lock(tdb, -1, F_WRLCK)) != 0)
569 return ret;
571 offset = FREELIST_TOP;
573 /* read in the freelist top */
574 if (ofs_read(tdb, offset, &rec_ptr) == -1) {
575 tdb_unlock(tdb, -1, F_WRLCK);
576 return 0;
579 printf("freelist top=[0x%08x]\n", rec_ptr );
580 while (rec_ptr) {
581 if (tdb_read(tdb, rec_ptr, (char *)&rec, sizeof(rec), DOCONV()) == -1) {
582 tdb_unlock(tdb, -1, F_WRLCK);
583 return -1;
586 if (rec.magic != TDB_FREE_MAGIC) {
587 printf("bad magic 0x%08x in free list\n", rec.magic);
588 tdb_unlock(tdb, -1, F_WRLCK);
589 return -1;
592 printf("entry offset=[0x%08x], rec.rec_len = [0x%08x (%d)] (end = 0x%08x)\n",
593 rec_ptr, rec.rec_len, rec.rec_len, rec_ptr + rec.rec_len);
594 total_free += rec.rec_len;
596 /* move to the next record */
597 rec_ptr = rec.next;
599 printf("total rec_len = [0x%08x (%d)]\n", (int)total_free,
600 (int)total_free);
602 return tdb_unlock(tdb, -1, F_WRLCK);
605 /* Remove an element from the freelist. Must have alloc lock. */
606 static int remove_from_freelist(TDB_CONTEXT *tdb, tdb_off off, tdb_off next)
608 tdb_off last_ptr, i;
610 /* read in the freelist top */
611 last_ptr = FREELIST_TOP;
612 while (ofs_read(tdb, last_ptr, &i) != -1 && i != 0) {
613 if (i == off) {
614 /* We've found it! */
615 return ofs_write(tdb, last_ptr, &next);
617 /* Follow chain (next offset is at start of record) */
618 last_ptr = i;
620 TDB_LOG((tdb, 0,"remove_from_freelist: not on list at off=%d\n", off));
621 return TDB_ERRCODE(TDB_ERR_CORRUPT, -1);
624 /* Add an element into the freelist. Merge adjacent records if
625 neccessary. */
626 static int tdb_free(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec)
628 tdb_off right, left;
630 /* Allocation and tailer lock */
631 if (tdb_lock(tdb, -1, F_WRLCK) != 0)
632 return -1;
634 /* set an initial tailer, so if we fail we don't leave a bogus record */
635 if (update_tailer(tdb, offset, rec) != 0) {
636 TDB_LOG((tdb, 0, "tdb_free: upfate_tailer failed!\n"));
637 goto fail;
640 /* Look right first (I'm an Australian, dammit) */
641 right = offset + sizeof(*rec) + rec->rec_len;
642 if (right + sizeof(*rec) <= tdb->map_size) {
643 struct list_struct r;
645 if (tdb_read(tdb, right, &r, sizeof(r), DOCONV()) == -1) {
646 TDB_LOG((tdb, 0, "tdb_free: right read failed at %u\n", right));
647 goto left;
650 /* If it's free, expand to include it. */
651 if (r.magic == TDB_FREE_MAGIC) {
652 if (remove_from_freelist(tdb, right, r.next) == -1) {
653 TDB_LOG((tdb, 0, "tdb_free: right free failed at %u\n", right));
654 goto left;
656 rec->rec_len += sizeof(r) + r.rec_len;
660 left:
661 /* Look left */
662 left = offset - sizeof(tdb_off);
663 if (left > TDB_DATA_START(tdb->header.hash_size)) {
664 struct list_struct l;
665 tdb_off leftsize;
667 /* Read in tailer and jump back to header */
668 if (ofs_read(tdb, left, &leftsize) == -1) {
669 TDB_LOG((tdb, 0, "tdb_free: left offset read failed at %u\n", left));
670 goto update;
672 left = offset - leftsize;
674 /* Now read in record */
675 if (tdb_read(tdb, left, &l, sizeof(l), DOCONV()) == -1) {
676 TDB_LOG((tdb, 0, "tdb_free: left read failed at %u (%u)\n", left, leftsize));
677 goto update;
680 /* If it's free, expand to include it. */
681 if (l.magic == TDB_FREE_MAGIC) {
682 if (remove_from_freelist(tdb, left, l.next) == -1) {
683 TDB_LOG((tdb, 0, "tdb_free: left free failed at %u\n", left));
684 goto update;
685 } else {
686 offset = left;
687 rec->rec_len += leftsize;
692 update:
693 if (update_tailer(tdb, offset, rec) == -1) {
694 TDB_LOG((tdb, 0, "tdb_free: update_tailer failed at %u\n", offset));
695 goto fail;
698 /* Now, prepend to free list */
699 rec->magic = TDB_FREE_MAGIC;
701 if (ofs_read(tdb, FREELIST_TOP, &rec->next) == -1 ||
702 rec_write(tdb, offset, rec) == -1 ||
703 ofs_write(tdb, FREELIST_TOP, &offset) == -1) {
704 TDB_LOG((tdb, 0, "tdb_free record write failed at offset=%d\n", offset));
705 goto fail;
708 /* And we're done. */
709 tdb_unlock(tdb, -1, F_WRLCK);
710 return 0;
712 fail:
713 tdb_unlock(tdb, -1, F_WRLCK);
714 return -1;
718 /* expand a file. we prefer to use ftruncate, as that is what posix
719 says to use for mmap expansion */
720 static int expand_file(TDB_CONTEXT *tdb, tdb_off size, tdb_off addition)
722 char buf[1024];
723 #if HAVE_FTRUNCATE_EXTEND
724 if (ftruncate(tdb->fd, size+addition) != 0) {
725 TDB_LOG((tdb, 0, "expand_file ftruncate to %d failed (%s)\n",
726 size+addition, strerror(errno)));
727 return -1;
729 #else
730 char b = 0;
732 #ifdef HAVE_PWRITE
733 if (pwrite(tdb->fd, &b, 1, (size+addition) - 1) != 1) {
734 #else
735 if (lseek(tdb->fd, (size+addition) - 1, SEEK_SET) != (size+addition) - 1 ||
736 write(tdb->fd, &b, 1) != 1) {
737 #endif
738 TDB_LOG((tdb, 0, "expand_file to %d failed (%s)\n",
739 size+addition, strerror(errno)));
740 return -1;
742 #endif
744 /* now fill the file with something. This ensures that the file isn't sparse, which would be
745 very bad if we ran out of disk. This must be done with write, not via mmap */
746 memset(buf, 0x42, sizeof(buf));
747 while (addition) {
748 int n = addition>sizeof(buf)?sizeof(buf):addition;
749 #ifdef HAVE_PWRITE
750 int ret = pwrite(tdb->fd, buf, n, size);
751 #else
752 int ret;
753 if (lseek(tdb->fd, size, SEEK_SET) != size)
754 return -1;
755 ret = write(tdb->fd, buf, n);
756 #endif
757 if (ret != n) {
758 TDB_LOG((tdb, 0, "expand_file write of %d failed (%s)\n",
759 n, strerror(errno)));
760 return -1;
762 addition -= n;
763 size += n;
765 return 0;
769 /* expand the database at least size bytes by expanding the underlying
770 file and doing the mmap again if necessary */
771 static int tdb_expand(TDB_CONTEXT *tdb, tdb_off size)
773 struct list_struct rec;
774 tdb_off offset;
776 if (tdb_lock(tdb, -1, F_WRLCK) == -1) {
777 TDB_LOG((tdb, 0, "lock failed in tdb_expand\n"));
778 return -1;
781 /* must know about any previous expansions by another process */
782 tdb_oob(tdb, tdb->map_size + 1, 1);
784 /* always make room for at least 10 more records, and round
785 the database up to a multiple of TDB_PAGE_SIZE */
786 size = TDB_ALIGN(tdb->map_size + size*10, TDB_PAGE_SIZE) - tdb->map_size;
788 if (!(tdb->flags & TDB_INTERNAL))
789 tdb_munmap(tdb);
792 * We must ensure the file is unmapped before doing this
793 * to ensure consistency with systems like OpenBSD where
794 * writes and mmaps are not consistent.
797 /* expand the file itself */
798 if (!(tdb->flags & TDB_INTERNAL)) {
799 if (expand_file(tdb, tdb->map_size, size) != 0)
800 goto fail;
803 tdb->map_size += size;
805 if (tdb->flags & TDB_INTERNAL) {
806 char *new_map_ptr = realloc(tdb->map_ptr, tdb->map_size);
807 if (!new_map_ptr) {
808 tdb->map_size -= size;
809 goto fail;
811 tdb->map_ptr = new_map_ptr;
812 } else {
814 * We must ensure the file is remapped before adding the space
815 * to ensure consistency with systems like OpenBSD where
816 * writes and mmaps are not consistent.
819 /* We're ok if the mmap fails as we'll fallback to read/write */
820 tdb_mmap(tdb);
823 /* form a new freelist record */
824 memset(&rec,'\0',sizeof(rec));
825 rec.rec_len = size - sizeof(rec);
827 /* link it into the free list */
828 offset = tdb->map_size - size;
829 if (tdb_free(tdb, offset, &rec) == -1)
830 goto fail;
832 tdb_unlock(tdb, -1, F_WRLCK);
833 return 0;
834 fail:
835 tdb_unlock(tdb, -1, F_WRLCK);
836 return -1;
841 the core of tdb_allocate - called when we have decided which
842 free list entry to use
844 static tdb_off tdb_allocate_ofs(TDB_CONTEXT *tdb, tdb_len length, tdb_off rec_ptr,
845 struct list_struct *rec, tdb_off last_ptr)
847 struct list_struct newrec;
848 tdb_off newrec_ptr;
850 memset(&newrec, '\0', sizeof(newrec));
852 /* found it - now possibly split it up */
853 if (rec->rec_len > length + MIN_REC_SIZE) {
854 /* Length of left piece */
855 length = TDB_ALIGN(length, TDB_ALIGNMENT);
857 /* Right piece to go on free list */
858 newrec.rec_len = rec->rec_len - (sizeof(*rec) + length);
859 newrec_ptr = rec_ptr + sizeof(*rec) + length;
861 /* And left record is shortened */
862 rec->rec_len = length;
863 } else {
864 newrec_ptr = 0;
867 /* Remove allocated record from the free list */
868 if (ofs_write(tdb, last_ptr, &rec->next) == -1) {
869 return 0;
872 /* Update header: do this before we drop alloc
873 lock, otherwise tdb_free() might try to
874 merge with us, thinking we're free.
875 (Thanks Jeremy Allison). */
876 rec->magic = TDB_MAGIC;
877 if (rec_write(tdb, rec_ptr, rec) == -1) {
878 return 0;
881 /* Did we create new block? */
882 if (newrec_ptr) {
883 /* Update allocated record tailer (we
884 shortened it). */
885 if (update_tailer(tdb, rec_ptr, rec) == -1) {
886 return 0;
889 /* Free new record */
890 if (tdb_free(tdb, newrec_ptr, &newrec) == -1) {
891 return 0;
895 /* all done - return the new record offset */
896 return rec_ptr;
899 /* allocate some space from the free list. The offset returned points
900 to a unconnected list_struct within the database with room for at
901 least length bytes of total data
903 0 is returned if the space could not be allocated
905 static tdb_off tdb_allocate(TDB_CONTEXT *tdb, tdb_len length,
906 struct list_struct *rec)
908 tdb_off rec_ptr, last_ptr, newrec_ptr;
909 struct {
910 tdb_off rec_ptr, last_ptr;
911 tdb_len rec_len;
912 } bestfit;
914 if (tdb_lock(tdb, -1, F_WRLCK) == -1)
915 return 0;
917 /* Extra bytes required for tailer */
918 length += sizeof(tdb_off);
920 again:
921 last_ptr = FREELIST_TOP;
923 /* read in the freelist top */
924 if (ofs_read(tdb, FREELIST_TOP, &rec_ptr) == -1)
925 goto fail;
927 bestfit.rec_ptr = 0;
930 this is a best fit allocation strategy. Originally we used
931 a first fit strategy, but it suffered from massive fragmentation
932 issues when faced with a slowly increasing record size.
934 while (rec_ptr) {
935 if (rec_free_read(tdb, rec_ptr, rec) == -1) {
936 goto fail;
939 if (rec->rec_len >= length) {
940 if (bestfit.rec_ptr == 0 ||
941 rec->rec_len < bestfit.rec_len) {
942 bestfit.rec_len = rec->rec_len;
943 bestfit.rec_ptr = rec_ptr;
944 bestfit.last_ptr = last_ptr;
945 /* consider a fit to be good enough if we aren't wasting more than half the space */
946 if (bestfit.rec_len < 2*length) {
947 break;
952 /* move to the next record */
953 last_ptr = rec_ptr;
954 rec_ptr = rec->next;
957 if (bestfit.rec_ptr != 0) {
958 if (rec_free_read(tdb, bestfit.rec_ptr, rec) == -1) {
959 goto fail;
962 newrec_ptr = tdb_allocate_ofs(tdb, length, bestfit.rec_ptr, rec, bestfit.last_ptr);
963 tdb_unlock(tdb, -1, F_WRLCK);
964 return newrec_ptr;
967 /* we didn't find enough space. See if we can expand the
968 database and if we can then try again */
969 if (tdb_expand(tdb, length + sizeof(*rec)) == 0)
970 goto again;
971 fail:
972 tdb_unlock(tdb, -1, F_WRLCK);
973 return 0;
976 /* initialise a new database with a specified hash size */
977 static int tdb_new_database(TDB_CONTEXT *tdb, int hash_size)
979 struct tdb_header *newdb;
980 int size, ret = -1;
982 /* We make it up in memory, then write it out if not internal */
983 size = sizeof(struct tdb_header) + (hash_size+1)*sizeof(tdb_off);
984 if (!(newdb = calloc(size, 1)))
985 return TDB_ERRCODE(TDB_ERR_OOM, -1);
987 /* Fill in the header */
988 newdb->version = TDB_VERSION;
989 newdb->hash_size = hash_size;
990 #ifdef USE_SPINLOCKS
991 newdb->rwlocks = size;
992 #endif
993 if (tdb->flags & TDB_INTERNAL) {
994 tdb->map_size = size;
995 tdb->map_ptr = (char *)newdb;
996 memcpy(&tdb->header, newdb, sizeof(tdb->header));
997 /* Convert the `ondisk' version if asked. */
998 CONVERT(*newdb);
999 return 0;
1001 if (lseek(tdb->fd, 0, SEEK_SET) == -1)
1002 goto fail;
1004 if (ftruncate(tdb->fd, 0) == -1)
1005 goto fail;
1007 /* This creates an endian-converted header, as if read from disk */
1008 CONVERT(*newdb);
1009 memcpy(&tdb->header, newdb, sizeof(tdb->header));
1010 /* Don't endian-convert the magic food! */
1011 memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
1012 if (write(tdb->fd, newdb, size) != size)
1013 ret = -1;
1014 else
1015 ret = tdb_create_rwlocks(tdb->fd, hash_size);
1017 fail:
1018 SAFE_FREE(newdb);
1019 return ret;
1022 /* Returns 0 on fail. On success, return offset of record, and fills
1023 in rec */
1024 static tdb_off tdb_find(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash,
1025 struct list_struct *r)
1027 tdb_off rec_ptr;
1029 /* read in the hash top */
1030 if (ofs_read(tdb, TDB_HASH_TOP(hash), &rec_ptr) == -1)
1031 return 0;
1033 /* keep looking until we find the right record */
1034 while (rec_ptr) {
1035 if (rec_read(tdb, rec_ptr, r) == -1)
1036 return 0;
1038 if (!TDB_DEAD(r) && hash==r->full_hash && key.dsize==r->key_len) {
1039 char *k;
1040 /* a very likely hit - read the key */
1041 k = tdb_alloc_read(tdb, rec_ptr + sizeof(*r),
1042 r->key_len);
1043 if (!k)
1044 return 0;
1046 if (memcmp(key.dptr, k, key.dsize) == 0) {
1047 SAFE_FREE(k);
1048 return rec_ptr;
1050 SAFE_FREE(k);
1052 rec_ptr = r->next;
1054 return TDB_ERRCODE(TDB_ERR_NOEXIST, 0);
1057 /* As tdb_find, but if you succeed, keep the lock */
1058 static tdb_off tdb_find_lock_hash(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash, int locktype,
1059 struct list_struct *rec)
1061 u32 rec_ptr;
1063 if (tdb_lock(tdb, BUCKET(hash), locktype) == -1)
1064 return 0;
1065 if (!(rec_ptr = tdb_find(tdb, key, hash, rec)))
1066 tdb_unlock(tdb, BUCKET(hash), locktype);
1067 return rec_ptr;
1070 enum TDB_ERROR tdb_error(TDB_CONTEXT *tdb)
1072 return tdb->ecode;
1075 static struct tdb_errname {
1076 enum TDB_ERROR ecode; const char *estring;
1077 } emap[] = { {TDB_SUCCESS, "Success"},
1078 {TDB_ERR_CORRUPT, "Corrupt database"},
1079 {TDB_ERR_IO, "IO Error"},
1080 {TDB_ERR_LOCK, "Locking error"},
1081 {TDB_ERR_OOM, "Out of memory"},
1082 {TDB_ERR_EXISTS, "Record exists"},
1083 {TDB_ERR_NOLOCK, "Lock exists on other keys"},
1084 {TDB_ERR_NOEXIST, "Record does not exist"} };
1086 /* Error string for the last tdb error */
1087 const char *tdb_errorstr(TDB_CONTEXT *tdb)
1089 u32 i;
1090 for (i = 0; i < sizeof(emap) / sizeof(struct tdb_errname); i++)
1091 if (tdb->ecode == emap[i].ecode)
1092 return emap[i].estring;
1093 return "Invalid error code";
1096 /* update an entry in place - this only works if the new data size
1097 is <= the old data size and the key exists.
1098 on failure return -1.
1101 static int tdb_update_hash(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash, TDB_DATA dbuf)
1103 struct list_struct rec;
1104 tdb_off rec_ptr;
1106 /* find entry */
1107 if (!(rec_ptr = tdb_find(tdb, key, hash, &rec)))
1108 return -1;
1110 /* must be long enough key, data and tailer */
1111 if (rec.rec_len < key.dsize + dbuf.dsize + sizeof(tdb_off)) {
1112 tdb->ecode = TDB_SUCCESS; /* Not really an error */
1113 return -1;
1116 if (tdb_write(tdb, rec_ptr + sizeof(rec) + rec.key_len,
1117 dbuf.dptr, dbuf.dsize) == -1)
1118 return -1;
1120 if (dbuf.dsize != rec.data_len) {
1121 /* update size */
1122 rec.data_len = dbuf.dsize;
1123 return rec_write(tdb, rec_ptr, &rec);
1126 return 0;
1129 /* find an entry in the database given a key */
1130 /* If an entry doesn't exist tdb_err will be set to
1131 * TDB_ERR_NOEXIST. If a key has no data attached
1132 * tdb_err will not be set. Both will return a
1133 * zero pptr and zero dsize.
1136 TDB_DATA tdb_fetch(TDB_CONTEXT *tdb, TDB_DATA key)
1138 tdb_off rec_ptr;
1139 struct list_struct rec;
1140 TDB_DATA ret;
1141 u32 hash;
1143 /* find which hash bucket it is in */
1144 hash = tdb->hash_fn(&key);
1145 if (!(rec_ptr = tdb_find_lock_hash(tdb,key,hash,F_RDLCK,&rec)))
1146 return tdb_null;
1148 if (rec.data_len)
1149 ret.dptr = tdb_alloc_read(tdb, rec_ptr + sizeof(rec) + rec.key_len,
1150 rec.data_len);
1151 else
1152 ret.dptr = NULL;
1153 ret.dsize = rec.data_len;
1154 tdb_unlock(tdb, BUCKET(rec.full_hash), F_RDLCK);
1155 return ret;
1158 /* check if an entry in the database exists
1160 note that 1 is returned if the key is found and 0 is returned if not found
1161 this doesn't match the conventions in the rest of this module, but is
1162 compatible with gdbm
1164 static int tdb_exists_hash(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash)
1166 struct list_struct rec;
1168 if (tdb_find_lock_hash(tdb, key, hash, F_RDLCK, &rec) == 0)
1169 return 0;
1170 tdb_unlock(tdb, BUCKET(rec.full_hash), F_RDLCK);
1171 return 1;
1174 int tdb_exists(TDB_CONTEXT *tdb, TDB_DATA key)
1176 u32 hash = tdb->hash_fn(&key);
1177 return tdb_exists_hash(tdb, key, hash);
1180 /* record lock stops delete underneath */
1181 static int lock_record(TDB_CONTEXT *tdb, tdb_off off)
1183 return off ? tdb_brlock(tdb, off, F_RDLCK, F_SETLKW, 0) : 0;
1186 Write locks override our own fcntl readlocks, so check it here.
1187 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1188 an error to fail to get the lock here.
1191 static int write_lock_record(TDB_CONTEXT *tdb, tdb_off off)
1193 struct tdb_traverse_lock *i;
1194 for (i = &tdb->travlocks; i; i = i->next)
1195 if (i->off == off)
1196 return -1;
1197 return tdb_brlock(tdb, off, F_WRLCK, F_SETLK, 1);
1201 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1202 an error to fail to get the lock here.
1205 static int write_unlock_record(TDB_CONTEXT *tdb, tdb_off off)
1207 return tdb_brlock(tdb, off, F_UNLCK, F_SETLK, 0);
1209 /* fcntl locks don't stack: avoid unlocking someone else's */
1210 static int unlock_record(TDB_CONTEXT *tdb, tdb_off off)
1212 struct tdb_traverse_lock *i;
1213 u32 count = 0;
1215 if (off == 0)
1216 return 0;
1217 for (i = &tdb->travlocks; i; i = i->next)
1218 if (i->off == off)
1219 count++;
1220 return (count == 1 ? tdb_brlock(tdb, off, F_UNLCK, F_SETLKW, 0) : 0);
1223 /* actually delete an entry in the database given the offset */
1224 static int do_delete(TDB_CONTEXT *tdb, tdb_off rec_ptr, struct list_struct*rec)
1226 tdb_off last_ptr, i;
1227 struct list_struct lastrec;
1229 if (tdb->read_only) return -1;
1231 if (write_lock_record(tdb, rec_ptr) == -1) {
1232 /* Someone traversing here: mark it as dead */
1233 rec->magic = TDB_DEAD_MAGIC;
1234 return rec_write(tdb, rec_ptr, rec);
1236 if (write_unlock_record(tdb, rec_ptr) != 0)
1237 return -1;
1239 /* find previous record in hash chain */
1240 if (ofs_read(tdb, TDB_HASH_TOP(rec->full_hash), &i) == -1)
1241 return -1;
1242 for (last_ptr = 0; i != rec_ptr; last_ptr = i, i = lastrec.next)
1243 if (rec_read(tdb, i, &lastrec) == -1)
1244 return -1;
1246 /* unlink it: next ptr is at start of record. */
1247 if (last_ptr == 0)
1248 last_ptr = TDB_HASH_TOP(rec->full_hash);
1249 if (ofs_write(tdb, last_ptr, &rec->next) == -1)
1250 return -1;
1252 /* recover the space */
1253 if (tdb_free(tdb, rec_ptr, rec) == -1)
1254 return -1;
1255 return 0;
1258 /* Uses traverse lock: 0 = finish, -1 = error, other = record offset */
1259 static int tdb_next_lock(TDB_CONTEXT *tdb, struct tdb_traverse_lock *tlock,
1260 struct list_struct *rec)
1262 int want_next = (tlock->off != 0);
1264 /* Lock each chain from the start one. */
1265 for (; tlock->hash < tdb->header.hash_size; tlock->hash++) {
1266 if (tdb_lock(tdb, tlock->hash, F_WRLCK) == -1)
1267 return -1;
1269 /* No previous record? Start at top of chain. */
1270 if (!tlock->off) {
1271 if (ofs_read(tdb, TDB_HASH_TOP(tlock->hash),
1272 &tlock->off) == -1)
1273 goto fail;
1274 } else {
1275 /* Otherwise unlock the previous record. */
1276 if (unlock_record(tdb, tlock->off) != 0)
1277 goto fail;
1280 if (want_next) {
1281 /* We have offset of old record: grab next */
1282 if (rec_read(tdb, tlock->off, rec) == -1)
1283 goto fail;
1284 tlock->off = rec->next;
1287 /* Iterate through chain */
1288 while( tlock->off) {
1289 tdb_off current;
1290 if (rec_read(tdb, tlock->off, rec) == -1)
1291 goto fail;
1292 if (!TDB_DEAD(rec)) {
1293 /* Woohoo: we found one! */
1294 if (lock_record(tdb, tlock->off) != 0)
1295 goto fail;
1296 return tlock->off;
1299 /* Detect infinite loops. From "Shlomi Yaakobovich" <Shlomi@exanet.com>. */
1300 if (tlock->off == rec->next) {
1301 TDB_LOG((tdb, 0, "tdb_next_lock: loop detected.\n"));
1302 goto fail;
1305 /* Try to clean dead ones from old traverses */
1306 current = tlock->off;
1307 tlock->off = rec->next;
1308 if (!tdb->read_only &&
1309 do_delete(tdb, current, rec) != 0)
1310 goto fail;
1312 tdb_unlock(tdb, tlock->hash, F_WRLCK);
1313 want_next = 0;
1315 /* We finished iteration without finding anything */
1316 return TDB_ERRCODE(TDB_SUCCESS, 0);
1318 fail:
1319 tlock->off = 0;
1320 if (tdb_unlock(tdb, tlock->hash, F_WRLCK) != 0)
1321 TDB_LOG((tdb, 0, "tdb_next_lock: On error unlock failed!\n"));
1322 return -1;
1325 /* traverse the entire database - calling fn(tdb, key, data) on each element.
1326 return -1 on error or the record count traversed
1327 if fn is NULL then it is not called
1328 a non-zero return value from fn() indicates that the traversal should stop
1330 int tdb_traverse(TDB_CONTEXT *tdb, tdb_traverse_func fn, void *private)
1332 TDB_DATA key, dbuf;
1333 struct list_struct rec;
1334 struct tdb_traverse_lock tl = { NULL, 0, 0 };
1335 int ret, count = 0;
1337 /* This was in the initializaton, above, but the IRIX compiler
1338 * did not like it. crh
1340 tl.next = tdb->travlocks.next;
1342 /* fcntl locks don't stack: beware traverse inside traverse */
1343 tdb->travlocks.next = &tl;
1345 /* tdb_next_lock places locks on the record returned, and its chain */
1346 while ((ret = tdb_next_lock(tdb, &tl, &rec)) > 0) {
1347 count++;
1348 /* now read the full record */
1349 key.dptr = tdb_alloc_read(tdb, tl.off + sizeof(rec),
1350 rec.key_len + rec.data_len);
1351 if (!key.dptr) {
1352 ret = -1;
1353 if (tdb_unlock(tdb, tl.hash, F_WRLCK) != 0)
1354 goto out;
1355 if (unlock_record(tdb, tl.off) != 0)
1356 TDB_LOG((tdb, 0, "tdb_traverse: key.dptr == NULL and unlock_record failed!\n"));
1357 goto out;
1359 key.dsize = rec.key_len;
1360 dbuf.dptr = key.dptr + rec.key_len;
1361 dbuf.dsize = rec.data_len;
1363 /* Drop chain lock, call out */
1364 if (tdb_unlock(tdb, tl.hash, F_WRLCK) != 0) {
1365 ret = -1;
1366 goto out;
1368 if (fn && fn(tdb, key, dbuf, private)) {
1369 /* They want us to terminate traversal */
1370 ret = count;
1371 if (unlock_record(tdb, tl.off) != 0) {
1372 TDB_LOG((tdb, 0, "tdb_traverse: unlock_record failed!\n"));;
1373 ret = -1;
1375 tdb->travlocks.next = tl.next;
1376 SAFE_FREE(key.dptr);
1377 return count;
1379 SAFE_FREE(key.dptr);
1381 out:
1382 tdb->travlocks.next = tl.next;
1383 if (ret < 0)
1384 return -1;
1385 else
1386 return count;
1389 /* find the first entry in the database and return its key */
1390 TDB_DATA tdb_firstkey(TDB_CONTEXT *tdb)
1392 TDB_DATA key;
1393 struct list_struct rec;
1395 /* release any old lock */
1396 if (unlock_record(tdb, tdb->travlocks.off) != 0)
1397 return tdb_null;
1398 tdb->travlocks.off = tdb->travlocks.hash = 0;
1400 if (tdb_next_lock(tdb, &tdb->travlocks, &rec) <= 0)
1401 return tdb_null;
1402 /* now read the key */
1403 key.dsize = rec.key_len;
1404 key.dptr =tdb_alloc_read(tdb,tdb->travlocks.off+sizeof(rec),key.dsize);
1405 if (tdb_unlock(tdb, BUCKET(tdb->travlocks.hash), F_WRLCK) != 0)
1406 TDB_LOG((tdb, 0, "tdb_firstkey: error occurred while tdb_unlocking!\n"));
1407 return key;
1410 /* find the next entry in the database, returning its key */
1411 TDB_DATA tdb_nextkey(TDB_CONTEXT *tdb, TDB_DATA oldkey)
1413 u32 oldhash;
1414 TDB_DATA key = tdb_null;
1415 struct list_struct rec;
1416 char *k = NULL;
1418 /* Is locked key the old key? If so, traverse will be reliable. */
1419 if (tdb->travlocks.off) {
1420 if (tdb_lock(tdb,tdb->travlocks.hash,F_WRLCK))
1421 return tdb_null;
1422 if (rec_read(tdb, tdb->travlocks.off, &rec) == -1
1423 || !(k = tdb_alloc_read(tdb,tdb->travlocks.off+sizeof(rec),
1424 rec.key_len))
1425 || memcmp(k, oldkey.dptr, oldkey.dsize) != 0) {
1426 /* No, it wasn't: unlock it and start from scratch */
1427 if (unlock_record(tdb, tdb->travlocks.off) != 0)
1428 return tdb_null;
1429 if (tdb_unlock(tdb, tdb->travlocks.hash, F_WRLCK) != 0)
1430 return tdb_null;
1431 tdb->travlocks.off = 0;
1434 SAFE_FREE(k);
1437 if (!tdb->travlocks.off) {
1438 /* No previous element: do normal find, and lock record */
1439 tdb->travlocks.off = tdb_find_lock_hash(tdb, oldkey, tdb->hash_fn(&oldkey), F_WRLCK, &rec);
1440 if (!tdb->travlocks.off)
1441 return tdb_null;
1442 tdb->travlocks.hash = BUCKET(rec.full_hash);
1443 if (lock_record(tdb, tdb->travlocks.off) != 0) {
1444 TDB_LOG((tdb, 0, "tdb_nextkey: lock_record failed (%s)!\n", strerror(errno)));
1445 return tdb_null;
1448 oldhash = tdb->travlocks.hash;
1450 /* Grab next record: locks chain and returned record,
1451 unlocks old record */
1452 if (tdb_next_lock(tdb, &tdb->travlocks, &rec) > 0) {
1453 key.dsize = rec.key_len;
1454 key.dptr = tdb_alloc_read(tdb, tdb->travlocks.off+sizeof(rec),
1455 key.dsize);
1456 /* Unlock the chain of this new record */
1457 if (tdb_unlock(tdb, tdb->travlocks.hash, F_WRLCK) != 0)
1458 TDB_LOG((tdb, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1460 /* Unlock the chain of old record */
1461 if (tdb_unlock(tdb, BUCKET(oldhash), F_WRLCK) != 0)
1462 TDB_LOG((tdb, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1463 return key;
1466 /* delete an entry in the database given a key */
1467 static int tdb_delete_hash(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash)
1469 tdb_off rec_ptr;
1470 struct list_struct rec;
1471 int ret;
1473 if (!(rec_ptr = tdb_find_lock_hash(tdb, key, hash, F_WRLCK, &rec)))
1474 return -1;
1475 ret = do_delete(tdb, rec_ptr, &rec);
1476 if (tdb_unlock(tdb, BUCKET(rec.full_hash), F_WRLCK) != 0)
1477 TDB_LOG((tdb, 0, "tdb_delete: WARNING tdb_unlock failed!\n"));
1478 return ret;
1481 int tdb_delete(TDB_CONTEXT *tdb, TDB_DATA key)
1483 u32 hash = tdb->hash_fn(&key);
1484 return tdb_delete_hash(tdb, key, hash);
1487 /* store an element in the database, replacing any existing element
1488 with the same key
1490 return 0 on success, -1 on failure
1492 int tdb_store(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, int flag)
1494 struct list_struct rec;
1495 u32 hash;
1496 tdb_off rec_ptr;
1497 char *p = NULL;
1498 int ret = 0;
1500 /* find which hash bucket it is in */
1501 hash = tdb->hash_fn(&key);
1502 if (tdb_lock(tdb, BUCKET(hash), F_WRLCK) == -1)
1503 return -1;
1505 /* check for it existing, on insert. */
1506 if (flag == TDB_INSERT) {
1507 if (tdb_exists_hash(tdb, key, hash)) {
1508 tdb->ecode = TDB_ERR_EXISTS;
1509 goto fail;
1511 } else {
1512 /* first try in-place update, on modify or replace. */
1513 if (tdb_update_hash(tdb, key, hash, dbuf) == 0)
1514 goto out;
1515 if (tdb->ecode == TDB_ERR_NOEXIST &&
1516 flag == TDB_MODIFY) {
1517 /* if the record doesn't exist and we are in TDB_MODIFY mode then
1518 we should fail the store */
1519 goto fail;
1522 /* reset the error code potentially set by the tdb_update() */
1523 tdb->ecode = TDB_SUCCESS;
1525 /* delete any existing record - if it doesn't exist we don't
1526 care. Doing this first reduces fragmentation, and avoids
1527 coalescing with `allocated' block before it's updated. */
1528 if (flag != TDB_INSERT)
1529 tdb_delete_hash(tdb, key, hash);
1531 /* Copy key+value *before* allocating free space in case malloc
1532 fails and we are left with a dead spot in the tdb. */
1534 if (!(p = (char *)malloc(key.dsize + dbuf.dsize))) {
1535 tdb->ecode = TDB_ERR_OOM;
1536 goto fail;
1539 memcpy(p, key.dptr, key.dsize);
1540 if (dbuf.dsize)
1541 memcpy(p+key.dsize, dbuf.dptr, dbuf.dsize);
1543 /* we have to allocate some space */
1544 if (!(rec_ptr = tdb_allocate(tdb, key.dsize + dbuf.dsize, &rec)))
1545 goto fail;
1547 /* Read hash top into next ptr */
1548 if (ofs_read(tdb, TDB_HASH_TOP(hash), &rec.next) == -1)
1549 goto fail;
1551 rec.key_len = key.dsize;
1552 rec.data_len = dbuf.dsize;
1553 rec.full_hash = hash;
1554 rec.magic = TDB_MAGIC;
1556 /* write out and point the top of the hash chain at it */
1557 if (rec_write(tdb, rec_ptr, &rec) == -1
1558 || tdb_write(tdb, rec_ptr+sizeof(rec), p, key.dsize+dbuf.dsize)==-1
1559 || ofs_write(tdb, TDB_HASH_TOP(hash), &rec_ptr) == -1) {
1560 /* Need to tdb_unallocate() here */
1561 goto fail;
1563 out:
1564 SAFE_FREE(p);
1565 tdb_unlock(tdb, BUCKET(hash), F_WRLCK);
1566 return ret;
1567 fail:
1568 ret = -1;
1569 goto out;
1572 /* Attempt to append data to an entry in place - this only works if the new data size
1573 is <= the old data size and the key exists.
1574 on failure return -1. Record must be locked before calling.
1576 static int tdb_append_inplace(TDB_CONTEXT *tdb, TDB_DATA key, u32 hash, TDB_DATA new_dbuf)
1578 struct list_struct rec;
1579 tdb_off rec_ptr;
1581 /* find entry */
1582 if (!(rec_ptr = tdb_find(tdb, key, hash, &rec)))
1583 return -1;
1585 /* Append of 0 is always ok. */
1586 if (new_dbuf.dsize == 0)
1587 return 0;
1589 /* must be long enough for key, old data + new data and tailer */
1590 if (rec.rec_len < key.dsize + rec.data_len + new_dbuf.dsize + sizeof(tdb_off)) {
1591 /* No room. */
1592 tdb->ecode = TDB_SUCCESS; /* Not really an error */
1593 return -1;
1596 if (tdb_write(tdb, rec_ptr + sizeof(rec) + rec.key_len + rec.data_len,
1597 new_dbuf.dptr, new_dbuf.dsize) == -1)
1598 return -1;
1600 /* update size */
1601 rec.data_len += new_dbuf.dsize;
1602 return rec_write(tdb, rec_ptr, &rec);
1605 /* Append to an entry. Create if not exist. */
1607 int tdb_append(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA new_dbuf)
1609 struct list_struct rec;
1610 u32 hash;
1611 tdb_off rec_ptr;
1612 char *p = NULL;
1613 int ret = 0;
1614 size_t new_data_size = 0;
1616 /* find which hash bucket it is in */
1617 hash = tdb->hash_fn(&key);
1618 if (tdb_lock(tdb, BUCKET(hash), F_WRLCK) == -1)
1619 return -1;
1621 /* first try in-place. */
1622 if (tdb_append_inplace(tdb, key, hash, new_dbuf) == 0)
1623 goto out;
1625 /* reset the error code potentially set by the tdb_append_inplace() */
1626 tdb->ecode = TDB_SUCCESS;
1628 /* find entry */
1629 if (!(rec_ptr = tdb_find(tdb, key, hash, &rec))) {
1630 if (tdb->ecode != TDB_ERR_NOEXIST)
1631 goto fail;
1633 /* Not found - create. */
1635 ret = tdb_store(tdb, key, new_dbuf, TDB_INSERT);
1636 goto out;
1639 new_data_size = rec.data_len + new_dbuf.dsize;
1641 /* Copy key+old_value+value *before* allocating free space in case malloc
1642 fails and we are left with a dead spot in the tdb. */
1644 if (!(p = (char *)malloc(key.dsize + new_data_size))) {
1645 tdb->ecode = TDB_ERR_OOM;
1646 goto fail;
1649 /* Copy the key in place. */
1650 memcpy(p, key.dptr, key.dsize);
1652 /* Now read the old data into place. */
1653 if (rec.data_len &&
1654 tdb_read(tdb, rec_ptr + sizeof(rec) + rec.key_len, p + key.dsize, rec.data_len, 0) == -1)
1655 goto fail;
1657 /* Finally append the new data. */
1658 if (new_dbuf.dsize)
1659 memcpy(p+key.dsize+rec.data_len, new_dbuf.dptr, new_dbuf.dsize);
1661 /* delete any existing record - if it doesn't exist we don't
1662 care. Doing this first reduces fragmentation, and avoids
1663 coalescing with `allocated' block before it's updated. */
1665 tdb_delete_hash(tdb, key, hash);
1667 if (!(rec_ptr = tdb_allocate(tdb, key.dsize + new_data_size, &rec)))
1668 goto fail;
1670 /* Read hash top into next ptr */
1671 if (ofs_read(tdb, TDB_HASH_TOP(hash), &rec.next) == -1)
1672 goto fail;
1674 rec.key_len = key.dsize;
1675 rec.data_len = new_data_size;
1676 rec.full_hash = hash;
1677 rec.magic = TDB_MAGIC;
1679 /* write out and point the top of the hash chain at it */
1680 if (rec_write(tdb, rec_ptr, &rec) == -1
1681 || tdb_write(tdb, rec_ptr+sizeof(rec), p, key.dsize+new_data_size)==-1
1682 || ofs_write(tdb, TDB_HASH_TOP(hash), &rec_ptr) == -1) {
1683 /* Need to tdb_unallocate() here */
1684 goto fail;
1687 out:
1688 SAFE_FREE(p);
1689 tdb_unlock(tdb, BUCKET(hash), F_WRLCK);
1690 return ret;
1692 fail:
1693 ret = -1;
1694 goto out;
1697 static int tdb_already_open(dev_t device,
1698 ino_t ino)
1700 TDB_CONTEXT *i;
1702 for (i = tdbs; i; i = i->next) {
1703 if (i->device == device && i->inode == ino) {
1704 return 1;
1708 return 0;
1711 /* open the database, creating it if necessary
1713 The open_flags and mode are passed straight to the open call on the
1714 database file. A flags value of O_WRONLY is invalid. The hash size
1715 is advisory, use zero for a default value.
1717 Return is NULL on error, in which case errno is also set. Don't
1718 try to call tdb_error or tdb_errname, just do strerror(errno).
1720 @param name may be NULL for internal databases. */
1721 TDB_CONTEXT *tdb_open(const char *name, int hash_size, int tdb_flags,
1722 int open_flags, mode_t mode)
1724 return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
1727 /* a default logging function */
1728 static void null_log_fn(TDB_CONTEXT *tdb, int level, const char *fmt, ...)
1733 TDB_CONTEXT *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
1734 int open_flags, mode_t mode,
1735 tdb_log_func log_fn,
1736 tdb_hash_func hash_fn)
1738 TDB_CONTEXT *tdb;
1739 struct stat st;
1740 int rev = 0, locked = 0;
1741 uint8_t *vp;
1742 u32 vertest;
1744 if (!(tdb = calloc(1, sizeof *tdb))) {
1745 /* Can't log this */
1746 errno = ENOMEM;
1747 goto fail;
1749 tdb->fd = -1;
1750 tdb->name = NULL;
1751 tdb->map_ptr = NULL;
1752 tdb->flags = tdb_flags;
1753 tdb->open_flags = open_flags;
1754 tdb->log_fn = log_fn?log_fn:null_log_fn;
1755 tdb->hash_fn = hash_fn ? hash_fn : default_tdb_hash;
1757 if ((open_flags & O_ACCMODE) == O_WRONLY) {
1758 TDB_LOG((tdb, 0, "tdb_open_ex: can't open tdb %s write-only\n",
1759 name));
1760 errno = EINVAL;
1761 goto fail;
1764 if (hash_size == 0)
1765 hash_size = DEFAULT_HASH_SIZE;
1766 if ((open_flags & O_ACCMODE) == O_RDONLY) {
1767 tdb->read_only = 1;
1768 /* read only databases don't do locking or clear if first */
1769 tdb->flags |= TDB_NOLOCK;
1770 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
1773 /* internal databases don't mmap or lock, and start off cleared */
1774 if (tdb->flags & TDB_INTERNAL) {
1775 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
1776 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
1777 if (tdb_new_database(tdb, hash_size) != 0) {
1778 TDB_LOG((tdb, 0, "tdb_open_ex: tdb_new_database failed!"));
1779 goto fail;
1781 goto internal;
1784 if ((tdb->fd = open(name, open_flags, mode)) == -1) {
1785 TDB_LOG((tdb, 5, "tdb_open_ex: could not open file %s: %s\n",
1786 name, strerror(errno)));
1787 goto fail; /* errno set by open(2) */
1790 /* ensure there is only one process initialising at once */
1791 if (tdb_brlock(tdb, GLOBAL_LOCK, F_WRLCK, F_SETLKW, 0) == -1) {
1792 TDB_LOG((tdb, 0, "tdb_open_ex: failed to get global lock on %s: %s\n",
1793 name, strerror(errno)));
1794 goto fail; /* errno set by tdb_brlock */
1797 /* we need to zero database if we are the only one with it open */
1798 if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
1799 (locked = (tdb_brlock(tdb, ACTIVE_LOCK, F_WRLCK, F_SETLK, 0) == 0))) {
1800 open_flags |= O_CREAT;
1801 if (ftruncate(tdb->fd, 0) == -1) {
1802 TDB_LOG((tdb, 0, "tdb_open_ex: "
1803 "failed to truncate %s: %s\n",
1804 name, strerror(errno)));
1805 goto fail; /* errno set by ftruncate */
1809 if (read(tdb->fd, &tdb->header, sizeof(tdb->header)) != sizeof(tdb->header)
1810 || strcmp(tdb->header.magic_food, TDB_MAGIC_FOOD) != 0
1811 || (tdb->header.version != TDB_VERSION
1812 && !(rev = (tdb->header.version==TDB_BYTEREV(TDB_VERSION))))) {
1813 /* its not a valid database - possibly initialise it */
1814 if (!(open_flags & O_CREAT) || tdb_new_database(tdb, hash_size) == -1) {
1815 errno = EIO; /* ie bad format or something */
1816 goto fail;
1818 rev = (tdb->flags & TDB_CONVERT);
1820 vp = (uint8_t *)&tdb->header.version;
1821 vertest = (((u32)vp[0]) << 24) | (((u32)vp[1]) << 16) |
1822 (((u32)vp[2]) << 8) | (u32)vp[3];
1823 tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
1824 if (!rev)
1825 tdb->flags &= ~TDB_CONVERT;
1826 else {
1827 tdb->flags |= TDB_CONVERT;
1828 convert(&tdb->header, sizeof(tdb->header));
1830 if (fstat(tdb->fd, &st) == -1)
1831 goto fail;
1833 /* Is it already in the open list? If so, fail. */
1834 if (tdb_already_open(st.st_dev, st.st_ino)) {
1835 TDB_LOG((tdb, 2, "tdb_open_ex: "
1836 "%s (%d,%d) is already open in this process\n",
1837 name, (int)st.st_dev, (int)st.st_ino));
1838 errno = EBUSY;
1839 goto fail;
1842 if (!(tdb->name = (char *)strdup(name))) {
1843 errno = ENOMEM;
1844 goto fail;
1847 tdb->map_size = st.st_size;
1848 tdb->device = st.st_dev;
1849 tdb->inode = st.st_ino;
1850 tdb->locked = calloc(tdb->header.hash_size+1, sizeof(tdb->locked[0]));
1851 if (!tdb->locked) {
1852 TDB_LOG((tdb, 2, "tdb_open_ex: "
1853 "failed to allocate lock structure for %s\n",
1854 name));
1855 errno = ENOMEM;
1856 goto fail;
1858 tdb_mmap(tdb);
1859 if (locked) {
1860 if (!tdb->read_only)
1861 if (tdb_clear_spinlocks(tdb) != 0) {
1862 TDB_LOG((tdb, 0, "tdb_open_ex: "
1863 "failed to clear spinlock\n"));
1864 goto fail;
1866 if (tdb_brlock(tdb, ACTIVE_LOCK, F_UNLCK, F_SETLK, 0) == -1) {
1867 TDB_LOG((tdb, 0, "tdb_open_ex: "
1868 "failed to take ACTIVE_LOCK on %s: %s\n",
1869 name, strerror(errno)));
1870 goto fail;
1875 /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
1876 we didn't get the initial exclusive lock as we need to let all other
1877 users know we're using it. */
1879 if (tdb_flags & TDB_CLEAR_IF_FIRST) {
1880 /* leave this lock in place to indicate it's in use */
1881 if (tdb_brlock(tdb, ACTIVE_LOCK, F_RDLCK, F_SETLKW, 0) == -1)
1882 goto fail;
1886 internal:
1887 /* Internal (memory-only) databases skip all the code above to
1888 * do with disk files, and resume here by releasing their
1889 * global lock and hooking into the active list. */
1890 if (tdb_brlock(tdb, GLOBAL_LOCK, F_UNLCK, F_SETLKW, 0) == -1)
1891 goto fail;
1892 tdb->next = tdbs;
1893 tdbs = tdb;
1894 return tdb;
1896 fail:
1897 { int save_errno = errno;
1899 if (!tdb)
1900 return NULL;
1902 if (tdb->map_ptr) {
1903 if (tdb->flags & TDB_INTERNAL)
1904 SAFE_FREE(tdb->map_ptr);
1905 else
1906 tdb_munmap(tdb);
1908 SAFE_FREE(tdb->name);
1909 if (tdb->fd != -1)
1910 if (close(tdb->fd) != 0)
1911 TDB_LOG((tdb, 5, "tdb_open_ex: failed to close tdb->fd on error!\n"));
1912 SAFE_FREE(tdb->locked);
1913 SAFE_FREE(tdb);
1914 errno = save_errno;
1915 return NULL;
1920 * Close a database.
1922 * @returns -1 for error; 0 for success.
1924 int tdb_close(TDB_CONTEXT *tdb)
1926 TDB_CONTEXT **i;
1927 int ret = 0;
1929 if (tdb->map_ptr) {
1930 if (tdb->flags & TDB_INTERNAL)
1931 SAFE_FREE(tdb->map_ptr);
1932 else
1933 tdb_munmap(tdb);
1935 SAFE_FREE(tdb->name);
1936 if (tdb->fd != -1)
1937 ret = close(tdb->fd);
1938 SAFE_FREE(tdb->locked);
1940 /* Remove from contexts list */
1941 for (i = &tdbs; *i; i = &(*i)->next) {
1942 if (*i == tdb) {
1943 *i = tdb->next;
1944 break;
1948 memset(tdb, 0, sizeof(*tdb));
1949 SAFE_FREE(tdb);
1951 return ret;
1954 /* lock/unlock entire database */
1955 int tdb_lockall(TDB_CONTEXT *tdb)
1957 u32 i;
1959 /* There are no locks on read-only dbs */
1960 if (tdb->read_only)
1961 return TDB_ERRCODE(TDB_ERR_LOCK, -1);
1962 for (i = 0; i < tdb->header.hash_size; i++)
1963 if (tdb_lock(tdb, i, F_WRLCK))
1964 break;
1966 /* If error, release locks we have... */
1967 if (i < tdb->header.hash_size) {
1968 u32 j;
1970 for ( j = 0; j < i; j++)
1971 tdb_unlock(tdb, j, F_WRLCK);
1972 return TDB_ERRCODE(TDB_ERR_NOLOCK, -1);
1975 return 0;
1977 void tdb_unlockall(TDB_CONTEXT *tdb)
1979 u32 i;
1980 for (i=0; i < tdb->header.hash_size; i++)
1981 tdb_unlock(tdb, i, F_WRLCK);
1984 /* lock/unlock one hash chain. This is meant to be used to reduce
1985 contention - it cannot guarantee how many records will be locked */
1986 int tdb_chainlock(TDB_CONTEXT *tdb, TDB_DATA key)
1988 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
1991 int tdb_chainunlock(TDB_CONTEXT *tdb, TDB_DATA key)
1993 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
1996 int tdb_chainlock_read(TDB_CONTEXT *tdb, TDB_DATA key)
1998 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
2001 int tdb_chainunlock_read(TDB_CONTEXT *tdb, TDB_DATA key)
2003 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
2007 /* register a loging function */
2008 void tdb_logging_function(TDB_CONTEXT *tdb, void (*fn)(TDB_CONTEXT *, int , const char *, ...))
2010 tdb->log_fn = fn?fn:null_log_fn;
2014 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
2015 seek pointer from our parent and to re-establish locks */
2016 int tdb_reopen(TDB_CONTEXT *tdb)
2018 struct stat st;
2020 if (tdb->flags & TDB_INTERNAL)
2021 return 0; /* Nothing to do. */
2022 if (tdb_munmap(tdb) != 0) {
2023 TDB_LOG((tdb, 0, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
2024 goto fail;
2026 if (close(tdb->fd) != 0)
2027 TDB_LOG((tdb, 0, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
2028 tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
2029 if (tdb->fd == -1) {
2030 TDB_LOG((tdb, 0, "tdb_reopen: open failed (%s)\n", strerror(errno)));
2031 goto fail;
2033 if (fstat(tdb->fd, &st) != 0) {
2034 TDB_LOG((tdb, 0, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
2035 goto fail;
2037 if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
2038 TDB_LOG((tdb, 0, "tdb_reopen: file dev/inode has changed!\n"));
2039 goto fail;
2041 tdb_mmap(tdb);
2042 if ((tdb->flags & TDB_CLEAR_IF_FIRST) && (tdb_brlock(tdb, ACTIVE_LOCK, F_RDLCK, F_SETLKW, 0) == -1)) {
2043 TDB_LOG((tdb, 0, "tdb_reopen: failed to obtain active lock\n"));
2044 goto fail;
2047 return 0;
2049 fail:
2050 tdb_close(tdb);
2051 return -1;
2054 /* reopen all tdb's */
2055 int tdb_reopen_all(void)
2057 TDB_CONTEXT *tdb;
2059 for (tdb=tdbs; tdb; tdb = tdb->next) {
2060 /* Ensure no clear-if-first. */
2061 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
2062 if (tdb_reopen(tdb) != 0)
2063 return -1;
2066 return 0;