Skip to content

Commit b1eda99

Browse files
committed
selftest: Confirm that --base64-input and --input work and a PIDL bug is fixed.
The PIDL bug is in the handling of arrays of arrays. Test input provided by Michael Hanselmann and found using Hongfuzz. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13875 Signed-off-by: Andrew Bartlett <[email protected]> Reviewed-by: Douglas Bagnall <[email protected]>
1 parent 24fa337 commit b1eda99

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

python/samba/tests/blackbox/ndrdump.py

+29
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,32 @@ def test_ndrdump_with_binary_struct_number(self):
110110
# check_output will return bytes
111111
# convert expected to bytes for python 3
112112
self.assertEqual(actual, expected.encode('utf-8'))
113+
114+
def test_ndrdump_fuzzed_clusapi_QueryAllValues(self):
115+
expected = b'''pull returned Success
116+
WARNING! 53 unread bytes
117+
[0000] 00 FF 00 00 FF 00 00 00 00 09 00 00 00 08 00 33 ........ .......3
118+
[0010] 33 32 37 36 32 36 39 33 32 37 36 38 34 01 00 00 32762693 27684...
119+
[0020] 80 32 0D FF 00 00 FF 00 00 00 00 08 00 00 00 1C .2...... ........
120+
[0030] F1 29 08 00 00 .)... ''' \
121+
b'''
122+
clusapi_QueryAllValues: struct clusapi_QueryAllValues
123+
out: struct clusapi_QueryAllValues
124+
pcbData : *
125+
pcbData : 0x01000000 (16777216)
126+
ppData : *
127+
ppData: ARRAY(1)
128+
ppData : NULL
129+
rpc_status : *
130+
rpc_status : WERR_OK
131+
result : WERR_NOT_ENOUGH_MEMORY
132+
dump OK
133+
'''
134+
try:
135+
actual = self.check_output(
136+
'ndrdump clusapi clusapi_QueryAllValues out ' +\
137+
'--base64-input --input=' +\
138+
'AAAAAQEAAAAAAAAAAAAAAAgAAAAA/wAA/wAAAAAJAAAACAAzMzI3NjI2OTMyNzY4NAEAAIAyDf8AAP8AAAAACAAAABzxKQgAAA==')
139+
except BlackboxProcessError as e:
140+
self.fail(e)
141+
self.assertEqual(actual, expected)

selftest/knownfail.d/ndrdump

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
^samba.tests.blackbox.ndrdump.samba.tests.blackbox.ndrdump.NdrDumpTests.test_ndrdump_clusapi_QueryAllValues

0 commit comments

Comments
 (0)