086b11fb547f12d65d3159bc6786c04a390b7f2e
[obnox/samba/samba-obnox.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 <ldb.h>
35 #include <ldb_errors.h>
36 #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 #include "auth/credentials/credentials.h"
41 #include "param/secrets.h"
42 #include "lib/ldb-samba/ldb_wrap.h"
43
44 static int read_at_rootdse_record(struct ldb_context *ldb, struct ldb_module *module, TALLOC_CTX *mem_ctx,
45                                   struct ldb_message **msg, struct ldb_request *parent)
46 {
47         int ret;
48         static const char *rootdse_attrs[] = { "defaultNamingContext", "configurationNamingContext", "schemaNamingContext", NULL };
49         struct ldb_result *rootdse_res;
50         struct ldb_dn *rootdse_dn;
51         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
52         if (!tmp_ctx) {
53                 return ldb_oom(ldb);
54         }
55
56         rootdse_dn = ldb_dn_new(tmp_ctx, ldb, "@ROOTDSE");
57         if (!rootdse_dn) {
58                 talloc_free(tmp_ctx);
59                 return ldb_oom(ldb);
60         }
61
62         ret = dsdb_module_search_dn(module, tmp_ctx, &rootdse_res, rootdse_dn,
63                                     rootdse_attrs, DSDB_FLAG_NEXT_MODULE, parent);
64         if (ret != LDB_SUCCESS) {
65                 talloc_free(tmp_ctx);
66                 return ret;
67         }
68
69         talloc_steal(mem_ctx, rootdse_res->msgs);
70         *msg = rootdse_res->msgs[0];
71
72         talloc_free(tmp_ctx);
73
74         return ret;
75 }
76
77 static int prepare_modules_line(struct ldb_context *ldb,
78                                 TALLOC_CTX *mem_ctx,
79                                 const struct ldb_message *rootdse_msg,
80                                 struct ldb_message *msg, const char *backend_attr,
81                                 const char *backend_mod, const char **backend_mod_list)
82 {
83         int ret;
84         const char **backend_full_list;
85         const char *backend_dn;
86         char *mod_list_string;
87         char *full_string;
88         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
89         if (!tmp_ctx) {
90                 return ldb_oom(ldb);
91         }
92
93         if (backend_attr) {
94                 backend_dn = ldb_msg_find_attr_as_string(rootdse_msg, backend_attr, NULL);
95                 if (!backend_dn) {
96                         ldb_asprintf_errstring(ldb,
97                                                "samba_dsdb_init: "
98                                                "unable to read %s from %s:%s",
99                                                backend_attr, ldb_dn_get_linearized(rootdse_msg->dn),
100                                                ldb_errstring(ldb));
101                         return LDB_ERR_CONSTRAINT_VIOLATION;
102                 }
103         } else {
104                 backend_dn = "*";
105         }
106
107         if (backend_mod) {
108                 char **b = str_list_make_single(tmp_ctx, backend_mod);
109                 backend_full_list = discard_const_p(const char *, b);
110         } else {
111                 char **b = str_list_make_empty(tmp_ctx);
112                 backend_full_list = discard_const_p(const char *, b);
113         }
114         if (!backend_full_list) {
115                 talloc_free(tmp_ctx);
116                 return ldb_oom(ldb);
117         }
118
119         backend_full_list = str_list_append_const(backend_full_list, backend_mod_list);
120         if (!backend_full_list) {
121                 talloc_free(tmp_ctx);
122                 return ldb_oom(ldb);
123         }
124
125         mod_list_string = str_list_join(tmp_ctx, backend_full_list, ',');
126         if (!mod_list_string) {
127                 talloc_free(tmp_ctx);
128                 return ldb_oom(ldb);
129         }
130
131         full_string = talloc_asprintf(tmp_ctx, "%s:%s", backend_dn, mod_list_string);
132         ret = ldb_msg_add_steal_string(msg, "modules", full_string);
133         talloc_free(tmp_ctx);
134         return ret;
135 }
136
137 /*
138  * Force overwrite of the credentials with those
139  * specified in secrets.ldb, to connect across the
140  * ldapi socket to an LDAP backend
141  */
142
143 static int set_ldap_credentials(struct ldb_context *ldb, bool use_external)
144 {
145         const char *secrets_ldb_path, *sam_ldb_path;
146         char *private_dir, *p, *error_string;
147         struct ldb_context *secrets_ldb;
148         struct cli_credentials *cred;
149         struct loadparm_context *lp_ctx = ldb_get_opaque(ldb, "loadparm");
150         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
151
152         if (!tmp_ctx) {
153                 return ldb_oom(ldb);
154         }
155
156         cred = cli_credentials_init(ldb);
157         if (!cred) {
158                 talloc_free(tmp_ctx);
159                 return ldb_oom(ldb);
160         }
161         cli_credentials_set_anonymous(cred);
162         if (use_external) {
163                 cli_credentials_set_forced_sasl_mech(cred, "EXTERNAL");
164         } else {
165                 cli_credentials_set_forced_sasl_mech(cred, "DIGEST-MD5");
166
167                 /*
168                  * We don't want to use krb5 to talk to our samdb - recursion
169                  * here would be bad, and this account isn't in the KDC
170                  * anyway
171                  */
172                 cli_credentials_set_kerberos_state(cred, CRED_DONT_USE_KERBEROS);
173
174                 /*
175                  * Work out where *our* secrets.ldb is.  It must be in
176                  * the same directory as sam.ldb
177                  */
178                 sam_ldb_path = (const char *)ldb_get_opaque(ldb, "ldb_url");
179                 if (!sam_ldb_path) {
180                         talloc_free(tmp_ctx);
181                         return ldb_operr(ldb);
182                 }
183                 if (strncmp("tdb://", sam_ldb_path, 6) == 0) {
184                         sam_ldb_path += 6;
185                 }
186                 private_dir = talloc_strdup(tmp_ctx, sam_ldb_path);
187                 p = strrchr(private_dir, '/');
188                 if (p) {
189                         *p = '\0';
190                 } else {
191                         private_dir = talloc_strdup(tmp_ctx, ".");
192                 }
193
194                 secrets_ldb_path = talloc_asprintf(private_dir, "tdb://%s/secrets.ldb",
195                                                    private_dir);
196
197                 if (!secrets_ldb_path) {
198                         talloc_free(tmp_ctx);
199                         return ldb_oom(ldb);
200                 }
201
202                 /*
203                  * Now that we have found the location, connect to
204                  * secrets.ldb so we can read the SamDB Credentials
205                  * record
206                  */
207                 secrets_ldb = ldb_wrap_connect(tmp_ctx, NULL, lp_ctx, secrets_ldb_path,
208                                                NULL, NULL, 0);
209
210                 if (!NT_STATUS_IS_OK(cli_credentials_set_secrets(cred, NULL, secrets_ldb, NULL,
211                                                                  SECRETS_LDAP_FILTER, &error_string))) {
212                         ldb_asprintf_errstring(ldb, "Failed to read LDAP backend password from %s", secrets_ldb_path);
213                         talloc_free(tmp_ctx);
214                         return LDB_ERR_STRONG_AUTH_REQUIRED;
215                 }
216         }
217
218         /*
219          * Finally overwrite any supplied credentials with
220          * these ones, as only secrets.ldb contains the magic
221          * credentials to talk on the ldapi socket
222          */
223         if (ldb_set_opaque(ldb, "credentials", cred)) {
224                 talloc_free(tmp_ctx);
225                 return ldb_operr(ldb);
226         }
227         talloc_free(tmp_ctx);
228         return LDB_SUCCESS;
229 }
230
231 static int samba_dsdb_init(struct ldb_module *module)
232 {
233         struct ldb_context *ldb = ldb_module_get_ctx(module);
234         int ret, len, i;
235         TALLOC_CTX *tmp_ctx = talloc_new(module);
236         struct ldb_result *res;
237         struct ldb_message *rootdse_msg = NULL, *partition_msg;
238         struct ldb_dn *samba_dsdb_dn, *partition_dn;
239         struct ldb_module *backend_module, *module_chain;
240         const char **final_module_list, **reverse_module_list;
241         /*
242           Add modules to the list to activate them by default
243           beware often order is important
244
245           Some Known ordering constraints:
246           - rootdse must be first, as it makes redirects from "" -> cn=rootdse
247           - extended_dn_in must be before objectclass.c, as it resolves the DN
248           - objectclass must be before password_hash and samldb since these LDB
249             modules require the expanded "objectClass" list
250           - objectclass must be before descriptor and acl, as both assume that
251             objectClass values are sorted
252           - objectclass_attrs must be behind operational in order to see all
253             attributes (the operational module protects and therefore
254             suppresses per default some important ones)
255           - partition must be last
256           - each partition has its own module list then
257
258           The list is presented here as a set of declarations to show the
259           stack visually - the code below then handles the creation of the list
260           based on the parameters loaded from the database.
261         */
262         static const char *modules_list1[] = {"resolve_oids",
263                                              "rootdse",
264                                              "schema_load",
265                                              "lazy_commit",
266                                              "dirsync",
267                                              "paged_results",
268                                              "ranged_results",
269                                              "anr",
270                                              "server_sort",
271                                              "asq",
272                                              "extended_dn_store",
273                                              NULL };
274         /* extended_dn_in or extended_dn_in_openldap goes here */
275         static const char *modules_list1a[] = {"objectclass",
276                                              "descriptor",
277                                              "acl",
278                                              "aclread",
279                                              "samldb",
280                                              "password_hash",
281                                              "operational",
282                                              "instancetype",
283                                              "objectclass_attrs",
284                                              NULL };
285
286         const char **link_modules;
287         static const char *fedora_ds_modules[] = {
288                 "rdn_name", NULL };
289         static const char *openldap_modules[] = {
290                 NULL };
291         static const char *tdb_modules_list[] = {
292                 "rdn_name",
293                 "subtree_delete",
294                 "repl_meta_data",
295                 "subtree_rename",
296                 "linked_attributes",
297                 NULL};
298
299         const char *extended_dn_module;
300         const char *extended_dn_module_ldb = "extended_dn_out_ldb";
301         const char *extended_dn_module_fds = "extended_dn_out_fds";
302         const char *extended_dn_module_openldap = "extended_dn_out_openldap";
303         const char *extended_dn_in_module = "extended_dn_in";
304
305         static const char *modules_list2[] = {"show_deleted",
306                                               "new_partition",
307                                               "partition",
308                                               NULL };
309
310         const char **backend_modules;
311         static const char *fedora_ds_backend_modules[] = {
312                 "nsuniqueid", "paged_searches", "simple_dn", NULL };
313         static const char *openldap_backend_modules[] = {
314                 "entryuuid", "simple_dn", NULL };
315
316         static const char *samba_dsdb_attrs[] = { "backendType", NULL };
317         static const char *partition_attrs[] = { "ldapBackend", NULL };
318         const char *backendType, *backendUrl;
319         bool use_sasl_external = false;
320
321         if (!tmp_ctx) {
322                 return ldb_oom(ldb);
323         }
324
325         ret = ldb_register_samba_handlers(ldb);
326         if (ret != LDB_SUCCESS) {
327                 talloc_free(tmp_ctx);
328                 return ret;
329         }
330
331         samba_dsdb_dn = ldb_dn_new(tmp_ctx, ldb, "@SAMBA_DSDB");
332         if (!samba_dsdb_dn) {
333                 talloc_free(tmp_ctx);
334                 return ldb_oom(ldb);
335         }
336
337         partition_dn = ldb_dn_new(tmp_ctx, ldb, DSDB_PARTITION_DN);
338         if (!partition_dn) {
339                 talloc_free(tmp_ctx);
340                 return ldb_oom(ldb);
341         }
342
343 #define CHECK_LDB_RET(check_ret)                                \
344         do {                                                    \
345                 if (check_ret != LDB_SUCCESS) {                 \
346                         talloc_free(tmp_ctx);                   \
347                         return check_ret;                       \
348                 }                                               \
349         } while (0)
350
351         ret = dsdb_module_search_dn(module, tmp_ctx, &res, samba_dsdb_dn,
352                                     samba_dsdb_attrs, DSDB_FLAG_NEXT_MODULE, NULL);
353         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
354                 backendType = "ldb";
355         } else if (ret == LDB_SUCCESS) {
356                 backendType = ldb_msg_find_attr_as_string(res->msgs[0], "backendType", "ldb");
357         } else {
358                 talloc_free(tmp_ctx);
359                 return ret;
360         }
361
362         backend_modules = NULL;
363         if (strcasecmp(backendType, "ldb") == 0) {
364                 extended_dn_module = extended_dn_module_ldb;
365                 link_modules = tdb_modules_list;
366         } else {
367                 struct cli_credentials *cred;
368                 bool is_ldapi = false;
369
370                 ret = dsdb_module_search_dn(module, tmp_ctx, &res, partition_dn,
371                                             partition_attrs, DSDB_FLAG_NEXT_MODULE, NULL);
372                 if (ret == LDB_SUCCESS) {
373                         backendUrl = ldb_msg_find_attr_as_string(res->msgs[0], "ldapBackend", "ldapi://");
374                         if (!strncasecmp(backendUrl, "ldapi://", sizeof("ldapi://")-1)) {
375                                 is_ldapi = true;
376                         }
377                 } else if (ret != LDB_ERR_NO_SUCH_OBJECT) {
378                         talloc_free(tmp_ctx);
379                         return ret;
380                 }
381                 if (strcasecmp(backendType, "fedora-ds") == 0) {
382                         link_modules = fedora_ds_modules;
383                         backend_modules = fedora_ds_backend_modules;
384                         extended_dn_module = extended_dn_module_fds;
385                 } else if (strcasecmp(backendType, "openldap") == 0) {
386                         link_modules = openldap_modules;
387                         backend_modules = openldap_backend_modules;
388                         extended_dn_module = extended_dn_module_openldap;
389                         extended_dn_in_module = "extended_dn_in_openldap";
390                         if (is_ldapi) {
391                                 use_sasl_external = true;
392                         }
393                 } else {
394                         return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR, "invalid backend type");
395                 }
396                 ret = ldb_set_opaque(ldb, "readOnlySchema", (void*)1);
397                 if (ret != LDB_SUCCESS) {
398                         ldb_set_errstring(ldb, "Failed to set readOnlySchema opaque");
399                 }
400
401                 cred = ldb_get_opaque(ldb, "credentials");
402                 if (!cred || !cli_credentials_authentication_requested(cred)) {
403                         ret = set_ldap_credentials(ldb, use_sasl_external);
404                         if (ret != LDB_SUCCESS) {
405                                 return ret;
406                         }
407                 }
408         }
409
410 #define CHECK_MODULE_LIST \
411         do {                                                    \
412                 if (!final_module_list) {                       \
413                         talloc_free(tmp_ctx);                   \
414                         return ldb_oom(ldb);                    \
415                 }                                               \
416         } while (0)
417
418         final_module_list = str_list_copy_const(tmp_ctx, modules_list1);
419         CHECK_MODULE_LIST;
420
421         final_module_list = str_list_add_const(final_module_list, extended_dn_in_module);
422         CHECK_MODULE_LIST;
423
424         final_module_list = str_list_append_const(final_module_list, modules_list1a);
425         CHECK_MODULE_LIST;
426
427         final_module_list = str_list_append_const(final_module_list, link_modules);
428         CHECK_MODULE_LIST;
429
430         final_module_list = str_list_add_const(final_module_list, extended_dn_module);
431         CHECK_MODULE_LIST;
432
433         final_module_list = str_list_append_const(final_module_list, modules_list2);
434         CHECK_MODULE_LIST;
435
436
437         ret = read_at_rootdse_record(ldb, module, tmp_ctx, &rootdse_msg, NULL);
438         CHECK_LDB_RET(ret);
439
440         partition_msg = ldb_msg_new(tmp_ctx);
441         partition_msg->dn = ldb_dn_new(partition_msg, ldb, "@" DSDB_OPAQUE_PARTITION_MODULE_MSG_OPAQUE_NAME);
442
443         ret = prepare_modules_line(ldb, tmp_ctx,
444                                    rootdse_msg,
445                                    partition_msg, "schemaNamingContext",
446                                    "schema_data", backend_modules);
447         CHECK_LDB_RET(ret);
448
449         ret = prepare_modules_line(ldb, tmp_ctx,
450                                    rootdse_msg,
451                                    partition_msg, NULL,
452                                    NULL, backend_modules);
453         CHECK_LDB_RET(ret);
454
455         ret = ldb_set_opaque(ldb, DSDB_OPAQUE_PARTITION_MODULE_MSG_OPAQUE_NAME, partition_msg);
456         CHECK_LDB_RET(ret);
457
458         talloc_steal(ldb, partition_msg);
459
460         /* Now prepare the module chain.  Oddly, we must give it to ldb_load_modules_list in REVERSE */
461         for (len = 0; final_module_list[len]; len++) { /* noop */};
462
463         reverse_module_list = talloc_array(tmp_ctx, const char *, len+1);
464         if (!reverse_module_list) {
465                 talloc_free(tmp_ctx);
466                 return ldb_oom(ldb);
467         }
468         for (i=0; i < len; i++) {
469                 reverse_module_list[i] = final_module_list[(len - 1) - i];
470         }
471         reverse_module_list[i] = NULL;
472
473         /* The backend (at least until the partitions module
474          * reconfigures things) is the next module in the currently
475          * loaded chain */
476         backend_module = ldb_module_next(module);
477         ret = ldb_module_load_list(ldb, reverse_module_list, backend_module, &module_chain);
478         CHECK_LDB_RET(ret);
479
480         talloc_free(tmp_ctx);
481         /* Set this as the 'next' module, so that we effectivly append it to module chain */
482         ldb_module_set_next(module, module_chain);
483
484         return ldb_next_init(module);
485 }
486
487 static const struct ldb_module_ops ldb_samba_dsdb_module_ops = {
488         .name              = "samba_dsdb",
489         .init_context      = samba_dsdb_init,
490 };
491
492 int ldb_samba_dsdb_module_init(const char *version)
493 {
494         LDB_MODULE_CHECK_VERSION(version);
495         return ldb_register_module(&ldb_samba_dsdb_module_ops);
496 }