Introduction to Named Pipes
One of the fundamental features that makes Linux and other Unices useful is the “pipe”. Pipes allow separate processes to communicate without having been designed explicitly to work together. This allows tools quite narrow in their function to be combined in complex ways.
A simple example of using a pipe is the command:
ls | grep x
When bash examines the command line, it finds the vertical bar character | that separates the two commands. Bash and other shells run both commands, connecting the output of the first to the input of the second. The ls program produces a list of files in the current directory, while the grep program reads the output of ls and prints only those lines containing the letter x.
The above, familiar to most Unix users, is an example of an “unnamed pipe”. The pipe exists only inside the kernel and cannot be accessed by processes that created it, in this case, the bash shell. For those who don't already know, a parent process is the first process started by a program that in turn creates separate child processes that execute the program.
The other sort of pipe is a “named” pipe, which is sometimes called a FIFO. FIFO stands for “First In, First Out” and refers to the property that the order of bytes going in is the same coming out. The “name” of a named pipe is actually a file name within the file system. Pipes are shown by ls as any other file with a couple of differences:
% ls -l fifo1 prw-r--r-- 1 andy users 0 Jan 22 23:11 fifo1|
The p in the leftmost column indicates that fifo1 is a pipe. The rest of the permission bits control who can read or write to the pipe just like a regular file. On systems with a modern ls, the | character at the end of the file name is another clue, and on Linux systems with the color option enabled, fifo| is printed in red by default.
On older Linux systems, named pipes are created by the mknod program, usually located in the /etc directory. On more modern systems, mkfifo is a standard utility. The mkfifo program takes one or more file names as arguments for this task and creates pipes with those names. For example, to create a named pipe with the name pipe1 give the command:
mkfifo pipe
The simplest way to show how named pipes work is with an example. Suppose we've created pipe as shown above. In one virtual console1, type:
ls -l > pipe1and in another type:
cat < pipeVoila! The output of the command run on the first console shows up on the second console. Note that the order in which you run the commands doesn't matter.
If you haven't used virtual consoles before, see the article “Keyboards, Consoles and VT Cruising” by John M. Fisk in the November 1996 Linux Journal.
If you watch closely, you'll notice that the first command you run appears to hang. This happens because the other end of the pipe is not yet connected, and so the kernel suspends the first process until the second process opens the pipe. In Unix jargon, the process is said to be “blocked”, since it is waiting for something to happen.
One very useful application of named pipes is to allow totally unrelated programs to communicate with each other. For example, a program that services requests of some sort (print files, access a database) could open the pipe for reading. Then, another process could make a request by opening the pipe and writing a command. That is, the “server” can perform a task on behalf of the “client”. Blocking can also happen if the client isn't writing, or the server isn't reading.
Create two named pipes, pipe1 and pipe2. Run the commands:
echo -n x | cat - pipe1 > pipe2 & cat <pipe2 > pipe1
On screen, it will not appear that anything is happening, but if you run top (a command similar to ps for showing process status), you'll see that both cat programs are running like crazy copying the letter x back and forth in an endless loop.
After you press ctrl-C to get out of the loop, you may receive the message “broken pipe”. This error occurs when a process writing to a pipe when the process reading the pipe closes its end. Since the reader is gone, the data has no place to go. Normally, the writer will finish writing its data and close the pipe. At this point, the reader sees the EOF (end of file) and executes the request.
Whether or not the “broken pipe” message is issued depends on events at the exact instant the ctrl-C is pressed. If the second cat has just read the x, pressing ctrl-C stops the second cat, pipe1 is closed and the first cat stops quietly, i.e., without a message. On the other hand, if the second cat is waiting for the first to write the x, ctrl-C causes pipe2 to close before the first cat can write to it, and the error message is issued. This sort of random behavior is known as a “race condition”.
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
- Using Salt Stack and Vagrant for Drupal Development
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- New Products
- Validate an E-Mail Address with PHP, the Right Way
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- The Pari Package On Linux
- Home, My Backup Data Center
- New Products
- Developer Poll
- This is the easiest tutorial
4 hours 26 min ago - Ahh, the Koolaid.
10 hours 5 min ago - git-annex assistant
16 hours 4 min ago - direct cable connection
16 hours 27 min ago - Agreed on AirDroid. With my
16 hours 37 min ago - I just learned this
16 hours 41 min ago - enterprise
17 hours 11 min ago - not living upto the mobile revolution
20 hours 3 min ago - Deceptive Advertising and
20 hours 38 min ago - Let\'s declare that you have
20 hours 39 min ago




Comments
synchronization problem with named pipes
Dear Andy,
I came across your article regarding named pipes. I am having a problem to writing (from c) and reading(from java process) at the same time. Java process seems to start reading only after I quit the C process(which is writing).
Could you give me any hint or any help?
Thanks in advance.
Regards,
saime
puzzled
Great good old article, kept me busy for more than 2 hours (better than a movie)!
Piping Struggler
Thanks for the explanation. Had been looking for something which would explain the piping structure. Am learning Unix on my netbook and this has helped me understand.
do u mean process substitution?
command substitution is something like
$(baz)
'foobar'
You're Right
What he refers to <(...) is, as you say, Process Substitution, not Command Substitution.
Mitch Frazier is an Associate Editor for Linux Journal.
ouch... 'foobar' -> `foobar`
ouch...
'foobar' -> `foobar`
i need be help
Hi Andy Vaught!
I am Phuongjolly
I have a problem:
i created two file: the first's use for read data, the second file is use for display data
readfile.sh
#!/bin/sh
a=1
b=1
exit 0
displayfile.sh
#!bin/sh
c=`expr $a + $b`
echo "Sum is $c"
exit 0
then:
bash$: /bin/bash ./readfile.sh | /bin/bash ./displayfile.sh
and have an error, but i don't know what's error
Can you help me, please! Thanks
Also works with cygwin
If you have cygwin installed, you can try out this article. Works great.
A slight typo in the first example
mkfifo pipe
The simplest way to show how named pipes work is with an example. Suppose we've created pipe as shown above. In one virtual console1, type:
ls -l > pipe1
and in another type:
cat < pipe
the ls -l > pipe1 should be ls -l > pipe
named pipes
Linux code for a client/server program using named pipes to sare some data between clients through a server
named pipes
How to use the named pipes for conversation between 2 processes?
Please write the program for me.
What i do not understand is
What i do not understand is the following:
When i do
mkfifo pipe pipe2; echo foo >pipe & cat pipe >pipe2 & cat < pipe2 >pipe
it sends the foo back and forth and i get a high cpu, however when I do
mkfifo pipe pipe2; echo foo >pipe & cat pipe >pipe2 & cat pipe2 >pipe
my cpu doesn't raise, so the foo isn't send back and forth. My question is:
why doesn't the latter work? does cat pipe2 >pipe differ from cat < pipe2 >pipe ?
I was wondering the same
I was wondering the same thing. Perhaps it has something to do with the order the pipes are set up (due to bash syntax and precedence)? I'm looking for an answer to this as well.
I see
I tried
cat pipe2 | cat > pipe1
and it worked. Then I realized that in
cat pipe2 >pipe1
The string "pipe2" is passed to cat as an argument, and therefore cat must run to open the filestream to pipe2. But cat cannot run in this case until pipe1 has something running on the other end accepting input. The thing on the other end is:
echo -n x | cat - pipe1 > pipe2
Which is blocked until something connects to pipe2. Well, the _other_ cat isn't connected to pipe2, because it hasn't been able to run, which it must do to open the filestream.
I _think_ I am on the right track here. When you go:
cat pipe1
Cat is connected to pipe2 without having to do any work, because pipe2 is coming in via stdin.
Can someone confirm that this is indeed what is happening?
Ugh
I meant:
cat < pipe2 > pipe1
at the end there. Dumb formatting.
Hey, thanks for the article.
Hey, thanks for the article. It was really helpful.
Brilliant info
I second all the commenters: highly informative stuff. It lead me to the following gem, after having spent 2 days looking into perl modules, C++ libraries and even rsynclib to do streaming diffs on fifos:
diff -ur <(xxd pop.sig) <(xxd pop2.sig) | kompare -o -
Cheers
But ... no sigar
Today I found out that it is not actually streaming (because of the non-linear nature of diff(1))
This woke me up:
sehe@sehe-desktop:~$ diff -Ewbur <(xxd /dev/dvdrw1) <(ssh koolu xxd /dev/dvdrw)
diff: memory exhausted
Difference between mknod and mkfifo function
What is the difference between mknod and mkfifo command?
A good article
Hi,
A nice article on pipes.
I have a few questions here.
1)How to flush stdio buffers associated with the pipe.
2)What happens when there is no space on the pipe to accomodate the flushed data of the stdio buffer?
Imran
as seen in bash 3
Have a look here:
http://en.wikipedia.org/wiki/Bash#I.2FO_redirection
# close FD6
exec 6>&-
Problem using named pipes in a shell script
I am having a problem with using named pipes in a shell script (ksh or borne shell). As a test do something like this:
----------- cut --------
#!/bin/ksh
# This is shell script: "read_pipe"
mkfifo /tmp/event_pipe
while true
do
read EVENT </tmp/event_pipe
echo $EVENT >>/tmp/event.log
done
----------- cut -------------
Run the script via: "nohup read_pipe &".
Do something like: "cat /etc/passwd >/tmp/event_pipe". You will get some of the password file in the "/tmp/event.log", but not all of it. I tried various ways of doing the "read", but still get the same results. If I send data slowly (sleep 1 second between each line of data) it works. So what am I doing wrong? I tried a loop with "tail -f /tmp/event_pipe | while read EVENT", still the same result.
The purpose of "read_pipe" script when it does "real work", will be to process each "line" of data as it comes in. I don't know how fast the lines of data will come in, and I am afraid I will miss lines, based on the testing I did with "cat /etc/passwd". It almost appears I am overloading the "named pipe" and it is not blocking correctly. Anyone done something like this? Any ideas? Thanks.
RE: Problem using named pipes in a shell script
Try crumble your loop into two loops:
while true
do
cat /tmp/event_pipe | while read line
do echo $line >> /tmp/event.log
done
done
Or use
exec 3< /tmp/event_pipeandread -u3.How do we keep the stream from closing?
Thanx for your very infromative article. We can only find this kind of stuff on LJ.
I have been trying for sometime to keep the mysql client connected after executing a SQL script, and the words "named pipes" just poped to my mind. However, although I managed to put it to use in some scenarios, I fail to keep the stream flowing.
on the first shell I do this:
linux:/var/lib/mysql/replMySQL # mysql -u root -p1234 < pipe1
linux:/var/lib/mysql/replMySQL #
As soon as I do
linux:/var/lib/mysql/replMySQL # echo 'FLUSH TABLES WITH READ LOCK;' > pipe1
on the second shell, the mysql client sees the EOF, executes and exits.
My actual problem is to keep the mysqlclient connected after the 'FLUSH TABLES WITH READ LOCK;', so that I can do a certified backup from within a script and then release the connection and the lock. This script will be part of a solution in which I might not be able to put python or perl.
Keeping the stream open
Apparently, the stream closes when all writers have closed, so to keep the stream from closing open another writer that doesn't actually write anything. There must be better examples, but the following will work:
sleep 999999999 > pipe1 &
This was quite helpful. I
This was quite helpful. I was wondering however if there was a way to keep a process attached to a pipe permanently. When I used the above examples, the output process worked just fine for one command and then needed to be reattached. I'll keep researching and write back if I find anything on my own.
another way is to just
another way is to just use
cat > named_pipe
this cat waits on stdin, but keeps a write handle to the pipe open.
The answer is yes. I
The answer is yes. I solved my problem with:
tail -f <name_of_pipe> | <process_to_handle_output> &
Re: How do we keep the stream from closing?
how can be the mysql client in this case? It didn't work.
Awesome, thank you!
I wanted to give C-Kermit a dynamic list of files to upload (using svn diff), and (as above) "named pipe" somehow popped into my head as maybe something I could use. I'd never sat down to figure them out, and _magic_!
Re: Named Pipes YOUR CODE IS BAD
Your code with ls and tee is wrong. It gives:
Missing name for redirect.
Fix it.
try using bash!!!
try using bash!!!
Re: Named Pipes
the code with ls and tee works for me. I suggest that you stop shouting and check that you copied it correcly when you tried it. And that you're really running bash.
Re: Linux Apprentice: Introduction to Named Pipes
Thanks a lot it helped me a lot to understand named pipes
Very helpful. Thanks.
Very helpful.
Thanks.
Doesn't work for me ;(
Doesn't work in Windows 2000 cmd shell for me. This linux stuff is for the birds.
Dear bird: "Cmd.exe" is not
Dear bird: "Cmd.exe" is not Bash, as you probably know.
For using Bash under Windows please see Msys (www.mingw.org) or Cygwin (www.cygwin.com).
Thanks indeed
I needed to replace a filename parameter with command output, without taking up the stdin, but had no idea how. By some unknown magic, the phrase "named pipe" sprung to my mind. I googled for it, your article came up first, it was very clear, brief and informative - and ultimately helped me solve my problem in a few minutes. Thanks!