]> git.ipfire.org Git - thirdparty/glibc.git/blame - manual/llio.texi
posix: Fix tst-spawn.c issue from commit 805334b26c
[thirdparty/glibc.git] / manual / llio.texi
CommitLineData
28f540f4 1@node Low-Level I/O, File System Interface, I/O on Streams, Top
7a68c94a 2@c %MENU% Low-level, less portable I/O
28f540f4
RM
3@chapter Low-Level Input/Output
4
5This chapter describes functions for performing low-level input/output
6operations on file descriptors. These functions include the primitives
7for the higher-level I/O functions described in @ref{I/O on Streams}, as
8well as functions for performing low-level control operations for which
9there are no equivalents on streams.
10
11Stream-level I/O is more flexible and usually more convenient;
12therefore, programmers generally use the descriptor-level functions only
13when necessary. These are some of the usual reasons:
14
15@itemize @bullet
16@item
17For reading binary files in large chunks.
18
19@item
20For reading an entire file into core before parsing it.
21
22@item
23To perform operations other than data transfer, which can only be done
24with a descriptor. (You can use @code{fileno} to get the descriptor
25corresponding to a stream.)
26
27@item
28To pass descriptors to a child process. (The child can create its own
29stream to use a descriptor that it inherits, but cannot inherit a stream
30directly.)
31@end itemize
32
33@menu
34* Opening and Closing Files:: How to open and close file
2c6fe0bd 35 descriptors.
28f540f4
RM
36* I/O Primitives:: Reading and writing data.
37* File Position Primitive:: Setting a descriptor's file
2c6fe0bd 38 position.
28f540f4
RM
39* Descriptors and Streams:: Converting descriptor to stream
40 or vice-versa.
41* Stream/Descriptor Precautions:: Precautions needed if you use both
42 descriptors and streams.
49c091e5 43* Scatter-Gather:: Fast I/O to discontinuous buffers.
bad7a0c8 44* Copying File Data:: Copying data between files.
07435eb4 45* Memory-mapped I/O:: Using files like memory.
28f540f4
RM
46* Waiting for I/O:: How to check for input or output
47 on multiple file descriptors.
dfd2257a 48* Synchronizing I/O:: Making sure all I/O actions completed.
b07d03e0 49* Asynchronous I/O:: Perform I/O in parallel.
28f540f4
RM
50* Control Operations:: Various other operations on file
51 descriptors.
52* Duplicating Descriptors:: Fcntl commands for duplicating
53 file descriptors.
54* Descriptor Flags:: Fcntl commands for manipulating
55 flags associated with file
2c6fe0bd 56 descriptors.
28f540f4
RM
57* File Status Flags:: Fcntl commands for manipulating
58 flags associated with open files.
59* File Locks:: Fcntl commands for implementing
60 file locking.
0961f7e1
JL
61* Open File Description Locks:: Fcntl commands for implementing
62 open file description locking.
63* Open File Description Locks Example:: An example of open file description lock
64 usage
28f540f4
RM
65* Interrupt Input:: Getting an asynchronous signal when
66 input arrives.
07435eb4 67* IOCTLs:: Generic I/O Control operations.
28f540f4
RM
68@end menu
69
70
71@node Opening and Closing Files
72@section Opening and Closing Files
73
74@cindex opening a file descriptor
75@cindex closing a file descriptor
76This section describes the primitives for opening and closing files
77using file descriptors. The @code{open} and @code{creat} functions are
78declared in the header file @file{fcntl.h}, while @code{close} is
79declared in @file{unistd.h}.
80@pindex unistd.h
81@pindex fcntl.h
82
28f540f4 83@deftypefun int open (const char *@var{filename}, int @var{flags}[, mode_t @var{mode}])
d08a7e4c 84@standards{POSIX.1, fcntl.h}
2cc3615c 85@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
624254b1
SC
86The @code{open} function creates and returns a new file descriptor for
87the file named by @var{filename}. Initially, the file position
28f540f4 88indicator for the file is at the beginning of the file. The argument
624254b1
SC
89@var{mode} (@pxref{Permission Bits}) is used only when a file is
90created, but it doesn't hurt to supply the argument in any case.
28f540f4
RM
91
92The @var{flags} argument controls how the file is to be opened. This is
93a bit mask; you create the value by the bitwise OR of the appropriate
94parameters (using the @samp{|} operator in C).
95@xref{File Status Flags}, for the parameters available.
96
97The normal return value from @code{open} is a non-negative integer file
07435eb4 98descriptor. In the case of an error, a value of @math{-1} is returned
28f540f4
RM
99instead. In addition to the usual file name errors (@pxref{File
100Name Errors}), the following @code{errno} error conditions are defined
101for this function:
102
103@table @code
104@item EACCES
19e4c7dd 105The file exists but is not readable/writable as requested by the @var{flags}
9739d2d5 106argument, or the file does not exist and the directory is unwritable so
28f540f4
RM
107it cannot be created.
108
109@item EEXIST
110Both @code{O_CREAT} and @code{O_EXCL} are set, and the named file already
111exists.
112
113@item EINTR
114The @code{open} operation was interrupted by a signal.
115@xref{Interrupted Primitives}.
116
117@item EISDIR
118The @var{flags} argument specified write access, and the file is a directory.
119
120@item EMFILE
121The process has too many files open.
122The maximum number of file descriptors is controlled by the
123@code{RLIMIT_NOFILE} resource limit; @pxref{Limits on Resources}.
124
125@item ENFILE
126The entire system, or perhaps the file system which contains the
127directory, cannot support any additional open files at the moment.
a7a93d50 128(This problem cannot happen on @gnuhurdsystems{}.)
28f540f4
RM
129
130@item ENOENT
131The named file does not exist, and @code{O_CREAT} is not specified.
132
133@item ENOSPC
134The directory or file system that would contain the new file cannot be
135extended, because there is no disk space left.
136
137@item ENXIO
138@code{O_NONBLOCK} and @code{O_WRONLY} are both set in the @var{flags}
139argument, the file named by @var{filename} is a FIFO (@pxref{Pipes and
140FIFOs}), and no process has the file open for reading.
141
142@item EROFS
143The file resides on a read-only file system and any of @w{@code{O_WRONLY}},
144@code{O_RDWR}, and @code{O_TRUNC} are set in the @var{flags} argument,
145or @code{O_CREAT} is set and the file does not already exist.
146@end table
147
148@c !!! umask
149
04b9968b 150If on a 32 bit machine the sources are translated with
b07d03e0
UD
151@code{_FILE_OFFSET_BITS == 64} the function @code{open} returns a file
152descriptor opened in the large file mode which enables the file handling
9ceeb279
OB
153functions to use files up to @twoexp{63} bytes in size and offset from
154@minus{}@twoexp{63} to @twoexp{63}. This happens transparently for the user
9739d2d5 155since all of the low-level file handling functions are equally replaced.
b07d03e0 156
04b9968b 157This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
158is a problem if the thread allocates some resources (like memory, file
159descriptors, semaphores or whatever) at the time @code{open} is
19e4c7dd 160called. If the thread gets canceled these resources stay allocated
dfd2257a 161until the program ends. To avoid this calls to @code{open} should be
04b9968b 162protected using cancellation handlers.
dfd2257a
UD
163@c ref pthread_cleanup_push / pthread_cleanup_pop
164
28f540f4
RM
165The @code{open} function is the underlying primitive for the @code{fopen}
166and @code{freopen} functions, that create streams.
167@end deftypefun
168
b07d03e0 169@deftypefun int open64 (const char *@var{filename}, int @var{flags}[, mode_t @var{mode}])
d08a7e4c 170@standards{Unix98, fcntl.h}
2cc3615c 171@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
b07d03e0
UD
172This function is similar to @code{open}. It returns a file descriptor
173which can be used to access the file named by @var{filename}. The only
04b9968b 174difference is that on 32 bit systems the file is opened in the
b07d03e0
UD
175large file mode. I.e., file length and file offsets can exceed 31 bits.
176
b07d03e0
UD
177When the sources are translated with @code{_FILE_OFFSET_BITS == 64} this
178function is actually available under the name @code{open}. I.e., the
179new, extended API using 64 bit file sizes and offsets transparently
180replaces the old API.
181@end deftypefun
182
28f540f4 183@deftypefn {Obsolete function} int creat (const char *@var{filename}, mode_t @var{mode})
d08a7e4c 184@standards{POSIX.1, fcntl.h}
2cc3615c 185@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
28f540f4
RM
186This function is obsolete. The call:
187
188@smallexample
189creat (@var{filename}, @var{mode})
190@end smallexample
191
192@noindent
193is equivalent to:
194
195@smallexample
196open (@var{filename}, O_WRONLY | O_CREAT | O_TRUNC, @var{mode})
197@end smallexample
b07d03e0 198
04b9968b 199If on a 32 bit machine the sources are translated with
b07d03e0
UD
200@code{_FILE_OFFSET_BITS == 64} the function @code{creat} returns a file
201descriptor opened in the large file mode which enables the file handling
9ceeb279
OB
202functions to use files up to @twoexp{63} in size and offset from
203@minus{}@twoexp{63} to @twoexp{63}. This happens transparently for the user
9739d2d5 204since all of the low-level file handling functions are equally replaced.
b07d03e0
UD
205@end deftypefn
206
b07d03e0 207@deftypefn {Obsolete function} int creat64 (const char *@var{filename}, mode_t @var{mode})
d08a7e4c 208@standards{Unix98, fcntl.h}
2cc3615c 209@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
b07d03e0
UD
210This function is similar to @code{creat}. It returns a file descriptor
211which can be used to access the file named by @var{filename}. The only
9739d2d5 212difference is that on 32 bit systems the file is opened in the
b07d03e0
UD
213large file mode. I.e., file length and file offsets can exceed 31 bits.
214
215To use this file descriptor one must not use the normal operations but
216instead the counterparts named @code{*64}, e.g., @code{read64}.
217
218When the sources are translated with @code{_FILE_OFFSET_BITS == 64} this
219function is actually available under the name @code{open}. I.e., the
220new, extended API using 64 bit file sizes and offsets transparently
221replaces the old API.
28f540f4
RM
222@end deftypefn
223
28f540f4 224@deftypefun int close (int @var{filedes})
d08a7e4c 225@standards{POSIX.1, unistd.h}
2cc3615c 226@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
28f540f4
RM
227The function @code{close} closes the file descriptor @var{filedes}.
228Closing a file has the following consequences:
229
230@itemize @bullet
2c6fe0bd 231@item
28f540f4
RM
232The file descriptor is deallocated.
233
234@item
235Any record locks owned by the process on the file are unlocked.
236
237@item
238When all file descriptors associated with a pipe or FIFO have been closed,
239any unread data is discarded.
240@end itemize
241
04b9968b 242This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
243is a problem if the thread allocates some resources (like memory, file
244descriptors, semaphores or whatever) at the time @code{close} is
19e4c7dd 245called. If the thread gets canceled these resources stay allocated
04b9968b
UD
246until the program ends. To avoid this, calls to @code{close} should be
247protected using cancellation handlers.
dfd2257a
UD
248@c ref pthread_cleanup_push / pthread_cleanup_pop
249
07435eb4 250The normal return value from @code{close} is @math{0}; a value of @math{-1}
28f540f4
RM
251is returned in case of failure. The following @code{errno} error
252conditions are defined for this function:
253
254@table @code
255@item EBADF
256The @var{filedes} argument is not a valid file descriptor.
257
258@item EINTR
259The @code{close} call was interrupted by a signal.
260@xref{Interrupted Primitives}.
261Here is an example of how to handle @code{EINTR} properly:
262
263@smallexample
264TEMP_FAILURE_RETRY (close (desc));
265@end smallexample
266
267@item ENOSPC
268@itemx EIO
269@itemx EDQUOT
2c6fe0bd 270When the file is accessed by NFS, these errors from @code{write} can sometimes
28f540f4
RM
271not be detected until @code{close}. @xref{I/O Primitives}, for details
272on their meaning.
273@end table
b07d03e0
UD
274
275Please note that there is @emph{no} separate @code{close64} function.
276This is not necessary since this function does not determine nor depend
fed8f7f7 277on the mode of the file. The kernel which performs the @code{close}
04b9968b 278operation knows which mode the descriptor is used for and can handle
b07d03e0 279this situation.
28f540f4
RM
280@end deftypefun
281
282To close a stream, call @code{fclose} (@pxref{Closing Streams}) instead
283of trying to close its underlying file descriptor with @code{close}.
284This flushes any buffered output and updates the stream object to
285indicate that it is closed.
286
287@node I/O Primitives
288@section Input and Output Primitives
289
290This section describes the functions for performing primitive input and
291output operations on file descriptors: @code{read}, @code{write}, and
292@code{lseek}. These functions are declared in the header file
293@file{unistd.h}.
294@pindex unistd.h
295
28f540f4 296@deftp {Data Type} ssize_t
d08a7e4c 297@standards{POSIX.1, unistd.h}
28f540f4
RM
298This data type is used to represent the sizes of blocks that can be
299read or written in a single operation. It is similar to @code{size_t},
300but must be a signed type.
301@end deftp
302
303@cindex reading from a file descriptor
28f540f4 304@deftypefun ssize_t read (int @var{filedes}, void *@var{buffer}, size_t @var{size})
d08a7e4c 305@standards{POSIX.1, unistd.h}
2cc3615c 306@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
307The @code{read} function reads up to @var{size} bytes from the file
308with descriptor @var{filedes}, storing the results in the @var{buffer}.
04b9968b
UD
309(This is not necessarily a character string, and no terminating null
310character is added.)
28f540f4
RM
311
312@cindex end-of-file, on a file descriptor
313The return value is the number of bytes actually read. This might be
314less than @var{size}; for example, if there aren't that many bytes left
315in the file or if there aren't that many bytes immediately available.
316The exact behavior depends on what kind of file it is. Note that
317reading less than @var{size} bytes is not an error.
318
319A value of zero indicates end-of-file (except if the value of the
320@var{size} argument is also zero). This is not considered an error.
321If you keep calling @code{read} while at end-of-file, it will keep
322returning zero and doing nothing else.
323
324If @code{read} returns at least one character, there is no way you can
325tell whether end-of-file was reached. But if you did reach the end, the
326next read will return zero.
327
07435eb4 328In case of an error, @code{read} returns @math{-1}. The following
28f540f4
RM
329@code{errno} error conditions are defined for this function:
330
331@table @code
332@item EAGAIN
333Normally, when no input is immediately available, @code{read} waits for
334some input. But if the @code{O_NONBLOCK} flag is set for the file
335(@pxref{File Status Flags}), @code{read} returns immediately without
336reading any data, and reports this error.
337
338@strong{Compatibility Note:} Most versions of BSD Unix use a different
1f77f049 339error code for this: @code{EWOULDBLOCK}. In @theglibc{},
28f540f4
RM
340@code{EWOULDBLOCK} is an alias for @code{EAGAIN}, so it doesn't matter
341which name you use.
342
343On some systems, reading a large amount of data from a character special
344file can also fail with @code{EAGAIN} if the kernel cannot find enough
345physical memory to lock down the user's pages. This is limited to
346devices that transfer with direct memory access into the user's memory,
347which means it does not include terminals, since they always use
a7a93d50
JM
348separate buffers inside the kernel. This problem never happens on
349@gnuhurdsystems{}.
28f540f4
RM
350
351Any condition that could result in @code{EAGAIN} can instead result in a
352successful @code{read} which returns fewer bytes than requested.
353Calling @code{read} again immediately would result in @code{EAGAIN}.
354
355@item EBADF
356The @var{filedes} argument is not a valid file descriptor,
357or is not open for reading.
358
359@item EINTR
360@code{read} was interrupted by a signal while it was waiting for input.
9739d2d5 361@xref{Interrupted Primitives}. A signal will not necessarily cause
28f540f4
RM
362@code{read} to return @code{EINTR}; it may instead result in a
363successful @code{read} which returns fewer bytes than requested.
364
365@item EIO
366For many devices, and for disk files, this error code indicates
367a hardware error.
368
369@code{EIO} also occurs when a background process tries to read from the
370controlling terminal, and the normal action of stopping the process by
371sending it a @code{SIGTTIN} signal isn't working. This might happen if
04b9968b 372the signal is being blocked or ignored, or because the process group is
28f540f4
RM
373orphaned. @xref{Job Control}, for more information about job control,
374and @ref{Signal Handling}, for information about signals.
7e583a52
RM
375
376@item EINVAL
377In some systems, when reading from a character or block device, position
378and size offsets must be aligned to a particular block size. This error
379indicates that the offsets were not properly aligned.
28f540f4
RM
380@end table
381
b07d03e0
UD
382Please note that there is no function named @code{read64}. This is not
383necessary since this function does not directly modify or handle the
384possibly wide file offset. Since the kernel handles this state
04b9968b 385internally, the @code{read} function can be used for all cases.
b07d03e0 386
04b9968b 387This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
388is a problem if the thread allocates some resources (like memory, file
389descriptors, semaphores or whatever) at the time @code{read} is
19e4c7dd 390called. If the thread gets canceled these resources stay allocated
04b9968b
UD
391until the program ends. To avoid this, calls to @code{read} should be
392protected using cancellation handlers.
dfd2257a
UD
393@c ref pthread_cleanup_push / pthread_cleanup_pop
394
28f540f4
RM
395The @code{read} function is the underlying primitive for all of the
396functions that read from streams, such as @code{fgetc}.
397@end deftypefun
398
a5a0310d 399@deftypefun ssize_t pread (int @var{filedes}, void *@var{buffer}, size_t @var{size}, off_t @var{offset})
d08a7e4c 400@standards{Unix98, unistd.h}
2cc3615c
AO
401@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
402@c This is usually a safe syscall. The sysdeps/posix fallback emulation
403@c is not MT-Safe because it uses lseek, read and lseek back, but is it
404@c used anywhere?
a5a0310d 405The @code{pread} function is similar to the @code{read} function. The
04b9968b
UD
406first three arguments are identical, and the return values and error
407codes also correspond.
a5a0310d
UD
408
409The difference is the fourth argument and its handling. The data block
410is not read from the current position of the file descriptor
411@code{filedes}. Instead the data is read from the file starting at
412position @var{offset}. The position of the file descriptor itself is
04b9968b 413not affected by the operation. The value is the same as before the call.
a5a0310d 414
b07d03e0
UD
415When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
416@code{pread} function is in fact @code{pread64} and the type
04b9968b 417@code{off_t} has 64 bits, which makes it possible to handle files up to
9ceeb279 418@twoexp{63} bytes in length.
b07d03e0 419
a5a0310d
UD
420The return value of @code{pread} describes the number of bytes read.
421In the error case it returns @math{-1} like @code{read} does and the
04b9968b
UD
422error codes are also the same, with these additions:
423
a5a0310d
UD
424@table @code
425@item EINVAL
426The value given for @var{offset} is negative and therefore illegal.
427
428@item ESPIPE
9739d2d5 429The file descriptor @var{filedes} is associated with a pipe or a FIFO and
a5a0310d
UD
430this device does not allow positioning of the file pointer.
431@end table
432
433The function is an extension defined in the Unix Single Specification
434version 2.
435@end deftypefun
436
b07d03e0 437@deftypefun ssize_t pread64 (int @var{filedes}, void *@var{buffer}, size_t @var{size}, off64_t @var{offset})
d08a7e4c 438@standards{Unix98, unistd.h}
2cc3615c
AO
439@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
440@c This is usually a safe syscall. The sysdeps/posix fallback emulation
441@c is not MT-Safe because it uses lseek64, read and lseek64 back, but is
442@c it used anywhere?
b07d03e0
UD
443This function is similar to the @code{pread} function. The difference
444is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 445@code{off_t} which makes it possible on 32 bit machines to address
9ceeb279 446files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
b07d03e0
UD
447file descriptor @code{filedes} must be opened using @code{open64} since
448otherwise the large offsets possible with @code{off64_t} will lead to
449errors with a descriptor in small file mode.
450
c756c71c 451When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
04b9968b
UD
45232 bit machine this function is actually available under the name
453@code{pread} and so transparently replaces the 32 bit interface.
b07d03e0
UD
454@end deftypefun
455
28f540f4 456@cindex writing to a file descriptor
28f540f4 457@deftypefun ssize_t write (int @var{filedes}, const void *@var{buffer}, size_t @var{size})
d08a7e4c 458@standards{POSIX.1, unistd.h}
2cc3615c 459@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
0c6891a0
CD
460@c Some say write is thread-unsafe on Linux without O_APPEND. In the VFS layer
461@c the vfs_write() does no locking around the acquisition of a file offset and
462@c therefore multiple threads / kernel tasks may race and get the same offset
463@c resulting in data loss.
464@c
465@c See:
466@c http://thread.gmane.org/gmane.linux.kernel/397980
467@c http://lwn.net/Articles/180387/
468@c
469@c The counter argument is that POSIX only says that the write starts at the
470@c file position and that the file position is updated *before* the function
471@c returns. What that really means is that any expectation of atomic writes is
472@c strictly an invention of the interpretation of the reader. Data loss could
473@c happen if two threads start the write at the same time. Only writes that
474@c come after the return of another write are guaranteed to follow the other
475@c write.
476@c
477@c The other side of the coin is that POSIX goes on further to say in
478@c "2.9.7 Thread Interactions with Regular File Operations" that threads
479@c should never see interleaving sets of file operations, but it is insane
480@c to do anything like that because it kills performance, so you don't get
481@c those guarantees in Linux.
482@c
483@c So we mark it thread safe, it doesn't blow up, but you might loose
484@c data, and we don't strictly meet the POSIX requirements.
a2887bdb
CD
485@c
486@c The fix for file offsets racing was merged in 3.14, the commits were:
487@c 9c225f2655e36a470c4f58dbbc99244c5fc7f2d4, and
488@c d7a15f8d0777955986a2ab00ab181795cab14b01. Therefore after Linux 3.14 you
489@c should get mostly MT-safe writes.
28f540f4
RM
490The @code{write} function writes up to @var{size} bytes from
491@var{buffer} to the file with descriptor @var{filedes}. The data in
492@var{buffer} is not necessarily a character string and a null character is
493output like any other character.
494
495The return value is the number of bytes actually written. This may be
496@var{size}, but can always be smaller. Your program should always call
497@code{write} in a loop, iterating until all the data is written.
498
499Once @code{write} returns, the data is enqueued to be written and can be
500read back right away, but it is not necessarily written out to permanent
501storage immediately. You can use @code{fsync} when you need to be sure
502your data has been permanently stored before continuing. (It is more
503efficient for the system to batch up consecutive writes and do them all
504at once when convenient. Normally they will always be written to disk
a5a0310d
UD
505within a minute or less.) Modern systems provide another function
506@code{fdatasync} which guarantees integrity only for the file data and
507is therefore faster.
508@c !!! xref fsync, fdatasync
2c6fe0bd 509You can use the @code{O_FSYNC} open mode to make @code{write} always
28f540f4
RM
510store the data to disk before returning; @pxref{Operating Modes}.
511
07435eb4 512In the case of an error, @code{write} returns @math{-1}. The following
28f540f4
RM
513@code{errno} error conditions are defined for this function:
514
515@table @code
516@item EAGAIN
517Normally, @code{write} blocks until the write operation is complete.
518But if the @code{O_NONBLOCK} flag is set for the file (@pxref{Control
04b9968b 519Operations}), it returns immediately without writing any data and
28f540f4
RM
520reports this error. An example of a situation that might cause the
521process to block on output is writing to a terminal device that supports
522flow control, where output has been suspended by receipt of a STOP
523character.
524
525@strong{Compatibility Note:} Most versions of BSD Unix use a different
1f77f049 526error code for this: @code{EWOULDBLOCK}. In @theglibc{},
28f540f4
RM
527@code{EWOULDBLOCK} is an alias for @code{EAGAIN}, so it doesn't matter
528which name you use.
529
530On some systems, writing a large amount of data from a character special
531file can also fail with @code{EAGAIN} if the kernel cannot find enough
532physical memory to lock down the user's pages. This is limited to
533devices that transfer with direct memory access into the user's memory,
534which means it does not include terminals, since they always use
a7a93d50
JM
535separate buffers inside the kernel. This problem does not arise on
536@gnuhurdsystems{}.
28f540f4
RM
537
538@item EBADF
539The @var{filedes} argument is not a valid file descriptor,
540or is not open for writing.
541
542@item EFBIG
543The size of the file would become larger than the implementation can support.
544
545@item EINTR
546The @code{write} operation was interrupted by a signal while it was
04b9968b 547blocked waiting for completion. A signal will not necessarily cause
28f540f4
RM
548@code{write} to return @code{EINTR}; it may instead result in a
549successful @code{write} which writes fewer bytes than requested.
550@xref{Interrupted Primitives}.
551
552@item EIO
553For many devices, and for disk files, this error code indicates
554a hardware error.
555
556@item ENOSPC
557The device containing the file is full.
558
559@item EPIPE
560This error is returned when you try to write to a pipe or FIFO that
561isn't open for reading by any process. When this happens, a @code{SIGPIPE}
562signal is also sent to the process; see @ref{Signal Handling}.
7e583a52
RM
563
564@item EINVAL
565In some systems, when writing to a character or block device, position
566and size offsets must be aligned to a particular block size. This error
567indicates that the offsets were not properly aligned.
28f540f4
RM
568@end table
569
570Unless you have arranged to prevent @code{EINTR} failures, you should
571check @code{errno} after each failing call to @code{write}, and if the
572error was @code{EINTR}, you should simply repeat the call.
573@xref{Interrupted Primitives}. The easy way to do this is with the
574macro @code{TEMP_FAILURE_RETRY}, as follows:
575
576@smallexample
577nbytes = TEMP_FAILURE_RETRY (write (desc, buffer, count));
578@end smallexample
579
b07d03e0
UD
580Please note that there is no function named @code{write64}. This is not
581necessary since this function does not directly modify or handle the
582possibly wide file offset. Since the kernel handles this state
583internally the @code{write} function can be used for all cases.
584
04b9968b 585This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
586is a problem if the thread allocates some resources (like memory, file
587descriptors, semaphores or whatever) at the time @code{write} is
19e4c7dd 588called. If the thread gets canceled these resources stay allocated
04b9968b
UD
589until the program ends. To avoid this, calls to @code{write} should be
590protected using cancellation handlers.
dfd2257a
UD
591@c ref pthread_cleanup_push / pthread_cleanup_pop
592
28f540f4
RM
593The @code{write} function is the underlying primitive for all of the
594functions that write to streams, such as @code{fputc}.
595@end deftypefun
596
a5a0310d 597@deftypefun ssize_t pwrite (int @var{filedes}, const void *@var{buffer}, size_t @var{size}, off_t @var{offset})
d08a7e4c 598@standards{Unix98, unistd.h}
2cc3615c
AO
599@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
600@c This is usually a safe syscall. The sysdeps/posix fallback emulation
601@c is not MT-Safe because it uses lseek, write and lseek back, but is it
602@c used anywhere?
a5a0310d 603The @code{pwrite} function is similar to the @code{write} function. The
04b9968b
UD
604first three arguments are identical, and the return values and error codes
605also correspond.
a5a0310d
UD
606
607The difference is the fourth argument and its handling. The data block
608is not written to the current position of the file descriptor
609@code{filedes}. Instead the data is written to the file starting at
610position @var{offset}. The position of the file descriptor itself is
04b9968b 611not affected by the operation. The value is the same as before the call.
a5a0310d 612
717da4b3
AZ
613However, on Linux, if a file is opened with @code{O_APPEND}, @code{pwrite}
614appends data to the end of the file, regardless of the value of
615@code{offset}.
616
b07d03e0
UD
617When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
618@code{pwrite} function is in fact @code{pwrite64} and the type
04b9968b 619@code{off_t} has 64 bits, which makes it possible to handle files up to
9ceeb279 620@twoexp{63} bytes in length.
b07d03e0 621
a5a0310d
UD
622The return value of @code{pwrite} describes the number of written bytes.
623In the error case it returns @math{-1} like @code{write} does and the
04b9968b
UD
624error codes are also the same, with these additions:
625
a5a0310d
UD
626@table @code
627@item EINVAL
628The value given for @var{offset} is negative and therefore illegal.
629
630@item ESPIPE
04b9968b 631The file descriptor @var{filedes} is associated with a pipe or a FIFO and
a5a0310d
UD
632this device does not allow positioning of the file pointer.
633@end table
634
635The function is an extension defined in the Unix Single Specification
636version 2.
637@end deftypefun
638
b07d03e0 639@deftypefun ssize_t pwrite64 (int @var{filedes}, const void *@var{buffer}, size_t @var{size}, off64_t @var{offset})
d08a7e4c 640@standards{Unix98, unistd.h}
2cc3615c
AO
641@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
642@c This is usually a safe syscall. The sysdeps/posix fallback emulation
643@c is not MT-Safe because it uses lseek64, write and lseek64 back, but
644@c is it used anywhere?
b07d03e0
UD
645This function is similar to the @code{pwrite} function. The difference
646is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 647@code{off_t} which makes it possible on 32 bit machines to address
9ceeb279 648files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
b07d03e0
UD
649file descriptor @code{filedes} must be opened using @code{open64} since
650otherwise the large offsets possible with @code{off64_t} will lead to
651errors with a descriptor in small file mode.
652
c756c71c 653When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
04b9968b
UD
65432 bit machine this function is actually available under the name
655@code{pwrite} and so transparently replaces the 32 bit interface.
b07d03e0 656@end deftypefun
717da4b3 657
28f540f4
RM
658@node File Position Primitive
659@section Setting the File Position of a Descriptor
660
661Just as you can set the file position of a stream with @code{fseek}, you
662can set the file position of a descriptor with @code{lseek}. This
663specifies the position in the file for the next @code{read} or
664@code{write} operation. @xref{File Positioning}, for more information
665on the file position and what it means.
666
667To read the current file position value from a descriptor, use
668@code{lseek (@var{desc}, 0, SEEK_CUR)}.
669
670@cindex file positioning on a file descriptor
671@cindex positioning a file descriptor
672@cindex seeking on a file descriptor
28f540f4 673@deftypefun off_t lseek (int @var{filedes}, off_t @var{offset}, int @var{whence})
d08a7e4c 674@standards{POSIX.1, unistd.h}
2cc3615c 675@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
676The @code{lseek} function is used to change the file position of the
677file with descriptor @var{filedes}.
678
679The @var{whence} argument specifies how the @var{offset} should be
04b9968b
UD
680interpreted, in the same way as for the @code{fseek} function, and it must
681be one of the symbolic constants @code{SEEK_SET}, @code{SEEK_CUR}, or
28f540f4
RM
682@code{SEEK_END}.
683
2fe82ca6 684@vtable @code
28f540f4 685@item SEEK_SET
4dad7bab 686Specifies that @var{offset} is a count of characters from the beginning
28f540f4
RM
687of the file.
688
689@item SEEK_CUR
4dad7bab 690Specifies that @var{offset} is a count of characters from the current
28f540f4
RM
691file position. This count may be positive or negative.
692
693@item SEEK_END
4dad7bab 694Specifies that @var{offset} is a count of characters from the end of
28f540f4
RM
695the file. A negative count specifies a position within the current
696extent of the file; a positive count specifies a position past the
2c6fe0bd 697current end. If you set the position past the current end, and
28f540f4 698actually write data, you will extend the file with zeros up to that
336dfb2d 699position.
2fe82ca6 700@end vtable
28f540f4
RM
701
702The return value from @code{lseek} is normally the resulting file
703position, measured in bytes from the beginning of the file.
704You can use this feature together with @code{SEEK_CUR} to read the
705current file position.
706
707If you want to append to the file, setting the file position to the
708current end of file with @code{SEEK_END} is not sufficient. Another
709process may write more data after you seek but before you write,
710extending the file so the position you write onto clobbers their data.
711Instead, use the @code{O_APPEND} operating mode; @pxref{Operating Modes}.
712
713You can set the file position past the current end of the file. This
714does not by itself make the file longer; @code{lseek} never changes the
715file. But subsequent output at that position will extend the file.
716Characters between the previous end of file and the new position are
717filled with zeros. Extending the file in this way can create a
718``hole'': the blocks of zeros are not actually allocated on disk, so the
78759725 719file takes up less space than it appears to; it is then called a
28f540f4
RM
720``sparse file''.
721@cindex sparse files
722@cindex holes in files
723
724If the file position cannot be changed, or the operation is in some way
07435eb4 725invalid, @code{lseek} returns a value of @math{-1}. The following
28f540f4
RM
726@code{errno} error conditions are defined for this function:
727
728@table @code
729@item EBADF
730The @var{filedes} is not a valid file descriptor.
731
732@item EINVAL
733The @var{whence} argument value is not valid, or the resulting
734file offset is not valid. A file offset is invalid.
735
736@item ESPIPE
737The @var{filedes} corresponds to an object that cannot be positioned,
738such as a pipe, FIFO or terminal device. (POSIX.1 specifies this error
a7a93d50 739only for pipes and FIFOs, but on @gnusystems{}, you always get
28f540f4
RM
740@code{ESPIPE} if the object is not seekable.)
741@end table
742
b07d03e0
UD
743When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
744@code{lseek} function is in fact @code{lseek64} and the type
745@code{off_t} has 64 bits which makes it possible to handle files up to
9ceeb279 746@twoexp{63} bytes in length.
b07d03e0 747
04b9968b 748This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
749is a problem if the thread allocates some resources (like memory, file
750descriptors, semaphores or whatever) at the time @code{lseek} is
19e4c7dd 751called. If the thread gets canceled these resources stay allocated
dfd2257a 752until the program ends. To avoid this calls to @code{lseek} should be
04b9968b 753protected using cancellation handlers.
dfd2257a
UD
754@c ref pthread_cleanup_push / pthread_cleanup_pop
755
28f540f4 756The @code{lseek} function is the underlying primitive for the
dfd2257a
UD
757@code{fseek}, @code{fseeko}, @code{ftell}, @code{ftello} and
758@code{rewind} functions, which operate on streams instead of file
759descriptors.
28f540f4
RM
760@end deftypefun
761
b07d03e0 762@deftypefun off64_t lseek64 (int @var{filedes}, off64_t @var{offset}, int @var{whence})
d08a7e4c 763@standards{Unix98, unistd.h}
2cc3615c 764@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
b07d03e0
UD
765This function is similar to the @code{lseek} function. The difference
766is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 767@code{off_t} which makes it possible on 32 bit machines to address
9ceeb279 768files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
b07d03e0
UD
769file descriptor @code{filedes} must be opened using @code{open64} since
770otherwise the large offsets possible with @code{off64_t} will lead to
771errors with a descriptor in small file mode.
772
c756c71c 773When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
b07d03e0 77432 bits machine this function is actually available under the name
04b9968b 775@code{lseek} and so transparently replaces the 32 bit interface.
b07d03e0
UD
776@end deftypefun
777
28f540f4 778You can have multiple descriptors for the same file if you open the file
2c6fe0bd 779more than once, or if you duplicate a descriptor with @code{dup}.
28f540f4
RM
780Descriptors that come from separate calls to @code{open} have independent
781file positions; using @code{lseek} on one descriptor has no effect on the
2c6fe0bd 782other. For example,
28f540f4
RM
783
784@smallexample
785@group
786@{
787 int d1, d2;
788 char buf[4];
789 d1 = open ("foo", O_RDONLY);
790 d2 = open ("foo", O_RDONLY);
791 lseek (d1, 1024, SEEK_SET);
792 read (d2, buf, 4);
793@}
794@end group
795@end smallexample
796
797@noindent
798will read the first four characters of the file @file{foo}. (The
799error-checking code necessary for a real program has been omitted here
800for brevity.)
801
802By contrast, descriptors made by duplication share a common file
803position with the original descriptor that was duplicated. Anything
804which alters the file position of one of the duplicates, including
805reading or writing data, affects all of them alike. Thus, for example,
806
807@smallexample
808@{
809 int d1, d2, d3;
810 char buf1[4], buf2[4];
811 d1 = open ("foo", O_RDONLY);
812 d2 = dup (d1);
813 d3 = dup (d2);
814 lseek (d3, 1024, SEEK_SET);
815 read (d1, buf1, 4);
816 read (d2, buf2, 4);
817@}
818@end smallexample
819
820@noindent
821will read four characters starting with the 1024'th character of
822@file{foo}, and then four more characters starting with the 1028'th
823character.
824
28f540f4 825@deftp {Data Type} off_t
d08a7e4c 826@standards{POSIX.1, sys/types.h}
07e12bb3
JM
827This is a signed integer type used to represent file sizes. In
828@theglibc{}, this type is no narrower than @code{int}.
a3a4a74e
UD
829
830If the source is compiled with @code{_FILE_OFFSET_BITS == 64} this type
831is transparently replaced by @code{off64_t}.
28f540f4
RM
832@end deftp
833
b07d03e0 834@deftp {Data Type} off64_t
d08a7e4c 835@standards{Unix98, sys/types.h}
b07d03e0 836This type is used similar to @code{off_t}. The difference is that even
04b9968b 837on 32 bit machines, where the @code{off_t} type would have 32 bits,
b07d03e0 838@code{off64_t} has 64 bits and so is able to address files up to
9ceeb279 839@twoexp{63} bytes in length.
a3a4a74e
UD
840
841When compiling with @code{_FILE_OFFSET_BITS == 64} this type is
842available under the name @code{off_t}.
b07d03e0
UD
843@end deftp
844
28f540f4
RM
845These aliases for the @samp{SEEK_@dots{}} constants exist for the sake
846of compatibility with older BSD systems. They are defined in two
847different header files: @file{fcntl.h} and @file{sys/file.h}.
848
2fe82ca6 849@vtable @code
28f540f4
RM
850@item L_SET
851An alias for @code{SEEK_SET}.
852
853@item L_INCR
854An alias for @code{SEEK_CUR}.
855
856@item L_XTND
857An alias for @code{SEEK_END}.
2fe82ca6 858@end vtable
28f540f4
RM
859
860@node Descriptors and Streams
861@section Descriptors and Streams
862@cindex streams, and file descriptors
863@cindex converting file descriptor to stream
864@cindex extracting file descriptor from stream
865
866Given an open file descriptor, you can create a stream for it with the
867@code{fdopen} function. You can get the underlying file descriptor for
868an existing stream with the @code{fileno} function. These functions are
869declared in the header file @file{stdio.h}.
870@pindex stdio.h
871
28f540f4 872@deftypefun {FILE *} fdopen (int @var{filedes}, const char *@var{opentype})
d08a7e4c 873@standards{POSIX.1, stdio.h}
2cc3615c 874@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @aculock{}}}
28f540f4
RM
875The @code{fdopen} function returns a new stream for the file descriptor
876@var{filedes}.
877
878The @var{opentype} argument is interpreted in the same way as for the
879@code{fopen} function (@pxref{Opening Streams}), except that
a7a93d50 880the @samp{b} option is not permitted; this is because @gnusystems{} make no
28f540f4 881distinction between text and binary files. Also, @code{"w"} and
04b9968b 882@code{"w+"} do not cause truncation of the file; these have an effect only
28f540f4
RM
883when opening a file, and in this case the file has already been opened.
884You must make sure that the @var{opentype} argument matches the actual
885mode of the open file descriptor.
886
887The return value is the new stream. If the stream cannot be created
888(for example, if the modes for the file indicated by the file descriptor
889do not permit the access specified by the @var{opentype} argument), a
890null pointer is returned instead.
891
892In some other systems, @code{fdopen} may fail to detect that the modes
9739d2d5 893for file descriptors do not permit the access specified by
1f77f049 894@code{opentype}. @Theglibc{} always checks for this.
28f540f4
RM
895@end deftypefun
896
897For an example showing the use of the @code{fdopen} function,
898see @ref{Creating a Pipe}.
899
28f540f4 900@deftypefun int fileno (FILE *@var{stream})
d08a7e4c 901@standards{POSIX.1, stdio.h}
2cc3615c 902@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
903This function returns the file descriptor associated with the stream
904@var{stream}. If an error is detected (for example, if the @var{stream}
905is not valid) or if @var{stream} does not do I/O to a file,
07435eb4 906@code{fileno} returns @math{-1}.
28f540f4
RM
907@end deftypefun
908
7b4161bb 909@deftypefun int fileno_unlocked (FILE *@var{stream})
d08a7e4c 910@standards{GNU, stdio.h}
2cc3615c 911@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
7b4161bb
UD
912The @code{fileno_unlocked} function is equivalent to the @code{fileno}
913function except that it does not implicitly lock the stream if the state
914is @code{FSETLOCKING_INTERNAL}.
915
916This function is a GNU extension.
917@end deftypefun
918
28f540f4
RM
919@cindex standard file descriptors
920@cindex file descriptors, standard
921There are also symbolic constants defined in @file{unistd.h} for the
922file descriptors belonging to the standard streams @code{stdin},
923@code{stdout}, and @code{stderr}; see @ref{Standard Streams}.
924@pindex unistd.h
925
2fe82ca6 926@vtable @code
28f540f4 927@item STDIN_FILENO
d08a7e4c 928@standards{POSIX.1, unistd.h}
28f540f4
RM
929This macro has value @code{0}, which is the file descriptor for
930standard input.
931@cindex standard input file descriptor
932
28f540f4 933@item STDOUT_FILENO
d08a7e4c 934@standards{POSIX.1, unistd.h}
28f540f4
RM
935This macro has value @code{1}, which is the file descriptor for
936standard output.
937@cindex standard output file descriptor
938
28f540f4 939@item STDERR_FILENO
d08a7e4c 940@standards{POSIX.1, unistd.h}
28f540f4
RM
941This macro has value @code{2}, which is the file descriptor for
942standard error output.
2fe82ca6 943@end vtable
28f540f4
RM
944@cindex standard error file descriptor
945
946@node Stream/Descriptor Precautions
947@section Dangers of Mixing Streams and Descriptors
948@cindex channels
949@cindex streams and descriptors
950@cindex descriptors and streams
951@cindex mixing descriptors and streams
952
953You can have multiple file descriptors and streams (let's call both
954streams and descriptors ``channels'' for short) connected to the same
955file, but you must take care to avoid confusion between channels. There
956are two cases to consider: @dfn{linked} channels that share a single
957file position value, and @dfn{independent} channels that have their own
958file positions.
959
960It's best to use just one channel in your program for actual data
961transfer to any given file, except when all the access is for input.
962For example, if you open a pipe (something you can only do at the file
963descriptor level), either do all I/O with the descriptor, or construct a
964stream from the descriptor with @code{fdopen} and then do all I/O with
965the stream.
966
967@menu
968* Linked Channels:: Dealing with channels sharing a file position.
969* Independent Channels:: Dealing with separately opened, unlinked channels.
2c6fe0bd 970* Cleaning Streams:: Cleaning a stream makes it safe to use
28f540f4
RM
971 another channel.
972@end menu
973
974@node Linked Channels
975@subsection Linked Channels
976@cindex linked channels
977
978Channels that come from a single opening share the same file position;
979we call them @dfn{linked} channels. Linked channels result when you
980make a stream from a descriptor using @code{fdopen}, when you get a
981descriptor from a stream with @code{fileno}, when you copy a descriptor
982with @code{dup} or @code{dup2}, and when descriptors are inherited
983during @code{fork}. For files that don't support random access, such as
984terminals and pipes, @emph{all} channels are effectively linked. On
985random-access files, all append-type output streams are effectively
986linked to each other.
987
988@cindex cleaning up a stream
0295d266
UD
989If you have been using a stream for I/O (or have just opened the stream),
990and you want to do I/O using
28f540f4
RM
991another channel (either a stream or a descriptor) that is linked to it,
992you must first @dfn{clean up} the stream that you have been using.
993@xref{Cleaning Streams}.
994
995Terminating a process, or executing a new program in the process,
996destroys all the streams in the process. If descriptors linked to these
997streams persist in other processes, their file positions become
998undefined as a result. To prevent this, you must clean up the streams
999before destroying them.
1000
1001@node Independent Channels
1002@subsection Independent Channels
1003@cindex independent channels
1004
1005When you open channels (streams or descriptors) separately on a seekable
1006file, each channel has its own file position. These are called
1007@dfn{independent channels}.
1008
1009The system handles each channel independently. Most of the time, this
1010is quite predictable and natural (especially for input): each channel
1011can read or write sequentially at its own place in the file. However,
1012if some of the channels are streams, you must take these precautions:
1013
1014@itemize @bullet
1015@item
1016You should clean an output stream after use, before doing anything else
1017that might read or write from the same part of the file.
1018
1019@item
1020You should clean an input stream before reading data that may have been
1021modified using an independent channel. Otherwise, you might read
1022obsolete data that had been in the stream's buffer.
1023@end itemize
1024
1025If you do output to one channel at the end of the file, this will
1026certainly leave the other independent channels positioned somewhere
1027before the new end. You cannot reliably set their file positions to the
1028new end of file before writing, because the file can always be extended
1029by another process between when you set the file position and when you
1030write the data. Instead, use an append-type descriptor or stream; they
1031always output at the current end of the file. In order to make the
1032end-of-file position accurate, you must clean the output channel you
1033were using, if it is a stream.
1034
1035It's impossible for two channels to have separate file pointers for a
1036file that doesn't support random access. Thus, channels for reading or
1037writing such files are always linked, never independent. Append-type
1038channels are also always linked. For these channels, follow the rules
1039for linked channels; see @ref{Linked Channels}.
1040
1041@node Cleaning Streams
1042@subsection Cleaning Streams
1043
6664049b 1044You can use @code{fflush} to clean a stream in most
28f540f4
RM
1045cases.
1046
6664049b 1047You can skip the @code{fflush} if you know the stream
28f540f4
RM
1048is already clean. A stream is clean whenever its buffer is empty. For
1049example, an unbuffered stream is always clean. An input stream that is
1050at end-of-file is clean. A line-buffered stream is clean when the last
0295d266
UD
1051character output was a newline. However, a just-opened input stream
1052might not be clean, as its input buffer might not be empty.
28f540f4
RM
1053
1054There is one case in which cleaning a stream is impossible on most
1055systems. This is when the stream is doing input from a file that is not
1056random-access. Such streams typically read ahead, and when the file is
1057not random access, there is no way to give back the excess data already
1058read. When an input stream reads from a random-access file,
1059@code{fflush} does clean the stream, but leaves the file pointer at an
1060unpredictable place; you must set the file pointer before doing any
6664049b 1061further I/O.
28f540f4
RM
1062
1063Closing an output-only stream also does @code{fflush}, so this is a
6664049b 1064valid way of cleaning an output stream.
28f540f4
RM
1065
1066You need not clean a stream before using its descriptor for control
1067operations such as setting terminal modes; these operations don't affect
1068the file position and are not affected by it. You can use any
1069descriptor for these operations, and all channels are affected
1070simultaneously. However, text already ``output'' to a stream but still
1071buffered by the stream will be subject to the new terminal modes when
1072subsequently flushed. To make sure ``past'' output is covered by the
1073terminal settings that were in effect at the time, flush the output
1074streams for that terminal before setting the modes. @xref{Terminal
1075Modes}.
1076
07435eb4
UD
1077@node Scatter-Gather
1078@section Fast Scatter-Gather I/O
1079@cindex scatter-gather
1080
1081Some applications may need to read or write data to multiple buffers,
04b9968b 1082which are separated in memory. Although this can be done easily enough
19e4c7dd 1083with multiple calls to @code{read} and @code{write}, it is inefficient
07435eb4
UD
1084because there is overhead associated with each kernel call.
1085
1086Instead, many platforms provide special high-speed primitives to perform
1f77f049
JM
1087these @dfn{scatter-gather} operations in a single kernel call. @Theglibc{}
1088will provide an emulation on any system that lacks these
07435eb4
UD
1089primitives, so they are not a portability threat. They are defined in
1090@code{sys/uio.h}.
1091
1092These functions are controlled with arrays of @code{iovec} structures,
1093which describe the location and size of each buffer.
1094
1095@deftp {Data Type} {struct iovec}
d08a7e4c 1096@standards{BSD, sys/uio.h}
07435eb4 1097
cf822e3c 1098The @code{iovec} structure describes a buffer. It contains two fields:
07435eb4
UD
1099
1100@table @code
1101
1102@item void *iov_base
1103Contains the address of a buffer.
1104
1105@item size_t iov_len
1106Contains the length of the buffer.
1107
1108@end table
1109@end deftp
1110
1111@deftypefun ssize_t readv (int @var{filedes}, const struct iovec *@var{vector}, int @var{count})
d08a7e4c 1112@standards{BSD, sys/uio.h}
2cc3615c
AO
1113@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
1114@c The fallback sysdeps/posix implementation, used even on GNU/Linux
1115@c with old kernels that lack a full readv/writev implementation, may
1116@c malloc the buffer into which data is read, if the total read size is
1117@c too large for alloca.
07435eb4
UD
1118
1119The @code{readv} function reads data from @var{filedes} and scatters it
1120into the buffers described in @var{vector}, which is taken to be
1121@var{count} structures long. As each buffer is filled, data is sent to the
1122next.
1123
1124Note that @code{readv} is not guaranteed to fill all the buffers.
1125It may stop at any point, for the same reasons @code{read} would.
1126
1127The return value is a count of bytes (@emph{not} buffers) read, @math{0}
1128indicating end-of-file, or @math{-1} indicating an error. The possible
1129errors are the same as in @code{read}.
1130
1131@end deftypefun
1132
1133@deftypefun ssize_t writev (int @var{filedes}, const struct iovec *@var{vector}, int @var{count})
d08a7e4c 1134@standards{BSD, sys/uio.h}
2cc3615c
AO
1135@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
1136@c The fallback sysdeps/posix implementation, used even on GNU/Linux
1137@c with old kernels that lack a full readv/writev implementation, may
1138@c malloc the buffer from which data is written, if the total write size
1139@c is too large for alloca.
07435eb4
UD
1140
1141The @code{writev} function gathers data from the buffers described in
1142@var{vector}, which is taken to be @var{count} structures long, and writes
1143them to @code{filedes}. As each buffer is written, it moves on to the
1144next.
1145
1146Like @code{readv}, @code{writev} may stop midstream under the same
1147conditions @code{write} would.
1148
1149The return value is a count of bytes written, or @math{-1} indicating an
1150error. The possible errors are the same as in @code{write}.
1151
1152@end deftypefun
1153
f6e965ee
FW
1154@deftypefun ssize_t preadv (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off_t @var{offset})
1155@standards{BSD, sys/uio.h}
1156@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1157@c This is a syscall for Linux 3.2 for all architectures but microblaze
1158@c (which was added on 3.15). The sysdeps/posix fallback emulation
1159@c is also MT-Safe since it calls pread, and it is now a syscall on all
1160@c targets.
1161
1162This function is similar to the @code{readv} function, with the difference
1163it adds an extra @var{offset} parameter of type @code{off_t} similar to
1164@code{pread}. The data is written to the file starting at position
1165@var{offset}. The position of the file descriptor itself is not affected
1166by the operation. The value is the same as before the call.
1167
1168When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
1169@code{preadv} function is in fact @code{preadv64} and the type
1170@code{off_t} has 64 bits, which makes it possible to handle files up to
1171@twoexp{63} bytes in length.
1172
1173The return value is a count of bytes (@emph{not} buffers) read, @math{0}
1174indicating end-of-file, or @math{-1} indicating an error. The possible
1175errors are the same as in @code{readv} and @code{pread}.
1176@end deftypefun
1177
1178@deftypefun ssize_t preadv64 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off64_t @var{offset})
1179@standards{BSD, unistd.h}
1180@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1181@c This is a syscall for Linux 3.2 for all architectures but microblaze
1182@c (which was added on 3.15). The sysdeps/posix fallback emulation
1183@c is also MT-Safe since it calls pread64, and it is now a syscall on all
1184@c targets.
1185
1186This function is similar to the @code{preadv} function with the difference
1187is that the @var{offset} parameter is of type @code{off64_t} instead of
1188@code{off_t}. It makes it possible on 32 bit machines to address
1189files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
1190file descriptor @code{filedes} must be opened using @code{open64} since
1191otherwise the large offsets possible with @code{off64_t} will lead to
1192errors with a descriptor in small file mode.
1193
1194When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
119532 bit machine this function is actually available under the name
1196@code{preadv} and so transparently replaces the 32 bit interface.
1197@end deftypefun
1198
1199@deftypefun ssize_t pwritev (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off_t @var{offset})
1200@standards{BSD, sys/uio.h}
1201@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1202@c This is a syscall for Linux 3.2 for all architectures but microblaze
1203@c (which was added on 3.15). The sysdeps/posix fallback emulation
1204@c is also MT-Safe since it calls pwrite, and it is now a syscall on all
1205@c targets.
1206
1207This function is similar to the @code{writev} function, with the difference
1208it adds an extra @var{offset} parameter of type @code{off_t} similar to
1209@code{pwrite}. The data is written to the file starting at position
1210@var{offset}. The position of the file descriptor itself is not affected
1211by the operation. The value is the same as before the call.
1212
1213However, on Linux, if a file is opened with @code{O_APPEND}, @code{pwrite}
1214appends data to the end of the file, regardless of the value of
1215@code{offset}.
1216
1217When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
1218@code{pwritev} function is in fact @code{pwritev64} and the type
1219@code{off_t} has 64 bits, which makes it possible to handle files up to
1220@twoexp{63} bytes in length.
1221
1222The return value is a count of bytes (@emph{not} buffers) written, @math{0}
1223indicating end-of-file, or @math{-1} indicating an error. The possible
1224errors are the same as in @code{writev} and @code{pwrite}.
1225@end deftypefun
1226
1227@deftypefun ssize_t pwritev64 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off64_t @var{offset})
1228@standards{BSD, unistd.h}
1229@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1230@c This is a syscall for Linux 3.2 for all architectures but microblaze
1231@c (which was added on 3.15). The sysdeps/posix fallback emulation
1232@c is also MT-Safe since it calls pwrite64, and it is now a syscall on all
1233@c targets.
1234
1235This function is similar to the @code{pwritev} function with the difference
1236is that the @var{offset} parameter is of type @code{off64_t} instead of
1237@code{off_t}. It makes it possible on 32 bit machines to address
1238files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
1239file descriptor @code{filedes} must be opened using @code{open64} since
1240otherwise the large offsets possible with @code{off64_t} will lead to
1241errors with a descriptor in small file mode.
1242
1243When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
124432 bit machine this function is actually available under the name
1245@code{pwritev} and so transparently replaces the 32 bit interface.
1246@end deftypefun
1247
1248@deftypefun ssize_t preadv2 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off_t @var{offset}, int @var{flags})
1249@standards{GNU, sys/uio.h}
1250@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1251@c This is a syscall for Linux v4.6. The sysdeps/posix fallback emulation
1252@c is also MT-Safe since it calls preadv.
1253
d4b4a00a
FW
1254This function is similar to the @code{preadv} function, with the
1255difference it adds an extra @var{flags} parameter of type @code{int}.
1256Additionally, if @var{offset} is @math{-1}, the current file position
1257is used and updated (like the @code{readv} function).
1258
1259The supported @var{flags} are dependent of the underlying system. For
1260Linux it supports:
f6e965ee
FW
1261
1262@vtable @code
1263@item RWF_HIPRI
1264High priority request. This adds a flag that tells the file system that
1265this is a high priority request for which it is worth to poll the hardware.
1266The flag is purely advisory and can be ignored if not supported. The
1267@var{fd} must be opened using @code{O_DIRECT}.
1268
1269@item RWF_DSYNC
1270Per-IO synchronization as if the file was opened with @code{O_DSYNC} flag.
1271
1272@item RWF_SYNC
1273Per-IO synchronization as if the file was opened with @code{O_SYNC} flag.
1274
1275@item RWF_NOWAIT
1276Use nonblocking mode for this operation; that is, this call to @code{preadv2}
1277will fail and set @code{errno} to @code{EAGAIN} if the operation would block.
f2652643
L
1278
1279@item RWF_APPEND
1280Per-IO synchronization as if the file was opened with @code{O_APPEND} flag.
f6e965ee
FW
1281@end vtable
1282
1283When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
1284@code{preadv2} function is in fact @code{preadv64v2} and the type
1285@code{off_t} has 64 bits, which makes it possible to handle files up to
1286@twoexp{63} bytes in length.
1287
1288The return value is a count of bytes (@emph{not} buffers) read, @math{0}
1289indicating end-of-file, or @math{-1} indicating an error. The possible
1290errors are the same as in @code{preadv} with the addition of:
1291
1292@table @code
1293
1294@item EOPNOTSUPP
1295
1296@c The default sysdeps/posix code will return it for any flags value
1297@c different than 0.
1298An unsupported @var{flags} was used.
1299
1300@end table
1301
1302@end deftypefun
1303
1304@deftypefun ssize_t preadv64v2 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off64_t @var{offset}, int @var{flags})
1305@standards{GNU, unistd.h}
1306@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1307@c This is a syscall for Linux v4.6. The sysdeps/posix fallback emulation
1308@c is also MT-Safe since it calls preadv.
07435eb4 1309
f6e965ee
FW
1310This function is similar to the @code{preadv2} function with the difference
1311is that the @var{offset} parameter is of type @code{off64_t} instead of
1312@code{off_t}. It makes it possible on 32 bit machines to address
1313files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
1314file descriptor @code{filedes} must be opened using @code{open64} since
1315otherwise the large offsets possible with @code{off64_t} will lead to
1316errors with a descriptor in small file mode.
1317
1318When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
131932 bit machine this function is actually available under the name
1320@code{preadv2} and so transparently replaces the 32 bit interface.
1321@end deftypefun
1322
1323
1324@deftypefun ssize_t pwritev2 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off_t @var{offset}, int @var{flags})
1325@standards{GNU, sys/uio.h}
1326@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1327@c This is a syscall for Linux v4.6. The sysdeps/posix fallback emulation
1328@c is also MT-Safe since it calls pwritev.
1329
d4b4a00a
FW
1330This function is similar to the @code{pwritev} function, with the
1331difference it adds an extra @var{flags} parameter of type @code{int}.
1332Additionally, if @var{offset} is @math{-1}, the current file position
1333should is used and updated (like the @code{writev} function).
1334
1335The supported @var{flags} are dependent of the underlying system. For
1336Linux, the supported flags are the same as those for @code{preadv2}.
f6e965ee
FW
1337
1338When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
1339@code{pwritev2} function is in fact @code{pwritev64v2} and the type
1340@code{off_t} has 64 bits, which makes it possible to handle files up to
1341@twoexp{63} bytes in length.
1342
1343The return value is a count of bytes (@emph{not} buffers) write, @math{0}
1344indicating end-of-file, or @math{-1} indicating an error. The possible
1345errors are the same as in @code{preadv2}.
1346@end deftypefun
1347
1348@deftypefun ssize_t pwritev64v2 (int @var{fd}, const struct iovec *@var{iov}, int @var{iovcnt}, off64_t @var{offset}, int @var{flags})
1349@standards{GNU, unistd.h}
1350@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1351@c This is a syscall for Linux v4.6. The sysdeps/posix fallback emulation
1352@c is also MT-Safe since it calls pwritev.
1353
1354This function is similar to the @code{pwritev2} function with the difference
1355is that the @var{offset} parameter is of type @code{off64_t} instead of
1356@code{off_t}. It makes it possible on 32 bit machines to address
1357files larger than @twoexp{31} bytes and up to @twoexp{63} bytes. The
1358file descriptor @code{filedes} must be opened using @code{open64} since
1359otherwise the large offsets possible with @code{off64_t} will lead to
1360errors with a descriptor in small file mode.
1361
1362When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
136332 bit machine this function is actually available under the name
1364@code{pwritev2} and so transparently replaces the 32 bit interface.
1365@end deftypefun
07435eb4 1366
bad7a0c8
FW
1367@node Copying File Data
1368@section Copying data between two files
1369@cindex copying files
1370@cindex file copy
1371
1372A special function is provided to copy data between two files on the
1373same file system. The system can optimize such copy operations. This
1374is particularly important on network file systems, where the data would
1375otherwise have to be transferred twice over the network.
1376
1377Note that this function only copies file data, but not metadata such as
1378file permissions or extended attributes.
1379
1380@deftypefun ssize_t copy_file_range (int @var{inputfd}, off64_t *@var{inputpos}, int @var{outputfd}, off64_t *@var{outputpos}, ssize_t @var{length}, unsigned int @var{flags})
1381@standards{GNU, unistd.h}
1382@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1383
1384This function copies up to @var{length} bytes from the file descriptor
1385@var{inputfd} to the file descriptor @var{outputfd}.
1386
1387The function can operate on both the current file position (like
1388@code{read} and @code{write}) and an explicit offset (like @code{pread}
1389and @code{pwrite}). If the @var{inputpos} pointer is null, the file
1390position of @var{inputfd} is used as the starting point of the copy
1391operation, and the file position is advanced during it. If
1392@var{inputpos} is not null, then @code{*@var{inputpos}} is used as the
1393starting point of the copy operation, and @code{*@var{inputpos}} is
1394incremented by the number of copied bytes, but the file position remains
1395unchanged. Similar rules apply to @var{outputfd} and @var{outputpos}
1396for the output file position.
1397
1398The @var{flags} argument is currently reserved and must be zero.
1399
1400The @code{copy_file_range} function returns the number of bytes copied.
1401This can be less than the specified @var{length} in case the input file
1402contains fewer remaining bytes than @var{length}, or if a read or write
1403failure occurs. The return value is zero if the end of the input file
1404is encountered immediately.
1405
1406If no bytes can be copied, to report an error, @code{copy_file_range}
1407returns the value @math{-1} and sets @code{errno}. The following
1408@code{errno} error conditions are specific to this function:
1409
1410@table @code
1411@item EISDIR
1412At least one of the descriptors @var{inputfd} or @var{outputfd} refers
1413to a directory.
1414
1415@item EINVAL
1416At least one of the descriptors @var{inputfd} or @var{outputfd} refers
1417to a non-regular, non-directory file (such as a socket or a FIFO).
1418
1419The input or output positions before are after the copy operations are
1420outside of an implementation-defined limit.
1421
1422The @var{flags} argument is not zero.
1423
1424@item EFBIG
1425The new file size would exceed the process file size limit.
1426@xref{Limits on Resources}.
1427
1428The input or output positions before are after the copy operations are
1429outside of an implementation-defined limit. This can happen if the file
1430was not opened with large file support (LFS) on 32-bit machines, and the
1431copy operation would create a file which is larger than what
1432@code{off_t} could represent.
1433
1434@item EBADF
1435The argument @var{inputfd} is not a valid file descriptor open for
1436reading.
1437
1438The argument @var{outputfd} is not a valid file descriptor open for
1439writing, or @var{outputfd} has been opened with @code{O_APPEND}.
1440
1441@item EXDEV
1442The input and output files reside on different file systems.
1443@end table
1444
1445In addition, @code{copy_file_range} can fail with the error codes
1446which are used by @code{read}, @code{pread}, @code{write}, and
1447@code{pwrite}.
1448
1449The @code{copy_file_range} function is a cancellation point. In case of
1450cancellation, the input location (the file position or the value at
1451@code{*@var{inputpos}}) is indeterminate.
1452@end deftypefun
1453
07435eb4
UD
1454@node Memory-mapped I/O
1455@section Memory-mapped I/O
1456
1457On modern operating systems, it is possible to @dfn{mmap} (pronounced
1458``em-map'') a file to a region of memory. When this is done, the file can
1459be accessed just like an array in the program.
1460
19e4c7dd 1461This is more efficient than @code{read} or @code{write}, as only the regions
04b9968b 1462of the file that a program actually accesses are loaded. Accesses to
07435eb4
UD
1463not-yet-loaded parts of the mmapped region are handled in the same way as
1464swapped out pages.
1465
b642f101
UD
1466Since mmapped pages can be stored back to their file when physical
1467memory is low, it is possible to mmap files orders of magnitude larger
1468than both the physical memory @emph{and} swap space. The only limit is
1469address space. The theoretical limit is 4GB on a 32-bit machine -
1470however, the actual limit will be smaller since some areas will be
1471reserved for other purposes. If the LFS interface is used the file size
1472on 32-bit systems is not limited to 2GB (offsets are signed which
1473reduces the addressable area of 4GB by half); the full 64-bit are
1474available.
07435eb4
UD
1475
1476Memory mapping only works on entire pages of memory. Thus, addresses
1477for mapping must be page-aligned, and length values will be rounded up.
a465b89e 1478To determine the default size of a page the machine uses one should use:
07435eb4 1479
b642f101 1480@vindex _SC_PAGESIZE
07435eb4
UD
1481@smallexample
1482size_t page_size = (size_t) sysconf (_SC_PAGESIZE);
1483@end smallexample
1484
a465b89e
FW
1485On some systems, mappings can use larger page sizes
1486for certain files, and applications can request larger page sizes for
1487anonymous mappings as well (see the @code{MAP_HUGETLB} flag below).
1488
1489The following functions are declared in @file{sys/mman.h}:
07435eb4 1490
cc6e48bc 1491@deftypefun {void *} mmap (void *@var{address}, size_t @var{length}, int @var{protect}, int @var{flags}, int @var{filedes}, off_t @var{offset})
d08a7e4c 1492@standards{POSIX, sys/mman.h}
2cc3615c 1493@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
07435eb4
UD
1494
1495The @code{mmap} function creates a new mapping, connected to bytes
b73147d0 1496(@var{offset}) to (@var{offset} + @var{length} - 1) in the file open on
b61345a1
UD
1497@var{filedes}. A new reference for the file specified by @var{filedes}
1498is created, which is not removed by closing the file.
07435eb4
UD
1499
1500@var{address} gives a preferred starting address for the mapping.
cf822e3c
OB
1501@code{NULL} expresses no preference. Any previous mapping at that
1502address is automatically removed. The address you give may still be
07435eb4
UD
1503changed, unless you use the @code{MAP_FIXED} flag.
1504
07435eb4
UD
1505@var{protect} contains flags that control what kind of access is
1506permitted. They include @code{PROT_READ}, @code{PROT_WRITE}, and
0f74bbf5
FW
1507@code{PROT_EXEC}. The special flag @code{PROT_NONE} reserves a region
1508of address space for future use. The @code{mprotect} function can be
1509used to change the protection flags. @xref{Memory Protection}.
07435eb4
UD
1510
1511@var{flags} contains flags that control the nature of the map.
1512One of @code{MAP_SHARED} or @code{MAP_PRIVATE} must be specified.
1513
1514They include:
1515
1516@vtable @code
1517@item MAP_PRIVATE
1518This specifies that writes to the region should never be written back
1519to the attached file. Instead, a copy is made for the process, and the
1520region will be swapped normally if memory runs low. No other process will
1521see the changes.
1522
1523Since private mappings effectively revert to ordinary memory
1524when written to, you must have enough virtual memory for a copy of
1525the entire mmapped region if you use this mode with @code{PROT_WRITE}.
1526
1527@item MAP_SHARED
1528This specifies that writes to the region will be written back to the
1529file. Changes made will be shared immediately with other processes
1530mmaping the same file.
1531
1532Note that actual writing may take place at any time. You need to use
1533@code{msync}, described below, if it is important that other processes
1534using conventional I/O get a consistent view of the file.
1535
1536@item MAP_FIXED
1537This forces the system to use the exact mapping address specified in
1538@var{address} and fail if it can't.
1539
1540@c One of these is official - the other is obviously an obsolete synonym
1541@c Which is which?
1542@item MAP_ANONYMOUS
1543@itemx MAP_ANON
1544This flag tells the system to create an anonymous mapping, not connected
9739d2d5 1545to a file. @var{filedes} and @var{offset} are ignored, and the region is
07435eb4
UD
1546initialized with zeros.
1547
1548Anonymous maps are used as the basic primitive to extend the heap on some
1549systems. They are also useful to share data between multiple tasks
1550without creating a file.
1551
49c091e5 1552On some systems using private anonymous mmaps is more efficient than using
1f77f049 1553@code{malloc} for large blocks. This is not an issue with @theglibc{},
07435eb4
UD
1554as the included @code{malloc} automatically uses @code{mmap} where appropriate.
1555
a465b89e
FW
1556@item MAP_HUGETLB
1557@standards{Linux, sys/mman.h}
1558This requests that the system uses an alternative page size which is
1559larger than the default page size for the mapping. For some workloads,
1560increasing the page size for large mappings improves performance because
1561the system needs to handle far fewer pages. For other workloads which
1562require frequent transfer of pages between storage or different nodes,
1563the decreased page granularity may cause performance problems due to the
1564increased page size and larger transfers.
1565
1566In order to create the mapping, the system needs physically contiguous
1567memory of the size of the increased page size. As a result,
1568@code{MAP_HUGETLB} mappings are affected by memory fragmentation, and
1569their creation can fail even if plenty of memory is available in the
1570system.
1571
1572Not all file systems support mappings with an increased page size.
1573
1574The @code{MAP_HUGETLB} flag is specific to Linux.
1575
1576@c There is a mechanism to select different hugepage sizes; see
1577@c include/uapi/asm-generic/hugetlb_encode.h in the kernel sources.
1578
07435eb4
UD
1579@c Linux has some other MAP_ options, which I have not discussed here.
1580@c MAP_DENYWRITE, MAP_EXECUTABLE and MAP_GROWSDOWN don't seem applicable to
cf822e3c 1581@c user programs (and I don't understand the last two). MAP_LOCKED does
07435eb4
UD
1582@c not appear to be implemented.
1583
1584@end vtable
1585
52e6d801
FB
1586@code{mmap} returns the address of the new mapping, or
1587@code{MAP_FAILED} for an error.
07435eb4
UD
1588
1589Possible errors include:
1590
1591@table @code
1592
1593@item EINVAL
1594
a465b89e
FW
1595Either @var{address} was unusable (because it is not a multiple of the
1596applicable page size), or inconsistent @var{flags} were given.
1597
1598If @code{MAP_HUGETLB} was specified, the file or system does not support
1599large page sizes.
07435eb4
UD
1600
1601@item EACCES
1602
1603@var{filedes} was not open for the type of access specified in @var{protect}.
1604
1605@item ENOMEM
1606
1607Either there is not enough memory for the operation, or the process is
1608out of address space.
1609
1610@item ENODEV
1611
1612This file is of a type that doesn't support mapping.
1613
1614@item ENOEXEC
1615
1616The file is on a filesystem that doesn't support mapping.
1617
1618@c On Linux, EAGAIN will appear if the file has a conflicting mandatory lock.
1619@c However mandatory locks are not discussed in this manual.
1620@c
1621@c Similarly, ETXTBSY will occur if the MAP_DENYWRITE flag (not documented
1622@c here) is used and the file is already open for writing.
1623
1624@end table
1625
1626@end deftypefun
1627
cc6e48bc 1628@deftypefun {void *} mmap64 (void *@var{address}, size_t @var{length}, int @var{protect}, int @var{flags}, int @var{filedes}, off64_t @var{offset})
d08a7e4c 1629@standards{LFS, sys/mman.h}
2cc3615c
AO
1630@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
1631@c The page_shift auto detection when MMAP2_PAGE_SHIFT is -1 (it never
1632@c is) would be thread-unsafe.
b642f101
UD
1633The @code{mmap64} function is equivalent to the @code{mmap} function but
1634the @var{offset} parameter is of type @code{off64_t}. On 32-bit systems
1635this allows the file associated with the @var{filedes} descriptor to be
1636larger than 2GB. @var{filedes} must be a descriptor returned from a
1637call to @code{open64} or @code{fopen64} and @code{freopen64} where the
1638descriptor is retrieved with @code{fileno}.
1639
1640When the sources are translated with @code{_FILE_OFFSET_BITS == 64} this
1641function is actually available under the name @code{mmap}. I.e., the
1642new, extended API using 64 bit file sizes and offsets transparently
1643replaces the old API.
1644@end deftypefun
1645
07435eb4 1646@deftypefun int munmap (void *@var{addr}, size_t @var{length})
d08a7e4c 1647@standards{POSIX, sys/mman.h}
2cc3615c 1648@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
07435eb4
UD
1649
1650@code{munmap} removes any memory maps from (@var{addr}) to (@var{addr} +
1651@var{length}). @var{length} should be the length of the mapping.
1652
04b9968b 1653It is safe to unmap multiple mappings in one command, or include unmapped
07435eb4 1654space in the range. It is also possible to unmap only part of an existing
04b9968b 1655mapping. However, only entire pages can be removed. If @var{length} is not
07435eb4
UD
1656an even number of pages, it will be rounded up.
1657
1658It returns @math{0} for success and @math{-1} for an error.
1659
1660One error is possible:
1661
1662@table @code
1663
1664@item EINVAL
04b9968b 1665The memory range given was outside the user mmap range or wasn't page
07435eb4
UD
1666aligned.
1667
1668@end table
1669
1670@end deftypefun
1671
1672@deftypefun int msync (void *@var{address}, size_t @var{length}, int @var{flags})
d08a7e4c 1673@standards{POSIX, sys/mman.h}
2cc3615c 1674@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
07435eb4
UD
1675
1676When using shared mappings, the kernel can write the file at any time
1677before the mapping is removed. To be certain data has actually been
49c091e5
UD
1678written to the file and will be accessible to non-memory-mapped I/O, it
1679is necessary to use this function.
07435eb4
UD
1680
1681It operates on the region @var{address} to (@var{address} + @var{length}).
1682It may be used on part of a mapping or multiple mappings, however the
1683region given should not contain any unmapped space.
1684
1685@var{flags} can contain some options:
1686
1687@vtable @code
1688
1689@item MS_SYNC
1690
1691This flag makes sure the data is actually written @emph{to disk}.
1692Normally @code{msync} only makes sure that accesses to a file with
1693conventional I/O reflect the recent changes.
1694
1695@item MS_ASYNC
1696
1697This tells @code{msync} to begin the synchronization, but not to wait for
1698it to complete.
1699
1700@c Linux also has MS_INVALIDATE, which I don't understand.
1701
1702@end vtable
1703
1704@code{msync} returns @math{0} for success and @math{-1} for
1705error. Errors include:
1706
1707@table @code
1708
1709@item EINVAL
1710An invalid region was given, or the @var{flags} were invalid.
1711
1712@item EFAULT
1713There is no existing mapping in at least part of the given region.
1714
1715@end table
1716
1717@end deftypefun
1718
1719@deftypefun {void *} mremap (void *@var{address}, size_t @var{length}, size_t @var{new_length}, int @var{flag})
d08a7e4c 1720@standards{GNU, sys/mman.h}
2cc3615c 1721@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
07435eb4
UD
1722
1723This function can be used to change the size of an existing memory
1724area. @var{address} and @var{length} must cover a region entirely mapped
cf822e3c 1725in the same @code{mmap} statement. A new mapping with the same
04b9968b 1726characteristics will be returned with the length @var{new_length}.
07435eb4 1727
cf822e3c 1728One option is possible, @code{MREMAP_MAYMOVE}. If it is given in
07435eb4
UD
1729@var{flags}, the system may remove the existing mapping and create a new
1730one of the desired length in another location.
1731
cf822e3c 1732The address of the resulting mapping is returned, or @math{-1}. Possible
07435eb4
UD
1733error codes include:
1734
07435eb4
UD
1735@table @code
1736
1737@item EFAULT
1738There is no existing mapping in at least part of the original region, or
1739the region covers two or more distinct mappings.
1740
1741@item EINVAL
1742The address given is misaligned or inappropriate.
1743
1744@item EAGAIN
1745The region has pages locked, and if extended it would exceed the
1746process's resource limit for locked pages. @xref{Limits on Resources}.
1747
1748@item ENOMEM
19e4c7dd 1749The region is private writable, and insufficient virtual memory is
07435eb4
UD
1750available to extend it. Also, this error will occur if
1751@code{MREMAP_MAYMOVE} is not given and the extension would collide with
1752another mapped region.
1753
1754@end table
1755@end deftypefun
1756
04b9968b
UD
1757This function is only available on a few systems. Except for performing
1758optional optimizations one should not rely on this function.
1759
07435eb4
UD
1760Not all file descriptors may be mapped. Sockets, pipes, and most devices
1761only allow sequential access and do not fit into the mapping abstraction.
1762In addition, some regular files may not be mmapable, and older kernels may
1763not support mapping at all. Thus, programs using @code{mmap} should
1764have a fallback method to use should it fail. @xref{Mmap,,,standards,GNU
1765Coding Standards}.
1766
0bc93a2f 1767@deftypefun int madvise (void *@var{addr}, size_t @var{length}, int @var{advice})
d08a7e4c 1768@standards{POSIX, sys/mman.h}
2cc3615c 1769@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
0bc93a2f
AJ
1770
1771This function can be used to provide the system with @var{advice} about
1772the intended usage patterns of the memory region starting at @var{addr}
1773and extending @var{length} bytes.
1774
1775The valid BSD values for @var{advice} are:
1776
2fe82ca6 1777@vtable @code
0bc93a2f
AJ
1778
1779@item MADV_NORMAL
1780The region should receive no further special treatment.
1781
1782@item MADV_RANDOM
cf822e3c 1783The region will be accessed via random page references. The kernel
0bc93a2f
AJ
1784should page-in the minimal number of pages for each page fault.
1785
1786@item MADV_SEQUENTIAL
cf822e3c 1787The region will be accessed via sequential page references. This
0bc93a2f
AJ
1788may cause the kernel to aggressively read-ahead, expecting further
1789sequential references after any page fault within this region.
1790
1791@item MADV_WILLNEED
1792The region will be needed. The pages within this region may
1793be pre-faulted in by the kernel.
1794
1795@item MADV_DONTNEED
1796The region is no longer needed. The kernel may free these pages,
1797causing any changes to the pages to be lost, as well as swapped
1798out pages to be discarded.
1799
a465b89e
FW
1800@item MADV_HUGEPAGE
1801@standards{Linux, sys/mman.h}
1802Indicate that it is beneficial to increase the page size for this
1803mapping. This can improve performance for larger mappings because the
1804system needs to handle far fewer pages. However, if parts of the
1805mapping are frequently transferred between storage or different nodes,
1806performance may suffer because individual transfers can become
1807substantially larger due to the increased page size.
1808
1809This flag is specific to Linux.
1810
1811@item MADV_NOHUGEPAGE
1812Undo the effect of a previous @code{MADV_HUGEPAGE} advice. This flag
1813is specific to Linux.
1814
2fe82ca6 1815@end vtable
0bc93a2f
AJ
1816
1817The POSIX names are slightly different, but with the same meanings:
1818
2fe82ca6 1819@vtable @code
0bc93a2f
AJ
1820
1821@item POSIX_MADV_NORMAL
1822This corresponds with BSD's @code{MADV_NORMAL}.
1823
1824@item POSIX_MADV_RANDOM
1825This corresponds with BSD's @code{MADV_RANDOM}.
1826
1827@item POSIX_MADV_SEQUENTIAL
1828This corresponds with BSD's @code{MADV_SEQUENTIAL}.
1829
1830@item POSIX_MADV_WILLNEED
1831This corresponds with BSD's @code{MADV_WILLNEED}.
1832
1833@item POSIX_MADV_DONTNEED
1834This corresponds with BSD's @code{MADV_DONTNEED}.
1835
2fe82ca6 1836@end vtable
0bc93a2f 1837
bb4e6db2 1838@code{madvise} returns @math{0} for success and @math{-1} for
0bc93a2f
AJ
1839error. Errors include:
1840@table @code
1841
1842@item EINVAL
1843An invalid region was given, or the @var{advice} was invalid.
1844
1845@item EFAULT
1846There is no existing mapping in at least part of the given region.
1847
1848@end table
1849@end deftypefun
07435eb4 1850
416e0145 1851@deftypefn Function int shm_open (const char *@var{name}, int @var{oflag}, mode_t @var{mode})
d08a7e4c 1852@standards{POSIX, sys/mman.h}
2cc3615c
AO
1853@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asuinit{} @ascuheap{} @asulock{}}@acunsafe{@aculock{} @acsmem{} @acsfd{}}}
1854@c shm_open @mtslocale @asuinit @ascuheap @asulock @aculock @acsmem @acsfd
1855@c libc_once(where_is_shmfs) @mtslocale @asuinit @ascuheap @asulock @aculock @acsmem @acsfd
1856@c where_is_shmfs @mtslocale @ascuheap @asulock @aculock @acsmem @acsfd
1857@c statfs dup ok
1858@c setmntent dup @ascuheap @asulock @acsmem @acsfd @aculock
1859@c getmntent_r dup @mtslocale @ascuheap @aculock @acsmem [no @asucorrupt @acucorrupt; exclusive stream]
1860@c strcmp dup ok
1861@c strlen dup ok
1862@c malloc dup @ascuheap @acsmem
1863@c mempcpy dup ok
1864@c endmntent dup @ascuheap @asulock @aculock @acsmem @acsfd
1865@c strlen dup ok
1866@c strchr dup ok
1867@c mempcpy dup ok
1868@c open dup @acsfd
1869@c fcntl dup ok
1870@c close dup @acsfd
416e0145
OB
1871
1872This function returns a file descriptor that can be used to allocate shared
cf822e3c 1873memory via mmap. Unrelated processes can use same @var{name} to create or
416e0145
OB
1874open existing shared memory objects.
1875
1876A @var{name} argument specifies the shared memory object to be opened.
1877In @theglibc{} it must be a string smaller than @code{NAME_MAX} bytes starting
1878with an optional slash but containing no other slashes.
1879
1880The semantics of @var{oflag} and @var{mode} arguments is same as in @code{open}.
1881
1882@code{shm_open} returns the file descriptor on success or @math{-1} on error.
1883On failure @code{errno} is set.
1884@end deftypefn
1885
1886@deftypefn Function int shm_unlink (const char *@var{name})
2cc3615c
AO
1887@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asuinit{} @ascuheap{} @asulock{}}@acunsafe{@aculock{} @acsmem{} @acsfd{}}}
1888@c shm_unlink @mtslocale @asuinit @ascuheap @asulock @aculock @acsmem @acsfd
1889@c libc_once(where_is_shmfs) dup @mtslocale @asuinit @ascuheap @asulock @aculock @acsmem @acsfd
1890@c strlen dup ok
1891@c strchr dup ok
1892@c mempcpy dup ok
1893@c unlink dup ok
416e0145 1894
9739d2d5 1895This function is the inverse of @code{shm_open} and removes the object with
416e0145
OB
1896the given @var{name} previously created by @code{shm_open}.
1897
1898@code{shm_unlink} returns @math{0} on success or @math{-1} on error.
1899On failure @code{errno} is set.
1900@end deftypefn
1901
59d2cbb1
FW
1902@deftypefun int memfd_create (const char *@var{name}, unsigned int @var{flags})
1903@standards{Linux, sys/mman.h}
1904@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}}
1905The @code{memfd_create} function returns a file descriptor which can be
1906used to create memory mappings using the @code{mmap} function. It is
1907similar to the @code{shm_open} function in the sense that these mappings
1908are not backed by actual files. However, the descriptor returned by
1909@code{memfd_create} does not correspond to a named object; the
1910@var{name} argument is used for debugging purposes only (e.g., will
1911appear in @file{/proc}), and separate invocations of @code{memfd_create}
1912with the same @var{name} will not return descriptors for the same region
1913of memory. The descriptor can also be used to create alias mappings
1914within the same process.
1915
1916The descriptor initially refers to a zero-length file. Before mappings
1917can be created which are backed by memory, the file size needs to be
1918increased with the @code{ftruncate} function. @xref{File Size}.
1919
1920The @var{flags} argument can be a combination of the following flags:
1921
1922@vtable @code
1923@item MFD_CLOEXEC
1924@standards{Linux, sys/mman.h}
1925The descriptor is created with the @code{O_CLOEXEC} flag.
1926
1927@item MFD_ALLOW_SEALING
1928@standards{Linux, sys/mman.h}
1929The descriptor supports the addition of seals using the @code{fcntl}
1930function.
1931
1932@item MFD_HUGETLB
1933@standards{Linux, sys/mman.h}
1934This requests that mappings created using the returned file descriptor
1935use a larger page size. See @code{MAP_HUGETLB} above for details.
1936
1937This flag is incompatible with @code{MFD_ALLOW_SEALING}.
1938@end vtable
1939
1940@code{memfd_create} returns a file descriptor on success, and @math{-1}
1941on failure.
1942
1943The following @code{errno} error conditions are defined for this
1944function:
1945
1946@table @code
1947@item EINVAL
1948An invalid combination is specified in @var{flags}, or @var{name} is
1949too long.
1950
1951@item EFAULT
1952The @var{name} argument does not point to a string.
1953
1954@item EMFILE
1955The operation would exceed the file descriptor limit for this process.
1956
1957@item ENFILE
1958The operation would exceed the system-wide file descriptor limit.
1959
1960@item ENOMEM
1961There is not enough memory for the operation.
1962@end table
1963@end deftypefun
1964
28f540f4
RM
1965@node Waiting for I/O
1966@section Waiting for Input or Output
1967@cindex waiting for input or output
1968@cindex multiplexing input
1969@cindex input from multiple files
1970
1971Sometimes a program needs to accept input on multiple input channels
1972whenever input arrives. For example, some workstations may have devices
1973such as a digitizing tablet, function button box, or dial box that are
1974connected via normal asynchronous serial interfaces; good user interface
1975style requires responding immediately to input on any device. Another
1976example is a program that acts as a server to several other processes
1977via pipes or sockets.
1978
1979You cannot normally use @code{read} for this purpose, because this
1980blocks the program until input is available on one particular file
1981descriptor; input on other channels won't wake it up. You could set
1982nonblocking mode and poll each file descriptor in turn, but this is very
1983inefficient.
1984
1985A better solution is to use the @code{select} function. This blocks the
1986program until input or output is ready on a specified set of file
1987descriptors, or until a timer expires, whichever comes first. This
1988facility is declared in the header file @file{sys/types.h}.
1989@pindex sys/types.h
1990
1991In the case of a server socket (@pxref{Listening}), we say that
1992``input'' is available when there are pending connections that could be
1993accepted (@pxref{Accepting Connections}). @code{accept} for server
1994sockets blocks and interacts with @code{select} just as @code{read} does
1995for normal input.
1996
1997@cindex file descriptor sets, for @code{select}
1998The file descriptor sets for the @code{select} function are specified
1999as @code{fd_set} objects. Here is the description of the data type
2000and some macros for manipulating these objects.
2001
28f540f4 2002@deftp {Data Type} fd_set
d08a7e4c 2003@standards{BSD, sys/types.h}
28f540f4
RM
2004The @code{fd_set} data type represents file descriptor sets for the
2005@code{select} function. It is actually a bit array.
2006@end deftp
2007
28f540f4 2008@deftypevr Macro int FD_SETSIZE
d08a7e4c 2009@standards{BSD, sys/types.h}
28f540f4
RM
2010The value of this macro is the maximum number of file descriptors that a
2011@code{fd_set} object can hold information about. On systems with a
2012fixed maximum number, @code{FD_SETSIZE} is at least that number. On
2013some systems, including GNU, there is no absolute limit on the number of
2014descriptors open, but this macro still has a constant value which
2015controls the number of bits in an @code{fd_set}; if you get a file
2016descriptor with a value as high as @code{FD_SETSIZE}, you cannot put
2017that descriptor into an @code{fd_set}.
2018@end deftypevr
2019
28f540f4 2020@deftypefn Macro void FD_ZERO (fd_set *@var{set})
d08a7e4c 2021@standards{BSD, sys/types.h}
2cc3615c 2022@safety{@prelim{}@mtsafe{@mtsrace{:set}}@assafe{}@acsafe{}}
28f540f4
RM
2023This macro initializes the file descriptor set @var{set} to be the
2024empty set.
2025@end deftypefn
2026
28f540f4 2027@deftypefn Macro void FD_SET (int @var{filedes}, fd_set *@var{set})
d08a7e4c 2028@standards{BSD, sys/types.h}
2cc3615c
AO
2029@safety{@prelim{}@mtsafe{@mtsrace{:set}}@assafe{}@acsafe{}}
2030@c Setting a bit isn't necessarily atomic, so there's a potential race
2031@c here if set is not used exclusively.
28f540f4 2032This macro adds @var{filedes} to the file descriptor set @var{set}.
d9997a45
UD
2033
2034The @var{filedes} parameter must not have side effects since it is
2035evaluated more than once.
28f540f4
RM
2036@end deftypefn
2037
28f540f4 2038@deftypefn Macro void FD_CLR (int @var{filedes}, fd_set *@var{set})
d08a7e4c 2039@standards{BSD, sys/types.h}
2cc3615c
AO
2040@safety{@prelim{}@mtsafe{@mtsrace{:set}}@assafe{}@acsafe{}}
2041@c Setting a bit isn't necessarily atomic, so there's a potential race
2042@c here if set is not used exclusively.
28f540f4 2043This macro removes @var{filedes} from the file descriptor set @var{set}.
d9997a45
UD
2044
2045The @var{filedes} parameter must not have side effects since it is
2046evaluated more than once.
28f540f4
RM
2047@end deftypefn
2048
d9997a45 2049@deftypefn Macro int FD_ISSET (int @var{filedes}, const fd_set *@var{set})
d08a7e4c 2050@standards{BSD, sys/types.h}
2cc3615c 2051@safety{@prelim{}@mtsafe{@mtsrace{:set}}@assafe{}@acsafe{}}
28f540f4 2052This macro returns a nonzero value (true) if @var{filedes} is a member
3081378b 2053of the file descriptor set @var{set}, and zero (false) otherwise.
d9997a45
UD
2054
2055The @var{filedes} parameter must not have side effects since it is
2056evaluated more than once.
28f540f4
RM
2057@end deftypefn
2058
2059Next, here is the description of the @code{select} function itself.
2060
28f540f4 2061@deftypefun int select (int @var{nfds}, fd_set *@var{read-fds}, fd_set *@var{write-fds}, fd_set *@var{except-fds}, struct timeval *@var{timeout})
d08a7e4c 2062@standards{BSD, sys/types.h}
2cc3615c
AO
2063@safety{@prelim{}@mtsafe{@mtsrace{:read-fds} @mtsrace{:write-fds} @mtsrace{:except-fds}}@assafe{}@acsafe{}}
2064@c The select syscall is preferred, but pselect6 may be used instead,
2065@c which requires converting timeout to a timespec and back. The
2066@c conversions are not atomic.
28f540f4
RM
2067The @code{select} function blocks the calling process until there is
2068activity on any of the specified sets of file descriptors, or until the
2069timeout period has expired.
2070
2071The file descriptors specified by the @var{read-fds} argument are
2072checked to see if they are ready for reading; the @var{write-fds} file
2073descriptors are checked to see if they are ready for writing; and the
2074@var{except-fds} file descriptors are checked for exceptional
2075conditions. You can pass a null pointer for any of these arguments if
2076you are not interested in checking for that kind of condition.
2077
76de2021
UD
2078A file descriptor is considered ready for reading if a @code{read}
2079call will not block. This usually includes the read offset being at
2080the end of the file or there is an error to report. A server socket
2081is considered ready for reading if there is a pending connection which
2082can be accepted with @code{accept}; @pxref{Accepting Connections}. A
2083client socket is ready for writing when its connection is fully
2084established; @pxref{Connecting}.
28f540f4
RM
2085
2086``Exceptional conditions'' does not mean errors---errors are reported
2087immediately when an erroneous system call is executed, and do not
2088constitute a state of the descriptor. Rather, they include conditions
2089such as the presence of an urgent message on a socket. (@xref{Sockets},
2090for information on urgent messages.)
2091
2092The @code{select} function checks only the first @var{nfds} file
2093descriptors. The usual thing is to pass @code{FD_SETSIZE} as the value
2094of this argument.
2095
2096The @var{timeout} specifies the maximum time to wait. If you pass a
2097null pointer for this argument, it means to block indefinitely until one
2098of the file descriptors is ready. Otherwise, you should provide the
2099time in @code{struct timeval} format; see @ref{High-Resolution
2100Calendar}. Specify zero as the time (a @code{struct timeval} containing
2101all zeros) if you want to find out which descriptors are ready without
2102waiting if none are ready.
2103
2104The normal return value from @code{select} is the total number of ready file
2105descriptors in all of the sets. Each of the argument sets is overwritten
2106with information about the descriptors that are ready for the corresponding
2107operation. Thus, to see if a particular descriptor @var{desc} has input,
2108use @code{FD_ISSET (@var{desc}, @var{read-fds})} after @code{select} returns.
2109
2110If @code{select} returns because the timeout period expires, it returns
2111a value of zero.
2112
2113Any signal will cause @code{select} to return immediately. So if your
2114program uses signals, you can't rely on @code{select} to keep waiting
2115for the full time specified. If you want to be sure of waiting for a
2116particular amount of time, you must check for @code{EINTR} and repeat
2117the @code{select} with a newly calculated timeout based on the current
2118time. See the example below. See also @ref{Interrupted Primitives}.
2119
2120If an error occurs, @code{select} returns @code{-1} and does not modify
2c6fe0bd 2121the argument file descriptor sets. The following @code{errno} error
28f540f4
RM
2122conditions are defined for this function:
2123
2124@table @code
2125@item EBADF
2126One of the file descriptor sets specified an invalid file descriptor.
2127
2128@item EINTR
2129The operation was interrupted by a signal. @xref{Interrupted Primitives}.
2130
2131@item EINVAL
2132The @var{timeout} argument is invalid; one of the components is negative
2133or too large.
2134@end table
2135@end deftypefun
2136
2137@strong{Portability Note:} The @code{select} function is a BSD Unix
2138feature.
2139
2140Here is an example showing how you can use @code{select} to establish a
2141timeout period for reading from a file descriptor. The @code{input_timeout}
2142function blocks the calling process until input is available on the
2143file descriptor, or until the timeout period expires.
2144
2145@smallexample
2146@include select.c.texi
2147@end smallexample
2148
2149There is another example showing the use of @code{select} to multiplex
2150input from multiple sockets in @ref{Server Example}.
2151
2152
dfd2257a
UD
2153@node Synchronizing I/O
2154@section Synchronizing I/O operations
2155
2156@cindex synchronizing
19e4c7dd 2157In most modern operating systems, the normal I/O operations are not
dfd2257a 2158executed synchronously. I.e., even if a @code{write} system call
19e4c7dd 2159returns, this does not mean the data is actually written to the media,
dfd2257a
UD
2160e.g., the disk.
2161
19e4c7dd 2162In situations where synchronization points are necessary, you can use
04b9968b 2163special functions which ensure that all operations finish before
dfd2257a
UD
2164they return.
2165
8ded91fb 2166@deftypefun void sync (void)
d08a7e4c 2167@standards{X/Open, unistd.h}
2cc3615c 2168@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
dfd2257a 2169A call to this function will not return as long as there is data which
04b9968b 2170has not been written to the device. All dirty buffers in the kernel will
dfd2257a
UD
2171be written and so an overall consistent system can be achieved (if no
2172other process in parallel writes data).
2173
2174A prototype for @code{sync} can be found in @file{unistd.h}.
dfd2257a
UD
2175@end deftypefun
2176
04b9968b
UD
2177Programs more often want to ensure that data written to a given file is
2178committed, rather than all data in the system. For this, @code{sync} is overkill.
2179
dfd2257a 2180
dfd2257a 2181@deftypefun int fsync (int @var{fildes})
d08a7e4c 2182@standards{POSIX, unistd.h}
2cc3615c 2183@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
19e4c7dd
AJ
2184The @code{fsync} function can be used to make sure all data associated with
2185the open file @var{fildes} is written to the device associated with the
dfd2257a
UD
2186descriptor. The function call does not return unless all actions have
2187finished.
2188
2189A prototype for @code{fsync} can be found in @file{unistd.h}.
2190
04b9968b 2191This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
2192is a problem if the thread allocates some resources (like memory, file
2193descriptors, semaphores or whatever) at the time @code{fsync} is
19e4c7dd 2194called. If the thread gets canceled these resources stay allocated
04b9968b
UD
2195until the program ends. To avoid this, calls to @code{fsync} should be
2196protected using cancellation handlers.
dfd2257a
UD
2197@c ref pthread_cleanup_push / pthread_cleanup_pop
2198
49c091e5 2199The return value of the function is zero if no error occurred. Otherwise
dfd2257a
UD
2200it is @math{-1} and the global variable @var{errno} is set to the
2201following values:
2202@table @code
2203@item EBADF
2204The descriptor @var{fildes} is not valid.
2205
2206@item EINVAL
2207No synchronization is possible since the system does not implement this.
2208@end table
2209@end deftypefun
2210
2211Sometimes it is not even necessary to write all data associated with a
2212file descriptor. E.g., in database files which do not change in size it
2213is enough to write all the file content data to the device.
19e4c7dd 2214Meta-information, like the modification time etc., are not that important
dfd2257a 2215and leaving such information uncommitted does not prevent a successful
9739d2d5 2216recovery of the file in case of a problem.
dfd2257a 2217
dfd2257a 2218@deftypefun int fdatasync (int @var{fildes})
d08a7e4c 2219@standards{POSIX, unistd.h}
2cc3615c 2220@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
04b9968b 2221When a call to the @code{fdatasync} function returns, it is ensured
dfd2257a 2222that all of the file data is written to the device. For all pending I/O
04b9968b 2223operations, the parts guaranteeing data integrity finished.
dfd2257a
UD
2224
2225Not all systems implement the @code{fdatasync} operation. On systems
2226missing this functionality @code{fdatasync} is emulated by a call to
2227@code{fsync} since the performed actions are a superset of those
19e4c7dd 2228required by @code{fdatasync}.
dfd2257a
UD
2229
2230The prototype for @code{fdatasync} is in @file{unistd.h}.
2231
49c091e5 2232The return value of the function is zero if no error occurred. Otherwise
dfd2257a
UD
2233it is @math{-1} and the global variable @var{errno} is set to the
2234following values:
2235@table @code
2236@item EBADF
2237The descriptor @var{fildes} is not valid.
2238
2239@item EINVAL
2240No synchronization is possible since the system does not implement this.
2241@end table
2242@end deftypefun
2243
2244
b07d03e0
UD
2245@node Asynchronous I/O
2246@section Perform I/O Operations in Parallel
2247
2248The POSIX.1b standard defines a new set of I/O operations which can
9739d2d5 2249significantly reduce the time an application spends waiting for I/O. The
b07d03e0 2250new functions allow a program to initiate one or more I/O operations and
04b9968b
UD
2251then immediately resume normal work while the I/O operations are
2252executed in parallel. This functionality is available if the
a3a4a74e 2253@file{unistd.h} file defines the symbol @code{_POSIX_ASYNCHRONOUS_IO}.
b07d03e0
UD
2254
2255These functions are part of the library with realtime functions named
2256@file{librt}. They are not actually part of the @file{libc} binary.
2257The implementation of these functions can be done using support in the
c756c71c
UD
2258kernel (if available) or using an implementation based on threads at
2259userlevel. In the latter case it might be necessary to link applications
fed8f7f7 2260with the thread library @file{libpthread} in addition to @file{librt}.
b07d03e0 2261
c756c71c 2262All AIO operations operate on files which were opened previously. There
04b9968b 2263might be arbitrarily many operations running for one file. The
b07d03e0
UD
2264asynchronous I/O operations are controlled using a data structure named
2265@code{struct aiocb} (@dfn{AIO control block}). It is defined in
2266@file{aio.h} as follows.
2267
b07d03e0 2268@deftp {Data Type} {struct aiocb}
d08a7e4c 2269@standards{POSIX.1b, aio.h}
b07d03e0
UD
2270The POSIX.1b standard mandates that the @code{struct aiocb} structure
2271contains at least the members described in the following table. There
04b9968b 2272might be more elements which are used by the implementation, but
19e4c7dd 2273depending upon these elements is not portable and is highly deprecated.
b07d03e0
UD
2274
2275@table @code
2276@item int aio_fildes
19e4c7dd
AJ
2277This element specifies the file descriptor to be used for the
2278operation. It must be a legal descriptor, otherwise the operation will
2279fail.
b07d03e0
UD
2280
2281The device on which the file is opened must allow the seek operation.
2282I.e., it is not possible to use any of the AIO operations on devices
2283like terminals where an @code{lseek} call would lead to an error.
2284
2285@item off_t aio_offset
19e4c7dd 2286This element specifies the offset in the file at which the operation (input
fed8f7f7 2287or output) is performed. Since the operations are carried out in arbitrary
b07d03e0
UD
2288order and more than one operation for one file descriptor can be
2289started, one cannot expect a current read/write position of the file
2290descriptor.
2291
2292@item volatile void *aio_buf
2293This is a pointer to the buffer with the data to be written or the place
c756c71c 2294where the read data is stored.
b07d03e0
UD
2295
2296@item size_t aio_nbytes
2297This element specifies the length of the buffer pointed to by @code{aio_buf}.
2298
2299@item int aio_reqprio
c756c71c 2300If the platform has defined @code{_POSIX_PRIORITIZED_IO} and
19e4c7dd 2301@code{_POSIX_PRIORITY_SCHEDULING}, the AIO requests are
b07d03e0
UD
2302processed based on the current scheduling priority. The
2303@code{aio_reqprio} element can then be used to lower the priority of the
2304AIO operation.
2305
2306@item struct sigevent aio_sigevent
2307This element specifies how the calling process is notified once the
fed8f7f7 2308operation terminates. If the @code{sigev_notify} element is
19e4c7dd
AJ
2309@code{SIGEV_NONE}, no notification is sent. If it is @code{SIGEV_SIGNAL},
2310the signal determined by @code{sigev_signo} is sent. Otherwise,
2311@code{sigev_notify} must be @code{SIGEV_THREAD}. In this case, a thread
c756c71c 2312is created which starts executing the function pointed to by
b07d03e0
UD
2313@code{sigev_notify_function}.
2314
2315@item int aio_lio_opcode
2316This element is only used by the @code{lio_listio} and
04b9968b
UD
2317@code{lio_listio64} functions. Since these functions allow an
2318arbitrary number of operations to start at once, and each operation can be
2319input or output (or nothing), the information must be stored in the
b07d03e0
UD
2320control block. The possible values are:
2321
2322@vtable @code
2323@item LIO_READ
2324Start a read operation. Read from the file at position
2325@code{aio_offset} and store the next @code{aio_nbytes} bytes in the
2326buffer pointed to by @code{aio_buf}.
2327
2328@item LIO_WRITE
2329Start a write operation. Write @code{aio_nbytes} bytes starting at
2330@code{aio_buf} into the file starting at position @code{aio_offset}.
2331
2332@item LIO_NOP
2333Do nothing for this control block. This value is useful sometimes when
2334an array of @code{struct aiocb} values contains holes, i.e., some of the
fed8f7f7 2335values must not be handled although the whole array is presented to the
b07d03e0
UD
2336@code{lio_listio} function.
2337@end vtable
2338@end table
a3a4a74e 2339
fed8f7f7 2340When the sources are compiled using @code{_FILE_OFFSET_BITS == 64} on a
19e4c7dd 234132 bit machine, this type is in fact @code{struct aiocb64}, since the LFS
a3a4a74e
UD
2342interface transparently replaces the @code{struct aiocb} definition.
2343@end deftp
2344
19e4c7dd 2345For use with the AIO functions defined in the LFS, there is a similar type
a3a4a74e 2346defined which replaces the types of the appropriate members with larger
04b9968b 2347types but otherwise is equivalent to @code{struct aiocb}. Particularly,
a3a4a74e
UD
2348all member names are the same.
2349
a3a4a74e 2350@deftp {Data Type} {struct aiocb64}
d08a7e4c 2351@standards{POSIX.1b, aio.h}
a3a4a74e
UD
2352@table @code
2353@item int aio_fildes
2354This element specifies the file descriptor which is used for the
2355operation. It must be a legal descriptor since otherwise the operation
2356fails for obvious reasons.
2357
2358The device on which the file is opened must allow the seek operation.
2359I.e., it is not possible to use any of the AIO operations on devices
2360like terminals where an @code{lseek} call would lead to an error.
2361
2362@item off64_t aio_offset
04b9968b 2363This element specifies at which offset in the file the operation (input
a3a4a74e
UD
2364or output) is performed. Since the operation are carried in arbitrary
2365order and more than one operation for one file descriptor can be
2366started, one cannot expect a current read/write position of the file
2367descriptor.
2368
2369@item volatile void *aio_buf
2370This is a pointer to the buffer with the data to be written or the place
19e4c7dd 2371where the read data is stored.
a3a4a74e
UD
2372
2373@item size_t aio_nbytes
2374This element specifies the length of the buffer pointed to by @code{aio_buf}.
2375
2376@item int aio_reqprio
2377If for the platform @code{_POSIX_PRIORITIZED_IO} and
04b9968b 2378@code{_POSIX_PRIORITY_SCHEDULING} are defined the AIO requests are
a3a4a74e
UD
2379processed based on the current scheduling priority. The
2380@code{aio_reqprio} element can then be used to lower the priority of the
2381AIO operation.
2382
2383@item struct sigevent aio_sigevent
2384This element specifies how the calling process is notified once the
9739d2d5 2385operation terminates. If the @code{sigev_notify} element is
19e4c7dd
AJ
2386@code{SIGEV_NONE} no notification is sent. If it is @code{SIGEV_SIGNAL},
2387the signal determined by @code{sigev_signo} is sent. Otherwise,
a3a4a74e 2388@code{sigev_notify} must be @code{SIGEV_THREAD} in which case a thread
9739d2d5 2389is created which starts executing the function pointed to by
a3a4a74e
UD
2390@code{sigev_notify_function}.
2391
2392@item int aio_lio_opcode
2393This element is only used by the @code{lio_listio} and
9739d2d5 2394@code{lio_listio64} functions. Since these functions allow an
04b9968b
UD
2395arbitrary number of operations to start at once, and since each operation can be
2396input or output (or nothing), the information must be stored in the
a3a4a74e
UD
2397control block. See the description of @code{struct aiocb} for a description
2398of the possible values.
2399@end table
2400
2401When the sources are compiled using @code{_FILE_OFFSET_BITS == 64} on a
19e4c7dd
AJ
240232 bit machine, this type is available under the name @code{struct
2403aiocb64}, since the LFS transparently replaces the old interface.
b07d03e0
UD
2404@end deftp
2405
2406@menu
a3a4a74e
UD
2407* Asynchronous Reads/Writes:: Asynchronous Read and Write Operations.
2408* Status of AIO Operations:: Getting the Status of AIO Operations.
2409* Synchronizing AIO Operations:: Getting into a consistent state.
04b9968b 2410* Cancel AIO Operations:: Cancellation of AIO Operations.
a3a4a74e 2411* Configuration of AIO:: How to optimize the AIO implementation.
b07d03e0
UD
2412@end menu
2413
a3a4a74e
UD
2414@node Asynchronous Reads/Writes
2415@subsection Asynchronous Read and Write Operations
b07d03e0 2416
b07d03e0 2417@deftypefun int aio_read (struct aiocb *@var{aiocbp})
d08a7e4c 2418@standards{POSIX.1b, aio.h}
2cc3615c
AO
2419@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
2420@c Calls aio_enqueue_request.
2421@c aio_enqueue_request @asulock @ascuheap @aculock @acsmem
2422@c pthread_self ok
2423@c pthread_getschedparam @asulock @aculock
2424@c lll_lock (pthread descriptor's lock) @asulock @aculock
2425@c sched_getparam ok
2426@c sched_getscheduler ok
2427@c lll_unlock @aculock
2428@c pthread_mutex_lock (aio_requests_mutex) @asulock @aculock
2429@c get_elem @ascuheap @acsmem [@asucorrupt @acucorrupt]
2430@c realloc @ascuheap @acsmem
2431@c calloc @ascuheap @acsmem
2432@c aio_create_helper_thread @asulock @ascuheap @aculock @acsmem
2433@c pthread_attr_init ok
2434@c pthread_attr_setdetachstate ok
2435@c pthread_get_minstack ok
2436@c pthread_attr_setstacksize ok
2437@c sigfillset ok
2438@c memset ok
2439@c sigdelset ok
2440@c SYSCALL rt_sigprocmask ok
2441@c pthread_create @asulock @ascuheap @aculock @acsmem
2442@c lll_lock (default_pthread_attr_lock) @asulock @aculock
2443@c alloca/malloc @ascuheap @acsmem
2444@c lll_unlock @aculock
2445@c allocate_stack @asulock @ascuheap @aculock @acsmem
2446@c getpagesize dup
2447@c lll_lock (default_pthread_attr_lock) @asulock @aculock
2448@c lll_unlock @aculock
2449@c _dl_allocate_tls @ascuheap @acsmem
2450@c _dl_allocate_tls_storage @ascuheap @acsmem
2451@c memalign @ascuheap @acsmem
2452@c memset ok
2453@c allocate_dtv dup
2454@c free @ascuheap @acsmem
2455@c allocate_dtv @ascuheap @acsmem
2456@c calloc @ascuheap @acsmem
2457@c INSTALL_DTV ok
2458@c list_add dup
2459@c get_cached_stack
2460@c lll_lock (stack_cache_lock) @asulock @aculock
2461@c list_for_each ok
2462@c list_entry dup
2463@c FREE_P dup
2464@c stack_list_del dup
2465@c stack_list_add dup
2466@c lll_unlock @aculock
2467@c _dl_allocate_tls_init ok
2468@c GET_DTV ok
2469@c mmap ok
2470@c atomic_increment_val ok
2471@c munmap ok
2472@c change_stack_perm ok
2473@c mprotect ok
2474@c mprotect ok
2475@c stack_list_del dup
2476@c _dl_deallocate_tls dup
2477@c munmap ok
2478@c THREAD_COPY_STACK_GUARD ok
2479@c THREAD_COPY_POINTER_GUARD ok
2480@c atomic_exchange_acq ok
2481@c lll_futex_wake ok
2482@c deallocate_stack @asulock @ascuheap @aculock @acsmem
2483@c lll_lock (state_cache_lock) @asulock @aculock
2484@c stack_list_del ok
2485@c atomic_write_barrier ok
2486@c list_del ok
2487@c atomic_write_barrier ok
2488@c queue_stack @ascuheap @acsmem
2489@c stack_list_add ok
2490@c atomic_write_barrier ok
2491@c list_add ok
2492@c atomic_write_barrier ok
2493@c free_stacks @ascuheap @acsmem
2494@c list_for_each_prev_safe ok
2495@c list_entry ok
2496@c FREE_P ok
2497@c stack_list_del dup
2498@c _dl_deallocate_tls dup
2499@c munmap ok
2500@c _dl_deallocate_tls @ascuheap @acsmem
2501@c free @ascuheap @acsmem
2502@c lll_unlock @aculock
2503@c create_thread @asulock @ascuheap @aculock @acsmem
2504@c td_eventword
2505@c td_eventmask
2506@c do_clone @asulock @ascuheap @aculock @acsmem
2507@c PREPARE_CREATE ok
2508@c lll_lock (pd->lock) @asulock @aculock
2509@c atomic_increment ok
2510@c clone ok
2511@c atomic_decrement ok
2512@c atomic_exchange_acq ok
2513@c lll_futex_wake ok
2514@c deallocate_stack dup
2515@c sched_setaffinity ok
2516@c tgkill ok
2517@c sched_setscheduler ok
2518@c atomic_compare_and_exchange_bool_acq ok
2519@c nptl_create_event ok
2520@c lll_unlock (pd->lock) @aculock
2521@c free @ascuheap @acsmem
2522@c pthread_attr_destroy ok (cpuset won't be set, so free isn't called)
2523@c add_request_to_runlist ok
2524@c pthread_cond_signal ok
2525@c aio_free_request ok
2526@c pthread_mutex_unlock @aculock
2527
2528@c (in the new thread, initiated with clone)
2529@c start_thread ok
2530@c HP_TIMING_NOW ok
2531@c ctype_init @mtslocale
2532@c atomic_exchange_acq ok
2533@c lll_futex_wake ok
2534@c sigemptyset ok
2535@c sigaddset ok
2536@c setjmp ok
2537@c CANCEL_ASYNC -> pthread_enable_asynccancel ok
2538@c do_cancel ok
2539@c pthread_unwind ok
2540@c Unwind_ForcedUnwind or longjmp ok [@ascuheap @acsmem?]
2541@c lll_lock @asulock @aculock
2542@c lll_unlock @asulock @aculock
2543@c CANCEL_RESET -> pthread_disable_asynccancel ok
2544@c lll_futex_wait ok
2545@c ->start_routine ok -----
2546@c call_tls_dtors @asulock @ascuheap @aculock @acsmem
2547@c user-supplied dtor
2548@c rtld_lock_lock_recursive (dl_load_lock) @asulock @aculock
2549@c rtld_lock_unlock_recursive @aculock
2550@c free @ascuheap @acsmem
2551@c nptl_deallocate_tsd @ascuheap @acsmem
2552@c tsd user-supplied dtors ok
2553@c free @ascuheap @acsmem
2554@c libc_thread_freeres
2555@c libc_thread_subfreeres ok
2556@c atomic_decrement_and_test ok
2557@c td_eventword ok
2558@c td_eventmask ok
2559@c atomic_compare_exchange_bool_acq ok
2560@c nptl_death_event ok
2561@c lll_robust_dead ok
2562@c getpagesize ok
2563@c madvise ok
2564@c free_tcb @asulock @ascuheap @aculock @acsmem
2565@c free @ascuheap @acsmem
2566@c deallocate_stack @asulock @ascuheap @aculock @acsmem
2567@c lll_futex_wait ok
2568@c exit_thread_inline ok
2569@c syscall(exit) ok
2570
04b9968b
UD
2571This function initiates an asynchronous read operation. It
2572immediately returns after the operation was enqueued or when an
fed8f7f7 2573error was encountered.
b07d03e0 2574
a3a4a74e 2575The first @code{aiocbp->aio_nbytes} bytes of the file for which
c756c71c
UD
2576@code{aiocbp->aio_fildes} is a descriptor are written to the buffer
2577starting at @code{aiocbp->aio_buf}. Reading starts at the absolute
2578position @code{aiocbp->aio_offset} in the file.
b07d03e0
UD
2579
2580If prioritized I/O is supported by the platform the
2581@code{aiocbp->aio_reqprio} value is used to adjust the priority before
2582the request is actually enqueued.
2583
2584The calling process is notified about the termination of the read
2585request according to the @code{aiocbp->aio_sigevent} value.
2586
04b9968b 2587When @code{aio_read} returns, the return value is zero if no error
b07d03e0 2588occurred that can be found before the process is enqueued. If such an
04b9968b
UD
2589early error is found, the function returns @math{-1} and sets
2590@code{errno} to one of the following values:
b07d03e0
UD
2591
2592@table @code
2593@item EAGAIN
2594The request was not enqueued due to (temporarily) exceeded resource
2595limitations.
2596@item ENOSYS
2597The @code{aio_read} function is not implemented.
2598@item EBADF
2599The @code{aiocbp->aio_fildes} descriptor is not valid. This condition
04b9968b 2600need not be recognized before enqueueing the request and so this error
fed8f7f7 2601might also be signaled asynchronously.
b07d03e0
UD
2602@item EINVAL
2603The @code{aiocbp->aio_offset} or @code{aiocbp->aio_reqpiro} value is
2604invalid. This condition need not be recognized before enqueueing the
49c091e5 2605request and so this error might also be signaled asynchronously.
b07d03e0
UD
2606@end table
2607
04b9968b
UD
2608If @code{aio_read} returns zero, the current status of the request
2609can be queried using @code{aio_error} and @code{aio_return} functions.
2610As long as the value returned by @code{aio_error} is @code{EINPROGRESS}
2611the operation has not yet completed. If @code{aio_error} returns zero,
78759725
UD
2612the operation successfully terminated, otherwise the value is to be
2613interpreted as an error code. If the function terminated, the result of
2614the operation can be obtained using a call to @code{aio_return}. The
2615returned value is the same as an equivalent call to @code{read} would
04b9968b 2616have returned. Possible error codes returned by @code{aio_error} are:
b07d03e0
UD
2617
2618@table @code
2619@item EBADF
2620The @code{aiocbp->aio_fildes} descriptor is not valid.
2621@item ECANCELED
19e4c7dd 2622The operation was canceled before the operation was finished
b07d03e0
UD
2623(@pxref{Cancel AIO Operations})
2624@item EINVAL
2625The @code{aiocbp->aio_offset} value is invalid.
2626@end table
a3a4a74e
UD
2627
2628When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2629function is in fact @code{aio_read64} since the LFS interface transparently
2630replaces the normal implementation.
b07d03e0
UD
2631@end deftypefun
2632
8ded91fb 2633@deftypefun int aio_read64 (struct aiocb64 *@var{aiocbp})
d08a7e4c 2634@standards{Unix98, aio.h}
2cc3615c 2635@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
b07d03e0 2636This function is similar to the @code{aio_read} function. The only
19e4c7dd
AJ
2637difference is that on @w{32 bit} machines, the file descriptor should
2638be opened in the large file mode. Internally, @code{aio_read64} uses
a3a4a74e
UD
2639functionality equivalent to @code{lseek64} (@pxref{File Position
2640Primitive}) to position the file descriptor correctly for the reading,
9739d2d5 2641as opposed to the @code{lseek} functionality used in @code{aio_read}.
a3a4a74e 2642
19e4c7dd 2643When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e 2644function is available under the name @code{aio_read} and so transparently
04b9968b 2645replaces the interface for small files on 32 bit machines.
b07d03e0
UD
2646@end deftypefun
2647
19e4c7dd 2648To write data asynchronously to a file, there exists an equivalent pair
a3a4a74e
UD
2649of functions with a very similar interface.
2650
a3a4a74e 2651@deftypefun int aio_write (struct aiocb *@var{aiocbp})
d08a7e4c 2652@standards{POSIX.1b, aio.h}
2cc3615c 2653@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
a3a4a74e
UD
2654This function initiates an asynchronous write operation. The function
2655call immediately returns after the operation was enqueued or if before
fed8f7f7 2656this happens an error was encountered.
a3a4a74e
UD
2657
2658The first @code{aiocbp->aio_nbytes} bytes from the buffer starting at
2659@code{aiocbp->aio_buf} are written to the file for which
9dcc8f11 2660@code{aiocbp->aio_fildes} is a descriptor, starting at the absolute
a3a4a74e
UD
2661position @code{aiocbp->aio_offset} in the file.
2662
19e4c7dd 2663If prioritized I/O is supported by the platform, the
a3a4a74e
UD
2664@code{aiocbp->aio_reqprio} value is used to adjust the priority before
2665the request is actually enqueued.
2666
2667The calling process is notified about the termination of the read
2668request according to the @code{aiocbp->aio_sigevent} value.
2669
19e4c7dd 2670When @code{aio_write} returns, the return value is zero if no error
a3a4a74e
UD
2671occurred that can be found before the process is enqueued. If such an
2672early error is found the function returns @math{-1} and sets
2673@code{errno} to one of the following values.
2674
2675@table @code
2676@item EAGAIN
2677The request was not enqueued due to (temporarily) exceeded resource
2678limitations.
2679@item ENOSYS
2680The @code{aio_write} function is not implemented.
2681@item EBADF
2682The @code{aiocbp->aio_fildes} descriptor is not valid. This condition
19e4c7dd 2683may not be recognized before enqueueing the request, and so this error
fed8f7f7 2684might also be signaled asynchronously.
a3a4a74e 2685@item EINVAL
19e4c7dd
AJ
2686The @code{aiocbp->aio_offset} or @code{aiocbp->aio_reqprio} value is
2687invalid. This condition may not be recognized before enqueueing the
fed8f7f7 2688request and so this error might also be signaled asynchronously.
a3a4a74e
UD
2689@end table
2690
19e4c7dd 2691In the case @code{aio_write} returns zero, the current status of the
9739d2d5 2692request can be queried using the @code{aio_error} and @code{aio_return}
c756c71c 2693functions. As long as the value returned by @code{aio_error} is
a3a4a74e 2694@code{EINPROGRESS} the operation has not yet completed. If
19e4c7dd 2695@code{aio_error} returns zero, the operation successfully terminated,
a3a4a74e 2696otherwise the value is to be interpreted as an error code. If the
9739d2d5 2697function terminated, the result of the operation can be obtained using a call
a3a4a74e 2698to @code{aio_return}. The returned value is the same as an equivalent
19e4c7dd 2699call to @code{read} would have returned. Possible error codes returned
a3a4a74e
UD
2700by @code{aio_error} are:
2701
2702@table @code
2703@item EBADF
2704The @code{aiocbp->aio_fildes} descriptor is not valid.
2705@item ECANCELED
19e4c7dd 2706The operation was canceled before the operation was finished.
a3a4a74e
UD
2707(@pxref{Cancel AIO Operations})
2708@item EINVAL
2709The @code{aiocbp->aio_offset} value is invalid.
2710@end table
2711
19e4c7dd 2712When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e
UD
2713function is in fact @code{aio_write64} since the LFS interface transparently
2714replaces the normal implementation.
2715@end deftypefun
2716
8ded91fb 2717@deftypefun int aio_write64 (struct aiocb64 *@var{aiocbp})
d08a7e4c 2718@standards{Unix98, aio.h}
2cc3615c 2719@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
a3a4a74e 2720This function is similar to the @code{aio_write} function. The only
04b9968b 2721difference is that on @w{32 bit} machines the file descriptor should
a3a4a74e
UD
2722be opened in the large file mode. Internally @code{aio_write64} uses
2723functionality equivalent to @code{lseek64} (@pxref{File Position
2724Primitive}) to position the file descriptor correctly for the writing,
9739d2d5 2725as opposed to the @code{lseek} functionality used in @code{aio_write}.
a3a4a74e 2726
19e4c7dd 2727When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e 2728function is available under the name @code{aio_write} and so transparently
04b9968b 2729replaces the interface for small files on 32 bit machines.
a3a4a74e
UD
2730@end deftypefun
2731
19e4c7dd
AJ
2732Besides these functions with the more or less traditional interface,
2733POSIX.1b also defines a function which can initiate more than one
2734operation at a time, and which can handle freely mixed read and write
2735operations. It is therefore similar to a combination of @code{readv} and
a3a4a74e
UD
2736@code{writev}.
2737
a3a4a74e 2738@deftypefun int lio_listio (int @var{mode}, struct aiocb *const @var{list}[], int @var{nent}, struct sigevent *@var{sig})
d08a7e4c 2739@standards{POSIX.1b, aio.h}
2cc3615c
AO
2740@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
2741@c Call lio_listio_internal, that takes the aio_requests_mutex lock and
2742@c enqueues each request. Then, it waits for notification or prepares
2743@c for it before releasing the lock. Even though it performs memory
2744@c allocation and locking of its own, it doesn't add any classes of
2745@c safety issues that aren't already covered by aio_enqueue_request.
a3a4a74e
UD
2746The @code{lio_listio} function can be used to enqueue an arbitrary
2747number of read and write requests at one time. The requests can all be
2748meant for the same file, all for different files or every solution in
2749between.
2750
2751@code{lio_listio} gets the @var{nent} requests from the array pointed to
19e4c7dd 2752by @var{list}. The operation to be performed is determined by the
a3a4a74e 2753@code{aio_lio_opcode} member in each element of @var{list}. If this
19e4c7dd 2754field is @code{LIO_READ} a read operation is enqueued, similar to a call
a3a4a74e
UD
2755of @code{aio_read} for this element of the array (except that the way
2756the termination is signalled is different, as we will see below). If
19e4c7dd 2757the @code{aio_lio_opcode} member is @code{LIO_WRITE} a write operation
a3a4a74e
UD
2758is enqueued. Otherwise the @code{aio_lio_opcode} must be @code{LIO_NOP}
2759in which case this element of @var{list} is simply ignored. This
2760``operation'' is useful in situations where one has a fixed array of
2761@code{struct aiocb} elements from which only a few need to be handled at
2762a time. Another situation is where the @code{lio_listio} call was
19e4c7dd 2763canceled before all requests are processed (@pxref{Cancel AIO
a3a4a74e
UD
2764Operations}) and the remaining requests have to be reissued.
2765
fed8f7f7 2766The other members of each element of the array pointed to by
a3a4a74e
UD
2767@code{list} must have values suitable for the operation as described in
2768the documentation for @code{aio_read} and @code{aio_write} above.
2769
2770The @var{mode} argument determines how @code{lio_listio} behaves after
2771having enqueued all the requests. If @var{mode} is @code{LIO_WAIT} it
2772waits until all requests terminated. Otherwise @var{mode} must be
fed8f7f7 2773@code{LIO_NOWAIT} and in this case the function returns immediately after
a3a4a74e
UD
2774having enqueued all the requests. In this case the caller gets a
2775notification of the termination of all requests according to the
2776@var{sig} parameter. If @var{sig} is @code{NULL} no notification is
9739d2d5 2777sent. Otherwise a signal is sent or a thread is started, just as
a3a4a74e
UD
2778described in the description for @code{aio_read} or @code{aio_write}.
2779
19e4c7dd 2780If @var{mode} is @code{LIO_WAIT}, the return value of @code{lio_listio}
a3a4a74e 2781is @math{0} when all requests completed successfully. Otherwise the
9739d2d5 2782function returns @math{-1} and @code{errno} is set accordingly. To find
a3a4a74e
UD
2783out which request or requests failed one has to use the @code{aio_error}
2784function on all the elements of the array @var{list}.
2785
19e4c7dd 2786In case @var{mode} is @code{LIO_NOWAIT}, the function returns @math{0} if
a3a4a74e
UD
2787all requests were enqueued correctly. The current state of the requests
2788can be found using @code{aio_error} and @code{aio_return} as described
19e4c7dd 2789above. If @code{lio_listio} returns @math{-1} in this mode, the
a3a4a74e 2790global variable @code{errno} is set accordingly. If a request did not
19e4c7dd
AJ
2791yet terminate, a call to @code{aio_error} returns @code{EINPROGRESS}. If
2792the value is different, the request is finished and the error value (or
a3a4a74e
UD
2793@math{0}) is returned and the result of the operation can be retrieved
2794using @code{aio_return}.
2795
2796Possible values for @code{errno} are:
2797
2798@table @code
2799@item EAGAIN
19e4c7dd 2800The resources necessary to queue all the requests are not available at
a3a4a74e 2801the moment. The error status for each element of @var{list} must be
19e4c7dd 2802checked to determine which request failed.
a3a4a74e 2803
fed8f7f7 2804Another reason could be that the system wide limit of AIO requests is
a7a93d50 2805exceeded. This cannot be the case for the implementation on @gnusystems{}
a3a4a74e
UD
2806since no arbitrary limits exist.
2807@item EINVAL
2808The @var{mode} parameter is invalid or @var{nent} is larger than
2809@code{AIO_LISTIO_MAX}.
2810@item EIO
2811One or more of the request's I/O operations failed. The error status of
19e4c7dd 2812each request should be checked to determine which one failed.
a3a4a74e
UD
2813@item ENOSYS
2814The @code{lio_listio} function is not supported.
2815@end table
2816
2817If the @var{mode} parameter is @code{LIO_NOWAIT} and the caller cancels
19e4c7dd 2818a request, the error status for this request returned by
a3a4a74e
UD
2819@code{aio_error} is @code{ECANCELED}.
2820
19e4c7dd 2821When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e
UD
2822function is in fact @code{lio_listio64} since the LFS interface
2823transparently replaces the normal implementation.
2824@end deftypefun
2825
8ded91fb 2826@deftypefun int lio_listio64 (int @var{mode}, struct aiocb64 *const @var{list}[], int @var{nent}, struct sigevent *@var{sig})
d08a7e4c 2827@standards{Unix98, aio.h}
2cc3615c 2828@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
19e4c7dd
AJ
2829This function is similar to the @code{lio_listio} function. The only
2830difference is that on @w{32 bit} machines, the file descriptor should
2831be opened in the large file mode. Internally, @code{lio_listio64} uses
a3a4a74e
UD
2832functionality equivalent to @code{lseek64} (@pxref{File Position
2833Primitive}) to position the file descriptor correctly for the reading or
9739d2d5 2834writing, as opposed to the @code{lseek} functionality used in
a3a4a74e
UD
2835@code{lio_listio}.
2836
19e4c7dd 2837When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e 2838function is available under the name @code{lio_listio} and so
04b9968b 2839transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2840machines.
2841@end deftypefun
2842
2843@node Status of AIO Operations
2844@subsection Getting the Status of AIO Operations
2845
fed8f7f7 2846As already described in the documentation of the functions in the last
04b9968b
UD
2847section, it must be possible to get information about the status of an I/O
2848request. When the operation is performed truly asynchronously (as with
19e4c7dd
AJ
2849@code{aio_read} and @code{aio_write} and with @code{lio_listio} when the
2850mode is @code{LIO_NOWAIT}), one sometimes needs to know whether a
2851specific request already terminated and if so, what the result was.
04b9968b 2852The following two functions allow you to get this kind of information.
a3a4a74e 2853
a3a4a74e 2854@deftypefun int aio_error (const struct aiocb *@var{aiocbp})
d08a7e4c 2855@standards{POSIX.1b, aio.h}
2cc3615c 2856@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
a3a4a74e 2857This function determines the error state of the request described by the
fed8f7f7 2858@code{struct aiocb} variable pointed to by @var{aiocbp}. If the
a3a4a74e
UD
2859request has not yet terminated the value returned is always
2860@code{EINPROGRESS}. Once the request has terminated the value
2861@code{aio_error} returns is either @math{0} if the request completed
fed8f7f7 2862successfully or it returns the value which would be stored in the
a3a4a74e
UD
2863@code{errno} variable if the request would have been done using
2864@code{read}, @code{write}, or @code{fsync}.
2865
2866The function can return @code{ENOSYS} if it is not implemented. It
2867could also return @code{EINVAL} if the @var{aiocbp} parameter does not
2868refer to an asynchronous operation whose return status is not yet known.
2869
2870When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2871function is in fact @code{aio_error64} since the LFS interface
2872transparently replaces the normal implementation.
2873@end deftypefun
2874
a3a4a74e 2875@deftypefun int aio_error64 (const struct aiocb64 *@var{aiocbp})
d08a7e4c 2876@standards{Unix98, aio.h}
2cc3615c 2877@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
a3a4a74e
UD
2878This function is similar to @code{aio_error} with the only difference
2879that the argument is a reference to a variable of type @code{struct
2880aiocb64}.
2881
2882When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2883function is available under the name @code{aio_error} and so
04b9968b 2884transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2885machines.
2886@end deftypefun
2887
8ded91fb 2888@deftypefun ssize_t aio_return (struct aiocb *@var{aiocbp})
d08a7e4c 2889@standards{POSIX.1b, aio.h}
2cc3615c 2890@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
a3a4a74e
UD
2891This function can be used to retrieve the return status of the operation
2892carried out by the request described in the variable pointed to by
2893@var{aiocbp}. As long as the error status of this request as returned
9739d2d5 2894by @code{aio_error} is @code{EINPROGRESS} the return value of this function is
a3a4a74e
UD
2895undefined.
2896
fed8f7f7
UD
2897Once the request is finished this function can be used exactly once to
2898retrieve the return value. Following calls might lead to undefined
19e4c7dd 2899behavior. The return value itself is the value which would have been
a3a4a74e
UD
2900returned by the @code{read}, @code{write}, or @code{fsync} call.
2901
2902The function can return @code{ENOSYS} if it is not implemented. It
2903could also return @code{EINVAL} if the @var{aiocbp} parameter does not
2904refer to an asynchronous operation whose return status is not yet known.
2905
2906When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2907function is in fact @code{aio_return64} since the LFS interface
2908transparently replaces the normal implementation.
2909@end deftypefun
2910
8ded91fb 2911@deftypefun ssize_t aio_return64 (struct aiocb64 *@var{aiocbp})
d08a7e4c 2912@standards{Unix98, aio.h}
2cc3615c 2913@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
a3a4a74e
UD
2914This function is similar to @code{aio_return} with the only difference
2915that the argument is a reference to a variable of type @code{struct
2916aiocb64}.
2917
2918When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2919function is available under the name @code{aio_return} and so
04b9968b 2920transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2921machines.
2922@end deftypefun
2923
2924@node Synchronizing AIO Operations
2925@subsection Getting into a Consistent State
2926
2927When dealing with asynchronous operations it is sometimes necessary to
fed8f7f7 2928get into a consistent state. This would mean for AIO that one wants to
9739d2d5 2929know whether a certain request or a group of requests were processed.
a3a4a74e 2930This could be done by waiting for the notification sent by the system
04b9968b 2931after the operation terminated, but this sometimes would mean wasting
a3a4a74e
UD
2932resources (mainly computation time). Instead POSIX.1b defines two
2933functions which will help with most kinds of consistency.
2934
2935The @code{aio_fsync} and @code{aio_fsync64} functions are only available
19e4c7dd 2936if the symbol @code{_POSIX_SYNCHRONIZED_IO} is defined in @file{unistd.h}.
a3a4a74e
UD
2937
2938@cindex synchronizing
a3a4a74e 2939@deftypefun int aio_fsync (int @var{op}, struct aiocb *@var{aiocbp})
d08a7e4c 2940@standards{POSIX.1b, aio.h}
2cc3615c
AO
2941@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
2942@c After fcntl to check that the FD is open, it calls
2943@c aio_enqueue_request.
9739d2d5 2944Calling this function forces all I/O operations queued at the
fed8f7f7 2945time of the function call operating on the file descriptor
a3a4a74e 2946@code{aiocbp->aio_fildes} into the synchronized I/O completion state
04b9968b 2947(@pxref{Synchronizing I/O}). The @code{aio_fsync} function returns
a3a4a74e
UD
2948immediately but the notification through the method described in
2949@code{aiocbp->aio_sigevent} will happen only after all requests for this
04b9968b 2950file descriptor have terminated and the file is synchronized. This also
a3a4a74e 2951means that requests for this very same file descriptor which are queued
04b9968b 2952after the synchronization request are not affected.
a3a4a74e
UD
2953
2954If @var{op} is @code{O_DSYNC} the synchronization happens as with a call
2955to @code{fdatasync}. Otherwise @var{op} should be @code{O_SYNC} and
fed8f7f7 2956the synchronization happens as with @code{fsync}.
a3a4a74e 2957
19e4c7dd 2958As long as the synchronization has not happened, a call to
a3a4a74e 2959@code{aio_error} with the reference to the object pointed to by
fed8f7f7
UD
2960@var{aiocbp} returns @code{EINPROGRESS}. Once the synchronization is
2961done @code{aio_error} return @math{0} if the synchronization was not
a3a4a74e
UD
2962successful. Otherwise the value returned is the value to which the
2963@code{fsync} or @code{fdatasync} function would have set the
2964@code{errno} variable. In this case nothing can be assumed about the
9739d2d5 2965consistency of the data written to this file descriptor.
a3a4a74e
UD
2966
2967The return value of this function is @math{0} if the request was
19e4c7dd 2968successfully enqueued. Otherwise the return value is @math{-1} and
a3a4a74e
UD
2969@code{errno} is set to one of the following values:
2970
2971@table @code
2972@item EAGAIN
fed8f7f7 2973The request could not be enqueued due to temporary lack of resources.
a3a4a74e 2974@item EBADF
47792506 2975The file descriptor @code{@var{aiocbp}->aio_fildes} is not valid.
a3a4a74e
UD
2976@item EINVAL
2977The implementation does not support I/O synchronization or the @var{op}
2978parameter is other than @code{O_DSYNC} and @code{O_SYNC}.
2979@item ENOSYS
2980This function is not implemented.
2981@end table
2982
2983When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
37de3d55 2984function is in fact @code{aio_fsync64} since the LFS interface
a3a4a74e
UD
2985transparently replaces the normal implementation.
2986@end deftypefun
2987
a3a4a74e 2988@deftypefun int aio_fsync64 (int @var{op}, struct aiocb64 *@var{aiocbp})
d08a7e4c 2989@standards{Unix98, aio.h}
2cc3615c 2990@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
a3a4a74e
UD
2991This function is similar to @code{aio_fsync} with the only difference
2992that the argument is a reference to a variable of type @code{struct
2993aiocb64}.
2994
2995When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2996function is available under the name @code{aio_fsync} and so
04b9968b 2997transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2998machines.
2999@end deftypefun
3000
fed8f7f7 3001Another method of synchronization is to wait until one or more requests of a
a3a4a74e
UD
3002specific set terminated. This could be achieved by the @code{aio_*}
3003functions to notify the initiating process about the termination but in
3004some situations this is not the ideal solution. In a program which
3005constantly updates clients somehow connected to the server it is not
3006always the best solution to go round robin since some connections might
9739d2d5 3007be slow. On the other hand letting the @code{aio_*} functions notify the
a3a4a74e 3008caller might also be not the best solution since whenever the process
9739d2d5 3009works on preparing data for a client it makes no sense to be
a3a4a74e
UD
3010interrupted by a notification since the new client will not be handled
3011before the current client is served. For situations like this
3012@code{aio_suspend} should be used.
3013
a3a4a74e 3014@deftypefun int aio_suspend (const struct aiocb *const @var{list}[], int @var{nent}, const struct timespec *@var{timeout})
d08a7e4c 3015@standards{POSIX.1b, aio.h}
2cc3615c
AO
3016@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{}}@acunsafe{@aculock{}}}
3017@c Take aio_requests_mutex, set up waitlist and requestlist, wait
3018@c for completion or timeout, and release the mutex.
19e4c7dd 3019When calling this function, the calling thread is suspended until at
a3a4a74e 3020least one of the requests pointed to by the @var{nent} elements of the
19e4c7dd
AJ
3021array @var{list} has completed. If any of the requests has already
3022completed at the time @code{aio_suspend} is called, the function returns
3023immediately. Whether a request has terminated or not is determined by
a3a4a74e 3024comparing the error status of the request with @code{EINPROGRESS}. If
19e4c7dd 3025an element of @var{list} is @code{NULL}, the entry is simply ignored.
a3a4a74e 3026
19e4c7dd
AJ
3027If no request has finished, the calling process is suspended. If
3028@var{timeout} is @code{NULL}, the process is not woken until a request
3029has finished. If @var{timeout} is not @code{NULL}, the process remains
3030suspended at least as long as specified in @var{timeout}. In this case,
a3a4a74e
UD
3031@code{aio_suspend} returns with an error.
3032
fed8f7f7 3033The return value of the function is @math{0} if one or more requests
a3a4a74e
UD
3034from the @var{list} have terminated. Otherwise the function returns
3035@math{-1} and @code{errno} is set to one of the following values:
3036
3037@table @code
3038@item EAGAIN
3039None of the requests from the @var{list} completed in the time specified
3040by @var{timeout}.
3041@item EINTR
3042A signal interrupted the @code{aio_suspend} function. This signal might
3043also be sent by the AIO implementation while signalling the termination
3044of one of the requests.
3045@item ENOSYS
3046The @code{aio_suspend} function is not implemented.
3047@end table
3048
3049When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
3050function is in fact @code{aio_suspend64} since the LFS interface
3051transparently replaces the normal implementation.
3052@end deftypefun
3053
a3a4a74e 3054@deftypefun int aio_suspend64 (const struct aiocb64 *const @var{list}[], int @var{nent}, const struct timespec *@var{timeout})
d08a7e4c 3055@standards{Unix98, aio.h}
2cc3615c 3056@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{}}@acunsafe{@aculock{}}}
a3a4a74e
UD
3057This function is similar to @code{aio_suspend} with the only difference
3058that the argument is a reference to a variable of type @code{struct
3059aiocb64}.
3060
3061When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
3062function is available under the name @code{aio_suspend} and so
04b9968b 3063transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
3064machines.
3065@end deftypefun
b07d03e0
UD
3066
3067@node Cancel AIO Operations
04b9968b 3068@subsection Cancellation of AIO Operations
b07d03e0 3069
19e4c7dd 3070When one or more requests are asynchronously processed, it might be
a3a4a74e 3071useful in some situations to cancel a selected operation, e.g., if it
19e4c7dd
AJ
3072becomes obvious that the written data is no longer accurate and would
3073have to be overwritten soon. As an example, assume an application, which
a3a4a74e
UD
3074writes data in files in a situation where new incoming data would have
3075to be written in a file which will be updated by an enqueued request.
19e4c7dd
AJ
3076The POSIX AIO implementation provides such a function, but this function
3077is not capable of forcing the cancellation of the request. It is up to the
a3a4a74e
UD
3078implementation to decide whether it is possible to cancel the operation
3079or not. Therefore using this function is merely a hint.
3080
a3a4a74e 3081@deftypefun int aio_cancel (int @var{fildes}, struct aiocb *@var{aiocbp})
d08a7e4c 3082@standards{POSIX.1b, aio.h}
2cc3615c
AO
3083@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
3084@c After fcntl to check the fd is open, hold aio_requests_mutex, call
3085@c aio_find_req_fd, aio_remove_request, then aio_notify and
3086@c aio_free_request each request before releasing the lock.
3087@c aio_notify calls aio_notify_only and free, besides cond signal or
3088@c similar. aio_notify_only calls pthread_attr_init,
3089@c pthread_attr_setdetachstate, malloc, pthread_create,
3090@c notify_func_wrapper, aio_sigqueue, getpid, raise.
3091@c notify_func_wraper calls aio_start_notify_thread, free and then the
3092@c notifier function.
a3a4a74e 3093The @code{aio_cancel} function can be used to cancel one or more
19e4c7dd
AJ
3094outstanding requests. If the @var{aiocbp} parameter is @code{NULL}, the
3095function tries to cancel all of the outstanding requests which would process
3096the file descriptor @var{fildes} (i.e., whose @code{aio_fildes} member
3097is @var{fildes}). If @var{aiocbp} is not @code{NULL}, @code{aio_cancel}
3098attempts to cancel the specific request pointed to by @var{aiocbp}.
a3a4a74e 3099
19e4c7dd 3100For requests which were successfully canceled, the normal notification
a3a4a74e
UD
3101about the termination of the request should take place. I.e., depending
3102on the @code{struct sigevent} object which controls this, nothing
3103happens, a signal is sent or a thread is started. If the request cannot
19e4c7dd 3104be canceled, it terminates the usual way after performing the operation.
a3a4a74e 3105
19e4c7dd 3106After a request is successfully canceled, a call to @code{aio_error} with
a3a4a74e
UD
3107a reference to this request as the parameter will return
3108@code{ECANCELED} and a call to @code{aio_return} will return @math{-1}.
19e4c7dd 3109If the request wasn't canceled and is still running the error status is
a3a4a74e
UD
3110still @code{EINPROGRESS}.
3111
3112The return value of the function is @code{AIO_CANCELED} if there were
19e4c7dd
AJ
3113requests which haven't terminated and which were successfully canceled.
3114If there is one or more requests left which couldn't be canceled, the
a3a4a74e 3115return value is @code{AIO_NOTCANCELED}. In this case @code{aio_error}
9739d2d5 3116must be used to find out which of the, perhaps multiple, requests (if
19e4c7dd 3117@var{aiocbp} is @code{NULL}) weren't successfully canceled. If all
a3a4a74e
UD
3118requests already terminated at the time @code{aio_cancel} is called the
3119return value is @code{AIO_ALLDONE}.
3120
3121If an error occurred during the execution of @code{aio_cancel} the
3122function returns @math{-1} and sets @code{errno} to one of the following
3123values.
3124
3125@table @code
3126@item EBADF
3127The file descriptor @var{fildes} is not valid.
3128@item ENOSYS
3129@code{aio_cancel} is not implemented.
3130@end table
3131
19e4c7dd 3132When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e
UD
3133function is in fact @code{aio_cancel64} since the LFS interface
3134transparently replaces the normal implementation.
3135@end deftypefun
3136
19e4c7dd 3137@deftypefun int aio_cancel64 (int @var{fildes}, struct aiocb64 *@var{aiocbp})
d08a7e4c 3138@standards{Unix98, aio.h}
2cc3615c 3139@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{}}}
a3a4a74e
UD
3140This function is similar to @code{aio_cancel} with the only difference
3141that the argument is a reference to a variable of type @code{struct
3142aiocb64}.
3143
19e4c7dd 3144When the sources are compiled with @code{_FILE_OFFSET_BITS == 64}, this
a3a4a74e 3145function is available under the name @code{aio_cancel} and so
04b9968b 3146transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
3147machines.
3148@end deftypefun
3149
3150@node Configuration of AIO
3151@subsection How to optimize the AIO implementation
3152
3153The POSIX standard does not specify how the AIO functions are
19e4c7dd 3154implemented. They could be system calls, but it is also possible to
a3a4a74e
UD
3155emulate them at userlevel.
3156
9739d2d5 3157At the time of writing, the available implementation is a user-level
19e4c7dd
AJ
3158implementation which uses threads for handling the enqueued requests.
3159While this implementation requires making some decisions about
9739d2d5 3160limitations, hard limitations are something best avoided
1f77f049 3161in @theglibc{}. Therefore, @theglibc{} provides a means
19e4c7dd 3162for tuning the AIO implementation according to the individual use.
a3a4a74e 3163
a3a4a74e 3164@deftp {Data Type} {struct aioinit}
d08a7e4c 3165@standards{GNU, aio.h}
a3a4a74e
UD
3166This data type is used to pass the configuration or tunable parameters
3167to the implementation. The program has to initialize the members of
3168this struct and pass it to the implementation using the @code{aio_init}
3169function.
3170
3171@table @code
3172@item int aio_threads
19e4c7dd 3173This member specifies the maximal number of threads which may be used
a3a4a74e
UD
3174at any one time.
3175@item int aio_num
c756c71c 3176This number provides an estimate on the maximal number of simultaneously
a3a4a74e
UD
3177enqueued requests.
3178@item int aio_locks
19e4c7dd 3179Unused.
a3a4a74e 3180@item int aio_usedba
19e4c7dd 3181Unused.
a3a4a74e 3182@item int aio_debug
19e4c7dd 3183Unused.
a3a4a74e 3184@item int aio_numusers
19e4c7dd 3185Unused.
a3a4a74e 3186@item int aio_reserved[2]
19e4c7dd 3187Unused.
a3a4a74e
UD
3188@end table
3189@end deftp
3190
a3a4a74e 3191@deftypefun void aio_init (const struct aioinit *@var{init})
d08a7e4c 3192@standards{GNU, aio.h}
2cc3615c
AO
3193@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{}}@acunsafe{@aculock{}}}
3194@c All changes to global objects are guarded by aio_requests_mutex.
a3a4a74e 3195This function must be called before any other AIO function. Calling it
19e4c7dd
AJ
3196is completely voluntary, as it is only meant to help the AIO
3197implementation perform better.
a3a4a74e 3198
9739d2d5 3199Before calling @code{aio_init}, the members of a variable of
a3a4a74e
UD
3200type @code{struct aioinit} must be initialized. Then a reference to
3201this variable is passed as the parameter to @code{aio_init} which itself
3202may or may not pay attention to the hints.
3203
c756c71c 3204The function has no return value and no error cases are defined. It is
9739d2d5 3205an extension which follows a proposal from the SGI implementation in
c756c71c 3206@w{Irix 6}. It is not covered by POSIX.1b or Unix98.
a3a4a74e 3207@end deftypefun
b07d03e0 3208
28f540f4
RM
3209@node Control Operations
3210@section Control Operations on Files
3211
3212@cindex control operations on files
3213@cindex @code{fcntl} function
3214This section describes how you can perform various other operations on
3215file descriptors, such as inquiring about or setting flags describing
3216the status of the file descriptor, manipulating record locks, and the
3217like. All of these operations are performed by the function @code{fcntl}.
3218
3219The second argument to the @code{fcntl} function is a command that
3220specifies which operation to perform. The function and macros that name
3221various flags that are used with it are declared in the header file
3222@file{fcntl.h}. Many of these flags are also used by the @code{open}
3223function; see @ref{Opening and Closing Files}.
3224@pindex fcntl.h
3225
28f540f4 3226@deftypefun int fcntl (int @var{filedes}, int @var{command}, @dots{})
d08a7e4c 3227@standards{POSIX.1, fcntl.h}
2cc3615c 3228@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
3229The @code{fcntl} function performs the operation specified by
3230@var{command} on the file descriptor @var{filedes}. Some commands
3231require additional arguments to be supplied. These additional arguments
3232and the return value and error conditions are given in the detailed
3233descriptions of the individual commands.
3234
3235Briefly, here is a list of what the various commands are.
3236
2fe82ca6 3237@vtable @code
28f540f4
RM
3238@item F_DUPFD
3239Duplicate the file descriptor (return another file descriptor pointing
3240to the same open file). @xref{Duplicating Descriptors}.
3241
3242@item F_GETFD
3243Get flags associated with the file descriptor. @xref{Descriptor Flags}.
3244
3245@item F_SETFD
3246Set flags associated with the file descriptor. @xref{Descriptor Flags}.
3247
3248@item F_GETFL
3249Get flags associated with the open file. @xref{File Status Flags}.
3250
3251@item F_SETFL
3252Set flags associated with the open file. @xref{File Status Flags}.
3253
3254@item F_GETLK
0961f7e1 3255Test a file lock. @xref{File Locks}.
28f540f4
RM
3256
3257@item F_SETLK
3258Set or clear a file lock. @xref{File Locks}.
3259
3260@item F_SETLKW
3261Like @code{F_SETLK}, but wait for completion. @xref{File Locks}.
3262
0961f7e1
JL
3263@item F_OFD_GETLK
3264Test an open file description lock. @xref{Open File Description Locks}.
3265Specific to Linux.
3266
3267@item F_OFD_SETLK
3268Set or clear an open file description lock. @xref{Open File Description Locks}.
3269Specific to Linux.
3270
3271@item F_OFD_SETLKW
3272Like @code{F_OFD_SETLK}, but block until lock is acquired.
3273@xref{Open File Description Locks}. Specific to Linux.
3274
28f540f4
RM
3275@item F_GETOWN
3276Get process or process group ID to receive @code{SIGIO} signals.
3277@xref{Interrupt Input}.
3278
3279@item F_SETOWN
3280Set process or process group ID to receive @code{SIGIO} signals.
3281@xref{Interrupt Input}.
2fe82ca6 3282@end vtable
dfd2257a 3283
06ab719d
AZ
3284This function is a cancellation point in multi-threaded programs for the
3285commands @code{F_SETLKW} (and the LFS analogous @code{F_SETLKW64}) and
0b11b649 3286@code{F_OFD_SETLKW}. This is a problem if the thread allocates some
06ab719d
AZ
3287resources (like memory, file descriptors, semaphores or whatever) at the time
3288@code{fcntl} is called. If the thread gets canceled these resources stay
3289allocated until the program ends. To avoid this calls to @code{fcntl} should
3290be protected using cancellation handlers.
dfd2257a 3291@c ref pthread_cleanup_push / pthread_cleanup_pop
28f540f4
RM
3292@end deftypefun
3293
3294
3295@node Duplicating Descriptors
3296@section Duplicating Descriptors
3297
3298@cindex duplicating file descriptors
3299@cindex redirecting input and output
3300
3301You can @dfn{duplicate} a file descriptor, or allocate another file
3302descriptor that refers to the same open file as the original. Duplicate
3303descriptors share one file position and one set of file status flags
3304(@pxref{File Status Flags}), but each has its own set of file descriptor
3305flags (@pxref{Descriptor Flags}).
3306
3307The major use of duplicating a file descriptor is to implement
3308@dfn{redirection} of input or output: that is, to change the
3309file or pipe that a particular file descriptor corresponds to.
3310
3311You can perform this operation using the @code{fcntl} function with the
3312@code{F_DUPFD} command, but there are also convenient functions
3313@code{dup} and @code{dup2} for duplicating descriptors.
3314
3315@pindex unistd.h
3316@pindex fcntl.h
3317The @code{fcntl} function and flags are declared in @file{fcntl.h},
3318while prototypes for @code{dup} and @code{dup2} are in the header file
3319@file{unistd.h}.
3320
28f540f4 3321@deftypefun int dup (int @var{old})
d08a7e4c 3322@standards{POSIX.1, unistd.h}
2cc3615c 3323@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
3324This function copies descriptor @var{old} to the first available
3325descriptor number (the first number not currently open). It is
3326equivalent to @code{fcntl (@var{old}, F_DUPFD, 0)}.
3327@end deftypefun
3328
28f540f4 3329@deftypefun int dup2 (int @var{old}, int @var{new})
d08a7e4c 3330@standards{POSIX.1, unistd.h}
2cc3615c 3331@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
3332This function copies the descriptor @var{old} to descriptor number
3333@var{new}.
3334
3335If @var{old} is an invalid descriptor, then @code{dup2} does nothing; it
3336does not close @var{new}. Otherwise, the new duplicate of @var{old}
3337replaces any previous meaning of descriptor @var{new}, as if @var{new}
3338were closed first.
3339
3340If @var{old} and @var{new} are different numbers, and @var{old} is a
3341valid descriptor number, then @code{dup2} is equivalent to:
3342
3343@smallexample
3344close (@var{new});
3345fcntl (@var{old}, F_DUPFD, @var{new})
3346@end smallexample
3347
3348However, @code{dup2} does this atomically; there is no instant in the
3349middle of calling @code{dup2} at which @var{new} is closed and not yet a
3350duplicate of @var{old}.
3351@end deftypefun
3352
28f540f4 3353@deftypevr Macro int F_DUPFD
d08a7e4c 3354@standards{POSIX.1, fcntl.h}
28f540f4
RM
3355This macro is used as the @var{command} argument to @code{fcntl}, to
3356copy the file descriptor given as the first argument.
3357
3358The form of the call in this case is:
3359
3360@smallexample
3361fcntl (@var{old}, F_DUPFD, @var{next-filedes})
3362@end smallexample
3363
3364The @var{next-filedes} argument is of type @code{int} and specifies that
3365the file descriptor returned should be the next available one greater
3366than or equal to this value.
3367
3368The return value from @code{fcntl} with this command is normally the value
07435eb4 3369of the new file descriptor. A return value of @math{-1} indicates an
28f540f4
RM
3370error. The following @code{errno} error conditions are defined for
3371this command:
3372
3373@table @code
3374@item EBADF
3375The @var{old} argument is invalid.
3376
3377@item EINVAL
3378The @var{next-filedes} argument is invalid.
3379
3380@item EMFILE
3381There are no more file descriptors available---your program is already
3382using the maximum. In BSD and GNU, the maximum is controlled by a
3383resource limit that can be changed; @pxref{Limits on Resources}, for
3384more information about the @code{RLIMIT_NOFILE} limit.
3385@end table
3386
3387@code{ENFILE} is not a possible error code for @code{dup2} because
3388@code{dup2} does not create a new opening of a file; duplicate
3389descriptors do not count toward the limit which @code{ENFILE}
3390indicates. @code{EMFILE} is possible because it refers to the limit on
3391distinct descriptor numbers in use in one process.
3392@end deftypevr
3393
3394Here is an example showing how to use @code{dup2} to do redirection.
3395Typically, redirection of the standard streams (like @code{stdin}) is
3396done by a shell or shell-like program before calling one of the
3397@code{exec} functions (@pxref{Executing a File}) to execute a new
3398program in a child process. When the new program is executed, it
3399creates and initializes the standard streams to point to the
3400corresponding file descriptors, before its @code{main} function is
3401invoked.
3402
3403So, to redirect standard input to a file, the shell could do something
3404like:
3405
3406@smallexample
3407pid = fork ();
3408if (pid == 0)
3409 @{
3410 char *filename;
3411 char *program;
3412 int file;
3413 @dots{}
3414 file = TEMP_FAILURE_RETRY (open (filename, O_RDONLY));
3415 dup2 (file, STDIN_FILENO);
3416 TEMP_FAILURE_RETRY (close (file));
3417 execv (program, NULL);
3418 @}
3419@end smallexample
3420
3421There is also a more detailed example showing how to implement redirection
3422in the context of a pipeline of processes in @ref{Launching Jobs}.
3423
3424
3425@node Descriptor Flags
3426@section File Descriptor Flags
3427@cindex file descriptor flags
3428
3429@dfn{File descriptor flags} are miscellaneous attributes of a file
3430descriptor. These flags are associated with particular file
3431descriptors, so that if you have created duplicate file descriptors
3432from a single opening of a file, each descriptor has its own set of flags.
3433
3434Currently there is just one file descriptor flag: @code{FD_CLOEXEC},
3435which causes the descriptor to be closed if you use any of the
3436@code{exec@dots{}} functions (@pxref{Executing a File}).
3437
3438The symbols in this section are defined in the header file
3439@file{fcntl.h}.
3440@pindex fcntl.h
3441
28f540f4 3442@deftypevr Macro int F_GETFD
d08a7e4c 3443@standards{POSIX.1, fcntl.h}
28f540f4
RM
3444This macro is used as the @var{command} argument to @code{fcntl}, to
3445specify that it should return the file descriptor flags associated
2c6fe0bd 3446with the @var{filedes} argument.
28f540f4
RM
3447
3448The normal return value from @code{fcntl} with this command is a
3449nonnegative number which can be interpreted as the bitwise OR of the
3450individual flags (except that currently there is only one flag to use).
3451
07435eb4 3452In case of an error, @code{fcntl} returns @math{-1}. The following
28f540f4
RM
3453@code{errno} error conditions are defined for this command:
3454
3455@table @code
3456@item EBADF
3457The @var{filedes} argument is invalid.
3458@end table
3459@end deftypevr
3460
3461
28f540f4 3462@deftypevr Macro int F_SETFD
d08a7e4c 3463@standards{POSIX.1, fcntl.h}
28f540f4
RM
3464This macro is used as the @var{command} argument to @code{fcntl}, to
3465specify that it should set the file descriptor flags associated with the
3466@var{filedes} argument. This requires a third @code{int} argument to
3467specify the new flags, so the form of the call is:
3468
3469@smallexample
3470fcntl (@var{filedes}, F_SETFD, @var{new-flags})
3471@end smallexample
3472
3473The normal return value from @code{fcntl} with this command is an
07435eb4 3474unspecified value other than @math{-1}, which indicates an error.
28f540f4
RM
3475The flags and error conditions are the same as for the @code{F_GETFD}
3476command.
3477@end deftypevr
3478
3479The following macro is defined for use as a file descriptor flag with
3480the @code{fcntl} function. The value is an integer constant usable
3481as a bit mask value.
3482
28f540f4 3483@deftypevr Macro int FD_CLOEXEC
d08a7e4c 3484@standards{POSIX.1, fcntl.h}
28f540f4
RM
3485@cindex close-on-exec (file descriptor flag)
3486This flag specifies that the file descriptor should be closed when
3487an @code{exec} function is invoked; see @ref{Executing a File}. When
3488a file descriptor is allocated (as with @code{open} or @code{dup}),
3489this bit is initially cleared on the new file descriptor, meaning that
3490descriptor will survive into the new program after @code{exec}.
3491@end deftypevr
3492
3493If you want to modify the file descriptor flags, you should get the
3494current flags with @code{F_GETFD} and modify the value. Don't assume
3495that the flags listed here are the only ones that are implemented; your
3496program may be run years from now and more flags may exist then. For
3497example, here is a function to set or clear the flag @code{FD_CLOEXEC}
3498without altering any other flags:
3499
3500@smallexample
3501/* @r{Set the @code{FD_CLOEXEC} flag of @var{desc} if @var{value} is nonzero,}
3502 @r{or clear the flag if @var{value} is 0.}
2c6fe0bd 3503 @r{Return 0 on success, or -1 on error with @code{errno} set.} */
28f540f4
RM
3504
3505int
3506set_cloexec_flag (int desc, int value)
3507@{
3508 int oldflags = fcntl (desc, F_GETFD, 0);
8e96ae1a 3509 /* @r{If reading the flags failed, return error indication now.} */
28f540f4
RM
3510 if (oldflags < 0)
3511 return oldflags;
3512 /* @r{Set just the flag we want to set.} */
3513 if (value != 0)
3514 oldflags |= FD_CLOEXEC;
3515 else
3516 oldflags &= ~FD_CLOEXEC;
3517 /* @r{Store modified flag word in the descriptor.} */
3518 return fcntl (desc, F_SETFD, oldflags);
3519@}
3520@end smallexample
3521
3522@node File Status Flags
3523@section File Status Flags
3524@cindex file status flags
3525
3526@dfn{File status flags} are used to specify attributes of the opening of a
3527file. Unlike the file descriptor flags discussed in @ref{Descriptor
3528Flags}, the file status flags are shared by duplicated file descriptors
3529resulting from a single opening of the file. The file status flags are
3530specified with the @var{flags} argument to @code{open};
3531@pxref{Opening and Closing Files}.
3532
3533File status flags fall into three categories, which are described in the
3534following sections.
3535
3536@itemize @bullet
3537@item
3538@ref{Access Modes}, specify what type of access is allowed to the
3539file: reading, writing, or both. They are set by @code{open} and are
3540returned by @code{fcntl}, but cannot be changed.
3541
3542@item
3543@ref{Open-time Flags}, control details of what @code{open} will do.
3544These flags are not preserved after the @code{open} call.
3545
3546@item
3547@ref{Operating Modes}, affect how operations such as @code{read} and
3548@code{write} are done. They are set by @code{open}, and can be fetched or
3549changed with @code{fcntl}.
3550@end itemize
3551
3552The symbols in this section are defined in the header file
3553@file{fcntl.h}.
3554@pindex fcntl.h
3555
3556@menu
3557* Access Modes:: Whether the descriptor can read or write.
3558* Open-time Flags:: Details of @code{open}.
3559* Operating Modes:: Special modes to control I/O operations.
3560* Getting File Status Flags:: Fetching and changing these flags.
3561@end menu
3562
3563@node Access Modes
3564@subsection File Access Modes
3565
3566The file access modes allow a file descriptor to be used for reading,
a7a93d50 3567writing, or both. (On @gnuhurdsystems{}, they can also allow none of these,
28f540f4
RM
3568and allow execution of the file as a program.) The access modes are chosen
3569when the file is opened, and never change.
3570
28f540f4 3571@deftypevr Macro int O_RDONLY
d08a7e4c 3572@standards{POSIX.1, fcntl.h}
28f540f4
RM
3573Open the file for read access.
3574@end deftypevr
3575
28f540f4 3576@deftypevr Macro int O_WRONLY
d08a7e4c 3577@standards{POSIX.1, fcntl.h}
28f540f4
RM
3578Open the file for write access.
3579@end deftypevr
3580
28f540f4 3581@deftypevr Macro int O_RDWR
d08a7e4c 3582@standards{POSIX.1, fcntl.h}
28f540f4
RM
3583Open the file for both reading and writing.
3584@end deftypevr
3585
a7a93d50 3586On @gnuhurdsystems{} (and not on other systems), @code{O_RDONLY} and
28f540f4
RM
3587@code{O_WRONLY} are independent bits that can be bitwise-ORed together,
3588and it is valid for either bit to be set or clear. This means that
3589@code{O_RDWR} is the same as @code{O_RDONLY|O_WRONLY}. A file access
3590mode of zero is permissible; it allows no operations that do input or
3591output to the file, but does allow other operations such as
a7a93d50 3592@code{fchmod}. On @gnuhurdsystems{}, since ``read-only'' or ``write-only''
28f540f4
RM
3593is a misnomer, @file{fcntl.h} defines additional names for the file
3594access modes. These names are preferred when writing GNU-specific code.
3595But most programs will want to be portable to other POSIX.1 systems and
3596should use the POSIX.1 names above instead.
3597
28f540f4 3598@deftypevr Macro int O_READ
d08a7e4c 3599@standards{GNU, fcntl.h (optional)}
c2835376 3600Open the file for reading. Same as @code{O_RDONLY}; only defined on GNU.
28f540f4
RM
3601@end deftypevr
3602
28f540f4 3603@deftypevr Macro int O_WRITE
d08a7e4c 3604@standards{GNU, fcntl.h (optional)}
c2835376 3605Open the file for writing. Same as @code{O_WRONLY}; only defined on GNU.
28f540f4
RM
3606@end deftypevr
3607
28f540f4 3608@deftypevr Macro int O_EXEC
d08a7e4c 3609@standards{GNU, fcntl.h (optional)}
28f540f4
RM
3610Open the file for executing. Only defined on GNU.
3611@end deftypevr
3612
3613To determine the file access mode with @code{fcntl}, you must extract
a7a93d50
JM
3614the access mode bits from the retrieved file status flags. On
3615@gnuhurdsystems{},
3616you can just test the @code{O_READ} and @code{O_WRITE} bits in
28f540f4
RM
3617the flags word. But in other POSIX.1 systems, reading and writing
3618access modes are not stored as distinct bit flags. The portable way to
3619extract the file access mode bits is with @code{O_ACCMODE}.
3620
28f540f4 3621@deftypevr Macro int O_ACCMODE
d08a7e4c 3622@standards{POSIX.1, fcntl.h}
28f540f4
RM
3623This macro stands for a mask that can be bitwise-ANDed with the file
3624status flag value to produce a value representing the file access mode.
3625The mode will be @code{O_RDONLY}, @code{O_WRONLY}, or @code{O_RDWR}.
a7a93d50 3626(On @gnuhurdsystems{} it could also be zero, and it never includes the
28f540f4
RM
3627@code{O_EXEC} bit.)
3628@end deftypevr
3629
3630@node Open-time Flags
3631@subsection Open-time Flags
3632
3633The open-time flags specify options affecting how @code{open} will behave.
3634These options are not preserved once the file is open. The exception to
3635this is @code{O_NONBLOCK}, which is also an I/O operating mode and so it
3636@emph{is} saved. @xref{Opening and Closing Files}, for how to call
3637@code{open}.
3638
3639There are two sorts of options specified by open-time flags.
3640
3641@itemize @bullet
3642@item
3643@dfn{File name translation flags} affect how @code{open} looks up the
3644file name to locate the file, and whether the file can be created.
3645@cindex file name translation flags
3646@cindex flags, file name translation
3647
3648@item
3649@dfn{Open-time action flags} specify extra operations that @code{open} will
3650perform on the file once it is open.
3651@cindex open-time action flags
3652@cindex flags, open-time action
3653@end itemize
3654
3655Here are the file name translation flags.
3656
28f540f4 3657@deftypevr Macro int O_CREAT
d08a7e4c 3658@standards{POSIX.1, fcntl.h}
28f540f4
RM
3659If set, the file will be created if it doesn't already exist.
3660@c !!! mode arg, umask
3661@cindex create on open (file status flag)
3662@end deftypevr
3663
28f540f4 3664@deftypevr Macro int O_EXCL
d08a7e4c 3665@standards{POSIX.1, fcntl.h}
28f540f4
RM
3666If both @code{O_CREAT} and @code{O_EXCL} are set, then @code{open} fails
3667if the specified file already exists. This is guaranteed to never
3668clobber an existing file.
b9af29c0
FW
3669
3670The @code{O_EXCL} flag has a special meaning in combination with
3671@code{O_TMPFILE}; see below.
3672@end deftypevr
3673
3674@deftypevr Macro int O_TMPFILE
3675@standards{GNU, fcntl.h}
3676If this flag is specified, functions in the @code{open} family create an
3677unnamed temporary file. In this case, the pathname argument to the
3678@code{open} family of functions (@pxref{Opening and Closing Files}) is
3679interpreted as the directory in which the temporary file is created
3680(thus determining the file system which provides the storage for the
3681file). The @code{O_TMPFILE} flag must be combined with @code{O_WRONLY}
3682or @code{O_RDWR}, and the @var{mode} argument is required.
3683
3684The temporary file can later be given a name using @code{linkat},
3685turning it into a regular file. This allows the atomic creation of a
3686file with the specific file attributes (mode and extended attributes)
3687and file contents. If, for security reasons, it is not desirable that a
3688name can be given to the file, the @code{O_EXCL} flag can be specified
3689along with @code{O_TMPFILE}.
3690
3691Not all kernels support this open flag. If this flag is unsupported, an
3692attempt to create an unnamed temporary file fails with an error of
3693@code{EINVAL}. If the underlying file system does not support the
3694@code{O_TMPFILE} flag, an @code{EOPNOTSUPP} error is the result.
3695
3696The @code{O_TMPFILE} flag is a GNU extension.
28f540f4
RM
3697@end deftypevr
3698
28f540f4 3699@deftypevr Macro int O_NONBLOCK
d08a7e4c 3700@standards{POSIX.1, fcntl.h}
28f540f4
RM
3701@cindex non-blocking open
3702This prevents @code{open} from blocking for a ``long time'' to open the
3703file. This is only meaningful for some kinds of files, usually devices
3704such as serial ports; when it is not meaningful, it is harmless and
9739d2d5 3705ignored. Often, opening a port to a modem blocks until the modem reports
28f540f4
RM
3706carrier detection; if @code{O_NONBLOCK} is specified, @code{open} will
3707return immediately without a carrier.
3708
3709Note that the @code{O_NONBLOCK} flag is overloaded as both an I/O operating
3710mode and a file name translation flag. This means that specifying
3711@code{O_NONBLOCK} in @code{open} also sets nonblocking I/O mode;
3712@pxref{Operating Modes}. To open the file without blocking but do normal
3713I/O that blocks, you must call @code{open} with @code{O_NONBLOCK} set and
3714then call @code{fcntl} to turn the bit off.
3715@end deftypevr
3716
28f540f4 3717@deftypevr Macro int O_NOCTTY
d08a7e4c 3718@standards{POSIX.1, fcntl.h}
28f540f4
RM
3719If the named file is a terminal device, don't make it the controlling
3720terminal for the process. @xref{Job Control}, for information about
3721what it means to be the controlling terminal.
3722
a7a93d50
JM
3723On @gnuhurdsystems{} and 4.4 BSD, opening a file never makes it the
3724controlling terminal and @code{O_NOCTTY} is zero. However, @gnulinuxsystems{}
3725and some other systems use a nonzero value for @code{O_NOCTTY} and set the
28f540f4
RM
3726controlling terminal when you open a file that is a terminal device; so
3727to be portable, use @code{O_NOCTTY} when it is important to avoid this.
3728@cindex controlling terminal, setting
3729@end deftypevr
3730
a7a93d50
JM
3731The following three file name translation flags exist only on
3732@gnuhurdsystems{}.
28f540f4 3733
28f540f4 3734@deftypevr Macro int O_IGNORE_CTTY
d08a7e4c 3735@standards{GNU, fcntl.h (optional)}
28f540f4
RM
3736Do not recognize the named file as the controlling terminal, even if it
3737refers to the process's existing controlling terminal device. Operations
3738on the new file descriptor will never induce job control signals.
3739@xref{Job Control}.
3740@end deftypevr
3741
28f540f4 3742@deftypevr Macro int O_NOLINK
d08a7e4c 3743@standards{GNU, fcntl.h (optional)}
28f540f4
RM
3744If the named file is a symbolic link, open the link itself instead of
3745the file it refers to. (@code{fstat} on the new file descriptor will
3746return the information returned by @code{lstat} on the link's name.)
3747@cindex symbolic link, opening
3748@end deftypevr
3749
28f540f4 3750@deftypevr Macro int O_NOTRANS
d08a7e4c 3751@standards{GNU, fcntl.h (optional)}
28f540f4
RM
3752If the named file is specially translated, do not invoke the translator.
3753Open the bare file the translator itself sees.
3754@end deftypevr
3755
3756
3757The open-time action flags tell @code{open} to do additional operations
3758which are not really related to opening the file. The reason to do them
3759as part of @code{open} instead of in separate calls is that @code{open}
3760can do them @i{atomically}.
3761
28f540f4 3762@deftypevr Macro int O_TRUNC
d08a7e4c 3763@standards{POSIX.1, fcntl.h}
28f540f4
RM
3764Truncate the file to zero length. This option is only useful for
3765regular files, not special files such as directories or FIFOs. POSIX.1
3766requires that you open the file for writing to use @code{O_TRUNC}. In
3767BSD and GNU you must have permission to write the file to truncate it,
3768but you need not open for write access.
3769
3770This is the only open-time action flag specified by POSIX.1. There is
3771no good reason for truncation to be done by @code{open}, instead of by
3772calling @code{ftruncate} afterwards. The @code{O_TRUNC} flag existed in
3773Unix before @code{ftruncate} was invented, and is retained for backward
3774compatibility.
3775@end deftypevr
3776
27e309c1
UD
3777The remaining operating modes are BSD extensions. They exist only
3778on some systems. On other systems, these macros are not defined.
3779
28f540f4 3780@deftypevr Macro int O_SHLOCK
d08a7e4c 3781@standards{BSD, fcntl.h (optional)}
28f540f4
RM
3782Acquire a shared lock on the file, as with @code{flock}.
3783@xref{File Locks}.
3784
3785If @code{O_CREAT} is specified, the locking is done atomically when
3786creating the file. You are guaranteed that no other process will get
3787the lock on the new file first.
3788@end deftypevr
3789
28f540f4 3790@deftypevr Macro int O_EXLOCK
d08a7e4c 3791@standards{BSD, fcntl.h (optional)}
28f540f4
RM
3792Acquire an exclusive lock on the file, as with @code{flock}.
3793@xref{File Locks}. This is atomic like @code{O_SHLOCK}.
3794@end deftypevr
3795
3796@node Operating Modes
3797@subsection I/O Operating Modes
3798
3799The operating modes affect how input and output operations using a file
3800descriptor work. These flags are set by @code{open} and can be fetched
3801and changed with @code{fcntl}.
3802
28f540f4 3803@deftypevr Macro int O_APPEND
d08a7e4c 3804@standards{POSIX.1, fcntl.h}
28f540f4
RM
3805The bit that enables append mode for the file. If set, then all
3806@code{write} operations write the data at the end of the file, extending
3807it, regardless of the current file position. This is the only reliable
3808way to append to a file. In append mode, you are guaranteed that the
3809data you write will always go to the current end of the file, regardless
3810of other processes writing to the file. Conversely, if you simply set
3811the file position to the end of file and write, then another process can
3812extend the file after you set the file position but before you write,
3813resulting in your data appearing someplace before the real end of file.
3814@end deftypevr
3815
2c6fe0bd 3816@deftypevr Macro int O_NONBLOCK
d08a7e4c 3817@standards{POSIX.1, fcntl.h}
28f540f4
RM
3818The bit that enables nonblocking mode for the file. If this bit is set,
3819@code{read} requests on the file can return immediately with a failure
3820status if there is no input immediately available, instead of blocking.
3821Likewise, @code{write} requests can also return immediately with a
3822failure status if the output can't be written immediately.
3823
3824Note that the @code{O_NONBLOCK} flag is overloaded as both an I/O
3825operating mode and a file name translation flag; @pxref{Open-time Flags}.
3826@end deftypevr
3827
28f540f4 3828@deftypevr Macro int O_NDELAY
d08a7e4c 3829@standards{BSD, fcntl.h}
28f540f4
RM
3830This is an obsolete name for @code{O_NONBLOCK}, provided for
3831compatibility with BSD. It is not defined by the POSIX.1 standard.
3832@end deftypevr
3833
3834The remaining operating modes are BSD and GNU extensions. They exist only
3835on some systems. On other systems, these macros are not defined.
3836
28f540f4 3837@deftypevr Macro int O_ASYNC
d08a7e4c 3838@standards{BSD, fcntl.h}
28f540f4
RM
3839The bit that enables asynchronous input mode. If set, then @code{SIGIO}
3840signals will be generated when input is available. @xref{Interrupt Input}.
3841
3842Asynchronous input mode is a BSD feature.
3843@end deftypevr
3844
28f540f4 3845@deftypevr Macro int O_FSYNC
d08a7e4c 3846@standards{BSD, fcntl.h}
28f540f4
RM
3847The bit that enables synchronous writing for the file. If set, each
3848@code{write} call will make sure the data is reliably stored on disk before
3849returning. @c !!! xref fsync
3850
3851Synchronous writing is a BSD feature.
3852@end deftypevr
3853
28f540f4 3854@deftypevr Macro int O_SYNC
d08a7e4c 3855@standards{BSD, fcntl.h}
28f540f4
RM
3856This is another name for @code{O_FSYNC}. They have the same value.
3857@end deftypevr
3858
28f540f4 3859@deftypevr Macro int O_NOATIME
d08a7e4c 3860@standards{GNU, fcntl.h}
28f540f4
RM
3861If this bit is set, @code{read} will not update the access time of the
3862file. @xref{File Times}. This is used by programs that do backups, so
3863that backing a file up does not count as reading it.
3864Only the owner of the file or the superuser may use this bit.
3865
3866This is a GNU extension.
3867@end deftypevr
3868
3869@node Getting File Status Flags
3870@subsection Getting and Setting File Status Flags
3871
3872The @code{fcntl} function can fetch or change file status flags.
3873
28f540f4 3874@deftypevr Macro int F_GETFL
d08a7e4c 3875@standards{POSIX.1, fcntl.h}
28f540f4
RM
3876This macro is used as the @var{command} argument to @code{fcntl}, to
3877read the file status flags for the open file with descriptor
3878@var{filedes}.
3879
3880The normal return value from @code{fcntl} with this command is a
3881nonnegative number which can be interpreted as the bitwise OR of the
3882individual flags. Since the file access modes are not single-bit values,
3883you can mask off other bits in the returned flags with @code{O_ACCMODE}
3884to compare them.
3885
07435eb4 3886In case of an error, @code{fcntl} returns @math{-1}. The following
28f540f4
RM
3887@code{errno} error conditions are defined for this command:
3888
3889@table @code
3890@item EBADF
3891The @var{filedes} argument is invalid.
3892@end table
3893@end deftypevr
3894
28f540f4 3895@deftypevr Macro int F_SETFL
d08a7e4c 3896@standards{POSIX.1, fcntl.h}
28f540f4
RM
3897This macro is used as the @var{command} argument to @code{fcntl}, to set
3898the file status flags for the open file corresponding to the
3899@var{filedes} argument. This command requires a third @code{int}
3900argument to specify the new flags, so the call looks like this:
3901
3902@smallexample
3903fcntl (@var{filedes}, F_SETFL, @var{new-flags})
3904@end smallexample
3905
3906You can't change the access mode for the file in this way; that is,
3907whether the file descriptor was opened for reading or writing.
3908
3909The normal return value from @code{fcntl} with this command is an
07435eb4 3910unspecified value other than @math{-1}, which indicates an error. The
28f540f4
RM
3911error conditions are the same as for the @code{F_GETFL} command.
3912@end deftypevr
3913
3914If you want to modify the file status flags, you should get the current
3915flags with @code{F_GETFL} and modify the value. Don't assume that the
3916flags listed here are the only ones that are implemented; your program
3917may be run years from now and more flags may exist then. For example,
3918here is a function to set or clear the flag @code{O_NONBLOCK} without
3919altering any other flags:
3920
3921@smallexample
3922@group
3923/* @r{Set the @code{O_NONBLOCK} flag of @var{desc} if @var{value} is nonzero,}
3924 @r{or clear the flag if @var{value} is 0.}
2c6fe0bd 3925 @r{Return 0 on success, or -1 on error with @code{errno} set.} */
28f540f4
RM
3926
3927int
3928set_nonblock_flag (int desc, int value)
3929@{
3930 int oldflags = fcntl (desc, F_GETFL, 0);
3931 /* @r{If reading the flags failed, return error indication now.} */
3932 if (oldflags == -1)
3933 return -1;
3934 /* @r{Set just the flag we want to set.} */
3935 if (value != 0)
3936 oldflags |= O_NONBLOCK;
3937 else
3938 oldflags &= ~O_NONBLOCK;
3939 /* @r{Store modified flag word in the descriptor.} */
3940 return fcntl (desc, F_SETFL, oldflags);
3941@}
3942@end group
3943@end smallexample
3944
3945@node File Locks
3946@section File Locks
3947
3948@cindex file locks
3949@cindex record locking
0961f7e1
JL
3950This section describes record locks that are associated with the process.
3951There is also a different type of record lock that is associated with the
3952open file description instead of the process. @xref{Open File Description Locks}.
3953
28f540f4
RM
3954The remaining @code{fcntl} commands are used to support @dfn{record
3955locking}, which permits multiple cooperating programs to prevent each
3956other from simultaneously accessing parts of a file in error-prone
3957ways.
3958
3959@cindex exclusive lock
3960@cindex write lock
3961An @dfn{exclusive} or @dfn{write} lock gives a process exclusive access
3962for writing to the specified part of the file. While a write lock is in
3963place, no other process can lock that part of the file.
3964
3965@cindex shared lock
3966@cindex read lock
3967A @dfn{shared} or @dfn{read} lock prohibits any other process from
3968requesting a write lock on the specified part of the file. However,
3969other processes can request read locks.
3970
3971The @code{read} and @code{write} functions do not actually check to see
3972whether there are any locks in place. If you want to implement a
3973locking protocol for a file shared by multiple processes, your application
3974must do explicit @code{fcntl} calls to request and clear locks at the
3975appropriate points.
3976
3977Locks are associated with processes. A process can only have one kind
3978of lock set for each byte of a given file. When any file descriptor for
3979that file is closed by the process, all of the locks that process holds
3980on that file are released, even if the locks were made using other
3981descriptors that remain open. Likewise, locks are released when a
3982process exits, and are not inherited by child processes created using
3983@code{fork} (@pxref{Creating a Process}).
3984
3985When making a lock, use a @code{struct flock} to specify what kind of
3986lock and where. This data type and the associated macros for the
3987@code{fcntl} function are declared in the header file @file{fcntl.h}.
3988@pindex fcntl.h
3989
28f540f4 3990@deftp {Data Type} {struct flock}
d08a7e4c 3991@standards{POSIX.1, fcntl.h}
28f540f4
RM
3992This structure is used with the @code{fcntl} function to describe a file
3993lock. It has these members:
3994
3995@table @code
3996@item short int l_type
3997Specifies the type of the lock; one of @code{F_RDLCK}, @code{F_WRLCK}, or
3998@code{F_UNLCK}.
3999
4000@item short int l_whence
4001This corresponds to the @var{whence} argument to @code{fseek} or
4002@code{lseek}, and specifies what the offset is relative to. Its value
4003can be one of @code{SEEK_SET}, @code{SEEK_CUR}, or @code{SEEK_END}.
4004
4005@item off_t l_start
4006This specifies the offset of the start of the region to which the lock
9739d2d5 4007applies, and is given in bytes relative to the point specified by the
28f540f4
RM
4008@code{l_whence} member.
4009
4010@item off_t l_len
4011This specifies the length of the region to be locked. A value of
4012@code{0} is treated specially; it means the region extends to the end of
4013the file.
4014
4015@item pid_t l_pid
4016This field is the process ID (@pxref{Process Creation Concepts}) of the
4017process holding the lock. It is filled in by calling @code{fcntl} with
0961f7e1
JL
4018the @code{F_GETLK} command, but is ignored when making a lock. If the
4019conflicting lock is an open file description lock
4020(@pxref{Open File Description Locks}), then this field will be set to
4021@math{-1}.
28f540f4
RM
4022@end table
4023@end deftp
4024
28f540f4 4025@deftypevr Macro int F_GETLK
d08a7e4c 4026@standards{POSIX.1, fcntl.h}
28f540f4
RM
4027This macro is used as the @var{command} argument to @code{fcntl}, to
4028specify that it should get information about a lock. This command
4029requires a third argument of type @w{@code{struct flock *}} to be passed
4030to @code{fcntl}, so that the form of the call is:
4031
4032@smallexample
4033fcntl (@var{filedes}, F_GETLK, @var{lockp})
4034@end smallexample
4035
4036If there is a lock already in place that would block the lock described
4037by the @var{lockp} argument, information about that lock overwrites
4038@code{*@var{lockp}}. Existing locks are not reported if they are
4039compatible with making a new lock as specified. Thus, you should
4040specify a lock type of @code{F_WRLCK} if you want to find out about both
4041read and write locks, or @code{F_RDLCK} if you want to find out about
4042write locks only.
4043
4044There might be more than one lock affecting the region specified by the
4045@var{lockp} argument, but @code{fcntl} only returns information about
4046one of them. The @code{l_whence} member of the @var{lockp} structure is
4047set to @code{SEEK_SET} and the @code{l_start} and @code{l_len} fields
4048set to identify the locked region.
4049
4050If no lock applies, the only change to the @var{lockp} structure is to
4051update the @code{l_type} to a value of @code{F_UNLCK}.
4052
4053The normal return value from @code{fcntl} with this command is an
07435eb4 4054unspecified value other than @math{-1}, which is reserved to indicate an
28f540f4
RM
4055error. The following @code{errno} error conditions are defined for
4056this command:
4057
4058@table @code
4059@item EBADF
4060The @var{filedes} argument is invalid.
4061
4062@item EINVAL
4063Either the @var{lockp} argument doesn't specify valid lock information,
4064or the file associated with @var{filedes} doesn't support locks.
4065@end table
4066@end deftypevr
4067
28f540f4 4068@deftypevr Macro int F_SETLK
d08a7e4c 4069@standards{POSIX.1, fcntl.h}
28f540f4
RM
4070This macro is used as the @var{command} argument to @code{fcntl}, to
4071specify that it should set or clear a lock. This command requires a
4072third argument of type @w{@code{struct flock *}} to be passed to
4073@code{fcntl}, so that the form of the call is:
4074
4075@smallexample
4076fcntl (@var{filedes}, F_SETLK, @var{lockp})
4077@end smallexample
4078
4079If the process already has a lock on any part of the region, the old lock
4080on that part is replaced with the new lock. You can remove a lock
4081by specifying a lock type of @code{F_UNLCK}.
4082
4083If the lock cannot be set, @code{fcntl} returns immediately with a value
9739d2d5
RJ
4084of @math{-1}. This function does not block while waiting for other processes
4085to release locks. If @code{fcntl} succeeds, it returns a value other
07435eb4 4086than @math{-1}.
28f540f4
RM
4087
4088The following @code{errno} error conditions are defined for this
4089function:
4090
4091@table @code
4092@item EAGAIN
4093@itemx EACCES
4094The lock cannot be set because it is blocked by an existing lock on the
4095file. Some systems use @code{EAGAIN} in this case, and other systems
4096use @code{EACCES}; your program should treat them alike, after
a7a93d50 4097@code{F_SETLK}. (@gnulinuxhurdsystems{} always use @code{EAGAIN}.)
28f540f4
RM
4098
4099@item EBADF
4100Either: the @var{filedes} argument is invalid; you requested a read lock
4101but the @var{filedes} is not open for read access; or, you requested a
4102write lock but the @var{filedes} is not open for write access.
4103
4104@item EINVAL
4105Either the @var{lockp} argument doesn't specify valid lock information,
4106or the file associated with @var{filedes} doesn't support locks.
4107
4108@item ENOLCK
4109The system has run out of file lock resources; there are already too
4110many file locks in place.
4111
4112Well-designed file systems never report this error, because they have no
4113limitation on the number of locks. However, you must still take account
4114of the possibility of this error, as it could result from network access
4115to a file system on another machine.
4116@end table
4117@end deftypevr
4118
28f540f4 4119@deftypevr Macro int F_SETLKW
d08a7e4c 4120@standards{POSIX.1, fcntl.h}
28f540f4
RM
4121This macro is used as the @var{command} argument to @code{fcntl}, to
4122specify that it should set or clear a lock. It is just like the
4123@code{F_SETLK} command, but causes the process to block (or wait)
4124until the request can be specified.
4125
4126This command requires a third argument of type @code{struct flock *}, as
4127for the @code{F_SETLK} command.
4128
4129The @code{fcntl} return values and errors are the same as for the
4130@code{F_SETLK} command, but these additional @code{errno} error conditions
4131are defined for this command:
4132
4133@table @code
4134@item EINTR
4135The function was interrupted by a signal while it was waiting.
4136@xref{Interrupted Primitives}.
4137
4138@item EDEADLK
4139The specified region is being locked by another process. But that
4140process is waiting to lock a region which the current process has
4141locked, so waiting for the lock would result in deadlock. The system
4142does not guarantee that it will detect all such conditions, but it lets
4143you know if it notices one.
4144@end table
4145@end deftypevr
4146
4147
4148The following macros are defined for use as values for the @code{l_type}
4149member of the @code{flock} structure. The values are integer constants.
4150
2fe82ca6 4151@vtable @code
28f540f4 4152@item F_RDLCK
d08a7e4c 4153@standards{POSIX.1, fcntl.h}
28f540f4
RM
4154This macro is used to specify a read (or shared) lock.
4155
28f540f4 4156@item F_WRLCK
d08a7e4c 4157@standards{POSIX.1, fcntl.h}
28f540f4
RM
4158This macro is used to specify a write (or exclusive) lock.
4159
28f540f4 4160@item F_UNLCK
d08a7e4c 4161@standards{POSIX.1, fcntl.h}
28f540f4 4162This macro is used to specify that the region is unlocked.
2fe82ca6 4163@end vtable
28f540f4
RM
4164
4165As an example of a situation where file locking is useful, consider a
4166program that can be run simultaneously by several different users, that
4167logs status information to a common file. One example of such a program
4168might be a game that uses a file to keep track of high scores. Another
4169example might be a program that records usage or accounting information
4170for billing purposes.
4171
4172Having multiple copies of the program simultaneously writing to the
4173file could cause the contents of the file to become mixed up. But
4174you can prevent this kind of problem by setting a write lock on the
2c6fe0bd 4175file before actually writing to the file.
28f540f4
RM
4176
4177If the program also needs to read the file and wants to make sure that
4178the contents of the file are in a consistent state, then it can also use
4179a read lock. While the read lock is set, no other process can lock
4180that part of the file for writing.
4181
4182@c ??? This section could use an example program.
4183
0961f7e1 4184Remember that file locks are only an @emph{advisory} protocol for
28f540f4
RM
4185controlling access to a file. There is still potential for access to
4186the file by programs that don't use the lock protocol.
4187
0961f7e1
JL
4188@node Open File Description Locks
4189@section Open File Description Locks
4190
4191In contrast to process-associated record locks (@pxref{File Locks}),
4192open file description record locks are associated with an open file
4193description rather than a process.
4194
4195Using @code{fcntl} to apply an open file description lock on a region that
4196already has an existing open file description lock that was created via the
4197same file descriptor will never cause a lock conflict.
4198
4199Open file description locks are also inherited by child processes across
4200@code{fork}, or @code{clone} with @code{CLONE_FILES} set
4201(@pxref{Creating a Process}), along with the file descriptor.
4202
4203It is important to distinguish between the open file @emph{description} (an
4204instance of an open file, usually created by a call to @code{open}) and
4205an open file @emph{descriptor}, which is a numeric value that refers to the
4206open file description. The locks described here are associated with the
4207open file @emph{description} and not the open file @emph{descriptor}.
4208
4209Using @code{dup} (@pxref{Duplicating Descriptors}) to copy a file
4210descriptor does not give you a new open file description, but rather copies a
4211reference to an existing open file description and assigns it to a new
4212file descriptor. Thus, open file description locks set on a file
4213descriptor cloned by @code{dup} will never conflict with open file
4214description locks set on the original descriptor since they refer to the
4215same open file description. Depending on the range and type of lock
4216involved, the original lock may be modified by a @code{F_OFD_SETLK} or
4217@code{F_OFD_SETLKW} command in this situation however.
4218
4219Open file description locks always conflict with process-associated locks,
4220even if acquired by the same process or on the same open file
4221descriptor.
4222
4223Open file description locks use the same @code{struct flock} as
4224process-associated locks as an argument (@pxref{File Locks}) and the
4225macros for the @code{command} values are also declared in the header file
4226@file{fcntl.h}. To use them, the macro @code{_GNU_SOURCE} must be
4227defined prior to including any header file.
4228
4229In contrast to process-associated locks, any @code{struct flock} used as
4230an argument to open file description lock commands must have the @code{l_pid}
4231value set to @math{0}. Also, when returning information about an
4232open file description lock in a @code{F_GETLK} or @code{F_OFD_GETLK} request,
4233the @code{l_pid} field in @code{struct flock} will be set to @math{-1}
4234to indicate that the lock is not associated with a process.
4235
4236When the same @code{struct flock} is reused as an argument to a
4237@code{F_OFD_SETLK} or @code{F_OFD_SETLKW} request after being used for an
4238@code{F_OFD_GETLK} request, it is necessary to inspect and reset the
4239@code{l_pid} field to @math{0}.
4240
4241@pindex fcntl.h.
4242
4243@deftypevr Macro int F_OFD_GETLK
4244This macro is used as the @var{command} argument to @code{fcntl}, to
4245specify that it should get information about a lock. This command
4246requires a third argument of type @w{@code{struct flock *}} to be passed
4247to @code{fcntl}, so that the form of the call is:
4248
4249@smallexample
4250fcntl (@var{filedes}, F_OFD_GETLK, @var{lockp})
4251@end smallexample
4252
4253If there is a lock already in place that would block the lock described
4254by the @var{lockp} argument, information about that lock is written to
4255@code{*@var{lockp}}. Existing locks are not reported if they are
4256compatible with making a new lock as specified. Thus, you should
4257specify a lock type of @code{F_WRLCK} if you want to find out about both
4258read and write locks, or @code{F_RDLCK} if you want to find out about
4259write locks only.
4260
4261There might be more than one lock affecting the region specified by the
4262@var{lockp} argument, but @code{fcntl} only returns information about
4263one of them. Which lock is returned in this situation is undefined.
4264
4265The @code{l_whence} member of the @var{lockp} structure are set to
4266@code{SEEK_SET} and the @code{l_start} and @code{l_len} fields are set
4267to identify the locked region.
4268
4269If no conflicting lock exists, the only change to the @var{lockp} structure
4270is to update the @code{l_type} field to the value @code{F_UNLCK}.
4271
4272The normal return value from @code{fcntl} with this command is either @math{0}
4273on success or @math{-1}, which indicates an error. The following @code{errno}
4274error conditions are defined for this command:
4275
4276@table @code
4277@item EBADF
4278The @var{filedes} argument is invalid.
4279
4280@item EINVAL
4281Either the @var{lockp} argument doesn't specify valid lock information,
4282the operating system kernel doesn't support open file description locks, or the file
4283associated with @var{filedes} doesn't support locks.
4284@end table
4285@end deftypevr
4286
0961f7e1 4287@deftypevr Macro int F_OFD_SETLK
d08a7e4c 4288@standards{POSIX.1, fcntl.h}
0961f7e1
JL
4289This macro is used as the @var{command} argument to @code{fcntl}, to
4290specify that it should set or clear a lock. This command requires a
4291third argument of type @w{@code{struct flock *}} to be passed to
4292@code{fcntl}, so that the form of the call is:
4293
4294@smallexample
4295fcntl (@var{filedes}, F_OFD_SETLK, @var{lockp})
4296@end smallexample
4297
4298If the open file already has a lock on any part of the
4299region, the old lock on that part is replaced with the new lock. You
4300can remove a lock by specifying a lock type of @code{F_UNLCK}.
4301
4302If the lock cannot be set, @code{fcntl} returns immediately with a value
4303of @math{-1}. This command does not wait for other tasks
4304to release locks. If @code{fcntl} succeeds, it returns @math{0}.
4305
4306The following @code{errno} error conditions are defined for this
4307command:
4308
4309@table @code
4310@item EAGAIN
4311The lock cannot be set because it is blocked by an existing lock on the
4312file.
4313
4314@item EBADF
4315Either: the @var{filedes} argument is invalid; you requested a read lock
4316but the @var{filedes} is not open for read access; or, you requested a
4317write lock but the @var{filedes} is not open for write access.
4318
4319@item EINVAL
4320Either the @var{lockp} argument doesn't specify valid lock information,
4321the operating system kernel doesn't support open file description locks, or the
4322file associated with @var{filedes} doesn't support locks.
4323
4324@item ENOLCK
4325The system has run out of file lock resources; there are already too
4326many file locks in place.
4327
4328Well-designed file systems never report this error, because they have no
4329limitation on the number of locks. However, you must still take account
4330of the possibility of this error, as it could result from network access
4331to a file system on another machine.
4332@end table
4333@end deftypevr
4334
0961f7e1 4335@deftypevr Macro int F_OFD_SETLKW
d08a7e4c 4336@standards{POSIX.1, fcntl.h}
0961f7e1
JL
4337This macro is used as the @var{command} argument to @code{fcntl}, to
4338specify that it should set or clear a lock. It is just like the
4339@code{F_OFD_SETLK} command, but causes the process to wait until the request
4340can be completed.
4341
4342This command requires a third argument of type @code{struct flock *}, as
4343for the @code{F_OFD_SETLK} command.
4344
4345The @code{fcntl} return values and errors are the same as for the
4346@code{F_OFD_SETLK} command, but these additional @code{errno} error conditions
4347are defined for this command:
4348
4349@table @code
4350@item EINTR
4351The function was interrupted by a signal while it was waiting.
4352@xref{Interrupted Primitives}.
4353
4354@end table
4355@end deftypevr
4356
4357Open file description locks are useful in the same sorts of situations as
4358process-associated locks. They can also be used to synchronize file
4359access between threads within the same process by having each thread perform
4360its own @code{open} of the file, to obtain its own open file description.
4361
4362Because open file description locks are automatically freed only upon
4363closing the last file descriptor that refers to the open file
4364description, this locking mechanism avoids the possibility that locks
4365are inadvertently released due to a library routine opening and closing
4366a file without the application being aware.
4367
4368As with process-associated locks, open file description locks are advisory.
4369
4370@node Open File Description Locks Example
4371@section Open File Description Locks Example
4372
4373Here is an example of using open file description locks in a threaded
4374program. If this program used process-associated locks, then it would be
4375subject to data corruption because process-associated locks are shared
4376by the threads inside a process, and thus cannot be used by one thread
4377to lock out another thread in the same process.
4378
4379Proper error handling has been omitted in the following program for
4380brevity.
4381
4382@smallexample
4383@include ofdlocks.c.texi
4384@end smallexample
4385
4386This example creates three threads each of which loops five times,
4387appending to the file. Access to the file is serialized via open file
4388description locks. If we compile and run the above program, we'll end up
4389with /tmp/foo that has 15 lines in it.
4390
4391If we, however, were to replace the @code{F_OFD_SETLK} and
4392@code{F_OFD_SETLKW} commands with their process-associated lock
4393equivalents, the locking essentially becomes a noop since it is all done
4394within the context of the same process. That leads to data corruption
4395(typically manifested as missing lines) as some threads race in and
4396overwrite the data written by others.
4397
28f540f4
RM
4398@node Interrupt Input
4399@section Interrupt-Driven Input
4400
4401@cindex interrupt-driven input
4402If you set the @code{O_ASYNC} status flag on a file descriptor
4403(@pxref{File Status Flags}), a @code{SIGIO} signal is sent whenever
4404input or output becomes possible on that file descriptor. The process
4405or process group to receive the signal can be selected by using the
4406@code{F_SETOWN} command to the @code{fcntl} function. If the file
4407descriptor is a socket, this also selects the recipient of @code{SIGURG}
4408signals that are delivered when out-of-band data arrives on that socket;
4409see @ref{Out-of-Band Data}. (@code{SIGURG} is sent in any situation
4410where @code{select} would report the socket as having an ``exceptional
4411condition''. @xref{Waiting for I/O}.)
4412
4413If the file descriptor corresponds to a terminal device, then @code{SIGIO}
2c6fe0bd 4414signals are sent to the foreground process group of the terminal.
28f540f4
RM
4415@xref{Job Control}.
4416
4417@pindex fcntl.h
4418The symbols in this section are defined in the header file
4419@file{fcntl.h}.
4420
28f540f4 4421@deftypevr Macro int F_GETOWN
d08a7e4c 4422@standards{BSD, fcntl.h}
28f540f4
RM
4423This macro is used as the @var{command} argument to @code{fcntl}, to
4424specify that it should get information about the process or process
4425group to which @code{SIGIO} signals are sent. (For a terminal, this is
4426actually the foreground process group ID, which you can get using
4427@code{tcgetpgrp}; see @ref{Terminal Access Functions}.)
4428
4429The return value is interpreted as a process ID; if negative, its
4430absolute value is the process group ID.
4431
4432The following @code{errno} error condition is defined for this command:
4433
4434@table @code
4435@item EBADF
4436The @var{filedes} argument is invalid.
4437@end table
4438@end deftypevr
4439
28f540f4 4440@deftypevr Macro int F_SETOWN
d08a7e4c 4441@standards{BSD, fcntl.h}
28f540f4
RM
4442This macro is used as the @var{command} argument to @code{fcntl}, to
4443specify that it should set the process or process group to which
4444@code{SIGIO} signals are sent. This command requires a third argument
4445of type @code{pid_t} to be passed to @code{fcntl}, so that the form of
4446the call is:
4447
4448@smallexample
4449fcntl (@var{filedes}, F_SETOWN, @var{pid})
4450@end smallexample
4451
4452The @var{pid} argument should be a process ID. You can also pass a
4453negative number whose absolute value is a process group ID.
4454
07435eb4 4455The return value from @code{fcntl} with this command is @math{-1}
28f540f4
RM
4456in case of error and some other value if successful. The following
4457@code{errno} error conditions are defined for this command:
4458
4459@table @code
4460@item EBADF
4461The @var{filedes} argument is invalid.
4462
4463@item ESRCH
4464There is no process or process group corresponding to @var{pid}.
4465@end table
4466@end deftypevr
4467
4468@c ??? This section could use an example program.
07435eb4
UD
4469
4470@node IOCTLs
4471@section Generic I/O Control operations
4472@cindex generic i/o control operations
4473@cindex IOCTLs
4474
a7a93d50 4475@gnusystems{} can handle most input/output operations on many different
07435eb4
UD
4476devices and objects in terms of a few file primitives - @code{read},
4477@code{write} and @code{lseek}. However, most devices also have a few
cf822e3c 4478peculiar operations which do not fit into this model. Such as:
07435eb4
UD
4479
4480@itemize @bullet
4481
4482@item
4483Changing the character font used on a terminal.
4484
4485@item
4486Telling a magnetic tape system to rewind or fast forward. (Since they
4487cannot move in byte increments, @code{lseek} is inapplicable).
4488
4489@item
4490Ejecting a disk from a drive.
4491
4492@item
4493Playing an audio track from a CD-ROM drive.
4494
4495@item
4496Maintaining routing tables for a network.
4497
4498@end itemize
4499
4500Although some such objects such as sockets and terminals
4501@footnote{Actually, the terminal-specific functions are implemented with
4502IOCTLs on many platforms.} have special functions of their own, it would
4503not be practical to create functions for all these cases.
4504
4505Instead these minor operations, known as @dfn{IOCTL}s, are assigned code
4506numbers and multiplexed through the @code{ioctl} function, defined in
4507@code{sys/ioctl.h}. The code numbers themselves are defined in many
4508different headers.
4509
4510@deftypefun int ioctl (int @var{filedes}, int @var{command}, @dots{})
d08a7e4c 4511@standards{BSD, sys/ioctl.h}
2cc3615c 4512@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
07435eb4
UD
4513
4514The @code{ioctl} function performs the generic I/O operation
4515@var{command} on @var{filedes}.
4516
4517A third argument is usually present, either a single number or a pointer
4518to a structure. The meaning of this argument, the returned value, and
4519any error codes depends upon the command used. Often @math{-1} is
4520returned for a failure.
4521
4522@end deftypefun
4523
4524On some systems, IOCTLs used by different devices share the same numbers.
4525Thus, although use of an inappropriate IOCTL @emph{usually} only produces
4526an error, you should not attempt to use device-specific IOCTLs on an
4527unknown device.
4528
4529Most IOCTLs are OS-specific and/or only used in special system utilities,
4530and are thus beyond the scope of this document. For an example of the use
8b7fb588 4531of an IOCTL, see @ref{Out-of-Band Data}.
2cc3615c
AO
4532
4533@c FIXME this is undocumented:
4534@c dup3