tdb: fix an early release of the global lock that can cause data corruption
authorVolker Lendecke <vl@samba.org>
Fri, 29 Jan 2010 17:21:09 +0000 (18:21 +0100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Mon, 1 Feb 2010 20:52:15 +0000 (07:52 +1100)
commit898b5edfe757cb145960b8f3631029bfd5592119
tree42e095ccd8936e18892820a49f61be332dfbb606
parent522fbb012524fe41a67dbe43589a282dda6bcbe2
tdb: fix an early release of the global lock that can cause data corruption

There was a bug in tdb where the

                tdb_brlock(tdb, GLOBAL_LOCK, F_UNLCK, F_SETLKW, 0, 1);

(ending the transaction-"mutex") was done before the

                        /* remove the recovery marker */

This means that when a transaction is committed there is a window where another
opener of the file sees the transaction marker while the transaction committer
is still fully functional and working on it. This led to transaction being
rolled back by that second opener of the file while transaction_commit() gave
no error to the caller.

This patch moves the F_UNLCK to after the recovery marker was removed, closing
this window.
lib/tdb/common/transaction.c