The branch, master has been updated
       via  03205663b3e CVE-2019-14847 dsdb: Correct behaviour of 
ranged_results when combined with dirsync
       via  e62c535d5b7 CVE-2019-14847 dsdb: Demonstrate the correct 
interaction of ranged_results style attributes and dirsync
       via  4ae0f9ce0f5 s4-torture: Reduce flapping in 
SambaToolDrsTests.test_samba_tool_replicate_local
      from  fe60eef9781 docs-xml: Update krb5_ccache_type in pam_winbind.8

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 03205663b3e5939896c1aad93c4a45cd769b06b4
Author: Andrew Bartlett <abart...@samba.org>
Date:   Tue Oct 15 15:44:34 2019 +1300

    CVE-2019-14847 dsdb: Correct behaviour of ranged_results when combined with 
dirsync
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=14040
    
    Signed-off-by: Andrew Bartlett <abart...@samba.org>
    Reviewed-by: Douglas Bagnall <douglas.bagn...@catalyst.net.nz>
    
    Autobuild-User(master): Douglas Bagnall <dbagn...@samba.org>
    Autobuild-Date(master): Thu Oct 31 23:29:15 UTC 2019 on sn-devel-184

commit e62c535d5b7d357bed9cb998f523e7c007c59910
Author: Andrew Bartlett <abart...@samba.org>
Date:   Tue Oct 15 16:28:46 2019 +1300

    CVE-2019-14847 dsdb: Demonstrate the correct interaction of ranged_results 
style attributes and dirsync
    
    Incremental results are provided by a flag on the dirsync control, not
    by changing the attribute name.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=14040
    
    Signed-off-by: Andrew Bartlett <abart...@samba.org>
    Reviewed-by: Douglas Bagnall <douglas.bagn...@catalyst.net.nz>

commit 4ae0f9ce0f5ada99cf1d236377e5a1234c879ae3
Author: Andrew Bartlett <abart...@samba.org>
Date:   Fri Nov 1 06:53:56 2019 +1300

    s4-torture: Reduce flapping in 
SambaToolDrsTests.test_samba_tool_replicate_local
    
    This test often flaps in Samba 4.9 (where more tests and DCs run in the 
environment)
    with obj_1 being 3.  This is quite OK, we just need to see some changes get
    replicated, not 0 changes.
    
    Signed-off-by: Andrew Bartlett <abart...@samba.org>
    Reviewed-by: Douglas Bagnall <douglas.bagn...@catalyst.net.nz>

-----------------------------------------------------------------------

Summary of changes:
 source4/dsdb/samdb/ldb_modules/dirsync.c        |  9 +++++----
 source4/dsdb/samdb/ldb_modules/ranged_results.c | 25 +++++++++++++++++++++---
 source4/dsdb/tests/python/dirsync.py            | 26 +++++++++++++++++++++++++
 source4/torture/drs/python/samba_tool_drs.py    |  3 ++-
 4 files changed, 55 insertions(+), 8 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/dirsync.c 
b/source4/dsdb/samdb/ldb_modules/dirsync.c
index 87da4a6a0ec..1dfdf3d2447 100644
--- a/source4/dsdb/samdb/ldb_modules/dirsync.c
+++ b/source4/dsdb/samdb/ldb_modules/dirsync.c
@@ -1358,11 +1358,12 @@ static int dirsync_ldb_search(struct ldb_module 
*module, struct ldb_request *req
 
        }
        /*
-        * Remove our control from the list of controls
+        * Mark dirsync control as uncritical (done)
+        *
+        * We need this so ranged_results knows how to behave with
+        * dirsync
         */
-       if (!ldb_save_controls(control, req, NULL)) {
-               return ldb_operr(ldb);
-       }
+       control->critical = false;
        dsc->schema = dsdb_get_schema(ldb, dsc);
        /*
         * At the begining we make the hypothesis that we will return a complete
diff --git a/source4/dsdb/samdb/ldb_modules/ranged_results.c 
b/source4/dsdb/samdb/ldb_modules/ranged_results.c
index 13bf3a2d0a9..98438799997 100644
--- a/source4/dsdb/samdb/ldb_modules/ranged_results.c
+++ b/source4/dsdb/samdb/ldb_modules/ranged_results.c
@@ -35,14 +35,14 @@
 struct rr_context {
        struct ldb_module *module;
        struct ldb_request *req;
+       bool dirsync_in_use;
 };
 
 static struct rr_context *rr_init_context(struct ldb_module *module,
                                          struct ldb_request *req)
 {
-       struct rr_context *ac;
-
-       ac = talloc_zero(req, struct rr_context);
+       struct ldb_control *dirsync_control = NULL;
+       struct rr_context *ac = talloc_zero(req, struct rr_context);
        if (ac == NULL) {
                ldb_set_errstring(ldb_module_get_ctx(module), "Out of Memory");
                return NULL;
@@ -51,6 +51,16 @@ static struct rr_context *rr_init_context(struct ldb_module 
*module,
        ac->module = module;
        ac->req = req;
 
+       /*
+        * check if there's a dirsync control (as there is an
+        * interaction between these modules)
+        */
+       dirsync_control = ldb_request_get_control(req,
+                                                 LDB_CONTROL_DIRSYNC_OID);
+       if (dirsync_control != NULL) {
+               ac->dirsync_in_use = true;
+       }
+
        return ac;
 }
 
@@ -82,6 +92,15 @@ static int rr_search_callback(struct ldb_request *req, 
struct ldb_reply *ares)
                                        ares->response, ares->error);
        }
 
+       if (ac->dirsync_in_use) {
+               /*
+                * We return full attribute values when mixed with
+                * dirsync
+                */
+               return ldb_module_send_entry(ac->req,
+                                            ares->message,
+                                            ares->controls);
+       }
        /* LDB_REPLY_ENTRY */
 
        temp_ctx = talloc_new(ac->req);
diff --git a/source4/dsdb/tests/python/dirsync.py 
b/source4/dsdb/tests/python/dirsync.py
index 405980455b7..0a22ac4239a 100755
--- a/source4/dsdb/tests/python/dirsync.py
+++ b/source4/dsdb/tests/python/dirsync.py
@@ -28,6 +28,7 @@ from samba.tests.subunitrun import TestProgram, SubunitOptions
 import samba.getopt as options
 import base64
 
+import ldb
 from ldb import LdbError, SCOPE_BASE
 from ldb import Message, MessageElement, Dn
 from ldb import FLAG_MOD_ADD, FLAG_MOD_DELETE
@@ -588,6 +589,31 @@ class SimpleDirsyncTests(DirsyncBaseTests):
 
 class ExtendedDirsyncTests(SimpleDirsyncTests):
 
+    def test_dirsync_linkedattributes_range(self):
+        self.ldb_simple = self.get_ldb_connection(self.simple_user, 
self.user_pass)
+        res = self.ldb_admin.search(self.base_dn,
+                                    attrs=["member;range=1-1"],
+                                    expression="(name=Administrators)",
+                                    controls=["dirsync:1:0:0"])
+
+        self.assertTrue(len(res) > 0)
+        self.assertTrue(res[0].get("member;range=1-1") is None)
+        self.assertTrue(res[0].get("member") is not None)
+        self.assertTrue(len(res[0].get("member")) > 0)
+
+    def test_dirsync_linkedattributes_range_user(self):
+        self.ldb_simple = self.get_ldb_connection(self.simple_user, 
self.user_pass)
+        try:
+            res = self.ldb_simple.search(self.base_dn,
+                                         attrs=["member;range=1-1"],
+                                         expression="(name=Administrators)",
+                                        controls=["dirsync:1:0:0"])
+        except LdbError as e:
+            (num, _) = e.args
+            self.assertEquals(num, ldb.ERR_INSUFFICIENT_ACCESS_RIGHTS)
+        else:
+            self.fail()
+
     def test_dirsync_linkedattributes(self):
         flag_incr_linked = 2147483648
         self.ldb_simple = self.get_ldb_connection(self.simple_user, 
self.user_pass)
diff --git a/source4/torture/drs/python/samba_tool_drs.py 
b/source4/torture/drs/python/samba_tool_drs.py
index 76cc86f832e..988f1dc7a3c 100644
--- a/source4/torture/drs/python/samba_tool_drs.py
+++ b/source4/torture/drs/python/samba_tool_drs.py
@@ -210,6 +210,7 @@ class SambaToolDrsTests(drs_base.DrsBaseTestCase):
         self._disable_inbound_repl(self.dnsname_dc1)
         self._disable_inbound_repl(self.dnsname_dc2)
 
+        self._net_drs_replicate(DC=self.dnsname_dc2, fromDC=self.dnsname_dc1)
         self._net_drs_replicate(DC=self.dnsname_dc1, fromDC=self.dnsname_dc2)
 
         # add an object with link on dc1
@@ -232,7 +233,7 @@ class SambaToolDrsTests(drs_base.DrsBaseTestCase):
 
         (obj_1, link_1) = get_num_obj_links(out)
 
-        self.assertEqual(obj_1, 2)
+        self.assertGreaterEqual(obj_1, 2)
         self.assertEqual(link_1, 1)
 
         # pull that change with --local into local db from dc2: shouldn't send 
link or object


-- 
Samba Shared Repository

Reply via email to