]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/transaction.c
f1414391abe42caa7b81504dede1ea3700291c1b
[ccan] / ccan / tdb2 / transaction.c
1  /*
2    Unix SMB/CIFS implementation.
3
4    trivial database library
5
6    Copyright (C) Andrew Tridgell              2005
7    Copyright (C) Rusty Russell                2010
8
9      ** NOTE! The following LGPL license applies to the tdb
10      ** library. This does NOT imply that all of Samba is released
11      ** under the LGPL
12
13    This library is free software; you can redistribute it and/or
14    modify it under the terms of the GNU Lesser General Public
15    License as published by the Free Software Foundation; either
16    version 3 of the License, or (at your option) any later version.
17
18    This library is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21    Lesser General Public License for more details.
22
23    You should have received a copy of the GNU Lesser General Public
24    License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 */
26
27 #include "private.h"
28 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); (x)=NULL;} } while(0)
29
30 /*
31   transaction design:
32
33   - only allow a single transaction at a time per database. This makes
34     using the transaction API simpler, as otherwise the caller would
35     have to cope with temporary failures in transactions that conflict
36     with other current transactions
37
38   - keep the transaction recovery information in the same file as the
39     database, using a special 'transaction recovery' record pointed at
40     by the header. This removes the need for extra journal files as
41     used by some other databases
42
43   - dynamically allocated the transaction recover record, re-using it
44     for subsequent transactions. If a larger record is needed then
45     tdb_free() the old record to place it on the normal tdb freelist
46     before allocating the new record
47
48   - during transactions, keep a linked list of writes all that have
49     been performed by intercepting all tdb_write() calls. The hooked
50     transaction versions of tdb_read() and tdb_write() check this
51     linked list and try to use the elements of the list in preference
52     to the real database.
53
54   - don't allow any locks to be held when a transaction starts,
55     otherwise we can end up with deadlock (plus lack of lock nesting
56     in POSIX locks would mean the lock is lost)
57
58   - if the caller gains a lock during the transaction but doesn't
59     release it then fail the commit
60
61   - allow for nested calls to tdb_transaction_start(), re-using the
62     existing transaction record. If the inner transaction is canceled
63     then a subsequent commit will fail
64
65   - keep a mirrored copy of the tdb hash chain heads to allow for the
66     fast hash heads scan on traverse, updating the mirrored copy in
67     the transaction version of tdb_write
68
69   - allow callers to mix transaction and non-transaction use of tdb,
70     although once a transaction is started then an exclusive lock is
71     gained until the transaction is committed or canceled
72
73   - the commit stategy involves first saving away all modified data
74     into a linearised buffer in the transaction recovery area, then
75     marking the transaction recovery area with a magic value to
76     indicate a valid recovery record. In total 4 fsync/msync calls are
77     needed per commit to prevent race conditions. It might be possible
78     to reduce this to 3 or even 2 with some more work.
79
80   - check for a valid recovery record on open of the tdb, while the
81     open lock is held. Automatically recover from the transaction
82     recovery area if needed, then continue with the open as
83     usual. This allows for smooth crash recovery with no administrator
84     intervention.
85
86   - if TDB_NOSYNC is passed to flags in tdb_open then transactions are
87     still available, but no transaction recovery area is used and no
88     fsync/msync calls are made.
89 */
90
91
92 /*
93   hold the context of any current transaction
94 */
95 struct tdb_transaction {
96         /* the original io methods - used to do IOs to the real db */
97         const struct tdb_methods *io_methods;
98
99         /* the list of transaction blocks. When a block is first
100            written to, it gets created in this list */
101         uint8_t **blocks;
102         size_t num_blocks;
103         size_t last_block_size; /* number of valid bytes in the last block */
104
105         /* non-zero when an internal transaction error has
106            occurred. All write operations will then fail until the
107            transaction is ended */
108         int transaction_error;
109
110         /* when inside a transaction we need to keep track of any
111            nested tdb_transaction_start() calls, as these are allowed,
112            but don't create a new transaction */
113         unsigned int nesting;
114
115         /* set when a prepare has already occurred */
116         bool prepared;
117         tdb_off_t magic_offset;
118
119         /* old file size before transaction */
120         tdb_len_t old_map_size;
121 };
122
123 /* This doesn't really need to be pagesize, but we use it for similar reasons. */
124 #define PAGESIZE 4096
125
126 /*
127   read while in a transaction. We need to check first if the data is in our list
128   of transaction elements, then if not do a real read
129 */
130 static enum TDB_ERROR transaction_read(struct tdb_context *tdb, tdb_off_t off,
131                                        void *buf, tdb_len_t len)
132 {
133         size_t blk;
134         enum TDB_ERROR ecode;
135
136         /* break it down into block sized ops */
137         while (len + (off % PAGESIZE) > PAGESIZE) {
138                 tdb_len_t len2 = PAGESIZE - (off % PAGESIZE);
139                 ecode = transaction_read(tdb, off, buf, len2);
140                 if (ecode != TDB_SUCCESS) {
141                         return ecode;
142                 }
143                 len -= len2;
144                 off += len2;
145                 buf = (void *)(len2 + (char *)buf);
146         }
147
148         if (len == 0) {
149                 return TDB_SUCCESS;
150         }
151
152         blk = off / PAGESIZE;
153
154         /* see if we have it in the block list */
155         if (tdb->transaction->num_blocks <= blk ||
156             tdb->transaction->blocks[blk] == NULL) {
157                 /* nope, do a real read */
158                 ecode = tdb->transaction->io_methods->tread(tdb, off, buf, len);
159                 if (ecode != TDB_SUCCESS) {
160                         goto fail;
161                 }
162                 return 0;
163         }
164
165         /* it is in the block list. Now check for the last block */
166         if (blk == tdb->transaction->num_blocks-1) {
167                 if (len > tdb->transaction->last_block_size) {
168                         ecode = TDB_ERR_IO;
169                         goto fail;
170                 }
171         }
172
173         /* now copy it out of this block */
174         memcpy(buf, tdb->transaction->blocks[blk] + (off % PAGESIZE), len);
175         return TDB_SUCCESS;
176
177 fail:
178         tdb->transaction->transaction_error = 1;
179         return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
180                           "transaction_read: failed at off=%zu len=%zu",
181                           (size_t)off, (size_t)len);
182 }
183
184
185 /*
186   write while in a transaction
187 */
188 static enum TDB_ERROR transaction_write(struct tdb_context *tdb, tdb_off_t off,
189                                         const void *buf, tdb_len_t len)
190 {
191         size_t blk;
192         enum TDB_ERROR ecode;
193
194         /* Only a commit is allowed on a prepared transaction */
195         if (tdb->transaction->prepared) {
196                 ecode = tdb_logerr(tdb, TDB_ERR_EINVAL, TDB_LOG_ERROR,
197                                    "transaction_write: transaction already"
198                                    " prepared, write not allowed");
199                 goto fail;
200         }
201
202         /* break it up into block sized chunks */
203         while (len + (off % PAGESIZE) > PAGESIZE) {
204                 tdb_len_t len2 = PAGESIZE - (off % PAGESIZE);
205                 ecode = transaction_write(tdb, off, buf, len2);
206                 if (ecode != TDB_SUCCESS) {
207                         return -1;
208                 }
209                 len -= len2;
210                 off += len2;
211                 if (buf != NULL) {
212                         buf = (const void *)(len2 + (const char *)buf);
213                 }
214         }
215
216         if (len == 0) {
217                 return TDB_SUCCESS;
218         }
219
220         blk = off / PAGESIZE;
221         off = off % PAGESIZE;
222
223         if (tdb->transaction->num_blocks <= blk) {
224                 uint8_t **new_blocks;
225                 /* expand the blocks array */
226                 if (tdb->transaction->blocks == NULL) {
227                         new_blocks = (uint8_t **)malloc(
228                                 (blk+1)*sizeof(uint8_t *));
229                 } else {
230                         new_blocks = (uint8_t **)realloc(
231                                 tdb->transaction->blocks,
232                                 (blk+1)*sizeof(uint8_t *));
233                 }
234                 if (new_blocks == NULL) {
235                         ecode = tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR,
236                                            "transaction_write:"
237                                            " failed to allocate");
238                         goto fail;
239                 }
240                 memset(&new_blocks[tdb->transaction->num_blocks], 0,
241                        (1+(blk - tdb->transaction->num_blocks))*sizeof(uint8_t *));
242                 tdb->transaction->blocks = new_blocks;
243                 tdb->transaction->num_blocks = blk+1;
244                 tdb->transaction->last_block_size = 0;
245         }
246
247         /* allocate and fill a block? */
248         if (tdb->transaction->blocks[blk] == NULL) {
249                 tdb->transaction->blocks[blk] = (uint8_t *)calloc(PAGESIZE, 1);
250                 if (tdb->transaction->blocks[blk] == NULL) {
251                         ecode = tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR,
252                                            "transaction_write:"
253                                            " failed to allocate");
254                         goto fail;
255                 }
256                 if (tdb->transaction->old_map_size > blk * PAGESIZE) {
257                         tdb_len_t len2 = PAGESIZE;
258                         if (len2 + (blk * PAGESIZE) > tdb->transaction->old_map_size) {
259                                 len2 = tdb->transaction->old_map_size - (blk * PAGESIZE);
260                         }
261                         ecode = tdb->transaction->io_methods->tread(tdb,
262                                         blk * PAGESIZE,
263                                         tdb->transaction->blocks[blk],
264                                         len2);
265                         if (ecode != TDB_SUCCESS) {
266                                 ecode = tdb_logerr(tdb, ecode,
267                                                    TDB_LOG_ERROR,
268                                                    "transaction_write:"
269                                                    " failed to"
270                                                    " read old block: %s",
271                                                    strerror(errno));
272                                 SAFE_FREE(tdb->transaction->blocks[blk]);
273                                 goto fail;
274                         }
275                         if (blk == tdb->transaction->num_blocks-1) {
276                                 tdb->transaction->last_block_size = len2;
277                         }
278                 }
279         }
280
281         /* overwrite part of an existing block */
282         if (buf == NULL) {
283                 memset(tdb->transaction->blocks[blk] + off, 0, len);
284         } else {
285                 memcpy(tdb->transaction->blocks[blk] + off, buf, len);
286         }
287         if (blk == tdb->transaction->num_blocks-1) {
288                 if (len + off > tdb->transaction->last_block_size) {
289                         tdb->transaction->last_block_size = len + off;
290                 }
291         }
292
293         return TDB_SUCCESS;
294
295 fail:
296         tdb->transaction->transaction_error = 1;
297         return ecode;
298 }
299
300
301 /*
302   write while in a transaction - this variant never expands the transaction blocks, it only
303   updates existing blocks. This means it cannot change the recovery size
304 */
305 static void transaction_write_existing(struct tdb_context *tdb, tdb_off_t off,
306                                        const void *buf, tdb_len_t len)
307 {
308         size_t blk;
309
310         /* break it up into block sized chunks */
311         while (len + (off % PAGESIZE) > PAGESIZE) {
312                 tdb_len_t len2 = PAGESIZE - (off % PAGESIZE);
313                 transaction_write_existing(tdb, off, buf, len2);
314                 len -= len2;
315                 off += len2;
316                 if (buf != NULL) {
317                         buf = (const void *)(len2 + (const char *)buf);
318                 }
319         }
320
321         if (len == 0) {
322                 return;
323         }
324
325         blk = off / PAGESIZE;
326         off = off % PAGESIZE;
327
328         if (tdb->transaction->num_blocks <= blk ||
329             tdb->transaction->blocks[blk] == NULL) {
330                 return;
331         }
332
333         if (blk == tdb->transaction->num_blocks-1 &&
334             off + len > tdb->transaction->last_block_size) {
335                 if (off >= tdb->transaction->last_block_size) {
336                         return;
337                 }
338                 len = tdb->transaction->last_block_size - off;
339         }
340
341         /* overwrite part of an existing block */
342         memcpy(tdb->transaction->blocks[blk] + off, buf, len);
343 }
344
345
346 /*
347   out of bounds check during a transaction
348 */
349 static enum TDB_ERROR transaction_oob(struct tdb_context *tdb, tdb_off_t len,
350                                       bool probe)
351 {
352         if (len <= tdb->file->map_size) {
353                 return TDB_SUCCESS;
354         }
355         if (!probe) {
356                 tdb_logerr(tdb, TDB_ERR_IO, TDB_LOG_ERROR,
357                            "tdb_oob len %lld beyond transaction size %lld",
358                            (long long)len,
359                            (long long)tdb->file->map_size);
360         }
361         return TDB_ERR_IO;
362 }
363
364 /*
365   transaction version of tdb_expand().
366 */
367 static enum TDB_ERROR transaction_expand_file(struct tdb_context *tdb,
368                                               tdb_off_t addition)
369 {
370         enum TDB_ERROR ecode;
371
372         /* add a write to the transaction elements, so subsequent
373            reads see the zero data */
374         ecode = transaction_write(tdb, tdb->file->map_size, NULL, addition);
375         if (ecode == TDB_SUCCESS) {
376                 tdb->file->map_size += addition;
377         }
378         return ecode;
379 }
380
381 static void *transaction_direct(struct tdb_context *tdb, tdb_off_t off,
382                                 size_t len, bool write_mode)
383 {
384         size_t blk = off / PAGESIZE, end_blk;
385
386         /* This is wrong for zero-length blocks, but will fail gracefully */
387         end_blk = (off + len - 1) / PAGESIZE;
388
389         /* Can only do direct if in single block and we've already copied. */
390         if (write_mode) {
391                 if (blk != end_blk)
392                         return NULL;
393                 if (blk >= tdb->transaction->num_blocks)
394                         return NULL;
395                 if (tdb->transaction->blocks[blk] == NULL)
396                         return NULL;
397                 return tdb->transaction->blocks[blk] + off % PAGESIZE;
398         }
399
400         /* Single which we have copied? */
401         if (blk == end_blk
402             && blk < tdb->transaction->num_blocks
403             && tdb->transaction->blocks[blk])
404                 return tdb->transaction->blocks[blk] + off % PAGESIZE;
405
406         /* Otherwise must be all not copied. */
407         while (blk <= end_blk) {
408                 if (blk >= tdb->transaction->num_blocks)
409                         break;
410                 if (tdb->transaction->blocks[blk])
411                         return NULL;
412                 blk++;
413         }
414         return tdb->transaction->io_methods->direct(tdb, off, len, false);
415 }
416
417 static const struct tdb_methods transaction_methods = {
418         transaction_read,
419         transaction_write,
420         transaction_oob,
421         transaction_expand_file,
422         transaction_direct,
423 };
424
425 /*
426   sync to disk
427 */
428 static enum TDB_ERROR transaction_sync(struct tdb_context *tdb,
429                                        tdb_off_t offset, tdb_len_t length)
430 {
431         if (tdb->flags & TDB_NOSYNC) {
432                 return TDB_SUCCESS;
433         }
434
435         if (fsync(tdb->file->fd) != 0) {
436                 return tdb_logerr(tdb, TDB_ERR_IO, TDB_LOG_ERROR,
437                                   "tdb_transaction: fsync failed: %s",
438                                   strerror(errno));
439         }
440 #ifdef MS_SYNC
441         if (tdb->file->map_ptr) {
442                 tdb_off_t moffset = offset & ~(PAGESIZE-1);
443                 if (msync(moffset + (char *)tdb->file->map_ptr,
444                           length + (offset - moffset), MS_SYNC) != 0) {
445                         return tdb_logerr(tdb, TDB_ERR_IO, TDB_LOG_ERROR,
446                                           "tdb_transaction: msync failed: %s",
447                                           strerror(errno));
448                 }
449         }
450 #endif
451         return TDB_SUCCESS;
452 }
453
454
455 static void _tdb_transaction_cancel(struct tdb_context *tdb)
456 {
457         int i;
458         enum TDB_ERROR ecode;
459
460         if (tdb->transaction == NULL) {
461                 tdb_logerr(tdb, TDB_ERR_EINVAL, TDB_LOG_USE_ERROR,
462                            "tdb_transaction_cancel: no transaction");
463                 return;
464         }
465
466         if (tdb->transaction->nesting != 0) {
467                 tdb->transaction->transaction_error = 1;
468                 tdb->transaction->nesting--;
469                 return;
470         }
471
472         tdb->file->map_size = tdb->transaction->old_map_size;
473
474         /* free all the transaction blocks */
475         for (i=0;i<tdb->transaction->num_blocks;i++) {
476                 if (tdb->transaction->blocks[i] != NULL) {
477                         free(tdb->transaction->blocks[i]);
478                 }
479         }
480         SAFE_FREE(tdb->transaction->blocks);
481
482         if (tdb->transaction->magic_offset) {
483                 const struct tdb_methods *methods = tdb->transaction->io_methods;
484                 uint64_t invalid = TDB_RECOVERY_INVALID_MAGIC;
485
486                 /* remove the recovery marker */
487                 ecode = methods->twrite(tdb, tdb->transaction->magic_offset,
488                                         &invalid, sizeof(invalid));
489                 if (ecode == TDB_SUCCESS)
490                         ecode = transaction_sync(tdb,
491                                                  tdb->transaction->magic_offset,
492                                                  sizeof(invalid));
493                 if (ecode != TDB_SUCCESS) {
494                         tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
495                                    "tdb_transaction_cancel: failed to remove"
496                                    " recovery magic");
497                 }
498         }
499
500         if (tdb->file->allrecord_lock.count)
501                 tdb_allrecord_unlock(tdb, tdb->file->allrecord_lock.ltype);
502
503         /* restore the normal io methods */
504         tdb->methods = tdb->transaction->io_methods;
505
506         tdb_transaction_unlock(tdb, F_WRLCK);
507
508         if (tdb_has_open_lock(tdb))
509                 tdb_unlock_open(tdb);
510
511         SAFE_FREE(tdb->transaction);
512 }
513
514 /*
515   start a tdb transaction. No token is returned, as only a single
516   transaction is allowed to be pending per tdb_context
517 */
518 enum TDB_ERROR tdb_transaction_start(struct tdb_context *tdb)
519 {
520         enum TDB_ERROR ecode;
521
522         /* some sanity checks */
523         if (tdb->read_only || (tdb->flags & TDB_INTERNAL)) {
524                 return tdb->last_error = tdb_logerr(tdb, TDB_ERR_EINVAL,
525                                                     TDB_LOG_USE_ERROR,
526                                                     "tdb_transaction_start:"
527                                                     " cannot start a"
528                                                     " transaction on a "
529                                                     "read-only or internal db");
530         }
531
532         /* cope with nested tdb_transaction_start() calls */
533         if (tdb->transaction != NULL) {
534                 if (!(tdb->flags & TDB_ALLOW_NESTING)) {
535                         return tdb->last_error
536                                 = tdb_logerr(tdb, TDB_ERR_IO,
537                                              TDB_LOG_USE_ERROR,
538                                              "tdb_transaction_start:"
539                                              " already inside transaction");
540                 }
541                 tdb->transaction->nesting++;
542                 return 0;
543         }
544
545         if (tdb_has_hash_locks(tdb)) {
546                 /* the caller must not have any locks when starting a
547                    transaction as otherwise we'll be screwed by lack
548                    of nested locks in POSIX */
549                 return tdb->last_error = tdb_logerr(tdb, TDB_ERR_LOCK,
550                                                     TDB_LOG_USE_ERROR,
551                                                     "tdb_transaction_start:"
552                                                     " cannot start a"
553                                                     " transaction with locks"
554                                                     " held");
555         }
556
557         tdb->transaction = (struct tdb_transaction *)
558                 calloc(sizeof(struct tdb_transaction), 1);
559         if (tdb->transaction == NULL) {
560                 return tdb->last_error = tdb_logerr(tdb, TDB_ERR_OOM,
561                                                     TDB_LOG_ERROR,
562                                                     "tdb_transaction_start:"
563                                                     " cannot allocate");
564         }
565
566         /* get the transaction write lock. This is a blocking lock. As
567            discussed with Volker, there are a number of ways we could
568            make this async, which we will probably do in the future */
569         ecode = tdb_transaction_lock(tdb, F_WRLCK);
570         if (ecode != TDB_SUCCESS) {
571                 SAFE_FREE(tdb->transaction->blocks);
572                 SAFE_FREE(tdb->transaction);
573                 return tdb->last_error = ecode;
574         }
575
576         /* get a read lock over entire file. This is upgraded to a write
577            lock during the commit */
578         ecode = tdb_allrecord_lock(tdb, F_RDLCK, TDB_LOCK_WAIT, true);
579         if (ecode != TDB_SUCCESS) {
580                 goto fail_allrecord_lock;
581         }
582
583         /* make sure we know about any file expansions already done by
584            anyone else */
585         tdb->methods->oob(tdb, tdb->file->map_size + 1, true);
586         tdb->transaction->old_map_size = tdb->file->map_size;
587
588         /* finally hook the io methods, replacing them with
589            transaction specific methods */
590         tdb->transaction->io_methods = tdb->methods;
591         tdb->methods = &transaction_methods;
592         return tdb->last_error = TDB_SUCCESS;
593
594 fail_allrecord_lock:
595         tdb_transaction_unlock(tdb, F_WRLCK);
596         SAFE_FREE(tdb->transaction->blocks);
597         SAFE_FREE(tdb->transaction);
598         return tdb->last_error = ecode;
599 }
600
601
602 /*
603   cancel the current transaction
604 */
605 void tdb_transaction_cancel(struct tdb_context *tdb)
606 {
607         _tdb_transaction_cancel(tdb);
608 }
609
610 /*
611   work out how much space the linearised recovery data will consume
612 */
613 static tdb_len_t tdb_recovery_size(struct tdb_context *tdb)
614 {
615         tdb_len_t recovery_size = 0;
616         int i;
617
618         recovery_size = sizeof(tdb_len_t);
619         for (i=0;i<tdb->transaction->num_blocks;i++) {
620                 if (i * PAGESIZE >= tdb->transaction->old_map_size) {
621                         break;
622                 }
623                 if (tdb->transaction->blocks[i] == NULL) {
624                         continue;
625                 }
626                 recovery_size += 2*sizeof(tdb_off_t);
627                 if (i == tdb->transaction->num_blocks-1) {
628                         recovery_size += tdb->transaction->last_block_size;
629                 } else {
630                         recovery_size += PAGESIZE;
631                 }
632         }
633
634         return recovery_size;
635 }
636
637 /*
638   allocate the recovery area, or use an existing recovery area if it is
639   large enough
640 */
641 static enum TDB_ERROR tdb_recovery_allocate(struct tdb_context *tdb,
642                                             tdb_len_t *recovery_size,
643                                             tdb_off_t *recovery_offset,
644                                             tdb_len_t *recovery_max_size)
645 {
646         struct tdb_recovery_record rec;
647         const struct tdb_methods *methods = tdb->transaction->io_methods;
648         tdb_off_t recovery_head;
649         size_t addition;
650         enum TDB_ERROR ecode;
651
652         recovery_head = tdb_read_off(tdb, offsetof(struct tdb_header,recovery));
653         if (TDB_OFF_IS_ERR(recovery_head)) {
654                 return tdb_logerr(tdb, recovery_head, TDB_LOG_ERROR,
655                                   "tdb_recovery_allocate:"
656                                   " failed to read recovery head");
657         }
658
659         if (recovery_head != 0) {
660                 ecode = methods->tread(tdb, recovery_head, &rec, sizeof(rec));
661                 if (ecode != TDB_SUCCESS) {
662                         return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
663                                           "tdb_recovery_allocate:"
664                                           " failed to read recovery record");
665                 }
666                 tdb_convert(tdb, &rec, sizeof(rec));
667                 /* ignore invalid recovery regions: can happen in crash */
668                 if (rec.magic != TDB_RECOVERY_MAGIC &&
669                     rec.magic != TDB_RECOVERY_INVALID_MAGIC) {
670                         recovery_head = 0;
671                 }
672         }
673
674         *recovery_size = tdb_recovery_size(tdb);
675
676         if (recovery_head != 0 && *recovery_size <= rec.max_len) {
677                 /* it fits in the existing area */
678                 *recovery_max_size = rec.max_len;
679                 *recovery_offset = recovery_head;
680                 return TDB_SUCCESS;
681         }
682
683         /* we need to free up the old recovery area, then allocate a
684            new one at the end of the file. Note that we cannot use
685            normal allocation to allocate the new one as that might return
686            us an area that is being currently used (as of the start of
687            the transaction) */
688         if (recovery_head != 0) {
689                 tdb->stats.frees++;
690                 ecode = add_free_record(tdb, recovery_head,
691                                         sizeof(rec) + rec.max_len,
692                                         TDB_LOCK_WAIT, true);
693                 if (ecode != TDB_SUCCESS) {
694                         return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
695                                           "tdb_recovery_allocate:"
696                                           " failed to free previous"
697                                           " recovery area");
698                 }
699         }
700
701         /* the tdb_free() call might have increased the recovery size */
702         *recovery_size = tdb_recovery_size(tdb);
703
704         /* round up to a multiple of page size. Overallocate, since each
705          * such allocation forces us to expand the file. */
706         *recovery_max_size
707                 = (((sizeof(rec) + *recovery_size + *recovery_size / 2)
708                     + PAGESIZE-1) & ~(PAGESIZE-1))
709                 - sizeof(rec);
710         *recovery_offset = tdb->file->map_size;
711         recovery_head = *recovery_offset;
712
713         /* Restore ->map_size before calling underlying expand_file.
714            Also so that we don't try to expand the file again in the
715            transaction commit, which would destroy the recovery
716            area */
717         addition = (tdb->file->map_size - tdb->transaction->old_map_size) +
718                 sizeof(rec) + *recovery_max_size;
719         tdb->file->map_size = tdb->transaction->old_map_size;
720         ecode = methods->expand_file(tdb, addition);
721         if (ecode != TDB_SUCCESS) {
722                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
723                                   "tdb_recovery_allocate:"
724                                   " failed to create recovery area");
725         }
726
727         /* we have to reset the old map size so that we don't try to
728            expand the file again in the transaction commit, which
729            would destroy the recovery area */
730         tdb->transaction->old_map_size = tdb->file->map_size;
731
732         /* write the recovery header offset and sync - we can sync without a race here
733            as the magic ptr in the recovery record has not been set */
734         tdb_convert(tdb, &recovery_head, sizeof(recovery_head));
735         ecode = methods->twrite(tdb, offsetof(struct tdb_header, recovery),
736                                 &recovery_head, sizeof(tdb_off_t));
737         if (ecode != TDB_SUCCESS) {
738                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
739                                   "tdb_recovery_allocate:"
740                                   " failed to write recovery head");
741         }
742         transaction_write_existing(tdb, offsetof(struct tdb_header, recovery),
743                                    &recovery_head,
744                                    sizeof(tdb_off_t));
745         return TDB_SUCCESS;
746 }
747
748 /* Set up header for the recovery record. */
749 static void set_recovery_header(struct tdb_recovery_record *rec,
750                                 uint64_t magic,
751                                 uint64_t datalen, uint64_t actuallen,
752                                 uint64_t oldsize)
753 {
754         rec->magic = magic;
755         rec->max_len = actuallen;
756         rec->len = datalen;
757         rec->eof = oldsize;
758 }
759
760 /*
761   setup the recovery data that will be used on a crash during commit
762 */
763 static enum TDB_ERROR transaction_setup_recovery(struct tdb_context *tdb,
764                                                  tdb_off_t *magic_offset)
765 {
766         /* Initialized for GCC's 4.4.5 overzealous uninitialized warnings. */
767         tdb_len_t recovery_size = 0;
768         tdb_off_t recovery_offset = 0, recovery_max_size = 0;
769         unsigned char *data, *p;
770         const struct tdb_methods *methods = tdb->transaction->io_methods;
771         struct tdb_recovery_record *rec;
772         tdb_off_t old_map_size = tdb->transaction->old_map_size;
773         uint64_t magic, tailer;
774         int i;
775         enum TDB_ERROR ecode;
776
777         /*
778           check that the recovery area has enough space
779         */
780         ecode = tdb_recovery_allocate(tdb, &recovery_size,
781                                       &recovery_offset, &recovery_max_size);
782         if (ecode != TDB_SUCCESS) {
783                 return ecode;
784         }
785
786         data = (unsigned char *)malloc(recovery_size + sizeof(*rec));
787         if (data == NULL) {
788                 return tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR,
789                                   "transaction_setup_recovery:"
790                                   " cannot allocate");
791         }
792
793         rec = (struct tdb_recovery_record *)data;
794         set_recovery_header(rec, TDB_RECOVERY_INVALID_MAGIC,
795                             recovery_size, recovery_max_size, old_map_size);
796         tdb_convert(tdb, rec, sizeof(*rec));
797
798         /* build the recovery data into a single blob to allow us to do a single
799            large write, which should be more efficient */
800         p = data + sizeof(*rec);
801         for (i=0;i<tdb->transaction->num_blocks;i++) {
802                 tdb_off_t offset;
803                 tdb_len_t length;
804
805                 if (tdb->transaction->blocks[i] == NULL) {
806                         continue;
807                 }
808
809                 offset = i * PAGESIZE;
810                 length = PAGESIZE;
811                 if (i == tdb->transaction->num_blocks-1) {
812                         length = tdb->transaction->last_block_size;
813                 }
814
815                 if (offset >= old_map_size) {
816                         continue;
817                 }
818                 if (offset + length > tdb->file->map_size) {
819                         free(data);
820                         return tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
821                                           "tdb_transaction_setup_recovery:"
822                                           " transaction data over new region"
823                                           " boundary");
824                 }
825                 memcpy(p, &offset, sizeof(offset));
826                 memcpy(p + sizeof(offset), &length, sizeof(length));
827                 tdb_convert(tdb, p, sizeof(offset) + sizeof(length));
828
829                 /* the recovery area contains the old data, not the
830                    new data, so we have to call the original tdb_read
831                    method to get it */
832                 ecode = methods->tread(tdb, offset,
833                                        p + sizeof(offset) + sizeof(length),
834                                        length);
835                 if (ecode != TDB_SUCCESS) {
836                         free(data);
837                         return ecode;
838                 }
839                 p += sizeof(offset) + sizeof(length) + length;
840         }
841
842         /* and the tailer */
843         tailer = sizeof(*rec) + recovery_max_size;
844         memcpy(p, &tailer, sizeof(tailer));
845         tdb_convert(tdb, p, sizeof(tailer));
846
847         /* write the recovery data to the recovery area */
848         ecode = methods->twrite(tdb, recovery_offset, data,
849                                 sizeof(*rec) + recovery_size);
850         if (ecode != TDB_SUCCESS) {
851                 free(data);
852                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
853                                   "tdb_transaction_setup_recovery:"
854                                   " failed to write recovery data");
855         }
856         transaction_write_existing(tdb, recovery_offset, data,
857                                    sizeof(*rec) + recovery_size);
858
859         /* as we don't have ordered writes, we have to sync the recovery
860            data before we update the magic to indicate that the recovery
861            data is present */
862         ecode = transaction_sync(tdb, recovery_offset,
863                                  sizeof(*rec) + recovery_size);
864         if (ecode != TDB_SUCCESS) {
865                 free(data);
866                 return ecode;
867         }
868
869         free(data);
870
871         magic = TDB_RECOVERY_MAGIC;
872         tdb_convert(tdb, &magic, sizeof(magic));
873
874         *magic_offset = recovery_offset + offsetof(struct tdb_recovery_record,
875                                                    magic);
876
877         ecode = methods->twrite(tdb, *magic_offset, &magic, sizeof(magic));
878         if (ecode != TDB_SUCCESS) {
879                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
880                                   "tdb_transaction_setup_recovery:"
881                                   " failed to write recovery magic");
882         }
883         transaction_write_existing(tdb, *magic_offset, &magic, sizeof(magic));
884
885         /* ensure the recovery magic marker is on disk */
886         return transaction_sync(tdb, *magic_offset, sizeof(magic));
887 }
888
889 static enum TDB_ERROR _tdb_transaction_prepare_commit(struct tdb_context *tdb)
890 {
891         const struct tdb_methods *methods;
892         enum TDB_ERROR ecode;
893
894         if (tdb->transaction == NULL) {
895                 return tdb_logerr(tdb, TDB_ERR_EINVAL, TDB_LOG_USE_ERROR,
896                                   "tdb_transaction_prepare_commit:"
897                                   " no transaction");
898         }
899
900         if (tdb->transaction->prepared) {
901                 _tdb_transaction_cancel(tdb);
902                 return tdb_logerr(tdb, TDB_ERR_EINVAL, TDB_LOG_USE_ERROR,
903                                   "tdb_transaction_prepare_commit:"
904                                   " transaction already prepared");
905         }
906
907         if (tdb->transaction->transaction_error) {
908                 _tdb_transaction_cancel(tdb);
909                 return tdb_logerr(tdb, TDB_ERR_EINVAL, TDB_LOG_ERROR,
910                                   "tdb_transaction_prepare_commit:"
911                                   " transaction error pending");
912         }
913
914
915         if (tdb->transaction->nesting != 0) {
916                 return TDB_SUCCESS;
917         }
918
919         /* check for a null transaction */
920         if (tdb->transaction->blocks == NULL) {
921                 return TDB_SUCCESS;
922         }
923
924         methods = tdb->transaction->io_methods;
925
926         /* upgrade the main transaction lock region to a write lock */
927         ecode = tdb_allrecord_upgrade(tdb);
928         if (ecode != TDB_SUCCESS) {
929                 return ecode;
930         }
931
932         /* get the open lock - this prevents new users attaching to the database
933            during the commit */
934         ecode = tdb_lock_open(tdb, TDB_LOCK_WAIT|TDB_LOCK_NOCHECK);
935         if (ecode != TDB_SUCCESS) {
936                 return ecode;
937         }
938
939         /* Since we have whole db locked, we don't need the expansion lock. */
940         if (!(tdb->flags & TDB_NOSYNC)) {
941                 /* write the recovery data to the end of the file */
942                 ecode = transaction_setup_recovery(tdb,
943                                                    &tdb->transaction
944                                                    ->magic_offset);
945                 if (ecode != TDB_SUCCESS) {
946                         return ecode;
947                 }
948         }
949
950         tdb->transaction->prepared = true;
951
952         /* expand the file to the new size if needed */
953         if (tdb->file->map_size != tdb->transaction->old_map_size) {
954                 tdb_len_t add;
955
956                 add = tdb->file->map_size - tdb->transaction->old_map_size;
957                 /* Restore original map size for tdb_expand_file */
958                 tdb->file->map_size = tdb->transaction->old_map_size;
959                 ecode = methods->expand_file(tdb, add);
960                 if (ecode != TDB_SUCCESS) {
961                         return ecode;
962                 }
963         }
964
965         /* Keep the open lock until the actual commit */
966         return TDB_SUCCESS;
967 }
968
969 /*
970    prepare to commit the current transaction
971 */
972 enum TDB_ERROR tdb_transaction_prepare_commit(struct tdb_context *tdb)
973 {
974         return _tdb_transaction_prepare_commit(tdb);
975 }
976
977 /*
978   commit the current transaction
979 */
980 enum TDB_ERROR tdb_transaction_commit(struct tdb_context *tdb)
981 {
982         const struct tdb_methods *methods;
983         int i;
984         enum TDB_ERROR ecode;
985
986         if (tdb->transaction == NULL) {
987                 return tdb->last_error = tdb_logerr(tdb, TDB_ERR_EINVAL,
988                                                     TDB_LOG_USE_ERROR,
989                                                     "tdb_transaction_commit:"
990                                                     " no transaction");
991         }
992
993         tdb_trace(tdb, "tdb_transaction_commit");
994
995         if (tdb->transaction->nesting != 0) {
996                 tdb->transaction->nesting--;
997                 return tdb->last_error = TDB_SUCCESS;
998         }
999
1000         /* check for a null transaction */
1001         if (tdb->transaction->blocks == NULL) {
1002                 _tdb_transaction_cancel(tdb);
1003                 return tdb->last_error = TDB_SUCCESS;
1004         }
1005
1006         if (!tdb->transaction->prepared) {
1007                 ecode = _tdb_transaction_prepare_commit(tdb);
1008                 if (ecode != TDB_SUCCESS) {
1009                         _tdb_transaction_cancel(tdb);
1010                         return tdb->last_error = ecode;
1011                 }
1012         }
1013
1014         methods = tdb->transaction->io_methods;
1015
1016         /* perform all the writes */
1017         for (i=0;i<tdb->transaction->num_blocks;i++) {
1018                 tdb_off_t offset;
1019                 tdb_len_t length;
1020
1021                 if (tdb->transaction->blocks[i] == NULL) {
1022                         continue;
1023                 }
1024
1025                 offset = i * PAGESIZE;
1026                 length = PAGESIZE;
1027                 if (i == tdb->transaction->num_blocks-1) {
1028                         length = tdb->transaction->last_block_size;
1029                 }
1030
1031                 ecode = methods->twrite(tdb, offset,
1032                                         tdb->transaction->blocks[i], length);
1033                 if (ecode != TDB_SUCCESS) {
1034                         /* we've overwritten part of the data and
1035                            possibly expanded the file, so we need to
1036                            run the crash recovery code */
1037                         tdb->methods = methods;
1038                         tdb_transaction_recover(tdb);
1039
1040                         _tdb_transaction_cancel(tdb);
1041
1042                         return tdb->last_error = ecode;
1043                 }
1044                 SAFE_FREE(tdb->transaction->blocks[i]);
1045         }
1046
1047         SAFE_FREE(tdb->transaction->blocks);
1048         tdb->transaction->num_blocks = 0;
1049
1050         /* ensure the new data is on disk */
1051         ecode = transaction_sync(tdb, 0, tdb->file->map_size);
1052         if (ecode != TDB_SUCCESS) {
1053                 return tdb->last_error = ecode;
1054         }
1055
1056         /*
1057           TODO: maybe write to some dummy hdr field, or write to magic
1058           offset without mmap, before the last sync, instead of the
1059           utime() call
1060         */
1061
1062         /* on some systems (like Linux 2.6.x) changes via mmap/msync
1063            don't change the mtime of the file, this means the file may
1064            not be backed up (as tdb rounding to block sizes means that
1065            file size changes are quite rare too). The following forces
1066            mtime changes when a transaction completes */
1067 #if HAVE_UTIME
1068         utime(tdb->name, NULL);
1069 #endif
1070
1071         /* use a transaction cancel to free memory and remove the
1072            transaction locks: it "restores" map_size, too. */
1073         tdb->transaction->old_map_size = tdb->file->map_size;
1074         _tdb_transaction_cancel(tdb);
1075
1076         return tdb->last_error = TDB_SUCCESS;
1077 }
1078
1079
1080 /*
1081   recover from an aborted transaction. Must be called with exclusive
1082   database write access already established (including the open
1083   lock to prevent new processes attaching)
1084 */
1085 enum TDB_ERROR tdb_transaction_recover(struct tdb_context *tdb)
1086 {
1087         tdb_off_t recovery_head, recovery_eof;
1088         unsigned char *data, *p;
1089         struct tdb_recovery_record rec;
1090         enum TDB_ERROR ecode;
1091
1092         /* find the recovery area */
1093         recovery_head = tdb_read_off(tdb, offsetof(struct tdb_header,recovery));
1094         if (TDB_OFF_IS_ERR(recovery_head)) {
1095                 return tdb_logerr(tdb, recovery_head, TDB_LOG_ERROR,
1096                                   "tdb_transaction_recover:"
1097                                   " failed to read recovery head");
1098         }
1099
1100         if (recovery_head == 0) {
1101                 /* we have never allocated a recovery record */
1102                 return TDB_SUCCESS;
1103         }
1104
1105         /* read the recovery record */
1106         ecode = tdb_read_convert(tdb, recovery_head, &rec, sizeof(rec));
1107         if (ecode != TDB_SUCCESS) {
1108                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1109                                   "tdb_transaction_recover:"
1110                                   " failed to read recovery record");
1111         }
1112
1113         if (rec.magic != TDB_RECOVERY_MAGIC) {
1114                 /* there is no valid recovery data */
1115                 return TDB_SUCCESS;
1116         }
1117
1118         if (tdb->read_only) {
1119                 return tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
1120                                   "tdb_transaction_recover:"
1121                                   " attempt to recover read only database");
1122         }
1123
1124         recovery_eof = rec.eof;
1125
1126         data = (unsigned char *)malloc(rec.len);
1127         if (data == NULL) {
1128                 return tdb_logerr(tdb, TDB_ERR_OOM, TDB_LOG_ERROR,
1129                                   "tdb_transaction_recover:"
1130                                   " failed to allocate recovery data");
1131         }
1132
1133         /* read the full recovery data */
1134         ecode = tdb->methods->tread(tdb, recovery_head + sizeof(rec), data,
1135                                     rec.len);
1136         if (ecode != TDB_SUCCESS) {
1137                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1138                                   "tdb_transaction_recover:"
1139                                   " failed to read recovery data");
1140         }
1141
1142         /* recover the file data */
1143         p = data;
1144         while (p+sizeof(tdb_off_t)+sizeof(tdb_len_t) < data + rec.len) {
1145                 tdb_off_t ofs;
1146                 tdb_len_t len;
1147                 tdb_convert(tdb, p, sizeof(ofs) + sizeof(len));
1148                 memcpy(&ofs, p, sizeof(ofs));
1149                 memcpy(&len, p + sizeof(ofs), sizeof(len));
1150                 p += sizeof(ofs) + sizeof(len);
1151
1152                 ecode = tdb->methods->twrite(tdb, ofs, p, len);
1153                 if (ecode != TDB_SUCCESS) {
1154                         free(data);
1155                         return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1156                                           "tdb_transaction_recover:"
1157                                           " failed to recover %zu bytes"
1158                                           " at offset %zu",
1159                                           (size_t)len, (size_t)ofs);
1160                 }
1161                 p += len;
1162         }
1163
1164         free(data);
1165
1166         ecode = transaction_sync(tdb, 0, tdb->file->map_size);
1167         if (ecode != TDB_SUCCESS) {
1168                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1169                                   "tdb_transaction_recover:"
1170                                   " failed to sync recovery");
1171         }
1172
1173         /* if the recovery area is after the recovered eof then remove it */
1174         if (recovery_eof <= recovery_head) {
1175                 ecode = tdb_write_off(tdb, offsetof(struct tdb_header,
1176                                                     recovery),
1177                                       0);
1178                 if (ecode != TDB_SUCCESS) {
1179                         return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1180                                           "tdb_transaction_recover:"
1181                                           " failed to remove recovery head");
1182                 }
1183         }
1184
1185         /* remove the recovery magic */
1186         ecode = tdb_write_off(tdb,
1187                               recovery_head
1188                               + offsetof(struct tdb_recovery_record, magic),
1189                               TDB_RECOVERY_INVALID_MAGIC);
1190         if (ecode != TDB_SUCCESS) {
1191                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1192                                   "tdb_transaction_recover:"
1193                                   " failed to remove recovery magic");
1194         }
1195
1196         ecode = transaction_sync(tdb, 0, recovery_eof);
1197         if (ecode != TDB_SUCCESS) {
1198                 return tdb_logerr(tdb, ecode, TDB_LOG_ERROR,
1199                                   "tdb_transaction_recover:"
1200                                   " failed to sync2 recovery");
1201         }
1202
1203         tdb_logerr(tdb, TDB_SUCCESS, TDB_LOG_WARNING,
1204                    "tdb_transaction_recover: recovered %zu byte database",
1205                    (size_t)recovery_eof);
1206
1207         /* all done */
1208         return TDB_SUCCESS;
1209 }
1210
1211 tdb_bool_err tdb_needs_recovery(struct tdb_context *tdb)
1212 {
1213         tdb_off_t recovery_head;
1214         struct tdb_recovery_record rec;
1215         enum TDB_ERROR ecode;
1216
1217         /* find the recovery area */
1218         recovery_head = tdb_read_off(tdb, offsetof(struct tdb_header,recovery));
1219         if (TDB_OFF_IS_ERR(recovery_head)) {
1220                 return recovery_head;
1221         }
1222
1223         if (recovery_head == 0) {
1224                 /* we have never allocated a recovery record */
1225                 return false;
1226         }
1227
1228         /* read the recovery record */
1229         ecode = tdb_read_convert(tdb, recovery_head, &rec, sizeof(rec));
1230         if (ecode != TDB_SUCCESS) {
1231                 return ecode;
1232         }
1233
1234         return (rec.magic == TDB_RECOVERY_MAGIC);
1235 }