4 Copyright (C) Simo Sorce 2006-2008
5 Copyright (C) Nadezhda Ivanova 2009
6 Copyright (C) Anatoliy Atanasov 2009
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * Component: ldb ACL module
27 * Description: Module that performs authorisation access checks based on the
28 * account's security context and the DACL of the object being polled.
29 * Only DACL checks implemented at this point
31 * Authors: Nadezhda Ivanova, Anatoliy Atanasov
35 #include "ldb_module.h"
36 #include "auth/auth.h"
37 #include "libcli/security/security.h"
38 #include "dsdb/samdb/samdb.h"
39 #include "librpc/gen_ndr/ndr_security.h"
40 #include "param/param.h"
41 #include "dsdb/samdb/ldb_modules/util.h"
42 #include "dsdb/samdb/ldb_modules/schema.h"
43 #include "lib/util/tsort.h"
44 #include "system/kerberos.h"
45 #include "auth/kerberos/kerberos.h"
47 struct extended_access_check_attribute {
49 const uint32_t requires_rights;
54 const char **password_attrs;
58 struct ldb_module *module;
59 struct ldb_request *req;
61 bool allowedAttributes;
62 bool allowedAttributesEffective;
63 bool allowedChildClasses;
64 bool allowedChildClassesEffective;
65 bool sDRightsEffective;
67 const char * const *attrs;
68 struct dsdb_schema *schema;
71 static int acl_module_init(struct ldb_module *module)
73 struct ldb_context *ldb;
74 struct acl_private *data;
78 static const char *attrs[] = { "passwordAttribute", NULL };
79 struct ldb_result *res;
80 struct ldb_message *msg;
81 struct ldb_message_element *password_attributes;
83 ldb = ldb_module_get_ctx(module);
85 ret = ldb_mod_register_control(module, LDB_CONTROL_SD_FLAGS_OID);
86 if (ret != LDB_SUCCESS) {
87 ldb_debug(ldb, LDB_DEBUG_ERROR,
88 "acl_module_init: Unable to register control with rootdse!\n");
89 return ldb_operr(ldb);
92 data = talloc(module, struct acl_private);
97 data->password_attrs = NULL;
98 data->acl_perform = lpcfg_parm_bool(ldb_get_opaque(ldb, "loadparm"),
99 NULL, "acl", "perform", false);
100 ldb_module_set_private(module, data);
102 mem_ctx = talloc_new(module);
107 ret = dsdb_module_search_dn(module, mem_ctx, &res,
108 ldb_dn_new(mem_ctx, ldb, "@KLUDGEACL"),
110 DSDB_FLAG_NEXT_MODULE, NULL);
111 if (ret != LDB_SUCCESS) {
114 if (res->count == 0) {
118 if (res->count > 1) {
119 talloc_free(mem_ctx);
120 return LDB_ERR_CONSTRAINT_VIOLATION;
125 password_attributes = ldb_msg_find_element(msg, "passwordAttribute");
126 if (!password_attributes) {
129 data->password_attrs = talloc_array(data, const char *, password_attributes->num_values + 1);
130 if (!data->password_attrs) {
131 talloc_free(mem_ctx);
134 for (i=0; i < password_attributes->num_values; i++) {
135 data->password_attrs[i] = (const char *)password_attributes->values[i].data;
136 talloc_steal(data->password_attrs, password_attributes->values[i].data);
138 data->password_attrs[i] = NULL;
141 talloc_free(mem_ctx);
142 return ldb_next_init(module);
145 static int acl_allowedAttributes(struct ldb_module *module,
146 const struct dsdb_schema *schema,
147 struct ldb_message *sd_msg,
148 struct ldb_message *msg,
149 struct acl_context *ac)
151 struct ldb_message_element *oc_el;
152 struct ldb_context *ldb = ldb_module_get_ctx(module);
154 const char **attr_list;
157 /* If we don't have a schema yet, we can't do anything... */
158 if (schema == NULL) {
159 ldb_asprintf_errstring(ldb, "cannot add allowedAttributes to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
160 return LDB_ERR_OPERATIONS_ERROR;
163 /* Must remove any existing attribute */
164 if (ac->allowedAttributes) {
165 ldb_msg_remove_attr(msg, "allowedAttributes");
168 mem_ctx = talloc_new(msg);
173 oc_el = ldb_msg_find_element(sd_msg, "objectClass");
174 attr_list = dsdb_full_attribute_list(mem_ctx, schema, oc_el, DSDB_SCHEMA_ALL);
176 ldb_asprintf_errstring(ldb, "acl: Failed to get list of attributes");
177 talloc_free(mem_ctx);
178 return LDB_ERR_OPERATIONS_ERROR;
180 if (ac->allowedAttributes) {
181 for (i=0; attr_list && attr_list[i]; i++) {
182 ldb_msg_add_string(msg, "allowedAttributes", attr_list[i]);
185 if (ac->allowedAttributesEffective) {
186 struct security_descriptor *sd;
187 struct dom_sid *sid = NULL;
188 struct ldb_control *as_system = ldb_request_get_control(ac->req,
189 LDB_CONTROL_AS_SYSTEM_OID);
191 if (as_system != NULL) {
192 as_system->critical = 0;
195 ldb_msg_remove_attr(msg, "allowedAttributesEffective");
196 if (ac->am_system || as_system) {
197 for (i=0; attr_list && attr_list[i]; i++) {
198 ldb_msg_add_string(msg, "allowedAttributesEffective", attr_list[i]);
203 ret = dsdb_get_sd_from_ldb_message(ldb_module_get_ctx(module), mem_ctx, sd_msg, &sd);
205 if (ret != LDB_SUCCESS) {
209 sid = samdb_result_dom_sid(mem_ctx, sd_msg, "objectSid");
210 for (i=0; attr_list && attr_list[i]; i++) {
211 const struct dsdb_attribute *attr = dsdb_attribute_by_lDAPDisplayName(schema,
214 return ldb_operr(ldb);
216 /* remove constructed attributes */
217 if (attr->systemFlags & DS_FLAG_ATTR_IS_CONSTRUCTED
219 || (attr->linkID != 0 && attr->linkID % 2 != 0 )) {
222 ret = acl_check_access_on_attribute(module,
228 if (ret == LDB_SUCCESS) {
229 ldb_msg_add_string(msg, "allowedAttributesEffective", attr_list[i]);
236 static int acl_childClasses(struct ldb_module *module,
237 const struct dsdb_schema *schema,
238 struct ldb_message *sd_msg,
239 struct ldb_message *msg,
240 const char *attrName)
242 struct ldb_message_element *oc_el;
243 struct ldb_message_element *allowedClasses;
244 const struct dsdb_class *sclass;
248 /* If we don't have a schema yet, we can't do anything... */
249 if (schema == NULL) {
250 ldb_asprintf_errstring(ldb_module_get_ctx(module), "cannot add childClassesEffective to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
251 return LDB_ERR_OPERATIONS_ERROR;
254 /* Must remove any existing attribute, or else confusion reins */
255 ldb_msg_remove_attr(msg, attrName);
256 ret = ldb_msg_add_empty(msg, attrName, 0, &allowedClasses);
257 if (ret != LDB_SUCCESS) {
261 oc_el = ldb_msg_find_element(sd_msg, "objectClass");
263 for (i=0; oc_el && i < oc_el->num_values; i++) {
264 sclass = dsdb_class_by_lDAPDisplayName_ldb_val(schema, &oc_el->values[i]);
266 /* We don't know this class? what is going on? */
270 for (j=0; sclass->possibleInferiors && sclass->possibleInferiors[j]; j++) {
271 ldb_msg_add_string(msg, attrName, sclass->possibleInferiors[j]);
274 if (allowedClasses->num_values > 1) {
275 TYPESAFE_QSORT(allowedClasses->values, allowedClasses->num_values, data_blob_cmp);
276 for (i=1 ; i < allowedClasses->num_values; i++) {
277 struct ldb_val *val1 = &allowedClasses->values[i-1];
278 struct ldb_val *val2 = &allowedClasses->values[i];
279 if (data_blob_cmp(val1, val2) == 0) {
280 memmove(val1, val2, (allowedClasses->num_values - i) * sizeof(struct ldb_val));
281 allowedClasses->num_values--;
290 static int acl_childClassesEffective(struct ldb_module *module,
291 const struct dsdb_schema *schema,
292 struct ldb_message *sd_msg,
293 struct ldb_message *msg,
294 struct acl_context *ac)
296 struct ldb_message_element *oc_el;
297 struct ldb_message_element *allowedClasses = NULL;
298 const struct dsdb_class *sclass;
299 struct security_descriptor *sd;
300 struct ldb_control *as_system = ldb_request_get_control(ac->req,
301 LDB_CONTROL_AS_SYSTEM_OID);
302 struct dom_sid *sid = NULL;
306 if (as_system != NULL) {
307 as_system->critical = 0;
310 if (ac->am_system || as_system) {
311 return acl_childClasses(module, schema, sd_msg, msg, "allowedChildClassesEffective");
314 /* If we don't have a schema yet, we can't do anything... */
315 if (schema == NULL) {
316 ldb_asprintf_errstring(ldb_module_get_ctx(module), "cannot add allowedChildClassesEffective to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
317 return LDB_ERR_OPERATIONS_ERROR;
320 /* Must remove any existing attribute, or else confusion reins */
321 ldb_msg_remove_attr(msg, "allowedChildClassesEffective");
323 oc_el = ldb_msg_find_element(sd_msg, "objectClass");
324 ret = dsdb_get_sd_from_ldb_message(ldb_module_get_ctx(module), msg, sd_msg, &sd);
325 if (ret != LDB_SUCCESS) {
329 sid = samdb_result_dom_sid(msg, sd_msg, "objectSid");
330 for (i=0; oc_el && i < oc_el->num_values; i++) {
331 sclass = dsdb_class_by_lDAPDisplayName_ldb_val(schema, &oc_el->values[i]);
333 /* We don't know this class? what is going on? */
337 for (j=0; sclass->possibleInferiors && sclass->possibleInferiors[j]; j++) {
338 ret = acl_check_access_on_class(module,
343 SEC_ADS_CREATE_CHILD,
344 sclass->possibleInferiors[j]);
345 if (ret == LDB_SUCCESS) {
346 ldb_msg_add_string(msg, "allowedChildClassesEffective",
347 sclass->possibleInferiors[j]);
351 allowedClasses = ldb_msg_find_element(msg, "allowedChildClassesEffective");
352 if (!allowedClasses) {
356 if (allowedClasses->num_values > 1) {
357 TYPESAFE_QSORT(allowedClasses->values, allowedClasses->num_values, data_blob_cmp);
358 for (i=1 ; i < allowedClasses->num_values; i++) {
359 struct ldb_val *val1 = &allowedClasses->values[i-1];
360 struct ldb_val *val2 = &allowedClasses->values[i];
361 if (data_blob_cmp(val1, val2) == 0) {
362 memmove(val1, val2, (allowedClasses->num_values - i) * sizeof( struct ldb_val));
363 allowedClasses->num_values--;
371 static int acl_sDRightsEffective(struct ldb_module *module,
372 struct ldb_message *sd_msg,
373 struct ldb_message *msg,
374 struct acl_context *ac)
376 struct ldb_message_element *rightsEffective;
378 struct security_descriptor *sd;
379 struct ldb_control *as_system = ldb_request_get_control(ac->req,
380 LDB_CONTROL_AS_SYSTEM_OID);
381 struct dom_sid *sid = NULL;
384 if (as_system != NULL) {
385 as_system->critical = 0;
388 /* Must remove any existing attribute, or else confusion reins */
389 ldb_msg_remove_attr(msg, "sDRightsEffective");
390 ret = ldb_msg_add_empty(msg, "sDRightsEffective", 0, &rightsEffective);
391 if (ret != LDB_SUCCESS) {
394 if (ac->am_system || as_system) {
395 flags = SECINFO_OWNER | SECINFO_GROUP | SECINFO_SACL | SECINFO_DACL;
398 /* Get the security descriptor from the message */
399 ret = dsdb_get_sd_from_ldb_message(ldb_module_get_ctx(module), msg, sd_msg, &sd);
400 if (ret != LDB_SUCCESS) {
403 sid = samdb_result_dom_sid(msg, sd_msg, "objectSid");
404 ret = acl_check_access_on_attribute(module,
410 if (ret == LDB_SUCCESS) {
411 flags |= SECINFO_OWNER | SECINFO_GROUP;
413 ret = acl_check_access_on_attribute(module,
419 if (ret == LDB_SUCCESS) {
420 flags |= SECINFO_DACL;
422 ret = acl_check_access_on_attribute(module,
426 SEC_FLAG_SYSTEM_SECURITY,
428 if (ret == LDB_SUCCESS) {
429 flags |= SECINFO_SACL;
432 return samdb_msg_add_uint(ldb_module_get_ctx(module), msg, msg,
433 "sDRightsEffective", flags);
436 static int acl_validate_spn_value(TALLOC_CTX *mem_ctx,
437 struct ldb_context *ldb,
438 const char *spn_value,
439 uint32_t userAccountControl,
440 const char *samAccountName,
441 const char *dnsHostName,
442 const char *netbios_name,
443 const char *ntds_guid)
446 krb5_context krb_ctx;
447 krb5_error_code kerr;
448 krb5_principal principal;
453 const char *forest_name = samdb_forest_name(ldb, mem_ctx);
454 const char *base_domain = samdb_default_domain_name(ldb, mem_ctx);
455 struct loadparm_context *lp_ctx = talloc_get_type(ldb_get_opaque(ldb, "loadparm"),
456 struct loadparm_context);
457 bool is_dc = (userAccountControl & UF_SERVER_TRUST_ACCOUNT) ||
458 (userAccountControl & UF_PARTIAL_SECRETS_ACCOUNT);
460 if (strcasecmp_m(spn_value, samAccountName) == 0) {
461 /* MacOS X sets this value, and setting an SPN of your
462 * own samAccountName is both pointless and safe */
466 kerr = smb_krb5_init_context_basic(mem_ctx,
470 return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR,
471 "Could not initialize kerberos context.");
474 ret = krb5_parse_name(krb_ctx, spn_value, &principal);
476 krb5_free_context(krb_ctx);
477 return LDB_ERR_CONSTRAINT_VIOLATION;
480 if (principal->name.name_string.len < 2) {
484 instanceName = principal->name.name_string.val[1];
485 serviceType = principal->name.name_string.val[0];
486 realm = krb5_principal_get_realm(krb_ctx, principal);
487 if (principal->name.name_string.len == 3) {
488 serviceName = principal->name.name_string.val[2];
497 if (strcasecmp(serviceType, "ldap") == 0) {
498 if (strcasecmp(serviceName, netbios_name) != 0 &&
499 strcasecmp(serviceName, forest_name) != 0) {
503 } else if (strcasecmp(serviceType, "gc") == 0) {
504 if (strcasecmp(serviceName, forest_name) != 0) {
508 if (strcasecmp(serviceName, base_domain) != 0 &&
509 strcasecmp(serviceName, netbios_name) != 0) {
514 /* instanceName can be samAccountName without $ or dnsHostName
515 * or "ntds_guid._msdcs.forest_domain for DC objects */
516 if (strlen(instanceName) == (strlen(samAccountName) - 1)
517 && strncasecmp(instanceName, samAccountName, strlen(samAccountName) - 1) == 0) {
519 } else if (strcasecmp(instanceName, dnsHostName) == 0) {
522 const char *guid_str;
523 guid_str = talloc_asprintf(mem_ctx,"%s._msdcs.%s",
526 if (strcasecmp(instanceName, guid_str) == 0) {
532 krb5_free_principal(krb_ctx, principal);
533 krb5_free_context(krb_ctx);
534 return LDB_ERR_CONSTRAINT_VIOLATION;
537 krb5_free_principal(krb_ctx, principal);
538 krb5_free_context(krb_ctx);
542 static int acl_check_spn(TALLOC_CTX *mem_ctx,
543 struct ldb_module *module,
544 struct ldb_request *req,
545 struct security_descriptor *sd,
547 const struct GUID *oc_guid,
548 const struct dsdb_attribute *attr)
552 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
553 struct ldb_context *ldb = ldb_module_get_ctx(module);
554 struct ldb_result *acl_res;
555 struct ldb_result *netbios_res;
556 struct ldb_message_element *el;
557 struct ldb_dn *partitions_dn = samdb_partitions_dn(ldb, tmp_ctx);
558 uint32_t userAccountControl;
559 const char *samAccountName;
560 const char *dnsHostName;
561 const char *netbios_name;
563 char *ntds_guid = NULL;
565 static const char *acl_attrs[] = {
568 "userAccountControl",
571 static const char *netbios_attrs[] = {
576 /* if we have wp, we can do whatever we like */
577 if (acl_check_access_on_attribute(module,
582 attr) == LDB_SUCCESS) {
583 talloc_free(tmp_ctx);
587 ret = acl_check_extended_right(tmp_ctx, sd, acl_user_token(module),
588 GUID_DRS_VALIDATE_SPN,
592 if (ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS) {
593 dsdb_acl_debug(sd, acl_user_token(module),
594 req->op.mod.message->dn,
597 talloc_free(tmp_ctx);
601 ret = dsdb_module_search_dn(module, tmp_ctx,
602 &acl_res, req->op.mod.message->dn,
604 DSDB_FLAG_NEXT_MODULE |
605 DSDB_SEARCH_SHOW_DELETED, req);
606 if (ret != LDB_SUCCESS) {
607 talloc_free(tmp_ctx);
611 userAccountControl = ldb_msg_find_attr_as_uint(acl_res->msgs[0], "userAccountControl", 0);
612 dnsHostName = ldb_msg_find_attr_as_string(acl_res->msgs[0], "dnsHostName", NULL);
613 samAccountName = ldb_msg_find_attr_as_string(acl_res->msgs[0], "samAccountName", NULL);
615 ret = dsdb_module_search(module, tmp_ctx,
616 &netbios_res, partitions_dn,
619 DSDB_FLAG_NEXT_MODULE,
622 ldb_dn_get_linearized(ldb_get_default_basedn(ldb)));
624 netbios_name = ldb_msg_find_attr_as_string(netbios_res->msgs[0], "nETBIOSName", NULL);
626 el = ldb_msg_find_element(req->op.mod.message, "servicePrincipalName");
628 talloc_free(tmp_ctx);
629 return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR,
630 "Error finding element for servicePrincipalName.");
633 /* NTDSDSA objectGuid of object we are checking SPN for */
634 if (userAccountControl & (UF_SERVER_TRUST_ACCOUNT | UF_PARTIAL_SECRETS_ACCOUNT)) {
635 ret = dsdb_module_find_ntdsguid_for_computer(module, tmp_ctx,
636 req->op.mod.message->dn, &ntds, req);
637 if (ret != LDB_SUCCESS) {
638 ldb_asprintf_errstring(ldb, "Failed to find NTDSDSA objectGuid for %s: %s",
639 ldb_dn_get_linearized(req->op.mod.message->dn),
641 talloc_free(tmp_ctx);
642 return LDB_ERR_OPERATIONS_ERROR;
644 ntds_guid = GUID_string(tmp_ctx, &ntds);
647 for (i=0; i < el->num_values; i++) {
648 ret = acl_validate_spn_value(tmp_ctx,
650 (char *)el->values[i].data,
656 if (ret != LDB_SUCCESS) {
657 talloc_free(tmp_ctx);
661 talloc_free(tmp_ctx);
665 static int acl_add(struct ldb_module *module, struct ldb_request *req)
668 struct ldb_dn *parent = ldb_dn_get_parent(req, req->op.add.message->dn);
669 struct ldb_context *ldb;
670 const struct dsdb_schema *schema;
671 struct ldb_message_element *oc_el;
672 const struct GUID *guid;
673 struct ldb_dn *nc_root;
674 struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
676 if (as_system != NULL) {
677 as_system->critical = 0;
680 if (dsdb_module_am_system(module) || as_system) {
681 return ldb_next_request(module, req);
683 if (ldb_dn_is_special(req->op.add.message->dn)) {
684 return ldb_next_request(module, req);
687 ldb = ldb_module_get_ctx(module);
689 /* Creating an NC. There is probably something we should do here,
690 * but we will establish that later */
692 ret = dsdb_find_nc_root(ldb, req, req->op.add.message->dn, &nc_root);
693 if (ret != LDB_SUCCESS) {
696 if (ldb_dn_compare(nc_root, req->op.add.message->dn) == 0) {
697 talloc_free(nc_root);
698 return ldb_next_request(module, req);
700 talloc_free(nc_root);
702 schema = dsdb_get_schema(ldb, req);
704 return ldb_operr(ldb);
707 oc_el = ldb_msg_find_element(req->op.add.message, "objectClass");
708 if (!oc_el || oc_el->num_values == 0) {
709 DEBUG(10,("acl:operation error %s\n", ldb_dn_get_linearized(req->op.add.message->dn)));
710 return ldb_module_done(req, NULL, NULL, LDB_ERR_OPERATIONS_ERROR);
713 guid = class_schemaid_guid_by_lDAPDisplayName(schema,
714 (char *)oc_el->values[oc_el->num_values-1].data);
715 ret = dsdb_module_check_access_on_dn(module, req, parent, SEC_ADS_CREATE_CHILD, guid, req);
716 if (ret != LDB_SUCCESS) {
719 return ldb_next_request(module, req);
722 /* ckecks if modifications are allowed on "Member" attribute */
723 static int acl_check_self_membership(TALLOC_CTX *mem_ctx,
724 struct ldb_module *module,
725 struct ldb_request *req,
726 struct security_descriptor *sd,
728 const struct GUID *oc_guid,
729 const struct dsdb_attribute *attr)
733 struct ldb_context *ldb = ldb_module_get_ctx(module);
734 struct ldb_dn *user_dn;
735 struct ldb_message_element *member_el;
736 /* if we have wp, we can do whatever we like */
737 if (acl_check_access_on_attribute(module,
742 attr) == LDB_SUCCESS) {
745 /* if we are adding/deleting ourselves, check for self membership */
746 ret = dsdb_find_dn_by_sid(ldb, mem_ctx,
747 &acl_user_token(module)->sids[PRIMARY_USER_SID_INDEX],
749 if (ret != LDB_SUCCESS) {
752 member_el = ldb_msg_find_element(req->op.mod.message, "member");
754 return ldb_operr(ldb);
756 /* user can only remove oneself */
757 if (member_el->num_values == 0) {
758 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
760 for (i = 0; i < member_el->num_values; i++) {
761 if (strcasecmp((const char *)member_el->values[i].data,
762 ldb_dn_get_extended_linearized(mem_ctx, user_dn, 1)) != 0) {
763 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
766 ret = acl_check_extended_right(mem_ctx, sd, acl_user_token(module),
767 GUID_DRS_SELF_MEMBERSHIP,
770 if (ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS) {
771 dsdb_acl_debug(sd, acl_user_token(module),
772 req->op.mod.message->dn,
779 static int acl_check_password_rights(TALLOC_CTX *mem_ctx,
780 struct ldb_module *module,
781 struct ldb_request *req,
782 struct security_descriptor *sd,
784 const struct GUID *oc_guid,
787 int ret = LDB_SUCCESS;
788 unsigned int del_attr_cnt = 0, add_attr_cnt = 0, rep_attr_cnt = 0;
789 struct ldb_message_element *el;
790 struct ldb_message *msg;
791 const char *passwordAttrs[] = { "userPassword", "clearTextPassword",
792 "unicodePwd", "dBCSPwd", NULL }, **l;
793 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
795 msg = ldb_msg_copy_shallow(tmp_ctx, req->op.mod.message);
797 return ldb_module_oom(module);
799 for (l = passwordAttrs; *l != NULL; l++) {
800 if ((!userPassword) && (ldb_attr_cmp(*l, "userPassword") == 0)) {
804 while ((el = ldb_msg_find_element(msg, *l)) != NULL) {
805 if (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE) {
808 if (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_ADD) {
811 if (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) {
814 ldb_msg_remove_element(msg, el);
818 /* single deletes will be handled by the "password_hash" LDB module
819 * later in the stack, so we let it though here */
820 if ((del_attr_cnt > 0) && (add_attr_cnt == 0) && (rep_attr_cnt == 0)) {
821 talloc_free(tmp_ctx);
825 if (ldb_request_get_control(req,
826 DSDB_CONTROL_PASSWORD_CHANGE_OID) != NULL) {
827 /* The "DSDB_CONTROL_PASSWORD_CHANGE_OID" control means that we
828 * have a user password change and not a set as the message
829 * looks like. In it's value blob it contains the NT and/or LM
830 * hash of the old password specified by the user.
831 * This control is used by the SAMR and "kpasswd" password
832 * change mechanisms. */
833 ret = acl_check_extended_right(tmp_ctx, sd, acl_user_token(module),
834 GUID_DRS_USER_CHANGE_PASSWORD,
835 SEC_ADS_CONTROL_ACCESS,
838 else if (rep_attr_cnt > 0 || (add_attr_cnt != del_attr_cnt)) {
839 ret = acl_check_extended_right(tmp_ctx, sd, acl_user_token(module),
840 GUID_DRS_FORCE_CHANGE_PASSWORD,
841 SEC_ADS_CONTROL_ACCESS,
844 else if (add_attr_cnt == 1 && del_attr_cnt == 1) {
845 ret = acl_check_extended_right(tmp_ctx, sd, acl_user_token(module),
846 GUID_DRS_USER_CHANGE_PASSWORD,
847 SEC_ADS_CONTROL_ACCESS,
849 /* Very strange, but we get constraint violation in this case */
850 if (ret == LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS) {
851 ret = LDB_ERR_CONSTRAINT_VIOLATION;
854 if (ret != LDB_SUCCESS) {
855 dsdb_acl_debug(sd, acl_user_token(module),
856 req->op.mod.message->dn,
860 talloc_free(tmp_ctx);
864 static int acl_modify(struct ldb_module *module, struct ldb_request *req)
867 struct ldb_context *ldb = ldb_module_get_ctx(module);
868 const struct dsdb_schema *schema;
870 const struct GUID *guid;
871 uint32_t access_granted;
872 struct object_tree *root = NULL;
873 struct object_tree *new_node = NULL;
875 struct ldb_result *acl_res;
876 struct security_descriptor *sd;
877 struct dom_sid *sid = NULL;
878 struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
879 bool userPassword = dsdb_user_password_support(module, req, req);
880 TALLOC_CTX *tmp_ctx = talloc_new(req);
881 static const char *acl_attrs[] = {
882 "nTSecurityDescriptor",
888 if (as_system != NULL) {
889 as_system->critical = 0;
892 /* Don't print this debug statement if elements[0].name is going to be NULL */
893 if(req->op.mod.message->num_elements > 0)
895 DEBUG(10, ("ldb:acl_modify: %s\n", req->op.mod.message->elements[0].name));
897 if (dsdb_module_am_system(module) || as_system) {
898 return ldb_next_request(module, req);
900 if (ldb_dn_is_special(req->op.mod.message->dn)) {
901 return ldb_next_request(module, req);
903 ret = dsdb_module_search_dn(module, tmp_ctx, &acl_res, req->op.mod.message->dn,
905 DSDB_FLAG_NEXT_MODULE | DSDB_SEARCH_SHOW_DELETED,
908 if (ret != LDB_SUCCESS) {
912 schema = dsdb_get_schema(ldb, tmp_ctx);
914 ret = LDB_ERR_OPERATIONS_ERROR;
918 ret = dsdb_get_sd_from_ldb_message(ldb, tmp_ctx, acl_res->msgs[0], &sd);
919 if (ret != LDB_SUCCESS) {
920 talloc_free(tmp_ctx);
921 return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR,
922 "acl_modify: Error retrieving security descriptor.");
924 /* Theoretically we pass the check if the object has no sd */
929 guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
931 talloc_free(tmp_ctx);
932 return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR,
933 "acl_modify: Error retrieving object class GUID.");
935 sid = samdb_result_dom_sid(req, acl_res->msgs[0], "objectSid");
936 if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
938 talloc_free(tmp_ctx);
939 return ldb_error(ldb, LDB_ERR_OPERATIONS_ERROR,
940 "acl_modify: Error adding new node in object tree.");
942 for (i=0; i < req->op.mod.message->num_elements; i++){
943 const struct dsdb_attribute *attr;
944 attr = dsdb_attribute_by_lDAPDisplayName(schema,
945 req->op.mod.message->elements[i].name);
947 if (ldb_attr_cmp("nTSecurityDescriptor", req->op.mod.message->elements[i].name) == 0) {
948 status = sec_access_check_ds(sd, acl_user_token(module),
954 if (!NT_STATUS_IS_OK(status)) {
955 DEBUG(10, ("Object %s has no write dacl access\n",
956 ldb_dn_get_linearized(req->op.mod.message->dn)));
958 acl_user_token(module),
959 req->op.mod.message->dn,
962 ret = LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
966 else if (ldb_attr_cmp("member", req->op.mod.message->elements[i].name) == 0) {
967 ret = acl_check_self_membership(tmp_ctx,
974 if (ret != LDB_SUCCESS) {
978 else if (ldb_attr_cmp("dBCSPwd", req->op.mod.message->elements[i].name) == 0) {
979 /* this one is not affected by any rights, we should let it through
980 so that passwords_hash returns the correct error */
983 else if (ldb_attr_cmp("unicodePwd", req->op.mod.message->elements[i].name) == 0 ||
984 (userPassword && ldb_attr_cmp("userPassword", req->op.mod.message->elements[i].name) == 0) ||
985 ldb_attr_cmp("clearTextPassword", req->op.mod.message->elements[i].name) == 0) {
986 ret = acl_check_password_rights(tmp_ctx,
993 if (ret != LDB_SUCCESS) {
996 } else if (ldb_attr_cmp("servicePrincipalName", req->op.mod.message->elements[i].name) == 0) {
997 ret = acl_check_spn(tmp_ctx,
1004 if (ret != LDB_SUCCESS) {
1009 /* This basic attribute existence check with the right errorcode
1010 * is needed since this module is the first one which requests
1011 * schema attribute information.
1012 * The complete attribute checking is done in the
1013 * "objectclass_attrs" module behind this one.
1016 ldb_asprintf_errstring(ldb, "acl_modify: attribute '%s' on entry '%s' was not found in the schema!",
1017 req->op.mod.message->elements[i].name,
1018 ldb_dn_get_linearized(req->op.mod.message->dn));
1019 ret = LDB_ERR_NO_SUCH_ATTRIBUTE;
1022 if (!insert_in_object_tree(tmp_ctx,
1023 &attr->attributeSecurityGUID, SEC_ADS_WRITE_PROP,
1024 &new_node, &new_node)) {
1025 DEBUG(10, ("acl_modify: cannot add to object tree securityGUID\n"));
1026 ret = LDB_ERR_OPERATIONS_ERROR;
1030 if (!insert_in_object_tree(tmp_ctx,
1031 &attr->schemaIDGUID, SEC_ADS_WRITE_PROP, &new_node, &new_node)) {
1032 DEBUG(10, ("acl_modify: cannot add to object tree attributeGUID\n"));
1033 ret = LDB_ERR_OPERATIONS_ERROR;
1039 if (root->num_of_children > 0) {
1040 status = sec_access_check_ds(sd, acl_user_token(module),
1046 if (!NT_STATUS_IS_OK(status)) {
1047 DEBUG(10, ("Object %s has no write property access\n",
1048 ldb_dn_get_linearized(req->op.mod.message->dn)));
1050 acl_user_token(module),
1051 req->op.mod.message->dn,
1054 ret = LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
1060 talloc_free(tmp_ctx);
1061 return ldb_next_request(module, req);
1063 talloc_free(tmp_ctx);
1067 /* similar to the modify for the time being.
1068 * We need to consider the special delete tree case, though - TODO */
1069 static int acl_delete(struct ldb_module *module, struct ldb_request *req)
1072 struct ldb_dn *parent = ldb_dn_get_parent(req, req->op.del.dn);
1073 struct ldb_context *ldb;
1074 struct ldb_dn *nc_root;
1075 struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
1077 if (as_system != NULL) {
1078 as_system->critical = 0;
1081 DEBUG(10, ("ldb:acl_delete: %s\n", ldb_dn_get_linearized(req->op.del.dn)));
1082 if (dsdb_module_am_system(module) || as_system) {
1083 return ldb_next_request(module, req);
1085 if (ldb_dn_is_special(req->op.del.dn)) {
1086 return ldb_next_request(module, req);
1089 ldb = ldb_module_get_ctx(module);
1091 /* Make sure we aren't deleting a NC */
1093 ret = dsdb_find_nc_root(ldb, req, req->op.del.dn, &nc_root);
1094 if (ret != LDB_SUCCESS) {
1097 if (ldb_dn_compare(nc_root, req->op.del.dn) == 0) {
1098 talloc_free(nc_root);
1099 DEBUG(10,("acl:deleting a NC\n"));
1100 /* Windows returns "ERR_UNWILLING_TO_PERFORM */
1101 return ldb_module_done(req, NULL, NULL,
1102 LDB_ERR_UNWILLING_TO_PERFORM);
1104 talloc_free(nc_root);
1106 /* First check if we have delete object right */
1107 ret = dsdb_module_check_access_on_dn(module, req, req->op.del.dn,
1108 SEC_STD_DELETE, NULL, req);
1109 if (ret == LDB_SUCCESS) {
1110 return ldb_next_request(module, req);
1113 /* Nope, we don't have delete object. Lets check if we have delete
1114 * child on the parent */
1115 ret = dsdb_module_check_access_on_dn(module, req, parent,
1116 SEC_ADS_DELETE_CHILD, NULL, req);
1117 if (ret != LDB_SUCCESS) {
1121 return ldb_next_request(module, req);
1124 static int acl_rename(struct ldb_module *module, struct ldb_request *req)
1127 struct ldb_dn *oldparent = ldb_dn_get_parent(req, req->op.rename.olddn);
1128 struct ldb_dn *newparent = ldb_dn_get_parent(req, req->op.rename.newdn);
1129 const struct dsdb_schema *schema;
1130 struct ldb_context *ldb;
1131 struct security_descriptor *sd = NULL;
1132 struct dom_sid *sid = NULL;
1133 struct ldb_result *acl_res;
1134 const struct GUID *guid;
1135 struct ldb_dn *nc_root;
1136 struct object_tree *root = NULL;
1137 struct object_tree *new_node = NULL;
1138 struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
1139 TALLOC_CTX *tmp_ctx = talloc_new(req);
1141 uint32_t access_granted;
1142 const char *rdn_name;
1143 static const char *acl_attrs[] = {
1144 "nTSecurityDescriptor",
1150 if (as_system != NULL) {
1151 as_system->critical = 0;
1154 DEBUG(10, ("ldb:acl_rename: %s\n", ldb_dn_get_linearized(req->op.rename.olddn)));
1155 if (dsdb_module_am_system(module) || as_system) {
1156 return ldb_next_request(module, req);
1158 if (ldb_dn_is_special(req->op.rename.olddn)) {
1159 return ldb_next_request(module, req);
1162 ldb = ldb_module_get_ctx(module);
1164 /* Make sure we aren't renaming/moving a NC */
1166 ret = dsdb_find_nc_root(ldb, req, req->op.rename.olddn, &nc_root);
1167 if (ret != LDB_SUCCESS) {
1170 if (ldb_dn_compare(nc_root, req->op.rename.olddn) == 0) {
1171 talloc_free(nc_root);
1172 DEBUG(10,("acl:renaming/moving a NC\n"));
1173 /* Windows returns "ERR_UNWILLING_TO_PERFORM */
1174 return ldb_module_done(req, NULL, NULL,
1175 LDB_ERR_UNWILLING_TO_PERFORM);
1177 talloc_free(nc_root);
1179 /* Look for the parent */
1181 ret = dsdb_module_search_dn(module, tmp_ctx, &acl_res,
1182 req->op.rename.olddn, acl_attrs,
1183 DSDB_FLAG_NEXT_MODULE |
1184 DSDB_SEARCH_SHOW_RECYCLED, req);
1185 /* we sould be able to find the parent */
1186 if (ret != LDB_SUCCESS) {
1187 DEBUG(10,("acl: failed to find object %s\n",
1188 ldb_dn_get_linearized(req->op.rename.olddn)));
1189 talloc_free(tmp_ctx);
1193 schema = dsdb_get_schema(ldb, acl_res);
1195 talloc_free(tmp_ctx);
1196 return ldb_operr(ldb);
1199 guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
1200 if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
1201 &root, &new_node)) {
1202 talloc_free(tmp_ctx);
1203 return ldb_operr(ldb);
1206 guid = attribute_schemaid_guid_by_lDAPDisplayName(schema,
1208 if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
1209 &new_node, &new_node)) {
1210 talloc_free(tmp_ctx);
1211 return ldb_operr(ldb);
1214 rdn_name = ldb_dn_get_rdn_name(req->op.rename.olddn);
1215 if (rdn_name == NULL) {
1216 talloc_free(tmp_ctx);
1217 return ldb_operr(ldb);
1219 guid = attribute_schemaid_guid_by_lDAPDisplayName(schema,
1221 if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
1222 &new_node, &new_node)) {
1223 talloc_free(tmp_ctx);
1224 return ldb_operr(ldb);
1227 ret = dsdb_get_sd_from_ldb_message(ldb, req, acl_res->msgs[0], &sd);
1229 if (ret != LDB_SUCCESS) {
1230 talloc_free(tmp_ctx);
1231 return ldb_operr(ldb);
1233 /* Theoretically we pass the check if the object has no sd */
1235 talloc_free(tmp_ctx);
1238 sid = samdb_result_dom_sid(req, acl_res->msgs[0], "objectSid");
1239 status = sec_access_check_ds(sd, acl_user_token(module),
1245 if (!NT_STATUS_IS_OK(status)) {
1246 DEBUG(10, ("Object %s has no wp on name\n",
1247 ldb_dn_get_linearized(req->op.rename.olddn)));
1249 acl_user_token(module),
1250 req->op.rename.olddn,
1253 talloc_free(tmp_ctx);
1254 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
1257 if (ldb_dn_compare(oldparent, newparent) == 0) {
1258 /* regular rename, not move, nothing more to do */
1259 talloc_free(tmp_ctx);
1260 return ldb_next_request(module, req);
1263 /* new parent should have create child */
1266 guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
1268 DEBUG(10,("acl:renamed object has no object class\n"));
1269 talloc_free(tmp_ctx);
1270 return ldb_module_done(req, NULL, NULL, LDB_ERR_OPERATIONS_ERROR);
1273 ret = dsdb_module_check_access_on_dn(module, req, newparent, SEC_ADS_CREATE_CHILD, guid, req);
1274 if (ret != LDB_SUCCESS) {
1275 DEBUG(10,("acl:access_denied renaming %s", ldb_dn_get_linearized(req->op.rename.olddn)));
1276 talloc_free(tmp_ctx);
1279 /* do we have delete object on the object? */
1281 status = sec_access_check_ds(sd, acl_user_token(module),
1287 if (NT_STATUS_IS_OK(status)) {
1288 talloc_free(tmp_ctx);
1289 return ldb_next_request(module, req);
1291 /* what about delete child on the current parent */
1292 ret = dsdb_module_check_access_on_dn(module, req, oldparent, SEC_ADS_DELETE_CHILD, NULL, req);
1293 if (ret != LDB_SUCCESS) {
1294 DEBUG(10,("acl:access_denied renaming %s", ldb_dn_get_linearized(req->op.rename.olddn)));
1295 talloc_free(tmp_ctx);
1296 return ldb_module_done(req, NULL, NULL, ret);
1299 talloc_free(tmp_ctx);
1301 return ldb_next_request(module, req);
1304 static int acl_search_callback(struct ldb_request *req, struct ldb_reply *ares)
1306 struct ldb_context *ldb;
1307 struct acl_context *ac;
1308 struct acl_private *data;
1309 struct ldb_result *acl_res;
1310 static const char *acl_attrs[] = {
1312 "nTSecurityDescriptor",
1319 ac = talloc_get_type(req->context, struct acl_context);
1320 data = talloc_get_type(ldb_module_get_private(ac->module), struct acl_private);
1321 ldb = ldb_module_get_ctx(ac->module);
1324 return ldb_module_done(ac->req, NULL, NULL,
1325 LDB_ERR_OPERATIONS_ERROR);
1327 if (ares->error != LDB_SUCCESS) {
1328 return ldb_module_done(ac->req, ares->controls,
1329 ares->response, ares->error);
1332 switch (ares->type) {
1333 case LDB_REPLY_ENTRY:
1334 if (ac->allowedAttributes
1335 || ac->allowedChildClasses
1336 || ac->allowedChildClassesEffective
1337 || ac->allowedAttributesEffective
1338 || ac->sDRightsEffective) {
1339 ret = dsdb_module_search_dn(ac->module, ac, &acl_res, ares->message->dn,
1341 DSDB_FLAG_NEXT_MODULE |
1342 DSDB_SEARCH_SHOW_DELETED, req);
1343 if (ret != LDB_SUCCESS) {
1344 return ldb_module_done(ac->req, NULL, NULL, ret);
1346 if (ac->allowedAttributes || ac->allowedAttributesEffective) {
1347 ret = acl_allowedAttributes(ac->module, ac->schema, acl_res->msgs[0], ares->message, ac);
1348 if (ret != LDB_SUCCESS) {
1349 return ldb_module_done(ac->req, NULL, NULL, ret);
1352 if (ac->allowedChildClasses) {
1353 ret = acl_childClasses(ac->module, ac->schema, acl_res->msgs[0],
1354 ares->message, "allowedChildClasses");
1355 if (ret != LDB_SUCCESS) {
1356 return ldb_module_done(ac->req, NULL, NULL, ret);
1359 if (ac->allowedChildClassesEffective) {
1360 ret = acl_childClassesEffective(ac->module, ac->schema,
1361 acl_res->msgs[0], ares->message, ac);
1362 if (ret != LDB_SUCCESS) {
1363 return ldb_module_done(ac->req, NULL, NULL, ret);
1366 if (ac->sDRightsEffective) {
1367 ret = acl_sDRightsEffective(ac->module,
1368 acl_res->msgs[0], ares->message, ac);
1369 if (ret != LDB_SUCCESS) {
1370 return ldb_module_done(ac->req, NULL, NULL, ret);
1374 if (data && data->password_attrs) {
1375 if (!ac->am_system) {
1376 for (i = 0; data->password_attrs[i]; i++) {
1377 if ((!ac->userPassword) &&
1378 (ldb_attr_cmp(data->password_attrs[i],
1379 "userPassword") == 0))
1382 ldb_msg_remove_attr(ares->message, data->password_attrs[i]);
1386 return ldb_module_send_entry(ac->req, ares->message, ares->controls);
1388 case LDB_REPLY_REFERRAL:
1389 return ldb_module_send_referral(ac->req, ares->referral);
1391 case LDB_REPLY_DONE:
1392 return ldb_module_done(ac->req, ares->controls,
1393 ares->response, LDB_SUCCESS);
1399 static int acl_search(struct ldb_module *module, struct ldb_request *req)
1401 struct ldb_context *ldb;
1402 struct acl_context *ac;
1403 struct ldb_request *down_req;
1404 struct acl_private *data;
1408 ldb = ldb_module_get_ctx(module);
1410 ac = talloc_zero(req, struct acl_context);
1412 return ldb_oom(ldb);
1414 data = talloc_get_type(ldb_module_get_private(module), struct acl_private);
1416 ac->module = module;
1418 ac->am_system = dsdb_module_am_system(module);
1419 ac->allowedAttributes = ldb_attr_in_list(req->op.search.attrs, "allowedAttributes");
1420 ac->allowedAttributesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedAttributesEffective");
1421 ac->allowedChildClasses = ldb_attr_in_list(req->op.search.attrs, "allowedChildClasses");
1422 ac->allowedChildClassesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedChildClassesEffective");
1423 ac->sDRightsEffective = ldb_attr_in_list(req->op.search.attrs, "sDRightsEffective");
1424 ac->userPassword = dsdb_user_password_support(module, ac, req);
1425 ac->schema = dsdb_get_schema(ldb, ac);
1427 /* replace any attributes in the parse tree that are private,
1428 so we don't allow a search for 'userPassword=penguin',
1429 just as we would not allow that attribute to be returned */
1430 if (ac->am_system) {
1431 /* FIXME: We should copy the tree and keep the original unmodified. */
1432 /* remove password attributes */
1433 if (data && data->password_attrs) {
1434 for (i = 0; data->password_attrs[i]; i++) {
1435 if ((!ac->userPassword) &&
1436 (ldb_attr_cmp(data->password_attrs[i],
1437 "userPassword") == 0))
1440 ldb_parse_tree_attr_replace(req->op.search.tree,
1441 data->password_attrs[i],
1442 "kludgeACLredactedattribute");
1446 ret = ldb_build_search_req_ex(&down_req,
1448 req->op.search.base,
1449 req->op.search.scope,
1450 req->op.search.tree,
1451 req->op.search.attrs,
1453 ac, acl_search_callback,
1455 LDB_REQ_SET_LOCATION(down_req);
1456 if (ret != LDB_SUCCESS) {
1459 /* perform the search */
1460 return ldb_next_request(module, down_req);
1463 static int acl_extended(struct ldb_module *module, struct ldb_request *req)
1465 struct ldb_context *ldb = ldb_module_get_ctx(module);
1466 struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
1468 /* allow everybody to read the sequence number */
1469 if (strcmp(req->op.extended.oid,
1470 LDB_EXTENDED_SEQUENCE_NUMBER) == 0) {
1471 return ldb_next_request(module, req);
1474 if (dsdb_module_am_system(module) ||
1475 dsdb_module_am_administrator(module) || as_system) {
1476 return ldb_next_request(module, req);
1478 ldb_asprintf_errstring(ldb,
1480 "attempted database modify not permitted. "
1481 "User %s is not SYSTEM or an administrator",
1482 acl_user_name(req, module));
1483 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
1487 static const struct ldb_module_ops ldb_acl_module_ops = {
1489 .search = acl_search,
1491 .modify = acl_modify,
1493 .rename = acl_rename,
1494 .extended = acl_extended,
1495 .init_context = acl_module_init
1498 int ldb_acl_module_init(const char *version)
1500 LDB_MODULE_CHECK_VERSION(version);
1501 return ldb_register_module(&ldb_acl_module_ops);