s4:Ensure the selected RDN is the right one per the schema
authorAndrew Bartlett <abartlet@samba.org>
Tue, 22 Sep 2009 00:24:43 +0000 (17:24 -0700)
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Fri, 2 Oct 2009 10:44:58 +0000 (12:44 +0200)
The relative DN must be the one that the most specific structural
objectclass specifies.

Andrew Bartlett

source4/dsdb/samdb/ldb_modules/objectclass.c

index 3cf252c71a8872dbda4efc5a68b5c7a01a3cadd7..ad14acbcf877ddc6dfc4f5ea7a947f7d30db0a47 100644 (file)
@@ -547,7 +547,13 @@ static int objectclass_do_add(struct oc_context *ac)
                        if (!current->next) {
                                struct ldb_message_element *el;
                                int32_t systemFlags = 0;
-                               DATA_BLOB *sd;
+                               const char *rdn_name = ldb_dn_get_rdn_name(msg->dn);
+                               if (ldb_attr_cmp(rdn_name, current->objectclass->rDNAttID) != 0) {
+                                       ldb_asprintf_errstring(ldb, "RDN %s is not correct for most specific structural objectclass %s, should be %s", 
+                                                              rdn_name, current->objectclass->lDAPDisplayName, current->objectclass->rDNAttID);
+                                       return LDB_ERR_NAMING_VIOLATION;
+                               }
+
                                if (!ldb_msg_find_element(msg, "objectCategory")) {
                                        value = talloc_strdup(msg, current->objectclass->defaultObjectCategory);
                                        if (value == NULL) {