46644daeb3244aef7c219cb001c5e7990605f034
[ira/wip.git] / source4 / dsdb / samdb / ldb_modules / acl.c
1 /*
2   ldb database library
3
4   Copyright (C) Simo Sorce 2006-2008
5   Copyright (C) Nadezhda Ivanova 2009
6   Copyright (C) Anatoliy Atanasov  2009
7
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.
12
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.
17
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/>.
20 */
21
22 /*
23  *  Name: ldb
24  *
25  *  Component: ldb ACL module
26  *
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
30  *
31  *  Authors: Nadezhda Ivanova, Anatoliy Atanasov
32  */
33
34 #include "includes.h"
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 "lib/util/tsort.h"
43
44 struct extended_access_check_attribute {
45         const char *oa_name;
46         const uint32_t requires_rights;
47 };
48
49 struct acl_private {
50         bool acl_perform;
51         const char **password_attrs;
52 };
53
54 struct acl_context {
55         struct ldb_module *module;
56         struct ldb_request *req;
57         bool am_system;
58         bool allowedAttributes;
59         bool allowedAttributesEffective;
60         bool allowedChildClasses;
61         bool allowedChildClassesEffective;
62         bool sDRightsEffective;
63         const char * const *attrs;
64         struct dsdb_schema *schema;
65 };
66
67 bool is_root_base_dn(struct ldb_context *ldb, struct ldb_dn *dn_to_check)
68 {
69         int result;
70         struct ldb_dn *root_base_dn = ldb_get_root_basedn(ldb);
71         result = ldb_dn_compare(root_base_dn,dn_to_check);
72         return (result==0);
73 }
74
75 static struct security_token *acl_user_token(struct ldb_module *module)
76 {
77         struct ldb_context *ldb = ldb_module_get_ctx(module);
78         struct auth_session_info *session_info
79                 = (struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
80         if(!session_info) {
81                 return NULL;
82         }
83         return session_info->security_token;
84 }
85
86 /* performs an access check from inside the module stack
87  * given the dn of the object to be checked, the required access
88  * guid is either the guid of the extended right, or NULL
89  */
90
91 int dsdb_module_check_access_on_dn(struct ldb_module *module,
92                                    TALLOC_CTX *mem_ctx,
93                                    struct ldb_dn *dn,
94                                    uint32_t access,
95                                    const struct GUID *guid)
96 {
97         int ret;
98         struct ldb_result *acl_res;
99         static const char *acl_attrs[] = {
100                 "nTSecurityDescriptor",
101                 "objectSid",
102                 NULL
103         };
104         struct ldb_context *ldb = ldb_module_get_ctx(module);
105         struct auth_session_info *session_info
106                 = (struct auth_session_info *)ldb_get_opaque(ldb, "sessionInfo");
107         if(!session_info) {
108                 return LDB_ERR_OPERATIONS_ERROR;
109         }
110         ret = dsdb_module_search_dn(module, mem_ctx, &acl_res, dn,
111                                     acl_attrs, DSDB_SEARCH_SHOW_DELETED);
112         if (ret != LDB_SUCCESS) {
113                 DEBUG(10,("access_check: failed to find object %s\n", ldb_dn_get_linearized(dn)));
114                 return ret;
115         }
116         return dsdb_check_access_on_dn_internal(acl_res,
117                                                 mem_ctx,
118                                                 session_info->security_token,
119                                                 dn,
120                                                 access,
121                                                 guid);
122 }
123
124
125 static int acl_module_init(struct ldb_module *module)
126 {
127         struct ldb_context *ldb;
128         struct acl_private *data;
129         int ret, i;
130         TALLOC_CTX *mem_ctx = talloc_new(module);
131         static const char *attrs[] = { "passwordAttribute", NULL };
132         struct ldb_result *res;
133         struct ldb_message *msg;
134         struct ldb_message_element *password_attributes;
135
136         ldb = ldb_module_get_ctx(module);
137
138         ret = ldb_mod_register_control(module, LDB_CONTROL_SD_FLAGS_OID);
139         if (ret != LDB_SUCCESS) {
140                 ldb_debug(ldb, LDB_DEBUG_ERROR,
141                           "acl_module_init: Unable to register control with rootdse!\n");
142                 return LDB_ERR_OPERATIONS_ERROR;
143         }
144
145         data = talloc(module, struct acl_private);
146         if (data == NULL) {
147                 ldb_oom(ldb);
148                 return LDB_ERR_OPERATIONS_ERROR;
149         }
150
151         data->password_attrs = NULL;
152         data->acl_perform = lp_parm_bool(ldb_get_opaque(ldb, "loadparm"),
153                                          NULL, "acl", "perform", false);
154         ldb_module_set_private(module, data);
155
156         if (!mem_ctx) {
157                 ldb_oom(ldb);
158                 return LDB_ERR_OPERATIONS_ERROR;
159         }
160
161         ret = dsdb_module_search_dn(module, mem_ctx, &res,
162                                     ldb_dn_new(mem_ctx, ldb, "@KLUDGEACL"),
163                                     attrs, 0);
164         if (ret != LDB_SUCCESS) {
165                 goto done;
166         }
167         if (res->count == 0) {
168                 goto done;
169         }
170
171         if (res->count > 1) {
172                 talloc_free(mem_ctx);
173                 return LDB_ERR_CONSTRAINT_VIOLATION;
174         }
175
176         msg = res->msgs[0];
177
178         password_attributes = ldb_msg_find_element(msg, "passwordAttribute");
179         if (!password_attributes) {
180                 goto done;
181         }
182         data->password_attrs = talloc_array(data, const char *, password_attributes->num_values + 1);
183         if (!data->password_attrs) {
184                 talloc_free(mem_ctx);
185                 ldb_oom(ldb);
186                 return LDB_ERR_OPERATIONS_ERROR;
187         }
188         for (i=0; i < password_attributes->num_values; i++) {
189                 data->password_attrs[i] = (const char *)password_attributes->values[i].data;
190                 talloc_steal(data->password_attrs, password_attributes->values[i].data);
191         }
192         data->password_attrs[i] = NULL;
193
194 done:
195         talloc_free(mem_ctx);
196         return ldb_next_init(module);
197 }
198
199 static const struct GUID *get_oc_guid_from_message(struct ldb_module *module,
200                                                    const struct dsdb_schema *schema,
201                                                    struct ldb_message *msg)
202 {
203         struct ldb_message_element *oc_el;
204
205         oc_el = ldb_msg_find_element(msg, "objectClass");
206         if (!oc_el) {
207                 return NULL;
208         }
209
210         return class_schemaid_guid_by_lDAPDisplayName(schema,
211                                                       (char *)oc_el->values[oc_el->num_values-1].data);
212 }
213
214 static int acl_check_access_on_attribute(struct ldb_module *module,
215                                          TALLOC_CTX *mem_ctx,
216                                          struct security_descriptor *sd,
217                                          struct dom_sid *rp_sid,
218                                          uint32_t access,
219                                          const struct dsdb_attribute *attr)
220 {
221         int ret;
222         NTSTATUS status;
223         uint32_t access_granted;
224         struct object_tree *root = NULL;
225         struct object_tree *new_node = NULL;
226         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
227         struct security_token *token = acl_user_token(module);
228         if (attr) {
229                 if (!GUID_all_zero(&attr->attributeSecurityGUID)) {
230                         if (!insert_in_object_tree(tmp_ctx,
231                                                    &attr->attributeSecurityGUID, access,
232                                                    &root, &new_node)) {
233                                 DEBUG(10, ("acl_search: cannot add to object tree securityGUID\n"));
234                                 goto fail;
235                         }
236
237                         if (!insert_in_object_tree(tmp_ctx,
238                                                    &attr->schemaIDGUID, access, &new_node, &new_node)) {
239                                 DEBUG(10, ("acl_search: cannot add to object tree attributeGUID\n"));
240                                 goto fail;
241                         }
242                 }
243                 else {
244                         if (!insert_in_object_tree(tmp_ctx,
245                                                    &attr->schemaIDGUID, access, &root, &new_node)) {
246                                 DEBUG(10, ("acl_search: cannot add to object tree attributeGUID\n"));
247                                 goto fail;
248                         }
249                 }
250         }
251         status = sec_access_check_ds(sd, token,
252                                      access,
253                                      &access_granted,
254                                      root,
255                                      rp_sid);
256         if (!NT_STATUS_IS_OK(status)) {
257                 ret = LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
258         }
259         else {
260                 ret = LDB_SUCCESS;
261         }
262         return ret;
263 fail:
264         return LDB_ERR_OPERATIONS_ERROR;
265 }
266
267 static int acl_check_access_on_class(struct ldb_module *module,
268                                      const struct dsdb_schema *schema,
269                                      TALLOC_CTX *mem_ctx,
270                                      struct security_descriptor *sd,
271                                      struct dom_sid *rp_sid,
272                                      uint32_t access,
273                                      const char *class_name)
274 {
275         int ret;
276         NTSTATUS status;
277         uint32_t access_granted;
278         struct object_tree *root = NULL;
279         struct object_tree *new_node = NULL;
280         const struct GUID *guid;
281         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
282         struct security_token *token = acl_user_token(module);
283         if (class_name) {
284                 guid = class_schemaid_guid_by_lDAPDisplayName(schema, class_name);
285                 if (!guid) {
286                         DEBUG(10, ("acl_search: cannot find class %s\n",
287                                    class_name));
288                         goto fail;
289                 }
290                 if (!insert_in_object_tree(tmp_ctx,
291                                            guid, access,
292                                            &root, &new_node)) {
293                         DEBUG(10, ("acl_search: cannot add to object tree guid\n"));
294                         goto fail;
295                 }
296         }
297         status = sec_access_check_ds(sd, token,
298                                      access,
299                                      &access_granted,
300                                      root,
301                                      rp_sid);
302         if (!NT_STATUS_IS_OK(status)) {
303                 ret = LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
304         }
305         else {
306                 ret = LDB_SUCCESS;
307         }
308         return ret;
309 fail:
310         return LDB_ERR_OPERATIONS_ERROR;
311 }
312
313 static int acl_allowedAttributes(struct ldb_module *module,
314                                  const struct dsdb_schema *schema,
315                                  struct ldb_message *sd_msg,
316                                  struct ldb_message *msg,
317                                  struct acl_context *ac)
318 {
319         struct ldb_message_element *oc_el;
320         struct ldb_context *ldb = ldb_module_get_ctx(module);
321         TALLOC_CTX *mem_ctx;
322         const char **attr_list;
323         int i, ret;
324
325         /* If we don't have a schema yet, we can't do anything... */
326         if (schema == NULL) {
327                 ldb_asprintf_errstring(ldb, "cannot add allowedAttributes to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
328                 return LDB_ERR_OPERATIONS_ERROR;
329         }
330
331         /* Must remove any existing attribute */
332         if (ac->allowedAttributes) {
333                 ldb_msg_remove_attr(msg, "allowedAttributes");
334         }
335
336         mem_ctx = talloc_new(msg);
337         if (!mem_ctx) {
338                 ldb_oom(ldb);
339                 return LDB_ERR_OPERATIONS_ERROR;
340         }
341
342         oc_el = ldb_msg_find_element(sd_msg, "objectClass");
343         attr_list = dsdb_full_attribute_list(mem_ctx, schema, oc_el, DSDB_SCHEMA_ALL);
344         if (!attr_list) {
345                 ldb_asprintf_errstring(ldb, "acl: Failed to get list of attributes");
346                 talloc_free(mem_ctx);
347                 return LDB_ERR_OPERATIONS_ERROR;
348         }
349         if (ac->allowedAttributes) {
350                 for (i=0; attr_list && attr_list[i]; i++) {
351                         ldb_msg_add_string(msg, "allowedAttributes", attr_list[i]);
352                 }
353         }
354         if (ac->allowedAttributesEffective) {
355                 struct security_descriptor *sd;
356                 struct dom_sid *sid = NULL;
357                 struct ldb_control *as_system = ldb_request_get_control(ac->req,
358                                                                         LDB_CONTROL_AS_SYSTEM_OID);
359
360                 if (as_system != NULL) {
361                         as_system->critical = 0;
362                 }
363
364                 ldb_msg_remove_attr(msg, "allowedAttributesEffective");
365                 if (ac->am_system || as_system) {
366                         for (i=0; attr_list && attr_list[i]; i++) {
367                                 ldb_msg_add_string(msg, "allowedAttributesEffective", attr_list[i]);
368                         }
369                         return LDB_SUCCESS;
370                 }
371
372                 ret = dsdb_get_sd_from_ldb_message(mem_ctx, sd_msg, &sd);
373
374                 if (ret != LDB_SUCCESS) {
375                         return ret;
376                 }
377
378                 sid = samdb_result_dom_sid(mem_ctx, sd_msg, "objectSid");
379                 for (i=0; attr_list && attr_list[i]; i++) {
380                         const struct dsdb_attribute *attr = dsdb_attribute_by_lDAPDisplayName(schema,
381                                                                                         attr_list[i]);
382                         if (!attr) {
383                                 return LDB_ERR_OPERATIONS_ERROR;
384                         }
385                         /* remove constructed attributes */
386                         if (attr->systemFlags & DS_FLAG_ATTR_IS_CONSTRUCTED
387                             || attr->systemOnly
388                             || (attr->linkID != 0 && attr->linkID % 2 != 0 )) {
389                                 continue;
390                         }
391                         ret = acl_check_access_on_attribute(module,
392                                                             msg,
393                                                             sd,
394                                                             sid,
395                                                             SEC_ADS_WRITE_PROP,
396                                                             attr);
397                         if (ret == LDB_SUCCESS) {
398                                 ldb_msg_add_string(msg, "allowedAttributesEffective", attr_list[i]);
399                         }
400                 }
401         }
402         return LDB_SUCCESS;
403 }
404
405 static int acl_childClasses(struct ldb_module *module,
406                             const struct dsdb_schema *schema,
407                             struct ldb_message *sd_msg,
408                             struct ldb_message *msg,
409                             const char *attrName)
410 {
411         struct ldb_message_element *oc_el;
412         struct ldb_message_element *allowedClasses;
413         const struct dsdb_class *sclass;
414         unsigned int i, j;
415         int ret;
416
417         /* If we don't have a schema yet, we can't do anything... */
418         if (schema == NULL) {
419                 ldb_asprintf_errstring(ldb_module_get_ctx(module), "cannot add childClassesEffective to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
420                 return LDB_ERR_OPERATIONS_ERROR;
421         }
422
423         /* Must remove any existing attribute, or else confusion reins */
424         ldb_msg_remove_attr(msg, attrName);
425         ret = ldb_msg_add_empty(msg, attrName, 0, &allowedClasses);
426         if (ret != LDB_SUCCESS) {
427                 return ret;
428         }
429
430         oc_el = ldb_msg_find_element(sd_msg, "objectClass");
431
432         for (i=0; oc_el && i < oc_el->num_values; i++) {
433                 sclass = dsdb_class_by_lDAPDisplayName_ldb_val(schema, &oc_el->values[i]);
434                 if (!sclass) {
435                         /* We don't know this class?  what is going on? */
436                         continue;
437                 }
438
439                 for (j=0; sclass->possibleInferiors && sclass->possibleInferiors[j]; j++) {
440                         ldb_msg_add_string(msg, attrName, sclass->possibleInferiors[j]);
441                 }
442         }
443         if (allowedClasses->num_values > 1) {
444                 TYPESAFE_QSORT(allowedClasses->values, allowedClasses->num_values, data_blob_cmp);
445                 for (i=1 ; i < allowedClasses->num_values; i++) {
446                         struct ldb_val *val1 = &allowedClasses->values[i-1];
447                         struct ldb_val *val2 = &allowedClasses->values[i];
448                         if (data_blob_cmp(val1, val2) == 0) {
449                                 memmove(val1, val2, (allowedClasses->num_values - i) * sizeof(struct ldb_val));
450                                 allowedClasses->num_values--;
451                                 i--;
452                         }
453                 }
454         }
455
456         return LDB_SUCCESS;
457 }
458
459 static int acl_childClassesEffective(struct ldb_module *module,
460                                      const struct dsdb_schema *schema,
461                                      struct ldb_message *sd_msg,
462                                      struct ldb_message *msg,
463                                      struct acl_context *ac)
464 {
465         struct ldb_message_element *oc_el;
466         struct ldb_message_element *allowedClasses = NULL;
467         const struct dsdb_class *sclass;
468         struct security_descriptor *sd;
469         struct ldb_control *as_system = ldb_request_get_control(ac->req,
470                                                                 LDB_CONTROL_AS_SYSTEM_OID);
471         struct dom_sid *sid = NULL;
472         unsigned int i, j;
473         int ret;
474
475         if (as_system != NULL) {
476                 as_system->critical = 0;
477         }
478
479         if (ac->am_system || as_system) {
480                 return acl_childClasses(module, schema, sd_msg, msg, "allowedChildClassesEffective");
481         }
482
483         /* If we don't have a schema yet, we can't do anything... */
484         if (schema == NULL) {
485                 ldb_asprintf_errstring(ldb_module_get_ctx(module), "cannot add allowedChildClassesEffective to %s because no schema is loaded", ldb_dn_get_linearized(msg->dn));
486                 return LDB_ERR_OPERATIONS_ERROR;
487         }
488
489         /* Must remove any existing attribute, or else confusion reins */
490         ldb_msg_remove_attr(msg, "allowedChildClassesEffective");
491
492         oc_el = ldb_msg_find_element(sd_msg, "objectClass");
493         ret = dsdb_get_sd_from_ldb_message(msg, sd_msg, &sd);
494         if (ret != LDB_SUCCESS) {
495                 return ret;
496         }
497
498         sid = samdb_result_dom_sid(msg, sd_msg, "objectSid");
499         for (i=0; oc_el && i < oc_el->num_values; i++) {
500                 sclass = dsdb_class_by_lDAPDisplayName_ldb_val(schema, &oc_el->values[i]);
501                 if (!sclass) {
502                         /* We don't know this class?  what is going on? */
503                         continue;
504                 }
505
506                 for (j=0; sclass->possibleInferiors && sclass->possibleInferiors[j]; j++) {
507                         ret = acl_check_access_on_class(module,
508                                                         schema,
509                                                         msg,
510                                                         sd,
511                                                         sid,
512                                                         SEC_ADS_CREATE_CHILD,
513                                                         sclass->possibleInferiors[j]);
514                         if (ret == LDB_SUCCESS) {
515                                 ldb_msg_add_string(msg, "allowedChildClassesEffective",
516                                                    sclass->possibleInferiors[j]);
517                         }
518                 }
519         }
520         allowedClasses = ldb_msg_find_element(msg, "allowedChildClassesEffective");
521         if (!allowedClasses) {
522                 return LDB_SUCCESS;
523         }
524
525         if (allowedClasses->num_values > 1) {
526                 TYPESAFE_QSORT(allowedClasses->values, allowedClasses->num_values, data_blob_cmp);
527                 for (i=1 ; i < allowedClasses->num_values; i++) {
528                         struct ldb_val *val1 = &allowedClasses->values[i-1];
529                         struct ldb_val *val2 = &allowedClasses->values[i];
530                         if (data_blob_cmp(val1, val2) == 0) {
531                                 memmove(val1, val2, (allowedClasses->num_values - i) * sizeof( struct ldb_val));
532                                 allowedClasses->num_values--;
533                                 i--;
534                         }
535                 }
536         }
537         return LDB_SUCCESS;
538 }
539
540 static int acl_sDRightsEffective(struct ldb_module *module,
541                                  struct ldb_message *sd_msg,
542                                  struct ldb_message *msg,
543                                  struct acl_context *ac)
544 {
545         struct ldb_message_element *rightsEffective;
546         int ret;
547         struct security_descriptor *sd;
548         struct ldb_control *as_system = ldb_request_get_control(ac->req,
549                                                                 LDB_CONTROL_AS_SYSTEM_OID);
550         struct dom_sid *sid = NULL;
551         uint32_t flags = 0;
552
553         if (as_system != NULL) {
554                 as_system->critical = 0;
555         }
556
557         /* Must remove any existing attribute, or else confusion reins */
558         ldb_msg_remove_attr(msg, "sDRightsEffective");
559         ret = ldb_msg_add_empty(msg, "sDRightsEffective", 0, &rightsEffective);
560         if (ret != LDB_SUCCESS) {
561                 return ret;
562         }
563         if (ac->am_system || as_system) {
564                 flags = SECINFO_OWNER | SECINFO_GROUP |  SECINFO_SACL |  SECINFO_DACL;
565         }
566         else {
567                 /* Get the security descriptor from the message */
568                 ret = dsdb_get_sd_from_ldb_message(msg, sd_msg, &sd);
569                 if (ret != LDB_SUCCESS) {
570                         return ret;
571                 }
572                 sid = samdb_result_dom_sid(msg, sd_msg, "objectSid");
573                 ret = acl_check_access_on_attribute(module,
574                                                     msg,
575                                                     sd,
576                                                     sid,
577                                                     SEC_STD_WRITE_OWNER,
578                                                     NULL);
579                 if (ret == LDB_SUCCESS) {
580                         flags |= SECINFO_OWNER | SECINFO_GROUP;
581                 }
582                 ret = acl_check_access_on_attribute(module,
583                                                     msg,
584                                                     sd,
585                                                     sid,
586                                                     SEC_STD_WRITE_DAC,
587                                                     NULL);
588                 if (ret == LDB_SUCCESS) {
589                         flags |= SECINFO_DACL;
590                 }
591                 ret = acl_check_access_on_attribute(module,
592                                                     msg,
593                                                     sd,
594                                                     sid,
595                                                     SEC_FLAG_SYSTEM_SECURITY,
596                                                     NULL);
597                 if (ret == LDB_SUCCESS) {
598                         flags |= SECINFO_SACL;
599                 }
600         }
601         ldb_msg_add_fmt(msg, "sDRightsEffective", "%u", flags);
602         return LDB_SUCCESS;
603 }
604
605 static int acl_add(struct ldb_module *module, struct ldb_request *req)
606 {
607         int ret;
608         struct ldb_dn *parent = ldb_dn_get_parent(req, req->op.add.message->dn);
609         struct ldb_context *ldb;
610         const struct dsdb_schema *schema;
611         struct ldb_message_element *oc_el;
612         const struct GUID *guid;
613         struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
614
615         if (as_system != NULL) {
616                 as_system->critical = 0;
617         }
618
619         if (dsdb_module_am_system(module) || as_system) {
620                 return ldb_next_request(module, req);
621         }
622
623         if (ldb_dn_is_special(req->op.add.message->dn)) {
624                 return ldb_next_request(module, req);
625         }
626         ldb = ldb_module_get_ctx(module);
627         /* Creating an NC. There is probably something we should do here,
628          * but we will establish that later */
629         /* FIXME: this has to be made dynamic at some point */
630         if ((ldb_dn_compare(req->op.add.message->dn, (ldb_get_schema_basedn(ldb))) == 0) ||
631             (ldb_dn_compare(req->op.add.message->dn, (ldb_get_config_basedn(ldb))) == 0) ||
632             (ldb_dn_compare(req->op.add.message->dn, (ldb_get_default_basedn(ldb))) == 0) ||
633             (ldb_dn_compare(req->op.add.message->dn, (ldb_get_root_basedn(ldb))) == 0)) {
634                 return ldb_next_request(module, req);
635         }
636
637         schema = dsdb_get_schema(ldb, req);
638         if (!schema) {
639                 return LDB_ERR_OPERATIONS_ERROR;
640         }
641
642         oc_el = ldb_msg_find_element(req->op.add.message, "objectClass");
643         if (!oc_el || oc_el->num_values == 0) {
644                 DEBUG(10,("acl:operation error %s\n", ldb_dn_get_linearized(req->op.add.message->dn)));
645                 return ldb_module_done(req, NULL, NULL, LDB_ERR_OPERATIONS_ERROR);
646         }
647
648         guid = class_schemaid_guid_by_lDAPDisplayName(schema,
649                                                       (char *)oc_el->values[oc_el->num_values-1].data);
650         ret = dsdb_module_check_access_on_dn(module, req, parent, SEC_ADS_CREATE_CHILD, guid);
651         if (ret != LDB_SUCCESS) {
652                 return ret;
653         }
654         return ldb_next_request(module, req);
655 }
656
657 static int acl_modify(struct ldb_module *module, struct ldb_request *req)
658 {
659         int ret;
660         struct ldb_context *ldb = ldb_module_get_ctx(module);
661         const struct dsdb_schema *schema;
662         unsigned int i;
663         bool modify_sd = false;
664         const struct GUID *guid;
665         uint32_t access_granted;
666         struct object_tree *root = NULL;
667         struct object_tree *new_node = NULL;
668         NTSTATUS status;
669         struct ldb_result *acl_res;
670         struct security_descriptor *sd;
671         struct dom_sid *sid = NULL;
672         struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
673         TALLOC_CTX *tmp_ctx = talloc_new(req);
674         static const char *acl_attrs[] = {
675                 "nTSecurityDescriptor",
676                 "objectClass",
677                 "objectSid",
678                 NULL
679         };
680
681         if (as_system != NULL) {
682                 as_system->critical = 0;
683         }
684
685         /* Don't print this debug statement if elements[0].name is going to be NULL */
686         if(req->op.mod.message->num_elements > 0)
687         {
688                 DEBUG(10, ("ldb:acl_modify: %s\n", req->op.mod.message->elements[0].name));
689         }
690         if (dsdb_module_am_system(module) || as_system) {
691                 return ldb_next_request(module, req);
692         }
693         if (ldb_dn_is_special(req->op.mod.message->dn)) {
694                 return ldb_next_request(module, req);
695         }
696         ret = dsdb_module_search_dn(module, req, &acl_res, req->op.mod.message->dn,
697                                     acl_attrs, 0);
698
699         if (ret != LDB_SUCCESS) {
700                 return ret;
701         }
702
703         schema = dsdb_get_schema(ldb, acl_res);
704         if (!schema) {
705                 talloc_free(acl_res);
706                 return LDB_ERR_OPERATIONS_ERROR;
707         }
708
709         ret = dsdb_get_sd_from_ldb_message(req, acl_res->msgs[0], &sd);
710         if (ret != LDB_SUCCESS) {
711                 DEBUG(10, ("acl_modify: cannot get descriptor\n"));
712                 return ret;
713         }
714         /* Theoretically we pass the check if the object has no sd */
715         if (!sd) {
716                 return LDB_SUCCESS;
717         }
718
719         guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
720         if (!guid) {
721                 DEBUG(10, ("acl_modify: cannot get guid\n"));
722                 goto fail;
723         }
724         sid = samdb_result_dom_sid(req, acl_res->msgs[0], "objectSid");
725         if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
726                                    &root, &new_node)) {
727                 DEBUG(10, ("acl_modify: cannot add to object tree\n"));
728                 goto fail;
729         }
730         for (i=0; i < req->op.mod.message->num_elements; i++){
731                 const struct dsdb_attribute *attr;
732                 /* clearTextPassword is not in schema */
733                 if (strcmp("clearTextPassword", req->op.mod.message->elements[i].name) == 0) {
734                         attr = dsdb_attribute_by_lDAPDisplayName(schema, "unicodePwd");
735                 } else {
736                         attr = dsdb_attribute_by_lDAPDisplayName(schema,
737                                                                  req->op.mod.message->elements[i].name);
738                 }
739
740                 /* This basic attribute existence check with the right errorcode
741                  * is needed since this module is the first one which requests
742                  * schema attribute informations.
743                  * The complete attribute checking is done in the
744                  * "objectclass_attrs" module behind this one.
745                  */
746                 if (!attr) {
747                         ldb_asprintf_errstring(ldb, "acl_modify: attribute '%s' on entry '%s' was not found in the schema!",
748                                                req->op.mod.message->elements[i].name,
749                                                ldb_dn_get_linearized(req->op.mod.message->dn));
750                         talloc_free(tmp_ctx);
751                         return LDB_ERR_NO_SUCH_ATTRIBUTE;
752                 }
753
754                 if (strcmp("nTSecurityDescriptor", req->op.mod.message->elements[i].name) == 0) {
755                         modify_sd = true;
756                 } else {
757
758                         if (!insert_in_object_tree(tmp_ctx,
759                                                    &attr->attributeSecurityGUID, SEC_ADS_WRITE_PROP,
760                                                    &new_node, &new_node)) {
761                                 DEBUG(10, ("acl_modify: cannot add to object tree securityGUID\n"));
762                                 goto fail;
763                         }
764
765                         if (!insert_in_object_tree(tmp_ctx,
766                                                    &attr->schemaIDGUID, SEC_ADS_WRITE_PROP, &new_node, &new_node)) {
767                                 DEBUG(10, ("acl_modify: cannot add to object tree attributeGUID\n"));
768                                 goto fail;
769                         }
770                 }
771         }
772
773         if (root->num_of_children > 0) {
774                 status = sec_access_check_ds(sd, acl_user_token(module),
775                                              SEC_ADS_WRITE_PROP,
776                                              &access_granted,
777                                              root,
778                                              sid);
779
780                 if (!NT_STATUS_IS_OK(status)) {
781                         DEBUG(10, ("Object %s has no write property access\n",
782                                    ldb_dn_get_linearized(req->op.mod.message->dn)));
783                         dsdb_acl_debug(sd,
784                                   acl_user_token(module),
785                                   req->op.mod.message->dn,
786                                   true,
787                                   10);
788                         talloc_free(tmp_ctx);
789                         return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
790                 }
791         }
792         if (modify_sd) {
793                 status = sec_access_check_ds(sd, acl_user_token(module),
794                                              SEC_STD_WRITE_DAC,
795                                              &access_granted,
796                                              NULL,
797                                              sid);
798
799                 if (!NT_STATUS_IS_OK(status)) {
800                         DEBUG(10, ("Object %s has no write dacl access\n",
801                                    ldb_dn_get_linearized(req->op.mod.message->dn)));
802                         dsdb_acl_debug(sd,
803                                   acl_user_token(module),
804                                   req->op.mod.message->dn,
805                                   true,
806                                   10);
807                         talloc_free(tmp_ctx);
808                         return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
809                 }
810         }
811
812         talloc_free(tmp_ctx);
813         return ldb_next_request(module, req);
814 fail:
815         talloc_free(tmp_ctx);
816         return LDB_ERR_OPERATIONS_ERROR;
817 }
818
819 /* similar to the modify for the time being.
820  * We need to concider the special delete tree case, though - TODO */
821 static int acl_delete(struct ldb_module *module, struct ldb_request *req)
822 {
823         int ret;
824         struct ldb_dn *parent = ldb_dn_get_parent(req, req->op.del.dn);
825         struct ldb_context *ldb;
826         struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
827
828         if (as_system != NULL) {
829                 as_system->critical = 0;
830         }
831
832         DEBUG(10, ("ldb:acl_delete: %s\n", ldb_dn_get_linearized(req->op.del.dn)));
833         if (dsdb_module_am_system(module) || as_system) {
834                 return ldb_next_request(module, req);
835         }
836
837         if (ldb_dn_is_special(req->op.del.dn)) {
838                 return ldb_next_request(module, req);
839         }
840         ldb = ldb_module_get_ctx(module);
841         /* first check if we have delete object right */
842         ret = dsdb_module_check_access_on_dn(module, req, req->op.del.dn, SEC_STD_DELETE, NULL);
843         if (ret == LDB_SUCCESS) {
844                 return ldb_next_request(module, req);
845         }
846
847         /* Nope, we don't have delete object. Lets check if we have delete child on the parent */
848         /* No parent, so check fails */
849         /* FIXME: this has to be made dynamic at some point */
850         if ((ldb_dn_compare(req->op.del.dn, (ldb_get_schema_basedn(ldb))) == 0) ||
851             (ldb_dn_compare(req->op.del.dn, (ldb_get_config_basedn(ldb))) == 0) ||
852             (ldb_dn_compare(req->op.del.dn, (ldb_get_default_basedn(ldb))) == 0) ||
853             (ldb_dn_compare(req->op.del.dn, (ldb_get_root_basedn(ldb))) == 0)) {
854                 DEBUG(10,("acl:deleting an NC\n"));
855                 return ldb_module_done(req, NULL, NULL, LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS);
856         }
857
858         ret = dsdb_module_check_access_on_dn(module, req, parent, SEC_ADS_DELETE_CHILD, NULL);
859         if (ret != LDB_SUCCESS) {
860                 return ret;
861         }
862         return ldb_next_request(module, req);
863 }
864
865 static int acl_rename(struct ldb_module *module, struct ldb_request *req)
866 {
867         int ret;
868         struct ldb_dn *oldparent = ldb_dn_get_parent(req, req->op.rename.olddn);
869         struct ldb_dn *newparent = ldb_dn_get_parent(req, req->op.rename.newdn);
870         const struct dsdb_schema *schema;
871         struct ldb_context *ldb;
872         struct security_descriptor *sd = NULL;
873         struct dom_sid *sid = NULL;
874         struct ldb_result *acl_res;
875         const struct GUID *guid;
876         struct object_tree *root = NULL;
877         struct object_tree *new_node = NULL;
878         struct ldb_control *as_system = ldb_request_get_control(req, LDB_CONTROL_AS_SYSTEM_OID);
879         TALLOC_CTX *tmp_ctx = talloc_new(req);
880         NTSTATUS status;
881         uint32_t access_granted;
882         const char *rdn_name;
883         static const char *acl_attrs[] = {
884                 "nTSecurityDescriptor",
885                 "objectClass",
886                 "objectSid",
887                 NULL
888         };
889
890         if (as_system != NULL) {
891                 as_system->critical = 0;
892         }
893
894         DEBUG(10, ("ldb:acl_rename: %s\n", ldb_dn_get_linearized(req->op.rename.olddn)));
895         if (dsdb_module_am_system(module) || as_system) {
896                 return ldb_next_request(module, req);
897         }
898         if (ldb_dn_is_special(req->op.rename.olddn)) {
899                 return ldb_next_request(module, req);
900         }
901         ldb = ldb_module_get_ctx(module);
902
903         ret = dsdb_module_search_dn(module, req, &acl_res, req->op.rename.olddn,
904                                     acl_attrs, DSDB_SEARCH_SHOW_DELETED);
905         /* we sould be able to find the parent */
906         if (ret != LDB_SUCCESS) {
907                 DEBUG(10,("acl: failed to find object %s\n",
908                           ldb_dn_get_linearized(req->op.rename.olddn)));
909                 return ret;
910         }
911
912         schema = dsdb_get_schema(ldb, acl_res);
913         if (!schema) {
914                 talloc_free(acl_res);
915                 return LDB_ERR_OPERATIONS_ERROR;
916         }
917
918         guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
919         if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
920                                    &root, &new_node)) {
921                 return LDB_ERR_OPERATIONS_ERROR;
922         };
923
924         guid = attribute_schemaid_guid_by_lDAPDisplayName(schema,
925                                                           "name");
926         if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
927                                    &new_node, &new_node)) {
928                 return LDB_ERR_OPERATIONS_ERROR;
929         };
930
931         rdn_name = ldb_dn_get_rdn_name(req->op.rename.olddn);
932         if (rdn_name == NULL) {
933                 return LDB_ERR_OPERATIONS_ERROR;
934         }
935         guid = attribute_schemaid_guid_by_lDAPDisplayName(schema,
936                                                           rdn_name);
937         if (!insert_in_object_tree(tmp_ctx, guid, SEC_ADS_WRITE_PROP,
938                                    &new_node, &new_node)) {
939                 return LDB_ERR_OPERATIONS_ERROR;
940         };
941
942         ret = dsdb_get_sd_from_ldb_message(req, acl_res->msgs[0], &sd);
943
944         if (ret != LDB_SUCCESS) {
945                 return LDB_ERR_OPERATIONS_ERROR;
946         }
947         /* Theoretically we pass the check if the object has no sd */
948         if (!sd) {
949                 return LDB_SUCCESS;
950         }
951         sid = samdb_result_dom_sid(req, acl_res->msgs[0], "objectSid");
952         status = sec_access_check_ds(sd, acl_user_token(module),
953                                      SEC_ADS_WRITE_PROP,
954                                      &access_granted,
955                                      root,
956                                      sid);
957
958         if (!NT_STATUS_IS_OK(status)) {
959                 DEBUG(10, ("Object %s has no wp on name\n",
960                            ldb_dn_get_linearized(req->op.rename.olddn)));
961                 dsdb_acl_debug(sd,
962                           acl_user_token(module),
963                           req->op.rename.olddn,
964                           true,
965                           10);
966                 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
967         }
968
969         if (ldb_dn_compare(oldparent, newparent) == 0) {
970                 /* regular rename, not move, nothing more to do */
971                 return ldb_next_request(module, req);
972         }
973
974         /* What exactly to do in this case? It would fail anyway.. */
975         /* FIXME: this has to be made dynamic at some point */
976         if ((ldb_dn_compare(req->op.rename.newdn, (ldb_get_schema_basedn(ldb))) == 0) ||
977             (ldb_dn_compare(req->op.rename.newdn, (ldb_get_config_basedn(ldb))) == 0) ||
978             (ldb_dn_compare(req->op.rename.newdn, (ldb_get_default_basedn(ldb))) == 0) ||
979             (ldb_dn_compare(req->op.rename.newdn, (ldb_get_root_basedn(ldb))) == 0)) {
980                 DEBUG(10,("acl:moving as an NC\n"));
981                 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
982         }
983         /* new parent should have create child */
984         talloc_free(tmp_ctx);
985         tmp_ctx = talloc_new(req);
986         root = NULL;
987         new_node = NULL;
988         guid = get_oc_guid_from_message(module, schema, acl_res->msgs[0]);
989         if (!guid) {
990                 DEBUG(10,("acl:renamed object has no object class\n"));
991                 return ldb_module_done(req, NULL, NULL,  LDB_ERR_OPERATIONS_ERROR);
992         }
993
994         ret = dsdb_module_check_access_on_dn(module, req, newparent, SEC_ADS_CREATE_CHILD, guid);
995         if (ret != LDB_SUCCESS) {
996                 DEBUG(10,("acl:access_denied renaming %s", ldb_dn_get_linearized(req->op.rename.olddn)));
997                 return ret;
998         }
999         /* do we have delete object on the object? */
1000
1001         status = sec_access_check_ds(sd, acl_user_token(module),
1002                                      SEC_STD_DELETE,
1003                                      &access_granted,
1004                                      NULL,
1005                                      sid);
1006
1007         if (NT_STATUS_IS_OK(status)) {
1008                 return ldb_next_request(module, req);
1009         }
1010         /* what about delete child on the current parent */
1011         ret = dsdb_module_check_access_on_dn(module, req, oldparent, SEC_ADS_DELETE_CHILD, NULL);
1012         if (ret != LDB_SUCCESS) {
1013                 DEBUG(10,("acl:access_denied renaming %s", ldb_dn_get_linearized(req->op.rename.olddn)));
1014                 return ldb_module_done(req, NULL, NULL, ret);
1015         }
1016         return ldb_next_request(module, req);
1017 }
1018
1019 static int acl_search_callback(struct ldb_request *req, struct ldb_reply *ares)
1020 {
1021         struct ldb_context *ldb;
1022         struct acl_context *ac;
1023         struct acl_private *data;
1024         struct ldb_result *acl_res;
1025         static const char *acl_attrs[] = {
1026                 "objectClass",
1027                 "nTSecurityDescriptor",
1028                 "objectSid",
1029                 NULL
1030         };
1031         int ret, i;
1032
1033         ac = talloc_get_type(req->context, struct acl_context);
1034         data = talloc_get_type(ldb_module_get_private(ac->module), struct acl_private);
1035         ldb = ldb_module_get_ctx(ac->module);
1036
1037         if (!ares) {
1038                 return ldb_module_done(ac->req, NULL, NULL,
1039                                        LDB_ERR_OPERATIONS_ERROR);
1040         }
1041         if (ares->error != LDB_SUCCESS) {
1042                 return ldb_module_done(ac->req, ares->controls,
1043                                        ares->response, ares->error);
1044         }
1045
1046         switch (ares->type) {
1047         case LDB_REPLY_ENTRY:
1048                 if (ac->allowedAttributes 
1049                     || ac->allowedChildClasses
1050                     || ac->allowedChildClassesEffective
1051                     || ac->allowedAttributesEffective
1052                     || ac->sDRightsEffective) {
1053                         ret = dsdb_module_search_dn(ac->module, ac, &acl_res, ares->message->dn, 
1054                                                     acl_attrs, 0);
1055                         if (ret != LDB_SUCCESS) {
1056                                 return ldb_module_done(ac->req, NULL, NULL, ret);
1057                         }
1058                         if (ac->allowedAttributes || ac->allowedAttributesEffective) {
1059                                 ret = acl_allowedAttributes(ac->module, ac->schema, acl_res->msgs[0], ares->message, ac);
1060                                 if (ret != LDB_SUCCESS) {
1061                                         return ldb_module_done(ac->req, NULL, NULL, ret);
1062                                 }
1063                         }
1064                         if (ac->allowedChildClasses) {
1065                                 ret = acl_childClasses(ac->module, ac->schema, acl_res->msgs[0],
1066                                                        ares->message, "allowedChildClasses");
1067                                 if (ret != LDB_SUCCESS) {
1068                                         return ldb_module_done(ac->req, NULL, NULL, ret);
1069                                 }
1070                         }
1071                         if (ac->allowedChildClassesEffective) {
1072                                 ret = acl_childClassesEffective(ac->module, ac->schema,
1073                                                                 acl_res->msgs[0], ares->message, ac);
1074                                 if (ret != LDB_SUCCESS) {
1075                                         return ldb_module_done(ac->req, NULL, NULL, ret);
1076                                 }
1077                         }
1078                         if (ac->sDRightsEffective) {
1079                                 ret = acl_sDRightsEffective(ac->module, 
1080                                                             acl_res->msgs[0], ares->message, ac);
1081                                 if (ret != LDB_SUCCESS) {
1082                                         return ldb_module_done(ac->req, NULL, NULL, ret);
1083                                 }
1084                         }
1085                 }
1086                 if (data && data->password_attrs) {
1087                         if (!ac->am_system) {
1088                                 for (i = 0; data->password_attrs[i]; i++) {
1089                                         ldb_msg_remove_attr(ares->message, data->password_attrs[i]);
1090                                 }
1091                         }
1092                 }
1093                 return ldb_module_send_entry(ac->req, ares->message, ares->controls);
1094
1095         case LDB_REPLY_REFERRAL:
1096                 return ldb_module_send_referral(ac->req, ares->referral);
1097
1098         case LDB_REPLY_DONE:
1099                 return ldb_module_done(ac->req, ares->controls,
1100                                        ares->response, LDB_SUCCESS);
1101
1102         }
1103         return LDB_SUCCESS;
1104 }
1105
1106 static int acl_search(struct ldb_module *module, struct ldb_request *req)
1107 {
1108         struct ldb_context *ldb;
1109         struct acl_context *ac;
1110         struct ldb_request *down_req;
1111         struct acl_private *data;
1112         int ret, i;
1113
1114         ldb = ldb_module_get_ctx(module);
1115
1116         ac = talloc_zero(req, struct acl_context);
1117         if (ac == NULL) {
1118                 ldb_oom(ldb);
1119                 return LDB_ERR_OPERATIONS_ERROR;
1120         }
1121         data = talloc_get_type(ldb_module_get_private(module), struct acl_private);
1122
1123         ac->module = module;
1124         ac->req = req;
1125         ac->am_system = dsdb_module_am_system(module);
1126         ac->allowedAttributes = ldb_attr_in_list(req->op.search.attrs, "allowedAttributes");
1127         ac->allowedAttributesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedAttributesEffective");
1128         ac->allowedChildClasses = ldb_attr_in_list(req->op.search.attrs, "allowedChildClasses");
1129         ac->allowedChildClassesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedChildClassesEffective");
1130         ac->sDRightsEffective = ldb_attr_in_list(req->op.search.attrs, "sDRightsEffective");
1131         ac->schema = dsdb_get_schema(ldb, ac);
1132
1133         /* replace any attributes in the parse tree that are private,
1134            so we don't allow a search for 'userPassword=penguin',
1135            just as we would not allow that attribute to be returned */
1136         if (ac->am_system) {
1137                 /* FIXME: We should copy the tree and keep the original unmodified. */
1138                 /* remove password attributes */
1139                 if (data && data->password_attrs) {
1140                         for (i = 0; data->password_attrs[i]; i++) {
1141                                 ldb_parse_tree_attr_replace(req->op.search.tree,
1142                                                             data->password_attrs[i],
1143                                                             "kludgeACLredactedattribute");
1144                         }
1145                 }
1146         }
1147         ret = ldb_build_search_req_ex(&down_req,
1148                                       ldb, ac,
1149                                       req->op.search.base,
1150                                       req->op.search.scope,
1151                                       req->op.search.tree,
1152                                       req->op.search.attrs,
1153                                       req->controls,
1154                                       ac, acl_search_callback,
1155                                       req);
1156         if (ret != LDB_SUCCESS) {
1157                 return ret;
1158         }
1159         /* perform the search */
1160         return ldb_next_request(module, down_req);
1161 }
1162
1163 _PUBLIC_ const struct ldb_module_ops ldb_acl_module_ops = {
1164         .name              = "acl",
1165         .search            = acl_search,
1166         .add               = acl_add,
1167         .modify            = acl_modify,
1168         .del               = acl_delete,
1169         .rename            = acl_rename,
1170         .init_context      = acl_module_init
1171 };