How can I fix a Broken Pipe error?

38

16

I recently reinstalled RVM (following the instructions at http://rvm.io) after a fresh install of Ubuntu 12.10 when I got an SSD Drive.

Now, when I type: type rvm | head -1

I receive the following error:

rvm is a function
-bash: type: write error: Broken pipe

But if I immediately repeat the command then I only receive:

rvm is a function

And it appears everything is ok? What's happening? What can I do to fix it? It doesn't happen always. It appears to be more sporadic. I've tried to find some kind of pattern to it but haven't yet.

Jason Shultz

Posted 2013-02-20T15:29:55.707

Reputation: 565

Answers

58

Seeing "Broken pipe" in this situation is rare, but normal.

When you run type rvm | head -1, bash executes type rvm in one process, head -1 in another.1 The stdout of type is connected to the "write" end of a pipe, the stdin of head to the "read" end. Both processes run at the same time.

The head -1 process reads data from stdin (usually in chunks of 8 kB), prints out a single line (according to the -1 option), and exits, causing the "read" end of the pipe to be closed. Since the rvm function is quite long (around 11 kB after being parsed and reconstructed by bash), this means that head exits while type still has a few kB of data to write out.

At this point, since type is trying to write to a pipe whose other end has been closed – a broken pipe – the write() function it caled will return an EPIPE error, translated as "Broken pipe". In addition to this error, the kernel also sends the SIGPIPE signal to type, which by default kills the process immediately.

(The signal is very useful in interactive shells, since most users do not want the first process to keep running and trying to write to nowhere. Meanwhile, non-interactive services ignore SIGPIPE – it would not be good for a long-running daemon to die on such a simple error – so they find the error code very useful.)

However, signal delivery is not 100% immediate, and there may be cases where write() returns EPIPE and the process continues to run for a short while before receiving the signal. In this case, type gets enough time to notice the failed write, translate the error code and even print an error message to stderr before being killed by SIGPIPE. (The error message says "-bash: type:" since type is a built-in command of bash itself.)

This seems to be more common on multi-CPU systems, since the type process and the kernel's signal delivery code can run on different cores, literally at the same time.

It would be possible to remove this message by patching the type builtin (in bash's source code) to immediately exit when it receives an EPIPE from the write() function.

However, it's nothing to be concerned about, and it is not related to your rvm installation in any way.

user1686

Posted 2013-02-20T15:29:55.707

Reputation: 283 655

1I have been piping the output of ls through head -1 for years, and today I'm getting a broken pipe message. – Tulains Córdova – 2015-02-23T14:07:38.197

1(Note: The "Broken pipe" error doesn't come from the signal. It comes from the errno. While the shell may otherwise show text messages for signal-induced-exits, it's usually smart enough to pretend that a SIGPIPE exit was a 'clean' one.) – user1686 – 2016-09-24T14:22:29.987

Thank you! I was worried about it. I did about an hours worth of googling last night troubleshooting my rvm install and doing repairs to it trying to fix it. I'd just swapped out with an SSD drive and use LVM and encrypted the hard drive so there was a lot of variables coming into play and I just wasn't sure what might have went sideways. Thank you for putting my mind at ease! – Jason Shultz – 2013-02-20T16:43:34.810

25

You can fix a broken pipe at the expense of another process by inserting tail -n +1 in your pipe, like this:

type rvm | tail -n +1 | head -1

The +1 tells tail to print the first line of input and everything that follows. Output will be exactly the same as if tail -n +1 wasn't there, but the program is smart enough to check standard output and closes the pipe down cleanly. No more broken pipes.

Huuu

Posted 2013-02-20T15:29:55.707

Reputation: 351

1Nice trick. I've used in a different situation than the one provided here. Thanks! – Somebody still uses you MS-DOS – 2014-09-14T23:52:25.520

1Note: you may need to use use tail -n +1, otherwise tail thinks the "+1" is meant to be a filename. – Benubird – 2015-04-13T13:29:00.980

6Looked like a great solution, but on Ubuntu 14.04.2 with tail 8.21 I get "tail: write error: Broken pipe", which is no improvement. – Roger Dueck – 2015-11-16T16:13:03.880

Version 8.21 seems to require the -n flag. see edit – Huuu – 2015-11-17T17:40:50.337

2@RogerDueck is correct. I also see this on a Mandriva system for a similar sort of problem find /var/lib/mysql -xdev -type f -daystart -mmin +5 -print0 | xargs -0 ls -ldt | tail -n +1 | head reliably yields xargs: ls: terminated by signal 13. As we know, the problem is one of input exhaustion and there's really only one command that deals with buffering: dd. Adding | dd obs=1M to the pipeline fixes the SIGPIPE for my use case. – Andrew Beals – 2015-12-09T21:36:58.537

It the output of the first command is binary, you can use tail -c +1, I was sometimes getting the broken pipe error when piping the binary output of ImageMagick convert (PDF to TIFF conversion) to tesseract (an OCR app supporting only TIFF files) – Marco Marsala – 2016-05-11T06:49:10.227

3I will further amend my suggestion, although I will note that I don't believe that xargs or type should be kvetching about SIGPIPE, to this: type rvm | (head -1 ; dd of=/dev/null) This, of course, is similar to other suggestions as it's causing all of the input to be processed, but dd should be the most efficient program to handle such things. – Andrew Beals – 2016-05-27T19:06:12.010

3

Commentary on SIGPIPE violators here: https://mail-index.netbsd.org/tech-userlevel/2013/01/07/msg007110.html

– Andrew Beals – 2016-05-27T22:19:26.603

@AndrewBeals (...) there's really only one command that deals with buffering: dd Reference needed. – Piotr Dobrogost – 2016-12-22T09:51:25.267

2

The write error: Broken pipe message refers to a writing process that tries to write to a pipe with no readers left on the reading end of that pipe and the special circumstance that the SIGPIPE signal is set to be ignored either by the current or the parent process. If it was the parent process that set SIGPIPE to be ignored, it is not possible for the child process to undo that again in a non-interacitive shell.

However, it is possible to kill type rvm when head -1 terminates by using explicit subshells. This way we can background type rvm, send typepid to the head -1 subshell and then implement a trap on EXIT there to kill type rvm explicitly.

trap "" PIPE        # parent process sets SIGPIPE to be ignored
bash                # start child process
export LANG=C
# create a fake rvm function
eval "
rvm() {
$(printf 'echo line of rvm code %s\n' {1..10000})
}
"

# rvm is a function
# bash: type: write error: Broken pipe
type rvm | head -1

# kill type rvm when head -1 terminates
# sleep 0: do nothing but with external command
( (sleep 0; type rvm) & echo ${!} ; wait ${!} ) | 
    (trap 'trap - EXIT; kill "$typepid"; exit' EXIT; typepid="$(head -1)"; head -1)

zancox

Posted 2013-02-20T15:29:55.707

Reputation: 21

From grawity's answer: type gets enough time to notice the failed write, translate the error code and even print an error message to stderr before being killed by SIGPIPE. I think your solution doesn't prevent the producer process (type here) from reacting to the failed write (due to closed pipe), does it? – Piotr Dobrogost – 2016-12-22T10:06:19.733