I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no interest in the answer sometimes and exits early, so writing to that socket will cause a SIGPIPE and make my server crash. What's the best practice to prevent the crash here? Is there a way to check if the other side of the line is still reading? (select() doesn't seem to work here as it always says the socket is writable). Or should I just catch the SIGPIPE with a handler and ignore it?
|
feedback
|
|
Generally you'd set the SIGPIPE handler to SIG_IGN if you think your app will ever write to a broken socket/pipe. It's usually much easier to handle the error on write, than to do anything intelligent in a SIGPIPE handler. | |||
|
feedback
|
|
Another method is to change the socket so it never generates SIGPIPE on write(). This is more convenient in libraries, where you might not want a global signal handler for SIGPIPE. On most systems, (assuming you are using C/C++), you can do this with:
With this in effect, instead of the SIGPIPE signal being generated, EPIPE will be returned. | |||||||||
feedback
|
|
I'm super late to the party, but A nice alternative if you're on, say, a Linux system without | |||||||||
feedback
|
|
In this post I described possible solution for Solaris case when neither SO_NOSIGPIPE nor MSG_NOSIGNAL is available. | |||||
feedback
|
Handle SIGPIPE LocallyIt's usually best to handle the error locally rather than in a global signal event handler since locally you will have more context as to what's going on and what recourse to take. I have a communication layer in one of my apps that allows my app to communicate with an external accessory. When a write error occurs I throw and exception in the communication layer and let it bubble up to a try catch block to handle it there. Code:The code to ignore a SIGPIPE signal so that you can handle it locally is:
This code will prevent the SIGPIPE signal from being raised, but you will get a read / write error when trying to use the socket, so you will need to check for that. | |||
|
feedback
|
|
You cannot prevent the process on the far end of a pipe from exiting, and if it exits before you've finished writing, you will get a SIGPIPE signal. If you SIG_IGN the signal, then your write will return with an error - and you need to note and react to that error. Just catching and ignoring the signal in a handler is not a good idea -- you must note that the pipe is now defunct and modify the program's behaviour so it does not write to the pipe again (because the signal will be generated again, and ignored again, and you'll try again, and the whole process could go on for a long time and waste a lot of CPU power). | |||||||||
feedback
|
I believe that is right on. You want to know when the other end has closed their descriptor and that's what SIGPIPE tells you. Sam | |||
|
feedback
|