Revert "s4:prefer "samdb_*_dn" basedn calls over the "ldb_get_*_dn" functions"
[Samba/gebeck_regimport.git] / source4 / dsdb / samdb / ldb_modules / rootdse.c
blobd18e41c294091aeb439b9331ec74702178b20f24
1 /*
2 Unix SMB/CIFS implementation.
4 rootDSE ldb module
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Simo Sorce 2005-2008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "lib/ldb/include/ldb.h"
25 #include "lib/ldb/include/ldb_module.h"
26 #include "system/time.h"
27 #include "dsdb/samdb/samdb.h"
28 #include "version.h"
29 #include "dsdb/samdb/ldb_modules/util.h"
30 #include "libcli/security/security.h"
31 #include "librpc/ndr/libndr.h"
32 #include "auth/auth.h"
34 struct private_data {
35 unsigned int num_controls;
36 char **controls;
37 unsigned int num_partitions;
38 struct ldb_dn **partitions;
42 return 1 if a specific attribute has been requested
44 static int do_attribute(const char * const *attrs, const char *name)
46 return attrs == NULL ||
47 ldb_attr_in_list(attrs, name) ||
48 ldb_attr_in_list(attrs, "*");
51 static int do_attribute_explicit(const char * const *attrs, const char *name)
53 return attrs != NULL && ldb_attr_in_list(attrs, name);
58 expand a DN attribute to include extended DN information if requested
60 static int expand_dn_in_message(struct ldb_module *module, struct ldb_message *msg,
61 const char *attrname, struct ldb_control *edn_control,
62 struct ldb_request *req)
64 struct ldb_dn *dn, *dn2;
65 struct ldb_val *v;
66 int ret;
67 struct ldb_request *req2;
68 char *dn_string;
69 const char *no_attrs[] = { NULL };
70 struct ldb_result *res;
71 struct ldb_extended_dn_control *edn;
72 TALLOC_CTX *tmp_ctx = talloc_new(req);
73 struct ldb_context *ldb;
74 int edn_type = 0;
76 ldb = ldb_module_get_ctx(module);
78 edn = talloc_get_type(edn_control->data, struct ldb_extended_dn_control);
79 if (edn) {
80 edn_type = edn->type;
83 v = discard_const_p(struct ldb_val, ldb_msg_find_ldb_val(msg, attrname));
84 if (v == NULL) {
85 talloc_free(tmp_ctx);
86 return 0;
89 dn_string = talloc_strndup(tmp_ctx, (const char *)v->data, v->length);
90 if (dn_string == NULL) {
91 talloc_free(tmp_ctx);
92 return LDB_ERR_OPERATIONS_ERROR;
95 res = talloc_zero(tmp_ctx, struct ldb_result);
96 if (res == NULL) {
97 talloc_free(tmp_ctx);
98 return LDB_ERR_OPERATIONS_ERROR;
101 dn = ldb_dn_new(tmp_ctx, ldb, dn_string);
102 if (!ldb_dn_validate(dn)) {
103 talloc_free(tmp_ctx);
104 return LDB_ERR_OPERATIONS_ERROR;
107 ret = ldb_build_search_req(&req2, ldb, tmp_ctx,
109 LDB_SCOPE_BASE,
110 NULL,
111 no_attrs,
112 NULL,
113 res, ldb_search_default_callback,
114 req);
115 if (ret != LDB_SUCCESS) {
116 talloc_free(tmp_ctx);
117 return ret;
121 ret = ldb_request_add_control(req2,
122 LDB_CONTROL_EXTENDED_DN_OID,
123 edn_control->critical, edn);
124 if (ret != LDB_SUCCESS) {
125 talloc_free(tmp_ctx);
126 return ret;
129 ret = ldb_next_request(module, req2);
130 if (ret == LDB_SUCCESS) {
131 ret = ldb_wait(req2->handle, LDB_WAIT_ALL);
133 if (ret != LDB_SUCCESS) {
134 talloc_free(tmp_ctx);
135 return ret;
138 if (!res || res->count != 1) {
139 talloc_free(tmp_ctx);
140 return LDB_ERR_OPERATIONS_ERROR;
143 dn2 = res->msgs[0]->dn;
145 v->data = (uint8_t *)ldb_dn_get_extended_linearized(msg->elements, dn2, edn_type);
146 v->length = strlen((char *)v->data);
148 if (v->data == NULL) {
149 talloc_free(tmp_ctx);
150 return LDB_ERR_OPERATIONS_ERROR;
153 talloc_free(tmp_ctx);
155 return 0;
160 add dynamically generated attributes to rootDSE result
162 static int rootdse_add_dynamic(struct ldb_module *module, struct ldb_message *msg,
163 const char * const *attrs, struct ldb_request *req)
165 struct ldb_context *ldb;
166 struct private_data *priv = talloc_get_type(ldb_module_get_private(module), struct private_data);
167 char **server_sasl;
168 const struct dsdb_schema *schema;
169 int *val;
170 struct ldb_control *edn_control;
171 const char *dn_attrs[] = {
172 "configurationNamingContext",
173 "defaultNamingContext",
174 "dsServiceName",
175 "rootDomainNamingContext",
176 "schemaNamingContext",
177 "serverName",
178 NULL
181 ldb = ldb_module_get_ctx(module);
182 schema = dsdb_get_schema(ldb, NULL);
184 msg->dn = ldb_dn_new(msg, ldb, NULL);
186 /* don't return the distinduishedName, cn and name attributes */
187 ldb_msg_remove_attr(msg, "distinguishedName");
188 ldb_msg_remove_attr(msg, "cn");
189 ldb_msg_remove_attr(msg, "name");
191 if (do_attribute(attrs, "currentTime")) {
192 if (ldb_msg_add_steal_string(msg, "currentTime",
193 ldb_timestring(msg, time(NULL))) != 0) {
194 goto failed;
198 if (priv && do_attribute(attrs, "supportedControl")) {
199 unsigned int i;
200 for (i = 0; i < priv->num_controls; i++) {
201 char *control = talloc_strdup(msg, priv->controls[i]);
202 if (!control) {
203 goto failed;
205 if (ldb_msg_add_steal_string(msg, "supportedControl",
206 control) != 0) {
207 goto failed;
212 if (priv && do_attribute(attrs, "namingContexts")) {
213 unsigned int i;
214 for (i = 0; i < priv->num_partitions; i++) {
215 struct ldb_dn *dn = priv->partitions[i];
216 if (ldb_msg_add_steal_string(msg, "namingContexts",
217 ldb_dn_alloc_linearized(msg, dn)) != 0) {
218 goto failed;
223 server_sasl = talloc_get_type(ldb_get_opaque(ldb, "supportedSASLMechanims"),
224 char *);
225 if (server_sasl && do_attribute(attrs, "supportedSASLMechanisms")) {
226 unsigned int i;
227 for (i = 0; server_sasl && server_sasl[i]; i++) {
228 char *sasl_name = talloc_strdup(msg, server_sasl[i]);
229 if (!sasl_name) {
230 goto failed;
232 if (ldb_msg_add_steal_string(msg, "supportedSASLMechanisms",
233 sasl_name) != 0) {
234 goto failed;
239 if (do_attribute(attrs, "highestCommittedUSN")) {
240 uint64_t seq_num;
241 int ret = ldb_sequence_number(ldb, LDB_SEQ_HIGHEST_SEQ, &seq_num);
242 if (ret == LDB_SUCCESS) {
243 if (ldb_msg_add_fmt(msg, "highestCommittedUSN",
244 "%llu", (unsigned long long)seq_num) != 0) {
245 goto failed;
250 if (schema && do_attribute_explicit(attrs, "dsSchemaAttrCount")) {
251 struct dsdb_attribute *cur;
252 unsigned int n = 0;
254 for (cur = schema->attributes; cur; cur = cur->next) {
255 n++;
258 if (ldb_msg_add_fmt(msg, "dsSchemaAttrCount",
259 "%u", n) != 0) {
260 goto failed;
264 if (schema && do_attribute_explicit(attrs, "dsSchemaClassCount")) {
265 struct dsdb_class *cur;
266 unsigned int n = 0;
268 for (cur = schema->classes; cur; cur = cur->next) {
269 n++;
272 if (ldb_msg_add_fmt(msg, "dsSchemaClassCount",
273 "%u", n) != 0) {
274 goto failed;
278 if (schema && do_attribute_explicit(attrs, "dsSchemaPrefixCount")) {
279 if (ldb_msg_add_fmt(msg, "dsSchemaPrefixCount",
280 "%u", schema->prefixmap->length) != 0) {
281 goto failed;
285 if (do_attribute_explicit(attrs, "validFSMOs")) {
286 const struct dsdb_naming_fsmo *naming_fsmo;
287 const struct dsdb_pdc_fsmo *pdc_fsmo;
288 const char *dn_str;
290 if (schema && schema->fsmo.we_are_master) {
291 dn_str = ldb_dn_get_linearized(ldb_get_schema_basedn(ldb));
292 if (dn_str && dn_str[0]) {
293 if (ldb_msg_add_fmt(msg, "validFSMOs", "%s", dn_str) != 0) {
294 goto failed;
299 naming_fsmo = talloc_get_type(ldb_get_opaque(ldb, "dsdb_naming_fsmo"),
300 struct dsdb_naming_fsmo);
301 if (naming_fsmo && naming_fsmo->we_are_master) {
302 dn_str = ldb_dn_get_linearized(samdb_partitions_dn(ldb, msg));
303 if (dn_str && dn_str[0]) {
304 if (ldb_msg_add_fmt(msg, "validFSMOs", "%s", dn_str) != 0) {
305 goto failed;
310 pdc_fsmo = talloc_get_type(ldb_get_opaque(ldb, "dsdb_pdc_fsmo"),
311 struct dsdb_pdc_fsmo);
312 if (pdc_fsmo && pdc_fsmo->we_are_master) {
313 dn_str = ldb_dn_get_linearized(ldb_get_default_basedn(ldb));
314 if (dn_str && dn_str[0]) {
315 if (ldb_msg_add_fmt(msg, "validFSMOs", "%s", dn_str) != 0) {
316 goto failed;
322 if (do_attribute_explicit(attrs, "vendorVersion")) {
323 if (ldb_msg_add_fmt(msg, "vendorVersion",
324 "%s", SAMBA_VERSION_STRING) != 0) {
325 goto failed;
329 if (priv && do_attribute(attrs, "domainFunctionality")) {
330 if (ldb_msg_add_fmt(msg, "domainFunctionality",
331 "%d", dsdb_functional_level(ldb)) != 0) {
332 goto failed;
336 if (priv && do_attribute(attrs, "forestFunctionality")
337 && (val = talloc_get_type(ldb_get_opaque(ldb, "forestFunctionality"), int))) {
338 if (ldb_msg_add_fmt(msg, "forestFunctionality",
339 "%d", *val) != 0) {
340 goto failed;
344 if (priv && do_attribute(attrs, "domainControllerFunctionality")
345 && (val = talloc_get_type(ldb_get_opaque(ldb, "domainControllerFunctionality"), int))) {
346 if (ldb_msg_add_fmt(msg, "domainControllerFunctionality",
347 "%d", *val) != 0) {
348 goto failed;
352 edn_control = ldb_request_get_control(req, LDB_CONTROL_EXTENDED_DN_OID);
354 /* if the client sent us the EXTENDED_DN control then we need
355 to expand the DNs to have GUID and SID. W2K8 join relies on
356 this */
357 if (edn_control) {
358 unsigned int i;
359 int ret;
360 for (i=0; dn_attrs[i]; i++) {
361 if (!do_attribute(attrs, dn_attrs[i])) continue;
362 ret = expand_dn_in_message(module, msg, dn_attrs[i],
363 edn_control, req);
364 if (ret != LDB_SUCCESS) {
365 DEBUG(0,(__location__ ": Failed to expand DN in rootDSE for %s\n",
366 dn_attrs[i]));
367 goto failed;
372 if (do_attribute(attrs, "isGlobalCatalogReady")) {
373 /* MS-ADTS 3.1.1.3.2.10
374 Note, we should only return true here is we have
375 completed at least one synchronisation. As both
376 provision and vampire do a full sync, this means we
377 can return true is the gc bit is set in the NTDSDSA
378 options */
379 if (ldb_msg_add_fmt(msg, "isGlobalCatalogReady",
380 "%s", samdb_is_gc(ldb)?"TRUE":"FALSE") != 0) {
381 goto failed;
385 if (do_attribute(attrs, "tokenGroups")) {
386 unsigned int i;
387 /* Obtain the user's session_info */
388 struct auth_session_info *session_info
389 = (struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
390 if (session_info && session_info->security_token) {
391 /* The list of groups this user is in */
392 for (i = 0; i < session_info->security_token->num_sids; i++) {
393 if (samdb_msg_add_dom_sid(ldb, msg, msg,
394 "tokenGroups",
395 session_info->security_token->sids[i]) != 0) {
396 goto failed;
402 /* TODO: lots more dynamic attributes should be added here */
404 return LDB_SUCCESS;
406 failed:
407 return LDB_ERR_OPERATIONS_ERROR;
411 handle search requests
414 struct rootdse_context {
415 struct ldb_module *module;
416 struct ldb_request *req;
419 static struct rootdse_context *rootdse_init_context(struct ldb_module *module,
420 struct ldb_request *req)
422 struct ldb_context *ldb;
423 struct rootdse_context *ac;
425 ldb = ldb_module_get_ctx(module);
427 ac = talloc_zero(req, struct rootdse_context);
428 if (ac == NULL) {
429 ldb_set_errstring(ldb, "Out of Memory");
430 return NULL;
433 ac->module = module;
434 ac->req = req;
436 return ac;
439 static int rootdse_callback(struct ldb_request *req, struct ldb_reply *ares)
441 struct rootdse_context *ac;
442 int ret;
444 ac = talloc_get_type(req->context, struct rootdse_context);
446 if (!ares) {
447 return ldb_module_done(ac->req, NULL, NULL,
448 LDB_ERR_OPERATIONS_ERROR);
450 if (ares->error != LDB_SUCCESS) {
451 return ldb_module_done(ac->req, ares->controls,
452 ares->response, ares->error);
455 switch (ares->type) {
456 case LDB_REPLY_ENTRY:
458 * if the client explicit asks for the 'netlogon' attribute
459 * the reply_entry needs to be skipped
461 if (ac->req->op.search.attrs &&
462 ldb_attr_in_list(ac->req->op.search.attrs, "netlogon")) {
463 talloc_free(ares);
464 return LDB_SUCCESS;
467 /* for each record returned post-process to add any dynamic
468 attributes that have been asked for */
469 ret = rootdse_add_dynamic(ac->module, ares->message,
470 ac->req->op.search.attrs, ac->req);
471 if (ret != LDB_SUCCESS) {
472 talloc_free(ares);
473 return ldb_module_done(ac->req, NULL, NULL, ret);
476 return ldb_module_send_entry(ac->req, ares->message, ares->controls);
478 case LDB_REPLY_REFERRAL:
479 /* should we allow the backend to return referrals in this case
480 * ?? */
481 break;
483 case LDB_REPLY_DONE:
484 return ldb_module_done(ac->req, ares->controls,
485 ares->response, ares->error);
488 talloc_free(ares);
489 return LDB_SUCCESS;
492 static int rootdse_search(struct ldb_module *module, struct ldb_request *req)
494 struct ldb_context *ldb;
495 struct rootdse_context *ac;
496 struct ldb_request *down_req;
497 int ret;
499 ldb = ldb_module_get_ctx(module);
501 /* see if its for the rootDSE - only a base search on the "" DN qualifies */
502 if (!(req->op.search.scope == LDB_SCOPE_BASE && ldb_dn_is_null(req->op.search.base))) {
503 /* Otherwise, pass down to the rest of the stack */
504 return ldb_next_request(module, req);
507 ac = rootdse_init_context(module, req);
508 if (ac == NULL) {
509 return LDB_ERR_OPERATIONS_ERROR;
512 /* in our db we store the rootDSE with a DN of @ROOTDSE */
513 ret = ldb_build_search_req(&down_req, ldb, ac,
514 ldb_dn_new(ac, ldb, "@ROOTDSE"),
515 LDB_SCOPE_BASE,
516 NULL,
517 req->op.search.attrs,
518 NULL,/* for now skip the controls from the client */
519 ac, rootdse_callback,
520 req);
521 if (ret != LDB_SUCCESS) {
522 return ret;
525 return ldb_next_request(module, down_req);
528 static int rootdse_register_control(struct ldb_module *module, struct ldb_request *req)
530 struct private_data *priv = talloc_get_type(ldb_module_get_private(module), struct private_data);
531 char **list;
533 list = talloc_realloc(priv, priv->controls, char *, priv->num_controls + 1);
534 if (!list) {
535 return LDB_ERR_OPERATIONS_ERROR;
538 list[priv->num_controls] = talloc_strdup(list, req->op.reg_control.oid);
539 if (!list[priv->num_controls]) {
540 return LDB_ERR_OPERATIONS_ERROR;
543 priv->num_controls += 1;
544 priv->controls = list;
546 return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
549 static int rootdse_register_partition(struct ldb_module *module, struct ldb_request *req)
551 struct private_data *priv = talloc_get_type(ldb_module_get_private(module), struct private_data);
552 struct ldb_dn **list;
554 list = talloc_realloc(priv, priv->partitions, struct ldb_dn *, priv->num_partitions + 1);
555 if (!list) {
556 return LDB_ERR_OPERATIONS_ERROR;
559 list[priv->num_partitions] = ldb_dn_copy(list, req->op.reg_partition.dn);
560 if (!list[priv->num_partitions]) {
561 return LDB_ERR_OPERATIONS_ERROR;
564 priv->num_partitions += 1;
565 priv->partitions = list;
567 return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
571 static int rootdse_request(struct ldb_module *module, struct ldb_request *req)
573 switch (req->operation) {
575 case LDB_REQ_REGISTER_CONTROL:
576 return rootdse_register_control(module, req);
577 case LDB_REQ_REGISTER_PARTITION:
578 return rootdse_register_partition(module, req);
580 default:
581 break;
583 return ldb_next_request(module, req);
586 static int rootdse_init(struct ldb_module *module)
588 int ret;
589 struct ldb_context *ldb;
590 struct ldb_result *res;
591 struct private_data *data;
592 const char *attrs[] = { "msDS-Behavior-Version", NULL };
593 const char *ds_attrs[] = { "dsServiceName", NULL };
594 TALLOC_CTX *mem_ctx;
596 ldb = ldb_module_get_ctx(module);
598 data = talloc_zero(module, struct private_data);
599 if (data == NULL) {
600 return -1;
603 data->num_controls = 0;
604 data->controls = NULL;
605 data->num_partitions = 0;
606 data->partitions = NULL;
607 ldb_module_set_private(module, data);
609 ldb_set_default_dns(ldb);
611 ret = ldb_next_init(module);
613 if (ret) {
614 return ret;
617 mem_ctx = talloc_new(data);
618 if (!mem_ctx) {
619 ldb_oom(ldb);
620 return LDB_ERR_OPERATIONS_ERROR;
623 /* Now that the partitions are set up, do a search for:
624 - domainControllerFunctionality
625 - domainFunctionality
626 - forestFunctionality
628 Then stuff these values into an opaque
630 ret = ldb_search(ldb, mem_ctx, &res,
631 ldb_get_default_basedn(ldb),
632 LDB_SCOPE_BASE, attrs, NULL);
633 if (ret == LDB_SUCCESS && res->count == 1) {
634 int domain_behaviour_version
635 = ldb_msg_find_attr_as_int(res->msgs[0],
636 "msDS-Behavior-Version", -1);
637 if (domain_behaviour_version != -1) {
638 int *val = talloc(ldb, int);
639 if (!val) {
640 ldb_oom(ldb);
641 talloc_free(mem_ctx);
642 return LDB_ERR_OPERATIONS_ERROR;
644 *val = domain_behaviour_version;
645 ret = ldb_set_opaque(ldb, "domainFunctionality", val);
646 if (ret != LDB_SUCCESS) {
647 talloc_free(mem_ctx);
648 return ret;
653 ret = ldb_search(ldb, mem_ctx, &res,
654 samdb_partitions_dn(ldb, mem_ctx),
655 LDB_SCOPE_BASE, attrs, NULL);
656 if (ret == LDB_SUCCESS && res->count == 1) {
657 int forest_behaviour_version
658 = ldb_msg_find_attr_as_int(res->msgs[0],
659 "msDS-Behavior-Version", -1);
660 if (forest_behaviour_version != -1) {
661 int *val = talloc(ldb, int);
662 if (!val) {
663 ldb_oom(ldb);
664 talloc_free(mem_ctx);
665 return LDB_ERR_OPERATIONS_ERROR;
667 *val = forest_behaviour_version;
668 ret = ldb_set_opaque(ldb, "forestFunctionality", val);
669 if (ret != LDB_SUCCESS) {
670 talloc_free(mem_ctx);
671 return ret;
676 ret = ldb_search(ldb, mem_ctx, &res,
677 ldb_dn_new(mem_ctx, ldb, ""),
678 LDB_SCOPE_BASE, ds_attrs, NULL);
679 if (ret == LDB_SUCCESS && res->count == 1) {
680 struct ldb_dn *ds_dn
681 = ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[0],
682 "dsServiceName");
683 if (ds_dn) {
684 ret = ldb_search(ldb, mem_ctx, &res, ds_dn,
685 LDB_SCOPE_BASE, attrs, NULL);
686 if (ret == LDB_SUCCESS && res->count == 1) {
687 int domain_controller_behaviour_version
688 = ldb_msg_find_attr_as_int(res->msgs[0],
689 "msDS-Behavior-Version", -1);
690 if (domain_controller_behaviour_version != -1) {
691 int *val = talloc(ldb, int);
692 if (!val) {
693 ldb_oom(ldb);
694 talloc_free(mem_ctx);
695 return LDB_ERR_OPERATIONS_ERROR;
697 *val = domain_controller_behaviour_version;
698 ret = ldb_set_opaque(ldb,
699 "domainControllerFunctionality", val);
700 if (ret != LDB_SUCCESS) {
701 talloc_free(mem_ctx);
702 return ret;
709 talloc_free(mem_ctx);
711 return LDB_SUCCESS;
715 * This function gets the string SCOPE_DN:OPTIONAL_FEATURE_GUID and parse it
716 * to a DN and a GUID object
718 static int get_optional_feature_dn_guid(struct ldb_request *req, struct ldb_context *ldb,
719 TALLOC_CTX *mem_ctx,
720 struct ldb_dn **op_feature_scope_dn,
721 struct GUID *op_feature_guid)
723 const struct ldb_message *msg = req->op.mod.message;
724 const char *ldb_val_str;
725 char *dn, *guid;
726 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
727 NTSTATUS status;
729 ldb_val_str = ldb_msg_find_attr_as_string(msg, "enableOptionalFeature", NULL);
730 if (!ldb_val_str) {
731 ldb_asprintf_errstring(ldb,
732 "rootdse: unable to find enableOptionalFeature\n");
733 return LDB_ERR_UNWILLING_TO_PERFORM;
736 guid = strchr(ldb_val_str, ':');
737 if (!guid) {
738 ldb_asprintf_errstring(ldb,
739 "rootdse: unable to find GUID in enableOptionalFeature\n");
740 return LDB_ERR_UNWILLING_TO_PERFORM;
742 status = GUID_from_string(guid+1, op_feature_guid);
743 if (!NT_STATUS_IS_OK(status)) {
744 ldb_asprintf_errstring(ldb,
745 "rootdse: bad GUID in enableOptionalFeature\n");
746 return LDB_ERR_UNWILLING_TO_PERFORM;
749 dn = talloc_strndup(tmp_ctx, ldb_val_str, guid-ldb_val_str);
750 if (!dn) {
751 ldb_asprintf_errstring(ldb,
752 "rootdse: bad DN in enableOptionalFeature\n");
753 return LDB_ERR_UNWILLING_TO_PERFORM;
756 *op_feature_scope_dn = ldb_dn_new(mem_ctx, ldb, dn);
758 talloc_free(tmp_ctx);
759 return LDB_SUCCESS;
763 * This function gets the OPTIONAL_FEATURE_GUID and looks for the optional feature
764 * ldb_message object.
766 static int dsdb_find_optional_feature(struct ldb_module *module, struct ldb_context *ldb,
767 TALLOC_CTX *mem_ctx, struct GUID op_feature_guid, struct ldb_message **msg)
769 struct ldb_result *res;
770 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
771 int ret;
773 ret = dsdb_module_search(module, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE,
774 NULL,
775 DSDB_SEARCH_SEARCH_ALL_PARTITIONS,
776 "(&(objectClass=msDS-OptionalFeature)"
777 "(msDS-OptionalFeatureGUID=%s))",GUID_string(tmp_ctx, &op_feature_guid));
779 if (ret != LDB_SUCCESS) {
780 talloc_free(tmp_ctx);
781 return ret;
783 if (res->count == 0) {
784 talloc_free(tmp_ctx);
785 return LDB_ERR_NO_SUCH_OBJECT;
787 if (res->count != 1) {
788 ldb_asprintf_errstring(ldb,
789 "More than one object found matching optional feature GUID %s\n",
790 GUID_string(tmp_ctx, &op_feature_guid));
791 talloc_free(tmp_ctx);
792 return LDB_ERR_OPERATIONS_ERROR;
795 *msg = talloc_steal(mem_ctx, res->msgs[0]);
797 talloc_free(tmp_ctx);
798 return LDB_SUCCESS;
801 static int rootdse_enable_recycle_bin(struct ldb_module *module,struct ldb_context *ldb,
802 TALLOC_CTX *mem_ctx, struct ldb_dn *op_feature_scope_dn,
803 struct ldb_message *op_feature_msg)
805 int ret;
806 const int domain_func_level = dsdb_functional_level(ldb);
807 struct ldb_dn *ntds_settings_dn;
808 TALLOC_CTX *tmp_ctx;
809 unsigned int el_count = 0;
810 struct ldb_message *msg;
812 ret = ldb_msg_find_attr_as_int(op_feature_msg, "msDS-RequiredForestBehaviorVersion", 0);
813 if (domain_func_level < ret){
814 ldb_asprintf_errstring(ldb,
815 "rootdse: Domain functional level must be at least %d\n",
816 ret);
817 return LDB_ERR_UNWILLING_TO_PERFORM;
820 tmp_ctx = talloc_new(mem_ctx);
821 ntds_settings_dn = samdb_ntds_settings_dn(ldb);
822 if (!ntds_settings_dn) {
823 ldb_asprintf_errstring(ldb,
824 __location__ ": Failed to find NTDS settings DN\n");
825 ret = LDB_ERR_OPERATIONS_ERROR;
826 talloc_free(tmp_ctx);
827 return ret;
830 ntds_settings_dn = ldb_dn_copy(tmp_ctx, ntds_settings_dn);
831 if (!ntds_settings_dn) {
832 DEBUG(0, (__location__ ": Failed to copy NTDS settings DN\n"));
833 ret = LDB_ERR_OPERATIONS_ERROR;
834 talloc_free(tmp_ctx);
835 return ret;
838 msg = ldb_msg_new(tmp_ctx);
839 msg->dn = ntds_settings_dn;
841 ldb_msg_add_linearized_dn(msg, "msDS-EnabledFeature", op_feature_msg->dn);
842 msg->elements[el_count++].flags = LDB_FLAG_MOD_ADD;
844 ret = dsdb_module_modify(module, msg, 0);
845 if (ret != LDB_SUCCESS) {
846 ldb_asprintf_errstring(ldb,
847 "rootdse_enable_recycle_bin: Failed to modify object %s - %s",
848 ldb_dn_get_linearized(ntds_settings_dn), ldb_errstring(ldb));
849 talloc_free(tmp_ctx);
850 return ret;
853 msg->dn = op_feature_scope_dn;
854 ret = dsdb_module_modify(module, msg, 0);
855 if (ret != LDB_SUCCESS) {
856 ldb_asprintf_errstring(ldb, "rootdse_enable_recycle_bin: Failed to modify object %s - %s",
857 ldb_dn_get_linearized(op_feature_scope_dn), ldb_errstring(ldb));
858 talloc_free(tmp_ctx);
859 return ret;
862 return LDB_SUCCESS;
865 static int rootdse_enableoptionalfeature(struct ldb_module *module, struct ldb_request *req)
868 steps:
869 - check for system (only system can enable features)
870 - extract GUID from the request
871 - find the feature object
872 - check functional level, must be at least msDS-RequiredForestBehaviorVersion
873 - check if it is already enabled (if enabled return LDAP_ATTRIBUTE_OR_VALUE_EXISTS) - probably not needed, just return error from the add/modify
874 - add/modify objects (see ntdsconnection code for an example)
877 struct ldb_context *ldb = ldb_module_get_ctx(module);
878 struct GUID op_feature_guid;
879 struct ldb_dn *op_feature_scope_dn;
880 struct ldb_message *op_feature_msg;
881 struct auth_session_info *session_info =
882 (struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
883 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
884 int ret;
885 const char *guid_string;
887 if (security_session_user_level(session_info) != SECURITY_SYSTEM) {
888 ldb_asprintf_errstring(ldb, "rootdse: Insufficient rights for enableoptionalfeature");
889 return LDB_ERR_UNWILLING_TO_PERFORM;
892 ret = get_optional_feature_dn_guid(req, ldb, tmp_ctx, &op_feature_scope_dn, &op_feature_guid);
893 if (ret != LDB_SUCCESS) {
894 talloc_free(tmp_ctx);
895 return ret;
898 guid_string = GUID_string(tmp_ctx, &op_feature_guid);
899 if (!guid_string) {
900 ldb_asprintf_errstring(ldb, "rootdse: bad optional feature GUID");
901 return LDB_ERR_UNWILLING_TO_PERFORM;
904 ret = dsdb_find_optional_feature(module, ldb, tmp_ctx, op_feature_guid, &op_feature_msg);
905 if (ret != LDB_SUCCESS) {
906 ldb_asprintf_errstring(ldb, "rootdse: unable to find optional feature for %s - %s",
907 guid_string, ldb_errstring(ldb));
908 talloc_free(tmp_ctx);
909 return ret;
912 if (strcasecmp(DS_GUID_FEATURE_RECYCLE_BIN, guid_string) == 0) {
913 ret = rootdse_enable_recycle_bin(module, ldb,
914 tmp_ctx, op_feature_scope_dn,
915 op_feature_msg);
916 } else {
917 ldb_asprintf_errstring(ldb, "rootdse: unknown optional feature %s",
918 guid_string);
919 talloc_free(tmp_ctx);
920 return LDB_ERR_UNWILLING_TO_PERFORM;
922 if (ret != LDB_SUCCESS) {
923 ldb_asprintf_errstring(ldb, "rootdse: failed to set optional feature for %s - %s",
924 guid_string, ldb_errstring(ldb));
925 talloc_free(tmp_ctx);
926 return ret;
929 talloc_free(tmp_ctx);
930 return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);;
933 static int rootdse_schemaupdatenow(struct ldb_module *module, struct ldb_request *req)
935 struct ldb_context *ldb = ldb_module_get_ctx(module);
936 struct ldb_result *ext_res;
937 int ret;
938 struct ldb_dn *schema_dn;
940 schema_dn = ldb_get_schema_basedn(ldb);
941 if (!schema_dn) {
942 ldb_reset_err_string(ldb);
943 ldb_debug(ldb, LDB_DEBUG_WARNING,
944 "rootdse_modify: no schema dn present: (skip ldb_extended call)\n");
945 return ldb_next_request(module, req);
948 ret = ldb_extended(ldb, DSDB_EXTENDED_SCHEMA_UPDATE_NOW_OID, schema_dn, &ext_res);
949 if (ret != LDB_SUCCESS) {
950 return LDB_ERR_OPERATIONS_ERROR;
953 talloc_free(ext_res);
954 return ldb_module_done(req, NULL, NULL, ret);
957 static int rootdse_modify(struct ldb_module *module, struct ldb_request *req)
959 struct ldb_context *ldb;
962 If dn is not "" we should let it pass through
964 if (!ldb_dn_is_null(req->op.mod.message->dn)) {
965 return ldb_next_request(module, req);
968 ldb = ldb_module_get_ctx(module);
971 dn is empty so check for schemaUpdateNow attribute
972 "The type of modification and values specified in the LDAP modify operation do not matter." MSDN
974 if (ldb_msg_find_element(req->op.mod.message, "schemaUpdateNow")) {
975 return rootdse_schemaupdatenow(module, req);
978 if (ldb_msg_find_element(req->op.mod.message, "enableOptionalFeature")) {
979 return rootdse_enableoptionalfeature(module, req);
982 return LDB_ERR_OPERATIONS_ERROR;
985 _PUBLIC_ const struct ldb_module_ops ldb_rootdse_module_ops = {
986 .name = "rootdse",
987 .init_context = rootdse_init,
988 .search = rootdse_search,
989 .request = rootdse_request,
990 .modify = rootdse_modify