2 Unix SMB/CIFS implementation.
3 Samba database functions
4 Copyright (C) Andrew Tridgell 1999-2000
5 Copyright (C) Luke Kenneth Casson Leighton 2000
6 Copyright (C) Paul `Rusty' Russell 2000
7 Copyright (C) Jeremy Allison 2000
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
44 #define TDB_MAGIC_FOOD "TDB file\n"
45 #define TDB_VERSION (0x26011967 + 6)
46 #define TDB_MAGIC (0x26011999U)
47 #define TDB_FREE_MAGIC (~TDB_MAGIC)
48 #define TDB_DEAD_MAGIC (0xFEE1DEAD)
49 #define TDB_ALIGNMENT 4
50 #define MIN_REC_SIZE (2*sizeof(struct list_struct) + TDB_ALIGNMENT)
51 #define DEFAULT_HASH_SIZE 131
52 #define TDB_PAGE_SIZE 0x2000
53 #define FREELIST_TOP (sizeof(struct tdb_header))
54 #define TDB_ALIGN(x,a) (((x) + (a)-1) & ~((a)-1))
55 #define TDB_BYTEREV(x) (((((x)&0xff)<<24)|((x)&0xFF00)<<8)|(((x)>>8)&0xFF00)|((x)>>24))
56 #define TDB_DEAD(r) ((r)->magic == TDB_DEAD_MAGIC)
57 #define TDB_BAD_MAGIC(r) ((r)->magic != TDB_MAGIC && !TDB_DEAD(r))
58 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off))
60 /* NB assumes there is a local variable called "tdb" that is the
61 * current context, also takes doubly-parenthesized print-style
63 #define TDB_LOG(x) (tdb->log_fn?((tdb->log_fn x),0) : 0)
74 #define MAP_FAILED ((void *)-1)
77 /* free memory if the pointer is valid and zero the pointer */
79 #define SAFE_FREE(x) do { if ((x) != NULL) {free((x)); (x)=NULL;} } while(0)
82 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
85 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
86 static TDB_CONTEXT
*tdbs
= NULL
;
88 static int tdb_munmap(TDB_CONTEXT
*tdb
)
90 if (tdb
->flags
& TDB_INTERNAL
)
95 int ret
= munmap(tdb
->map_ptr
, tdb
->map_size
);
104 static void tdb_mmap(TDB_CONTEXT
*tdb
)
106 if (tdb
->flags
& TDB_INTERNAL
)
110 if (!(tdb
->flags
& TDB_NOMMAP
)) {
111 tdb
->map_ptr
= mmap(NULL
, tdb
->map_size
,
112 PROT_READ
|(tdb
->read_only
? 0:PROT_WRITE
),
113 MAP_SHARED
|MAP_FILE
, tdb
->fd
, 0);
116 * NB. When mmap fails it returns MAP_FAILED *NOT* NULL !!!!
119 if (tdb
->map_ptr
== MAP_FAILED
) {
121 TDB_LOG((tdb
, 2, "tdb_mmap failed for size %d (%s)\n",
122 tdb
->map_size
, strerror(errno
)));
132 /* Endian conversion: we only ever deal with 4 byte quantities */
133 static void *convert(void *buf
, u32 size
)
136 for (i
= 0; i
< size
/ 4; i
++)
137 p
[i
] = TDB_BYTEREV(p
[i
]);
140 #define DOCONV() (tdb->flags & TDB_CONVERT)
141 #define CONVERT(x) (DOCONV() ? convert(&x, sizeof(x)) : &x)
143 /* the body of the database is made of one list_struct for the free space
144 plus a separate data list for each hash value */
146 tdb_off next
; /* offset of the next record in the list */
147 tdb_len rec_len
; /* total byte length of record */
148 tdb_len key_len
; /* byte length of key */
149 tdb_len data_len
; /* byte length of data */
150 u32 full_hash
; /* the full 32 bit hash of the key */
151 u32 magic
; /* try to catch errors */
152 /* the following union is implied:
154 char record[rec_len];
159 u32 totalsize; (tailer)
164 /***************************************************************
165 Allow a caller to set a "alarm" flag that tdb can check to abort
166 a blocking lock on SIGALRM.
167 ***************************************************************/
169 static sig_atomic_t *palarm_fired
;
171 void tdb_set_lock_alarm(sig_atomic_t *palarm
)
173 palarm_fired
= palarm
;
176 /* a byte range locking function - return 0 on success
177 this functions locks/unlocks 1 byte at the specified offset.
179 On error, errno is also set so that errors are passed back properly
180 through tdb_open(). */
181 static int tdb_brlock(TDB_CONTEXT
*tdb
, tdb_off offset
,
182 int rw_type
, int lck_type
, int probe
)
187 if (tdb
->flags
& TDB_NOLOCK
)
189 if (tdb
->read_only
) {
195 fl
.l_whence
= SEEK_SET
;
201 ret
= fcntl(tdb
->fd
,lck_type
,&fl
);
202 if (ret
== -1 && errno
== EINTR
&& palarm_fired
&& *palarm_fired
)
204 } while (ret
== -1 && errno
== EINTR
);
207 if (!probe
&& lck_type
!= F_SETLK
) {
208 TDB_LOG((tdb
, 5,"tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d\n",
209 tdb
->fd
, offset
, rw_type
, lck_type
));
211 /* errno set by fcntl */
212 return TDB_ERRCODE(TDB_ERR_LOCK
, -1);
217 /* lock a list in the database. list -1 is the alloc list */
218 static int tdb_lock(TDB_CONTEXT
*tdb
, int list
, int ltype
)
220 if (list
< -1 || list
>= (int)tdb
->header
.hash_size
) {
221 TDB_LOG((tdb
, 0,"tdb_lock: invalid list %d for ltype=%d\n",
225 if (tdb
->flags
& TDB_NOLOCK
)
228 /* Since fcntl locks don't nest, we do a lock for the first one,
229 and simply bump the count for future ones */
230 if (tdb
->locked
[list
+1].count
== 0) {
231 if (!tdb
->read_only
&& tdb
->header
.rwlocks
) {
232 if (tdb_spinlock(tdb
, list
, ltype
)) {
233 TDB_LOG((tdb
, 0, "tdb_lock spinlock failed on list ltype=%d\n",
237 } else if (tdb_brlock(tdb
,FREELIST_TOP
+4*list
,ltype
,F_SETLKW
, 0)) {
238 TDB_LOG((tdb
, 0,"tdb_lock failed on list %d ltype=%d (%s)\n",
239 list
, ltype
, strerror(errno
)));
242 tdb
->locked
[list
+1].ltype
= ltype
;
244 tdb
->locked
[list
+1].count
++;
248 /* unlock the database: returns void because it's too late for errors. */
249 /* changed to return int it may be interesting to know there
250 has been an error --simo */
251 static int tdb_unlock(TDB_CONTEXT
*tdb
, int list
, int ltype
)
255 if (tdb
->flags
& TDB_NOLOCK
)
259 if (list
< -1 || list
>= (int)tdb
->header
.hash_size
) {
260 TDB_LOG((tdb
, 0, "tdb_unlock: list %d invalid (%d)\n", list
, tdb
->header
.hash_size
));
264 if (tdb
->locked
[list
+1].count
==0) {
265 TDB_LOG((tdb
, 0, "tdb_unlock: count is 0\n"));
269 if (tdb
->locked
[list
+1].count
== 1) {
270 /* Down to last nested lock: unlock underneath */
271 if (!tdb
->read_only
&& tdb
->header
.rwlocks
) {
272 ret
= tdb_spinunlock(tdb
, list
, ltype
);
274 ret
= tdb_brlock(tdb
, FREELIST_TOP
+4*list
, F_UNLCK
, F_SETLKW
, 0);
279 tdb
->locked
[list
+1].count
--;
282 TDB_LOG((tdb
, 0,"tdb_unlock: An error occurred unlocking!\n"));
286 /* This is based on the hash algorithm from gdbm */
287 static u32
tdb_hash(TDB_DATA
*key
)
289 u32 value
; /* Used to compute the hash value. */
290 u32 i
; /* Used to cycle through random values. */
292 /* Set the initial value from the key size. */
293 for (value
= 0x238F13AF * key
->dsize
, i
=0; i
< key
->dsize
; i
++)
294 value
= (value
+ (key
->dptr
[i
] << (i
*5 % 24)));
296 return (1103515243 * value
+ 12345);
299 /* check for an out of bounds access - if it is out of bounds then
300 see if the database has been expanded by someone else and expand
302 note that "len" is the minimum length needed for the db
304 static int tdb_oob(TDB_CONTEXT
*tdb
, tdb_off len
, int probe
)
307 if (len
<= tdb
->map_size
)
309 if (tdb
->flags
& TDB_INTERNAL
) {
311 TDB_LOG((tdb
, 0,"tdb_oob len %d beyond internal malloc size %d\n",
312 (int)len
, (int)tdb
->map_size
));
314 return TDB_ERRCODE(TDB_ERR_IO
, -1);
317 if (fstat(tdb
->fd
, &st
) == -1)
318 return TDB_ERRCODE(TDB_ERR_IO
, -1);
320 if (st
.st_size
< (size_t)len
) {
322 TDB_LOG((tdb
, 0,"tdb_oob len %d beyond eof at %d\n",
323 (int)len
, (int)st
.st_size
));
325 return TDB_ERRCODE(TDB_ERR_IO
, -1);
328 /* Unmap, update size, remap */
329 if (tdb_munmap(tdb
) == -1)
330 return TDB_ERRCODE(TDB_ERR_IO
, -1);
331 tdb
->map_size
= st
.st_size
;
336 /* write a lump of data at a specified offset */
337 static int tdb_write(TDB_CONTEXT
*tdb
, tdb_off off
, void *buf
, tdb_len len
)
339 if (tdb_oob(tdb
, off
+ len
, 0) != 0)
343 memcpy(off
+ (char *)tdb
->map_ptr
, buf
, len
);
345 else if (pwrite(tdb
->fd
, buf
, len
, off
) != (ssize_t
)len
) {
347 else if (lseek(tdb
->fd
, off
, SEEK_SET
) != off
348 || write(tdb
->fd
, buf
, len
) != (ssize_t
)len
) {
350 TDB_LOG((tdb
, 0,"tdb_write failed at %d len=%d (%s)\n",
351 off
, len
, strerror(errno
)));
352 return TDB_ERRCODE(TDB_ERR_IO
, -1);
357 /* read a lump of data at a specified offset, maybe convert */
358 static int tdb_read(TDB_CONTEXT
*tdb
,tdb_off off
,void *buf
,tdb_len len
,int cv
)
360 if (tdb_oob(tdb
, off
+ len
, 0) != 0)
364 memcpy(buf
, off
+ (char *)tdb
->map_ptr
, len
);
366 else if (pread(tdb
->fd
, buf
, len
, off
) != (ssize_t
)len
) {
368 else if (lseek(tdb
->fd
, off
, SEEK_SET
) != off
369 || read(tdb
->fd
, buf
, len
) != (ssize_t
)len
) {
371 TDB_LOG((tdb
, 0,"tdb_read failed at %d len=%d (%s)\n",
372 off
, len
, strerror(errno
)));
373 return TDB_ERRCODE(TDB_ERR_IO
, -1);
380 /* read a lump of data, allocating the space for it */
381 static char *tdb_alloc_read(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_len len
)
385 if (!(buf
= malloc(len
))) {
386 TDB_LOG((tdb
, 0,"tdb_alloc_read malloc failed len=%d (%s)\n",
387 len
, strerror(errno
)));
388 return TDB_ERRCODE(TDB_ERR_OOM
, buf
);
390 if (tdb_read(tdb
, offset
, buf
, len
, 0) == -1) {
397 /* read/write a tdb_off */
398 static int ofs_read(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_off
*d
)
400 return tdb_read(tdb
, offset
, (char*)d
, sizeof(*d
), DOCONV());
402 static int ofs_write(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_off
*d
)
405 return tdb_write(tdb
, offset
, CONVERT(off
), sizeof(*d
));
408 /* read/write a record */
409 static int rec_read(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
411 if (tdb_read(tdb
, offset
, rec
, sizeof(*rec
),DOCONV()) == -1)
413 if (TDB_BAD_MAGIC(rec
)) {
414 TDB_LOG((tdb
, 0,"rec_read bad magic 0x%x at offset=%d\n", rec
->magic
, offset
));
415 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
417 return tdb_oob(tdb
, rec
->next
+sizeof(*rec
), 0);
419 static int rec_write(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
421 struct list_struct r
= *rec
;
422 return tdb_write(tdb
, offset
, CONVERT(r
), sizeof(r
));
425 /* read a freelist record and check for simple errors */
426 static int rec_free_read(TDB_CONTEXT
*tdb
, tdb_off off
, struct list_struct
*rec
)
428 if (tdb_read(tdb
, off
, rec
, sizeof(*rec
),DOCONV()) == -1)
431 if (rec
->magic
== TDB_MAGIC
) {
432 /* this happens when a app is showdown while deleting a record - we should
433 not completely fail when this happens */
434 TDB_LOG((tdb
, 0,"rec_free_read non-free magic at offset=%d - fixing\n",
436 rec
->magic
= TDB_FREE_MAGIC
;
437 if (tdb_write(tdb
, off
, rec
, sizeof(*rec
)) == -1)
441 if (rec
->magic
!= TDB_FREE_MAGIC
) {
442 TDB_LOG((tdb
, 0,"rec_free_read bad magic 0x%x at offset=%d\n",
444 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
446 if (tdb_oob(tdb
, rec
->next
+sizeof(*rec
), 0) != 0)
451 /* update a record tailer (must hold allocation lock) */
452 static int update_tailer(TDB_CONTEXT
*tdb
, tdb_off offset
,
453 const struct list_struct
*rec
)
457 /* Offset of tailer from record header */
458 totalsize
= sizeof(*rec
) + rec
->rec_len
;
459 return ofs_write(tdb
, offset
+ totalsize
- sizeof(tdb_off
),
463 static tdb_off
tdb_dump_record(TDB_CONTEXT
*tdb
, tdb_off offset
)
465 struct list_struct rec
;
466 tdb_off tailer_ofs
, tailer
;
468 if (tdb_read(tdb
, offset
, (char *)&rec
, sizeof(rec
), DOCONV()) == -1) {
469 printf("ERROR: failed to read record at %u\n", offset
);
473 printf(" rec: offset=%u next=%d rec_len=%d key_len=%d data_len=%d full_hash=0x%x magic=0x%x\n",
474 offset
, rec
.next
, rec
.rec_len
, rec
.key_len
, rec
.data_len
, rec
.full_hash
, rec
.magic
);
476 tailer_ofs
= offset
+ sizeof(rec
) + rec
.rec_len
- sizeof(tdb_off
);
477 if (ofs_read(tdb
, tailer_ofs
, &tailer
) == -1) {
478 printf("ERROR: failed to read tailer at %u\n", tailer_ofs
);
482 if (tailer
!= rec
.rec_len
+ sizeof(rec
)) {
483 printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n",
484 (unsigned)tailer
, (unsigned)(rec
.rec_len
+ sizeof(rec
)));
489 static int tdb_dump_chain(TDB_CONTEXT
*tdb
, int i
)
491 tdb_off rec_ptr
, top
;
493 top
= TDB_HASH_TOP(i
);
495 if (tdb_lock(tdb
, i
, F_WRLCK
) != 0)
498 if (ofs_read(tdb
, top
, &rec_ptr
) == -1)
499 return tdb_unlock(tdb
, i
, F_WRLCK
);
502 printf("hash=%d\n", i
);
505 rec_ptr
= tdb_dump_record(tdb
, rec_ptr
);
508 return tdb_unlock(tdb
, i
, F_WRLCK
);
511 void tdb_dump_all(TDB_CONTEXT
*tdb
)
514 for (i
=0;i
<tdb
->header
.hash_size
;i
++) {
515 tdb_dump_chain(tdb
, i
);
517 printf("freelist:\n");
518 tdb_dump_chain(tdb
, -1);
521 int tdb_printfreelist(TDB_CONTEXT
*tdb
)
525 tdb_off offset
, rec_ptr
;
526 struct list_struct rec
;
528 if ((ret
= tdb_lock(tdb
, -1, F_WRLCK
)) != 0)
531 offset
= FREELIST_TOP
;
533 /* read in the freelist top */
534 if (ofs_read(tdb
, offset
, &rec_ptr
) == -1) {
535 tdb_unlock(tdb
, -1, F_WRLCK
);
539 printf("freelist top=[0x%08x]\n", rec_ptr
);
541 if (tdb_read(tdb
, rec_ptr
, (char *)&rec
, sizeof(rec
), DOCONV()) == -1) {
542 tdb_unlock(tdb
, -1, F_WRLCK
);
546 if (rec
.magic
!= TDB_FREE_MAGIC
) {
547 printf("bad magic 0x%08x in free list\n", rec
.magic
);
548 tdb_unlock(tdb
, -1, F_WRLCK
);
552 printf("entry offset=[0x%08x], rec.rec_len = [0x%08x (%d)]\n", rec
.next
, rec
.rec_len
, rec
.rec_len
);
553 total_free
+= rec
.rec_len
;
555 /* move to the next record */
558 printf("total rec_len = [0x%08x (%d)]\n", (int)total_free
,
561 return tdb_unlock(tdb
, -1, F_WRLCK
);
564 /* Remove an element from the freelist. Must have alloc lock. */
565 static int remove_from_freelist(TDB_CONTEXT
*tdb
, tdb_off off
, tdb_off next
)
569 /* read in the freelist top */
570 last_ptr
= FREELIST_TOP
;
571 while (ofs_read(tdb
, last_ptr
, &i
) != -1 && i
!= 0) {
573 /* We've found it! */
574 return ofs_write(tdb
, last_ptr
, &next
);
576 /* Follow chain (next offset is at start of record) */
579 TDB_LOG((tdb
, 0,"remove_from_freelist: not on list at off=%d\n", off
));
580 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
583 /* Add an element into the freelist. Merge adjacent records if
585 static int tdb_free(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
589 /* Allocation and tailer lock */
590 if (tdb_lock(tdb
, -1, F_WRLCK
) != 0)
593 /* set an initial tailer, so if we fail we don't leave a bogus record */
594 if (update_tailer(tdb
, offset
, rec
) != 0) {
595 TDB_LOG((tdb
, 0, "tdb_free: upfate_tailer failed!\n"));
599 /* Look right first (I'm an Australian, dammit) */
600 right
= offset
+ sizeof(*rec
) + rec
->rec_len
;
601 if (right
+ sizeof(*rec
) <= tdb
->map_size
) {
602 struct list_struct r
;
604 if (tdb_read(tdb
, right
, &r
, sizeof(r
), DOCONV()) == -1) {
605 TDB_LOG((tdb
, 0, "tdb_free: right read failed at %u\n", right
));
609 /* If it's free, expand to include it. */
610 if (r
.magic
== TDB_FREE_MAGIC
) {
611 if (remove_from_freelist(tdb
, right
, r
.next
) == -1) {
612 TDB_LOG((tdb
, 0, "tdb_free: right free failed at %u\n", right
));
615 rec
->rec_len
+= sizeof(r
) + r
.rec_len
;
621 left
= offset
- sizeof(tdb_off
);
622 if (left
> TDB_HASH_TOP(tdb
->header
.hash_size
-1)) {
623 struct list_struct l
;
626 /* Read in tailer and jump back to header */
627 if (ofs_read(tdb
, left
, &leftsize
) == -1) {
628 TDB_LOG((tdb
, 0, "tdb_free: left offset read failed at %u\n", left
));
631 left
= offset
- leftsize
;
633 /* Now read in record */
634 if (tdb_read(tdb
, left
, &l
, sizeof(l
), DOCONV()) == -1) {
635 TDB_LOG((tdb
, 0, "tdb_free: left read failed at %u (%u)\n", left
, leftsize
));
639 /* If it's free, expand to include it. */
640 if (l
.magic
== TDB_FREE_MAGIC
) {
641 if (remove_from_freelist(tdb
, left
, l
.next
) == -1) {
642 TDB_LOG((tdb
, 0, "tdb_free: left free failed at %u\n", left
));
646 rec
->rec_len
+= leftsize
;
652 if (update_tailer(tdb
, offset
, rec
) == -1) {
653 TDB_LOG((tdb
, 0, "tdb_free: update_tailer failed at %u\n", offset
));
657 /* Now, prepend to free list */
658 rec
->magic
= TDB_FREE_MAGIC
;
660 if (ofs_read(tdb
, FREELIST_TOP
, &rec
->next
) == -1 ||
661 rec_write(tdb
, offset
, rec
) == -1 ||
662 ofs_write(tdb
, FREELIST_TOP
, &offset
) == -1) {
663 TDB_LOG((tdb
, 0, "tdb_free record write failed at offset=%d\n", offset
));
667 /* And we're done. */
668 tdb_unlock(tdb
, -1, F_WRLCK
);
672 tdb_unlock(tdb
, -1, F_WRLCK
);
677 /* expand a file. we prefer to use ftruncate, as that is what posix
678 says to use for mmap expansion */
679 static int expand_file(TDB_CONTEXT
*tdb
, tdb_off size
, tdb_off addition
)
682 #if HAVE_FTRUNCATE_EXTEND
683 if (ftruncate(tdb
->fd
, size
+addition
) != 0) {
684 TDB_LOG((tdb
, 0, "expand_file ftruncate to %d failed (%s)\n",
685 size
+addition
, strerror(errno
)));
692 if (pwrite(tdb
->fd
, &b
, 1, (size
+addition
) - 1) != 1) {
694 if (lseek(tdb
->fd
, (size
+addition
) - 1, SEEK_SET
) != (size
+addition
) - 1 ||
695 write(tdb
->fd
, &b
, 1) != 1) {
697 TDB_LOG((tdb
, 0, "expand_file to %d failed (%s)\n",
698 size
+addition
, strerror(errno
)));
703 /* now fill the file with something. This ensures that the file isn't sparse, which would be
704 very bad if we ran out of disk. This must be done with write, not via mmap */
705 memset(buf
, 0x42, sizeof(buf
));
707 int n
= addition
>sizeof(buf
)?sizeof(buf
):addition
;
709 int ret
= pwrite(tdb
->fd
, buf
, n
, size
);
712 if (lseek(tdb
->fd
, size
, SEEK_SET
) != size
)
714 ret
= write(tdb
->fd
, buf
, n
);
717 TDB_LOG((tdb
, 0, "expand_file write of %d failed (%s)\n",
718 n
, strerror(errno
)));
728 /* expand the database at least size bytes by expanding the underlying
729 file and doing the mmap again if necessary */
730 static int tdb_expand(TDB_CONTEXT
*tdb
, tdb_off size
)
732 struct list_struct rec
;
735 if (tdb_lock(tdb
, -1, F_WRLCK
) == -1) {
736 TDB_LOG((tdb
, 0, "lock failed in tdb_expand\n"));
740 /* must know about any previous expansions by another process */
741 tdb_oob(tdb
, tdb
->map_size
+ 1, 1);
743 /* always make room for at least 10 more records, and round
744 the database up to a multiple of TDB_PAGE_SIZE */
745 size
= TDB_ALIGN(tdb
->map_size
+ size
*10, TDB_PAGE_SIZE
) - tdb
->map_size
;
747 if (!(tdb
->flags
& TDB_INTERNAL
))
751 * We must ensure the file is unmapped before doing this
752 * to ensure consistency with systems like OpenBSD where
753 * writes and mmaps are not consistent.
756 /* expand the file itself */
757 if (!(tdb
->flags
& TDB_INTERNAL
)) {
758 if (expand_file(tdb
, tdb
->map_size
, size
) != 0)
762 tdb
->map_size
+= size
;
764 if (tdb
->flags
& TDB_INTERNAL
)
765 tdb
->map_ptr
= realloc(tdb
->map_ptr
, tdb
->map_size
);
768 * We must ensure the file is remapped before adding the space
769 * to ensure consistency with systems like OpenBSD where
770 * writes and mmaps are not consistent.
773 /* We're ok if the mmap fails as we'll fallback to read/write */
777 /* form a new freelist record */
778 memset(&rec
,'\0',sizeof(rec
));
779 rec
.rec_len
= size
- sizeof(rec
);
781 /* link it into the free list */
782 offset
= tdb
->map_size
- size
;
783 if (tdb_free(tdb
, offset
, &rec
) == -1)
786 tdb_unlock(tdb
, -1, F_WRLCK
);
789 tdb_unlock(tdb
, -1, F_WRLCK
);
793 /* allocate some space from the free list. The offset returned points
794 to a unconnected list_struct within the database with room for at
795 least length bytes of total data
797 0 is returned if the space could not be allocated
799 static tdb_off
tdb_allocate(TDB_CONTEXT
*tdb
, tdb_len length
,
800 struct list_struct
*rec
)
802 tdb_off rec_ptr
, last_ptr
, newrec_ptr
;
803 struct list_struct newrec
;
805 if (tdb_lock(tdb
, -1, F_WRLCK
) == -1)
808 /* Extra bytes required for tailer */
809 length
+= sizeof(tdb_off
);
812 last_ptr
= FREELIST_TOP
;
814 /* read in the freelist top */
815 if (ofs_read(tdb
, FREELIST_TOP
, &rec_ptr
) == -1)
818 /* keep looking until we find a freelist record big enough */
820 if (rec_free_read(tdb
, rec_ptr
, rec
) == -1)
823 if (rec
->rec_len
>= length
) {
824 /* found it - now possibly split it up */
825 if (rec
->rec_len
> length
+ MIN_REC_SIZE
) {
826 /* Length of left piece */
827 length
= TDB_ALIGN(length
, TDB_ALIGNMENT
);
829 /* Right piece to go on free list */
830 newrec
.rec_len
= rec
->rec_len
831 - (sizeof(*rec
) + length
);
832 newrec_ptr
= rec_ptr
+ sizeof(*rec
) + length
;
834 /* And left record is shortened */
835 rec
->rec_len
= length
;
839 /* Remove allocated record from the free list */
840 if (ofs_write(tdb
, last_ptr
, &rec
->next
) == -1)
843 /* Update header: do this before we drop alloc
844 lock, otherwise tdb_free() might try to
845 merge with us, thinking we're free.
846 (Thanks Jeremy Allison). */
847 rec
->magic
= TDB_MAGIC
;
848 if (rec_write(tdb
, rec_ptr
, rec
) == -1)
851 /* Did we create new block? */
853 /* Update allocated record tailer (we
855 if (update_tailer(tdb
, rec_ptr
, rec
) == -1)
858 /* Free new record */
859 if (tdb_free(tdb
, newrec_ptr
, &newrec
) == -1)
863 /* all done - return the new record offset */
864 tdb_unlock(tdb
, -1, F_WRLCK
);
867 /* move to the next record */
871 /* we didn't find enough space. See if we can expand the
872 database and if we can then try again */
873 if (tdb_expand(tdb
, length
+ sizeof(*rec
)) == 0)
876 tdb_unlock(tdb
, -1, F_WRLCK
);
880 /* initialise a new database with a specified hash size */
881 static int tdb_new_database(TDB_CONTEXT
*tdb
, int hash_size
)
883 struct tdb_header
*newdb
;
886 /* We make it up in memory, then write it out if not internal */
887 size
= sizeof(struct tdb_header
) + (hash_size
+1)*sizeof(tdb_off
);
888 if (!(newdb
= calloc(size
, 1)))
889 return TDB_ERRCODE(TDB_ERR_OOM
, -1);
891 /* Fill in the header */
892 newdb
->version
= TDB_VERSION
;
893 newdb
->hash_size
= hash_size
;
895 newdb
->rwlocks
= size
;
897 if (tdb
->flags
& TDB_INTERNAL
) {
898 tdb
->map_size
= size
;
899 tdb
->map_ptr
= (char *)newdb
;
900 memcpy(&tdb
->header
, newdb
, sizeof(tdb
->header
));
901 /* Convert the `ondisk' version if asked. */
905 if (lseek(tdb
->fd
, 0, SEEK_SET
) == -1)
908 if (ftruncate(tdb
->fd
, 0) == -1)
911 /* This creates an endian-converted header, as if read from disk */
913 memcpy(&tdb
->header
, newdb
, sizeof(tdb
->header
));
914 /* Don't endian-convert the magic food! */
915 memcpy(newdb
->magic_food
, TDB_MAGIC_FOOD
, strlen(TDB_MAGIC_FOOD
)+1);
916 if (write(tdb
->fd
, newdb
, size
) != size
)
919 ret
= tdb_create_rwlocks(tdb
->fd
, hash_size
);
926 /* Returns 0 on fail. On success, return offset of record, and fills
928 static tdb_off
tdb_find(TDB_CONTEXT
*tdb
, TDB_DATA key
, u32 hash
,
929 struct list_struct
*r
)
933 /* read in the hash top */
934 if (ofs_read(tdb
, TDB_HASH_TOP(hash
), &rec_ptr
) == -1)
937 /* keep looking until we find the right record */
939 if (rec_read(tdb
, rec_ptr
, r
) == -1)
942 if (!TDB_DEAD(r
) && hash
==r
->full_hash
&& key
.dsize
==r
->key_len
) {
944 /* a very likely hit - read the key */
945 k
= tdb_alloc_read(tdb
, rec_ptr
+ sizeof(*r
),
950 if (memcmp(key
.dptr
, k
, key
.dsize
) == 0) {
958 return TDB_ERRCODE(TDB_ERR_NOEXIST
, 0);
961 /* If they do lockkeys, check that this hash is one they locked */
962 static int tdb_keylocked(TDB_CONTEXT
*tdb
, u32 hash
)
965 if (!tdb
->lockedkeys
)
967 for (i
= 0; i
< tdb
->lockedkeys
[0]; i
++)
968 if (tdb
->lockedkeys
[i
+1] == hash
)
970 return TDB_ERRCODE(TDB_ERR_NOLOCK
, 0);
973 /* As tdb_find, but if you succeed, keep the lock */
974 static tdb_off
tdb_find_lock(TDB_CONTEXT
*tdb
, TDB_DATA key
, int locktype
,
975 struct list_struct
*rec
)
979 hash
= tdb_hash(&key
);
980 if (!tdb_keylocked(tdb
, hash
))
982 if (tdb_lock(tdb
, BUCKET(hash
), locktype
) == -1)
984 if (!(rec_ptr
= tdb_find(tdb
, key
, hash
, rec
)))
985 tdb_unlock(tdb
, BUCKET(hash
), locktype
);
989 enum TDB_ERROR
tdb_error(TDB_CONTEXT
*tdb
)
994 static struct tdb_errname
{
995 enum TDB_ERROR ecode
; const char *estring
;
996 } emap
[] = { {TDB_SUCCESS
, "Success"},
997 {TDB_ERR_CORRUPT
, "Corrupt database"},
998 {TDB_ERR_IO
, "IO Error"},
999 {TDB_ERR_LOCK
, "Locking error"},
1000 {TDB_ERR_OOM
, "Out of memory"},
1001 {TDB_ERR_EXISTS
, "Record exists"},
1002 {TDB_ERR_NOLOCK
, "Lock exists on other keys"},
1003 {TDB_ERR_NOEXIST
, "Record does not exist"} };
1005 /* Error string for the last tdb error */
1006 const char *tdb_errorstr(TDB_CONTEXT
*tdb
)
1009 for (i
= 0; i
< sizeof(emap
) / sizeof(struct tdb_errname
); i
++)
1010 if (tdb
->ecode
== emap
[i
].ecode
)
1011 return emap
[i
].estring
;
1012 return "Invalid error code";
1015 /* update an entry in place - this only works if the new data size
1016 is <= the old data size and the key exists.
1017 on failure return -1
1019 static int tdb_update(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA dbuf
)
1021 struct list_struct rec
;
1026 if (!(rec_ptr
= tdb_find_lock(tdb
, key
, F_WRLCK
, &rec
)))
1029 /* must be long enough key, data and tailer */
1030 if (rec
.rec_len
< key
.dsize
+ dbuf
.dsize
+ sizeof(tdb_off
)) {
1031 tdb
->ecode
= TDB_SUCCESS
; /* Not really an error */
1035 if (tdb_write(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
1036 dbuf
.dptr
, dbuf
.dsize
) == -1)
1039 if (dbuf
.dsize
!= rec
.data_len
) {
1041 rec
.data_len
= dbuf
.dsize
;
1042 ret
= rec_write(tdb
, rec_ptr
, &rec
);
1046 tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_WRLCK
);
1050 /* find an entry in the database given a key */
1051 TDB_DATA
tdb_fetch(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1054 struct list_struct rec
;
1057 /* find which hash bucket it is in */
1058 if (!(rec_ptr
= tdb_find_lock(tdb
,key
,F_RDLCK
,&rec
)))
1061 ret
.dptr
= tdb_alloc_read(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
1063 ret
.dsize
= rec
.data_len
;
1064 tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_RDLCK
);
1068 /* check if an entry in the database exists
1070 note that 1 is returned if the key is found and 0 is returned if not found
1071 this doesn't match the conventions in the rest of this module, but is
1072 compatible with gdbm
1074 int tdb_exists(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1076 struct list_struct rec
;
1078 if (tdb_find_lock(tdb
, key
, F_RDLCK
, &rec
) == 0)
1080 tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_RDLCK
);
1084 /* record lock stops delete underneath */
1085 static int lock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1087 return off
? tdb_brlock(tdb
, off
, F_RDLCK
, F_SETLKW
, 0) : 0;
1090 Write locks override our own fcntl readlocks, so check it here.
1091 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1092 an error to fail to get the lock here.
1095 static int write_lock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1097 struct tdb_traverse_lock
*i
;
1098 for (i
= &tdb
->travlocks
; i
; i
= i
->next
)
1101 return tdb_brlock(tdb
, off
, F_WRLCK
, F_SETLK
, 1);
1105 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1106 an error to fail to get the lock here.
1109 static int write_unlock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1111 return tdb_brlock(tdb
, off
, F_UNLCK
, F_SETLK
, 0);
1113 /* fcntl locks don't stack: avoid unlocking someone else's */
1114 static int unlock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1116 struct tdb_traverse_lock
*i
;
1121 for (i
= &tdb
->travlocks
; i
; i
= i
->next
)
1124 return (count
== 1 ? tdb_brlock(tdb
, off
, F_UNLCK
, F_SETLKW
, 0) : 0);
1127 /* actually delete an entry in the database given the offset */
1128 static int do_delete(TDB_CONTEXT
*tdb
, tdb_off rec_ptr
, struct list_struct
*rec
)
1130 tdb_off last_ptr
, i
;
1131 struct list_struct lastrec
;
1133 if (tdb
->read_only
) return -1;
1135 if (write_lock_record(tdb
, rec_ptr
) == -1) {
1136 /* Someone traversing here: mark it as dead */
1137 rec
->magic
= TDB_DEAD_MAGIC
;
1138 return rec_write(tdb
, rec_ptr
, rec
);
1140 if (write_unlock_record(tdb
, rec_ptr
) != 0)
1143 /* find previous record in hash chain */
1144 if (ofs_read(tdb
, TDB_HASH_TOP(rec
->full_hash
), &i
) == -1)
1146 for (last_ptr
= 0; i
!= rec_ptr
; last_ptr
= i
, i
= lastrec
.next
)
1147 if (rec_read(tdb
, i
, &lastrec
) == -1)
1150 /* unlink it: next ptr is at start of record. */
1152 last_ptr
= TDB_HASH_TOP(rec
->full_hash
);
1153 if (ofs_write(tdb
, last_ptr
, &rec
->next
) == -1)
1156 /* recover the space */
1157 if (tdb_free(tdb
, rec_ptr
, rec
) == -1)
1162 /* Uses traverse lock: 0 = finish, -1 = error, other = record offset */
1163 static int tdb_next_lock(TDB_CONTEXT
*tdb
, struct tdb_traverse_lock
*tlock
,
1164 struct list_struct
*rec
)
1166 int want_next
= (tlock
->off
!= 0);
1168 /* No traversal allows if you've called tdb_lockkeys() */
1169 if (tdb
->lockedkeys
)
1170 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1172 /* Lock each chain from the start one. */
1173 for (; tlock
->hash
< tdb
->header
.hash_size
; tlock
->hash
++) {
1174 if (tdb_lock(tdb
, tlock
->hash
, F_WRLCK
) == -1)
1177 /* No previous record? Start at top of chain. */
1179 if (ofs_read(tdb
, TDB_HASH_TOP(tlock
->hash
),
1183 /* Otherwise unlock the previous record. */
1184 if (unlock_record(tdb
, tlock
->off
) != 0)
1189 /* We have offset of old record: grab next */
1190 if (rec_read(tdb
, tlock
->off
, rec
) == -1)
1192 tlock
->off
= rec
->next
;
1195 /* Iterate through chain */
1196 while( tlock
->off
) {
1198 if (rec_read(tdb
, tlock
->off
, rec
) == -1)
1200 if (!TDB_DEAD(rec
)) {
1201 /* Woohoo: we found one! */
1202 if (lock_record(tdb
, tlock
->off
) != 0)
1206 /* Try to clean dead ones from old traverses */
1207 current
= tlock
->off
;
1208 tlock
->off
= rec
->next
;
1209 if (do_delete(tdb
, current
, rec
) != 0)
1212 tdb_unlock(tdb
, tlock
->hash
, F_WRLCK
);
1215 /* We finished iteration without finding anything */
1216 return TDB_ERRCODE(TDB_SUCCESS
, 0);
1220 if (tdb_unlock(tdb
, tlock
->hash
, F_WRLCK
) != 0)
1221 TDB_LOG((tdb
, 0, "tdb_next_lock: On error unlock failed!\n"));
1225 /* traverse the entire database - calling fn(tdb, key, data) on each element.
1226 return -1 on error or the record count traversed
1227 if fn is NULL then it is not called
1228 a non-zero return value from fn() indicates that the traversal should stop
1230 int tdb_traverse(TDB_CONTEXT
*tdb
, tdb_traverse_func fn
, void *state
)
1233 struct list_struct rec
;
1234 struct tdb_traverse_lock tl
= { NULL
, 0, 0 };
1237 /* This was in the initializaton, above, but the IRIX compiler
1238 * did not like it. crh
1240 tl
.next
= tdb
->travlocks
.next
;
1242 /* fcntl locks don't stack: beware traverse inside traverse */
1243 tdb
->travlocks
.next
= &tl
;
1245 /* tdb_next_lock places locks on the record returned, and its chain */
1246 while ((ret
= tdb_next_lock(tdb
, &tl
, &rec
)) > 0) {
1248 /* now read the full record */
1249 key
.dptr
= tdb_alloc_read(tdb
, tl
.off
+ sizeof(rec
),
1250 rec
.key_len
+ rec
.data_len
);
1253 if (tdb_unlock(tdb
, tl
.hash
, F_WRLCK
) != 0)
1255 if (unlock_record(tdb
, tl
.off
) != 0)
1256 TDB_LOG((tdb
, 0, "tdb_traverse: key.dptr == NULL and unlock_record failed!\n"));
1259 key
.dsize
= rec
.key_len
;
1260 dbuf
.dptr
= key
.dptr
+ rec
.key_len
;
1261 dbuf
.dsize
= rec
.data_len
;
1263 /* Drop chain lock, call out */
1264 if (tdb_unlock(tdb
, tl
.hash
, F_WRLCK
) != 0) {
1268 if (fn
&& fn(tdb
, key
, dbuf
, state
)) {
1269 /* They want us to terminate traversal */
1271 if (unlock_record(tdb
, tl
.off
) != 0) {
1272 TDB_LOG((tdb
, 0, "tdb_traverse: unlock_record failed!\n"));;
1275 tdb
->travlocks
.next
= tl
.next
;
1276 SAFE_FREE(key
.dptr
);
1279 SAFE_FREE(key
.dptr
);
1282 tdb
->travlocks
.next
= tl
.next
;
1289 /* find the first entry in the database and return its key */
1290 TDB_DATA
tdb_firstkey(TDB_CONTEXT
*tdb
)
1293 struct list_struct rec
;
1295 /* release any old lock */
1296 if (unlock_record(tdb
, tdb
->travlocks
.off
) != 0)
1298 tdb
->travlocks
.off
= tdb
->travlocks
.hash
= 0;
1300 if (tdb_next_lock(tdb
, &tdb
->travlocks
, &rec
) <= 0)
1302 /* now read the key */
1303 key
.dsize
= rec
.key_len
;
1304 key
.dptr
=tdb_alloc_read(tdb
,tdb
->travlocks
.off
+sizeof(rec
),key
.dsize
);
1305 if (tdb_unlock(tdb
, BUCKET(tdb
->travlocks
.hash
), F_WRLCK
) != 0)
1306 TDB_LOG((tdb
, 0, "tdb_firstkey: error occurred while tdb_unlocking!\n"));
1310 /* find the next entry in the database, returning its key */
1311 TDB_DATA
tdb_nextkey(TDB_CONTEXT
*tdb
, TDB_DATA oldkey
)
1314 TDB_DATA key
= tdb_null
;
1315 struct list_struct rec
;
1318 /* Is locked key the old key? If so, traverse will be reliable. */
1319 if (tdb
->travlocks
.off
) {
1320 if (tdb_lock(tdb
,tdb
->travlocks
.hash
,F_WRLCK
))
1322 if (rec_read(tdb
, tdb
->travlocks
.off
, &rec
) == -1
1323 || !(k
= tdb_alloc_read(tdb
,tdb
->travlocks
.off
+sizeof(rec
),
1325 || memcmp(k
, oldkey
.dptr
, oldkey
.dsize
) != 0) {
1326 /* No, it wasn't: unlock it and start from scratch */
1327 if (unlock_record(tdb
, tdb
->travlocks
.off
) != 0)
1329 if (tdb_unlock(tdb
, tdb
->travlocks
.hash
, F_WRLCK
) != 0)
1331 tdb
->travlocks
.off
= 0;
1337 if (!tdb
->travlocks
.off
) {
1338 /* No previous element: do normal find, and lock record */
1339 tdb
->travlocks
.off
= tdb_find_lock(tdb
, oldkey
, F_WRLCK
, &rec
);
1340 if (!tdb
->travlocks
.off
)
1342 tdb
->travlocks
.hash
= BUCKET(rec
.full_hash
);
1343 if (lock_record(tdb
, tdb
->travlocks
.off
) != 0) {
1344 TDB_LOG((tdb
, 0, "tdb_nextkey: lock_record failed (%s)!\n", strerror(errno
)));
1348 oldhash
= tdb
->travlocks
.hash
;
1350 /* Grab next record: locks chain and returned record,
1351 unlocks old record */
1352 if (tdb_next_lock(tdb
, &tdb
->travlocks
, &rec
) > 0) {
1353 key
.dsize
= rec
.key_len
;
1354 key
.dptr
= tdb_alloc_read(tdb
, tdb
->travlocks
.off
+sizeof(rec
),
1356 /* Unlock the chain of this new record */
1357 if (tdb_unlock(tdb
, tdb
->travlocks
.hash
, F_WRLCK
) != 0)
1358 TDB_LOG((tdb
, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1360 /* Unlock the chain of old record */
1361 if (tdb_unlock(tdb
, BUCKET(oldhash
), F_WRLCK
) != 0)
1362 TDB_LOG((tdb
, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1366 /* delete an entry in the database given a key */
1367 int tdb_delete(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1370 struct list_struct rec
;
1373 if (!(rec_ptr
= tdb_find_lock(tdb
, key
, F_WRLCK
, &rec
)))
1375 ret
= do_delete(tdb
, rec_ptr
, &rec
);
1376 if (tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_WRLCK
) != 0)
1377 TDB_LOG((tdb
, 0, "tdb_delete: WARNING tdb_unlock failed!\n"));
1381 /* store an element in the database, replacing any existing element
1384 return 0 on success, -1 on failure
1386 int tdb_store(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA dbuf
, int flag
)
1388 struct list_struct rec
;
1394 /* find which hash bucket it is in */
1395 hash
= tdb_hash(&key
);
1396 if (!tdb_keylocked(tdb
, hash
))
1398 if (tdb_lock(tdb
, BUCKET(hash
), F_WRLCK
) == -1)
1401 /* check for it existing, on insert. */
1402 if (flag
== TDB_INSERT
) {
1403 if (tdb_exists(tdb
, key
)) {
1404 tdb
->ecode
= TDB_ERR_EXISTS
;
1408 /* first try in-place update, on modify or replace. */
1409 if (tdb_update(tdb
, key
, dbuf
) == 0)
1411 if (flag
== TDB_MODIFY
&& tdb
->ecode
== TDB_ERR_NOEXIST
)
1414 /* reset the error code potentially set by the tdb_update() */
1415 tdb
->ecode
= TDB_SUCCESS
;
1417 /* delete any existing record - if it doesn't exist we don't
1418 care. Doing this first reduces fragmentation, and avoids
1419 coalescing with `allocated' block before it's updated. */
1420 if (flag
!= TDB_INSERT
)
1421 tdb_delete(tdb
, key
);
1423 /* Copy key+value *before* allocating free space in case malloc
1424 fails and we are left with a dead spot in the tdb. */
1426 if (!(p
= (char *)malloc(key
.dsize
+ dbuf
.dsize
))) {
1427 tdb
->ecode
= TDB_ERR_OOM
;
1431 memcpy(p
, key
.dptr
, key
.dsize
);
1432 memcpy(p
+key
.dsize
, dbuf
.dptr
, dbuf
.dsize
);
1434 /* now we're into insert / modify / replace of a record which
1435 * we know could not be optimised by an in-place store (for
1436 * various reasons). */
1437 if (!(rec_ptr
= tdb_allocate(tdb
, key
.dsize
+ dbuf
.dsize
, &rec
)))
1440 /* Read hash top into next ptr */
1441 if (ofs_read(tdb
, TDB_HASH_TOP(hash
), &rec
.next
) == -1)
1444 rec
.key_len
= key
.dsize
;
1445 rec
.data_len
= dbuf
.dsize
;
1446 rec
.full_hash
= hash
;
1447 rec
.magic
= TDB_MAGIC
;
1449 /* write out and point the top of the hash chain at it */
1450 if (rec_write(tdb
, rec_ptr
, &rec
) == -1
1451 || tdb_write(tdb
, rec_ptr
+sizeof(rec
), p
, key
.dsize
+dbuf
.dsize
)==-1
1452 || ofs_write(tdb
, TDB_HASH_TOP(hash
), &rec_ptr
) == -1) {
1453 /* Need to tdb_unallocate() here */
1458 tdb_unlock(tdb
, BUCKET(hash
), F_WRLCK
);
1465 static int tdb_already_open(dev_t device
,
1470 for (i
= tdbs
; i
; i
= i
->next
) {
1471 if (i
->device
== device
&& i
->inode
== ino
) {
1479 /* open the database, creating it if necessary
1481 The open_flags and mode are passed straight to the open call on the
1482 database file. A flags value of O_WRONLY is invalid. The hash size
1483 is advisory, use zero for a default value.
1485 Return is NULL on error, in which case errno is also set. Don't
1486 try to call tdb_error or tdb_errname, just do strerror(errno).
1488 @param name may be NULL for internal databases. */
1489 TDB_CONTEXT
*tdb_open(const char *name
, int hash_size
, int tdb_flags
,
1490 int open_flags
, mode_t mode
)
1492 return tdb_open_ex(name
, hash_size
, tdb_flags
, open_flags
, mode
, NULL
);
1496 TDB_CONTEXT
*tdb_open_ex(const char *name
, int hash_size
, int tdb_flags
,
1497 int open_flags
, mode_t mode
,
1498 tdb_log_func log_fn
)
1502 int rev
= 0, locked
;
1506 if (!(tdb
= calloc(1, sizeof *tdb
))) {
1507 /* Can't log this */
1513 tdb
->map_ptr
= NULL
;
1514 tdb
->lockedkeys
= NULL
;
1515 tdb
->flags
= tdb_flags
;
1516 tdb
->open_flags
= open_flags
;
1517 tdb
->log_fn
= log_fn
;
1519 if ((open_flags
& O_ACCMODE
) == O_WRONLY
) {
1520 TDB_LOG((tdb
, 0, "tdb_open_ex: can't open tdb %s write-only\n",
1527 hash_size
= DEFAULT_HASH_SIZE
;
1528 if ((open_flags
& O_ACCMODE
) == O_RDONLY
) {
1530 /* read only databases don't do locking or clear if first */
1531 tdb
->flags
|= TDB_NOLOCK
;
1532 tdb
->flags
&= ~TDB_CLEAR_IF_FIRST
;
1535 /* internal databases don't mmap or lock, and start off cleared */
1536 if (tdb
->flags
& TDB_INTERNAL
) {
1537 tdb
->flags
|= (TDB_NOLOCK
| TDB_NOMMAP
);
1538 tdb
->flags
&= ~TDB_CLEAR_IF_FIRST
;
1539 if (tdb_new_database(tdb
, hash_size
) != 0) {
1540 TDB_LOG((tdb
, 0, "tdb_open_ex: tdb_new_database failed!"));
1546 if ((tdb
->fd
= open(name
, open_flags
, mode
)) == -1) {
1547 TDB_LOG((tdb
, 5, "tdb_open_ex: could not open file %s: %s\n",
1548 name
, strerror(errno
)));
1549 goto fail
; /* errno set by open(2) */
1552 /* ensure there is only one process initialising at once */
1553 if (tdb_brlock(tdb
, GLOBAL_LOCK
, F_WRLCK
, F_SETLKW
, 0) == -1) {
1554 TDB_LOG((tdb
, 0, "tdb_open_ex: failed to get global lock on %s: %s\n",
1555 name
, strerror(errno
)));
1556 goto fail
; /* errno set by tdb_brlock */
1559 /* we need to zero database if we are the only one with it open */
1560 if ((locked
= (tdb_brlock(tdb
, ACTIVE_LOCK
, F_WRLCK
, F_SETLK
, 0) == 0))
1561 && (tdb_flags
& TDB_CLEAR_IF_FIRST
)) {
1562 open_flags
|= O_CREAT
;
1563 if (ftruncate(tdb
->fd
, 0) == -1) {
1564 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1565 "failed to truncate %s: %s\n",
1566 name
, strerror(errno
)));
1567 goto fail
; /* errno set by ftruncate */
1571 if (read(tdb
->fd
, &tdb
->header
, sizeof(tdb
->header
)) != sizeof(tdb
->header
)
1572 || strcmp(tdb
->header
.magic_food
, TDB_MAGIC_FOOD
) != 0
1573 || (tdb
->header
.version
!= TDB_VERSION
1574 && !(rev
= (tdb
->header
.version
==TDB_BYTEREV(TDB_VERSION
))))) {
1575 /* its not a valid database - possibly initialise it */
1576 if (!(open_flags
& O_CREAT
) || tdb_new_database(tdb
, hash_size
) == -1) {
1577 errno
= EIO
; /* ie bad format or something */
1580 rev
= (tdb
->flags
& TDB_CONVERT
);
1582 vp
= (unsigned char *)&tdb
->header
.version
;
1583 vertest
= (((u32
)vp
[0]) << 24) | (((u32
)vp
[1]) << 16) |
1584 (((u32
)vp
[2]) << 8) | (u32
)vp
[3];
1585 tdb
->flags
|= (vertest
==TDB_VERSION
) ? TDB_BIGENDIAN
: 0;
1587 tdb
->flags
&= ~TDB_CONVERT
;
1589 tdb
->flags
|= TDB_CONVERT
;
1590 convert(&tdb
->header
, sizeof(tdb
->header
));
1592 if (fstat(tdb
->fd
, &st
) == -1)
1595 /* Is it already in the open list? If so, fail. */
1596 if (tdb_already_open(st
.st_dev
, st
.st_ino
)) {
1597 TDB_LOG((tdb
, 2, "tdb_open_ex: "
1598 "%s (%d,%d) is already open in this process\n",
1599 name
, st
.st_dev
, st
.st_ino
));
1604 if (!(tdb
->name
= (char *)strdup(name
))) {
1609 tdb
->map_size
= st
.st_size
;
1610 tdb
->device
= st
.st_dev
;
1611 tdb
->inode
= st
.st_ino
;
1612 tdb
->locked
= calloc(tdb
->header
.hash_size
+1, sizeof(tdb
->locked
[0]));
1614 TDB_LOG((tdb
, 2, "tdb_open_ex: "
1615 "failed to allocate lock structure for %s\n",
1622 if (!tdb
->read_only
)
1623 if (tdb_clear_spinlocks(tdb
) != 0) {
1624 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1625 "failed to clear spinlock\n"));
1628 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_UNLCK
, F_SETLK
, 0) == -1) {
1629 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1630 "failed to take ACTIVE_LOCK on %s: %s\n",
1631 name
, strerror(errno
)));
1635 /* leave this lock in place to indicate it's in use */
1636 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_RDLCK
, F_SETLKW
, 0) == -1)
1640 /* Internal (memory-only) databases skip all the code above to
1641 * do with disk files, and resume here by releasing their
1642 * global lock and hooking into the active list. */
1643 if (tdb_brlock(tdb
, GLOBAL_LOCK
, F_UNLCK
, F_SETLKW
, 0) == -1)
1650 { int save_errno
= errno
;
1656 if (tdb
->flags
& TDB_INTERNAL
)
1657 SAFE_FREE(tdb
->map_ptr
);
1661 SAFE_FREE(tdb
->name
);
1663 if (close(tdb
->fd
) != 0)
1664 TDB_LOG((tdb
, 5, "tdb_open_ex: failed to close tdb->fd on error!\n"));
1665 SAFE_FREE(tdb
->locked
);
1672 /* close a database */
1673 int tdb_close(TDB_CONTEXT
*tdb
)
1679 if (tdb
->flags
& TDB_INTERNAL
)
1680 SAFE_FREE(tdb
->map_ptr
);
1684 SAFE_FREE(tdb
->name
);
1686 ret
= close(tdb
->fd
);
1687 SAFE_FREE(tdb
->locked
);
1688 SAFE_FREE(tdb
->lockedkeys
);
1690 /* Remove from contexts list */
1691 for (i
= &tdbs
; *i
; i
= &(*i
)->next
) {
1698 memset(tdb
, 0, sizeof(*tdb
));
1704 /* lock/unlock entire database */
1705 int tdb_lockall(TDB_CONTEXT
*tdb
)
1709 /* There are no locks on read-only dbs */
1711 return TDB_ERRCODE(TDB_ERR_LOCK
, -1);
1712 if (tdb
->lockedkeys
)
1713 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1714 for (i
= 0; i
< tdb
->header
.hash_size
; i
++)
1715 if (tdb_lock(tdb
, i
, F_WRLCK
))
1718 /* If error, release locks we have... */
1719 if (i
< tdb
->header
.hash_size
) {
1722 for ( j
= 0; j
< i
; j
++)
1723 tdb_unlock(tdb
, j
, F_WRLCK
);
1724 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1729 void tdb_unlockall(TDB_CONTEXT
*tdb
)
1732 for (i
=0; i
< tdb
->header
.hash_size
; i
++)
1733 tdb_unlock(tdb
, i
, F_WRLCK
);
1736 int tdb_lockkeys(TDB_CONTEXT
*tdb
, u32 number
, TDB_DATA keys
[])
1740 /* Can't lock more keys if already locked */
1741 if (tdb
->lockedkeys
)
1742 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1743 if (!(tdb
->lockedkeys
= malloc(sizeof(u32
) * (number
+1))))
1744 return TDB_ERRCODE(TDB_ERR_OOM
, -1);
1745 /* First number in array is # keys */
1746 tdb
->lockedkeys
[0] = number
;
1748 /* Insertion sort by bucket */
1749 for (i
= 0; i
< number
; i
++) {
1750 hash
= tdb_hash(&keys
[i
]);
1751 for (j
= 0; j
< i
&& BUCKET(tdb
->lockedkeys
[j
+1]) < BUCKET(hash
); j
++);
1752 memmove(&tdb
->lockedkeys
[j
+2], &tdb
->lockedkeys
[j
+1], sizeof(u32
) * (i
-j
));
1753 tdb
->lockedkeys
[j
+1] = hash
;
1755 /* Finally, lock in order */
1756 for (i
= 0; i
< number
; i
++)
1757 if (tdb_lock(tdb
, i
, F_WRLCK
))
1760 /* If error, release locks we have... */
1762 for ( j
= 0; j
< i
; j
++)
1763 tdb_unlock(tdb
, j
, F_WRLCK
);
1764 SAFE_FREE(tdb
->lockedkeys
);
1765 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1770 /* Unlock the keys previously locked by tdb_lockkeys() */
1771 void tdb_unlockkeys(TDB_CONTEXT
*tdb
)
1774 for (i
= 0; i
< tdb
->lockedkeys
[0]; i
++)
1775 tdb_unlock(tdb
, tdb
->lockedkeys
[i
+1], F_WRLCK
);
1776 SAFE_FREE(tdb
->lockedkeys
);
1779 /* lock/unlock one hash chain. This is meant to be used to reduce
1780 contention - it cannot guarantee how many records will be locked */
1781 int tdb_chainlock(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1783 return tdb_lock(tdb
, BUCKET(tdb_hash(&key
)), F_WRLCK
);
1786 int tdb_chainunlock(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1788 return tdb_unlock(tdb
, BUCKET(tdb_hash(&key
)), F_WRLCK
);
1792 /* register a loging function */
1793 void tdb_logging_function(TDB_CONTEXT
*tdb
, void (*fn
)(TDB_CONTEXT
*, int , const char *, ...))
1799 /* reopen a tdb - this is used after a fork to ensure that we have an independent
1800 seek pointer from our parent and to re-establish locks */
1801 int tdb_reopen(TDB_CONTEXT
*tdb
)
1805 if (tdb_munmap(tdb
) != 0) {
1806 TDB_LOG((tdb
, 0, "tdb_reopen: munmap failed (%s)\n", strerror(errno
)));
1809 if (close(tdb
->fd
) != 0)
1810 TDB_LOG((tdb
, 0, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
1811 tdb
->fd
= open(tdb
->name
, tdb
->open_flags
& ~(O_CREAT
|O_TRUNC
), 0);
1812 if (tdb
->fd
== -1) {
1813 TDB_LOG((tdb
, 0, "tdb_reopen: open failed (%s)\n", strerror(errno
)));
1816 if (fstat(tdb
->fd
, &st
) != 0) {
1817 TDB_LOG((tdb
, 0, "tdb_reopen: fstat failed (%s)\n", strerror(errno
)));
1820 if (st
.st_ino
!= tdb
->inode
|| st
.st_dev
!= tdb
->device
) {
1821 TDB_LOG((tdb
, 0, "tdb_reopen: file dev/inode has changed!\n"));
1825 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_RDLCK
, F_SETLKW
, 0) == -1) {
1826 TDB_LOG((tdb
, 0, "tdb_reopen: failed to obtain active lock\n"));
1837 /* reopen all tdb's */
1838 int tdb_reopen_all(void)
1842 for (tdb
=tdbs
; tdb
; tdb
= tdb
->next
) {
1843 if (tdb_reopen(tdb
) != 0) return -1;