cc778d6a710007d7a21ab2b92e6f633fac07d3a1
[samba.git] / source4 / dsdb / samdb / ldb_modules / partition_init.c
1 /* 
2    Partitions ldb module
3
4    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
5    Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 /*
22  *  Name: ldb
23  *
24  *  Component: ldb partitions module
25  *
26  *  Description: Implement LDAP partitions
27  *
28  *  Author: Andrew Bartlett
29  *  Author: Stefan Metzmacher
30  */
31
32 #include "dsdb/samdb/ldb_modules/partition.h"
33 static int partition_sort_compare(const void *v1, const void *v2)
34 {
35         const struct dsdb_partition *p1;
36         const struct dsdb_partition *p2;
37
38         p1 = *((struct dsdb_partition * const*)v1);
39         p2 = *((struct dsdb_partition * const*)v2);
40
41         return ldb_dn_compare(p1->ctrl->dn, p2->ctrl->dn);
42 }
43
44 /* Load the list of DNs that we must replicate to all partitions */
45 static int partition_load_replicate_dns(struct ldb_context *ldb, struct partition_private_data *data, struct ldb_message *msg) 
46 {
47         struct ldb_message_element *replicate_attributes = ldb_msg_find_element(msg, "replicateEntries");
48
49         talloc_free(data->replicate);
50         if (!replicate_attributes) {
51                 data->replicate = NULL;
52         } else {
53                 int i;
54                 data->replicate = talloc_array(data, struct ldb_dn *, replicate_attributes->num_values + 1);
55                 if (!data->replicate) {
56                         return LDB_ERR_OPERATIONS_ERROR;
57                 }
58
59                 for (i=0; i < replicate_attributes->num_values; i++) {
60                         data->replicate[i] = ldb_dn_from_ldb_val(data->replicate, ldb, &replicate_attributes->values[i]);
61                         if (!ldb_dn_validate(data->replicate[i])) {
62                                 ldb_asprintf_errstring(ldb,
63                                                         "partition_init: "
64                                                         "invalid DN in partition replicate record: %s", 
65                                                         replicate_attributes->values[i].data);
66                                 return LDB_ERR_CONSTRAINT_VIOLATION;
67                         }
68                 }
69                 data->replicate[i] = NULL;
70         }
71         return LDB_SUCCESS;
72 }
73
74 /* Load the list of modules for the partitions */
75 static int partition_load_modules(struct ldb_context *ldb, 
76                                   struct partition_private_data *data, struct ldb_message *msg) 
77 {
78         int i;
79         struct ldb_message_element *modules_attributes = ldb_msg_find_element(msg, "modules");
80         talloc_free(data->modules);
81         if (!modules_attributes) {
82                 return LDB_SUCCESS;
83         }
84         
85         data->modules = talloc_array(data, struct partition_module *, modules_attributes->num_values + 1);
86         if (!data->modules) {
87                 ldb_oom(ldb);
88                 return LDB_ERR_OPERATIONS_ERROR;
89         }
90         
91         for (i=0; i < modules_attributes->num_values; i++) {
92                 char *p;
93                 DATA_BLOB dn_blob;
94                 data->modules[i] = talloc(data->modules, struct partition_module);
95                 if (!data->modules[i]) {
96                         ldb_oom(ldb);
97                         return LDB_ERR_OPERATIONS_ERROR;
98                 }
99
100                 dn_blob = modules_attributes->values[i];
101
102                 p = strchr((const char *)dn_blob.data, ':');
103                 if (!p) {
104                         ldb_asprintf_errstring(ldb, 
105                                                "partition_load_modules: "
106                                                "invalid form for partition module record (missing ':'): %s", (const char *)dn_blob.data);
107                         return LDB_ERR_CONSTRAINT_VIOLATION;
108                 }
109                 /* Now trim off the filename */
110                 dn_blob.length = ((uint8_t *)p - dn_blob.data);
111
112                 p++;
113                 data->modules[i]->modules = ldb_modules_list_from_string(ldb, data->modules[i],
114                                                                          p);
115                 
116                 if (dn_blob.length == 1 && dn_blob.data[0] == '*') {
117                         data->modules[i]->dn = NULL;
118                 } else {
119                         data->modules[i]->dn = ldb_dn_from_ldb_val(data->modules[i], ldb, &dn_blob);
120                         if (!data->modules[i]->dn || !ldb_dn_validate(data->modules[i]->dn)) {
121                                 return LDB_ERR_OPERATIONS_ERROR;
122                         }
123                 }
124         }
125         data->modules[i] = NULL;
126         return LDB_SUCCESS;
127 }
128
129 static int partition_reload_metadata(struct ldb_module *module, struct partition_private_data *data, TALLOC_CTX *mem_ctx, struct ldb_message **_msg) 
130 {
131         int ret;
132         struct ldb_message *msg;
133         struct ldb_result *res;
134         struct ldb_context *ldb = ldb_module_get_ctx(module);
135         const char *attrs[] = { "partition", "replicateEntries", "modules", NULL };
136         /* perform search for @PARTITION, looking for module, replicateEntries and ldapBackend */
137         ret = dsdb_module_search_dn(module, mem_ctx, &res, 
138                                     ldb_dn_new(mem_ctx, ldb, DSDB_PARTITION_DN),
139                                     attrs);
140         if (ret != LDB_SUCCESS) {
141                 return ret;
142         }
143
144         msg = res->msgs[0];
145
146         ret = partition_load_replicate_dns(ldb, data, msg);
147         if (ret != LDB_SUCCESS) {
148                 return ret;
149         }
150
151         ret = partition_load_modules(ldb, data, msg);                   
152         if (ret != LDB_SUCCESS) {
153                 return ret;
154         }
155
156         data->ldapBackend = talloc_steal(data, ldb_msg_find_attr_as_string(msg, "ldapBackend", NULL));
157         if (_msg) {
158                 *_msg = msg;
159         } else {
160                 talloc_free(msg);
161         }
162
163         return LDB_SUCCESS;
164 }
165
166 static const char **find_modules_for_dn(struct partition_private_data *data, struct ldb_dn *dn) 
167 {
168         int i;
169         struct partition_module *default_mod = NULL;
170         for (i=0; data->modules && data->modules[i]; i++) {
171                 if (!data->modules[i]->dn) {
172                         default_mod = data->modules[i];
173                 } else if (ldb_dn_compare(dn, data->modules[i]->dn) == 0) {
174                         return data->modules[i]->modules;
175                 }
176         }
177         if (default_mod) {
178                 return default_mod->modules;
179         } else {
180                 return NULL;
181         }
182 }
183
184 static int new_partition_from_dn(struct ldb_context *ldb, struct partition_private_data *data, 
185                                  TALLOC_CTX *mem_ctx, 
186                                  struct ldb_dn *dn, const char *filename_base,
187                                  struct dsdb_partition **partition) {
188         const char *backend_url;
189         struct dsdb_control_current_partition *ctrl;
190         struct ldb_module *backend_module;
191         const char **modules;
192         int ret;
193
194         (*partition) = talloc(mem_ctx, struct dsdb_partition);
195         if (!*partition) {
196                 return LDB_ERR_OPERATIONS_ERROR;
197         }
198
199         (*partition)->ctrl = ctrl = talloc((*partition), struct dsdb_control_current_partition);
200         if (!ctrl) {
201                 talloc_free(*partition);
202                 ldb_oom(ldb);
203                 return LDB_ERR_OPERATIONS_ERROR;
204         }
205
206         /* See if an LDAP backend has been specified */
207         if (data->ldapBackend) {
208                 backend_url = data->ldapBackend;
209         } else {
210
211                 /* the backend LDB is the DN (base64 encoded if not 'plain') followed by .ldb */
212                 const char *p;
213                 char *backend_path;
214                 char *base64_dn = NULL;
215                 for (p = filename_base; *p; p++) {
216                         /* We have such a strict check because I don't want shell metacharacters in the file name, nor ../ */
217                         if (!(isalnum(*p) || *p == ' ' || *p == '=' || *p == ',')) {
218                                 break;
219                         }
220                 }
221                 if (*p) {
222                         filename_base = base64_dn = ldb_base64_encode(data, filename_base, strlen(filename_base));
223                 }
224                 
225                 backend_path = samdb_relative_path(ldb, 
226                                                    *partition, 
227                                                    filename_base);
228                 if (base64_dn) {
229                         talloc_free(base64_dn);
230                 }
231                 if (!backend_path) {
232                         ldb_asprintf_errstring(ldb, 
233                                                "partition_init: unable to determine an relative path for partition: %s", filename_base);
234                         talloc_free(*partition);
235                         return LDB_ERR_OPERATIONS_ERROR;                
236                 }
237                 backend_url = talloc_asprintf(*partition, "tdb://%s.ldb", 
238                                               backend_path); 
239                 talloc_free(backend_path);
240                 if (!backend_url) {
241                         ldb_oom(ldb);
242                         talloc_free(*partition);
243                         return LDB_ERR_OPERATIONS_ERROR;                
244                 }
245         }
246
247         (*partition)->backend_url = backend_url;
248         ctrl->version = DSDB_CONTROL_CURRENT_PARTITION_VERSION;
249         ctrl->dn = talloc_steal(ctrl, dn);
250         
251         ret = ldb_connect_backend(ldb, backend_url, NULL, &backend_module);
252         if (ret != LDB_SUCCESS) {
253                 return ret;
254         }
255         talloc_steal((*partition), backend_module);
256
257         modules = find_modules_for_dn(data, dn);
258
259         if (!modules) {
260                 DEBUG(0, ("Unable to load partition modules for new DN %s, perhaps you need to reprovision?  See partition-upgrade.txt for instructions\n", ldb_dn_get_linearized(dn)));
261                 talloc_free(*partition);
262                 return LDB_ERR_CONSTRAINT_VIOLATION;
263         }
264         ret = ldb_load_modules_list(ldb, modules, backend_module, &(*partition)->module);
265         if (ret != LDB_SUCCESS) {
266                 ldb_asprintf_errstring(ldb, 
267                                        "partition_init: "
268                                        "loading backend for %s failed: %s", 
269                                        ldb_dn_get_linearized(dn), ldb_errstring(ldb));
270                 talloc_free(*partition);
271                 return ret;
272         }
273         ret = ldb_init_module_chain(ldb, (*partition)->module);
274         if (ret != LDB_SUCCESS) {
275                 ldb_asprintf_errstring(ldb,
276                                        "partition_init: "
277                                        "initialising backend for %s failed: %s", 
278                                        ldb_dn_get_linearized(dn), ldb_errstring(ldb));
279                 talloc_free(*partition);
280                 return ret;
281         }
282
283         talloc_steal((*partition), (*partition)->module);
284
285         return ret;
286 }
287
288 /* Tell the rootDSE about the new partition */
289 static int partition_register(struct ldb_context *ldb, struct dsdb_control_current_partition *ctrl) 
290 {
291         struct ldb_request *req;
292         int ret;
293
294         req = talloc_zero(NULL, struct ldb_request);
295         if (req == NULL) {
296                 ldb_oom(ldb);
297                 return LDB_ERR_OPERATIONS_ERROR;
298         }
299                 
300         req->operation = LDB_REQ_REGISTER_PARTITION;
301         req->op.reg_partition.dn = ctrl->dn;
302         req->callback = ldb_op_default_callback;
303
304         ldb_set_timeout(ldb, req, 0);
305         
306         req->handle = ldb_handle_new(req, ldb);
307         if (req->handle == NULL) {
308                 talloc_free(req);
309                 return LDB_ERR_OPERATIONS_ERROR;
310         }
311         
312         ret = ldb_request(ldb, req);
313         if (ret == LDB_SUCCESS) {
314                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
315         }
316         if (ret != LDB_SUCCESS) {
317                 ldb_debug(ldb, LDB_DEBUG_ERROR, "partition: Unable to register partition with rootdse!\n");
318                 talloc_free(req);
319                 return LDB_ERR_OTHER;
320         }
321         talloc_free(req);
322
323         return LDB_SUCCESS;
324 }
325
326 /* Add a newly found partition to the global data */
327 static int add_partition_to_data(struct ldb_context *ldb, struct partition_private_data *data,
328                                  struct dsdb_partition *partition)
329 {
330         int i, ret;
331         /* Count the partitions */
332         for (i=0; data->partitions && data->partitions[i]; i++) { /* noop */};
333         
334         /* Add partition to list of partitions */
335         data->partitions = talloc_realloc(data, data->partitions, struct dsdb_partition *, i + 2);
336         if (!data->partitions) {
337                 ldb_oom(ldb);
338                 return LDB_ERR_OPERATIONS_ERROR;
339         }
340         data->partitions[i] = talloc_steal(data->partitions, partition);
341         data->partitions[i+1] = NULL;
342         
343         /* Sort again (should use binary insert) */
344         qsort(data->partitions, i+1,
345               sizeof(*data->partitions), partition_sort_compare);
346         
347         ret = partition_register(ldb, partition->ctrl);
348         if (ret != LDB_SUCCESS) {
349                 return ret;
350         }
351         return LDB_SUCCESS;
352 }
353
354 int partition_reload_if_required(struct ldb_module *module, 
355                                  struct partition_private_data *data)
356         
357 {
358         uint64_t seq;
359         int ret, i;
360         struct ldb_context *ldb = ldb_module_get_ctx(module);
361         struct ldb_message *msg;
362         struct ldb_message_element *partition_attributes;
363         TALLOC_CTX *mem_ctx = talloc_new(data);
364         if (!data) {
365                 /* Not initilised yet */
366                 return LDB_SUCCESS;
367         }
368         if (!mem_ctx) {
369                 ldb_oom(ldb);
370                 return LDB_ERR_OPERATIONS_ERROR;
371         }
372         ret = partition_primary_sequence_number(module, mem_ctx, LDB_SEQ_HIGHEST_SEQ, &seq);
373         if (ret != LDB_SUCCESS) {
374                 talloc_free(mem_ctx);
375                 return ret;
376         }
377         if (seq == data->metadata_seq) {
378                 talloc_free(mem_ctx);
379                 return LDB_SUCCESS;
380         }
381
382         ret = partition_reload_metadata(module, data, mem_ctx, &msg);
383         if (ret != LDB_SUCCESS) {
384                 talloc_free(mem_ctx);
385                 return ret;
386         }
387
388         data->metadata_seq = seq;
389
390         partition_attributes = ldb_msg_find_element(msg, "partition");
391
392         for (i=0; partition_attributes && i < partition_attributes->num_values; i++) {
393                 int j;
394                 bool new_partition = true;
395                 const char *filename_base = NULL;
396                 DATA_BLOB dn_blob;
397                 struct ldb_dn *dn;
398                 struct dsdb_partition *partition;
399                 struct ldb_module tmp_module;
400                 struct ldb_result *dn_res;
401                 const char *no_attrs[] = { NULL };
402
403                 for (j=0; data->partitions && data->partitions[j]; j++) {
404                         DATA_BLOB casefold = data_blob_string_const(ldb_dn_get_casefold(data->partitions[j]->ctrl->dn));
405                         if (data_blob_cmp(&casefold, &partition_attributes->values[i]) == 0) {
406                                 new_partition = false;
407                                 break;
408                         }
409                 }
410                 if (new_partition == false) {
411                         continue;
412                 }
413
414                 dn_blob = partition_attributes->values[i];
415                 
416                 if (dn_blob.length > 4 && 
417                     (strncmp((const char *)&dn_blob.data[dn_blob.length-4], ".ldb", 4) == 0)) {
418
419                         /* Look for DN:filename.ldb */
420                         char *p = strchr((const char *)dn_blob.data, ':');
421                         if (!p) {
422                                 ldb_asprintf_errstring(ldb, 
423                                                        "partition_init: invalid DN in attempting to parse old-style partition record: %s", (const char *)dn_blob.data);
424                                 talloc_free(mem_ctx);
425                                 return LDB_ERR_CONSTRAINT_VIOLATION;
426                         }
427                         filename_base = p+1;
428                         
429                         /* Trim off the .ldb */
430                         dn_blob.data[dn_blob.length-4] = '\0';
431                         
432                         /* Now trim off the filename */
433                         dn_blob.length = ((uint8_t *)p - dn_blob.data);
434                 }
435
436                 dn = ldb_dn_from_ldb_val(mem_ctx, ldb, &dn_blob);
437                 if (!dn) {
438                         ldb_asprintf_errstring(ldb, 
439                                                "partition_init: invalid DN in partition record: %s", (const char *)dn_blob.data);
440                         talloc_free(mem_ctx);
441                         return LDB_ERR_CONSTRAINT_VIOLATION;
442                 }
443                 
444                 if (!filename_base) {
445                         filename_base = ldb_dn_get_linearized(dn);
446                 }
447                         
448                 /* We call ldb_dn_get_linearized() because the DN in
449                  * partition_attributes is already casefolded
450                  * correctly.  We don't want to mess that up as the
451                  * schema isn't loaded yet */
452                 ret = new_partition_from_dn(ldb, data, data->partitions, dn, 
453                                             filename_base,
454                                             &partition);
455                 if (ret != LDB_SUCCESS) {
456                         talloc_free(mem_ctx);
457                         return ret;
458                 }
459
460                 /* Hack to be able to re-use dsdb_module_search_dn, which calls ldb_next_request(), which needs ->next filled out */
461                 tmp_module = *partition->module;
462                 tmp_module.next = partition->module;
463                 
464                 /* Get the 'correct' case of the partition DNs from the database */
465                 ret = dsdb_module_search_dn(&tmp_module, data, &dn_res, 
466                                             dn, no_attrs);
467                 if (ret == LDB_SUCCESS) {
468                         talloc_free(partition->ctrl->dn);
469                         partition->ctrl->dn = talloc_steal(partition->ctrl, dn_res->msgs[0]->dn);
470                         talloc_free(dn_res);
471                 } else if (ret != LDB_ERR_NO_SUCH_OBJECT) {
472                         ldb_asprintf_errstring(ldb,
473                                                "Failed to search for partition base %s in new partition at %s: %s", 
474                                                ldb_dn_get_linearized(dn), 
475                                                partition->backend_url, 
476                                                ldb_errstring(ldb));
477                         talloc_free(mem_ctx);
478                         return ret;
479                 }
480
481                 ret = add_partition_to_data(ldb, data, partition);
482                 if (ret != LDB_SUCCESS) {
483                         talloc_free(mem_ctx);
484                         return ret;
485                 }
486         }
487
488         talloc_free(mem_ctx);
489         return LDB_SUCCESS;
490 }
491
492 /* Copy the metadata (@OPTIONS etc) for the new partition into the partition */
493
494 static int new_partition_set_replicated_metadata(struct ldb_context *ldb, 
495                                                  struct ldb_module *module, struct ldb_request *last_req, 
496                                                  struct partition_private_data *data, 
497                                                  struct dsdb_partition *partition)
498 {
499         int i, ret;
500         /* for each replicate, copy from main partition.  If we get an error, we report it up the chain */
501         for (i=0; data->replicate && data->replicate[i]; i++) {
502                 struct ldb_result *replicate_res;
503                 struct ldb_request *add_req;
504                 ret = dsdb_module_search_dn(module, last_req, &replicate_res, 
505                                             data->replicate[i],
506                                             NULL);
507                 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
508                         continue;
509                 }
510                 if (ret != LDB_SUCCESS) {
511                         ldb_asprintf_errstring(ldb,
512                                                "Failed to search for %s from " DSDB_PARTITION_DN 
513                                                " replicateEntries for new partition at %s on %s: %s", 
514                                                ldb_dn_get_linearized(data->replicate[i]), 
515                                                partition->backend_url,
516                                                ldb_dn_get_linearized(partition->ctrl->dn), 
517                                                ldb_errstring(ldb));
518                         return ret;
519                 }
520
521                 /* Build add request */
522                 ret = ldb_build_add_req(&add_req, ldb, replicate_res, 
523                                         replicate_res->msgs[0], NULL, NULL, 
524                                         ldb_op_default_callback, last_req);
525                 last_req = add_req;
526                 if (ret != LDB_SUCCESS) {
527                         /* return directly, this is a very unlikely error */
528                         return ret;
529                 }
530                 /* do request */
531                 ret = partition_request(partition->module, add_req);
532                 /* wait */
533                 if (ret == LDB_SUCCESS) {
534                         ret = ldb_wait(add_req->handle, LDB_WAIT_ALL);
535                 }
536                 
537                 switch (ret) {
538                 case LDB_SUCCESS:
539                         break;
540
541                 case LDB_ERR_ENTRY_ALREADY_EXISTS:
542                         /* Handle this case specially - if the
543                          * metadata already exists, replace it */
544                 {
545                         struct ldb_request *del_req;
546                         
547                         /* Don't leave a confusing string in the ldb_errstring() */
548                         ldb_reset_err_string(ldb);
549                         /* Build del request */
550                         ret = ldb_build_del_req(&del_req, ldb, replicate_res, replicate_res->msgs[0]->dn, NULL, NULL, 
551                                                 ldb_op_default_callback, last_req);
552                         last_req = del_req;
553                         if (ret != LDB_SUCCESS) {
554                                 /* return directly, this is a very unlikely error */
555                                 return ret;
556                         }
557                         /* do request */
558                         ret = partition_request(partition->module, del_req);
559                         
560                         /* wait */
561                         if (ret == LDB_SUCCESS) {
562                                 ret = ldb_wait(del_req->handle, LDB_WAIT_ALL);
563                         }
564                         if (ret != LDB_SUCCESS) {
565                                 ldb_asprintf_errstring(ldb,
566                                                        "Failed to delete  (for re-add) %s from " DSDB_PARTITION_DN 
567                                                        " replicateEntries in new partition at %s on %s: %s", 
568                                                        ldb_dn_get_linearized(data->replicate[i]), 
569                                                        partition->backend_url,
570                                                        ldb_dn_get_linearized(partition->ctrl->dn), 
571                                                        ldb_errstring(ldb));
572                                 return ret;
573                         }
574                         
575                         /* Build add request */
576                         ret = ldb_build_add_req(&add_req, ldb, replicate_res, replicate_res->msgs[0], NULL, NULL, 
577                                                 ldb_op_default_callback, last_req);
578                         last_req = add_req;
579                         if (ret != LDB_SUCCESS) {
580                                 /* return directly, this is a very unlikely error */
581                                 return ret;
582                         }
583                         
584                         /* do the add again */
585                         ret = partition_request(partition->module, add_req);
586                         
587                         /* wait */
588                         if (ret == LDB_SUCCESS) {
589                                 ret = ldb_wait(add_req->handle, LDB_WAIT_ALL);
590                         }
591
592                         if (ret != LDB_SUCCESS) {
593                                 ldb_asprintf_errstring(ldb,
594                                                        "Failed to add (after delete) %s from " DSDB_PARTITION_DN 
595                                                        " replicateEntries to new partition at %s on %s: %s", 
596                                                        ldb_dn_get_linearized(data->replicate[i]), 
597                                                        partition->backend_url,
598                                                        ldb_dn_get_linearized(partition->ctrl->dn), 
599                                                        ldb_errstring(ldb));
600                                 return ret;
601                         }
602                         break;
603                 }
604                 default: 
605                 {
606                         ldb_asprintf_errstring(ldb,
607                                                "Failed to add %s from " DSDB_PARTITION_DN 
608                                                " replicateEntries to new partition at %s on %s: %s", 
609                                                ldb_dn_get_linearized(data->replicate[i]), 
610                                                partition->backend_url,
611                                                ldb_dn_get_linearized(partition->ctrl->dn), 
612                                                ldb_errstring(ldb));
613                         return ret;
614                 }
615                 }
616
617                 /* And around again, for the next thing we must merge */
618         }
619         return LDB_SUCCESS;
620 }
621
622 /* Extended operation to create a new partition, called when
623  * 'new_partition' detects that one is being added based on it's
624  * instanceType */
625 int partition_create(struct ldb_module *module, struct ldb_request *req)
626 {
627         int i, ret;
628         struct ldb_context *ldb = ldb_module_get_ctx(module);
629         struct ldb_request *mod_req, *last_req = req;
630         struct ldb_message *mod_msg;
631         struct partition_private_data *data;
632         struct dsdb_partition *partition = NULL;
633         const char *casefold_dn;
634         bool new_partition = false;
635
636         /* Check if this is already a partition */
637
638         struct dsdb_create_partition_exop *ex_op = talloc_get_type(req->op.extended.data, struct dsdb_create_partition_exop);
639         struct ldb_dn *dn = ex_op->new_dn;
640
641         data = talloc_get_type(module->private_data, struct partition_private_data);
642         if (!data) {
643                 /* We are not going to create a partition before we are even set up */
644                 return LDB_ERR_UNWILLING_TO_PERFORM;
645         }
646
647         for (i=0; data->partitions && data->partitions[i]; i++) {
648                 if (ldb_dn_compare(data->partitions[i]->ctrl->dn, dn) == 0) {
649                         partition = data->partitions[i];
650                 }
651         }
652
653         if (!partition) {
654                 new_partition = true;
655                 mod_msg = ldb_msg_new(req);
656                 if (!mod_msg) {
657                         ldb_oom(ldb);
658                         return LDB_ERR_OPERATIONS_ERROR;
659                 }
660                 
661                 mod_msg->dn = ldb_dn_new(mod_msg, ldb, DSDB_PARTITION_DN);
662                 ret = ldb_msg_add_empty(mod_msg, DSDB_PARTITION_ATTR, LDB_FLAG_MOD_ADD, NULL);
663                 if (ret != LDB_SUCCESS) {
664                         return ret;
665                 }
666                 
667                 casefold_dn = ldb_dn_get_casefold(dn);
668                 
669                 ret = ldb_msg_add_string(mod_msg, DSDB_PARTITION_ATTR, casefold_dn);
670                 if (ret != LDB_SUCCESS) {
671                         return ret;
672                 }
673                 
674                 /* Perform modify on @PARTITION record */
675                 ret = ldb_build_mod_req(&mod_req, ldb, req, mod_msg, NULL, NULL, 
676                                         ldb_op_default_callback, req);
677                 
678                 if (ret != LDB_SUCCESS) {
679                         return ret;
680                 }
681                 
682                 last_req = mod_req;
683
684                 ret = partition_request(module, mod_req);
685                 if (ret == LDB_SUCCESS) {
686                         ret = ldb_wait(mod_req->handle, LDB_WAIT_ALL);
687                 }
688                 
689                 if (ret != LDB_SUCCESS) {
690                         return ret;
691                 }
692                 
693                 /* Make a partition structure for this new partition, so we can copy in the template structure */ 
694                 ret = new_partition_from_dn(ldb, data, req, ldb_dn_copy(req, dn), casefold_dn, &partition);
695                 if (ret != LDB_SUCCESS) {
696                         return ret;
697                 }
698                 
699                 /* Start a transaction on the DB (as it won't be in one being brand new) */
700                 {
701                         struct ldb_module *next = partition->module;
702                         PARTITION_FIND_OP(next, start_transaction);
703                         
704                         ret = next->ops->start_transaction(next);
705                         if (ret != LDB_SUCCESS) {
706                                 return ret;
707                         }
708                 }
709         }
710         
711         ret = new_partition_set_replicated_metadata(ldb, module, last_req, data, partition);
712         if (ret != LDB_SUCCESS) {
713                 return ret;
714         }
715         
716         if (new_partition) {
717                 ret = add_partition_to_data(ldb, data, partition);
718                 if (ret != LDB_SUCCESS) {
719                         return ret;
720                 }
721         }
722
723         /* send request done */
724         return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
725 }
726
727
728 int partition_init(struct ldb_module *module)
729 {
730         int ret;
731         TALLOC_CTX *mem_ctx = talloc_new(module);
732
733         struct partition_private_data *data;
734
735         if (!mem_ctx) {
736                 return LDB_ERR_OPERATIONS_ERROR;
737         }
738
739         data = talloc_zero(mem_ctx, struct partition_private_data);
740         if (data == NULL) {
741                 return LDB_ERR_OPERATIONS_ERROR;
742         }
743
744         /* This loads the partitions */
745         ret = partition_reload_if_required(module, data);
746         if (ret != LDB_SUCCESS) {
747                 return ret;
748         }
749
750         module->private_data = talloc_steal(module, data);
751         talloc_free(mem_ctx);
752
753         ret = ldb_mod_register_control(module, LDB_CONTROL_DOMAIN_SCOPE_OID);
754         if (ret != LDB_SUCCESS) {
755                 ldb_debug(ldb_module_get_ctx(module), LDB_DEBUG_ERROR,
756                         "partition: Unable to register control with rootdse!\n");
757                 return LDB_ERR_OPERATIONS_ERROR;
758         }
759
760         ret = ldb_mod_register_control(module, LDB_CONTROL_SEARCH_OPTIONS_OID);
761         if (ret != LDB_SUCCESS) {
762                 ldb_debug(ldb_module_get_ctx(module), LDB_DEBUG_ERROR,
763                         "partition: Unable to register control with rootdse!\n");
764                 return LDB_ERR_OPERATIONS_ERROR;
765         }
766
767         return ldb_next_init(module);
768 }