Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm dealing with a buggy server that will sometimes fail to accept() connections (but leaves its listening socket open). This is on Linux with unix domain sockets.

Currently the only way to detect this is that after sending a bunch of data, the buffer fills up and blocks, and the server isn't sending any replies. This long-after-the-fact failure mode is hard to distinguish from other bugs - the server could be unresponsive for other reasons.

Especially for unix domain sockets it seems the kernel should know whether accept() has occurred; is there any way to find this out? Can the client block until accept() happens somehow, or at least check whether it has?

This is just for debugging purposes so it can be a little ugly.

share|improve this question
1  
By default connect will block until the connection is accepted. Not sure if I understand your question – nc3b Apr 30 '10 at 19:06
3  
@nc3b: No, connect() blocks until the connection has been set up and is pending in the listen backlog. This what the backlog parameter in the listen() call is all about - it sets the number of connections that can be pending. – caf May 1 '10 at 10:35

2 Answers

I'd say that the answer was to change the protocol so that the server speaks first (like SMTP, not like HTTP)

The kernel accepts sockets already before the accept() system call is made; if it never arrives, then the sockets sit around in a waiting state. There is no way to distinguish this from the server accepting the connection but not speaking. This is the way BSD sockets has always worked.

share|improve this answer
yeah, unfortunately I can't change the protocol or the server, or there would be no need to do this ;-) it's just something that would be useful to work around the screwy server. I don't anticipate there's a way to do this but the kernel does in theory know if the accept() has happened - on a local unix socket - so just asking if anyone knows a way. pretty clearly it would be impossible in the TCP case – Havoc P May 2 '10 at 1:56
up vote 3 down vote accepted

Looks like the answer to this is "no"; the kernel offers no way to get at this info.

(change the protocol isn't an answer, since I was debugging a pre-existing unchangeable protocol)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.