df2cd9897a56c337505c46c9d955e67c869ad665
[samba.git] / source4 / dsdb / samdb / ldb_modules / samba_dsdb.c
1 /*
2    Samba4 module loading module
3
4    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /*
21  *  Name: ldb
22  *
23  *  Component: Samba4 module loading module
24  *
25  *  Description: Implement a single 'module' in the ldb database,
26  *  which loads the remaining modules based on 'choice of configuration' attributes
27  *
28  *  This is to avoid forcing a reprovision of the ldb databases when we change the internal structure of the code
29  *
30  *  Author: Andrew Bartlett
31  */
32
33 #include "includes.h"
34 #include "lib/ldb/include/ldb.h"
35 #include "lib/ldb/include/ldb_errors.h"
36 #include "lib/ldb/include/ldb_module.h"
37 #include "dsdb/samdb/ldb_modules/util.h"
38 #include "dsdb/samdb/samdb.h"
39 #include "librpc/ndr/libndr.h"
40
41 static int read_at_rootdse_record(struct ldb_context *ldb, struct ldb_module *module, TALLOC_CTX *mem_ctx,
42                                   struct ldb_message **msg)
43 {
44         int ret;
45         static const char *rootdse_attrs[] = { "defaultNamingContext", "configurationNamingContext", "schemaNamingContext", NULL };
46         struct ldb_result *rootdse_res;
47         struct ldb_dn *rootdse_dn;
48         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
49         if (!tmp_ctx) {
50                 return ldb_oom(ldb);
51         }
52
53         rootdse_dn = ldb_dn_new(tmp_ctx, ldb, "@ROOTDSE");
54         if (!rootdse_dn) {
55                 talloc_free(tmp_ctx);
56                 return ldb_oom(ldb);
57         }
58
59         ret = dsdb_module_search_dn(module, tmp_ctx, &rootdse_res, rootdse_dn,
60                                     rootdse_attrs, DSDB_FLAG_NEXT_MODULE);
61         if (ret != LDB_SUCCESS) {
62                 talloc_free(tmp_ctx);
63                 return ret;
64         }
65
66         talloc_steal(mem_ctx, rootdse_res->msgs);
67         *msg = rootdse_res->msgs[0];
68
69         talloc_free(tmp_ctx);
70
71         return ret;
72 }
73
74 static int prepare_modules_line(struct ldb_context *ldb,
75                                 TALLOC_CTX *mem_ctx,
76                                 const struct ldb_message *rootdse_msg,
77                                 struct ldb_message *msg, const char *backend_attr,
78                                 const char *backend_mod, const char **backend_mod_list)
79 {
80         int ret;
81         const char **backend_full_list;
82         const char *backend_dn;
83         char *mod_list_string;
84         char *full_string;
85         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
86         if (!tmp_ctx) {
87                 return ldb_oom(ldb);
88         }
89
90         if (backend_attr) {
91                 backend_dn = ldb_msg_find_attr_as_string(rootdse_msg, backend_attr, NULL);
92                 if (!backend_dn) {
93                         ldb_asprintf_errstring(ldb,
94                                                "samba_dsdb_init: "
95                                                "unable to read %s from %s:%s",
96                                                backend_attr, ldb_dn_get_linearized(rootdse_msg->dn),
97                                                ldb_errstring(ldb));
98                         return LDB_ERR_CONSTRAINT_VIOLATION;
99                 }
100         } else {
101                 backend_dn = "*";
102         }
103
104         if (backend_mod) {
105                 backend_full_list = (const char **)str_list_make_single(tmp_ctx, backend_mod);
106         } else {
107                 backend_full_list = (const char **)str_list_make_empty(tmp_ctx);
108         }
109         if (!backend_full_list) {
110                 talloc_free(tmp_ctx);
111                 return ldb_oom(ldb);
112         }
113
114         backend_full_list = str_list_append_const(backend_full_list, backend_mod_list);
115         if (!backend_full_list) {
116                 talloc_free(tmp_ctx);
117                 return ldb_oom(ldb);
118         }
119
120         mod_list_string = str_list_join(tmp_ctx, backend_full_list, ',');
121         if (!mod_list_string) {
122                 talloc_free(tmp_ctx);
123                 return ldb_oom(ldb);
124         }
125
126         full_string = talloc_asprintf(tmp_ctx, "%s:%s", backend_dn, mod_list_string);
127         ret = ldb_msg_add_steal_string(msg, "modules", full_string);
128         talloc_free(tmp_ctx);
129         return ret;
130 }
131
132
133
134 static int samba_dsdb_init(struct ldb_module *module)
135 {
136         struct ldb_context *ldb = ldb_module_get_ctx(module);
137         int ret, len, i;
138         TALLOC_CTX *tmp_ctx = talloc_new(module);
139         struct ldb_result *res;
140         struct ldb_message *rootdse_msg, *partition_msg;
141         struct ldb_dn *samba_dsdb_dn;
142         struct ldb_module *backend_module, *module_chain;
143         const char **final_module_list, **reverse_module_list;
144         /*
145           Add modules to the list to activate them by default
146           beware often order is important
147
148           Some Known ordering constraints:
149           - rootdse must be first, as it makes redirects from "" -> cn=rootdse
150           - extended_dn_in must be before objectclass.c, as it resolves the DN
151           - objectclass must be before password_hash and samldb since these LDB
152             modules require the expanded "objectClass" list
153           - objectclass_attrs must be behind operational in order to see all
154             attributes (the operational module protects and therefore
155             suppresses per default some important ones)
156           - partition must be last
157           - each partition has its own module list then
158
159           The list is presented here as a set of declarations to show the
160           stack visually - the code below then handles the creation of the list
161           based on the parameters loaded from the database.
162         */
163         static const char *modules_list[] = {"resolve_oids",
164                                              "rootdse",
165                                              "lazy_commit",
166                                              "paged_results",
167                                              "ranged_results",
168                                              "anr",
169                                              "server_sort",
170                                              "asq",
171                                              "extended_dn_store",
172                                              "extended_dn_in",
173                                              "objectclass",
174                                              "descriptor",
175                                              "acl",
176                                              "aclread",
177                                              "samldb",
178                                              "password_hash",
179                                              "operational",
180                                              "schema_load",
181                                              "instancetype",
182                                              "objectclass_attrs",
183                                              NULL };
184
185         const char **link_modules;
186         static const char *fedora_ds_modules[] = {
187                 "rdn_name", NULL };
188         static const char *openldap_modules[] = {
189                 NULL };
190         static const char *tdb_modules_list[] = {
191                 "rdn_name",
192                 "subtree_delete",
193                 "repl_meta_data",
194                 "subtree_rename",
195                 "linked_attributes",
196                 NULL};
197
198         const char *extended_dn_module;
199         const char *extended_dn_module_ldb = "extended_dn_out_ldb";
200         const char *extended_dn_module_fds = "extended_dn_out_fds";
201         const char *extended_dn_module_openldap = "extended_dn_out_openldap";
202
203         static const char *modules_list2[] = {"show_deleted",
204                                               "new_partition",
205                                               "partition",
206                                               NULL };
207
208         const char **backend_modules;
209         static const char *fedora_ds_backend_modules[] = {
210                 "nsuniqueid", "paged_searches", "simple_dn", NULL };
211         static const char *openldap_backend_modules[] = {
212                 "entryuuid", "paged_searches", "simple_dn", NULL };
213
214         static const char *samba_dsdb_attrs[] = { "backendType", "serverRole", NULL };
215         const char *backendType, *serverRole;
216
217         if (!tmp_ctx) {
218                 return ldb_oom(ldb);
219         }
220
221         ret = ldb_register_samba_handlers(ldb);
222         if (ret != LDB_SUCCESS) {
223                 talloc_free(tmp_ctx);
224                 return ret;
225         }
226
227         samba_dsdb_dn = ldb_dn_new(tmp_ctx, ldb, "@SAMBA_DSDB");
228         if (!samba_dsdb_dn) {
229                 talloc_free(tmp_ctx);
230                 return ldb_oom(ldb);
231         }
232
233 #define CHECK_LDB_RET(check_ret)                                \
234         do {                                                    \
235                 if (check_ret != LDB_SUCCESS) {                 \
236                         talloc_free(tmp_ctx);                   \
237                         return check_ret;                       \
238                 }                                               \
239         } while (0)
240
241         ret = dsdb_module_search_dn(module, tmp_ctx, &res, samba_dsdb_dn,
242                                     samba_dsdb_attrs, DSDB_FLAG_NEXT_MODULE);
243         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
244                 backendType = "ldb";
245                 serverRole = "domain controller";
246         } else if (ret == LDB_SUCCESS) {
247                 backendType = ldb_msg_find_attr_as_string(res->msgs[0], "backendType", "ldb");
248                 serverRole = ldb_msg_find_attr_as_string(res->msgs[0], "serverRole", "domain controller");
249         } else {
250                 talloc_free(tmp_ctx);
251                 return ret;
252         }
253
254         backend_modules = NULL;
255         if (strcasecmp(backendType, "ldb") == 0) {
256                 extended_dn_module = extended_dn_module_ldb;
257                 link_modules = tdb_modules_list;
258         } else {
259                 if (strcasecmp(backendType, "fedora-ds") == 0) {
260                         link_modules = fedora_ds_modules;
261                         backend_modules = fedora_ds_backend_modules;
262                         extended_dn_module = extended_dn_module_fds;
263                 } else if (strcasecmp(backendType, "openldap") == 0) {
264                         link_modules = openldap_modules;
265                         backend_modules = openldap_backend_modules;
266                         extended_dn_module = extended_dn_module_openldap;
267                 } else {
268                         return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "invalid backend type");
269                 }
270                 ret = ldb_set_opaque(ldb, "readOnlySchema", (void*)1);
271                 if (ret != LDB_SUCCESS) {
272                         ldb_set_errstring(ldb, "Failed to set readOnlySchema opaque");
273                 }
274         }
275
276 #define CHECK_MODULE_LIST \
277         do {                                                    \
278                 if (!final_module_list) {                       \
279                         talloc_free(tmp_ctx);                   \
280                         return ldb_oom(ldb);                    \
281                 }                                               \
282         } while (0)
283
284         final_module_list = str_list_copy_const(tmp_ctx, modules_list);
285         CHECK_MODULE_LIST;
286
287         final_module_list = str_list_append_const(final_module_list, link_modules);
288         CHECK_MODULE_LIST;
289
290         final_module_list = str_list_add_const(final_module_list, extended_dn_module);
291         CHECK_MODULE_LIST;
292
293         final_module_list = str_list_append_const(final_module_list, modules_list2);
294         CHECK_MODULE_LIST;
295
296
297         ret = read_at_rootdse_record(ldb, module, tmp_ctx, &rootdse_msg);
298         CHECK_LDB_RET(ret);
299
300         partition_msg = ldb_msg_new(tmp_ctx);
301         partition_msg->dn = ldb_dn_new(partition_msg, ldb, "@" DSDB_OPAQUE_PARTITION_MODULE_MSG_OPAQUE_NAME);
302
303         ret = prepare_modules_line(ldb, tmp_ctx,
304                                    rootdse_msg,
305                                    partition_msg, "defaultNamingContext",
306                                    "pdc_fsmo", backend_modules);
307         CHECK_LDB_RET(ret);
308
309         ret = prepare_modules_line(ldb, tmp_ctx,
310                                    rootdse_msg,
311                                    partition_msg, "configurationNamingContext",
312                                    "naming_fsmo", backend_modules);
313         CHECK_LDB_RET(ret);
314
315         ret = prepare_modules_line(ldb, tmp_ctx,
316                                    rootdse_msg,
317                                    partition_msg, "schemaNamingContext",
318                                    "schema_data", backend_modules);
319         CHECK_LDB_RET(ret);
320
321         ret = prepare_modules_line(ldb, tmp_ctx,
322                                    rootdse_msg,
323                                    partition_msg, NULL,
324                                    NULL, backend_modules);
325         CHECK_LDB_RET(ret);
326
327         ret = ldb_set_opaque(ldb, DSDB_OPAQUE_PARTITION_MODULE_MSG_OPAQUE_NAME, partition_msg);
328         CHECK_LDB_RET(ret);
329
330         talloc_steal(ldb, partition_msg);
331
332         /* Now prepare the module chain.  Oddly, we must give it to ldb_load_modules_list in REVERSE */
333         for (len = 0; final_module_list[len]; len++) { /* noop */};
334
335         reverse_module_list = talloc_array(tmp_ctx, const char *, len+1);
336         if (!reverse_module_list) {
337                 talloc_free(tmp_ctx);
338                 return ldb_oom(ldb);
339         }
340         for (i=0; i < len; i++) {
341                 reverse_module_list[i] = final_module_list[(len - 1) - i];
342         }
343         reverse_module_list[i] = NULL;
344
345         /* The backend (at least until the partitions module
346          * reconfigures things) is the next module in the currently
347          * loaded chain */
348         backend_module = ldb_module_next(module);
349         ret = ldb_module_load_list(ldb, reverse_module_list, backend_module, &module_chain);
350         CHECK_LDB_RET(ret);
351
352         talloc_free(tmp_ctx);
353         /* Set this as the 'next' module, so that we effectivly append it to module chain */
354         ldb_module_set_next(module, module_chain);
355
356         return ldb_next_init(module);
357 }
358
359 static const struct ldb_module_ops ldb_samba_dsdb_module_ops = {
360         .name              = "samba_dsdb",
361         .init_context      = samba_dsdb_init,
362 };
363
364 int ldb_samba_dsdb_module_init(const char *version)
365 {
366         LDB_MODULE_CHECK_VERSION(version);
367         return ldb_register_module(&ldb_samba_dsdb_module_ops);
368 }