Bug 3464 - RPC shutdown PDUs not handled
Summary: RPC shutdown PDUs not handled
Status: NEW
Alias: None
Product: Samba 3.0
Classification: Unclassified
Component: nmbd (show other bugs)
Version: 3.0.21a
Hardware: Other All
: P3 minor
Target Milestone: none
Assignee: Samba Bugzilla Account
QA Contact: Samba QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-30 03:35 UTC by Luke Howard
Modified: 2010-09-08 05:30 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Luke Howard 2006-01-30 03:35:43 UTC
The Samba 3 client library does not handle RPC shutdown PDUs.

It turns out that neither Windows or Samba servers send these, but RPC servers built upon the OSF runtime will send up to two shutdowns, each after a client has been idle for ten seconds. Apparently this value is "specified in Appendix A of the NCA connection architecture spec", so it's not necessarily implementation-specific (even though it might look that way). 

Also, shutdown PDUs can be coalesced with an RPC response into the same SMB PDU, which appears to cause the first check in cli_pipe_validate_current_pdu() to fail. When this check is disabled, RPC_SHUTDOWN is processed as an unknown packet; the client really needs to get an error code that would cause it to retry the request (if this is not done by the RPC runtime itself).

As a workaround, we have disabled shutdowns in our version of the OSF code, and now disconnect idle clients after 45 minutes instead of 10 seconds (any suggestions on a better value for this appreciated). Samba domain members now appear to work fine, although it's possible there will be a transient error when the idle time limit is reached.