tdb: Harden allocating the tdb recovery area
[Samba.git] / lib / tdb / common / transaction.c
blob6a5338c5faf1ba3ab3b9763341b8a70b68ff2c16
1 /*
2 Unix SMB/CIFS implementation.
4 trivial database library
6 Copyright (C) Andrew Tridgell 2005
8 ** NOTE! The following LGPL license applies to the tdb
9 ** library. This does NOT imply that all of Samba is released
10 ** under the LGPL
12 This library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 3 of the License, or (at your option) any later version.
17 This library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public
23 License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 #include "tdb_private.h"
29 transaction design:
31 - only allow a single transaction at a time per database. This makes
32 using the transaction API simpler, as otherwise the caller would
33 have to cope with temporary failures in transactions that conflict
34 with other current transactions
36 - keep the transaction recovery information in the same file as the
37 database, using a special 'transaction recovery' record pointed at
38 by the header. This removes the need for extra journal files as
39 used by some other databases
41 - dynamically allocated the transaction recover record, re-using it
42 for subsequent transactions. If a larger record is needed then
43 tdb_free() the old record to place it on the normal tdb freelist
44 before allocating the new record
46 - during transactions, keep a linked list of all writes that have
47 been performed by intercepting all tdb_write() calls. The hooked
48 transaction versions of tdb_read() and tdb_write() check this
49 linked list and try to use the elements of the list in preference
50 to the real database.
52 - don't allow any locks to be held when a transaction starts,
53 otherwise we can end up with deadlock (plus lack of lock nesting
54 in posix locks would mean the lock is lost)
56 - if the caller gains a lock during the transaction but doesn't
57 release it then fail the commit
59 - allow for nested calls to tdb_transaction_start(), re-using the
60 existing transaction record. If the inner transaction is cancelled
61 then a subsequent commit will fail
63 - keep a mirrored copy of the tdb hash chain heads to allow for the
64 fast hash heads scan on traverse, updating the mirrored copy in
65 the transaction version of tdb_write
67 - allow callers to mix transaction and non-transaction use of tdb,
68 although once a transaction is started then an exclusive lock is
69 gained until the transaction is committed or cancelled
71 - the commit stategy involves first saving away all modified data
72 into a linearised buffer in the transaction recovery area, then
73 marking the transaction recovery area with a magic value to
74 indicate a valid recovery record. In total 4 fsync/msync calls are
75 needed per commit to prevent race conditions. It might be possible
76 to reduce this to 3 or even 2 with some more work.
78 - check for a valid recovery record on open of the tdb, while the
79 open lock is held. Automatically recover from the transaction
80 recovery area if needed, then continue with the open as
81 usual. This allows for smooth crash recovery with no administrator
82 intervention.
84 - if TDB_NOSYNC is passed to flags in tdb_open then transactions are
85 still available, but no fsync/msync calls are made. This means we
86 are still proof against a process dying during transaction commit,
87 but not against machine reboot.
89 - if TDB_ALLOW_NESTING is passed to flags in tdb open, or added using
90 tdb_add_flags() transaction nesting is enabled.
91 It resets the TDB_DISALLOW_NESTING flag, as both cannot be used together.
92 The default is that transaction nesting is allowed.
93 Note: this default may change in future versions of tdb.
95 Beware. when transactions are nested a transaction successfully
96 completed with tdb_transaction_commit() can be silently unrolled later.
98 - if TDB_DISALLOW_NESTING is passed to flags in tdb open, or added using
99 tdb_add_flags() transaction nesting is disabled.
100 It resets the TDB_ALLOW_NESTING flag, as both cannot be used together.
101 An attempt create a nested transaction will fail with TDB_ERR_NESTING.
102 The default is that transaction nesting is allowed.
103 Note: this default may change in future versions of tdb.
108 hold the context of any current transaction
110 struct tdb_transaction {
111 /* we keep a mirrored copy of the tdb hash heads here so
112 tdb_next_hash_chain() can operate efficiently */
113 uint32_t *hash_heads;
115 /* the original io methods - used to do IOs to the real db */
116 const struct tdb_methods *io_methods;
118 /* the list of transaction blocks. When a block is first
119 written to, it gets created in this list */
120 uint8_t **blocks;
121 uint32_t num_blocks;
122 uint32_t block_size; /* bytes in each block */
123 uint32_t last_block_size; /* number of valid bytes in the last block */
125 /* non-zero when an internal transaction error has
126 occurred. All write operations will then fail until the
127 transaction is ended */
128 int transaction_error;
130 /* when inside a transaction we need to keep track of any
131 nested tdb_transaction_start() calls, as these are allowed,
132 but don't create a new transaction */
133 int nesting;
135 /* set when a prepare has already occurred */
136 bool prepared;
137 tdb_off_t magic_offset;
139 /* old file size before transaction */
140 tdb_len_t old_map_size;
142 /* did we expand in this transaction */
143 bool expanded;
148 read while in a transaction. We need to check first if the data is in our list
149 of transaction elements, then if not do a real read
151 static int transaction_read(struct tdb_context *tdb, tdb_off_t off, void *buf,
152 tdb_len_t len, int cv)
154 uint32_t blk;
156 /* break it down into block sized ops */
157 while (len + (off % tdb->transaction->block_size) > tdb->transaction->block_size) {
158 tdb_len_t len2 = tdb->transaction->block_size - (off % tdb->transaction->block_size);
159 if (transaction_read(tdb, off, buf, len2, cv) != 0) {
160 return -1;
162 len -= len2;
163 off += len2;
164 buf = (void *)(len2 + (char *)buf);
167 if (len == 0) {
168 return 0;
171 blk = off / tdb->transaction->block_size;
173 /* see if we have it in the block list */
174 if (tdb->transaction->num_blocks <= blk ||
175 tdb->transaction->blocks[blk] == NULL) {
176 /* nope, do a real read */
177 if (tdb->transaction->io_methods->tdb_read(tdb, off, buf, len, cv) != 0) {
178 goto fail;
180 return 0;
183 /* it is in the block list. Now check for the last block */
184 if (blk == tdb->transaction->num_blocks-1) {
185 if (len > tdb->transaction->last_block_size) {
186 goto fail;
190 /* now copy it out of this block */
191 memcpy(buf, tdb->transaction->blocks[blk] + (off % tdb->transaction->block_size), len);
192 if (cv) {
193 tdb_convert(buf, len);
195 return 0;
197 fail:
198 TDB_LOG((tdb, TDB_DEBUG_FATAL, "transaction_read: failed at off=%u len=%u\n", off, len));
199 tdb->ecode = TDB_ERR_IO;
200 tdb->transaction->transaction_error = 1;
201 return -1;
206 write while in a transaction
208 static int transaction_write(struct tdb_context *tdb, tdb_off_t off,
209 const void *buf, tdb_len_t len)
211 uint32_t blk;
213 if (buf == NULL) {
214 return -1;
217 /* Only a commit is allowed on a prepared transaction */
218 if (tdb->transaction->prepared) {
219 tdb->ecode = TDB_ERR_EINVAL;
220 TDB_LOG((tdb, TDB_DEBUG_FATAL, "transaction_write: transaction already prepared, write not allowed\n"));
221 tdb->transaction->transaction_error = 1;
222 return -1;
225 /* if the write is to a hash head, then update the transaction
226 hash heads */
227 if (len == sizeof(tdb_off_t) && off >= FREELIST_TOP &&
228 off < FREELIST_TOP+TDB_HASHTABLE_SIZE(tdb)) {
229 uint32_t chain = (off-FREELIST_TOP) / sizeof(tdb_off_t);
230 memcpy(&tdb->transaction->hash_heads[chain], buf, len);
233 /* break it up into block sized chunks */
234 while (len + (off % tdb->transaction->block_size) > tdb->transaction->block_size) {
235 tdb_len_t len2 = tdb->transaction->block_size - (off % tdb->transaction->block_size);
236 if (transaction_write(tdb, off, buf, len2) != 0) {
237 return -1;
239 len -= len2;
240 off += len2;
241 buf = (const void *)(len2 + (const char *)buf);
244 if (len == 0) {
245 return 0;
248 blk = off / tdb->transaction->block_size;
249 off = off % tdb->transaction->block_size;
251 if (tdb->transaction->num_blocks <= blk) {
252 uint8_t **new_blocks;
253 /* expand the blocks array */
254 new_blocks = (uint8_t **)realloc(tdb->transaction->blocks,
255 (blk+1)*sizeof(uint8_t *));
256 if (new_blocks == NULL) {
257 tdb->ecode = TDB_ERR_OOM;
258 goto fail;
260 memset(&new_blocks[tdb->transaction->num_blocks], 0,
261 (1+(blk - tdb->transaction->num_blocks))*sizeof(uint8_t *));
262 tdb->transaction->blocks = new_blocks;
263 tdb->transaction->num_blocks = blk+1;
264 tdb->transaction->last_block_size = 0;
267 /* allocate and fill a block? */
268 if (tdb->transaction->blocks[blk] == NULL) {
269 tdb->transaction->blocks[blk] = (uint8_t *)calloc(tdb->transaction->block_size, 1);
270 if (tdb->transaction->blocks[blk] == NULL) {
271 tdb->ecode = TDB_ERR_OOM;
272 tdb->transaction->transaction_error = 1;
273 return -1;
275 if (tdb->transaction->old_map_size > blk * tdb->transaction->block_size) {
276 tdb_len_t len2 = tdb->transaction->block_size;
277 if (len2 + (blk * tdb->transaction->block_size) > tdb->transaction->old_map_size) {
278 len2 = tdb->transaction->old_map_size - (blk * tdb->transaction->block_size);
280 if (tdb->transaction->io_methods->tdb_read(tdb, blk * tdb->transaction->block_size,
281 tdb->transaction->blocks[blk],
282 len2, 0) != 0) {
283 SAFE_FREE(tdb->transaction->blocks[blk]);
284 tdb->ecode = TDB_ERR_IO;
285 goto fail;
287 if (blk == tdb->transaction->num_blocks-1) {
288 tdb->transaction->last_block_size = len2;
293 /* overwrite part of an existing block */
294 memcpy(tdb->transaction->blocks[blk] + off, buf, len);
295 if (blk == tdb->transaction->num_blocks-1) {
296 if (len + off > tdb->transaction->last_block_size) {
297 tdb->transaction->last_block_size = len + off;
301 return 0;
303 fail:
304 TDB_LOG((tdb, TDB_DEBUG_FATAL, "transaction_write: failed at off=%u len=%u\n",
305 (blk*tdb->transaction->block_size) + off, len));
306 tdb->transaction->transaction_error = 1;
307 return -1;
312 write while in a transaction - this variant never expands the transaction blocks, it only
313 updates existing blocks. This means it cannot change the recovery size
315 static int transaction_write_existing(struct tdb_context *tdb, tdb_off_t off,
316 const void *buf, tdb_len_t len)
318 uint32_t blk;
320 /* break it up into block sized chunks */
321 while (len + (off % tdb->transaction->block_size) > tdb->transaction->block_size) {
322 tdb_len_t len2 = tdb->transaction->block_size - (off % tdb->transaction->block_size);
323 if (transaction_write_existing(tdb, off, buf, len2) != 0) {
324 return -1;
326 len -= len2;
327 off += len2;
328 if (buf != NULL) {
329 buf = (const void *)(len2 + (const char *)buf);
333 if (len == 0) {
334 return 0;
337 blk = off / tdb->transaction->block_size;
338 off = off % tdb->transaction->block_size;
340 if (tdb->transaction->num_blocks <= blk ||
341 tdb->transaction->blocks[blk] == NULL) {
342 return 0;
345 if (blk == tdb->transaction->num_blocks-1 &&
346 off + len > tdb->transaction->last_block_size) {
347 if (off >= tdb->transaction->last_block_size) {
348 return 0;
350 len = tdb->transaction->last_block_size - off;
353 /* overwrite part of an existing block */
354 memcpy(tdb->transaction->blocks[blk] + off, buf, len);
356 return 0;
361 accelerated hash chain head search, using the cached hash heads
363 static void transaction_next_hash_chain(struct tdb_context *tdb, uint32_t *chain)
365 uint32_t h = *chain;
366 for (;h < tdb->hash_size;h++) {
367 /* the +1 takes account of the freelist */
368 if (0 != tdb->transaction->hash_heads[h+1]) {
369 break;
372 (*chain) = h;
376 out of bounds check during a transaction
378 static int transaction_oob(struct tdb_context *tdb, tdb_off_t off,
379 tdb_len_t len, int probe)
381 if (off + len >= off && off + len <= tdb->map_size) {
382 return 0;
384 tdb->ecode = TDB_ERR_IO;
385 return -1;
389 transaction version of tdb_expand().
391 static int transaction_expand_file(struct tdb_context *tdb, tdb_off_t size,
392 tdb_off_t addition)
394 const char buf_zero[8192] = {0};
395 size_t buf_len = sizeof(buf_zero);
397 while (addition > 0) {
398 size_t n = MIN(addition, buf_len);
399 int ret;
401 ret = transaction_write(tdb, size, buf_zero, n);
402 if (ret != 0) {
403 return ret;
406 addition -= n;
407 size += n;
410 tdb->transaction->expanded = true;
412 return 0;
415 static const struct tdb_methods transaction_methods = {
416 transaction_read,
417 transaction_write,
418 transaction_next_hash_chain,
419 transaction_oob,
420 transaction_expand_file,
424 * Is a transaction currently active on this context?
427 _PUBLIC_ bool tdb_transaction_active(struct tdb_context *tdb)
429 return (tdb->transaction != NULL);
433 start a tdb transaction. No token is returned, as only a single
434 transaction is allowed to be pending per tdb_context
436 static int _tdb_transaction_start(struct tdb_context *tdb,
437 enum tdb_lock_flags lockflags)
439 /* some sanity checks */
440 if (tdb->read_only || (tdb->flags & TDB_INTERNAL)
441 || tdb->traverse_read) {
442 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_start: cannot start a transaction on a read-only or internal db\n"));
443 tdb->ecode = TDB_ERR_EINVAL;
444 return -1;
447 /* cope with nested tdb_transaction_start() calls */
448 if (tdb->transaction != NULL) {
449 if (!(tdb->flags & TDB_ALLOW_NESTING)) {
450 tdb->ecode = TDB_ERR_NESTING;
451 return -1;
453 tdb->transaction->nesting++;
454 TDB_LOG((tdb, TDB_DEBUG_TRACE, "tdb_transaction_start: nesting %d\n",
455 tdb->transaction->nesting));
456 return 0;
459 if (tdb_have_extra_locks(tdb)) {
460 /* the caller must not have any locks when starting a
461 transaction as otherwise we'll be screwed by lack
462 of nested locks in posix */
463 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_start: cannot start a transaction with locks held\n"));
464 tdb->ecode = TDB_ERR_LOCK;
465 return -1;
468 if (tdb->travlocks.next != NULL) {
469 /* you cannot use transactions inside a traverse (although you can use
470 traverse inside a transaction) as otherwise you can end up with
471 deadlock */
472 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_start: cannot start a transaction within a traverse\n"));
473 tdb->ecode = TDB_ERR_LOCK;
474 return -1;
477 tdb->transaction = (struct tdb_transaction *)
478 calloc(sizeof(struct tdb_transaction), 1);
479 if (tdb->transaction == NULL) {
480 tdb->ecode = TDB_ERR_OOM;
481 return -1;
484 /* a page at a time seems like a reasonable compromise between compactness and efficiency */
485 tdb->transaction->block_size = tdb->page_size;
487 /* get the transaction write lock. This is a blocking lock. As
488 discussed with Volker, there are a number of ways we could
489 make this async, which we will probably do in the future */
490 if (tdb_transaction_lock(tdb, F_WRLCK, lockflags) == -1) {
491 SAFE_FREE(tdb->transaction->blocks);
492 SAFE_FREE(tdb->transaction);
493 if ((lockflags & TDB_LOCK_WAIT) == 0) {
494 tdb->ecode = TDB_ERR_NOLOCK;
495 } else {
496 TDB_LOG((tdb, TDB_DEBUG_ERROR,
497 "tdb_transaction_start: "
498 "failed to get transaction lock\n"));
500 return -1;
503 /* get a read lock from the freelist to the end of file. This
504 is upgraded to a write lock during the commit */
505 if (tdb_allrecord_lock(tdb, F_RDLCK, TDB_LOCK_WAIT, true) == -1) {
506 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_start: failed to get hash locks\n"));
507 goto fail_allrecord_lock;
510 /* setup a copy of the hash table heads so the hash scan in
511 traverse can be fast */
512 tdb->transaction->hash_heads = (uint32_t *)
513 calloc(tdb->hash_size+1, sizeof(uint32_t));
514 if (tdb->transaction->hash_heads == NULL) {
515 tdb->ecode = TDB_ERR_OOM;
516 goto fail;
518 if (tdb->methods->tdb_read(tdb, FREELIST_TOP, tdb->transaction->hash_heads,
519 TDB_HASHTABLE_SIZE(tdb), 0) != 0) {
520 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_start: failed to read hash heads\n"));
521 tdb->ecode = TDB_ERR_IO;
522 goto fail;
525 /* make sure we know about any file expansions already done by
526 anyone else */
527 tdb->methods->tdb_oob(tdb, tdb->map_size, 1, 1);
528 tdb->transaction->old_map_size = tdb->map_size;
530 /* finally hook the io methods, replacing them with
531 transaction specific methods */
532 tdb->transaction->io_methods = tdb->methods;
533 tdb->methods = &transaction_methods;
535 /* Trace at the end, so we get sequence number correct. */
536 tdb_trace(tdb, "tdb_transaction_start");
537 return 0;
539 fail:
540 tdb_allrecord_unlock(tdb, F_RDLCK, false);
541 fail_allrecord_lock:
542 tdb_transaction_unlock(tdb, F_WRLCK);
543 SAFE_FREE(tdb->transaction->blocks);
544 SAFE_FREE(tdb->transaction->hash_heads);
545 SAFE_FREE(tdb->transaction);
546 return -1;
549 _PUBLIC_ int tdb_transaction_start(struct tdb_context *tdb)
551 return _tdb_transaction_start(tdb, TDB_LOCK_WAIT);
554 _PUBLIC_ int tdb_transaction_start_nonblock(struct tdb_context *tdb)
556 return _tdb_transaction_start(tdb, TDB_LOCK_NOWAIT|TDB_LOCK_PROBE);
560 sync to disk
562 static int transaction_sync(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t length)
564 if (tdb->flags & TDB_NOSYNC) {
565 return 0;
568 #ifdef HAVE_FDATASYNC
569 if (fdatasync(tdb->fd) != 0) {
570 #else
571 if (fsync(tdb->fd) != 0) {
572 #endif
573 tdb->ecode = TDB_ERR_IO;
574 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction: fsync failed\n"));
575 return -1;
577 #ifdef HAVE_MMAP
578 if (tdb->map_ptr) {
579 tdb_off_t moffset = offset & ~(tdb->page_size-1);
580 if (msync(moffset + (char *)tdb->map_ptr,
581 length + (offset - moffset), MS_SYNC) != 0) {
582 tdb->ecode = TDB_ERR_IO;
583 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction: msync failed - %s\n",
584 strerror(errno)));
585 return -1;
588 #endif
589 return 0;
593 static int _tdb_transaction_cancel(struct tdb_context *tdb)
595 int i, ret = 0;
597 if (tdb->transaction == NULL) {
598 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_cancel: no transaction\n"));
599 return -1;
602 if (tdb->transaction->nesting != 0) {
603 tdb->transaction->transaction_error = 1;
604 tdb->transaction->nesting--;
605 return 0;
608 tdb->map_size = tdb->transaction->old_map_size;
610 /* free all the transaction blocks */
611 for (i=0;i<tdb->transaction->num_blocks;i++) {
612 if (tdb->transaction->blocks[i] != NULL) {
613 free(tdb->transaction->blocks[i]);
616 SAFE_FREE(tdb->transaction->blocks);
618 if (tdb->transaction->magic_offset) {
619 const struct tdb_methods *methods = tdb->transaction->io_methods;
620 const uint32_t invalid = TDB_RECOVERY_INVALID_MAGIC;
622 /* remove the recovery marker */
623 if (methods->tdb_write(tdb, tdb->transaction->magic_offset, &invalid, 4) == -1 ||
624 transaction_sync(tdb, tdb->transaction->magic_offset, 4) == -1) {
625 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_cancel: failed to remove recovery magic\n"));
626 ret = -1;
630 /* This also removes the OPEN_LOCK, if we have it. */
631 tdb_release_transaction_locks(tdb);
633 /* restore the normal io methods */
634 tdb->methods = tdb->transaction->io_methods;
636 SAFE_FREE(tdb->transaction->hash_heads);
637 SAFE_FREE(tdb->transaction);
639 return ret;
643 cancel the current transaction
645 _PUBLIC_ int tdb_transaction_cancel(struct tdb_context *tdb)
647 tdb_trace(tdb, "tdb_transaction_cancel");
648 return _tdb_transaction_cancel(tdb);
652 work out how much space the linearised recovery data will consume
654 static bool tdb_recovery_size(struct tdb_context *tdb, tdb_len_t *result)
656 tdb_len_t recovery_size = 0;
657 int i;
659 recovery_size = sizeof(uint32_t);
660 for (i=0;i<tdb->transaction->num_blocks;i++) {
661 tdb_len_t block_size;
662 if (i * tdb->transaction->block_size >= tdb->transaction->old_map_size) {
663 break;
665 if (tdb->transaction->blocks[i] == NULL) {
666 continue;
668 if (!tdb_add_len_t(recovery_size, 2*sizeof(tdb_off_t),
669 &recovery_size)) {
670 return false;
672 if (i == tdb->transaction->num_blocks-1) {
673 block_size = tdb->transaction->last_block_size;
674 } else {
675 block_size = tdb->transaction->block_size;
677 if (!tdb_add_len_t(recovery_size, block_size,
678 &recovery_size)) {
679 return false;
683 *result = recovery_size;
684 return true;
687 int tdb_recovery_area(struct tdb_context *tdb,
688 const struct tdb_methods *methods,
689 tdb_off_t *recovery_offset,
690 struct tdb_record *rec)
692 int ret;
694 if (tdb_ofs_read(tdb, TDB_RECOVERY_HEAD, recovery_offset) == -1) {
695 return -1;
698 if (*recovery_offset == 0) {
699 rec->rec_len = 0;
700 return 0;
703 if (methods->tdb_read(tdb, *recovery_offset, rec, sizeof(*rec),
704 DOCONV()) == -1) {
705 return -1;
708 /* ignore invalid recovery regions: can happen in crash */
709 if (rec->magic != TDB_RECOVERY_MAGIC &&
710 rec->magic != TDB_RECOVERY_INVALID_MAGIC) {
711 *recovery_offset = 0;
712 rec->rec_len = 0;
715 ret = methods->tdb_oob(tdb, *recovery_offset, rec->rec_len, 1);
716 if (ret == -1) {
717 *recovery_offset = 0;
718 rec->rec_len = 0;
721 return 0;
725 allocate the recovery area, or use an existing recovery area if it is
726 large enough
728 static int tdb_recovery_allocate(struct tdb_context *tdb,
729 tdb_len_t *recovery_size,
730 tdb_off_t *recovery_offset,
731 tdb_len_t *recovery_max_size)
733 struct tdb_record rec;
734 const struct tdb_methods *methods = tdb->transaction->io_methods;
735 tdb_off_t recovery_head, new_end;
737 if (tdb_recovery_area(tdb, methods, &recovery_head, &rec) == -1) {
738 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: failed to read recovery head\n"));
739 return -1;
742 if (!tdb_recovery_size(tdb, recovery_size)) {
743 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: "
744 "overflow recovery size\n"));
745 return -1;
748 /* Existing recovery area? */
749 if (recovery_head != 0 && *recovery_size <= rec.rec_len) {
750 /* it fits in the existing area */
751 *recovery_max_size = rec.rec_len;
752 *recovery_offset = recovery_head;
753 return 0;
756 /* If recovery area in middle of file, we need a new one. */
757 if (recovery_head == 0
758 || recovery_head + sizeof(rec) + rec.rec_len != tdb->map_size) {
759 /* we need to free up the old recovery area, then allocate a
760 new one at the end of the file. Note that we cannot use
761 tdb_allocate() to allocate the new one as that might return
762 us an area that is being currently used (as of the start of
763 the transaction) */
764 if (recovery_head) {
765 if (tdb_free(tdb, recovery_head, &rec) == -1) {
766 TDB_LOG((tdb, TDB_DEBUG_FATAL,
767 "tdb_recovery_allocate: failed to"
768 " free previous recovery area\n"));
769 return -1;
772 /* the tdb_free() call might have increased
773 * the recovery size */
774 if (!tdb_recovery_size(tdb, recovery_size)) {
775 TDB_LOG((tdb, TDB_DEBUG_FATAL,
776 "tdb_recovery_allocate: "
777 "overflow recovery size\n"));
778 return -1;
782 /* New head will be at end of file. */
783 recovery_head = tdb->map_size;
786 /* Now we know where it will be. */
787 *recovery_offset = recovery_head;
789 /* Expand by more than we need, so we don't do it often. */
790 *recovery_max_size = tdb_expand_adjust(tdb->map_size,
791 *recovery_size,
792 tdb->page_size)
793 - sizeof(rec);
795 if (!tdb_add_off_t(recovery_head, sizeof(rec), &new_end) ||
796 !tdb_add_off_t(new_end, *recovery_max_size, &new_end)) {
797 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: "
798 "overflow recovery area\n"));
799 return -1;
802 if (methods->tdb_expand_file(tdb, tdb->transaction->old_map_size,
803 new_end - tdb->transaction->old_map_size)
804 == -1) {
805 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: failed to create recovery area\n"));
806 return -1;
809 /* remap the file (if using mmap) */
810 methods->tdb_oob(tdb, tdb->map_size, 1, 1);
812 /* we have to reset the old map size so that we don't try to expand the file
813 again in the transaction commit, which would destroy the recovery area */
814 tdb->transaction->old_map_size = tdb->map_size;
816 /* write the recovery header offset and sync - we can sync without a race here
817 as the magic ptr in the recovery record has not been set */
818 CONVERT(recovery_head);
819 if (methods->tdb_write(tdb, TDB_RECOVERY_HEAD,
820 &recovery_head, sizeof(tdb_off_t)) == -1) {
821 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: failed to write recovery head\n"));
822 return -1;
824 if (transaction_write_existing(tdb, TDB_RECOVERY_HEAD, &recovery_head, sizeof(tdb_off_t)) == -1) {
825 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_recovery_allocate: failed to write recovery head\n"));
826 return -1;
829 return 0;
834 setup the recovery data that will be used on a crash during commit
836 static int transaction_setup_recovery(struct tdb_context *tdb,
837 tdb_off_t *magic_offset)
839 tdb_len_t recovery_size;
840 unsigned char *data, *p;
841 const struct tdb_methods *methods = tdb->transaction->io_methods;
842 struct tdb_record *rec;
843 tdb_off_t recovery_offset, recovery_max_size;
844 tdb_off_t old_map_size = tdb->transaction->old_map_size;
845 uint32_t magic, tailer;
846 int i;
849 check that the recovery area has enough space
851 if (tdb_recovery_allocate(tdb, &recovery_size,
852 &recovery_offset, &recovery_max_size) == -1) {
853 return -1;
856 data = (unsigned char *)malloc(recovery_size + sizeof(*rec));
857 if (data == NULL) {
858 tdb->ecode = TDB_ERR_OOM;
859 return -1;
862 rec = (struct tdb_record *)data;
863 memset(rec, 0, sizeof(*rec));
865 rec->magic = TDB_RECOVERY_INVALID_MAGIC;
866 rec->data_len = recovery_size;
867 rec->rec_len = recovery_max_size;
868 rec->key_len = old_map_size;
869 CONVERT(*rec);
871 /* build the recovery data into a single blob to allow us to do a single
872 large write, which should be more efficient */
873 p = data + sizeof(*rec);
874 for (i=0;i<tdb->transaction->num_blocks;i++) {
875 tdb_off_t offset;
876 tdb_len_t length;
878 if (tdb->transaction->blocks[i] == NULL) {
879 continue;
882 offset = i * tdb->transaction->block_size;
883 length = tdb->transaction->block_size;
884 if (i == tdb->transaction->num_blocks-1) {
885 length = tdb->transaction->last_block_size;
888 if (offset >= old_map_size) {
889 continue;
891 if (offset + length > tdb->transaction->old_map_size) {
892 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_setup_recovery: transaction data over new region boundary\n"));
893 free(data);
894 tdb->ecode = TDB_ERR_CORRUPT;
895 return -1;
897 memcpy(p, &offset, 4);
898 memcpy(p+4, &length, 4);
899 if (DOCONV()) {
900 tdb_convert(p, 8);
902 /* the recovery area contains the old data, not the
903 new data, so we have to call the original tdb_read
904 method to get it */
905 if (methods->tdb_read(tdb, offset, p + 8, length, 0) != 0) {
906 free(data);
907 tdb->ecode = TDB_ERR_IO;
908 return -1;
910 p += 8 + length;
913 /* and the tailer */
914 tailer = sizeof(*rec) + recovery_max_size;
915 memcpy(p, &tailer, 4);
916 if (DOCONV()) {
917 tdb_convert(p, 4);
920 /* write the recovery data to the recovery area */
921 if (methods->tdb_write(tdb, recovery_offset, data, sizeof(*rec) + recovery_size) == -1) {
922 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_setup_recovery: failed to write recovery data\n"));
923 free(data);
924 tdb->ecode = TDB_ERR_IO;
925 return -1;
927 if (transaction_write_existing(tdb, recovery_offset, data, sizeof(*rec) + recovery_size) == -1) {
928 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_setup_recovery: failed to write secondary recovery data\n"));
929 free(data);
930 tdb->ecode = TDB_ERR_IO;
931 return -1;
934 /* as we don't have ordered writes, we have to sync the recovery
935 data before we update the magic to indicate that the recovery
936 data is present */
937 if (transaction_sync(tdb, recovery_offset, sizeof(*rec) + recovery_size) == -1) {
938 free(data);
939 return -1;
942 free(data);
944 magic = TDB_RECOVERY_MAGIC;
945 CONVERT(magic);
947 *magic_offset = recovery_offset + offsetof(struct tdb_record, magic);
949 if (methods->tdb_write(tdb, *magic_offset, &magic, sizeof(magic)) == -1) {
950 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_setup_recovery: failed to write recovery magic\n"));
951 tdb->ecode = TDB_ERR_IO;
952 return -1;
954 if (transaction_write_existing(tdb, *magic_offset, &magic, sizeof(magic)) == -1) {
955 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_setup_recovery: failed to write secondary recovery magic\n"));
956 tdb->ecode = TDB_ERR_IO;
957 return -1;
960 /* ensure the recovery magic marker is on disk */
961 if (transaction_sync(tdb, *magic_offset, sizeof(magic)) == -1) {
962 return -1;
965 return 0;
968 static int _tdb_transaction_prepare_commit(struct tdb_context *tdb)
970 const struct tdb_methods *methods;
972 if (tdb->transaction == NULL) {
973 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_prepare_commit: no transaction\n"));
974 return -1;
977 if (tdb->transaction->prepared) {
978 tdb->ecode = TDB_ERR_EINVAL;
979 _tdb_transaction_cancel(tdb);
980 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_prepare_commit: transaction already prepared\n"));
981 return -1;
984 if (tdb->transaction->transaction_error) {
985 tdb->ecode = TDB_ERR_IO;
986 _tdb_transaction_cancel(tdb);
987 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_prepare_commit: transaction error pending\n"));
988 return -1;
992 if (tdb->transaction->nesting != 0) {
993 return 0;
996 /* check for a null transaction */
997 if (tdb->transaction->blocks == NULL) {
998 return 0;
1001 methods = tdb->transaction->io_methods;
1003 /* if there are any locks pending then the caller has not
1004 nested their locks properly, so fail the transaction */
1005 if (tdb_have_extra_locks(tdb)) {
1006 tdb->ecode = TDB_ERR_LOCK;
1007 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_prepare_commit: locks pending on commit\n"));
1008 _tdb_transaction_cancel(tdb);
1009 return -1;
1012 /* upgrade the main transaction lock region to a write lock */
1013 if (tdb_allrecord_upgrade(tdb) == -1) {
1014 if (tdb->ecode == TDB_ERR_RDONLY && tdb->read_only) {
1015 TDB_LOG((tdb, TDB_DEBUG_ERROR,
1016 "tdb_transaction_prepare_commit: "
1017 "failed to upgrade hash locks: "
1018 "database is read only\n"));
1019 } else if (tdb->ecode == TDB_ERR_RDONLY
1020 && tdb->traverse_read) {
1021 TDB_LOG((tdb, TDB_DEBUG_ERROR,
1022 "tdb_transaction_prepare_commit: "
1023 "failed to upgrade hash locks: "
1024 "a database traverse is in progress\n"));
1025 } else {
1026 TDB_LOG((tdb, TDB_DEBUG_ERROR,
1027 "tdb_transaction_prepare_commit: "
1028 "failed to upgrade hash locks: %s\n",
1029 tdb_errorstr(tdb)));
1031 _tdb_transaction_cancel(tdb);
1032 return -1;
1035 /* get the open lock - this prevents new users attaching to the database
1036 during the commit */
1037 if (tdb_nest_lock(tdb, OPEN_LOCK, F_WRLCK, TDB_LOCK_WAIT) == -1) {
1038 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_prepare_commit: failed to get open lock\n"));
1039 _tdb_transaction_cancel(tdb);
1040 return -1;
1043 /* write the recovery data to the end of the file */
1044 if (transaction_setup_recovery(tdb, &tdb->transaction->magic_offset) == -1) {
1045 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_prepare_commit: failed to setup recovery data\n"));
1046 _tdb_transaction_cancel(tdb);
1047 return -1;
1050 tdb->transaction->prepared = true;
1052 /* expand the file to the new size if needed */
1053 if (tdb->map_size != tdb->transaction->old_map_size) {
1054 if (methods->tdb_expand_file(tdb, tdb->transaction->old_map_size,
1055 tdb->map_size -
1056 tdb->transaction->old_map_size) == -1) {
1057 tdb->ecode = TDB_ERR_IO;
1058 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_prepare_commit: expansion failed\n"));
1059 _tdb_transaction_cancel(tdb);
1060 return -1;
1062 tdb->map_size = tdb->transaction->old_map_size;
1063 methods->tdb_oob(tdb, tdb->map_size, 1, 1);
1066 /* Keep the open lock until the actual commit */
1068 return 0;
1072 prepare to commit the current transaction
1074 _PUBLIC_ int tdb_transaction_prepare_commit(struct tdb_context *tdb)
1076 tdb_trace(tdb, "tdb_transaction_prepare_commit");
1077 return _tdb_transaction_prepare_commit(tdb);
1080 /* A repack is worthwhile if the largest is less than half total free. */
1081 static bool repack_worthwhile(struct tdb_context *tdb)
1083 tdb_off_t ptr;
1084 struct tdb_record rec;
1085 tdb_len_t total = 0, largest = 0;
1087 if (tdb_ofs_read(tdb, FREELIST_TOP, &ptr) == -1) {
1088 return false;
1091 while (ptr != 0 && tdb_rec_free_read(tdb, ptr, &rec) == 0) {
1092 total += rec.rec_len;
1093 if (rec.rec_len > largest) {
1094 largest = rec.rec_len;
1096 ptr = rec.next;
1099 return total > largest * 2;
1103 commit the current transaction
1105 _PUBLIC_ int tdb_transaction_commit(struct tdb_context *tdb)
1107 const struct tdb_methods *methods;
1108 int i;
1109 bool need_repack = false;
1111 if (tdb->transaction == NULL) {
1112 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_commit: no transaction\n"));
1113 return -1;
1116 tdb_trace(tdb, "tdb_transaction_commit");
1118 if (tdb->transaction->transaction_error) {
1119 tdb->ecode = TDB_ERR_IO;
1120 _tdb_transaction_cancel(tdb);
1121 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_transaction_commit: transaction error pending\n"));
1122 return -1;
1126 if (tdb->transaction->nesting != 0) {
1127 tdb->transaction->nesting--;
1128 return 0;
1131 /* check for a null transaction */
1132 if (tdb->transaction->blocks == NULL) {
1133 _tdb_transaction_cancel(tdb);
1134 return 0;
1137 if (!tdb->transaction->prepared) {
1138 int ret = _tdb_transaction_prepare_commit(tdb);
1139 if (ret)
1140 return ret;
1143 methods = tdb->transaction->io_methods;
1145 /* perform all the writes */
1146 for (i=0;i<tdb->transaction->num_blocks;i++) {
1147 tdb_off_t offset;
1148 tdb_len_t length;
1150 if (tdb->transaction->blocks[i] == NULL) {
1151 continue;
1154 offset = i * tdb->transaction->block_size;
1155 length = tdb->transaction->block_size;
1156 if (i == tdb->transaction->num_blocks-1) {
1157 length = tdb->transaction->last_block_size;
1160 if (methods->tdb_write(tdb, offset, tdb->transaction->blocks[i], length) == -1) {
1161 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_commit: write failed during commit\n"));
1163 /* we've overwritten part of the data and
1164 possibly expanded the file, so we need to
1165 run the crash recovery code */
1166 tdb->methods = methods;
1167 tdb_transaction_recover(tdb);
1169 _tdb_transaction_cancel(tdb);
1171 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_commit: write failed\n"));
1172 return -1;
1174 SAFE_FREE(tdb->transaction->blocks[i]);
1177 /* Do this before we drop lock or blocks. */
1178 if (tdb->transaction->expanded) {
1179 need_repack = repack_worthwhile(tdb);
1182 SAFE_FREE(tdb->transaction->blocks);
1183 tdb->transaction->num_blocks = 0;
1185 /* ensure the new data is on disk */
1186 if (transaction_sync(tdb, 0, tdb->map_size) == -1) {
1187 return -1;
1191 TODO: maybe write to some dummy hdr field, or write to magic
1192 offset without mmap, before the last sync, instead of the
1193 utime() call
1196 /* on some systems (like Linux 2.6.x) changes via mmap/msync
1197 don't change the mtime of the file, this means the file may
1198 not be backed up (as tdb rounding to block sizes means that
1199 file size changes are quite rare too). The following forces
1200 mtime changes when a transaction completes */
1201 #ifdef HAVE_UTIME
1202 utime(tdb->name, NULL);
1203 #endif
1205 /* use a transaction cancel to free memory and remove the
1206 transaction locks */
1207 _tdb_transaction_cancel(tdb);
1209 if (need_repack) {
1210 return tdb_repack(tdb);
1213 return 0;
1218 recover from an aborted transaction. Must be called with exclusive
1219 database write access already established (including the open
1220 lock to prevent new processes attaching)
1222 int tdb_transaction_recover(struct tdb_context *tdb)
1224 tdb_off_t recovery_head, recovery_eof;
1225 unsigned char *data, *p;
1226 uint32_t zero = 0;
1227 struct tdb_record rec;
1229 /* find the recovery area */
1230 if (tdb_ofs_read(tdb, TDB_RECOVERY_HEAD, &recovery_head) == -1) {
1231 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to read recovery head\n"));
1232 tdb->ecode = TDB_ERR_IO;
1233 return -1;
1236 if (recovery_head == 0) {
1237 /* we have never allocated a recovery record */
1238 return 0;
1241 /* read the recovery record */
1242 if (tdb->methods->tdb_read(tdb, recovery_head, &rec,
1243 sizeof(rec), DOCONV()) == -1) {
1244 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to read recovery record\n"));
1245 tdb->ecode = TDB_ERR_IO;
1246 return -1;
1249 if (rec.magic != TDB_RECOVERY_MAGIC) {
1250 /* there is no valid recovery data */
1251 return 0;
1254 if (tdb->read_only) {
1255 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: attempt to recover read only database\n"));
1256 tdb->ecode = TDB_ERR_CORRUPT;
1257 return -1;
1260 recovery_eof = rec.key_len;
1262 data = (unsigned char *)malloc(rec.data_len);
1263 if (data == NULL) {
1264 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to allocate recovery data\n"));
1265 tdb->ecode = TDB_ERR_OOM;
1266 return -1;
1269 /* read the full recovery data */
1270 if (tdb->methods->tdb_read(tdb, recovery_head + sizeof(rec), data,
1271 rec.data_len, 0) == -1) {
1272 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to read recovery data\n"));
1273 tdb->ecode = TDB_ERR_IO;
1274 return -1;
1277 /* recover the file data */
1278 p = data;
1279 while (p+8 < data + rec.data_len) {
1280 uint32_t ofs, len;
1281 if (DOCONV()) {
1282 tdb_convert(p, 8);
1284 memcpy(&ofs, p, 4);
1285 memcpy(&len, p+4, 4);
1287 if (tdb->methods->tdb_write(tdb, ofs, p+8, len) == -1) {
1288 free(data);
1289 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to recover %u bytes at offset %u\n", len, ofs));
1290 tdb->ecode = TDB_ERR_IO;
1291 return -1;
1293 p += 8 + len;
1296 free(data);
1298 if (transaction_sync(tdb, 0, tdb->map_size) == -1) {
1299 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to sync recovery\n"));
1300 tdb->ecode = TDB_ERR_IO;
1301 return -1;
1304 /* if the recovery area is after the recovered eof then remove it */
1305 if (recovery_eof <= recovery_head) {
1306 if (tdb_ofs_write(tdb, TDB_RECOVERY_HEAD, &zero) == -1) {
1307 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to remove recovery head\n"));
1308 tdb->ecode = TDB_ERR_IO;
1309 return -1;
1313 /* remove the recovery magic */
1314 if (tdb_ofs_write(tdb, recovery_head + offsetof(struct tdb_record, magic),
1315 &zero) == -1) {
1316 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to remove recovery magic\n"));
1317 tdb->ecode = TDB_ERR_IO;
1318 return -1;
1321 if (transaction_sync(tdb, 0, recovery_eof) == -1) {
1322 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction_recover: failed to sync2 recovery\n"));
1323 tdb->ecode = TDB_ERR_IO;
1324 return -1;
1327 TDB_LOG((tdb, TDB_DEBUG_TRACE, "tdb_transaction_recover: recovered %u byte database\n",
1328 recovery_eof));
1330 /* all done */
1331 return 0;
1334 /* Any I/O failures we say "needs recovery". */
1335 bool tdb_needs_recovery(struct tdb_context *tdb)
1337 tdb_off_t recovery_head;
1338 struct tdb_record rec;
1340 /* find the recovery area */
1341 if (tdb_ofs_read(tdb, TDB_RECOVERY_HEAD, &recovery_head) == -1) {
1342 return true;
1345 if (recovery_head == 0) {
1346 /* we have never allocated a recovery record */
1347 return false;
1350 /* read the recovery record */
1351 if (tdb->methods->tdb_read(tdb, recovery_head, &rec,
1352 sizeof(rec), DOCONV()) == -1) {
1353 return true;
1356 return (rec.magic == TDB_RECOVERY_MAGIC);