From a35a071fc95823cea74fdd3cb1858df4d7104901 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 17 Jan 2007 14:19:06 +0000 Subject: r20849: first step to move away from using find_backend() and use find_partition() instead metze (This used to be commit 0d75cca6f37975a3855973468dc55520cb3b3fb7) --- source4/dsdb/samdb/ldb_modules/partition.c | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'source4/dsdb/samdb/ldb_modules/partition.c') diff --git a/source4/dsdb/samdb/ldb_modules/partition.c b/source4/dsdb/samdb/ldb_modules/partition.c index 8a497411df..5ac954d65b 100644 --- a/source4/dsdb/samdb/ldb_modules/partition.c +++ b/source4/dsdb/samdb/ldb_modules/partition.c @@ -138,7 +138,6 @@ static struct ldb_module *find_backend(struct ldb_module *module, struct ldb_req return make_module_for_next_request(req, module->ldb, partition->module); }; - /* fire the caller's callback for every entry, but only send 'done' once. */ @@ -274,6 +273,7 @@ static int partition_send_all(struct ldb_module *module, static int partition_replicate(struct ldb_module *module, struct ldb_request *req, struct ldb_dn *dn) { int i; + struct dsdb_control_current_partition *partition; struct ldb_module *backend; struct partition_private_data *data = talloc_get_type(module->private_data, struct partition_private_data); @@ -293,11 +293,26 @@ static int partition_replicate(struct ldb_module *module, struct ldb_request *re } } - /* Otherwise, we need to find the backend to fire it to */ + /* Otherwise, we need to find the partition to fire it to */ + + /* Find partition */ + partition = find_partition(data, dn); + if (!partition) { + /* + * if we haven't found a matching partition + * pass the request to the main ldb + * + * TODO: we should maybe return an error here + * if it's not a special dn + */ + return ldb_next_request(module, req); + } + + backend = make_module_for_next_request(req, module->ldb, partition->module); + if (!backend) { + return LDB_ERR_OPERATIONS_ERROR; + } - /* Find backend */ - backend = find_backend(module, req, dn); - /* issue request */ return ldb_next_request(backend, req); -- cgit