r19402: - use the new tdb_lockall_read() to make ldb_search() more efficient,
[jra/samba/.git] / source4 / lib / ldb / ldb_tdb / ldb_tdb.c
index 22797b96d13525c76359d759a0ad37c1dc719444..3f9db3909734d119ce9595f56cbc44c0d49a23a2 100644 (file)
@@ -3,6 +3,7 @@
 
    Copyright (C) Andrew Tridgell  2004
    Copyright (C) Stefan Metzmacher  2004
+   Copyright (C) Simo Sorce       2006
    
 
      ** NOTE! The following LGPL license applies to the ldb
@@ -25,7 +26,7 @@
 */
 
 /*
- *  Name: ldb
+ *  Name: ldb_tdb
  *
  *  Component: ldb tdb backend
  *
  *
  *  Author: Andrew Tridgell
  *  Author: Stefan Metzmacher
+ *
+ *  Modifications:
+ *
+ *  - description: make the module use asyncronous calls
+ *    date: Feb 2006
+ *    Author: Simo Sorce
  */
 
 #include "includes.h"
-#include "ldb/include/ldb.h"
-#include "ldb/include/ldb_private.h"
-#include "ldb/include/ldb_dn.h"
+#include "ldb/include/includes.h"
+
 #include "ldb/ldb_tdb/ldb_tdb.h"
 
-#define LDBLOCK        "@INT_LDBLOCK"
 
+/*
+  map a tdb error code to a ldb error code
+*/
+static int ltdb_err_map(enum TDB_ERROR tdb_code)
+{
+       switch (tdb_code) {
+       case TDB_SUCCESS:
+               return LDB_SUCCESS;
+       case TDB_ERR_CORRUPT:
+       case TDB_ERR_OOM:
+       case TDB_ERR_EINVAL:
+               return LDB_ERR_OPERATIONS_ERROR;
+       case TDB_ERR_IO:
+               return LDB_ERR_PROTOCOL_ERROR;
+       case TDB_ERR_LOCK:
+       case TDB_ERR_NOLOCK:
+               return LDB_ERR_BUSY;
+       case TDB_ERR_LOCK_TIMEOUT:
+               return LDB_ERR_TIME_LIMIT_EXCEEDED;
+       case TDB_ERR_EXISTS:
+               return LDB_ERR_ENTRY_ALREADY_EXISTS;
+       case TDB_ERR_NOEXIST:
+               return LDB_ERR_NO_SUCH_OBJECT;
+       case TDB_ERR_RDONLY:
+               return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
+       }
+       return LDB_ERR_OTHER;
+}
+
+
+struct ldb_handle *init_ltdb_handle(struct ltdb_private *ltdb, struct ldb_module *module,
+                                   struct ldb_request *req)
+{
+       struct ltdb_context *ac;
+       struct ldb_handle *h;
+
+       h = talloc_zero(req, struct ldb_handle);
+       if (h == NULL) {
+               ldb_set_errstring(module->ldb, "Out of Memory");
+               return NULL;
+       }
+
+       h->module = module;
+
+       ac = talloc_zero(h, struct ltdb_context);
+       if (ac == NULL) {
+               ldb_set_errstring(module->ldb, "Out of Memory");
+               talloc_free(h);
+               return NULL;
+       }
+
+       h->private_data = (void *)ac;
+
+       h->state = LDB_ASYNC_INIT;
+       h->status = LDB_SUCCESS;
+
+       ac->module = module;
+       ac->context = req->context;
+       ac->callback = req->callback;
+
+       return h;
+}
 
 /*
   form a TDB_DATA for a record key
   note that the key for a record can depend on whether the 
   dn refers to a case sensitive index record or not
 */
-struct TDB_DATA ltdb_key(struct ldb_module *module, const char *dn)
+struct TDB_DATA ltdb_key(struct ldb_module *module, const struct ldb_dn *dn)
 {
        struct ldb_context *ldb = module->ldb;
        TDB_DATA key;
@@ -69,40 +136,22 @@ struct TDB_DATA ltdb_key(struct ldb_module *module, const char *dn)
          2) if the dn starts with @ then leave it alone - the indexing code handles
             the rest
        */
-       if (*dn == '@') {
-               dn_folded = talloc_strdup(ldb, dn);
-       } else {
-               struct ldb_dn *edn, *cedn;
-
-               edn = ldb_dn_explode(ldb, dn);
-               if (!edn)
-                       goto failed;
-
-               cedn = ldb_dn_casefold(ldb, edn);
-               if (!cedn)
-                       goto failed;
-
-                dn_folded = ldb_dn_linearize(ldb, cedn);
-               if (!dn_folded)
-                       goto failed;
-
-               talloc_free(edn);
-               talloc_free(cedn);
-       }
 
+       dn_folded = ldb_dn_linearize_casefold(ldb, ldb, dn);
        if (!dn_folded) {
                goto failed;
        }
 
        key_str = talloc_asprintf(ldb, "DN=%s", dn_folded);
+
        talloc_free(dn_folded);
 
        if (!key_str) {
                goto failed;
        }
 
-       key.dptr = key_str;
-       key.dsize = strlen(key_str)+1;
+       key.dptr = (uint8_t *)key_str;
+       key.dsize = strlen(key_str) + 1;
 
        return key;
 
@@ -113,115 +162,16 @@ failed:
        return key;
 }
 
-/*
-  lock the database for write - currently a single lock is used
-*/
-static int ltdb_lock(struct ldb_module *module, const char *lockname)
-{
-       struct ltdb_private *ltdb = module->private_data;
-       char *lock_dn;
-       TDB_DATA key;
-       int ret;
-
-       if (lockname == NULL) {
-               return -1;
-       }
-
-       lock_dn = talloc_asprintf(module->ldb, "%s_%s", LDBLOCK, lockname);     
-       if (lock_dn == NULL) {
-               return -1;
-       }
-
-       key = ltdb_key(module, lock_dn);
-       if (!key.dptr) {
-               talloc_free(lock_dn);
-               return -1;
-       }
-
-       ret = tdb_chainlock(ltdb->tdb, key);
-
-       talloc_free(key.dptr);
-       talloc_free(lock_dn);
-
-       return ret;
-}
-
-/*
-  unlock the database after a ltdb_lock()
-*/
-static int ltdb_unlock(struct ldb_module *module, const char *lockname)
-{
-       struct ltdb_private *ltdb = module->private_data;
-       char *lock_dn;
-       TDB_DATA key;
-
-       if (lockname == NULL) {
-               return -1;
-       }
-
-       lock_dn = talloc_asprintf(module->ldb, "%s_%s", LDBLOCK, lockname);     
-       if (lock_dn == NULL) {
-               return -1;
-       }
-
-       key = ltdb_key(module, lock_dn);
-       if (!key.dptr) {
-               talloc_free(lock_dn);
-               return -1;
-       }
-
-       tdb_chainunlock(ltdb->tdb, key);
-
-       talloc_free(key.dptr);
-       talloc_free(lock_dn);
-
-       return 0;
-}
-
-
-/*
-  lock the database for read - use by ltdb_search
-*/
-int ltdb_lock_read(struct ldb_module *module)
-{
-       struct ltdb_private *ltdb = module->private_data;
-       TDB_DATA key;
-       int ret;
-       key = ltdb_key(module, LDBLOCK);
-       if (!key.dptr) {
-               return -1;
-       }
-       ret = tdb_chainlock_read(ltdb->tdb, key);
-       talloc_free(key.dptr);
-       return ret;
-}
-
-/*
-  unlock the database after a ltdb_lock_read()
-*/
-int ltdb_unlock_read(struct ldb_module *module)
-{
-       struct ltdb_private *ltdb = module->private_data;
-       TDB_DATA key;
-       key = ltdb_key(module, LDBLOCK);
-       if (!key.dptr) {
-               return -1;
-       }
-       tdb_chainunlock_read(ltdb->tdb, key);
-       talloc_free(key.dptr);
-       return 0;
-}
-
 /*
   check special dn's have valid attributes
   currently only @ATTRIBUTES is checked
 */
 int ltdb_check_special_dn(struct ldb_module *module, const struct ldb_message *msg)
 {
-       struct ltdb_private *ltdb = module->private_data;
        int i, j;
-
-       if (strcmp(msg->dn, LTDB_ATTRIBUTES) != 0) {
+       if (! ldb_dn_is_special(msg->dn) ||
+           ! ldb_dn_check_special(msg->dn, LTDB_ATTRIBUTES)) {
                return 0;
        }
 
@@ -230,8 +180,8 @@ int ltdb_check_special_dn(struct ldb_module *module, const struct ldb_message *m
        for (i = 0; i < msg->num_elements; i++) {
                for (j = 0; j < msg->elements[i].num_values; j++) {
                        if (ltdb_check_at_attributes_values(&msg->elements[i].values[j]) != 0) {
-                               ltdb->last_err_string = "Invalid attribute value in an @ATTRIBUTES entry";
-                               return -1;
+                               ldb_set_errstring(module->ldb, "Invalid attribute value in an @ATTRIBUTES entry");
+                               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
                        }
                }
        }
@@ -244,17 +194,19 @@ int ltdb_check_special_dn(struct ldb_module *module, const struct ldb_message *m
   we've made a modification to a dn - possibly reindex and 
   update sequence number
 */
-static int ltdb_modified(struct ldb_module *module, const char *dn)
+static int ltdb_modified(struct ldb_module *module, const struct ldb_dn *dn)
 {
        int ret = 0;
 
-       if (strcmp(dn, LTDB_INDEXLIST) == 0 ||
-           strcmp(dn, LTDB_ATTRIBUTES) == 0) {
+       if (ldb_dn_is_special(dn) &&
+           (ldb_dn_check_special(dn, LTDB_INDEXLIST) ||
+            ldb_dn_check_special(dn, LTDB_ATTRIBUTES)) ) {
                ret = ltdb_reindex(module);
        }
 
        if (ret == 0 &&
-           strcmp(dn, LTDB_BASEINFO) != 0) {
+           !(ldb_dn_is_special(dn) &&
+             ldb_dn_check_special(dn, LTDB_BASEINFO)) ) {
                ret = ltdb_increase_sequence_number(module);
        }
 
@@ -266,23 +218,25 @@ static int ltdb_modified(struct ldb_module *module, const char *dn)
 */
 int ltdb_store(struct ldb_module *module, const struct ldb_message *msg, int flgs)
 {
-       struct ltdb_private *ltdb = module->private_data;
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
        TDB_DATA tdb_key, tdb_data;
        int ret;
 
        tdb_key = ltdb_key(module, msg->dn);
        if (!tdb_key.dptr) {
-               return -1;
+               return LDB_ERR_OTHER;
        }
 
        ret = ltdb_pack_data(module, msg, &tdb_data);
        if (ret == -1) {
                talloc_free(tdb_key.dptr);
-               return -1;
+               return LDB_ERR_OTHER;
        }
 
        ret = tdb_store(ltdb->tdb, tdb_key, tdb_data, flgs);
        if (ret == -1) {
+               ret = ltdb_err_map(tdb_error(ltdb->tdb));
                goto done;
        }
        
@@ -299,84 +253,113 @@ done:
 }
 
 
-/*
-  add a record to the database
-*/
-static int ltdb_add(struct ldb_module *module, const struct ldb_message *msg)
+static int ltdb_add_internal(struct ldb_module *module, const struct ldb_message *msg)
 {
-       struct ltdb_private *ltdb = module->private_data;
        int ret;
-
-       ltdb->last_err_string = NULL;
-
+       
        ret = ltdb_check_special_dn(module, msg);
-       if (ret != 0) {
+       if (ret != LDB_SUCCESS) {
                return ret;
        }
        
-       if (ltdb_lock(module, LDBLOCK) != 0) {
-               return -1;
-       }
-
        if (ltdb_cache_load(module) != 0) {
-               ltdb_unlock(module, LDBLOCK);
-               return -1;
+               return LDB_ERR_OPERATIONS_ERROR;
        }
 
        ret = ltdb_store(module, msg, TDB_INSERT);
 
-       if (ret == 0) {
-               ltdb_modified(module, msg->dn);
+       if (ret == LDB_ERR_ENTRY_ALREADY_EXISTS) {
+               char *dn;
+
+               dn = ldb_dn_linearize(module, msg->dn);
+               if (!dn) {
+                       return ret;
+               }
+               ldb_asprintf_errstring(module->ldb, "Entry %s already exists", dn);
+               talloc_free(dn);
+               return ret;
+       }
+       
+       if (ret == LDB_SUCCESS) {
+               ret = ltdb_modified(module, msg->dn);
+               if (ret != LDB_SUCCESS) {
+                       return LDB_ERR_OPERATIONS_ERROR;
+               }
        }
 
-       ltdb_unlock(module, LDBLOCK);
        return ret;
 }
 
+/*
+  add a record to the database
+*/
+static int ltdb_add(struct ldb_module *module, struct ldb_request *req)
+{
+       struct ltdb_private *ltdb = talloc_get_type(module->private_data, struct ltdb_private);
+       struct ltdb_context *ltdb_ac;
+       int tret, ret = LDB_SUCCESS;
+
+       if (req->controls != NULL) {
+               ldb_debug(module->ldb, LDB_DEBUG_WARNING, "Controls should not reach the ldb_tdb backend!\n");
+               if (check_critical_controls(req->controls)) {
+                       return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
+               }
+       }
+       
+       req->handle = init_ltdb_handle(ltdb, module, req);
+       if (req->handle == NULL) {
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       ltdb_ac = talloc_get_type(req->handle->private_data, struct ltdb_context);
+
+       tret = ltdb_add_internal(module, req->op.add.message);
+       if (tret != LDB_SUCCESS) {
+               req->handle->status = tret;
+               goto done;
+       }
+       
+       if (ltdb_ac->callback) {
+               ret = ltdb_ac->callback(module->ldb, ltdb_ac->context, NULL);
+       }
+done:
+       req->handle->state = LDB_ASYNC_DONE;
+       return ret;
+}
 
 /*
   delete a record from the database, not updating indexes (used for deleting
   index records)
 */
-int ltdb_delete_noindex(struct ldb_module *module, const char *dn)
+int ltdb_delete_noindex(struct ldb_module *module, const struct ldb_dn *dn)
 {
-       struct ltdb_private *ltdb = module->private_data;
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
        TDB_DATA tdb_key;
        int ret;
 
        tdb_key = ltdb_key(module, dn);
        if (!tdb_key.dptr) {
-               return -1;
+               return LDB_ERR_OTHER;
        }
 
        ret = tdb_delete(ltdb->tdb, tdb_key);
        talloc_free(tdb_key.dptr);
 
+       if (ret != 0) {
+               ret = ltdb_err_map(tdb_error(ltdb->tdb));
+       }
+
        return ret;
 }
 
-/*
-  delete a record from the database
-*/
-static int ltdb_delete(struct ldb_module *module, const char *dn)
+static int ltdb_delete_internal(struct ldb_module *module, const struct ldb_dn *dn)
 {
-       struct ltdb_private *ltdb = module->private_data;
+       struct ldb_message *msg;
        int ret;
-       struct ldb_message *msg = NULL;
-
-       ltdb->last_err_string = NULL;
-
-       if (ltdb_lock(module, LDBLOCK) != 0) {
-               return -1;
-       }
-
-       if (ltdb_cache_load(module) != 0) {
-               goto failed;
-       }
 
        msg = talloc(module, struct ldb_message);
        if (msg == NULL) {
-               goto failed;
+               return LDB_ERR_OPERATIONS_ERROR;
        }
 
        /* in case any attribute of the message was indexed, we need
@@ -384,31 +367,74 @@ static int ltdb_delete(struct ldb_module *module, const char *dn)
        ret = ltdb_search_dn1(module, dn, msg);
        if (ret != 1) {
                /* not finding the old record is an error */
-               goto failed;
+               talloc_free(msg);
+               return LDB_ERR_NO_SUCH_OBJECT;
        }
 
        ret = ltdb_delete_noindex(module, dn);
-       if (ret == -1) {
-               goto failed;
+       if (ret != LDB_SUCCESS) {
+               talloc_free(msg);
+               return LDB_ERR_NO_SUCH_OBJECT;
        }
 
        /* remove any indexed attributes */
        ret = ltdb_index_del(module, msg);
-
-       if (ret == 0) {
-               ltdb_modified(module, dn);
+       if (ret != LDB_SUCCESS) {
+               talloc_free(msg);
+               return LDB_ERR_OPERATIONS_ERROR;
        }
 
-       talloc_free(msg);
-       ltdb_unlock(module, LDBLOCK);
-       return ret;
+       ret = ltdb_modified(module, dn);
+       if (ret != LDB_SUCCESS) {
+               talloc_free(msg);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
 
-failed:
        talloc_free(msg);
-       ltdb_unlock(module, LDBLOCK);
-       return -1;
+       return LDB_SUCCESS;
 }
 
+/*
+  delete a record from the database
+*/
+static int ltdb_delete(struct ldb_module *module, struct ldb_request *req)
+{
+       struct ltdb_private *ltdb = talloc_get_type(module->private_data, struct ltdb_private);
+       struct ltdb_context *ltdb_ac;
+       int tret, ret = LDB_SUCCESS;
+
+       if (req->controls != NULL) {
+               ldb_debug(module->ldb, LDB_DEBUG_WARNING, "Controls should not reach the ldb_tdb backend!\n");
+               if (check_critical_controls(req->controls)) {
+                       return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
+               }
+       }
+       
+       req->handle = NULL;
+
+       if (ltdb_cache_load(module) != 0) {
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+
+       req->handle = init_ltdb_handle(ltdb, module, req);
+       if (req->handle == NULL) {
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       ltdb_ac = talloc_get_type(req->handle->private_data, struct ltdb_context);
+
+       tret = ltdb_delete_internal(module, req->op.del.dn);
+       if (tret != LDB_SUCCESS) {
+               req->handle->status = tret; 
+               goto done;
+       }
+
+       if (ltdb_ac->callback) {
+               ret = ltdb_ac->callback(module->ldb, ltdb_ac->context, NULL);
+       }
+done:
+       req->handle->state = LDB_ASYNC_DONE;
+       return ret;
+}
 
 /*
   find an element by attribute name. At the moment this does a linear search, it should
@@ -480,12 +506,18 @@ static int msg_delete_attribute(struct ldb_module *module,
                                struct ldb_context *ldb,
                                struct ldb_message *msg, const char *name)
 {
+       char *dn;
        unsigned int i, j;
 
+       dn = ldb_dn_linearize(ldb, msg->dn);
+       if (dn == NULL) {
+               return -1;
+       }
+
        for (i=0;i<msg->num_elements;i++) {
                if (ldb_attr_cmp(msg->elements[i].name, name) == 0) {
                        for (j=0;j<msg->elements[i].num_values;j++) {
-                               ltdb_index_del_value(module, msg->dn, &msg->elements[i], j);
+                               ltdb_index_del_value(module, dn, &msg->elements[i], j);
                        }
                        talloc_free(msg->elements[i].values);
                        if (msg->num_elements > (i+1)) {
@@ -502,6 +534,7 @@ static int msg_delete_attribute(struct ldb_module *module,
                }
        }
 
+       talloc_free(dn);
        return 0;
 }
 
@@ -531,7 +564,7 @@ static int msg_delete_element(struct ldb_module *module,
        h = ldb_attrib_handler(ldb, el->name);
 
        for (i=0;i<el->num_values;i++) {
-               if (h->comparison_fn(ldb, &el->values[i], val) == 0) {
+               if (h->comparison_fn(ldb, ldb, &el->values[i], val) == 0) {
                        if (i<el->num_values-1) {
                                memmove(&el->values[i], &el->values[i+1],
                                        sizeof(el->values[i])*(el->num_values-(i+1)));
@@ -558,7 +591,8 @@ static int msg_delete_element(struct ldb_module *module,
 int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *msg)
 {
        struct ldb_context *ldb = module->ldb;
-       struct ltdb_private *ltdb = module->private_data;
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
        TDB_DATA tdb_key, tdb_data;
        struct ldb_message *msg2;
        unsigned i, j;
@@ -566,26 +600,25 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
 
        tdb_key = ltdb_key(module, msg->dn);
        if (!tdb_key.dptr) {
-               return -1;
+               return LDB_ERR_OTHER;
        }
 
        tdb_data = tdb_fetch(ltdb->tdb, tdb_key);
        if (!tdb_data.dptr) {
                talloc_free(tdb_key.dptr);
-               return -1;
+               return ltdb_err_map(tdb_error(ltdb->tdb));
        }
 
        msg2 = talloc(tdb_key.dptr, struct ldb_message);
        if (msg2 == NULL) {
                talloc_free(tdb_key.dptr);
-               return -1;
+               return LDB_ERR_OTHER;
        }
 
        ret = ltdb_unpack_data(module, &tdb_data, msg2);
        if (ret == -1) {
-               talloc_free(tdb_key.dptr);
-               free(tdb_data.dptr);
-               return -1;
+               ret = LDB_ERR_OTHER;
+               goto failed;
        }
 
        if (!msg2->dn) {
@@ -596,6 +629,7 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
                struct ldb_message_element *el = &msg->elements[i];
                struct ldb_message_element *el2;
                struct ldb_val *vals;
+               char *dn;
 
                switch (msg->elements[i].flags & LDB_FLAG_MOD_MASK) {
 
@@ -606,6 +640,7 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
 
                        if (ret == -1) {
                                if (msg_add_element(ldb, msg2, el) != 0) {
+                                       ret = LDB_ERR_OTHER;
                                        goto failed;
                                }
                                continue;
@@ -618,8 +653,8 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
 
                        for (j=0;j<el->num_values;j++) {
                                if (ldb_msg_find_val(el2, &el->values[j])) {
-                                       ltdb->last_err_string =
-                                               "Type or value exists";
+                                       ldb_set_errstring(module->ldb, "Type or value exists");
+                                       ret = LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS;
                                        goto failed;
                                }
                        }
@@ -627,8 +662,10 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
                        vals = talloc_realloc(msg2->elements, el2->values, struct ldb_val,
                                                el2->num_values + el->num_values);
 
-                       if (vals == NULL)
+                       if (vals == NULL) {
+                               ret = LDB_ERR_OTHER;
                                goto failed;
+                       }
 
                        for (j=0;j<el->num_values;j++) {
                                vals[el2->num_values + j] =
@@ -648,17 +685,26 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
                        /* add the replacement element, if not empty */
                        if (msg->elements[i].num_values != 0 &&
                            msg_add_element(ldb, msg2, &msg->elements[i]) != 0) {
+                               ret = LDB_ERR_OTHER;
                                goto failed;
                        }
                        break;
 
                case LDB_FLAG_MOD_DELETE:
+
+                       dn = ldb_dn_linearize(msg2, msg->dn);
+                       if (dn == NULL) {
+                               ret = LDB_ERR_OTHER;
+                               goto failed;
+                       }
+
                        /* we could be being asked to delete all
                           values or just some values */
                        if (msg->elements[i].num_values == 0) {
                                if (msg_delete_attribute(module, ldb, msg2, 
                                                         msg->elements[i].name) != 0) {
-                                       ltdb->last_err_string = "No such attribute";
+                                       ldb_asprintf_errstring(module->ldb, "No such attribute: %s for delete on %s", msg->elements[i].name, dn);
+                                       ret = LDB_ERR_NO_SUCH_ATTRIBUTE;
                                        goto failed;
                                }
                                break;
@@ -668,22 +714,35 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
                                                       msg2, 
                                                       msg->elements[i].name,
                                                       &msg->elements[i].values[j]) != 0) {
-                                       ltdb->last_err_string = "No such attribute";
+                                       ldb_asprintf_errstring(module->ldb, "No matching attribute value when deleting attribute: %s on %s", msg->elements[i].name, dn);
+                                       ret = LDB_ERR_NO_SUCH_ATTRIBUTE;
                                        goto failed;
                                }
-                               if (ltdb_index_del_value(module, msg->dn, &msg->elements[i], j) != 0) {
+                               if (ltdb_index_del_value(module, dn, &msg->elements[i], j) != 0) {
+                                       ret = LDB_ERR_OTHER;
                                        goto failed;
                                }
                        }
                        break;
                default:
-                       ltdb->last_err_string = "Invalid ldb_modify flags";
+                       ldb_asprintf_errstring(module->ldb, "Invalid ldb_modify flags on %s: 0x%x", 
+                                                            msg->elements[i].name, 
+                                                            msg->elements[i].flags & LDB_FLAG_MOD_MASK);
+                       ret = LDB_ERR_PROTOCOL_ERROR;
                        goto failed;
                }
        }
 
        /* we've made all the mods - save the modified record back into the database */
        ret = ltdb_store(module, msg2, TDB_MODIFY);
+       if (ret != LDB_SUCCESS) {
+               goto failed;
+       }
+
+       if (ltdb_modified(module, msg->dn) != LDB_SUCCESS) {
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto failed;
+       }
 
        talloc_free(tdb_key.dptr);
        free(tdb_data.dptr);
@@ -692,155 +751,264 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
 failed:
        talloc_free(tdb_key.dptr);
        free(tdb_data.dptr);
-       return -1;
+       return ret;
 }
 
 /*
   modify a record
 */
-static int ltdb_modify(struct ldb_module *module, const struct ldb_message *msg)
+static int ltdb_modify(struct ldb_module *module, struct ldb_request *req)
 {
-       struct ltdb_private *ltdb = module->private_data;
-       int ret;
-
-       ltdb->last_err_string = NULL;
-
-       ret = ltdb_check_special_dn(module, msg);
-       if (ret != 0) {
-               return ret;
+       struct ltdb_private *ltdb = talloc_get_type(module->private_data, struct ltdb_private);
+       struct ltdb_context *ltdb_ac;
+       int tret, ret = LDB_SUCCESS;
+
+       if (req->controls != NULL) {
+               ldb_debug(module->ldb, LDB_DEBUG_WARNING, "Controls should not reach the ldb_tdb backend!\n");
+               if (check_critical_controls(req->controls)) {
+                       return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
+               }
        }
        
-       if (ltdb_lock(module, LDBLOCK) != 0) {
-               return -1;
+       req->handle = NULL;
+
+       req->handle = init_ltdb_handle(ltdb, module, req);
+       if (req->handle == NULL) {
+               return LDB_ERR_OPERATIONS_ERROR;
        }
+       ltdb_ac = talloc_get_type(req->handle->private_data, struct ltdb_context);
 
+       tret = ltdb_check_special_dn(module, req->op.mod.message);
+       if (tret != LDB_SUCCESS) {
+               req->handle->status = tret;
+               goto done;
+       }
+       
        if (ltdb_cache_load(module) != 0) {
-               ltdb_unlock(module, LDBLOCK);
-               return -1;
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto done;
        }
 
-       ret = ltdb_modify_internal(module, msg);
-
-       if (ret == 0) {
-               ltdb_modified(module, msg->dn);
+       tret = ltdb_modify_internal(module, req->op.mod.message);
+       if (tret != LDB_SUCCESS) {
+               req->handle->status = tret;
+               goto done;
        }
 
-       ltdb_unlock(module, LDBLOCK);
-
+       if (ltdb_ac->callback) {
+               ret = ltdb_ac->callback(module->ldb, ltdb_ac->context, NULL);
+       }
+done:
+       req->handle->state = LDB_ASYNC_DONE;
        return ret;
 }
 
 /*
   rename a record
 */
-static int ltdb_rename(struct ldb_module *module, const char *olddn, const char *newdn)
+static int ltdb_rename(struct ldb_module *module, struct ldb_request *req)
 {
-       struct ltdb_private *ltdb = module->private_data;
-       int ret;
+       struct ltdb_private *ltdb = talloc_get_type(module->private_data, struct ltdb_private);
+       struct ltdb_context *ltdb_ac;
        struct ldb_message *msg;
-       const char *error_str;
+       int tret, ret = LDB_SUCCESS;
 
-       ltdb->last_err_string = NULL;
-
-       if (ltdb_lock(module, LDBLOCK) != 0) {
-               return -1;
+       if (req->controls != NULL) {
+               ldb_debug(module->ldb, LDB_DEBUG_WARNING, "Controls should not reach the ldb_tdb backend!\n");
+               if (check_critical_controls(req->controls)) {
+                       return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
+               }
        }
+       
+       req->handle = NULL;
 
        if (ltdb_cache_load(module) != 0) {
-               ltdb_unlock(module, LDBLOCK);
-               return -1;
+               return LDB_ERR_OPERATIONS_ERROR;
        }
 
-       msg = talloc(module, struct ldb_message);
+       req->handle = init_ltdb_handle(ltdb, module, req);
+       if (req->handle == NULL) {
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       ltdb_ac = talloc_get_type(req->handle->private_data, struct ltdb_context);
+
+       msg = talloc(ltdb_ac, struct ldb_message);
        if (msg == NULL) {
-               goto failed;
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto done;
        }
 
        /* in case any attribute of the message was indexed, we need
           to fetch the old record */
-       ret = ltdb_search_dn1(module, olddn, msg);
-       if (ret != 1) {
+       tret = ltdb_search_dn1(module, req->op.rename.olddn, msg);
+       if (tret != 1) {
                /* not finding the old record is an error */
-               goto failed;
+               req->handle->status = LDB_ERR_NO_SUCH_OBJECT;
+               goto done;
        }
 
-       msg->dn = talloc_strdup(msg, newdn);
+       msg->dn = ldb_dn_copy(msg, req->op.rename.newdn);
        if (!msg->dn) {
-               goto failed;
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto done;
        }
 
-       ret = ltdb_add(module, msg);
-       if (ret == -1) {
-               goto failed;
+       tret = ltdb_add_internal(module, msg);
+       if (tret != LDB_SUCCESS) {
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto done;
        }
 
-       ret = ltdb_delete(module, olddn);
-       error_str = ltdb->last_err_string;
-       if (ret == -1) {
-               ltdb_delete(module, newdn);
+       tret = ltdb_delete_internal(module, req->op.rename.olddn);
+       if (tret != LDB_SUCCESS) {
+               ltdb_delete_internal(module, req->op.rename.newdn);
+               ret = LDB_ERR_OPERATIONS_ERROR;
+               goto done;
        }
 
-       ltdb->last_err_string = error_str;
+       if (ltdb_ac->callback) {
+               ret = ltdb_ac->callback(module->ldb, ltdb_ac->context, NULL);
+       }
+done:
+       req->handle->state = LDB_ASYNC_DONE;
+       return ret;
+}
 
-       talloc_free(msg);
-       ltdb_unlock(module, LDBLOCK);
+static int ltdb_start_trans(struct ldb_module *module)
+{
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
 
-       return ret;
+       if (tdb_transaction_start(ltdb->tdb) != 0) {
+               return ltdb_err_map(tdb_error(ltdb->tdb));
+       }
 
-failed:
-       talloc_free(msg);
-       ltdb_unlock(module, LDBLOCK);
-       return -1;
+       return LDB_SUCCESS;
 }
 
-
-/*
-  return extended error information
-*/
-static const char *ltdb_errstring(struct ldb_module *module)
+static int ltdb_end_trans(struct ldb_module *module)
 {
-       struct ltdb_private *ltdb = module->private_data;
-       if (ltdb->last_err_string) {
-               return ltdb->last_err_string;
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
+
+       if (tdb_transaction_commit(ltdb->tdb) != 0) {
+               return ltdb_err_map(tdb_error(ltdb->tdb));
        }
-       return tdb_errorstr(ltdb->tdb);
+
+       return LDB_SUCCESS;
 }
 
+static int ltdb_del_trans(struct ldb_module *module)
+{
+       struct ltdb_private *ltdb =
+               talloc_get_type(module->private_data, struct ltdb_private);
 
-static const struct ldb_module_ops ltdb_ops = {
-       .name          = "tdb",
-       .search        = ltdb_search,
-       .search_bytree = ltdb_search_bytree,
-       .add_record    = ltdb_add,
-       .modify_record = ltdb_modify,
-       .delete_record = ltdb_delete,
-       .rename_record = ltdb_rename,
-       .named_lock    = ltdb_lock,
-       .named_unlock  = ltdb_unlock,
-       .errstring     = ltdb_errstring
-};
+       if (tdb_transaction_cancel(ltdb->tdb) != 0) {
+               return ltdb_err_map(tdb_error(ltdb->tdb));
+       }
+
+       return LDB_SUCCESS;
+}
 
+static int ltdb_wait(struct ldb_handle *handle, enum ldb_wait_type type)
+{
+       return handle->status;
+}
+
+static int ltdb_request(struct ldb_module *module, struct ldb_request *req)
+{
+       /* check for oustanding critical controls and return an error if found */
+       if (req->controls != NULL) {
+               ldb_debug(module->ldb, LDB_DEBUG_WARNING, "Controls should not reach the ldb_tdb backend!\n");
+               if (check_critical_controls(req->controls)) {
+                       return LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION;
+               }
+       }
+       
+       /* search, add, modify, delete, rename are handled by their own, no other op supported */
+       return LDB_ERR_OPERATIONS_ERROR;
+}
 
 /*
-  destroy the ltdb context
+  return sequenceNumber from @BASEINFO
 */
-static int ltdb_destructor(void *p)
+static int ltdb_sequence_number(struct ldb_module *module, struct ldb_request *req)
 {
-       struct ltdb_private *ltdb = p;
-       tdb_close(ltdb->tdb);
-       return 0;
+       TALLOC_CTX *tmp_ctx = talloc_new(req);
+       struct ldb_message *msg = NULL;
+       struct ldb_dn *dn = ldb_dn_explode(tmp_ctx, LTDB_BASEINFO);
+       int tret;
+
+       if (tmp_ctx == NULL) {
+               talloc_free(tmp_ctx);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+
+       msg = talloc(tmp_ctx, struct ldb_message);
+       if (msg == NULL) {
+               talloc_free(tmp_ctx);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+
+       req->op.seq_num.flags = 0;
+
+       tret = ltdb_search_dn1(module, dn, msg);
+       if (tret != 1) {
+               talloc_free(tmp_ctx);
+               req->op.seq_num.seq_num = 0;
+               /* zero is as good as anything when we don't know */
+               return LDB_SUCCESS;
+       }
+
+       switch (req->op.seq_num.type) {
+       case LDB_SEQ_HIGHEST_SEQ:
+               req->op.seq_num.seq_num = ldb_msg_find_attr_as_uint64(msg, LTDB_SEQUENCE_NUMBER, 0);
+               break;
+       case LDB_SEQ_NEXT:
+               req->op.seq_num.seq_num = ldb_msg_find_attr_as_uint64(msg, LTDB_SEQUENCE_NUMBER, 0);
+               req->op.seq_num.seq_num++;
+               break;
+       case LDB_SEQ_HIGHEST_TIMESTAMP:
+       {
+               const char *date = ldb_msg_find_attr_as_string(msg, LTDB_MOD_TIMESTAMP, NULL);
+               if (date) {
+                       req->op.seq_num.seq_num = ldb_string_to_time(date);
+               } else {
+                       req->op.seq_num.seq_num = 0;
+                       /* zero is as good as anything when we don't know */
+               }
+               break;
+       }
+       }
+       talloc_free(tmp_ctx);
+       return LDB_SUCCESS;
 }
 
+static const struct ldb_module_ops ltdb_ops = {
+       .name              = "tdb",
+       .search            = ltdb_search,
+       .add               = ltdb_add,
+       .modify            = ltdb_modify,
+       .del               = ltdb_delete,
+       .rename            = ltdb_rename,
+       .request           = ltdb_request,
+       .start_transaction = ltdb_start_trans,
+       .end_transaction   = ltdb_end_trans,
+       .del_transaction   = ltdb_del_trans,
+       .wait              = ltdb_wait,
+       .sequence_number   = ltdb_sequence_number
+};
+
 /*
   connect to the database
 */
-int ltdb_connect(struct ldb_context *ldb, const char *url, 
-                unsigned int flags, const char *options[])
+static int ltdb_connect(struct ldb_context *ldb, const char *url, 
+                       unsigned int flags, const char *options[],
+                       struct ldb_module **module)
 {
        const char *path;
        int tdb_flags, open_flags;
        struct ltdb_private *ltdb;
-       TDB_CONTEXT *tdb;
 
        /* parse the url */
        if (strchr(url, ':')) {
@@ -853,7 +1021,12 @@ int ltdb_connect(struct ldb_context *ldb, const char *url,
                path = url;
        }
 
-       tdb_flags = TDB_DEFAULT;
+       tdb_flags = TDB_DEFAULT | TDB_SEQNUM;
+
+       /* check for the 'nosync' option */
+       if (flags & LDB_FLG_NOSYNC) {
+               tdb_flags |= TDB_NOSYNC;
+       }
 
        if (flags & LDB_FLG_RDONLY) {
                open_flags = O_RDONLY;
@@ -861,35 +1034,46 @@ int ltdb_connect(struct ldb_context *ldb, const char *url,
                open_flags = O_CREAT | O_RDWR;
        }
 
-       /* note that we use quite a large default hash size */
-       tdb = tdb_open(path, 10000, tdb_flags, open_flags, 0666);
-       if (!tdb) {
-               ldb_debug(ldb, LDB_DEBUG_ERROR, "Unable to open tdb '%s'", path);
-               return -1;
-       }
-
        ltdb = talloc_zero(ldb, struct ltdb_private);
        if (!ltdb) {
-               tdb_close(tdb);
                ldb_oom(ldb);
                return -1;
        }
 
-       ltdb->tdb = tdb;
-       ltdb->sequence_number = 0;
+       /* note that we use quite a large default hash size */
+       ltdb->tdb = ltdb_wrap_open(ltdb, path, 10000, 
+                                  tdb_flags, open_flags, 
+                                  ldb->create_perms, ldb);
+       if (!ltdb->tdb) {
+               ldb_debug(ldb, LDB_DEBUG_ERROR, "Unable to open tdb '%s'\n", path);
+               talloc_free(ltdb);
+               return -1;
+       }
 
-       talloc_set_destructor(ltdb, ltdb_destructor);
+       ltdb->sequence_number = 0;
 
-       ldb->modules = talloc(ldb, struct ldb_module);
-       if (!ldb->modules) {
+       *module = talloc(ldb, struct ldb_module);
+       if (!module) {
                ldb_oom(ldb);
                talloc_free(ltdb);
                return -1;
        }
-       ldb->modules->ldb = ldb;
-       ldb->modules->prev = ldb->modules->next = NULL;
-       ldb->modules->private_data = ltdb;
-       ldb->modules->ops = &ltdb_ops;
+       talloc_set_name_const(*module, "ldb_tdb backend");
+       (*module)->ldb = ldb;
+       (*module)->prev = (*module)->next = NULL;
+       (*module)->private_data = ltdb;
+       (*module)->ops = &ltdb_ops;
+
+       if (ltdb_cache_load(*module) != 0) {
+               talloc_free(*module);
+               talloc_free(ltdb);
+               return -1;
+       }
 
        return 0;
 }
+
+int ldb_tdb_init(void)
+{
+       return ldb_register_backend("tdb", ltdb_connect);
+}