librpc ndr: Heap-buffer-overflow in lzxpress_decompress
authorGary Lockyer <gary@catalyst.net.nz>
Thu, 23 Jan 2020 21:41:35 +0000 (10:41 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 7 Feb 2020 08:53:40 +0000 (08:53 +0000)
Reproducer for oss-fuzz Issue 20083

Project: samba
Fuzzing Engine: libFuzzer
Fuzz Target: fuzz_ndr_drsuapi_TYPE_OUT
Job Type: libfuzzer_asan_samba
Platform Id: linux

Crash Type: Heap-buffer-overflow READ 1
Crash Address: 0x6040000002fd
Crash State:
  lzxpress_decompress
    ndr_pull_compression_xpress_chunk
      ndr_pull_compression_start

Sanitizer: address (ASAN)

Recommended Security Severity: Medium

Credit to OSS-Fuzz

REF: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=20083
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14236

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
librpc/ndr/libndr.h
librpc/tests/test_ndr.c [new file with mode: 0644]
librpc/wscript_build
python/samba/tests/blackbox/ndrdump.py
selftest/knownfail.d/bug-14236 [new file with mode: 0644]
source4/selftest/tests.py

index 58ef517d3630d06def34c30bae9b3e4f8da91a44..b7cccf3dfc5c33924d7283504cbb8d6f779752b4 100644 (file)
@@ -309,7 +309,10 @@ enum ndr_compression_alg {
 } while (0)
 
 #define NDR_PULL_NEED_BYTES(ndr, n) do { \
-       if (unlikely((n) > ndr->data_size || ndr->offset + (n) > ndr->data_size)) { \
+       if (unlikely(\
+               (n) > ndr->data_size || \
+               ndr->offset + (n) > ndr->data_size || \
+               ndr->offset + (n) < ndr->offset)) { \
                if (ndr->flags & LIBNDR_FLAG_INCOMPLETE_BUFFER) { \
                        uint32_t _available = ndr->data_size - ndr->offset; \
                        uint32_t _missing = n - _available; \
diff --git a/librpc/tests/test_ndr.c b/librpc/tests/test_ndr.c
new file mode 100644 (file)
index 0000000..1c074d7
--- /dev/null
@@ -0,0 +1,84 @@
+/*
+ * Tests for librpc ndr functions
+ *
+ * Copyright (C) Catalyst.NET Ltd 2020
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+/*
+ * from cmocka.c:
+ * These headers or their equivalents should be included prior to
+ * including
+ * this header file.
+ *
+ * #include <stdarg.h>
+ * #include <stddef.h>
+ * #include <setjmp.h>
+ *
+ * This allows test applications to use custom definitions of C standard
+ * library functions and types.
+ *
+ */
+#include <stdarg.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <setjmp.h>
+#include <cmocka.h>
+
+#include "librpc/ndr/libndr.h"
+
+/*
+ * Test NDR_PULL_NEED_BYTES integer overflow handling.
+ */
+static enum ndr_err_code wrap_NDR_PULL_NEED_BYTES(
+       struct ndr_pull *ndr,
+       uint32_t bytes) {
+
+       NDR_PULL_NEED_BYTES(ndr, bytes);
+       return NDR_ERR_SUCCESS;
+}
+
+static void test_NDR_PULL_NEED_BYTES(void **state)
+{
+       struct ndr_pull ndr = {0};
+       enum ndr_err_code err;
+
+       ndr.data_size = UINT32_MAX;
+       ndr.offset = UINT32_MAX -1;
+
+       /*
+        * This will not cause an overflow
+        */
+       err = wrap_NDR_PULL_NEED_BYTES(&ndr, 1);
+       assert_int_equal(NDR_ERR_SUCCESS, err);
+
+       /*
+        * This will cause an overflow
+        * and (offset + n) will be less than data_size
+        */
+       err = wrap_NDR_PULL_NEED_BYTES(&ndr, 2);
+       assert_int_equal(NDR_ERR_BUFSIZE, err);
+}
+
+int main(int argc, const char **argv)
+{
+       const struct CMUnitTest tests[] = {
+               cmocka_unit_test(test_NDR_PULL_NEED_BYTES),
+       };
+
+       cmocka_set_message_output(CM_OUTPUT_SUBUNIT);
+       return cmocka_run_group_tests(tests, NULL, NULL);
+}
index 5eb78e6010a8273c3f2dfb3139e3493bd1a78607..ec8697fbcc587f0cf1c32e8c53a67c4b371b3c53 100644 (file)
@@ -698,3 +698,11 @@ bld.SAMBA_BINARY('test_ndr_string',
                       ndr
                       ''',
                  for_selftest=True)
+
+bld.SAMBA_BINARY('test_ndr',
+                 source='tests/test_ndr.c',
+                 deps='''
+                      cmocka
+                      ndr
+                      ''',
+                 for_selftest=True)
index b3c837819b153783fcea9d39d5ad962440f2ba2a..205519c3f8a60f4cee94635c46436b679fa0d089 100644 (file)
@@ -437,3 +437,16 @@ dump OK
             self.fail(e)
 
         self.assertEqual(actual, expected)
+
+    def test_ndrdump_fuzzed_ndr_compression(self):
+        expected = 'pull returned Buffer Size Error'
+        command = (
+            "ndrdump drsuapi 3 out --base64-input "
+            "--input BwAAAAcAAAAGAAAAAwAgICAgICAJAAAAICAgIAkAAAAgIAAA//////8=")
+        try:
+            actual = self.check_exit_code(command, 2)
+        except BlackboxProcessError as e:
+            self.fail(e)
+        # check_output will return bytes
+        # convert expected to bytes for python 3
+        self.assertRegex(actual.decode('utf8'), expected + '$')
diff --git a/selftest/knownfail.d/bug-14236 b/selftest/knownfail.d/bug-14236
new file mode 100644 (file)
index 0000000..64b9569
--- /dev/null
@@ -0,0 +1 @@
+^samba.tests.blackbox.ndrdump.samba.tests.blackbox.ndrdump.NdrDumpTests.test_ndrdump_fuzzed_ndr_compression
index f570d35dfba984d41c78f0b5866470ecef068647..ab2c4f69da0f27fa9d2d3eb67e2efbb6d4f21487 100755 (executable)
@@ -1334,6 +1334,8 @@ plantestsuite("libcli.drsuapi.repl_decrypt", "none",
               [os.path.join(bindir(), "test_repl_decrypt")])
 plantestsuite("librpc.ndr.ndr_string", "none",
               [os.path.join(bindir(), "test_ndr_string")])
+plantestsuite("librpc.ndr.ndr", "none",
+              [os.path.join(bindir(), "test_ndr")])
 
 # process restart and limit tests, these break the environment so need to run
 # in their own specific environment