I'm puzzled by the behavior of a TCP-using application. When the application at one end of an Internet-wide TCP connection calls close() on the socket, the close() returns. At the other end, however, the write() on the socket doesn't indicate that the TCP connection is closed. AFAIK, this behavior is inconsistent with the TCP specification: the active close() shouldn't return unless and until it receives an acknowledgement from the other end of the TCP connection (specifically, the TCP state at the active end can't transition out of TIME_WAIT_1 unless it receives an appropriate response from the other end -- at which point the write() at the other end should error-return).
I've seen this behavior when a malfunctioning Intrusion Prevention System (IPS) was between the ends of the TCP connection. The manufacturer of the IPS is addressing this problem.
Are there any other situations in which this behavior can occur?
My environment is Unix, C, ONC RPC, and sockets.
read()/write()on it? Since the OS kernel ultimately manages the connections, theclose()could in fact be working correctly, waiting for a response from the remote before returning. But then, the remote kernel knows the connection is closed but can't notify the application until it somehow tries to access that connection later... You'd have to trace packets to know for sure, I think... – twalberg Mar 1 at 18:01