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-2003
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 ((rw_type
== F_WRLCK
) && (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 /* Ensure error code is set for log fun to examine. */
209 if (errno
== EINTR
&& palarm_fired
&& *palarm_fired
)
210 tdb
->ecode
= TDB_ERR_LOCK_TIMEOUT
;
212 tdb
->ecode
= TDB_ERR_LOCK
;
213 TDB_LOG((tdb
, 5,"tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d\n",
214 tdb
->fd
, offset
, rw_type
, lck_type
));
216 /* Was it an alarm timeout ? */
217 if (errno
== EINTR
&& palarm_fired
&& *palarm_fired
)
218 return TDB_ERRCODE(TDB_ERR_LOCK_TIMEOUT
, -1);
219 /* Otherwise - generic lock error. */
220 /* errno set by fcntl */
221 return TDB_ERRCODE(TDB_ERR_LOCK
, -1);
226 /* lock a list in the database. list -1 is the alloc list */
227 static int tdb_lock(TDB_CONTEXT
*tdb
, int list
, int ltype
)
229 if (list
< -1 || list
>= (int)tdb
->header
.hash_size
) {
230 TDB_LOG((tdb
, 0,"tdb_lock: invalid list %d for ltype=%d\n",
234 if (tdb
->flags
& TDB_NOLOCK
)
237 /* Since fcntl locks don't nest, we do a lock for the first one,
238 and simply bump the count for future ones */
239 if (tdb
->locked
[list
+1].count
== 0) {
240 if (!tdb
->read_only
&& tdb
->header
.rwlocks
) {
241 if (tdb_spinlock(tdb
, list
, ltype
)) {
242 TDB_LOG((tdb
, 0, "tdb_lock spinlock failed on list ltype=%d\n",
246 } else if (tdb_brlock(tdb
,FREELIST_TOP
+4*list
,ltype
,F_SETLKW
, 0)) {
247 TDB_LOG((tdb
, 0,"tdb_lock failed on list %d ltype=%d (%s)\n",
248 list
, ltype
, strerror(errno
)));
251 tdb
->locked
[list
+1].ltype
= ltype
;
253 tdb
->locked
[list
+1].count
++;
257 /* unlock the database: returns void because it's too late for errors. */
258 /* changed to return int it may be interesting to know there
259 has been an error --simo */
260 static int tdb_unlock(TDB_CONTEXT
*tdb
, int list
, int ltype
)
264 if (tdb
->flags
& TDB_NOLOCK
)
268 if (list
< -1 || list
>= (int)tdb
->header
.hash_size
) {
269 TDB_LOG((tdb
, 0, "tdb_unlock: list %d invalid (%d)\n", list
, tdb
->header
.hash_size
));
273 if (tdb
->locked
[list
+1].count
==0) {
274 TDB_LOG((tdb
, 0, "tdb_unlock: count is 0\n"));
278 if (tdb
->locked
[list
+1].count
== 1) {
279 /* Down to last nested lock: unlock underneath */
280 if (!tdb
->read_only
&& tdb
->header
.rwlocks
) {
281 ret
= tdb_spinunlock(tdb
, list
, ltype
);
283 ret
= tdb_brlock(tdb
, FREELIST_TOP
+4*list
, F_UNLCK
, F_SETLKW
, 0);
288 tdb
->locked
[list
+1].count
--;
291 TDB_LOG((tdb
, 0,"tdb_unlock: An error occurred unlocking!\n"));
295 /* This is based on the hash algorithm from gdbm */
296 static u32
tdb_hash(TDB_DATA
*key
)
298 u32 value
; /* Used to compute the hash value. */
299 u32 i
; /* Used to cycle through random values. */
301 /* Set the initial value from the key size. */
302 for (value
= 0x238F13AF * key
->dsize
, i
=0; i
< key
->dsize
; i
++)
303 value
= (value
+ (key
->dptr
[i
] << (i
*5 % 24)));
305 return (1103515243 * value
+ 12345);
308 /* check for an out of bounds access - if it is out of bounds then
309 see if the database has been expanded by someone else and expand
311 note that "len" is the minimum length needed for the db
313 static int tdb_oob(TDB_CONTEXT
*tdb
, tdb_off len
, int probe
)
316 if (len
<= tdb
->map_size
)
318 if (tdb
->flags
& TDB_INTERNAL
) {
320 /* Ensure ecode is set for log fn. */
321 tdb
->ecode
= TDB_ERR_IO
;
322 TDB_LOG((tdb
, 0,"tdb_oob len %d beyond internal malloc size %d\n",
323 (int)len
, (int)tdb
->map_size
));
325 return TDB_ERRCODE(TDB_ERR_IO
, -1);
328 if (fstat(tdb
->fd
, &st
) == -1)
329 return TDB_ERRCODE(TDB_ERR_IO
, -1);
331 if (st
.st_size
< (size_t)len
) {
333 /* Ensure ecode is set for log fn. */
334 tdb
->ecode
= TDB_ERR_IO
;
335 TDB_LOG((tdb
, 0,"tdb_oob len %d beyond eof at %d\n",
336 (int)len
, (int)st
.st_size
));
338 return TDB_ERRCODE(TDB_ERR_IO
, -1);
341 /* Unmap, update size, remap */
342 if (tdb_munmap(tdb
) == -1)
343 return TDB_ERRCODE(TDB_ERR_IO
, -1);
344 tdb
->map_size
= st
.st_size
;
349 /* write a lump of data at a specified offset */
350 static int tdb_write(TDB_CONTEXT
*tdb
, tdb_off off
, void *buf
, tdb_len len
)
352 if (tdb_oob(tdb
, off
+ len
, 0) != 0)
356 memcpy(off
+ (char *)tdb
->map_ptr
, buf
, len
);
358 else if (pwrite(tdb
->fd
, buf
, len
, off
) != (ssize_t
)len
) {
360 else if (lseek(tdb
->fd
, off
, SEEK_SET
) != off
361 || write(tdb
->fd
, buf
, len
) != (ssize_t
)len
) {
363 /* Ensure ecode is set for log fn. */
364 tdb
->ecode
= TDB_ERR_IO
;
365 TDB_LOG((tdb
, 0,"tdb_write failed at %d len=%d (%s)\n",
366 off
, len
, strerror(errno
)));
367 return TDB_ERRCODE(TDB_ERR_IO
, -1);
372 /* read a lump of data at a specified offset, maybe convert */
373 static int tdb_read(TDB_CONTEXT
*tdb
,tdb_off off
,void *buf
,tdb_len len
,int cv
)
375 if (tdb_oob(tdb
, off
+ len
, 0) != 0)
379 memcpy(buf
, off
+ (char *)tdb
->map_ptr
, len
);
381 else if (pread(tdb
->fd
, buf
, len
, off
) != (ssize_t
)len
) {
383 else if (lseek(tdb
->fd
, off
, SEEK_SET
) != off
384 || read(tdb
->fd
, buf
, len
) != (ssize_t
)len
) {
386 /* Ensure ecode is set for log fn. */
387 tdb
->ecode
= TDB_ERR_IO
;
388 TDB_LOG((tdb
, 0,"tdb_read failed at %d len=%d (%s)\n",
389 off
, len
, strerror(errno
)));
390 return TDB_ERRCODE(TDB_ERR_IO
, -1);
397 /* read a lump of data, allocating the space for it */
398 static char *tdb_alloc_read(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_len len
)
402 if (!(buf
= malloc(len
))) {
403 /* Ensure ecode is set for log fn. */
404 tdb
->ecode
= TDB_ERR_OOM
;
405 TDB_LOG((tdb
, 0,"tdb_alloc_read malloc failed len=%d (%s)\n",
406 len
, strerror(errno
)));
407 return TDB_ERRCODE(TDB_ERR_OOM
, buf
);
409 if (tdb_read(tdb
, offset
, buf
, len
, 0) == -1) {
416 /* read/write a tdb_off */
417 static int ofs_read(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_off
*d
)
419 return tdb_read(tdb
, offset
, (char*)d
, sizeof(*d
), DOCONV());
421 static int ofs_write(TDB_CONTEXT
*tdb
, tdb_off offset
, tdb_off
*d
)
424 return tdb_write(tdb
, offset
, CONVERT(off
), sizeof(*d
));
427 /* read/write a record */
428 static int rec_read(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
430 if (tdb_read(tdb
, offset
, rec
, sizeof(*rec
),DOCONV()) == -1)
432 if (TDB_BAD_MAGIC(rec
)) {
433 /* Ensure ecode is set for log fn. */
434 tdb
->ecode
= TDB_ERR_CORRUPT
;
435 TDB_LOG((tdb
, 0,"rec_read bad magic 0x%x at offset=%d\n", rec
->magic
, offset
));
436 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
438 return tdb_oob(tdb
, rec
->next
+sizeof(*rec
), 0);
440 static int rec_write(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
442 struct list_struct r
= *rec
;
443 return tdb_write(tdb
, offset
, CONVERT(r
), sizeof(r
));
446 /* read a freelist record and check for simple errors */
447 static int rec_free_read(TDB_CONTEXT
*tdb
, tdb_off off
, struct list_struct
*rec
)
449 if (tdb_read(tdb
, off
, rec
, sizeof(*rec
),DOCONV()) == -1)
452 if (rec
->magic
== TDB_MAGIC
) {
453 /* this happens when a app is showdown while deleting a record - we should
454 not completely fail when this happens */
455 TDB_LOG((tdb
, 0,"rec_free_read non-free magic at offset=%d - fixing\n",
457 rec
->magic
= TDB_FREE_MAGIC
;
458 if (tdb_write(tdb
, off
, rec
, sizeof(*rec
)) == -1)
462 if (rec
->magic
!= TDB_FREE_MAGIC
) {
463 /* Ensure ecode is set for log fn. */
464 tdb
->ecode
= TDB_ERR_CORRUPT
;
465 TDB_LOG((tdb
, 0,"rec_free_read bad magic 0x%x at offset=%d\n",
467 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
469 if (tdb_oob(tdb
, rec
->next
+sizeof(*rec
), 0) != 0)
474 /* update a record tailer (must hold allocation lock) */
475 static int update_tailer(TDB_CONTEXT
*tdb
, tdb_off offset
,
476 const struct list_struct
*rec
)
480 /* Offset of tailer from record header */
481 totalsize
= sizeof(*rec
) + rec
->rec_len
;
482 return ofs_write(tdb
, offset
+ totalsize
- sizeof(tdb_off
),
486 static tdb_off
tdb_dump_record(TDB_CONTEXT
*tdb
, tdb_off offset
)
488 struct list_struct rec
;
489 tdb_off tailer_ofs
, tailer
;
491 if (tdb_read(tdb
, offset
, (char *)&rec
, sizeof(rec
), DOCONV()) == -1) {
492 printf("ERROR: failed to read record at %u\n", offset
);
496 printf(" rec: offset=%u next=%d rec_len=%d key_len=%d data_len=%d full_hash=0x%x magic=0x%x\n",
497 offset
, rec
.next
, rec
.rec_len
, rec
.key_len
, rec
.data_len
, rec
.full_hash
, rec
.magic
);
499 tailer_ofs
= offset
+ sizeof(rec
) + rec
.rec_len
- sizeof(tdb_off
);
500 if (ofs_read(tdb
, tailer_ofs
, &tailer
) == -1) {
501 printf("ERROR: failed to read tailer at %u\n", tailer_ofs
);
505 if (tailer
!= rec
.rec_len
+ sizeof(rec
)) {
506 printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n",
507 (unsigned)tailer
, (unsigned)(rec
.rec_len
+ sizeof(rec
)));
512 static int tdb_dump_chain(TDB_CONTEXT
*tdb
, int i
)
514 tdb_off rec_ptr
, top
;
516 top
= TDB_HASH_TOP(i
);
518 if (tdb_lock(tdb
, i
, F_WRLCK
) != 0)
521 if (ofs_read(tdb
, top
, &rec_ptr
) == -1)
522 return tdb_unlock(tdb
, i
, F_WRLCK
);
525 printf("hash=%d\n", i
);
528 rec_ptr
= tdb_dump_record(tdb
, rec_ptr
);
531 return tdb_unlock(tdb
, i
, F_WRLCK
);
534 void tdb_dump_all(TDB_CONTEXT
*tdb
)
537 for (i
=0;i
<tdb
->header
.hash_size
;i
++) {
538 tdb_dump_chain(tdb
, i
);
540 printf("freelist:\n");
541 tdb_dump_chain(tdb
, -1);
544 int tdb_printfreelist(TDB_CONTEXT
*tdb
)
548 tdb_off offset
, rec_ptr
;
549 struct list_struct rec
;
551 if ((ret
= tdb_lock(tdb
, -1, F_WRLCK
)) != 0)
554 offset
= FREELIST_TOP
;
556 /* read in the freelist top */
557 if (ofs_read(tdb
, offset
, &rec_ptr
) == -1) {
558 tdb_unlock(tdb
, -1, F_WRLCK
);
562 printf("freelist top=[0x%08x]\n", rec_ptr
);
564 if (tdb_read(tdb
, rec_ptr
, (char *)&rec
, sizeof(rec
), DOCONV()) == -1) {
565 tdb_unlock(tdb
, -1, F_WRLCK
);
569 if (rec
.magic
!= TDB_FREE_MAGIC
) {
570 printf("bad magic 0x%08x in free list\n", rec
.magic
);
571 tdb_unlock(tdb
, -1, F_WRLCK
);
575 printf("entry offset=[0x%08x], rec.rec_len = [0x%08x (%d)]\n", rec
.next
, rec
.rec_len
, rec
.rec_len
);
576 total_free
+= rec
.rec_len
;
578 /* move to the next record */
581 printf("total rec_len = [0x%08x (%d)]\n", (int)total_free
,
584 return tdb_unlock(tdb
, -1, F_WRLCK
);
587 /* Remove an element from the freelist. Must have alloc lock. */
588 static int remove_from_freelist(TDB_CONTEXT
*tdb
, tdb_off off
, tdb_off next
)
592 /* read in the freelist top */
593 last_ptr
= FREELIST_TOP
;
594 while (ofs_read(tdb
, last_ptr
, &i
) != -1 && i
!= 0) {
596 /* We've found it! */
597 return ofs_write(tdb
, last_ptr
, &next
);
599 /* Follow chain (next offset is at start of record) */
602 TDB_LOG((tdb
, 0,"remove_from_freelist: not on list at off=%d\n", off
));
603 return TDB_ERRCODE(TDB_ERR_CORRUPT
, -1);
606 /* Add an element into the freelist. Merge adjacent records if
608 static int tdb_free(TDB_CONTEXT
*tdb
, tdb_off offset
, struct list_struct
*rec
)
612 /* Allocation and tailer lock */
613 if (tdb_lock(tdb
, -1, F_WRLCK
) != 0)
616 /* set an initial tailer, so if we fail we don't leave a bogus record */
617 if (update_tailer(tdb
, offset
, rec
) != 0) {
618 TDB_LOG((tdb
, 0, "tdb_free: upfate_tailer failed!\n"));
622 /* Look right first (I'm an Australian, dammit) */
623 right
= offset
+ sizeof(*rec
) + rec
->rec_len
;
624 if (right
+ sizeof(*rec
) <= tdb
->map_size
) {
625 struct list_struct r
;
627 if (tdb_read(tdb
, right
, &r
, sizeof(r
), DOCONV()) == -1) {
628 TDB_LOG((tdb
, 0, "tdb_free: right read failed at %u\n", right
));
632 /* If it's free, expand to include it. */
633 if (r
.magic
== TDB_FREE_MAGIC
) {
634 if (remove_from_freelist(tdb
, right
, r
.next
) == -1) {
635 TDB_LOG((tdb
, 0, "tdb_free: right free failed at %u\n", right
));
638 rec
->rec_len
+= sizeof(r
) + r
.rec_len
;
644 left
= offset
- sizeof(tdb_off
);
645 if (left
> TDB_HASH_TOP(tdb
->header
.hash_size
-1)) {
646 struct list_struct l
;
649 /* Read in tailer and jump back to header */
650 if (ofs_read(tdb
, left
, &leftsize
) == -1) {
651 TDB_LOG((tdb
, 0, "tdb_free: left offset read failed at %u\n", left
));
654 left
= offset
- leftsize
;
656 /* Now read in record */
657 if (tdb_read(tdb
, left
, &l
, sizeof(l
), DOCONV()) == -1) {
658 TDB_LOG((tdb
, 0, "tdb_free: left read failed at %u (%u)\n", left
, leftsize
));
662 /* If it's free, expand to include it. */
663 if (l
.magic
== TDB_FREE_MAGIC
) {
664 if (remove_from_freelist(tdb
, left
, l
.next
) == -1) {
665 TDB_LOG((tdb
, 0, "tdb_free: left free failed at %u\n", left
));
669 rec
->rec_len
+= leftsize
;
675 if (update_tailer(tdb
, offset
, rec
) == -1) {
676 TDB_LOG((tdb
, 0, "tdb_free: update_tailer failed at %u\n", offset
));
680 /* Now, prepend to free list */
681 rec
->magic
= TDB_FREE_MAGIC
;
683 if (ofs_read(tdb
, FREELIST_TOP
, &rec
->next
) == -1 ||
684 rec_write(tdb
, offset
, rec
) == -1 ||
685 ofs_write(tdb
, FREELIST_TOP
, &offset
) == -1) {
686 TDB_LOG((tdb
, 0, "tdb_free record write failed at offset=%d\n", offset
));
690 /* And we're done. */
691 tdb_unlock(tdb
, -1, F_WRLCK
);
695 tdb_unlock(tdb
, -1, F_WRLCK
);
700 /* expand a file. we prefer to use ftruncate, as that is what posix
701 says to use for mmap expansion */
702 static int expand_file(TDB_CONTEXT
*tdb
, tdb_off size
, tdb_off addition
)
705 #if HAVE_FTRUNCATE_EXTEND
706 if (ftruncate(tdb
->fd
, size
+addition
) != 0) {
707 TDB_LOG((tdb
, 0, "expand_file ftruncate to %d failed (%s)\n",
708 size
+addition
, strerror(errno
)));
715 if (pwrite(tdb
->fd
, &b
, 1, (size
+addition
) - 1) != 1) {
717 if (lseek(tdb
->fd
, (size
+addition
) - 1, SEEK_SET
) != (size
+addition
) - 1 ||
718 write(tdb
->fd
, &b
, 1) != 1) {
720 TDB_LOG((tdb
, 0, "expand_file to %d failed (%s)\n",
721 size
+addition
, strerror(errno
)));
726 /* now fill the file with something. This ensures that the file isn't sparse, which would be
727 very bad if we ran out of disk. This must be done with write, not via mmap */
728 memset(buf
, 0x42, sizeof(buf
));
730 int n
= addition
>sizeof(buf
)?sizeof(buf
):addition
;
732 int ret
= pwrite(tdb
->fd
, buf
, n
, size
);
735 if (lseek(tdb
->fd
, size
, SEEK_SET
) != size
)
737 ret
= write(tdb
->fd
, buf
, n
);
740 TDB_LOG((tdb
, 0, "expand_file write of %d failed (%s)\n",
741 n
, strerror(errno
)));
751 /* expand the database at least size bytes by expanding the underlying
752 file and doing the mmap again if necessary */
753 static int tdb_expand(TDB_CONTEXT
*tdb
, tdb_off size
)
755 struct list_struct rec
;
758 if (tdb_lock(tdb
, -1, F_WRLCK
) == -1) {
759 TDB_LOG((tdb
, 0, "lock failed in tdb_expand\n"));
763 /* must know about any previous expansions by another process */
764 tdb_oob(tdb
, tdb
->map_size
+ 1, 1);
766 /* always make room for at least 10 more records, and round
767 the database up to a multiple of TDB_PAGE_SIZE */
768 size
= TDB_ALIGN(tdb
->map_size
+ size
*10, TDB_PAGE_SIZE
) - tdb
->map_size
;
770 if (!(tdb
->flags
& TDB_INTERNAL
))
774 * We must ensure the file is unmapped before doing this
775 * to ensure consistency with systems like OpenBSD where
776 * writes and mmaps are not consistent.
779 /* expand the file itself */
780 if (!(tdb
->flags
& TDB_INTERNAL
)) {
781 if (expand_file(tdb
, tdb
->map_size
, size
) != 0)
785 tdb
->map_size
+= size
;
787 if (tdb
->flags
& TDB_INTERNAL
)
788 tdb
->map_ptr
= realloc(tdb
->map_ptr
, tdb
->map_size
);
791 * We must ensure the file is remapped before adding the space
792 * to ensure consistency with systems like OpenBSD where
793 * writes and mmaps are not consistent.
796 /* We're ok if the mmap fails as we'll fallback to read/write */
800 /* form a new freelist record */
801 memset(&rec
,'\0',sizeof(rec
));
802 rec
.rec_len
= size
- sizeof(rec
);
804 /* link it into the free list */
805 offset
= tdb
->map_size
- size
;
806 if (tdb_free(tdb
, offset
, &rec
) == -1)
809 tdb_unlock(tdb
, -1, F_WRLCK
);
812 tdb_unlock(tdb
, -1, F_WRLCK
);
816 /* allocate some space from the free list. The offset returned points
817 to a unconnected list_struct within the database with room for at
818 least length bytes of total data
820 0 is returned if the space could not be allocated
822 static tdb_off
tdb_allocate(TDB_CONTEXT
*tdb
, tdb_len length
,
823 struct list_struct
*rec
)
825 tdb_off rec_ptr
, last_ptr
, newrec_ptr
;
826 struct list_struct newrec
;
828 if (tdb_lock(tdb
, -1, F_WRLCK
) == -1)
831 /* Extra bytes required for tailer */
832 length
+= sizeof(tdb_off
);
835 last_ptr
= FREELIST_TOP
;
837 /* read in the freelist top */
838 if (ofs_read(tdb
, FREELIST_TOP
, &rec_ptr
) == -1)
841 /* keep looking until we find a freelist record big enough */
843 if (rec_free_read(tdb
, rec_ptr
, rec
) == -1)
846 if (rec
->rec_len
>= length
) {
847 /* found it - now possibly split it up */
848 if (rec
->rec_len
> length
+ MIN_REC_SIZE
) {
849 /* Length of left piece */
850 length
= TDB_ALIGN(length
, TDB_ALIGNMENT
);
852 /* Right piece to go on free list */
853 newrec
.rec_len
= rec
->rec_len
854 - (sizeof(*rec
) + length
);
855 newrec_ptr
= rec_ptr
+ sizeof(*rec
) + length
;
857 /* And left record is shortened */
858 rec
->rec_len
= length
;
862 /* Remove allocated record from the free list */
863 if (ofs_write(tdb
, last_ptr
, &rec
->next
) == -1)
866 /* Update header: do this before we drop alloc
867 lock, otherwise tdb_free() might try to
868 merge with us, thinking we're free.
869 (Thanks Jeremy Allison). */
870 rec
->magic
= TDB_MAGIC
;
871 if (rec_write(tdb
, rec_ptr
, rec
) == -1)
874 /* Did we create new block? */
876 /* Update allocated record tailer (we
878 if (update_tailer(tdb
, rec_ptr
, rec
) == -1)
881 /* Free new record */
882 if (tdb_free(tdb
, newrec_ptr
, &newrec
) == -1)
886 /* all done - return the new record offset */
887 tdb_unlock(tdb
, -1, F_WRLCK
);
890 /* move to the next record */
894 /* we didn't find enough space. See if we can expand the
895 database and if we can then try again */
896 if (tdb_expand(tdb
, length
+ sizeof(*rec
)) == 0)
899 tdb_unlock(tdb
, -1, F_WRLCK
);
903 /* initialise a new database with a specified hash size */
904 static int tdb_new_database(TDB_CONTEXT
*tdb
, int hash_size
)
906 struct tdb_header
*newdb
;
909 /* We make it up in memory, then write it out if not internal */
910 size
= sizeof(struct tdb_header
) + (hash_size
+1)*sizeof(tdb_off
);
911 if (!(newdb
= calloc(size
, 1)))
912 return TDB_ERRCODE(TDB_ERR_OOM
, -1);
914 /* Fill in the header */
915 newdb
->version
= TDB_VERSION
;
916 newdb
->hash_size
= hash_size
;
918 newdb
->rwlocks
= size
;
920 if (tdb
->flags
& TDB_INTERNAL
) {
921 tdb
->map_size
= size
;
922 tdb
->map_ptr
= (char *)newdb
;
923 memcpy(&tdb
->header
, newdb
, sizeof(tdb
->header
));
924 /* Convert the `ondisk' version if asked. */
928 if (lseek(tdb
->fd
, 0, SEEK_SET
) == -1)
931 if (ftruncate(tdb
->fd
, 0) == -1)
934 /* This creates an endian-converted header, as if read from disk */
936 memcpy(&tdb
->header
, newdb
, sizeof(tdb
->header
));
937 /* Don't endian-convert the magic food! */
938 memcpy(newdb
->magic_food
, TDB_MAGIC_FOOD
, strlen(TDB_MAGIC_FOOD
)+1);
939 if (write(tdb
->fd
, newdb
, size
) != size
)
942 ret
= tdb_create_rwlocks(tdb
->fd
, hash_size
);
949 /* Returns 0 on fail. On success, return offset of record, and fills
951 static tdb_off
tdb_find(TDB_CONTEXT
*tdb
, TDB_DATA key
, u32 hash
,
952 struct list_struct
*r
)
956 /* read in the hash top */
957 if (ofs_read(tdb
, TDB_HASH_TOP(hash
), &rec_ptr
) == -1)
960 /* keep looking until we find the right record */
962 if (rec_read(tdb
, rec_ptr
, r
) == -1)
965 if (!TDB_DEAD(r
) && hash
==r
->full_hash
&& key
.dsize
==r
->key_len
) {
967 /* a very likely hit - read the key */
968 k
= tdb_alloc_read(tdb
, rec_ptr
+ sizeof(*r
),
973 if (memcmp(key
.dptr
, k
, key
.dsize
) == 0) {
981 return TDB_ERRCODE(TDB_ERR_NOEXIST
, 0);
984 /* If they do lockkeys, check that this hash is one they locked */
985 static int tdb_keylocked(TDB_CONTEXT
*tdb
, u32 hash
)
988 if (!tdb
->lockedkeys
)
990 for (i
= 0; i
< tdb
->lockedkeys
[0]; i
++)
991 if (tdb
->lockedkeys
[i
+1] == hash
)
993 return TDB_ERRCODE(TDB_ERR_NOLOCK
, 0);
996 /* As tdb_find, but if you succeed, keep the lock */
997 static tdb_off
tdb_find_lock(TDB_CONTEXT
*tdb
, TDB_DATA key
, int locktype
,
998 struct list_struct
*rec
)
1002 hash
= tdb_hash(&key
);
1003 if (!tdb_keylocked(tdb
, hash
))
1005 if (tdb_lock(tdb
, BUCKET(hash
), locktype
) == -1)
1007 if (!(rec_ptr
= tdb_find(tdb
, key
, hash
, rec
)))
1008 tdb_unlock(tdb
, BUCKET(hash
), locktype
);
1012 enum TDB_ERROR
tdb_error(TDB_CONTEXT
*tdb
)
1017 static struct tdb_errname
{
1018 enum TDB_ERROR ecode
; const char *estring
;
1019 } emap
[] = { {TDB_SUCCESS
, "Success"},
1020 {TDB_ERR_CORRUPT
, "Corrupt database"},
1021 {TDB_ERR_IO
, "IO Error"},
1022 {TDB_ERR_LOCK
, "Locking error"},
1023 {TDB_ERR_OOM
, "Out of memory"},
1024 {TDB_ERR_EXISTS
, "Record exists"},
1025 {TDB_ERR_NOLOCK
, "Lock exists on other keys"},
1026 {TDB_ERR_NOEXIST
, "Record does not exist"} };
1028 /* Error string for the last tdb error */
1029 const char *tdb_errorstr(TDB_CONTEXT
*tdb
)
1032 for (i
= 0; i
< sizeof(emap
) / sizeof(struct tdb_errname
); i
++)
1033 if (tdb
->ecode
== emap
[i
].ecode
)
1034 return emap
[i
].estring
;
1035 return "Invalid error code";
1038 /* update an entry in place - this only works if the new data size
1039 is <= the old data size and the key exists.
1040 on failure return -1.
1043 static int tdb_update(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA dbuf
)
1045 struct list_struct rec
;
1049 if (!(rec_ptr
= tdb_find(tdb
, key
, tdb_hash(&key
), &rec
)))
1052 /* must be long enough key, data and tailer */
1053 if (rec
.rec_len
< key
.dsize
+ dbuf
.dsize
+ sizeof(tdb_off
)) {
1054 tdb
->ecode
= TDB_SUCCESS
; /* Not really an error */
1058 if (tdb_write(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
1059 dbuf
.dptr
, dbuf
.dsize
) == -1)
1062 if (dbuf
.dsize
!= rec
.data_len
) {
1064 rec
.data_len
= dbuf
.dsize
;
1065 return rec_write(tdb
, rec_ptr
, &rec
);
1071 /* find an entry in the database given a key */
1072 /* If an entry doesn't exist tdb_err will be set to
1073 * TDB_ERR_NOEXIST. If a key has no data attached
1074 * tdb_err will not be set. Both will return a
1075 * zero pptr and zero dsize.
1078 TDB_DATA
tdb_fetch(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1081 struct list_struct rec
;
1084 /* find which hash bucket it is in */
1085 if (!(rec_ptr
= tdb_find_lock(tdb
,key
,F_RDLCK
,&rec
)))
1089 ret
.dptr
= tdb_alloc_read(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
1093 ret
.dsize
= rec
.data_len
;
1094 tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_RDLCK
);
1098 /* check if an entry in the database exists
1100 note that 1 is returned if the key is found and 0 is returned if not found
1101 this doesn't match the conventions in the rest of this module, but is
1102 compatible with gdbm
1104 int tdb_exists(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1106 struct list_struct rec
;
1108 if (tdb_find_lock(tdb
, key
, F_RDLCK
, &rec
) == 0)
1110 tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_RDLCK
);
1114 /* record lock stops delete underneath */
1115 static int lock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1117 return off
? tdb_brlock(tdb
, off
, F_RDLCK
, F_SETLKW
, 0) : 0;
1120 Write locks override our own fcntl readlocks, so check it here.
1121 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1122 an error to fail to get the lock here.
1125 static int write_lock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1127 struct tdb_traverse_lock
*i
;
1128 for (i
= &tdb
->travlocks
; i
; i
= i
->next
)
1131 return tdb_brlock(tdb
, off
, F_WRLCK
, F_SETLK
, 1);
1135 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
1136 an error to fail to get the lock here.
1139 static int write_unlock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1141 return tdb_brlock(tdb
, off
, F_UNLCK
, F_SETLK
, 0);
1143 /* fcntl locks don't stack: avoid unlocking someone else's */
1144 static int unlock_record(TDB_CONTEXT
*tdb
, tdb_off off
)
1146 struct tdb_traverse_lock
*i
;
1151 for (i
= &tdb
->travlocks
; i
; i
= i
->next
)
1154 return (count
== 1 ? tdb_brlock(tdb
, off
, F_UNLCK
, F_SETLKW
, 0) : 0);
1157 /* actually delete an entry in the database given the offset */
1158 static int do_delete(TDB_CONTEXT
*tdb
, tdb_off rec_ptr
, struct list_struct
*rec
)
1160 tdb_off last_ptr
, i
;
1161 struct list_struct lastrec
;
1163 if (tdb
->read_only
) return -1;
1165 if (write_lock_record(tdb
, rec_ptr
) == -1) {
1166 /* Someone traversing here: mark it as dead */
1167 rec
->magic
= TDB_DEAD_MAGIC
;
1168 return rec_write(tdb
, rec_ptr
, rec
);
1170 if (write_unlock_record(tdb
, rec_ptr
) != 0)
1173 /* find previous record in hash chain */
1174 if (ofs_read(tdb
, TDB_HASH_TOP(rec
->full_hash
), &i
) == -1)
1176 for (last_ptr
= 0; i
!= rec_ptr
; last_ptr
= i
, i
= lastrec
.next
)
1177 if (rec_read(tdb
, i
, &lastrec
) == -1)
1180 /* unlink it: next ptr is at start of record. */
1182 last_ptr
= TDB_HASH_TOP(rec
->full_hash
);
1183 if (ofs_write(tdb
, last_ptr
, &rec
->next
) == -1)
1186 /* recover the space */
1187 if (tdb_free(tdb
, rec_ptr
, rec
) == -1)
1192 /* Uses traverse lock: 0 = finish, -1 = error, other = record offset */
1193 static int tdb_next_lock(TDB_CONTEXT
*tdb
, struct tdb_traverse_lock
*tlock
,
1194 struct list_struct
*rec
)
1196 int want_next
= (tlock
->off
!= 0);
1198 /* No traversal allows if you've called tdb_lockkeys() */
1199 if (tdb
->lockedkeys
)
1200 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1202 /* Lock each chain from the start one. */
1203 for (; tlock
->hash
< tdb
->header
.hash_size
; tlock
->hash
++) {
1204 if (tdb_lock(tdb
, tlock
->hash
, F_WRLCK
) == -1)
1207 /* No previous record? Start at top of chain. */
1209 if (ofs_read(tdb
, TDB_HASH_TOP(tlock
->hash
),
1213 /* Otherwise unlock the previous record. */
1214 if (unlock_record(tdb
, tlock
->off
) != 0)
1219 /* We have offset of old record: grab next */
1220 if (rec_read(tdb
, tlock
->off
, rec
) == -1)
1222 tlock
->off
= rec
->next
;
1225 /* Iterate through chain */
1226 while( tlock
->off
) {
1228 if (rec_read(tdb
, tlock
->off
, rec
) == -1)
1230 if (!TDB_DEAD(rec
)) {
1231 /* Woohoo: we found one! */
1232 if (lock_record(tdb
, tlock
->off
) != 0)
1236 /* Try to clean dead ones from old traverses */
1237 current
= tlock
->off
;
1238 tlock
->off
= rec
->next
;
1239 if (do_delete(tdb
, current
, rec
) != 0)
1242 tdb_unlock(tdb
, tlock
->hash
, F_WRLCK
);
1245 /* We finished iteration without finding anything */
1246 return TDB_ERRCODE(TDB_SUCCESS
, 0);
1250 if (tdb_unlock(tdb
, tlock
->hash
, F_WRLCK
) != 0)
1251 TDB_LOG((tdb
, 0, "tdb_next_lock: On error unlock failed!\n"));
1255 /* traverse the entire database - calling fn(tdb, key, data) on each element.
1256 return -1 on error or the record count traversed
1257 if fn is NULL then it is not called
1258 a non-zero return value from fn() indicates that the traversal should stop
1260 int tdb_traverse(TDB_CONTEXT
*tdb
, tdb_traverse_func fn
, void *state
)
1263 struct list_struct rec
;
1264 struct tdb_traverse_lock tl
= { NULL
, 0, 0 };
1267 /* This was in the initializaton, above, but the IRIX compiler
1268 * did not like it. crh
1270 tl
.next
= tdb
->travlocks
.next
;
1272 /* fcntl locks don't stack: beware traverse inside traverse */
1273 tdb
->travlocks
.next
= &tl
;
1275 /* tdb_next_lock places locks on the record returned, and its chain */
1276 while ((ret
= tdb_next_lock(tdb
, &tl
, &rec
)) > 0) {
1278 /* now read the full record */
1279 key
.dptr
= tdb_alloc_read(tdb
, tl
.off
+ sizeof(rec
),
1280 rec
.key_len
+ rec
.data_len
);
1283 if (tdb_unlock(tdb
, tl
.hash
, F_WRLCK
) != 0)
1285 if (unlock_record(tdb
, tl
.off
) != 0)
1286 TDB_LOG((tdb
, 0, "tdb_traverse: key.dptr == NULL and unlock_record failed!\n"));
1289 key
.dsize
= rec
.key_len
;
1290 dbuf
.dptr
= key
.dptr
+ rec
.key_len
;
1291 dbuf
.dsize
= rec
.data_len
;
1293 /* Drop chain lock, call out */
1294 if (tdb_unlock(tdb
, tl
.hash
, F_WRLCK
) != 0) {
1298 if (fn
&& fn(tdb
, key
, dbuf
, state
)) {
1299 /* They want us to terminate traversal */
1301 if (unlock_record(tdb
, tl
.off
) != 0) {
1302 TDB_LOG((tdb
, 0, "tdb_traverse: unlock_record failed!\n"));;
1305 tdb
->travlocks
.next
= tl
.next
;
1306 SAFE_FREE(key
.dptr
);
1309 SAFE_FREE(key
.dptr
);
1312 tdb
->travlocks
.next
= tl
.next
;
1319 /* find the first entry in the database and return its key */
1320 TDB_DATA
tdb_firstkey(TDB_CONTEXT
*tdb
)
1323 struct list_struct rec
;
1325 /* release any old lock */
1326 if (unlock_record(tdb
, tdb
->travlocks
.off
) != 0)
1328 tdb
->travlocks
.off
= tdb
->travlocks
.hash
= 0;
1330 if (tdb_next_lock(tdb
, &tdb
->travlocks
, &rec
) <= 0)
1332 /* now read the key */
1333 key
.dsize
= rec
.key_len
;
1334 key
.dptr
=tdb_alloc_read(tdb
,tdb
->travlocks
.off
+sizeof(rec
),key
.dsize
);
1335 if (tdb_unlock(tdb
, BUCKET(tdb
->travlocks
.hash
), F_WRLCK
) != 0)
1336 TDB_LOG((tdb
, 0, "tdb_firstkey: error occurred while tdb_unlocking!\n"));
1340 /* find the next entry in the database, returning its key */
1341 TDB_DATA
tdb_nextkey(TDB_CONTEXT
*tdb
, TDB_DATA oldkey
)
1344 TDB_DATA key
= tdb_null
;
1345 struct list_struct rec
;
1348 /* Is locked key the old key? If so, traverse will be reliable. */
1349 if (tdb
->travlocks
.off
) {
1350 if (tdb_lock(tdb
,tdb
->travlocks
.hash
,F_WRLCK
))
1352 if (rec_read(tdb
, tdb
->travlocks
.off
, &rec
) == -1
1353 || !(k
= tdb_alloc_read(tdb
,tdb
->travlocks
.off
+sizeof(rec
),
1355 || memcmp(k
, oldkey
.dptr
, oldkey
.dsize
) != 0) {
1356 /* No, it wasn't: unlock it and start from scratch */
1357 if (unlock_record(tdb
, tdb
->travlocks
.off
) != 0)
1359 if (tdb_unlock(tdb
, tdb
->travlocks
.hash
, F_WRLCK
) != 0)
1361 tdb
->travlocks
.off
= 0;
1367 if (!tdb
->travlocks
.off
) {
1368 /* No previous element: do normal find, and lock record */
1369 tdb
->travlocks
.off
= tdb_find_lock(tdb
, oldkey
, F_WRLCK
, &rec
);
1370 if (!tdb
->travlocks
.off
)
1372 tdb
->travlocks
.hash
= BUCKET(rec
.full_hash
);
1373 if (lock_record(tdb
, tdb
->travlocks
.off
) != 0) {
1374 TDB_LOG((tdb
, 0, "tdb_nextkey: lock_record failed (%s)!\n", strerror(errno
)));
1378 oldhash
= tdb
->travlocks
.hash
;
1380 /* Grab next record: locks chain and returned record,
1381 unlocks old record */
1382 if (tdb_next_lock(tdb
, &tdb
->travlocks
, &rec
) > 0) {
1383 key
.dsize
= rec
.key_len
;
1384 key
.dptr
= tdb_alloc_read(tdb
, tdb
->travlocks
.off
+sizeof(rec
),
1386 /* Unlock the chain of this new record */
1387 if (tdb_unlock(tdb
, tdb
->travlocks
.hash
, F_WRLCK
) != 0)
1388 TDB_LOG((tdb
, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1390 /* Unlock the chain of old record */
1391 if (tdb_unlock(tdb
, BUCKET(oldhash
), F_WRLCK
) != 0)
1392 TDB_LOG((tdb
, 0, "tdb_nextkey: WARNING tdb_unlock failed!\n"));
1396 /* delete an entry in the database given a key */
1397 int tdb_delete(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1400 struct list_struct rec
;
1403 if (!(rec_ptr
= tdb_find_lock(tdb
, key
, F_WRLCK
, &rec
)))
1405 ret
= do_delete(tdb
, rec_ptr
, &rec
);
1406 if (tdb_unlock(tdb
, BUCKET(rec
.full_hash
), F_WRLCK
) != 0)
1407 TDB_LOG((tdb
, 0, "tdb_delete: WARNING tdb_unlock failed!\n"));
1411 /* store an element in the database, replacing any existing element
1414 return 0 on success, -1 on failure
1416 int tdb_store(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA dbuf
, int flag
)
1418 struct list_struct rec
;
1424 /* find which hash bucket it is in */
1425 hash
= tdb_hash(&key
);
1426 if (!tdb_keylocked(tdb
, hash
))
1428 if (tdb_lock(tdb
, BUCKET(hash
), F_WRLCK
) == -1)
1431 /* check for it existing, on insert. */
1432 if (flag
== TDB_INSERT
) {
1433 if (tdb_exists(tdb
, key
)) {
1434 tdb
->ecode
= TDB_ERR_EXISTS
;
1438 /* first try in-place update, on modify or replace. */
1439 if (tdb_update(tdb
, key
, dbuf
) == 0)
1441 if (flag
== TDB_MODIFY
&& tdb
->ecode
== TDB_ERR_NOEXIST
)
1444 /* reset the error code potentially set by the tdb_update() */
1445 tdb
->ecode
= TDB_SUCCESS
;
1447 /* delete any existing record - if it doesn't exist we don't
1448 care. Doing this first reduces fragmentation, and avoids
1449 coalescing with `allocated' block before it's updated. */
1450 if (flag
!= TDB_INSERT
)
1451 tdb_delete(tdb
, key
);
1453 /* Copy key+value *before* allocating free space in case malloc
1454 fails and we are left with a dead spot in the tdb. */
1456 if (!(p
= (char *)malloc(key
.dsize
+ dbuf
.dsize
))) {
1457 tdb
->ecode
= TDB_ERR_OOM
;
1461 memcpy(p
, key
.dptr
, key
.dsize
);
1463 memcpy(p
+key
.dsize
, dbuf
.dptr
, dbuf
.dsize
);
1465 /* now we're into insert / modify / replace of a record which
1466 * we know could not be optimised by an in-place store (for
1467 * various reasons). */
1468 if (!(rec_ptr
= tdb_allocate(tdb
, key
.dsize
+ dbuf
.dsize
, &rec
)))
1471 /* Read hash top into next ptr */
1472 if (ofs_read(tdb
, TDB_HASH_TOP(hash
), &rec
.next
) == -1)
1475 rec
.key_len
= key
.dsize
;
1476 rec
.data_len
= dbuf
.dsize
;
1477 rec
.full_hash
= hash
;
1478 rec
.magic
= TDB_MAGIC
;
1480 /* write out and point the top of the hash chain at it */
1481 if (rec_write(tdb
, rec_ptr
, &rec
) == -1
1482 || tdb_write(tdb
, rec_ptr
+sizeof(rec
), p
, key
.dsize
+dbuf
.dsize
)==-1
1483 || ofs_write(tdb
, TDB_HASH_TOP(hash
), &rec_ptr
) == -1) {
1484 /* Need to tdb_unallocate() here */
1489 tdb_unlock(tdb
, BUCKET(hash
), F_WRLCK
);
1496 /* Attempt to append data to an entry in place - this only works if the new data size
1497 is <= the old data size and the key exists.
1498 on failure return -1. Record must be locked before calling.
1500 static int tdb_append_inplace(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA new_dbuf
)
1502 struct list_struct rec
;
1506 if (!(rec_ptr
= tdb_find(tdb
, key
, tdb_hash(&key
), &rec
)))
1509 /* Append of 0 is always ok. */
1510 if (new_dbuf
.dsize
== 0)
1513 /* must be long enough for key, old data + new data and tailer */
1514 if (rec
.rec_len
< key
.dsize
+ rec
.data_len
+ new_dbuf
.dsize
+ sizeof(tdb_off
)) {
1516 tdb
->ecode
= TDB_SUCCESS
; /* Not really an error */
1520 if (tdb_write(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
+ rec
.data_len
,
1521 new_dbuf
.dptr
, new_dbuf
.dsize
) == -1)
1525 rec
.data_len
+= new_dbuf
.dsize
;
1526 return rec_write(tdb
, rec_ptr
, &rec
);
1529 /* Append to an entry. Create if not exist. */
1531 int tdb_append(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA new_dbuf
)
1533 struct list_struct rec
;
1538 size_t new_data_size
= 0;
1540 /* find which hash bucket it is in */
1541 hash
= tdb_hash(&key
);
1542 if (!tdb_keylocked(tdb
, hash
))
1544 if (tdb_lock(tdb
, BUCKET(hash
), F_WRLCK
) == -1)
1547 /* first try in-place. */
1548 if (tdb_append_inplace(tdb
, key
, new_dbuf
) == 0)
1551 /* reset the error code potentially set by the tdb_append_inplace() */
1552 tdb
->ecode
= TDB_SUCCESS
;
1555 if (!(rec_ptr
= tdb_find(tdb
, key
, hash
, &rec
))) {
1556 if (tdb
->ecode
!= TDB_ERR_NOEXIST
)
1559 /* Not found - create. */
1561 ret
= tdb_store(tdb
, key
, new_dbuf
, TDB_INSERT
);
1565 new_data_size
= rec
.data_len
+ new_dbuf
.dsize
;
1567 /* Copy key+old_value+value *before* allocating free space in case malloc
1568 fails and we are left with a dead spot in the tdb. */
1570 if (!(p
= (char *)malloc(key
.dsize
+ new_data_size
))) {
1571 tdb
->ecode
= TDB_ERR_OOM
;
1575 /* Copy the key in place. */
1576 memcpy(p
, key
.dptr
, key
.dsize
);
1578 /* Now read the old data into place. */
1580 tdb_read(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
, p
+ key
.dsize
, rec
.data_len
, 0) == -1)
1583 /* Finally append the new data. */
1585 memcpy(p
+key
.dsize
+rec
.data_len
, new_dbuf
.dptr
, new_dbuf
.dsize
);
1587 /* delete any existing record - if it doesn't exist we don't
1588 care. Doing this first reduces fragmentation, and avoids
1589 coalescing with `allocated' block before it's updated. */
1591 tdb_delete(tdb
, key
);
1593 if (!(rec_ptr
= tdb_allocate(tdb
, key
.dsize
+ new_data_size
, &rec
)))
1596 /* Read hash top into next ptr */
1597 if (ofs_read(tdb
, TDB_HASH_TOP(hash
), &rec
.next
) == -1)
1600 rec
.key_len
= key
.dsize
;
1601 rec
.data_len
= new_data_size
;
1602 rec
.full_hash
= hash
;
1603 rec
.magic
= TDB_MAGIC
;
1605 /* write out and point the top of the hash chain at it */
1606 if (rec_write(tdb
, rec_ptr
, &rec
) == -1
1607 || tdb_write(tdb
, rec_ptr
+sizeof(rec
), p
, key
.dsize
+new_data_size
)==-1
1608 || ofs_write(tdb
, TDB_HASH_TOP(hash
), &rec_ptr
) == -1) {
1609 /* Need to tdb_unallocate() here */
1615 tdb_unlock(tdb
, BUCKET(hash
), F_WRLCK
);
1623 static int tdb_already_open(dev_t device
,
1628 for (i
= tdbs
; i
; i
= i
->next
) {
1629 if (i
->device
== device
&& i
->inode
== ino
) {
1637 /* open the database, creating it if necessary
1639 The open_flags and mode are passed straight to the open call on the
1640 database file. A flags value of O_WRONLY is invalid. The hash size
1641 is advisory, use zero for a default value.
1643 Return is NULL on error, in which case errno is also set. Don't
1644 try to call tdb_error or tdb_errname, just do strerror(errno).
1646 @param name may be NULL for internal databases. */
1647 TDB_CONTEXT
*tdb_open(const char *name
, int hash_size
, int tdb_flags
,
1648 int open_flags
, mode_t mode
)
1650 return tdb_open_ex(name
, hash_size
, tdb_flags
, open_flags
, mode
, NULL
);
1654 TDB_CONTEXT
*tdb_open_ex(const char *name
, int hash_size
, int tdb_flags
,
1655 int open_flags
, mode_t mode
,
1656 tdb_log_func log_fn
)
1660 int rev
= 0, locked
;
1664 if (!(tdb
= calloc(1, sizeof *tdb
))) {
1665 /* Can't log this */
1671 tdb
->map_ptr
= NULL
;
1672 tdb
->lockedkeys
= NULL
;
1673 tdb
->flags
= tdb_flags
;
1674 tdb
->open_flags
= open_flags
;
1675 tdb
->log_fn
= log_fn
;
1677 if ((open_flags
& O_ACCMODE
) == O_WRONLY
) {
1678 TDB_LOG((tdb
, 0, "tdb_open_ex: can't open tdb %s write-only\n",
1685 hash_size
= DEFAULT_HASH_SIZE
;
1686 if ((open_flags
& O_ACCMODE
) == O_RDONLY
) {
1688 /* read only databases don't do locking or clear if first */
1689 tdb
->flags
|= TDB_NOLOCK
;
1690 tdb
->flags
&= ~TDB_CLEAR_IF_FIRST
;
1693 /* internal databases don't mmap or lock, and start off cleared */
1694 if (tdb
->flags
& TDB_INTERNAL
) {
1695 tdb
->flags
|= (TDB_NOLOCK
| TDB_NOMMAP
);
1696 tdb
->flags
&= ~TDB_CLEAR_IF_FIRST
;
1697 if (tdb_new_database(tdb
, hash_size
) != 0) {
1698 TDB_LOG((tdb
, 0, "tdb_open_ex: tdb_new_database failed!"));
1704 if ((tdb
->fd
= open(name
, open_flags
, mode
)) == -1) {
1705 TDB_LOG((tdb
, 5, "tdb_open_ex: could not open file %s: %s\n",
1706 name
, strerror(errno
)));
1707 goto fail
; /* errno set by open(2) */
1710 /* ensure there is only one process initialising at once */
1711 if (tdb_brlock(tdb
, GLOBAL_LOCK
, F_WRLCK
, F_SETLKW
, 0) == -1) {
1712 TDB_LOG((tdb
, 0, "tdb_open_ex: failed to get global lock on %s: %s\n",
1713 name
, strerror(errno
)));
1714 goto fail
; /* errno set by tdb_brlock */
1717 /* we need to zero database if we are the only one with it open */
1718 if ((locked
= (tdb_brlock(tdb
, ACTIVE_LOCK
, F_WRLCK
, F_SETLK
, 0) == 0))
1719 && (tdb_flags
& TDB_CLEAR_IF_FIRST
)) {
1720 open_flags
|= O_CREAT
;
1721 if (ftruncate(tdb
->fd
, 0) == -1) {
1722 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1723 "failed to truncate %s: %s\n",
1724 name
, strerror(errno
)));
1725 goto fail
; /* errno set by ftruncate */
1729 if (read(tdb
->fd
, &tdb
->header
, sizeof(tdb
->header
)) != sizeof(tdb
->header
)
1730 || strcmp(tdb
->header
.magic_food
, TDB_MAGIC_FOOD
) != 0
1731 || tdb
->header
.version
!= TDB_VERSION
1732 || (tdb
->header
.hash_size
!= hash_size
1733 && !(rev
= (tdb
->header
.version
==TDB_BYTEREV(TDB_VERSION
))))) {
1734 /* its not a valid database - possibly initialise it */
1735 if (!(open_flags
& O_CREAT
) || tdb_new_database(tdb
, hash_size
) == -1) {
1736 errno
= EIO
; /* ie bad format or something */
1739 rev
= (tdb
->flags
& TDB_CONVERT
);
1741 vp
= (unsigned char *)&tdb
->header
.version
;
1742 vertest
= (((u32
)vp
[0]) << 24) | (((u32
)vp
[1]) << 16) |
1743 (((u32
)vp
[2]) << 8) | (u32
)vp
[3];
1744 tdb
->flags
|= (vertest
==TDB_VERSION
) ? TDB_BIGENDIAN
: 0;
1746 tdb
->flags
&= ~TDB_CONVERT
;
1748 tdb
->flags
|= TDB_CONVERT
;
1749 convert(&tdb
->header
, sizeof(tdb
->header
));
1751 if (fstat(tdb
->fd
, &st
) == -1)
1754 /* Is it already in the open list? If so, fail. */
1755 if (tdb_already_open(st
.st_dev
, st
.st_ino
)) {
1756 TDB_LOG((tdb
, 2, "tdb_open_ex: "
1757 "%s (%d,%d) is already open in this process\n",
1758 name
, st
.st_dev
, st
.st_ino
));
1763 if (!(tdb
->name
= (char *)strdup(name
))) {
1768 tdb
->map_size
= st
.st_size
;
1769 tdb
->device
= st
.st_dev
;
1770 tdb
->inode
= st
.st_ino
;
1771 tdb
->locked
= calloc(tdb
->header
.hash_size
+1, sizeof(tdb
->locked
[0]));
1773 TDB_LOG((tdb
, 2, "tdb_open_ex: "
1774 "failed to allocate lock structure for %s\n",
1781 if (!tdb
->read_only
)
1782 if (tdb_clear_spinlocks(tdb
) != 0) {
1783 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1784 "failed to clear spinlock\n"));
1787 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_UNLCK
, F_SETLK
, 0) == -1) {
1788 TDB_LOG((tdb
, 0, "tdb_open_ex: "
1789 "failed to take ACTIVE_LOCK on %s: %s\n",
1790 name
, strerror(errno
)));
1794 /* leave this lock in place to indicate it's in use */
1795 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_RDLCK
, F_SETLKW
, 0) == -1)
1799 /* Internal (memory-only) databases skip all the code above to
1800 * do with disk files, and resume here by releasing their
1801 * global lock and hooking into the active list. */
1802 if (tdb_brlock(tdb
, GLOBAL_LOCK
, F_UNLCK
, F_SETLKW
, 0) == -1)
1809 { int save_errno
= errno
;
1815 if (tdb
->flags
& TDB_INTERNAL
)
1816 SAFE_FREE(tdb
->map_ptr
);
1820 SAFE_FREE(tdb
->name
);
1822 if (close(tdb
->fd
) != 0)
1823 TDB_LOG((tdb
, 5, "tdb_open_ex: failed to close tdb->fd on error!\n"));
1824 SAFE_FREE(tdb
->locked
);
1834 * @returns -1 for error; 0 for success.
1836 int tdb_close(TDB_CONTEXT
*tdb
)
1842 if (tdb
->flags
& TDB_INTERNAL
)
1843 SAFE_FREE(tdb
->map_ptr
);
1847 SAFE_FREE(tdb
->name
);
1849 ret
= close(tdb
->fd
);
1850 SAFE_FREE(tdb
->locked
);
1851 SAFE_FREE(tdb
->lockedkeys
);
1853 /* Remove from contexts list */
1854 for (i
= &tdbs
; *i
; i
= &(*i
)->next
) {
1861 memset(tdb
, 0, sizeof(*tdb
));
1867 /* lock/unlock entire database */
1868 int tdb_lockall(TDB_CONTEXT
*tdb
)
1872 /* There are no locks on read-only dbs */
1874 return TDB_ERRCODE(TDB_ERR_LOCK
, -1);
1875 if (tdb
->lockedkeys
)
1876 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1877 for (i
= 0; i
< tdb
->header
.hash_size
; i
++)
1878 if (tdb_lock(tdb
, i
, F_WRLCK
))
1881 /* If error, release locks we have... */
1882 if (i
< tdb
->header
.hash_size
) {
1885 for ( j
= 0; j
< i
; j
++)
1886 tdb_unlock(tdb
, j
, F_WRLCK
);
1887 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1892 void tdb_unlockall(TDB_CONTEXT
*tdb
)
1895 for (i
=0; i
< tdb
->header
.hash_size
; i
++)
1896 tdb_unlock(tdb
, i
, F_WRLCK
);
1899 int tdb_lockkeys(TDB_CONTEXT
*tdb
, u32 number
, TDB_DATA keys
[])
1903 /* Can't lock more keys if already locked */
1904 if (tdb
->lockedkeys
)
1905 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1906 if (!(tdb
->lockedkeys
= malloc(sizeof(u32
) * (number
+1))))
1907 return TDB_ERRCODE(TDB_ERR_OOM
, -1);
1908 /* First number in array is # keys */
1909 tdb
->lockedkeys
[0] = number
;
1911 /* Insertion sort by bucket */
1912 for (i
= 0; i
< number
; i
++) {
1913 hash
= tdb_hash(&keys
[i
]);
1914 for (j
= 0; j
< i
&& BUCKET(tdb
->lockedkeys
[j
+1]) < BUCKET(hash
); j
++);
1915 memmove(&tdb
->lockedkeys
[j
+2], &tdb
->lockedkeys
[j
+1], sizeof(u32
) * (i
-j
));
1916 tdb
->lockedkeys
[j
+1] = hash
;
1918 /* Finally, lock in order */
1919 for (i
= 0; i
< number
; i
++)
1920 if (tdb_lock(tdb
, i
, F_WRLCK
))
1923 /* If error, release locks we have... */
1925 for ( j
= 0; j
< i
; j
++)
1926 tdb_unlock(tdb
, j
, F_WRLCK
);
1927 SAFE_FREE(tdb
->lockedkeys
);
1928 return TDB_ERRCODE(TDB_ERR_NOLOCK
, -1);
1933 /* Unlock the keys previously locked by tdb_lockkeys() */
1934 void tdb_unlockkeys(TDB_CONTEXT
*tdb
)
1937 for (i
= 0; i
< tdb
->lockedkeys
[0]; i
++)
1938 tdb_unlock(tdb
, tdb
->lockedkeys
[i
+1], F_WRLCK
);
1939 SAFE_FREE(tdb
->lockedkeys
);
1942 /* lock/unlock one hash chain. This is meant to be used to reduce
1943 contention - it cannot guarantee how many records will be locked */
1944 int tdb_chainlock(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1946 return tdb_lock(tdb
, BUCKET(tdb_hash(&key
)), F_WRLCK
);
1949 int tdb_chainunlock(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1951 return tdb_unlock(tdb
, BUCKET(tdb_hash(&key
)), F_WRLCK
);
1954 int tdb_chainlock_read(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1956 return tdb_lock(tdb
, BUCKET(tdb_hash(&key
)), F_RDLCK
);
1959 int tdb_chainunlock_read(TDB_CONTEXT
*tdb
, TDB_DATA key
)
1961 return tdb_unlock(tdb
, BUCKET(tdb_hash(&key
)), F_RDLCK
);
1965 /* register a loging function */
1966 void tdb_logging_function(TDB_CONTEXT
*tdb
, void (*fn
)(TDB_CONTEXT
*, int , const char *, ...))
1972 /* reopen a tdb - this is used after a fork to ensure that we have an independent
1973 seek pointer from our parent and to re-establish locks */
1974 int tdb_reopen(TDB_CONTEXT
*tdb
)
1978 if (tdb_munmap(tdb
) != 0) {
1979 TDB_LOG((tdb
, 0, "tdb_reopen: munmap failed (%s)\n", strerror(errno
)));
1982 if (close(tdb
->fd
) != 0)
1983 TDB_LOG((tdb
, 0, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
1984 tdb
->fd
= open(tdb
->name
, tdb
->open_flags
& ~(O_CREAT
|O_TRUNC
), 0);
1985 if (tdb
->fd
== -1) {
1986 TDB_LOG((tdb
, 0, "tdb_reopen: open failed (%s)\n", strerror(errno
)));
1989 if (fstat(tdb
->fd
, &st
) != 0) {
1990 TDB_LOG((tdb
, 0, "tdb_reopen: fstat failed (%s)\n", strerror(errno
)));
1993 if (st
.st_ino
!= tdb
->inode
|| st
.st_dev
!= tdb
->device
) {
1994 TDB_LOG((tdb
, 0, "tdb_reopen: file dev/inode has changed!\n"));
1998 if (tdb_brlock(tdb
, ACTIVE_LOCK
, F_RDLCK
, F_SETLKW
, 0) == -1) {
1999 TDB_LOG((tdb
, 0, "tdb_reopen: failed to obtain active lock\n"));
2010 /* reopen all tdb's */
2011 int tdb_reopen_all(void)
2015 for (tdb
=tdbs
; tdb
; tdb
= tdb
->next
) {
2016 if (tdb_reopen(tdb
) != 0) return -1;