From: Gary Lockyer Date: Sun, 26 Nov 2017 21:45:37 +0000 (+1300) Subject: tests dsdb: Add tests for optionally unique objectSID's X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=073328673f0fb0a9797290f922ca8230e3f5fdf3 tests dsdb: Add tests for optionally unique objectSID's It is possible for foreign security principals to have duplicate object sids, this can be the result of: a replication race condition generating conflict resolution objects or the foreign security principal being deleted and then re-added on a join. Rather than remove unique check on all objectSIDs we wish to allow duplicate objectSIDs for foreign security principals. But enforce the unique constraint for local objects. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13004 Signed-off-by: Gary Lockyer --- diff --git a/python/samba/tests/dsdb.py b/python/samba/tests/dsdb.py index c740a419fed3..34a9435ea445 100644 --- a/python/samba/tests/dsdb.py +++ b/python/samba/tests/dsdb.py @@ -23,7 +23,7 @@ from samba.auth import system_session from samba.tests import TestCase from samba.tests import delete_force from samba.ndr import ndr_unpack, ndr_pack -from samba.dcerpc import drsblobs +from samba.dcerpc import drsblobs, security from samba import dsdb import ldb import samba @@ -184,3 +184,81 @@ class DsdbTests(TestCase): if e[0] != ldb.ERR_UNSUPPORTED_CRITICAL_EXTENSION: self.fail("Got %s should have got ERR_UNSUPPORTED_CRITICAL_EXTENSION" % e[1]) + + # Allocate a unique RID for use in the objectSID tests. + # + def allocate_rid(self): + self.samdb.transaction_start() + try: + rid = self.samdb.allocate_rid() + except: + self.samdb.transaction_cancel() + raise + self.samdb.transaction_commit() + return str(rid) + + # Ensure that duplicate objectSID's are permitted for foreign security + # principals. + # + def test_duplicate_objectSIDs_allowed_on_foreign_security_principals(self): + + # + # We need to build a foreign security principal SID + # i.e a SID not in the current domain. + # + dom_sid = self.samdb.get_domain_sid() + if str(dom_sid)[:-1] == "0": + c = "9" + else: + c = "0" + sid = str(dom_sid)[:-1] + c + "-1000" + basedn = self.samdb.get_default_basedn() + dn = "CN=%s,CN=ForeignSecurityPrincipals,%s" % (sid, basedn) + self.samdb.add({ + "dn": dn, + "objectClass": "foreignSecurityPrincipal"}) + + self.samdb.delete(dn) + + try: + self.samdb.add({ + "dn": dn, + "objectClass": "foreignSecurityPrincipal"}) + except ldb.LdbError as e: + (code, msg) = e + self.fail("Got unexpected exception %d - %s " + % (code, msg)) + + # + # Duplicate objectSID's should not be permitted for sids in the local + # domain. The test sequence is add an object, delete it, then attempt to + # re-add it, this should fail with a constraint violation + # + def test_duplicate_objectSIDs_not_allowed_on_local_objects(self): + + dom_sid = self.samdb.get_domain_sid() + rid = self.allocate_rid() + sid_str = str(dom_sid) + "-" + rid + sid = ndr_pack(security.dom_sid(sid_str)) + basedn = self.samdb.get_default_basedn() + cn = "dsdb_test_01" + dn = "cn=%s,cn=Users,%s" % (cn, basedn) + + self.samdb.add({ + "dn": dn, + "objectClass": "user", + "objectSID": sid}) + self.samdb.delete(dn) + + try: + self.samdb.add({ + "dn": dn, + "objectClass": "user", + "objectSID": sid}) + self.fail("No exception should get LDB_ERR_CONSTRAINT_VIOLATION") + except ldb.LdbError as e: + (code, msg) = e + if code != ldb.ERR_CONSTRAINT_VIOLATION: + self.fail("Got %d - %s should have got " + "LDB_ERR_CONSTRAINT_VIOLATION" + % (code, msg)) diff --git a/selftest/knownfail.d/dsdb b/selftest/knownfail.d/dsdb new file mode 100644 index 000000000000..276b72d22d3b --- /dev/null +++ b/selftest/knownfail.d/dsdb @@ -0,0 +1 @@ +^samba.tests.dsdb.samba.tests.dsdb.DsdbTests.test_duplicate_objectSIDs_allowed_on_foreign_security_principals\(