Bug 7852 - RPC-COUNTCALLS should check the RPC fault code DCERPC_NCA_S_OP_RNG_ERROR
Summary: RPC-COUNTCALLS should check the RPC fault code DCERPC_NCA_S_OP_RNG_ERROR
Status: NEW
Alias: None
Product: Samba 4.1 and newer
Classification: Unclassified
Component: smbtorture (show other bugs)
Version: unspecified
Hardware: All Windows 2008 R2
: P3 minor (vote)
Target Milestone: ---
Assignee: Andrew Bartlett
QA Contact: samba4-qa@samba.org
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-12-07 17:00 UTC by Matt Ficken (mail bounces back)
Modified: 2020-12-20 01:04 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Matt Ficken (mail bounces back) 2010-12-07 17:00:01 UTC
This suite investigates the functions available for all or for a given RPC interface by making call requests for all opnums 0 to 500 and checking the fault code or status code.

When the opnum is out of range, Windows returns DCERPC_NCA_S_OP_RNG_ERROR as the RPC fault code (in the Response PDU/pkt), which is converted to the status code NT_STATUS_NET_WRITE_FAULT, which is not one of the status codes that the test considers 'passing'.

It looks like almost all fault codes cause Samba to produce NT_STATUS_NET_WRITE_FAULT.


This test, in addition to checking the status code as it does now, should (1) also check the underlying fault code, as that will help investigation and then (2) should check for the fault code DCERPC_NCA_S_OP_RNG_ERROR and consider that as 'passing' the test for that RPC interface.


DCERPC_NCA_S_OP_RNG_ERROR is, according to my understanding of [DCE/RPC 1.1], the correct code for an RPC server to return in this case.


If this bug is fixed, along with #7851 and #7845, this suite will pass against Windows(any version).