s4-dsdb: moved rodc schema validation to samldb.c
authorAndrew Tridgell <tridge@samba.org>
Thu, 22 Apr 2010 03:32:55 +0000 (13:32 +1000)
committerAndrew Tridgell <tridge@samba.org>
Thu, 22 Apr 2010 09:36:15 +0000 (19:36 +1000)
This means we are only doing the checks for schema changes

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

source4/dsdb/samdb/ldb_modules/objectclass.c
source4/dsdb/samdb/ldb_modules/samldb.c

index e51038d06f70620489ab78a2e431843d9d38d24f..329bd81ae3630c56780a8b969f1a5f1c3ffd45c5 100644 (file)
@@ -378,27 +378,6 @@ static int fix_check_attributes(struct ldb_context *ldb,
        return LDB_SUCCESS;
 }
 
-/*
- * return true if msg carries an attributeSchema that is intended to be RODC
- * filtered but is also a system-critical attribute.
- */
-static bool check_rodc_critical_attribute(struct ldb_message *msg)
-{
-       uint32_t schemaFlagsEx, searchFlags, rodc_filtered_flags;
-
-       schemaFlagsEx = ldb_msg_find_attr_as_uint(msg, "schemaFlagsEx", 0);
-       searchFlags = ldb_msg_find_attr_as_uint(msg, "searchFlags", 0);
-       rodc_filtered_flags = (SEARCH_FLAG_RODC_ATTRIBUTE | SEARCH_FLAG_CONFIDENTIAL);
-
-       if ((schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) &&
-               ((searchFlags & rodc_filtered_flags) == rodc_filtered_flags)) {
-               return true;
-       } else {
-               return false;
-       }
-}
-
-
 static int objectclass_do_add(struct oc_context *ac);
 
 static int objectclass_add(struct ldb_module *module, struct ldb_request *req)
@@ -425,12 +404,6 @@ static int objectclass_add(struct ldb_module *module, struct ldb_request *req)
                return LDB_ERR_OBJECT_CLASS_VIOLATION;
        }
 
-       /* do not allow to mark an attributeSchema as RODC filtered if it
-        * is system-critical */
-       if (check_rodc_critical_attribute(req->op.add.message)) {
-               return LDB_ERR_UNWILLING_TO_PERFORM;
-       }
-
        ac = oc_init_context(module, req);
        if (ac == NULL) {
                return LDB_ERR_OPERATIONS_ERROR;
@@ -749,12 +722,6 @@ static int objectclass_modify(struct ldb_module *module, struct ldb_request *req
                return LDB_ERR_UNWILLING_TO_PERFORM;
        }
 
-       /* do not allow to mark an attributeSchema as RODC filtered if it
-        * is system-critical */
-       if (check_rodc_critical_attribute(req->op.mod.message)) {
-               return LDB_ERR_UNWILLING_TO_PERFORM;
-       }
-
        ac = oc_init_context(module, req);
        if (ac == NULL) {
                ldb_oom(ldb);
index c3a95f161861cc63ca9f0b280fa90f0cc5c068e3..375b624e7939fe9955a4d5b87325925fd2c6f072 100644 (file)
@@ -826,6 +826,26 @@ static int samldb_add_entry(struct samldb_ctx *ac)
        return ldb_next_request(ac->module, req);
 }
 
+/*
+ * return true if msg carries an attributeSchema that is intended to be RODC
+ * filtered but is also a system-critical attribute.
+ */
+static bool check_rodc_critical_attribute(struct ldb_message *msg)
+{
+       uint32_t schemaFlagsEx, searchFlags, rodc_filtered_flags;
+
+       schemaFlagsEx = ldb_msg_find_attr_as_uint(msg, "schemaFlagsEx", 0);
+       searchFlags = ldb_msg_find_attr_as_uint(msg, "searchFlags", 0);
+       rodc_filtered_flags = (SEARCH_FLAG_RODC_ATTRIBUTE | SEARCH_FLAG_CONFIDENTIAL);
+
+       if ((schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) &&
+               ((searchFlags & rodc_filtered_flags) == rodc_filtered_flags)) {
+               return true;
+       } else {
+               return false;
+       }
+}
+
 
 static int samldb_fill_object(struct samldb_ctx *ac, const char *type)
 {
@@ -885,6 +905,15 @@ static int samldb_fill_object(struct samldb_ctx *ac, const char *type)
                                                  "rdnAttId", "cn");
                if (ret != LDB_SUCCESS) return ret;
 
+               /* do not allow to mark an attributeSchema as RODC filtered if it
+                * is system-critical */
+               if (check_rodc_critical_attribute(ac->msg)) {
+                       ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical class with RODC filtering",
+                                              ldb_dn_get_linearized(ac->msg->dn));
+                       return LDB_ERR_UNWILLING_TO_PERFORM;
+               }
+
+
                rdn_value = ldb_dn_get_rdn_val(ac->msg->dn);
                if (!ldb_msg_find_element(ac->msg, "lDAPDisplayName")) {
                        /* the RDN has prefix "CN" */
@@ -932,6 +961,14 @@ static int samldb_fill_object(struct samldb_ctx *ac, const char *type)
                        }
                }
 
+               /* do not allow to mark an attributeSchema as RODC filtered if it
+                * is system-critical */
+               if (check_rodc_critical_attribute(ac->msg)) {
+                       ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical attribute with RODC filtering",
+                                              ldb_dn_get_linearized(ac->msg->dn));
+                       return LDB_ERR_UNWILLING_TO_PERFORM;
+               }
+
                ret = samdb_find_or_add_attribute(ldb, ac->msg,
                                                  "isSingleValued", "FALSE");
                if (ret != LDB_SUCCESS) return ret;