分类: LINUX
2009-05-22 15:14:57
A named pipe, also called a FIFO, is a pipe identified by an entry in a file system's name space. FIFOs are created using , , or the command. They are removed using or the command.
FIFOs look like regular file system nodes, but are distinguished from them by a p in the first column when the ls -l command is run.
/usr/sbin/mknod xxx pls -l xxx |
FIFOs are unidirectional: that is, one end of the FIFO is used for writing data, the other for reading data. FIFOs allow simple one-way interprocess communication between unrelated processes. Modules may be pushed onto a FIFO. Data written to the FIFO is passed down the write side of the module and back up the read side as shown in .
FIFOs are opened in the same manner as other file system nodes with . Any data written to the FIFO can be read from the same file descriptor in the first-in, first-out manner (serial, sequentially). Modules can also be pushed on the FIFO. See for the restrictions that apply when opening a FIFO. If O_NDELAY or O_NONBLOCK is not specified, an open on a FIFO blocks until both a reader and a writer are present.
Named or mounted Streams provide a more powerful interface for interprocess communications than does a FIFO. See for details.
A STREAMS-based pipe, also referred to as an anonymous pipe, is created using which returns two file descriptors--fd[0] and fd[1], each with its own Stream head. The ends of the pipe are constructed so that data written to either end of a pipe may be read from the opposite end.
STREAMS modules can be added to a pipe with I_PUSH . A module can be pushed onto one or both ends of the pipe (see ). However, if a module is pushed onto one end of the pipe, that module cannot be popped from the other end.
Pipes and FIFOs can be accessed through the operating system routines , , , , , , , , and . For FIFOs, is also used.
or ) are used to read from a pipe or FIFO. Data can be read from either end of a pipe. On success, the returns the number of bytes read and buffered. When the end of the data is reached, returns 0.
When a user process attempts to read from an empty pipe (or FIFO), the following happens:
If one end of the pipe is closed, 0 is returned, indicating the end of the file.
If the write side of the FIFO has closed, returns 0 to indicate the end of the file.
If some process has the FIFO open for writing, or both ends of the pipe are open, and O_NDELAY is set, returns 0.
If some process has the FIFO open for writing, or both ends of the pipe are open, and O_NONBLOCK is set, returns -1 and sets errno to EAGAIN.
If O_NDELAY and O_NONBLOCK are not set, the read call blocks until data is written to the pipe, until one end of the pipe is closed, or the FIFO is no longer open for writing.
When a user process calls , data is sent down the associated Stream. If the pipe or FIFO is empty (no modules pushed), data written is placed on the read queue of the other Stream for pipes, and on the read queue of the same Stream for FIFOs. Since the size of a pipe is the number of unread data bytes, the written data is reflected in the size of the other end of the pipe.
If a user process issues with 0 as the number of bytes to send a pipe or FIFO, 0 is returned, and, by default, no message is sent down the Stream. However, if a user must send a zero-length message downstream, SNDZERO can be used to change this default behavior. If SNDZERO is set in the Stream head, requests of 0 bytes generate a zero-length message and sends the message down the Stream. If SNDZERO is not set, no message is generated and 0 is returned to the user.
The SNDZERO bit may be changed by theI_SWROPT . If the arg in the has SNDZERO set, the bit is turned on. If the arg is set to 0, the SNDZERO bit is turned off.
The I_GWROPT is used to get the current write settings.
If multiple processes simultaneously write to the same pipe, data from one process can be interleaved with data from another process, if modules are pushed on the pipe or the write is greater than PIPE_BUF. The order of data written is not necessarily the order of data read. To ensure that writes of less than PIPE_BUF bytes are not interleaved with data written by other processes, any modules pushed on the pipe should have a maximum packet size of at least PIPE_BUF.
PIPE_BUF is an implementation-specific constant that specifies the maximum number of bytes that are atomic when writing to a pipe. When writing to a pipe, write requests of PIPE_BUF or fewer bytes are not interleaved with data from other processes doing writes to the same pipe. However, write requests of more than PIPE_BUF bytes may have data interleaved on arbitrary byte boundaries with writes by other processes whether or not the O_NONBLOCK or O_NDELAY flag is set.
If the module packet size is at least the size of PIPE_BUF, the Stream-head packages the data in such a way that the first message is at least PIPE_BUF bytes. The remaining data may be packaged into smaller or equal-sized blocks depending on buffer availability. If the first module on the Stream cannot support a packet of PIPE_BUF, atomic writes on the pipe cannot be guaranteed.
closes a pipe or FIFO and dismantles its associated Streams. On the last close of one end of a pipe, an M_HANGUP message is sent to the other end of the pipe. Subsequent or calls on that Stream head return the number of bytes read and zero when there are no more data. Subsequent or requests fail with errno set to EPIPE. If the other end of the pipe is mounted, the last close of the pipe forces it to be unmounted.
When the flush request is initiated from an or from , the FLUSHR or the FLUSHW bits of an M_FLUSH message must be switched. Bits are switchedd at the point where the M_FLUSH message is passed from a write queue to a read queue. This point is also known as the midpoint of the pipe.
The midpoint of a pipe is not always easily detectable, especially if there are numerous modules pushed on either end of the pipe. In that case, some mechanism needs to intercept all messages passing through the Stream. If the message is an M_FLUSH message and it is at the Stream midpoint, the flush bits need to be switched.
This bit switching is handled by the pipemod module. pipemod should be pushed onto a pipe or FIFO where flushing of any kind will take place. The module can be pushed on either end of the pipe. The only requirement is that it is pushed onto an end that previously did not have modules on it. That is, must be the first module pushed onto a pipe so that it is at the midpoint of the pipe itself.
The module handles only M_FLUSH messages. All other messages are passed to the next module using the utility routine. If an M_FLUSH message is passed to and the FLUSHR and FLUSHW bits are set, the message is not processed but is passed to the next module using . If only the FLUSHR bit is set, it is turned off and the FLUSHW bit is set. The message is then passed to the next module, using . Similarly, if the FLUSHW bit was the only bit set in the M_FLUSH message, it is turned off and the FLUSHR bit is turned on. The message is then passed to the next module on the Stream.
The module can be pushed on any Stream if it requires the bit switching.
It can be useful to name a Stream or STREAMS-based pipe by associating the Stream with an existing node in the file system name space. This allows unrelated processes to open the pipe and exchange data with the application. The following interfaces support naming a Stream or STREAMS-based pipe.
Attaches a Stream file descriptor to a node in the file system name space, thus naming the Stream.
Detaches a named Stream file descriptor from its node in the file system name space, thus unnaming the Stream.
Tests whether a file descriptor is associated with a Stream.
Named Streams are useful for passing file descriptors between unrelated processes on the same machine. A user process can send a file descriptor to another process by invoking the I_SENDFD on one end of a named Stream. This sends a message containing a file pointer to the Stream head at the other end of the pipe. Another process can retrieve the message containing the file pointer by a I_RECVFD call on the other end of the pipe.
With named pipes, client processes may communicate with a server process using the module connld that lets a client process get a unique, non-multiplexed connection to a server. The module can be pushed onto the named end of the pipe. If the named end of the pipe is then opened by a client, a new pipe is created. One file descriptor for the new pipe is passed back to a client (named Stream) as the file descriptor from and the other file descriptor is passed to the server using I_RECUFD . The server and the client may then communicate through a new pipe.
shows a server process that has created a pipe and pushed the connld module on the other end. The server then invokes the routine to name the other end /usr/toserv.
When process X (procx) opens /usr/toserv, it gains a unique connection to the server process that was at one end of the original STREAMS-based pipe. When process Y (procy) does the same, it also gains a unique connection to the server. As shown in , the server process has access to three separate pipes through three file descriptors.
is a STREAMS-based module that has open, close, and put procedures.
When the named Stream is opened, the open routine of is called. The open fails if:
The pipe ends cannot be created.
A file pointer and file descriptor cannot be allocated.
The Stream-head cannot stream the two pipe ends.
The open is not complete and will block until the server process has received the file descriptor using the ioctl I_RECVFD. The setting of the O_NDELAY or O_NONBLOCK flag has no impact on the open.
does not process messages. All messages are passed to the next object in the Stream. The read, write, put routines call to send the message up or down the Stream.