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?

link|improve this question

feedback

7 Answers

up vote 36 down vote accepted

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.

link|improve this answer
To make this explicit: signal(SIGPIPE, SIG_IGN); – jhclark Mar 4 at 18:38
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:

int set = 1;
setsockopt(sd, SOL_SOCKET, SO_NOSIGPIPE, (void *)&set, sizeof(int));

With this in effect, instead of the SIGPIPE signal being generated, EPIPE will be returned.

link|improve this answer
Thank you very much for this solution! – Vladimir Grigorov Feb 6 '09 at 16:39
5  
This sounds good, but SO_NOSIGPIPE doesn't seem to exist in Linux -- so it isn't a broadly portable solution. – nobar Dec 2 '10 at 7:26
hi all, can you tell me where place that i have to put this code? i dont understand thank's – R. Dewi Sep 12 '11 at 11:55
feedback

I'm super late to the party, but SO_NOSIGPIPE isn't portable, and might not work on your system (it seems to be a BSD thing).

A nice alternative if you're on, say, a Linux system without SO_NOSIGPIPE would be to set the MSG_NOSIGNAL flag on your send(2) call.

link|improve this answer
1  
+1, Linux 2.2+ though according to man – Ray2k Jan 14 '10 at 15:33
1  
In other words, use send(...,MSG_NOSIGNAL) as a replacement for write() and you won't get SIGPIPE. This should work well for sockets (on supported platforms), but send() seems to be limited to use with sockets (not pipes), so this isn't a general solution to the SIGPIPE problem. – nobar Jan 25 '11 at 17:19
feedback

In this post I described possible solution for Solaris case when neither SO_NOSIGPIPE nor MSG_NOSIGNAL is available.

link|improve this answer
1  
+1: interesting post. – neuro Mar 16 '10 at 11:44
feedback

Handle SIGPIPE Locally

It'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:

// We expect write failures to occur but we want to handle them where 
// the error occurs rather than in a SIGPIPE handler.
signal(SIGPIPE, SIG_IGN);

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.

link|improve this answer
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).

link|improve this answer
What do you suggest? – Math Apr 4 at 17:11
1  
@Math: ignore SIGPIPE and pay attention to write errors. – Jonathan Leffler Apr 4 at 17:12
Thanks! +1 to you – Math Apr 8 at 20:09
feedback

Or should I just catch the SIGPIPE with a handler and ignore it?

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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