]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/pipe.2
zfs: merge openzfs/zfs@0ee9b0239
[FreeBSD/FreeBSD.git] / lib / libc / sys / pipe.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)pipe.2      8.1 (Berkeley) 6/4/93
29 .\"
30 .Dd December 1, 2017
31 .Dt PIPE 2
32 .Os
33 .Sh NAME
34 .Nm pipe ,
35 .Nm pipe2
36 .Nd create descriptor pair for interprocess communication
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In unistd.h
41 .Ft int
42 .Fn pipe "int fildes[2]"
43 .Ft int
44 .Fn pipe2 "int fildes[2]" "int flags"
45 .Sh DESCRIPTION
46 The
47 .Fn pipe
48 function
49 creates a
50 .Em pipe ,
51 which is an object allowing
52 bidirectional data flow,
53 and allocates a pair of file descriptors.
54 .Pp
55 The
56 .Fn pipe2
57 system call allows control over the attributes of the file descriptors
58 via the
59 .Fa flags
60 argument.
61 Values for
62 .Fa flags
63 are constructed by a bitwise-inclusive OR of flags from the following
64 list, defined in
65 .In fcntl.h :
66 .Bl -tag -width ".Dv O_NONBLOCK"
67 .It Dv O_CLOEXEC
68 Set the close-on-exec flag for the new file descriptors.
69 .It Dv O_NONBLOCK
70 Set the non-blocking flag for the ends of the pipe.
71 .El
72 .Pp
73 If the
74 .Fa flags
75 argument is 0, the behavior is identical to a call to
76 .Fn pipe .
77 .Pp
78 By convention, the first descriptor is normally used as the
79 .Em read end
80 of the pipe,
81 and the second is normally the
82 .Em write end ,
83 so that data written to
84 .Fa fildes[1]
85 appears on (i.e., can be read from)
86 .Fa fildes[0] .
87 This allows the output of one program to be
88 sent
89 to another program:
90 the source's standard output is set up to be
91 the write end of the pipe,
92 and the sink's standard input is set up to be
93 the read end of the pipe.
94 The pipe itself persists until all its associated descriptors are
95 closed.
96 .Pp
97 A pipe that has had an end closed is considered
98 .Em widowed .
99 Writing on such a pipe causes the writing process to receive
100 a
101 .Dv SIGPIPE
102 signal.
103 Widowing a pipe is the only way to deliver end-of-file to a reader:
104 after the reader consumes any buffered data, reading a widowed pipe
105 returns a zero count.
106 .Pp
107 The bidirectional nature of this implementation of pipes is not
108 portable to older systems, so it is recommended to use the convention
109 for using the endpoints in the traditional manner when using a
110 pipe in one direction.
111 .Sh IMPLEMENTATION NOTES
112 The
113 .Fn pipe
114 function calls the
115 .Fn pipe2
116 system call.
117 As a result, system call traces such as those captured by
118 .Xr dtrace 1
119 or
120 .Xr ktrace 1
121 will show calls to
122 .Fn pipe2 .
123 .Sh RETURN VALUES
124 .Rv -std pipe
125 .Sh ERRORS
126 The
127 .Fn pipe
128 and
129 .Fn pipe2
130 system calls will fail if:
131 .Bl -tag -width Er
132 .It Bq Er EFAULT
133 .Ar fildes
134 argument points to an invalid memory location.
135 .It Bq Er EMFILE
136 Too many descriptors are active.
137 .It Bq Er ENFILE
138 The system file table is full.
139 .It Bq Er ENOMEM
140 Not enough kernel memory to establish a pipe.
141 .El
142 .Pp
143 The
144 .Fn pipe2
145 system call will also fail if:
146 .Bl -tag -width Er
147 .It Bq Er EINVAL
148 The
149 .Fa flags
150 argument is invalid.
151 .El
152 .Sh SEE ALSO
153 .Xr sh 1 ,
154 .Xr fork 2 ,
155 .Xr read 2 ,
156 .Xr socketpair 2 ,
157 .Xr write 2
158 .Sh HISTORY
159 The
160 .Fn pipe
161 function appeared in
162 .At v3 .
163 .Pp
164 Bidirectional pipes were first used on
165 .At V.4 .
166 .Pp
167 The
168 .Fn pipe2
169 function appeared in
170 .Fx 10.0 .
171 .Pp
172 The
173 .Fn pipe
174 function became a wrapper around
175 .Fn pipe2
176 in
177 .Fx 11.0 .