Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Assume a TCP socket on the local linux host is in a connected state with a remote host. The local host is using epoll_wait to be notified of events on the socket with the remote host.

If the remote host were to call:

 shutdown(s,SHUT_WR);

on its connected socket to indicate it is done transmitting, what event(s) will epoll_wait return on the local host for its socket?

I'm assuming EPOLLIN would always get returned and a subsequent recv call would return 0 to indicate the remote side has finished tranmitting.

What about EPOLLHUP or EPOLLRDHUP? (And what is the difference between these two events)?

Or even EPOLLERR ?

If the remote host calls "close" instead of "shutdown", does the answer to any of the above change?

share|improve this question

2 Answers

up vote 3 down vote accepted

I'm answering this myself after doing the heavy lifting to find the answer.

A socket listening for epoll events will typically receive an EPOLLRDHUP (in addition to EPOLLIN) event flag upon the remote peer calling close or shutdown(SHUT_WR). This does not neccessarily mean the socket is dead. Subsequent calls to recv() will return any unread data on the socket and eventually "0" will be returned to indicate EOF. It may even be possible to send data back if the remote peer only did a half-close of its socket.

The one notable exception is if the remote peer is using the SO_LINGER option enabled on its socket with a linger value of "0". The result of closing such a socket may result in a TCP RST getting sent instead of a FIN. From what I've read, a connection reset event will generate either a EPOLLHUP or EPOLLERR. (I haven't had time to confirm, but it makes sense).

There is some documentation to suggest there are older Linux implementations that don't support EPOLLRDHUP, as such EPOLLHUP gets generated instead.

And for what it is worth, in my particular case, I found that it is not too interesting to have code that special cases EPOLLHUP or EPOLLRDHUP events. Instead, just treat these events the same as EPOLLIN/EPOLLOUT and call recv() (or send() as appropriate). But pay close attention to return codes returned back from recv() and send().

share|improve this answer

There are lots of different variables here, including:

1) Whether you call "close()" or "shutdown()"

2) If you call shutdown(), whether you close SHUT_RDWR or SHUT_WR

3) Whether you called setsockopt(), SO_LINGER

 .. etc etc ...

4) And, most importantly, your platform (Windows? Linux? BSD?) and platform version

Here is a good link:

http://ia700609.us.archive.org/22/items/TheUltimateSo_lingerPageOrWhyIsMyTcpNotReliable/the-ultimate-so_linger-page-or-why-is-my-tcp-not-reliable.html

EPOLLHUP, for TCP socket, means that the socket is half-closed as result of a shutdown().

Here is an explanation of why EPOLLRDHUP was introduced on Linux (and, frankly, I'm not even sure it exists on other platforms):

https://lkml.org/lkml/2006/3/7/249

You might also be interested in this link:

Asynchronous I/O in Windows for Unix Programmers

Or this book (arguably the best book on sockets programming):

Unix Network Programming, Stevens et al

share|improve this answer
You're giving me a very canned answer and more information that I need. I was very specific in my question about Linux and using the SHUT_WR flag. And yet, you are giving me links to Windows programming resources where epoll doesn't exist! I already own the Stevens book. I'm not new to sockets. Would you be able to clarify your answer? – selbie Jan 3 '12 at 3:39
from my own observations from writing a quick client/server app, a remote close/shutdown generates an EPOLLRDHUP, not EPOLLHUP. So are you sure about your answer? – selbie Jan 3 '12 at 6:04
Why paulsm4 is asking: "And, most importantly, your platform (Windows? Linux? BSD?) and platform version" ?? I believe that paulsm4 never used epoll or he just copy&pasted an answer for another question from somewhere. I was about to do a negative vote, but didn't. – ddoman Jan 4 '12 at 11:32

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.