2 Unix SMB/CIFS implementation.
4 trivial database library
6 Copyright (C) Andrew Tridgell 1999-2005
7 Copyright (C) Paul `Rusty' Russell 2000
8 Copyright (C) Jeremy Allison 2000-2003
10 ** NOTE! The following LGPL license applies to the tdb
11 ** library. This does NOT imply that all of Samba is released
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 3 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 #include "tdb1_private.h"
32 non-blocking increment of the tdb sequence number if the tdb has been opened using
35 void tdb1_increment_seqnum_nonblock(struct tdb_context
*tdb
)
39 if (!(tdb
->flags
& TDB_SEQNUM
)) {
43 /* we ignore errors from this, as we have no sane way of
46 tdb1_ofs_read(tdb
, TDB1_SEQNUM_OFS
, &seqnum
);
48 tdb1_ofs_write(tdb
, TDB1_SEQNUM_OFS
, &seqnum
);
52 increment the tdb sequence number if the tdb has been opened using
55 static void tdb1_increment_seqnum(struct tdb_context
*tdb
)
57 if (!(tdb
->flags
& TDB_SEQNUM
)) {
61 if (tdb1_nest_lock(tdb
, TDB1_SEQNUM_OFS
, F_WRLCK
,
62 TDB_LOCK_WAIT
|TDB_LOCK_PROBE
) != 0) {
66 tdb1_increment_seqnum_nonblock(tdb
);
68 tdb1_nest_unlock(tdb
, TDB1_SEQNUM_OFS
, F_WRLCK
);
71 static enum TDB_ERROR
tdb1_key_compare(TDB_DATA key
, TDB_DATA data
,
74 bool *matches
= matches_
;
75 *matches
= (memcmp(data
.dptr
, key
.dptr
, data
.dsize
) == 0);
79 /* Returns 0 on fail; last_error will be TDB_ERR_NOEXIST if it simply
80 * wasn't there, otherwise a real error.
81 * On success, return offset of record, and fills in rec */
82 static tdb1_off_t
tdb1_find(struct tdb_context
*tdb
, TDB_DATA key
, uint32_t hash
,
83 struct tdb1_record
*r
)
87 /* read in the hash top */
88 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(hash
), &rec_ptr
) == -1)
91 /* keep looking until we find the right record */
93 if (tdb1_rec_read(tdb
, rec_ptr
, r
) == -1)
96 tdb
->stats
.compares
++;
98 tdb
->stats
.compare_wrong_bucket
++;
99 } else if (key
.dsize
!= r
->key_len
) {
100 tdb
->stats
.compare_wrong_keylen
++;
101 } else if (hash
!= r
->full_hash
) {
102 tdb
->stats
.compare_wrong_rechash
++;
104 enum TDB_ERROR ecode
;
106 ecode
= tdb1_parse_data(tdb
, key
, rec_ptr
+ sizeof(*r
),
107 r
->key_len
, tdb1_key_compare
,
110 if (ecode
!= TDB_SUCCESS
) {
111 tdb
->last_error
= ecode
;
116 tdb
->stats
.compare_wrong_keycmp
++;
121 /* detect tight infinite loop */
122 if (rec_ptr
== r
->next
) {
123 tdb
->last_error
= tdb_logerr(tdb
, TDB_ERR_CORRUPT
,
125 "tdb1_find: loop detected.");
130 tdb
->last_error
= TDB_ERR_NOEXIST
;
134 /* As tdb1_find, but if you succeed, keep the lock */
135 tdb1_off_t
tdb1_find_lock_hash(struct tdb_context
*tdb
, TDB_DATA key
, uint32_t hash
, int locktype
,
136 struct tdb1_record
*rec
)
140 if (tdb1_lock(tdb
, TDB1_BUCKET(hash
), locktype
) == -1)
142 if (!(rec_ptr
= tdb1_find(tdb
, key
, hash
, rec
)))
143 tdb1_unlock(tdb
, TDB1_BUCKET(hash
), locktype
);
147 static TDB_DATA
_tdb1_fetch(struct tdb_context
*tdb
, TDB_DATA key
);
149 static enum TDB_ERROR
tdb_update_hash_cmp(TDB_DATA key
, TDB_DATA data
, void *private_data
)
151 TDB_DATA
*dbuf
= (TDB_DATA
*)private_data
;
153 if (dbuf
->dsize
!= data
.dsize
) {
154 return TDB_ERR_EINVAL
;
156 if (memcmp(dbuf
->dptr
, data
.dptr
, data
.dsize
) != 0) {
157 return TDB_ERR_EINVAL
;
162 /* update an entry in place - this only works if the new data size
163 is <= the old data size and the key exists.
164 on failure return -1.
166 static int tdb1_update_hash(struct tdb_context
*tdb
, TDB_DATA key
, uint32_t hash
, TDB_DATA dbuf
)
168 struct tdb1_record rec
;
172 if (!(rec_ptr
= tdb1_find(tdb
, key
, hash
, &rec
)))
175 /* it could be an exact duplicate of what is there - this is
176 * surprisingly common (eg. with a ldb re-index). */
177 if (rec
.key_len
== key
.dsize
&&
178 rec
.data_len
== dbuf
.dsize
&&
179 rec
.full_hash
== hash
&&
180 tdb1_parse_record(tdb
, key
, tdb_update_hash_cmp
, &dbuf
) == TDB_SUCCESS
) {
184 /* must be long enough key, data and tailer */
185 if (rec
.rec_len
< key
.dsize
+ dbuf
.dsize
+ sizeof(tdb1_off_t
)) {
186 tdb
->last_error
= TDB_SUCCESS
; /* Not really an error */
190 if (tdb
->tdb1
.io
->tdb1_write(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
191 dbuf
.dptr
, dbuf
.dsize
) == -1)
194 if (dbuf
.dsize
!= rec
.data_len
) {
196 rec
.data_len
= dbuf
.dsize
;
197 return tdb1_rec_write(tdb
, rec_ptr
, &rec
);
203 /* find an entry in the database given a key */
204 /* If an entry doesn't exist tdb1_err will be set to
205 * TDB_ERR_NOEXIST. If a key has no data attached
206 * then the TDB_DATA will have zero length but
209 static TDB_DATA
_tdb1_fetch(struct tdb_context
*tdb
, TDB_DATA key
)
212 struct tdb1_record rec
;
216 /* find which hash bucket it is in */
217 hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
218 if (!(rec_ptr
= tdb1_find_lock_hash(tdb
,key
,hash
,F_RDLCK
,&rec
))) {
224 ret
.dptr
= tdb1_alloc_read(tdb
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
226 ret
.dsize
= rec
.data_len
;
227 tdb1_unlock(tdb
, TDB1_BUCKET(rec
.full_hash
), F_RDLCK
);
231 enum TDB_ERROR
tdb1_fetch(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA
*data
)
233 *data
= _tdb1_fetch(tdb
, key
);
234 if (data
->dptr
== NULL
)
235 return tdb
->last_error
;
239 enum TDB_ERROR
tdb1_parse_record(struct tdb_context
*tdb
, TDB_DATA key
,
240 enum TDB_ERROR (*parser
)(TDB_DATA key
,
246 struct tdb1_record rec
;
250 /* find which hash bucket it is in */
251 hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
253 if (!(rec_ptr
= tdb1_find_lock_hash(tdb
,key
,hash
,F_RDLCK
,&rec
))) {
254 return tdb
->last_error
;
257 ret
= tdb1_parse_data(tdb
, key
, rec_ptr
+ sizeof(rec
) + rec
.key_len
,
258 rec
.data_len
, parser
, private_data
);
260 tdb1_unlock(tdb
, TDB1_BUCKET(rec
.full_hash
), F_RDLCK
);
265 /* check if an entry in the database exists
267 note that 1 is returned if the key is found and 0 is returned if not found
268 this doesn't match the conventions in the rest of this module, but is
271 static int tdb1_exists_hash(struct tdb_context
*tdb
, TDB_DATA key
, uint32_t hash
)
273 struct tdb1_record rec
;
275 if (tdb1_find_lock_hash(tdb
, key
, hash
, F_RDLCK
, &rec
) == 0)
277 tdb1_unlock(tdb
, TDB1_BUCKET(rec
.full_hash
), F_RDLCK
);
281 int tdb1_exists(struct tdb_context
*tdb
, TDB_DATA key
)
283 uint32_t hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
286 assert(tdb
->flags
& TDB_VERSION1
);
287 ret
= tdb1_exists_hash(tdb
, key
, hash
);
291 /* actually delete an entry in the database given the offset */
292 int tdb1_do_delete(struct tdb_context
*tdb
, tdb1_off_t rec_ptr
, struct tdb1_record
*rec
)
294 tdb1_off_t last_ptr
, i
;
295 struct tdb1_record lastrec
;
297 if ((tdb
->flags
& TDB_RDONLY
) || tdb
->tdb1
.traverse_read
) return -1;
299 if (((tdb
->tdb1
.traverse_write
!= 0) && (!TDB1_DEAD(rec
))) ||
300 tdb1_write_lock_record(tdb
, rec_ptr
) == -1) {
301 /* Someone traversing here: mark it as dead */
302 rec
->magic
= TDB1_DEAD_MAGIC
;
303 return tdb1_rec_write(tdb
, rec_ptr
, rec
);
305 if (tdb1_write_unlock_record(tdb
, rec_ptr
) != 0)
308 /* find previous record in hash chain */
309 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(rec
->full_hash
), &i
) == -1)
311 for (last_ptr
= 0; i
!= rec_ptr
; last_ptr
= i
, i
= lastrec
.next
)
312 if (tdb1_rec_read(tdb
, i
, &lastrec
) == -1)
315 /* unlink it: next ptr is at start of record. */
317 last_ptr
= TDB1_HASH_TOP(rec
->full_hash
);
318 if (tdb1_ofs_write(tdb
, last_ptr
, &rec
->next
) == -1)
321 /* recover the space */
322 if (tdb1_free(tdb
, rec_ptr
, rec
) == -1)
327 static int tdb1_count_dead(struct tdb_context
*tdb
, uint32_t hash
)
331 struct tdb1_record rec
;
333 /* read in the hash top */
334 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(hash
), &rec_ptr
) == -1)
338 if (tdb1_rec_read(tdb
, rec_ptr
, &rec
) == -1)
341 if (rec
.magic
== TDB1_DEAD_MAGIC
) {
350 * Purge all DEAD records from a hash chain
352 static int tdb1_purge_dead(struct tdb_context
*tdb
, uint32_t hash
)
355 struct tdb1_record rec
;
358 if (tdb1_lock(tdb
, -1, F_WRLCK
) == -1) {
362 /* read in the hash top */
363 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(hash
), &rec_ptr
) == -1)
369 if (tdb1_rec_read(tdb
, rec_ptr
, &rec
) == -1) {
375 if (rec
.magic
== TDB1_DEAD_MAGIC
376 && tdb1_do_delete(tdb
, rec_ptr
, &rec
) == -1) {
383 tdb1_unlock(tdb
, -1, F_WRLCK
);
387 /* delete an entry in the database given a key */
388 static int tdb1_delete_hash(struct tdb_context
*tdb
, TDB_DATA key
, uint32_t hash
)
391 struct tdb1_record rec
;
394 if (tdb
->tdb1
.max_dead_records
!= 0) {
397 * Allow for some dead records per hash chain, mainly for
398 * tdb's with a very high create/delete rate like locking.tdb.
401 if (tdb1_lock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
) == -1)
404 if (tdb1_count_dead(tdb
, hash
) >= tdb
->tdb1
.max_dead_records
) {
406 * Don't let the per-chain freelist grow too large,
407 * delete all existing dead records
409 tdb1_purge_dead(tdb
, hash
);
412 if (!(rec_ptr
= tdb1_find(tdb
, key
, hash
, &rec
))) {
413 tdb1_unlock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
);
418 * Just mark the record as dead.
420 rec
.magic
= TDB1_DEAD_MAGIC
;
421 ret
= tdb1_rec_write(tdb
, rec_ptr
, &rec
);
424 if (!(rec_ptr
= tdb1_find_lock_hash(tdb
, key
, hash
, F_WRLCK
,
428 ret
= tdb1_do_delete(tdb
, rec_ptr
, &rec
);
432 tdb1_increment_seqnum(tdb
);
435 if (tdb1_unlock(tdb
, TDB1_BUCKET(rec
.full_hash
), F_WRLCK
) != 0)
436 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
437 "tdb1_delete: WARNING tdb1_unlock failed!");
441 int tdb1_delete(struct tdb_context
*tdb
, TDB_DATA key
)
443 uint32_t hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
446 assert(tdb
->flags
& TDB_VERSION1
);
447 ret
= tdb1_delete_hash(tdb
, key
, hash
);
452 * See if we have a dead record around with enough space
454 static tdb1_off_t
tdb1_find_dead(struct tdb_context
*tdb
, uint32_t hash
,
455 struct tdb1_record
*r
, tdb1_len_t length
)
459 /* read in the hash top */
460 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(hash
), &rec_ptr
) == -1)
463 /* keep looking until we find the right record */
465 if (tdb1_rec_read(tdb
, rec_ptr
, r
) == -1)
468 if (TDB1_DEAD(r
) && r
->rec_len
>= length
) {
470 * First fit for simple coding, TODO: change to best
480 static int _tdb1_store(struct tdb_context
*tdb
, TDB_DATA key
,
481 TDB_DATA dbuf
, int flag
, uint32_t hash
)
483 struct tdb1_record rec
;
487 /* check for it existing, on insert. */
488 if (flag
== TDB_INSERT
) {
489 if (tdb1_exists_hash(tdb
, key
, hash
)) {
490 tdb
->last_error
= TDB_ERR_EXISTS
;
493 if (tdb
->last_error
!= TDB_ERR_NOEXIST
) {
497 /* first try in-place update, on modify or replace. */
498 if (tdb1_update_hash(tdb
, key
, hash
, dbuf
) == 0) {
501 if (tdb
->last_error
!= TDB_SUCCESS
) {
502 if (tdb
->last_error
!= TDB_ERR_NOEXIST
) {
505 if (flag
== TDB_MODIFY
) {
506 /* if the record doesn't exist and we are in TDB1_MODIFY mode then
507 we should fail the store */
512 /* reset the error code potentially set by the tdb1_update() */
513 tdb
->last_error
= TDB_SUCCESS
;
515 /* delete any existing record - if it doesn't exist we don't
516 care. Doing this first reduces fragmentation, and avoids
517 coalescing with `allocated' block before it's updated. */
518 if (flag
!= TDB_INSERT
)
519 tdb1_delete_hash(tdb
, key
, hash
);
521 if (tdb
->tdb1
.max_dead_records
!= 0) {
523 * Allow for some dead records per hash chain, look if we can
524 * find one that can hold the new record. We need enough space
525 * for key, data and tailer. If we find one, we don't have to
526 * consult the central freelist.
528 rec_ptr
= tdb1_find_dead(
530 key
.dsize
+ dbuf
.dsize
+ sizeof(tdb1_off_t
));
533 rec
.key_len
= key
.dsize
;
534 rec
.data_len
= dbuf
.dsize
;
535 rec
.full_hash
= hash
;
536 rec
.magic
= TDB1_MAGIC
;
537 if (tdb1_rec_write(tdb
, rec_ptr
, &rec
) == -1
538 || tdb
->tdb1
.io
->tdb1_write(
539 tdb
, rec_ptr
+ sizeof(rec
),
540 key
.dptr
, key
.dsize
) == -1
541 || tdb
->tdb1
.io
->tdb1_write(
542 tdb
, rec_ptr
+ sizeof(rec
) + key
.dsize
,
543 dbuf
.dptr
, dbuf
.dsize
) == -1) {
551 * We have to allocate some space from the freelist, so this means we
552 * have to lock it. Use the chance to purge all the DEAD records from
553 * the hash chain under the freelist lock.
556 if (tdb1_lock(tdb
, -1, F_WRLCK
) == -1) {
560 if ((tdb
->tdb1
.max_dead_records
!= 0)
561 && (tdb1_purge_dead(tdb
, hash
) == -1)) {
562 tdb1_unlock(tdb
, -1, F_WRLCK
);
566 /* we have to allocate some space */
567 rec_ptr
= tdb1_allocate(tdb
, key
.dsize
+ dbuf
.dsize
, &rec
);
569 tdb1_unlock(tdb
, -1, F_WRLCK
);
575 /* Read hash top into next ptr */
576 if (tdb1_ofs_read(tdb
, TDB1_HASH_TOP(hash
), &rec
.next
) == -1)
579 rec
.key_len
= key
.dsize
;
580 rec
.data_len
= dbuf
.dsize
;
581 rec
.full_hash
= hash
;
582 rec
.magic
= TDB1_MAGIC
;
584 /* write out and point the top of the hash chain at it */
585 if (tdb1_rec_write(tdb
, rec_ptr
, &rec
) == -1
586 || tdb
->tdb1
.io
->tdb1_write(tdb
, rec_ptr
+ sizeof(rec
),
587 key
.dptr
, key
.dsize
) == -1
588 || tdb
->tdb1
.io
->tdb1_write(tdb
, rec_ptr
+ sizeof(rec
) + key
.dsize
,
589 dbuf
.dptr
, dbuf
.dsize
) == -1
590 || tdb1_ofs_write(tdb
, TDB1_HASH_TOP(hash
), &rec_ptr
) == -1) {
591 /* Need to tdb1_unallocate() here */
599 tdb1_increment_seqnum(tdb
);
604 /* store an element in the database, replacing any existing element
607 return 0 on success, -1 on failure
609 int tdb1_store(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA dbuf
, int flag
)
614 assert(tdb
->flags
& TDB_VERSION1
);
616 if ((tdb
->flags
& TDB_RDONLY
) || tdb
->tdb1
.traverse_read
) {
617 tdb
->last_error
= tdb_logerr(tdb
, TDB_ERR_RDONLY
,
619 "tdb_store: read-only tdb");
623 /* find which hash bucket it is in */
624 hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
625 if (tdb1_lock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
) == -1)
628 ret
= _tdb1_store(tdb
, key
, dbuf
, flag
, hash
);
629 tdb1_unlock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
);
633 /* Append to an entry. Create if not exist. */
634 int tdb1_append(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA new_dbuf
)
640 assert(tdb
->flags
& TDB_VERSION1
);
642 /* find which hash bucket it is in */
643 hash
= tdb_hash(tdb
, key
.dptr
, key
.dsize
);
644 if (tdb1_lock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
) == -1)
647 dbuf
= _tdb1_fetch(tdb
, key
);
649 if (dbuf
.dptr
== NULL
) {
650 dbuf
.dptr
= (unsigned char *)malloc(new_dbuf
.dsize
);
652 unsigned int new_len
= dbuf
.dsize
+ new_dbuf
.dsize
;
653 unsigned char *new_dptr
;
655 /* realloc '0' is special: don't do that. */
658 new_dptr
= (unsigned char *)realloc(dbuf
.dptr
, new_len
);
659 if (new_dptr
== NULL
) {
662 dbuf
.dptr
= new_dptr
;
665 if (dbuf
.dptr
== NULL
) {
666 tdb
->last_error
= TDB_ERR_OOM
;
670 memcpy(dbuf
.dptr
+ dbuf
.dsize
, new_dbuf
.dptr
, new_dbuf
.dsize
);
671 dbuf
.dsize
+= new_dbuf
.dsize
;
673 ret
= _tdb1_store(tdb
, key
, dbuf
, 0, hash
);
676 tdb1_unlock(tdb
, TDB1_BUCKET(hash
), F_WRLCK
);
677 SAFE_FREE(dbuf
.dptr
);
683 get the tdb sequence number. Only makes sense if the writers opened
684 with TDB1_SEQNUM set. Note that this sequence number will wrap quite
685 quickly, so it should only be used for a 'has something changed'
686 test, not for code that relies on the count of the number of changes
687 made. If you want a counter then use a tdb record.
689 The aim of this sequence number is to allow for a very lightweight
690 test of a possible tdb change.
692 int tdb1_get_seqnum(struct tdb_context
*tdb
)
696 tdb1_ofs_read(tdb
, TDB1_SEQNUM_OFS
, &seqnum
);
702 add a region of the file to the freelist. Length is the size of the region in bytes,
703 which includes the free list header that needs to be added
705 static int tdb1_free_region(struct tdb_context
*tdb
, tdb1_off_t offset
, ssize_t length
)
707 struct tdb1_record rec
;
708 if (length
<= sizeof(rec
)) {
709 /* the region is not worth adding */
712 if (length
+ offset
> tdb
->file
->map_size
) {
713 tdb
->last_error
= tdb_logerr(tdb
, TDB_ERR_CORRUPT
, TDB_LOG_ERROR
,
714 "tdb1_free_region: adding region beyond"
718 memset(&rec
,'\0',sizeof(rec
));
719 rec
.rec_len
= length
- sizeof(rec
);
720 if (tdb1_free(tdb
, offset
, &rec
) == -1) {
721 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
722 "tdb1_free_region: failed to add free record");
729 wipe the entire database, deleting all records. This can be done
730 very fast by using a allrecord lock. The entire data portion of the
731 file becomes a single entry in the freelist.
733 This code carefully steps around the recovery area, leaving it alone
735 int tdb1_wipe_all(struct tdb_context
*tdb
)
738 tdb1_off_t offset
= 0;
740 tdb1_off_t recovery_head
;
741 tdb1_len_t recovery_size
= 0;
743 if (tdb_lockall(tdb
) != TDB_SUCCESS
) {
748 /* see if the tdb has a recovery area, and remember its size
749 if so. We don't want to lose this as otherwise each
750 tdb1_wipe_all() in a transaction will increase the size of
751 the tdb by the size of the recovery area */
752 if (tdb1_ofs_read(tdb
, TDB1_RECOVERY_HEAD
, &recovery_head
) == -1) {
753 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
754 "tdb1_wipe_all: failed to read recovery head");
758 if (recovery_head
!= 0) {
759 struct tdb1_record rec
;
760 if (tdb
->tdb1
.io
->tdb1_read(tdb
, recovery_head
, &rec
, sizeof(rec
), TDB1_DOCONV()) == -1) {
761 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
762 "tdb1_wipe_all: failed to read recovery record");
765 recovery_size
= rec
.rec_len
+ sizeof(rec
);
768 /* wipe the hashes */
769 for (i
=0;i
<tdb
->tdb1
.header
.hash_size
;i
++) {
770 if (tdb1_ofs_write(tdb
, TDB1_HASH_TOP(i
), &offset
) == -1) {
771 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
772 "tdb1_wipe_all: failed to write hash %d", i
);
777 /* wipe the freelist */
778 if (tdb1_ofs_write(tdb
, TDB1_FREELIST_TOP
, &offset
) == -1) {
779 tdb_logerr(tdb
, tdb
->last_error
, TDB_LOG_ERROR
,
780 "tdb1_wipe_all: failed to write freelist");
784 /* add all the rest of the file to the freelist, possibly leaving a gap
785 for the recovery area */
786 if (recovery_size
== 0) {
787 /* the simple case - the whole file can be used as a freelist */
788 data_len
= (tdb
->file
->map_size
- TDB1_DATA_START(tdb
->tdb1
.header
.hash_size
));
789 if (tdb1_free_region(tdb
, TDB1_DATA_START(tdb
->tdb1
.header
.hash_size
), data_len
) != 0) {
793 /* we need to add two freelist entries - one on either
794 side of the recovery area
796 Note that we cannot shift the recovery area during
797 this operation. Only the transaction.c code may
798 move the recovery area or we risk subtle data
801 data_len
= (recovery_head
- TDB1_DATA_START(tdb
->tdb1
.header
.hash_size
));
802 if (tdb1_free_region(tdb
, TDB1_DATA_START(tdb
->tdb1
.header
.hash_size
), data_len
) != 0) {
805 /* and the 2nd free list entry after the recovery area - if any */
806 data_len
= tdb
->file
->map_size
- (recovery_head
+recovery_size
);
807 if (tdb1_free_region(tdb
, recovery_head
+recovery_size
, data_len
) != 0) {
812 tdb1_increment_seqnum_nonblock(tdb
);
821 /* Even on files, we can get partial writes due to signals. */
822 bool tdb1_write_all(int fd
, const void *buf
, size_t count
)
826 ret
= write(fd
, buf
, count
);
829 buf
= (const char *)buf
+ ret
;