]> sourceware.org Git - glibc.git/blame - manual/llio.texi
(General Numeric): Update information about grouping representation in locale data...
[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.
07435eb4 44* Memory-mapped I/O:: Using files like memory.
28f540f4
RM
45* Waiting for I/O:: How to check for input or output
46 on multiple file descriptors.
dfd2257a 47* Synchronizing I/O:: Making sure all I/O actions completed.
b07d03e0 48* Asynchronous I/O:: Perform I/O in parallel.
28f540f4
RM
49* Control Operations:: Various other operations on file
50 descriptors.
51* Duplicating Descriptors:: Fcntl commands for duplicating
52 file descriptors.
53* Descriptor Flags:: Fcntl commands for manipulating
54 flags associated with file
2c6fe0bd 55 descriptors.
28f540f4
RM
56* File Status Flags:: Fcntl commands for manipulating
57 flags associated with open files.
58* File Locks:: Fcntl commands for implementing
59 file locking.
60* Interrupt Input:: Getting an asynchronous signal when
61 input arrives.
07435eb4 62* IOCTLs:: Generic I/O Control operations.
28f540f4
RM
63@end menu
64
65
66@node Opening and Closing Files
67@section Opening and Closing Files
68
69@cindex opening a file descriptor
70@cindex closing a file descriptor
71This section describes the primitives for opening and closing files
72using file descriptors. The @code{open} and @code{creat} functions are
73declared in the header file @file{fcntl.h}, while @code{close} is
74declared in @file{unistd.h}.
75@pindex unistd.h
76@pindex fcntl.h
77
78@comment fcntl.h
79@comment POSIX.1
80@deftypefun int open (const char *@var{filename}, int @var{flags}[, mode_t @var{mode}])
81The @code{open} function creates and returns a new file descriptor
82for the file named by @var{filename}. Initially, the file position
83indicator for the file is at the beginning of the file. The argument
84@var{mode} is used only when a file is created, but it doesn't hurt
85to supply the argument in any case.
86
87The @var{flags} argument controls how the file is to be opened. This is
88a bit mask; you create the value by the bitwise OR of the appropriate
89parameters (using the @samp{|} operator in C).
90@xref{File Status Flags}, for the parameters available.
91
92The normal return value from @code{open} is a non-negative integer file
07435eb4 93descriptor. In the case of an error, a value of @math{-1} is returned
28f540f4
RM
94instead. In addition to the usual file name errors (@pxref{File
95Name Errors}), the following @code{errno} error conditions are defined
96for this function:
97
98@table @code
99@item EACCES
04b9968b
UD
100The file exists but is not readable/writeable as requested by the @var{flags}
101argument, the file does not exist and the directory is unwriteable so
28f540f4
RM
102it cannot be created.
103
104@item EEXIST
105Both @code{O_CREAT} and @code{O_EXCL} are set, and the named file already
106exists.
107
108@item EINTR
109The @code{open} operation was interrupted by a signal.
110@xref{Interrupted Primitives}.
111
112@item EISDIR
113The @var{flags} argument specified write access, and the file is a directory.
114
115@item EMFILE
116The process has too many files open.
117The maximum number of file descriptors is controlled by the
118@code{RLIMIT_NOFILE} resource limit; @pxref{Limits on Resources}.
119
120@item ENFILE
121The entire system, or perhaps the file system which contains the
122directory, cannot support any additional open files at the moment.
123(This problem cannot happen on the GNU system.)
124
125@item ENOENT
126The named file does not exist, and @code{O_CREAT} is not specified.
127
128@item ENOSPC
129The directory or file system that would contain the new file cannot be
130extended, because there is no disk space left.
131
132@item ENXIO
133@code{O_NONBLOCK} and @code{O_WRONLY} are both set in the @var{flags}
134argument, the file named by @var{filename} is a FIFO (@pxref{Pipes and
135FIFOs}), and no process has the file open for reading.
136
137@item EROFS
138The file resides on a read-only file system and any of @w{@code{O_WRONLY}},
139@code{O_RDWR}, and @code{O_TRUNC} are set in the @var{flags} argument,
140or @code{O_CREAT} is set and the file does not already exist.
141@end table
142
143@c !!! umask
144
04b9968b 145If on a 32 bit machine the sources are translated with
b07d03e0
UD
146@code{_FILE_OFFSET_BITS == 64} the function @code{open} returns a file
147descriptor opened in the large file mode which enables the file handling
fed8f7f7 148functions to use files up to @math{2^63} bytes in size and offset from
b07d03e0
UD
149@math{-2^63} to @math{2^63}. This happens transparently for the user
150since all of the lowlevel file handling functions are equally replaced.
151
04b9968b 152This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
153is a problem if the thread allocates some resources (like memory, file
154descriptors, semaphores or whatever) at the time @code{open} is
04b9968b 155called. If the thread gets cancelled these resources stay allocated
dfd2257a 156until the program ends. To avoid this calls to @code{open} should be
04b9968b 157protected using cancellation handlers.
dfd2257a
UD
158@c ref pthread_cleanup_push / pthread_cleanup_pop
159
28f540f4
RM
160The @code{open} function is the underlying primitive for the @code{fopen}
161and @code{freopen} functions, that create streams.
162@end deftypefun
163
b07d03e0 164@comment fcntl.h
a3a4a74e 165@comment Unix98
b07d03e0
UD
166@deftypefun int open64 (const char *@var{filename}, int @var{flags}[, mode_t @var{mode}])
167This function is similar to @code{open}. It returns a file descriptor
168which can be used to access the file named by @var{filename}. The only
04b9968b 169difference is that on 32 bit systems the file is opened in the
b07d03e0
UD
170large file mode. I.e., file length and file offsets can exceed 31 bits.
171
b07d03e0
UD
172When the sources are translated with @code{_FILE_OFFSET_BITS == 64} this
173function is actually available under the name @code{open}. I.e., the
174new, extended API using 64 bit file sizes and offsets transparently
175replaces the old API.
176@end deftypefun
177
28f540f4
RM
178@comment fcntl.h
179@comment POSIX.1
180@deftypefn {Obsolete function} int creat (const char *@var{filename}, mode_t @var{mode})
181This function is obsolete. The call:
182
183@smallexample
184creat (@var{filename}, @var{mode})
185@end smallexample
186
187@noindent
188is equivalent to:
189
190@smallexample
191open (@var{filename}, O_WRONLY | O_CREAT | O_TRUNC, @var{mode})
192@end smallexample
b07d03e0 193
04b9968b 194If on a 32 bit machine the sources are translated with
b07d03e0
UD
195@code{_FILE_OFFSET_BITS == 64} the function @code{creat} returns a file
196descriptor opened in the large file mode which enables the file handling
197functions to use files up to @math{2^63} in size and offset from
198@math{-2^63} to @math{2^63}. This happens transparently for the user
199since all of the lowlevel file handling functions are equally replaced.
200@end deftypefn
201
202@comment fcntl.h
a3a4a74e 203@comment Unix98
b07d03e0
UD
204@deftypefn {Obsolete function} int creat64 (const char *@var{filename}, mode_t @var{mode})
205This function is similar to @code{creat}. It returns a file descriptor
206which can be used to access the file named by @var{filename}. The only
04b9968b 207the difference is that on 32 bit systems the file is opened in the
b07d03e0
UD
208large file mode. I.e., file length and file offsets can exceed 31 bits.
209
210To use this file descriptor one must not use the normal operations but
211instead the counterparts named @code{*64}, e.g., @code{read64}.
212
213When the sources are translated with @code{_FILE_OFFSET_BITS == 64} this
214function is actually available under the name @code{open}. I.e., the
215new, extended API using 64 bit file sizes and offsets transparently
216replaces the old API.
28f540f4
RM
217@end deftypefn
218
219@comment unistd.h
220@comment POSIX.1
221@deftypefun int close (int @var{filedes})
222The function @code{close} closes the file descriptor @var{filedes}.
223Closing a file has the following consequences:
224
225@itemize @bullet
2c6fe0bd 226@item
28f540f4
RM
227The file descriptor is deallocated.
228
229@item
230Any record locks owned by the process on the file are unlocked.
231
232@item
233When all file descriptors associated with a pipe or FIFO have been closed,
234any unread data is discarded.
235@end itemize
236
04b9968b 237This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
238is a problem if the thread allocates some resources (like memory, file
239descriptors, semaphores or whatever) at the time @code{close} is
04b9968b
UD
240called. If the thread gets cancelled these resources stay allocated
241until the program ends. To avoid this, calls to @code{close} should be
242protected using cancellation handlers.
dfd2257a
UD
243@c ref pthread_cleanup_push / pthread_cleanup_pop
244
07435eb4 245The normal return value from @code{close} is @math{0}; a value of @math{-1}
28f540f4
RM
246is returned in case of failure. The following @code{errno} error
247conditions are defined for this function:
248
249@table @code
250@item EBADF
251The @var{filedes} argument is not a valid file descriptor.
252
253@item EINTR
254The @code{close} call was interrupted by a signal.
255@xref{Interrupted Primitives}.
256Here is an example of how to handle @code{EINTR} properly:
257
258@smallexample
259TEMP_FAILURE_RETRY (close (desc));
260@end smallexample
261
262@item ENOSPC
263@itemx EIO
264@itemx EDQUOT
2c6fe0bd 265When the file is accessed by NFS, these errors from @code{write} can sometimes
28f540f4
RM
266not be detected until @code{close}. @xref{I/O Primitives}, for details
267on their meaning.
268@end table
b07d03e0
UD
269
270Please note that there is @emph{no} separate @code{close64} function.
271This is not necessary since this function does not determine nor depend
fed8f7f7 272on the mode of the file. The kernel which performs the @code{close}
04b9968b 273operation knows which mode the descriptor is used for and can handle
b07d03e0 274this situation.
28f540f4
RM
275@end deftypefun
276
277To close a stream, call @code{fclose} (@pxref{Closing Streams}) instead
278of trying to close its underlying file descriptor with @code{close}.
279This flushes any buffered output and updates the stream object to
280indicate that it is closed.
281
282@node I/O Primitives
283@section Input and Output Primitives
284
285This section describes the functions for performing primitive input and
286output operations on file descriptors: @code{read}, @code{write}, and
287@code{lseek}. These functions are declared in the header file
288@file{unistd.h}.
289@pindex unistd.h
290
291@comment unistd.h
292@comment POSIX.1
293@deftp {Data Type} ssize_t
294This data type is used to represent the sizes of blocks that can be
295read or written in a single operation. It is similar to @code{size_t},
296but must be a signed type.
297@end deftp
298
299@cindex reading from a file descriptor
300@comment unistd.h
301@comment POSIX.1
302@deftypefun ssize_t read (int @var{filedes}, void *@var{buffer}, size_t @var{size})
303The @code{read} function reads up to @var{size} bytes from the file
304with descriptor @var{filedes}, storing the results in the @var{buffer}.
04b9968b
UD
305(This is not necessarily a character string, and no terminating null
306character is added.)
28f540f4
RM
307
308@cindex end-of-file, on a file descriptor
309The return value is the number of bytes actually read. This might be
310less than @var{size}; for example, if there aren't that many bytes left
311in the file or if there aren't that many bytes immediately available.
312The exact behavior depends on what kind of file it is. Note that
313reading less than @var{size} bytes is not an error.
314
315A value of zero indicates end-of-file (except if the value of the
316@var{size} argument is also zero). This is not considered an error.
317If you keep calling @code{read} while at end-of-file, it will keep
318returning zero and doing nothing else.
319
320If @code{read} returns at least one character, there is no way you can
321tell whether end-of-file was reached. But if you did reach the end, the
322next read will return zero.
323
07435eb4 324In case of an error, @code{read} returns @math{-1}. The following
28f540f4
RM
325@code{errno} error conditions are defined for this function:
326
327@table @code
328@item EAGAIN
329Normally, when no input is immediately available, @code{read} waits for
330some input. But if the @code{O_NONBLOCK} flag is set for the file
331(@pxref{File Status Flags}), @code{read} returns immediately without
332reading any data, and reports this error.
333
334@strong{Compatibility Note:} Most versions of BSD Unix use a different
335error code for this: @code{EWOULDBLOCK}. In the GNU library,
336@code{EWOULDBLOCK} is an alias for @code{EAGAIN}, so it doesn't matter
337which name you use.
338
339On some systems, reading a large amount of data from a character special
340file can also fail with @code{EAGAIN} if the kernel cannot find enough
341physical memory to lock down the user's pages. This is limited to
342devices that transfer with direct memory access into the user's memory,
343which means it does not include terminals, since they always use
344separate buffers inside the kernel. This problem never happens in the
345GNU system.
346
347Any condition that could result in @code{EAGAIN} can instead result in a
348successful @code{read} which returns fewer bytes than requested.
349Calling @code{read} again immediately would result in @code{EAGAIN}.
350
351@item EBADF
352The @var{filedes} argument is not a valid file descriptor,
353or is not open for reading.
354
355@item EINTR
356@code{read} was interrupted by a signal while it was waiting for input.
357@xref{Interrupted Primitives}. A signal will not necessary cause
358@code{read} to return @code{EINTR}; it may instead result in a
359successful @code{read} which returns fewer bytes than requested.
360
361@item EIO
362For many devices, and for disk files, this error code indicates
363a hardware error.
364
365@code{EIO} also occurs when a background process tries to read from the
366controlling terminal, and the normal action of stopping the process by
367sending it a @code{SIGTTIN} signal isn't working. This might happen if
04b9968b 368the signal is being blocked or ignored, or because the process group is
28f540f4
RM
369orphaned. @xref{Job Control}, for more information about job control,
370and @ref{Signal Handling}, for information about signals.
371@end table
372
b07d03e0
UD
373Please note that there is no function named @code{read64}. This is not
374necessary since this function does not directly modify or handle the
375possibly wide file offset. Since the kernel handles this state
04b9968b 376internally, the @code{read} function can be used for all cases.
b07d03e0 377
04b9968b 378This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
379is a problem if the thread allocates some resources (like memory, file
380descriptors, semaphores or whatever) at the time @code{read} is
04b9968b
UD
381called. If the thread gets cancelled these resources stay allocated
382until the program ends. To avoid this, calls to @code{read} should be
383protected using cancellation handlers.
dfd2257a
UD
384@c ref pthread_cleanup_push / pthread_cleanup_pop
385
28f540f4
RM
386The @code{read} function is the underlying primitive for all of the
387functions that read from streams, such as @code{fgetc}.
388@end deftypefun
389
a5a0310d
UD
390@comment unistd.h
391@comment Unix98
392@deftypefun ssize_t pread (int @var{filedes}, void *@var{buffer}, size_t @var{size}, off_t @var{offset})
393The @code{pread} function is similar to the @code{read} function. The
04b9968b
UD
394first three arguments are identical, and the return values and error
395codes also correspond.
a5a0310d
UD
396
397The difference is the fourth argument and its handling. The data block
398is not read from the current position of the file descriptor
399@code{filedes}. Instead the data is read from the file starting at
400position @var{offset}. The position of the file descriptor itself is
04b9968b 401not affected by the operation. The value is the same as before the call.
a5a0310d 402
b07d03e0
UD
403When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
404@code{pread} function is in fact @code{pread64} and the type
04b9968b 405@code{off_t} has 64 bits, which makes it possible to handle files up to
c756c71c 406@math{2^63} bytes in length.
b07d03e0 407
a5a0310d
UD
408The return value of @code{pread} describes the number of bytes read.
409In the error case it returns @math{-1} like @code{read} does and the
04b9968b
UD
410error codes are also the same, with these additions:
411
a5a0310d
UD
412@table @code
413@item EINVAL
414The value given for @var{offset} is negative and therefore illegal.
415
416@item ESPIPE
417The file descriptor @var{filedes} is associate with a pipe or a FIFO and
418this device does not allow positioning of the file pointer.
419@end table
420
421The function is an extension defined in the Unix Single Specification
422version 2.
423@end deftypefun
424
b07d03e0 425@comment unistd.h
a3a4a74e 426@comment Unix98
b07d03e0
UD
427@deftypefun ssize_t pread64 (int @var{filedes}, void *@var{buffer}, size_t @var{size}, off64_t @var{offset})
428This function is similar to the @code{pread} function. The difference
429is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 430@code{off_t} which makes it possible on 32 bit machines to address
c756c71c 431files larger than @math{2^31} bytes and up to @math{2^63} bytes. The
b07d03e0
UD
432file descriptor @code{filedes} must be opened using @code{open64} since
433otherwise the large offsets possible with @code{off64_t} will lead to
434errors with a descriptor in small file mode.
435
c756c71c 436When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
04b9968b
UD
43732 bit machine this function is actually available under the name
438@code{pread} and so transparently replaces the 32 bit interface.
b07d03e0
UD
439@end deftypefun
440
28f540f4
RM
441@cindex writing to a file descriptor
442@comment unistd.h
443@comment POSIX.1
444@deftypefun ssize_t write (int @var{filedes}, const void *@var{buffer}, size_t @var{size})
445The @code{write} function writes up to @var{size} bytes from
446@var{buffer} to the file with descriptor @var{filedes}. The data in
447@var{buffer} is not necessarily a character string and a null character is
448output like any other character.
449
450The return value is the number of bytes actually written. This may be
451@var{size}, but can always be smaller. Your program should always call
452@code{write} in a loop, iterating until all the data is written.
453
454Once @code{write} returns, the data is enqueued to be written and can be
455read back right away, but it is not necessarily written out to permanent
456storage immediately. You can use @code{fsync} when you need to be sure
457your data has been permanently stored before continuing. (It is more
458efficient for the system to batch up consecutive writes and do them all
459at once when convenient. Normally they will always be written to disk
a5a0310d
UD
460within a minute or less.) Modern systems provide another function
461@code{fdatasync} which guarantees integrity only for the file data and
462is therefore faster.
463@c !!! xref fsync, fdatasync
2c6fe0bd 464You can use the @code{O_FSYNC} open mode to make @code{write} always
28f540f4
RM
465store the data to disk before returning; @pxref{Operating Modes}.
466
07435eb4 467In the case of an error, @code{write} returns @math{-1}. The following
28f540f4
RM
468@code{errno} error conditions are defined for this function:
469
470@table @code
471@item EAGAIN
472Normally, @code{write} blocks until the write operation is complete.
473But if the @code{O_NONBLOCK} flag is set for the file (@pxref{Control
04b9968b 474Operations}), it returns immediately without writing any data and
28f540f4
RM
475reports this error. An example of a situation that might cause the
476process to block on output is writing to a terminal device that supports
477flow control, where output has been suspended by receipt of a STOP
478character.
479
480@strong{Compatibility Note:} Most versions of BSD Unix use a different
481error code for this: @code{EWOULDBLOCK}. In the GNU library,
482@code{EWOULDBLOCK} is an alias for @code{EAGAIN}, so it doesn't matter
483which name you use.
484
485On some systems, writing a large amount of data from a character special
486file can also fail with @code{EAGAIN} if the kernel cannot find enough
487physical memory to lock down the user's pages. This is limited to
488devices that transfer with direct memory access into the user's memory,
489which means it does not include terminals, since they always use
490separate buffers inside the kernel. This problem does not arise in the
491GNU system.
492
493@item EBADF
494The @var{filedes} argument is not a valid file descriptor,
495or is not open for writing.
496
497@item EFBIG
498The size of the file would become larger than the implementation can support.
499
500@item EINTR
501The @code{write} operation was interrupted by a signal while it was
04b9968b 502blocked waiting for completion. A signal will not necessarily cause
28f540f4
RM
503@code{write} to return @code{EINTR}; it may instead result in a
504successful @code{write} which writes fewer bytes than requested.
505@xref{Interrupted Primitives}.
506
507@item EIO
508For many devices, and for disk files, this error code indicates
509a hardware error.
510
511@item ENOSPC
512The device containing the file is full.
513
514@item EPIPE
515This error is returned when you try to write to a pipe or FIFO that
516isn't open for reading by any process. When this happens, a @code{SIGPIPE}
517signal is also sent to the process; see @ref{Signal Handling}.
518@end table
519
520Unless you have arranged to prevent @code{EINTR} failures, you should
521check @code{errno} after each failing call to @code{write}, and if the
522error was @code{EINTR}, you should simply repeat the call.
523@xref{Interrupted Primitives}. The easy way to do this is with the
524macro @code{TEMP_FAILURE_RETRY}, as follows:
525
526@smallexample
527nbytes = TEMP_FAILURE_RETRY (write (desc, buffer, count));
528@end smallexample
529
b07d03e0
UD
530Please note that there is no function named @code{write64}. This is not
531necessary since this function does not directly modify or handle the
532possibly wide file offset. Since the kernel handles this state
533internally the @code{write} function can be used for all cases.
534
04b9968b 535This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
536is a problem if the thread allocates some resources (like memory, file
537descriptors, semaphores or whatever) at the time @code{write} is
04b9968b
UD
538called. If the thread gets cancelled these resources stay allocated
539until the program ends. To avoid this, calls to @code{write} should be
540protected using cancellation handlers.
dfd2257a
UD
541@c ref pthread_cleanup_push / pthread_cleanup_pop
542
28f540f4
RM
543The @code{write} function is the underlying primitive for all of the
544functions that write to streams, such as @code{fputc}.
545@end deftypefun
546
a5a0310d
UD
547@comment unistd.h
548@comment Unix98
549@deftypefun ssize_t pwrite (int @var{filedes}, const void *@var{buffer}, size_t @var{size}, off_t @var{offset})
550The @code{pwrite} function is similar to the @code{write} function. The
04b9968b
UD
551first three arguments are identical, and the return values and error codes
552also correspond.
a5a0310d
UD
553
554The difference is the fourth argument and its handling. The data block
555is not written to the current position of the file descriptor
556@code{filedes}. Instead the data is written to the file starting at
557position @var{offset}. The position of the file descriptor itself is
04b9968b 558not affected by the operation. The value is the same as before the call.
a5a0310d 559
b07d03e0
UD
560When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
561@code{pwrite} function is in fact @code{pwrite64} and the type
04b9968b 562@code{off_t} has 64 bits, which makes it possible to handle files up to
c756c71c 563@math{2^63} bytes in length.
b07d03e0 564
a5a0310d
UD
565The return value of @code{pwrite} describes the number of written bytes.
566In the error case it returns @math{-1} like @code{write} does and the
04b9968b
UD
567error codes are also the same, with these additions:
568
a5a0310d
UD
569@table @code
570@item EINVAL
571The value given for @var{offset} is negative and therefore illegal.
572
573@item ESPIPE
04b9968b 574The file descriptor @var{filedes} is associated with a pipe or a FIFO and
a5a0310d
UD
575this device does not allow positioning of the file pointer.
576@end table
577
578The function is an extension defined in the Unix Single Specification
579version 2.
580@end deftypefun
581
b07d03e0 582@comment unistd.h
a3a4a74e 583@comment Unix98
b07d03e0
UD
584@deftypefun ssize_t pwrite64 (int @var{filedes}, const void *@var{buffer}, size_t @var{size}, off64_t @var{offset})
585This function is similar to the @code{pwrite} function. The difference
586is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 587@code{off_t} which makes it possible on 32 bit machines to address
c756c71c 588files larger than @math{2^31} bytes and up to @math{2^63} bytes. The
b07d03e0
UD
589file descriptor @code{filedes} must be opened using @code{open64} since
590otherwise the large offsets possible with @code{off64_t} will lead to
591errors with a descriptor in small file mode.
592
c756c71c 593When the source file is compiled using @code{_FILE_OFFSET_BITS == 64} on a
04b9968b
UD
59432 bit machine this function is actually available under the name
595@code{pwrite} and so transparently replaces the 32 bit interface.
b07d03e0
UD
596@end deftypefun
597
a5a0310d 598
28f540f4
RM
599@node File Position Primitive
600@section Setting the File Position of a Descriptor
601
602Just as you can set the file position of a stream with @code{fseek}, you
603can set the file position of a descriptor with @code{lseek}. This
604specifies the position in the file for the next @code{read} or
605@code{write} operation. @xref{File Positioning}, for more information
606on the file position and what it means.
607
608To read the current file position value from a descriptor, use
609@code{lseek (@var{desc}, 0, SEEK_CUR)}.
610
611@cindex file positioning on a file descriptor
612@cindex positioning a file descriptor
613@cindex seeking on a file descriptor
614@comment unistd.h
615@comment POSIX.1
616@deftypefun off_t lseek (int @var{filedes}, off_t @var{offset}, int @var{whence})
617The @code{lseek} function is used to change the file position of the
618file with descriptor @var{filedes}.
619
620The @var{whence} argument specifies how the @var{offset} should be
04b9968b
UD
621interpreted, in the same way as for the @code{fseek} function, and it must
622be one of the symbolic constants @code{SEEK_SET}, @code{SEEK_CUR}, or
28f540f4
RM
623@code{SEEK_END}.
624
625@table @code
626@item SEEK_SET
627Specifies that @var{whence} is a count of characters from the beginning
628of the file.
629
630@item SEEK_CUR
631Specifies that @var{whence} is a count of characters from the current
632file position. This count may be positive or negative.
633
634@item SEEK_END
635Specifies that @var{whence} is a count of characters from the end of
636the file. A negative count specifies a position within the current
637extent of the file; a positive count specifies a position past the
2c6fe0bd 638current end. If you set the position past the current end, and
28f540f4 639actually write data, you will extend the file with zeros up to that
336dfb2d
UD
640position.
641@end table
28f540f4
RM
642
643The return value from @code{lseek} is normally the resulting file
644position, measured in bytes from the beginning of the file.
645You can use this feature together with @code{SEEK_CUR} to read the
646current file position.
647
648If you want to append to the file, setting the file position to the
649current end of file with @code{SEEK_END} is not sufficient. Another
650process may write more data after you seek but before you write,
651extending the file so the position you write onto clobbers their data.
652Instead, use the @code{O_APPEND} operating mode; @pxref{Operating Modes}.
653
654You can set the file position past the current end of the file. This
655does not by itself make the file longer; @code{lseek} never changes the
656file. But subsequent output at that position will extend the file.
657Characters between the previous end of file and the new position are
658filled with zeros. Extending the file in this way can create a
659``hole'': the blocks of zeros are not actually allocated on disk, so the
660file takes up less space than it appears so; it is then called a
661``sparse file''.
662@cindex sparse files
663@cindex holes in files
664
665If the file position cannot be changed, or the operation is in some way
07435eb4 666invalid, @code{lseek} returns a value of @math{-1}. The following
28f540f4
RM
667@code{errno} error conditions are defined for this function:
668
669@table @code
670@item EBADF
671The @var{filedes} is not a valid file descriptor.
672
673@item EINVAL
674The @var{whence} argument value is not valid, or the resulting
675file offset is not valid. A file offset is invalid.
676
677@item ESPIPE
678The @var{filedes} corresponds to an object that cannot be positioned,
679such as a pipe, FIFO or terminal device. (POSIX.1 specifies this error
680only for pipes and FIFOs, but in the GNU system, you always get
681@code{ESPIPE} if the object is not seekable.)
682@end table
683
b07d03e0
UD
684When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
685@code{lseek} function is in fact @code{lseek64} and the type
686@code{off_t} has 64 bits which makes it possible to handle files up to
c756c71c 687@math{2^63} bytes in length.
b07d03e0 688
04b9968b 689This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
690is a problem if the thread allocates some resources (like memory, file
691descriptors, semaphores or whatever) at the time @code{lseek} is
04b9968b 692called. If the thread gets cancelled these resources stay allocated
dfd2257a 693until the program ends. To avoid this calls to @code{lseek} should be
04b9968b 694protected using cancellation handlers.
dfd2257a
UD
695@c ref pthread_cleanup_push / pthread_cleanup_pop
696
28f540f4 697The @code{lseek} function is the underlying primitive for the
dfd2257a
UD
698@code{fseek}, @code{fseeko}, @code{ftell}, @code{ftello} and
699@code{rewind} functions, which operate on streams instead of file
700descriptors.
28f540f4
RM
701@end deftypefun
702
b07d03e0 703@comment unistd.h
a3a4a74e 704@comment Unix98
b07d03e0
UD
705@deftypefun off64_t lseek64 (int @var{filedes}, off64_t @var{offset}, int @var{whence})
706This function is similar to the @code{lseek} function. The difference
707is that the @var{offset} parameter is of type @code{off64_t} instead of
04b9968b 708@code{off_t} which makes it possible on 32 bit machines to address
c756c71c 709files larger than @math{2^31} bytes and up to @math{2^63} bytes. The
b07d03e0
UD
710file descriptor @code{filedes} must be opened using @code{open64} since
711otherwise the large offsets possible with @code{off64_t} will lead to
712errors with a descriptor in small file mode.
713
c756c71c 714When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
b07d03e0 71532 bits machine this function is actually available under the name
04b9968b 716@code{lseek} and so transparently replaces the 32 bit interface.
b07d03e0
UD
717@end deftypefun
718
28f540f4 719You can have multiple descriptors for the same file if you open the file
2c6fe0bd 720more than once, or if you duplicate a descriptor with @code{dup}.
28f540f4
RM
721Descriptors that come from separate calls to @code{open} have independent
722file positions; using @code{lseek} on one descriptor has no effect on the
2c6fe0bd 723other. For example,
28f540f4
RM
724
725@smallexample
726@group
727@{
728 int d1, d2;
729 char buf[4];
730 d1 = open ("foo", O_RDONLY);
731 d2 = open ("foo", O_RDONLY);
732 lseek (d1, 1024, SEEK_SET);
733 read (d2, buf, 4);
734@}
735@end group
736@end smallexample
737
738@noindent
739will read the first four characters of the file @file{foo}. (The
740error-checking code necessary for a real program has been omitted here
741for brevity.)
742
743By contrast, descriptors made by duplication share a common file
744position with the original descriptor that was duplicated. Anything
745which alters the file position of one of the duplicates, including
746reading or writing data, affects all of them alike. Thus, for example,
747
748@smallexample
749@{
750 int d1, d2, d3;
751 char buf1[4], buf2[4];
752 d1 = open ("foo", O_RDONLY);
753 d2 = dup (d1);
754 d3 = dup (d2);
755 lseek (d3, 1024, SEEK_SET);
756 read (d1, buf1, 4);
757 read (d2, buf2, 4);
758@}
759@end smallexample
760
761@noindent
762will read four characters starting with the 1024'th character of
763@file{foo}, and then four more characters starting with the 1028'th
764character.
765
766@comment sys/types.h
767@comment POSIX.1
768@deftp {Data Type} off_t
769This is an arithmetic data type used to represent file sizes.
770In the GNU system, this is equivalent to @code{fpos_t} or @code{long int}.
a3a4a74e
UD
771
772If the source is compiled with @code{_FILE_OFFSET_BITS == 64} this type
773is transparently replaced by @code{off64_t}.
28f540f4
RM
774@end deftp
775
b07d03e0 776@comment sys/types.h
a3a4a74e 777@comment Unix98
b07d03e0
UD
778@deftp {Data Type} off64_t
779This type is used similar to @code{off_t}. The difference is that even
04b9968b 780on 32 bit machines, where the @code{off_t} type would have 32 bits,
b07d03e0
UD
781@code{off64_t} has 64 bits and so is able to address files up to
782@math{2^63} bytes in length.
a3a4a74e
UD
783
784When compiling with @code{_FILE_OFFSET_BITS == 64} this type is
785available under the name @code{off_t}.
b07d03e0
UD
786@end deftp
787
28f540f4
RM
788These aliases for the @samp{SEEK_@dots{}} constants exist for the sake
789of compatibility with older BSD systems. They are defined in two
790different header files: @file{fcntl.h} and @file{sys/file.h}.
791
792@table @code
793@item L_SET
794An alias for @code{SEEK_SET}.
795
796@item L_INCR
797An alias for @code{SEEK_CUR}.
798
799@item L_XTND
800An alias for @code{SEEK_END}.
801@end table
802
803@node Descriptors and Streams
804@section Descriptors and Streams
805@cindex streams, and file descriptors
806@cindex converting file descriptor to stream
807@cindex extracting file descriptor from stream
808
809Given an open file descriptor, you can create a stream for it with the
810@code{fdopen} function. You can get the underlying file descriptor for
811an existing stream with the @code{fileno} function. These functions are
812declared in the header file @file{stdio.h}.
813@pindex stdio.h
814
815@comment stdio.h
816@comment POSIX.1
817@deftypefun {FILE *} fdopen (int @var{filedes}, const char *@var{opentype})
818The @code{fdopen} function returns a new stream for the file descriptor
819@var{filedes}.
820
821The @var{opentype} argument is interpreted in the same way as for the
822@code{fopen} function (@pxref{Opening Streams}), except that
823the @samp{b} option is not permitted; this is because GNU makes no
824distinction between text and binary files. Also, @code{"w"} and
04b9968b 825@code{"w+"} do not cause truncation of the file; these have an effect only
28f540f4
RM
826when opening a file, and in this case the file has already been opened.
827You must make sure that the @var{opentype} argument matches the actual
828mode of the open file descriptor.
829
830The return value is the new stream. If the stream cannot be created
831(for example, if the modes for the file indicated by the file descriptor
832do not permit the access specified by the @var{opentype} argument), a
833null pointer is returned instead.
834
835In some other systems, @code{fdopen} may fail to detect that the modes
836for file descriptor do not permit the access specified by
837@code{opentype}. The GNU C library always checks for this.
838@end deftypefun
839
840For an example showing the use of the @code{fdopen} function,
841see @ref{Creating a Pipe}.
842
843@comment stdio.h
844@comment POSIX.1
845@deftypefun int fileno (FILE *@var{stream})
846This function returns the file descriptor associated with the stream
847@var{stream}. If an error is detected (for example, if the @var{stream}
848is not valid) or if @var{stream} does not do I/O to a file,
07435eb4 849@code{fileno} returns @math{-1}.
28f540f4
RM
850@end deftypefun
851
852@cindex standard file descriptors
853@cindex file descriptors, standard
854There are also symbolic constants defined in @file{unistd.h} for the
855file descriptors belonging to the standard streams @code{stdin},
856@code{stdout}, and @code{stderr}; see @ref{Standard Streams}.
857@pindex unistd.h
858
859@comment unistd.h
860@comment POSIX.1
861@table @code
862@item STDIN_FILENO
863@vindex STDIN_FILENO
864This macro has value @code{0}, which is the file descriptor for
865standard input.
866@cindex standard input file descriptor
867
868@comment unistd.h
869@comment POSIX.1
870@item STDOUT_FILENO
871@vindex STDOUT_FILENO
872This macro has value @code{1}, which is the file descriptor for
873standard output.
874@cindex standard output file descriptor
875
876@comment unistd.h
877@comment POSIX.1
878@item STDERR_FILENO
879@vindex STDERR_FILENO
880This macro has value @code{2}, which is the file descriptor for
881standard error output.
882@end table
883@cindex standard error file descriptor
884
885@node Stream/Descriptor Precautions
886@section Dangers of Mixing Streams and Descriptors
887@cindex channels
888@cindex streams and descriptors
889@cindex descriptors and streams
890@cindex mixing descriptors and streams
891
892You can have multiple file descriptors and streams (let's call both
893streams and descriptors ``channels'' for short) connected to the same
894file, but you must take care to avoid confusion between channels. There
895are two cases to consider: @dfn{linked} channels that share a single
896file position value, and @dfn{independent} channels that have their own
897file positions.
898
899It's best to use just one channel in your program for actual data
900transfer to any given file, except when all the access is for input.
901For example, if you open a pipe (something you can only do at the file
902descriptor level), either do all I/O with the descriptor, or construct a
903stream from the descriptor with @code{fdopen} and then do all I/O with
904the stream.
905
906@menu
907* Linked Channels:: Dealing with channels sharing a file position.
908* Independent Channels:: Dealing with separately opened, unlinked channels.
2c6fe0bd 909* Cleaning Streams:: Cleaning a stream makes it safe to use
28f540f4
RM
910 another channel.
911@end menu
912
913@node Linked Channels
914@subsection Linked Channels
915@cindex linked channels
916
917Channels that come from a single opening share the same file position;
918we call them @dfn{linked} channels. Linked channels result when you
919make a stream from a descriptor using @code{fdopen}, when you get a
920descriptor from a stream with @code{fileno}, when you copy a descriptor
921with @code{dup} or @code{dup2}, and when descriptors are inherited
922during @code{fork}. For files that don't support random access, such as
923terminals and pipes, @emph{all} channels are effectively linked. On
924random-access files, all append-type output streams are effectively
925linked to each other.
926
927@cindex cleaning up a stream
928If you have been using a stream for I/O, and you want to do I/O using
929another channel (either a stream or a descriptor) that is linked to it,
930you must first @dfn{clean up} the stream that you have been using.
931@xref{Cleaning Streams}.
932
933Terminating a process, or executing a new program in the process,
934destroys all the streams in the process. If descriptors linked to these
935streams persist in other processes, their file positions become
936undefined as a result. To prevent this, you must clean up the streams
937before destroying them.
938
939@node Independent Channels
940@subsection Independent Channels
941@cindex independent channels
942
943When you open channels (streams or descriptors) separately on a seekable
944file, each channel has its own file position. These are called
945@dfn{independent channels}.
946
947The system handles each channel independently. Most of the time, this
948is quite predictable and natural (especially for input): each channel
949can read or write sequentially at its own place in the file. However,
950if some of the channels are streams, you must take these precautions:
951
952@itemize @bullet
953@item
954You should clean an output stream after use, before doing anything else
955that might read or write from the same part of the file.
956
957@item
958You should clean an input stream before reading data that may have been
959modified using an independent channel. Otherwise, you might read
960obsolete data that had been in the stream's buffer.
961@end itemize
962
963If you do output to one channel at the end of the file, this will
964certainly leave the other independent channels positioned somewhere
965before the new end. You cannot reliably set their file positions to the
966new end of file before writing, because the file can always be extended
967by another process between when you set the file position and when you
968write the data. Instead, use an append-type descriptor or stream; they
969always output at the current end of the file. In order to make the
970end-of-file position accurate, you must clean the output channel you
971were using, if it is a stream.
972
973It's impossible for two channels to have separate file pointers for a
974file that doesn't support random access. Thus, channels for reading or
975writing such files are always linked, never independent. Append-type
976channels are also always linked. For these channels, follow the rules
977for linked channels; see @ref{Linked Channels}.
978
979@node Cleaning Streams
980@subsection Cleaning Streams
981
982On the GNU system, you can clean up any stream with @code{fclean}:
983
984@comment stdio.h
985@comment GNU
986@deftypefun int fclean (FILE *@var{stream})
987Clean up the stream @var{stream} so that its buffer is empty. If
988@var{stream} is doing output, force it out. If @var{stream} is doing
989input, give the data in the buffer back to the system, arranging to
990reread it.
991@end deftypefun
992
993On other systems, you can use @code{fflush} to clean a stream in most
994cases.
995
996You can skip the @code{fclean} or @code{fflush} if you know the stream
997is already clean. A stream is clean whenever its buffer is empty. For
998example, an unbuffered stream is always clean. An input stream that is
999at end-of-file is clean. A line-buffered stream is clean when the last
1000character output was a newline.
1001
1002There is one case in which cleaning a stream is impossible on most
1003systems. This is when the stream is doing input from a file that is not
1004random-access. Such streams typically read ahead, and when the file is
1005not random access, there is no way to give back the excess data already
1006read. When an input stream reads from a random-access file,
1007@code{fflush} does clean the stream, but leaves the file pointer at an
1008unpredictable place; you must set the file pointer before doing any
1009further I/O. On the GNU system, using @code{fclean} avoids both of
1010these problems.
1011
1012Closing an output-only stream also does @code{fflush}, so this is a
1013valid way of cleaning an output stream. On the GNU system, closing an
1014input stream does @code{fclean}.
1015
1016You need not clean a stream before using its descriptor for control
1017operations such as setting terminal modes; these operations don't affect
1018the file position and are not affected by it. You can use any
1019descriptor for these operations, and all channels are affected
1020simultaneously. However, text already ``output'' to a stream but still
1021buffered by the stream will be subject to the new terminal modes when
1022subsequently flushed. To make sure ``past'' output is covered by the
1023terminal settings that were in effect at the time, flush the output
1024streams for that terminal before setting the modes. @xref{Terminal
1025Modes}.
1026
07435eb4
UD
1027@node Scatter-Gather
1028@section Fast Scatter-Gather I/O
1029@cindex scatter-gather
1030
1031Some applications may need to read or write data to multiple buffers,
04b9968b 1032which are separated in memory. Although this can be done easily enough
07435eb4
UD
1033with multiple calls to @code{read} and @code{write}, it is inefficent
1034because there is overhead associated with each kernel call.
1035
1036Instead, many platforms provide special high-speed primitives to perform
1037these @dfn{scatter-gather} operations in a single kernel call. The GNU C
1038library will provide an emulation on any system that lacks these
1039primitives, so they are not a portability threat. They are defined in
1040@code{sys/uio.h}.
1041
1042These functions are controlled with arrays of @code{iovec} structures,
1043which describe the location and size of each buffer.
1044
1045@deftp {Data Type} {struct iovec}
1046
1047The @code{iovec} structure describes a buffer. It contains two fields:
1048
1049@table @code
1050
1051@item void *iov_base
1052Contains the address of a buffer.
1053
1054@item size_t iov_len
1055Contains the length of the buffer.
1056
1057@end table
1058@end deftp
1059
1060@deftypefun ssize_t readv (int @var{filedes}, const struct iovec *@var{vector}, int @var{count})
1061
1062The @code{readv} function reads data from @var{filedes} and scatters it
1063into the buffers described in @var{vector}, which is taken to be
1064@var{count} structures long. As each buffer is filled, data is sent to the
1065next.
1066
1067Note that @code{readv} is not guaranteed to fill all the buffers.
1068It may stop at any point, for the same reasons @code{read} would.
1069
1070The return value is a count of bytes (@emph{not} buffers) read, @math{0}
1071indicating end-of-file, or @math{-1} indicating an error. The possible
1072errors are the same as in @code{read}.
1073
1074@end deftypefun
1075
1076@deftypefun ssize_t writev (int @var{filedes}, const struct iovec *@var{vector}, int @var{count})
1077
1078The @code{writev} function gathers data from the buffers described in
1079@var{vector}, which is taken to be @var{count} structures long, and writes
1080them to @code{filedes}. As each buffer is written, it moves on to the
1081next.
1082
1083Like @code{readv}, @code{writev} may stop midstream under the same
1084conditions @code{write} would.
1085
1086The return value is a count of bytes written, or @math{-1} indicating an
1087error. The possible errors are the same as in @code{write}.
1088
1089@end deftypefun
1090
1091@c Note - I haven't read this anywhere. I surmised it from my knowledge
1092@c of computer science. Thus, there could be subtleties I'm missing.
1093
1094Note that if the buffers are small (under about 1kB), high-level streams
1095may be easier to use than these functions. However, @code{readv} and
1096@code{writev} are more efficient when the individual buffers themselves
1097(as opposed to the total output), are large. In that case, a high-level
1098stream would not be able to cache the data effectively.
1099
1100@node Memory-mapped I/O
1101@section Memory-mapped I/O
1102
1103On modern operating systems, it is possible to @dfn{mmap} (pronounced
1104``em-map'') a file to a region of memory. When this is done, the file can
1105be accessed just like an array in the program.
1106
04b9968b
UD
1107This is more efficent than @code{read} or @code{write}, as only the regions
1108of the file that a program actually accesses are loaded. Accesses to
07435eb4
UD
1109not-yet-loaded parts of the mmapped region are handled in the same way as
1110swapped out pages.
1111
1112Since mmapped pages can be stored back to their file when physical memory
1113is low, it is possible to mmap files orders of magnitude larger than both
1114the physical memory @emph{and} swap space. The only limit is address
1115space. The theoretical limit is 4GB on a 32-bit machine - however, the
1116actual limit will be smaller since some areas will be reserved for other
1117purposes.
1118
1119Memory mapping only works on entire pages of memory. Thus, addresses
1120for mapping must be page-aligned, and length values will be rounded up.
1121To determine the size of a page the machine uses one should use
1122
1123@smallexample
1124size_t page_size = (size_t) sysconf (_SC_PAGESIZE);
1125@end smallexample
1126
1127These functions are declared in @file{sys/mman.h}.
1128
1129@deftypefun {void *} mmap (void *@var{address}, size_t @var{length},int @var{protect}, int @var{flags}, int @var{filedes}, off_t @var{offset})
1130
1131The @code{mmap} function creates a new mapping, connected to bytes
1132(@var{offset}) to (@var{offset} + @var{length}) in the file open on
1133@var{filedes}.
1134
1135@var{address} gives a preferred starting address for the mapping.
1136@code{NULL} expresses no preference. Any previous mapping at that
1137address is automatically removed. The address you give may still be
1138changed, unless you use the @code{MAP_FIXED} flag.
1139
1140@vindex PROT_READ
1141@vindex PROT_WRITE
1142@vindex PROT_EXEC
1143@var{protect} contains flags that control what kind of access is
1144permitted. They include @code{PROT_READ}, @code{PROT_WRITE}, and
1145@code{PROT_EXEC}, which permit reading, writing, and execution,
1146respectively. Inappropriate access will cause a segfault (@pxref{Program
1147Error Signals}).
1148
1149Note that most hardware designs cannot support write permission without
1150read permission, and many do not distinguish read and execute permission.
49c091e5 1151Thus, you may receive wider permissions than you ask for, and mappings of
07435eb4
UD
1152write-only files may be denied even if you do not use @code{PROT_READ}.
1153
1154@var{flags} contains flags that control the nature of the map.
1155One of @code{MAP_SHARED} or @code{MAP_PRIVATE} must be specified.
1156
1157They include:
1158
1159@vtable @code
1160@item MAP_PRIVATE
1161This specifies that writes to the region should never be written back
1162to the attached file. Instead, a copy is made for the process, and the
1163region will be swapped normally if memory runs low. No other process will
1164see the changes.
1165
1166Since private mappings effectively revert to ordinary memory
1167when written to, you must have enough virtual memory for a copy of
1168the entire mmapped region if you use this mode with @code{PROT_WRITE}.
1169
1170@item MAP_SHARED
1171This specifies that writes to the region will be written back to the
1172file. Changes made will be shared immediately with other processes
1173mmaping the same file.
1174
1175Note that actual writing may take place at any time. You need to use
1176@code{msync}, described below, if it is important that other processes
1177using conventional I/O get a consistent view of the file.
1178
1179@item MAP_FIXED
1180This forces the system to use the exact mapping address specified in
1181@var{address} and fail if it can't.
1182
1183@c One of these is official - the other is obviously an obsolete synonym
1184@c Which is which?
1185@item MAP_ANONYMOUS
1186@itemx MAP_ANON
1187This flag tells the system to create an anonymous mapping, not connected
1188to a file. @var{filedes} and @var{off} are ignored, and the region is
1189initialized with zeros.
1190
1191Anonymous maps are used as the basic primitive to extend the heap on some
1192systems. They are also useful to share data between multiple tasks
1193without creating a file.
1194
49c091e5 1195On some systems using private anonymous mmaps is more efficient than using
07435eb4
UD
1196@code{malloc} for large blocks. This is not an issue with the GNU C library,
1197as the included @code{malloc} automatically uses @code{mmap} where appropriate.
1198
1199@c Linux has some other MAP_ options, which I have not discussed here.
1200@c MAP_DENYWRITE, MAP_EXECUTABLE and MAP_GROWSDOWN don't seem applicable to
1201@c user programs (and I don't understand the last two). MAP_LOCKED does
1202@c not appear to be implemented.
1203
1204@end vtable
1205
1206@code{mmap} returns the address of the new mapping, or @math{-1} for an
1207error.
1208
1209Possible errors include:
1210
1211@table @code
1212
1213@item EINVAL
1214
1215Either @var{address} was unusable, or inconsistent @var{flags} were
1216given.
1217
1218@item EACCES
1219
1220@var{filedes} was not open for the type of access specified in @var{protect}.
1221
1222@item ENOMEM
1223
1224Either there is not enough memory for the operation, or the process is
1225out of address space.
1226
1227@item ENODEV
1228
1229This file is of a type that doesn't support mapping.
1230
1231@item ENOEXEC
1232
1233The file is on a filesystem that doesn't support mapping.
1234
1235@c On Linux, EAGAIN will appear if the file has a conflicting mandatory lock.
1236@c However mandatory locks are not discussed in this manual.
1237@c
1238@c Similarly, ETXTBSY will occur if the MAP_DENYWRITE flag (not documented
1239@c here) is used and the file is already open for writing.
1240
1241@end table
1242
1243@end deftypefun
1244
1245@deftypefun int munmap (void *@var{addr}, size_t @var{length})
1246
1247@code{munmap} removes any memory maps from (@var{addr}) to (@var{addr} +
1248@var{length}). @var{length} should be the length of the mapping.
1249
04b9968b 1250It is safe to unmap multiple mappings in one command, or include unmapped
07435eb4 1251space in the range. It is also possible to unmap only part of an existing
04b9968b 1252mapping. However, only entire pages can be removed. If @var{length} is not
07435eb4
UD
1253an even number of pages, it will be rounded up.
1254
1255It returns @math{0} for success and @math{-1} for an error.
1256
1257One error is possible:
1258
1259@table @code
1260
1261@item EINVAL
04b9968b 1262The memory range given was outside the user mmap range or wasn't page
07435eb4
UD
1263aligned.
1264
1265@end table
1266
1267@end deftypefun
1268
1269@deftypefun int msync (void *@var{address}, size_t @var{length}, int @var{flags})
1270
1271When using shared mappings, the kernel can write the file at any time
1272before the mapping is removed. To be certain data has actually been
49c091e5
UD
1273written to the file and will be accessible to non-memory-mapped I/O, it
1274is necessary to use this function.
07435eb4
UD
1275
1276It operates on the region @var{address} to (@var{address} + @var{length}).
1277It may be used on part of a mapping or multiple mappings, however the
1278region given should not contain any unmapped space.
1279
1280@var{flags} can contain some options:
1281
1282@vtable @code
1283
1284@item MS_SYNC
1285
1286This flag makes sure the data is actually written @emph{to disk}.
1287Normally @code{msync} only makes sure that accesses to a file with
1288conventional I/O reflect the recent changes.
1289
1290@item MS_ASYNC
1291
1292This tells @code{msync} to begin the synchronization, but not to wait for
1293it to complete.
1294
1295@c Linux also has MS_INVALIDATE, which I don't understand.
1296
1297@end vtable
1298
1299@code{msync} returns @math{0} for success and @math{-1} for
1300error. Errors include:
1301
1302@table @code
1303
1304@item EINVAL
1305An invalid region was given, or the @var{flags} were invalid.
1306
1307@item EFAULT
1308There is no existing mapping in at least part of the given region.
1309
1310@end table
1311
1312@end deftypefun
1313
1314@deftypefun {void *} mremap (void *@var{address}, size_t @var{length}, size_t @var{new_length}, int @var{flag})
1315
1316This function can be used to change the size of an existing memory
1317area. @var{address} and @var{length} must cover a region entirely mapped
1318in the same @code{mmap} statement. A new mapping with the same
04b9968b 1319characteristics will be returned with the length @var{new_length}.
07435eb4
UD
1320
1321One option is possible, @code{MREMAP_MAYMOVE}. If it is given in
1322@var{flags}, the system may remove the existing mapping and create a new
1323one of the desired length in another location.
1324
1325The address of the resulting mapping is returned, or @math{-1}. Possible
1326error codes include:
1327
07435eb4
UD
1328@table @code
1329
1330@item EFAULT
1331There is no existing mapping in at least part of the original region, or
1332the region covers two or more distinct mappings.
1333
1334@item EINVAL
1335The address given is misaligned or inappropriate.
1336
1337@item EAGAIN
1338The region has pages locked, and if extended it would exceed the
1339process's resource limit for locked pages. @xref{Limits on Resources}.
1340
1341@item ENOMEM
04b9968b 1342The region is private writeable, and insufficent virtual memory is
07435eb4
UD
1343available to extend it. Also, this error will occur if
1344@code{MREMAP_MAYMOVE} is not given and the extension would collide with
1345another mapped region.
1346
1347@end table
1348@end deftypefun
1349
04b9968b
UD
1350This function is only available on a few systems. Except for performing
1351optional optimizations one should not rely on this function.
1352
07435eb4
UD
1353Not all file descriptors may be mapped. Sockets, pipes, and most devices
1354only allow sequential access and do not fit into the mapping abstraction.
1355In addition, some regular files may not be mmapable, and older kernels may
1356not support mapping at all. Thus, programs using @code{mmap} should
1357have a fallback method to use should it fail. @xref{Mmap,,,standards,GNU
1358Coding Standards}.
1359
1360@c XXX madvice documentation missing
1361
28f540f4
RM
1362@node Waiting for I/O
1363@section Waiting for Input or Output
1364@cindex waiting for input or output
1365@cindex multiplexing input
1366@cindex input from multiple files
1367
1368Sometimes a program needs to accept input on multiple input channels
1369whenever input arrives. For example, some workstations may have devices
1370such as a digitizing tablet, function button box, or dial box that are
1371connected via normal asynchronous serial interfaces; good user interface
1372style requires responding immediately to input on any device. Another
1373example is a program that acts as a server to several other processes
1374via pipes or sockets.
1375
1376You cannot normally use @code{read} for this purpose, because this
1377blocks the program until input is available on one particular file
1378descriptor; input on other channels won't wake it up. You could set
1379nonblocking mode and poll each file descriptor in turn, but this is very
1380inefficient.
1381
1382A better solution is to use the @code{select} function. This blocks the
1383program until input or output is ready on a specified set of file
1384descriptors, or until a timer expires, whichever comes first. This
1385facility is declared in the header file @file{sys/types.h}.
1386@pindex sys/types.h
1387
1388In the case of a server socket (@pxref{Listening}), we say that
1389``input'' is available when there are pending connections that could be
1390accepted (@pxref{Accepting Connections}). @code{accept} for server
1391sockets blocks and interacts with @code{select} just as @code{read} does
1392for normal input.
1393
1394@cindex file descriptor sets, for @code{select}
1395The file descriptor sets for the @code{select} function are specified
1396as @code{fd_set} objects. Here is the description of the data type
1397and some macros for manipulating these objects.
1398
1399@comment sys/types.h
1400@comment BSD
1401@deftp {Data Type} fd_set
1402The @code{fd_set} data type represents file descriptor sets for the
1403@code{select} function. It is actually a bit array.
1404@end deftp
1405
1406@comment sys/types.h
1407@comment BSD
1408@deftypevr Macro int FD_SETSIZE
1409The value of this macro is the maximum number of file descriptors that a
1410@code{fd_set} object can hold information about. On systems with a
1411fixed maximum number, @code{FD_SETSIZE} is at least that number. On
1412some systems, including GNU, there is no absolute limit on the number of
1413descriptors open, but this macro still has a constant value which
1414controls the number of bits in an @code{fd_set}; if you get a file
1415descriptor with a value as high as @code{FD_SETSIZE}, you cannot put
1416that descriptor into an @code{fd_set}.
1417@end deftypevr
1418
1419@comment sys/types.h
1420@comment BSD
1421@deftypefn Macro void FD_ZERO (fd_set *@var{set})
1422This macro initializes the file descriptor set @var{set} to be the
1423empty set.
1424@end deftypefn
1425
1426@comment sys/types.h
1427@comment BSD
1428@deftypefn Macro void FD_SET (int @var{filedes}, fd_set *@var{set})
1429This macro adds @var{filedes} to the file descriptor set @var{set}.
1430@end deftypefn
1431
1432@comment sys/types.h
1433@comment BSD
1434@deftypefn Macro void FD_CLR (int @var{filedes}, fd_set *@var{set})
1435This macro removes @var{filedes} from the file descriptor set @var{set}.
1436@end deftypefn
1437
1438@comment sys/types.h
1439@comment BSD
1440@deftypefn Macro int FD_ISSET (int @var{filedes}, fd_set *@var{set})
1441This macro returns a nonzero value (true) if @var{filedes} is a member
3081378b 1442of the file descriptor set @var{set}, and zero (false) otherwise.
28f540f4
RM
1443@end deftypefn
1444
1445Next, here is the description of the @code{select} function itself.
1446
1447@comment sys/types.h
1448@comment BSD
1449@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})
1450The @code{select} function blocks the calling process until there is
1451activity on any of the specified sets of file descriptors, or until the
1452timeout period has expired.
1453
1454The file descriptors specified by the @var{read-fds} argument are
1455checked to see if they are ready for reading; the @var{write-fds} file
1456descriptors are checked to see if they are ready for writing; and the
1457@var{except-fds} file descriptors are checked for exceptional
1458conditions. You can pass a null pointer for any of these arguments if
1459you are not interested in checking for that kind of condition.
1460
d07e37e2 1461A file descriptor is considered ready for reading if it is not at end of
28f540f4
RM
1462file. A server socket is considered ready for reading if there is a
1463pending connection which can be accepted with @code{accept};
1464@pxref{Accepting Connections}. A client socket is ready for writing when
1465its connection is fully established; @pxref{Connecting}.
1466
1467``Exceptional conditions'' does not mean errors---errors are reported
1468immediately when an erroneous system call is executed, and do not
1469constitute a state of the descriptor. Rather, they include conditions
1470such as the presence of an urgent message on a socket. (@xref{Sockets},
1471for information on urgent messages.)
1472
1473The @code{select} function checks only the first @var{nfds} file
1474descriptors. The usual thing is to pass @code{FD_SETSIZE} as the value
1475of this argument.
1476
1477The @var{timeout} specifies the maximum time to wait. If you pass a
1478null pointer for this argument, it means to block indefinitely until one
1479of the file descriptors is ready. Otherwise, you should provide the
1480time in @code{struct timeval} format; see @ref{High-Resolution
1481Calendar}. Specify zero as the time (a @code{struct timeval} containing
1482all zeros) if you want to find out which descriptors are ready without
1483waiting if none are ready.
1484
1485The normal return value from @code{select} is the total number of ready file
1486descriptors in all of the sets. Each of the argument sets is overwritten
1487with information about the descriptors that are ready for the corresponding
1488operation. Thus, to see if a particular descriptor @var{desc} has input,
1489use @code{FD_ISSET (@var{desc}, @var{read-fds})} after @code{select} returns.
1490
1491If @code{select} returns because the timeout period expires, it returns
1492a value of zero.
1493
1494Any signal will cause @code{select} to return immediately. So if your
1495program uses signals, you can't rely on @code{select} to keep waiting
1496for the full time specified. If you want to be sure of waiting for a
1497particular amount of time, you must check for @code{EINTR} and repeat
1498the @code{select} with a newly calculated timeout based on the current
1499time. See the example below. See also @ref{Interrupted Primitives}.
1500
1501If an error occurs, @code{select} returns @code{-1} and does not modify
2c6fe0bd 1502the argument file descriptor sets. The following @code{errno} error
28f540f4
RM
1503conditions are defined for this function:
1504
1505@table @code
1506@item EBADF
1507One of the file descriptor sets specified an invalid file descriptor.
1508
1509@item EINTR
1510The operation was interrupted by a signal. @xref{Interrupted Primitives}.
1511
1512@item EINVAL
1513The @var{timeout} argument is invalid; one of the components is negative
1514or too large.
1515@end table
1516@end deftypefun
1517
1518@strong{Portability Note:} The @code{select} function is a BSD Unix
1519feature.
1520
1521Here is an example showing how you can use @code{select} to establish a
1522timeout period for reading from a file descriptor. The @code{input_timeout}
1523function blocks the calling process until input is available on the
1524file descriptor, or until the timeout period expires.
1525
1526@smallexample
1527@include select.c.texi
1528@end smallexample
1529
1530There is another example showing the use of @code{select} to multiplex
1531input from multiple sockets in @ref{Server Example}.
1532
1533
dfd2257a
UD
1534@node Synchronizing I/O
1535@section Synchronizing I/O operations
1536
1537@cindex synchronizing
04b9968b 1538In most modern operating systems the normal I/O operations are not
dfd2257a
UD
1539executed synchronously. I.e., even if a @code{write} system call
1540returns this does not mean the data is actually written to the media,
1541e.g., the disk.
1542
04b9968b
UD
1543In situations where synchronization points are necessary,you can use
1544special functions which ensure that all operations finish before
dfd2257a
UD
1545they return.
1546
1547@comment unistd.h
1548@comment X/Open
1549@deftypefun int sync (void)
1550A call to this function will not return as long as there is data which
04b9968b 1551has not been written to the device. All dirty buffers in the kernel will
dfd2257a
UD
1552be written and so an overall consistent system can be achieved (if no
1553other process in parallel writes data).
1554
1555A prototype for @code{sync} can be found in @file{unistd.h}.
1556
1557The return value is zero to indicate no error.
1558@end deftypefun
1559
04b9968b
UD
1560Programs more often want to ensure that data written to a given file is
1561committed, rather than all data in the system. For this, @code{sync} is overkill.
1562
dfd2257a
UD
1563
1564@comment unistd.h
1565@comment POSIX
1566@deftypefun int fsync (int @var{fildes})
1567The @code{fsync} can be used to make sure all data associated with the
1568open file @var{fildes} is written to the device associated with the
1569descriptor. The function call does not return unless all actions have
1570finished.
1571
1572A prototype for @code{fsync} can be found in @file{unistd.h}.
1573
04b9968b 1574This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
1575is a problem if the thread allocates some resources (like memory, file
1576descriptors, semaphores or whatever) at the time @code{fsync} is
04b9968b
UD
1577called. If the thread gets cancelled these resources stay allocated
1578until the program ends. To avoid this, calls to @code{fsync} should be
1579protected using cancellation handlers.
dfd2257a
UD
1580@c ref pthread_cleanup_push / pthread_cleanup_pop
1581
49c091e5 1582The return value of the function is zero if no error occurred. Otherwise
dfd2257a
UD
1583it is @math{-1} and the global variable @var{errno} is set to the
1584following values:
1585@table @code
1586@item EBADF
1587The descriptor @var{fildes} is not valid.
1588
1589@item EINVAL
1590No synchronization is possible since the system does not implement this.
1591@end table
1592@end deftypefun
1593
1594Sometimes it is not even necessary to write all data associated with a
1595file descriptor. E.g., in database files which do not change in size it
1596is enough to write all the file content data to the device.
f2ea0f5b 1597Meta-information like the modification time etc. are not that important
dfd2257a
UD
1598and leaving such information uncommitted does not prevent a successful
1599recovering of the file in case of a problem.
1600
1601@comment unistd.h
1602@comment POSIX
1603@deftypefun int fdatasync (int @var{fildes})
04b9968b 1604When a call to the @code{fdatasync} function returns, it is ensured
dfd2257a 1605that all of the file data is written to the device. For all pending I/O
04b9968b 1606operations, the parts guaranteeing data integrity finished.
dfd2257a
UD
1607
1608Not all systems implement the @code{fdatasync} operation. On systems
1609missing this functionality @code{fdatasync} is emulated by a call to
1610@code{fsync} since the performed actions are a superset of those
1611required by @code{fdatasyn}.
1612
1613The prototype for @code{fdatasync} is in @file{unistd.h}.
1614
49c091e5 1615The return value of the function is zero if no error occurred. Otherwise
dfd2257a
UD
1616it is @math{-1} and the global variable @var{errno} is set to the
1617following values:
1618@table @code
1619@item EBADF
1620The descriptor @var{fildes} is not valid.
1621
1622@item EINVAL
1623No synchronization is possible since the system does not implement this.
1624@end table
1625@end deftypefun
1626
1627
b07d03e0
UD
1628@node Asynchronous I/O
1629@section Perform I/O Operations in Parallel
1630
1631The POSIX.1b standard defines a new set of I/O operations which can
04b9968b 1632significantly reduce the time an application spends waiting at I/O. The
b07d03e0 1633new functions allow a program to initiate one or more I/O operations and
04b9968b
UD
1634then immediately resume normal work while the I/O operations are
1635executed in parallel. This functionality is available if the
a3a4a74e 1636@file{unistd.h} file defines the symbol @code{_POSIX_ASYNCHRONOUS_IO}.
b07d03e0
UD
1637
1638These functions are part of the library with realtime functions named
1639@file{librt}. They are not actually part of the @file{libc} binary.
1640The implementation of these functions can be done using support in the
c756c71c
UD
1641kernel (if available) or using an implementation based on threads at
1642userlevel. In the latter case it might be necessary to link applications
fed8f7f7 1643with the thread library @file{libpthread} in addition to @file{librt}.
b07d03e0 1644
c756c71c 1645All AIO operations operate on files which were opened previously. There
04b9968b 1646might be arbitrarily many operations running for one file. The
b07d03e0
UD
1647asynchronous I/O operations are controlled using a data structure named
1648@code{struct aiocb} (@dfn{AIO control block}). It is defined in
1649@file{aio.h} as follows.
1650
1651@comment aio.h
1652@comment POSIX.1b
1653@deftp {Data Type} {struct aiocb}
1654The POSIX.1b standard mandates that the @code{struct aiocb} structure
1655contains at least the members described in the following table. There
04b9968b 1656might be more elements which are used by the implementation, but
b07d03e0
UD
1657depending on these elements is not portable and is highly deprecated.
1658
1659@table @code
1660@item int aio_fildes
1661This element specifies the file descriptor which is used for the
1662operation. It must be a legal descriptor since otherwise the operation
04b9968b 1663fails.
b07d03e0
UD
1664
1665The device on which the file is opened must allow the seek operation.
1666I.e., it is not possible to use any of the AIO operations on devices
1667like terminals where an @code{lseek} call would lead to an error.
1668
1669@item off_t aio_offset
fed8f7f7
UD
1670This element specifies at which offset in the file the operation (input
1671or output) is performed. Since the operations are carried out in arbitrary
b07d03e0
UD
1672order and more than one operation for one file descriptor can be
1673started, one cannot expect a current read/write position of the file
1674descriptor.
1675
1676@item volatile void *aio_buf
1677This is a pointer to the buffer with the data to be written or the place
c756c71c 1678where the read data is stored.
b07d03e0
UD
1679
1680@item size_t aio_nbytes
1681This element specifies the length of the buffer pointed to by @code{aio_buf}.
1682
1683@item int aio_reqprio
c756c71c
UD
1684If the platform has defined @code{_POSIX_PRIORITIZED_IO} and
1685@code{_POSIX_PRIORITY_SCHEDULING} the AIO requests are
b07d03e0
UD
1686processed based on the current scheduling priority. The
1687@code{aio_reqprio} element can then be used to lower the priority of the
1688AIO operation.
1689
1690@item struct sigevent aio_sigevent
1691This element specifies how the calling process is notified once the
fed8f7f7 1692operation terminates. If the @code{sigev_notify} element is
b07d03e0
UD
1693@code{SIGEV_NONE} no notification is send. If it is @code{SIGEV_SIGNAL}
1694the signal determined by @code{sigev_signo} is send. Otherwise
fed8f7f7 1695@code{sigev_notify} must be @code{SIGEV_THREAD}. In this case a thread
c756c71c 1696is created which starts executing the function pointed to by
b07d03e0
UD
1697@code{sigev_notify_function}.
1698
1699@item int aio_lio_opcode
1700This element is only used by the @code{lio_listio} and
04b9968b
UD
1701@code{lio_listio64} functions. Since these functions allow an
1702arbitrary number of operations to start at once, and each operation can be
1703input or output (or nothing), the information must be stored in the
b07d03e0
UD
1704control block. The possible values are:
1705
1706@vtable @code
1707@item LIO_READ
1708Start a read operation. Read from the file at position
1709@code{aio_offset} and store the next @code{aio_nbytes} bytes in the
1710buffer pointed to by @code{aio_buf}.
1711
1712@item LIO_WRITE
1713Start a write operation. Write @code{aio_nbytes} bytes starting at
1714@code{aio_buf} into the file starting at position @code{aio_offset}.
1715
1716@item LIO_NOP
1717Do nothing for this control block. This value is useful sometimes when
1718an array of @code{struct aiocb} values contains holes, i.e., some of the
fed8f7f7 1719values must not be handled although the whole array is presented to the
b07d03e0
UD
1720@code{lio_listio} function.
1721@end vtable
1722@end table
a3a4a74e 1723
fed8f7f7 1724When the sources are compiled using @code{_FILE_OFFSET_BITS == 64} on a
04b9968b 172532 bit machine this type is in fact @code{struct aiocb64} since the LFS
a3a4a74e
UD
1726interface transparently replaces the @code{struct aiocb} definition.
1727@end deftp
1728
1729For use with the AIO functions defined in the LFS there is a similar type
1730defined which replaces the types of the appropriate members with larger
04b9968b 1731types but otherwise is equivalent to @code{struct aiocb}. Particularly,
a3a4a74e
UD
1732all member names are the same.
1733
1734@comment aio.h
1735@comment POSIX.1b
1736@deftp {Data Type} {struct aiocb64}
1737@table @code
1738@item int aio_fildes
1739This element specifies the file descriptor which is used for the
1740operation. It must be a legal descriptor since otherwise the operation
1741fails for obvious reasons.
1742
1743The device on which the file is opened must allow the seek operation.
1744I.e., it is not possible to use any of the AIO operations on devices
1745like terminals where an @code{lseek} call would lead to an error.
1746
1747@item off64_t aio_offset
04b9968b 1748This element specifies at which offset in the file the operation (input
a3a4a74e
UD
1749or output) is performed. Since the operation are carried in arbitrary
1750order and more than one operation for one file descriptor can be
1751started, one cannot expect a current read/write position of the file
1752descriptor.
1753
1754@item volatile void *aio_buf
1755This is a pointer to the buffer with the data to be written or the place
1756where the ead data is stored.
1757
1758@item size_t aio_nbytes
1759This element specifies the length of the buffer pointed to by @code{aio_buf}.
1760
1761@item int aio_reqprio
1762If for the platform @code{_POSIX_PRIORITIZED_IO} and
04b9968b 1763@code{_POSIX_PRIORITY_SCHEDULING} are defined the AIO requests are
a3a4a74e
UD
1764processed based on the current scheduling priority. The
1765@code{aio_reqprio} element can then be used to lower the priority of the
1766AIO operation.
1767
1768@item struct sigevent aio_sigevent
1769This element specifies how the calling process is notified once the
fed8f7f7 1770operation terminates. If the @code{sigev_notify} element is
04b9968b
UD
1771@code{SIGEV_NONE} no notification is sent. If it is @code{SIGEV_SIGNAL}
1772the signal determined by @code{sigev_signo} is sent. Otherwise
a3a4a74e 1773@code{sigev_notify} must be @code{SIGEV_THREAD} in which case a thread
04b9968b 1774which starts executing the function pointed to by
a3a4a74e
UD
1775@code{sigev_notify_function}.
1776
1777@item int aio_lio_opcode
1778This element is only used by the @code{lio_listio} and
04b9968b
UD
1779@code{[lio_listio64} functions. Since these functions allow an
1780arbitrary number of operations to start at once, and since each operation can be
1781input or output (or nothing), the information must be stored in the
a3a4a74e
UD
1782control block. See the description of @code{struct aiocb} for a description
1783of the possible values.
1784@end table
1785
1786When the sources are compiled using @code{_FILE_OFFSET_BITS == 64} on a
04b9968b 178732 bit machine this type is available under the name @code{struct
a3a4a74e 1788aiocb64} since the LFS replaces transparently the old interface.
b07d03e0
UD
1789@end deftp
1790
1791@menu
a3a4a74e
UD
1792* Asynchronous Reads/Writes:: Asynchronous Read and Write Operations.
1793* Status of AIO Operations:: Getting the Status of AIO Operations.
1794* Synchronizing AIO Operations:: Getting into a consistent state.
04b9968b 1795* Cancel AIO Operations:: Cancellation of AIO Operations.
a3a4a74e 1796* Configuration of AIO:: How to optimize the AIO implementation.
b07d03e0
UD
1797@end menu
1798
a3a4a74e
UD
1799@node Asynchronous Reads/Writes
1800@subsection Asynchronous Read and Write Operations
b07d03e0
UD
1801
1802@comment aio.h
1803@comment POSIX.1b
1804@deftypefun int aio_read (struct aiocb *@var{aiocbp})
04b9968b
UD
1805This function initiates an asynchronous read operation. It
1806immediately returns after the operation was enqueued or when an
fed8f7f7 1807error was encountered.
b07d03e0 1808
a3a4a74e 1809The first @code{aiocbp->aio_nbytes} bytes of the file for which
c756c71c
UD
1810@code{aiocbp->aio_fildes} is a descriptor are written to the buffer
1811starting at @code{aiocbp->aio_buf}. Reading starts at the absolute
1812position @code{aiocbp->aio_offset} in the file.
b07d03e0
UD
1813
1814If prioritized I/O is supported by the platform the
1815@code{aiocbp->aio_reqprio} value is used to adjust the priority before
1816the request is actually enqueued.
1817
1818The calling process is notified about the termination of the read
1819request according to the @code{aiocbp->aio_sigevent} value.
1820
04b9968b 1821When @code{aio_read} returns, the return value is zero if no error
b07d03e0 1822occurred that can be found before the process is enqueued. If such an
04b9968b
UD
1823early error is found, the function returns @math{-1} and sets
1824@code{errno} to one of the following values:
b07d03e0
UD
1825
1826@table @code
1827@item EAGAIN
1828The request was not enqueued due to (temporarily) exceeded resource
1829limitations.
1830@item ENOSYS
1831The @code{aio_read} function is not implemented.
1832@item EBADF
1833The @code{aiocbp->aio_fildes} descriptor is not valid. This condition
04b9968b 1834need not be recognized before enqueueing the request and so this error
fed8f7f7 1835might also be signaled asynchronously.
b07d03e0
UD
1836@item EINVAL
1837The @code{aiocbp->aio_offset} or @code{aiocbp->aio_reqpiro} value is
1838invalid. This condition need not be recognized before enqueueing the
49c091e5 1839request and so this error might also be signaled asynchronously.
b07d03e0
UD
1840@end table
1841
04b9968b
UD
1842If @code{aio_read} returns zero, the current status of the request
1843can be queried using @code{aio_error} and @code{aio_return} functions.
1844As long as the value returned by @code{aio_error} is @code{EINPROGRESS}
1845the operation has not yet completed. If @code{aio_error} returns zero,
1846the operation successfully terminated, otherwise the value is to be
1847interpreted as an error code. If the function terminated, the result of
1848the operation can be obtained using a call to @code{aio_return}. The
1849returned value is the same as an equivalent call to @code{read} would
1850have returned. Possible error codes returned by @code{aio_error} are:
b07d03e0
UD
1851
1852@table @code
1853@item EBADF
1854The @code{aiocbp->aio_fildes} descriptor is not valid.
1855@item ECANCELED
04b9968b 1856The operation was cancelled before the operation was finished
b07d03e0
UD
1857(@pxref{Cancel AIO Operations})
1858@item EINVAL
1859The @code{aiocbp->aio_offset} value is invalid.
1860@end table
a3a4a74e
UD
1861
1862When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1863function is in fact @code{aio_read64} since the LFS interface transparently
1864replaces the normal implementation.
b07d03e0
UD
1865@end deftypefun
1866
1867@comment aio.h
a3a4a74e 1868@comment Unix98
b07d03e0
UD
1869@deftypefun int aio_read64 (struct aiocb *@var{aiocbp})
1870This function is similar to the @code{aio_read} function. The only
04b9968b 1871difference is that on @w{32 bit} machines the file descriptor should
b07d03e0 1872be opened in the large file mode. Internally @code{aio_read64} uses
a3a4a74e
UD
1873functionality equivalent to @code{lseek64} (@pxref{File Position
1874Primitive}) to position the file descriptor correctly for the reading,
fed8f7f7 1875as opposed to @code{lseek} functionality used in @code{aio_read}.
a3a4a74e
UD
1876
1877When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1878function is available under the name @code{aio_read} and so transparently
04b9968b 1879replaces the interface for small files on 32 bit machines.
b07d03e0
UD
1880@end deftypefun
1881
a3a4a74e
UD
1882To write data asynchronously to a file there exists an equivalent pair
1883of functions with a very similar interface.
1884
1885@comment aio.h
1886@comment POSIX.1b
1887@deftypefun int aio_write (struct aiocb *@var{aiocbp})
1888This function initiates an asynchronous write operation. The function
1889call immediately returns after the operation was enqueued or if before
fed8f7f7 1890this happens an error was encountered.
a3a4a74e
UD
1891
1892The first @code{aiocbp->aio_nbytes} bytes from the buffer starting at
1893@code{aiocbp->aio_buf} are written to the file for which
1894@code{aiocbp->aio_fildes} is an descriptor, starting at the absolute
1895position @code{aiocbp->aio_offset} in the file.
1896
1897If prioritized I/O is supported by the platform the
1898@code{aiocbp->aio_reqprio} value is used to adjust the priority before
1899the request is actually enqueued.
1900
1901The calling process is notified about the termination of the read
1902request according to the @code{aiocbp->aio_sigevent} value.
1903
1904When @code{aio_write} returns the return value is zero if no error
1905occurred that can be found before the process is enqueued. If such an
1906early error is found the function returns @math{-1} and sets
1907@code{errno} to one of the following values.
1908
1909@table @code
1910@item EAGAIN
1911The request was not enqueued due to (temporarily) exceeded resource
1912limitations.
1913@item ENOSYS
1914The @code{aio_write} function is not implemented.
1915@item EBADF
1916The @code{aiocbp->aio_fildes} descriptor is not valid. This condition
fed8f7f7
UD
1917needs not be recognized before enqueueing the request and so this error
1918might also be signaled asynchronously.
a3a4a74e
UD
1919@item EINVAL
1920The @code{aiocbp->aio_offset} or @code{aiocbp->aio_reqpiro} value is
fed8f7f7
UD
1921invalid. This condition needs not be recognized before enqueueing the
1922request and so this error might also be signaled asynchronously.
a3a4a74e
UD
1923@end table
1924
1925In the case @code{aio_write} returns zero the current status of the
1926request can be queried using @code{aio_error} and @code{aio_return}
c756c71c 1927functions. As long as the value returned by @code{aio_error} is
a3a4a74e
UD
1928@code{EINPROGRESS} the operation has not yet completed. If
1929@code{aio_error} returns zero the operation successfully terminated,
1930otherwise the value is to be interpreted as an error code. If the
1931function terminated the result of the operation can be get using a call
1932to @code{aio_return}. The returned value is the same as an equivalent
1933call to @code{read} would have returned. Possible error code returned
1934by @code{aio_error} are:
1935
1936@table @code
1937@item EBADF
1938The @code{aiocbp->aio_fildes} descriptor is not valid.
1939@item ECANCELED
04b9968b 1940The operation was cancelled before the operation was finished
a3a4a74e
UD
1941(@pxref{Cancel AIO Operations})
1942@item EINVAL
1943The @code{aiocbp->aio_offset} value is invalid.
1944@end table
1945
1946When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1947function is in fact @code{aio_write64} since the LFS interface transparently
1948replaces the normal implementation.
1949@end deftypefun
1950
1951@comment aio.h
1952@comment Unix98
1953@deftypefun int aio_write64 (struct aiocb *@var{aiocbp})
1954This function is similar to the @code{aio_write} function. The only
04b9968b 1955difference is that on @w{32 bit} machines the file descriptor should
a3a4a74e
UD
1956be opened in the large file mode. Internally @code{aio_write64} uses
1957functionality equivalent to @code{lseek64} (@pxref{File Position
1958Primitive}) to position the file descriptor correctly for the writing,
fed8f7f7 1959as opposed to @code{lseek} functionality used in @code{aio_write}.
a3a4a74e
UD
1960
1961When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1962function is available under the name @code{aio_write} and so transparently
04b9968b 1963replaces the interface for small files on 32 bit machines.
a3a4a74e
UD
1964@end deftypefun
1965
1966Beside these functions with the more or less traditional interface
1967POSIX.1b also defines a function with can initiate more than one
1968operation at once and which can handled freely mixed read and write
1969operation. It is therefore similar to a combination of @code{readv} and
1970@code{writev}.
1971
1972@comment aio.h
1973@comment POSIX.1b
1974@deftypefun int lio_listio (int @var{mode}, struct aiocb *const @var{list}[], int @var{nent}, struct sigevent *@var{sig})
1975The @code{lio_listio} function can be used to enqueue an arbitrary
1976number of read and write requests at one time. The requests can all be
1977meant for the same file, all for different files or every solution in
1978between.
1979
1980@code{lio_listio} gets the @var{nent} requests from the array pointed to
1981by @var{list}. What operation has to be performed is determined by the
1982@code{aio_lio_opcode} member in each element of @var{list}. If this
1983field is @code{LIO_READ} an read operation is queued, similar to a call
1984of @code{aio_read} for this element of the array (except that the way
1985the termination is signalled is different, as we will see below). If
1986the @code{aio_lio_opcode} member is @code{LIO_WRITE} an write operation
1987is enqueued. Otherwise the @code{aio_lio_opcode} must be @code{LIO_NOP}
1988in which case this element of @var{list} is simply ignored. This
1989``operation'' is useful in situations where one has a fixed array of
1990@code{struct aiocb} elements from which only a few need to be handled at
1991a time. Another situation is where the @code{lio_listio} call was
1992cancelled before all requests are processed (@pxref{Cancel AIO
1993Operations}) and the remaining requests have to be reissued.
1994
fed8f7f7 1995The other members of each element of the array pointed to by
a3a4a74e
UD
1996@code{list} must have values suitable for the operation as described in
1997the documentation for @code{aio_read} and @code{aio_write} above.
1998
1999The @var{mode} argument determines how @code{lio_listio} behaves after
2000having enqueued all the requests. If @var{mode} is @code{LIO_WAIT} it
2001waits until all requests terminated. Otherwise @var{mode} must be
fed8f7f7 2002@code{LIO_NOWAIT} and in this case the function returns immediately after
a3a4a74e
UD
2003having enqueued all the requests. In this case the caller gets a
2004notification of the termination of all requests according to the
2005@var{sig} parameter. If @var{sig} is @code{NULL} no notification is
2006send. Otherwise a signal is sent or a thread is started, just as
2007described in the description for @code{aio_read} or @code{aio_write}.
2008
2009If @var{mode} is @code{LIO_WAIT} the return value of @code{lio_listio}
2010is @math{0} when all requests completed successfully. Otherwise the
2011function return @math{-1} and @code{errno} is set accordingly. To find
2012out which request or requests failed one has to use the @code{aio_error}
2013function on all the elements of the array @var{list}.
2014
2015In case @var{mode} is @code{LIO_NOWAIT} the function return @math{0} if
2016all requests were enqueued correctly. The current state of the requests
2017can be found using @code{aio_error} and @code{aio_return} as described
2018above. In case @code{lio_listio} returns @math{-1} in this mode the
2019global variable @code{errno} is set accordingly. If a request did not
2020yet terminate a call to @code{aio_error} returns @code{EINPROGRESS}. If
2021the value is different the request is finished and the error value (or
2022@math{0}) is returned and the result of the operation can be retrieved
2023using @code{aio_return}.
2024
2025Possible values for @code{errno} are:
2026
2027@table @code
2028@item EAGAIN
2029The resources necessary to queue all the requests are not available in
2030the moment. The error status for each element of @var{list} must be
2031checked which request failed.
2032
fed8f7f7 2033Another reason could be that the system wide limit of AIO requests is
a3a4a74e
UD
2034exceeded. This cannot be the case for the implementation on GNU systems
2035since no arbitrary limits exist.
2036@item EINVAL
2037The @var{mode} parameter is invalid or @var{nent} is larger than
2038@code{AIO_LISTIO_MAX}.
2039@item EIO
2040One or more of the request's I/O operations failed. The error status of
fed8f7f7 2041each request should be checked for which one failed.
a3a4a74e
UD
2042@item ENOSYS
2043The @code{lio_listio} function is not supported.
2044@end table
2045
2046If the @var{mode} parameter is @code{LIO_NOWAIT} and the caller cancels
2047an request the error status for this request returned by
2048@code{aio_error} is @code{ECANCELED}.
2049
2050When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2051function is in fact @code{lio_listio64} since the LFS interface
2052transparently replaces the normal implementation.
2053@end deftypefun
2054
2055@comment aio.h
2056@comment Unix98
2057@deftypefun int lio_listio64 (int @var{mode}, struct aiocb *const @var{list}, int @var{nent}, struct sigevent *@var{sig})
2058This function is similar to the @code{aio_listio} function. The only
04b9968b 2059difference is that only @w{32 bit} machines the file descriptor should
a3a4a74e
UD
2060be opened in the large file mode. Internally @code{lio_listio64} uses
2061functionality equivalent to @code{lseek64} (@pxref{File Position
2062Primitive}) to position the file descriptor correctly for the reading or
fed8f7f7 2063writing, as opposed to @code{lseek} functionality used in
a3a4a74e
UD
2064@code{lio_listio}.
2065
2066When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2067function is available under the name @code{lio_listio} and so
04b9968b 2068transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2069machines.
2070@end deftypefun
2071
2072@node Status of AIO Operations
2073@subsection Getting the Status of AIO Operations
2074
fed8f7f7 2075As already described in the documentation of the functions in the last
04b9968b
UD
2076section, it must be possible to get information about the status of an I/O
2077request. When the operation is performed truly asynchronously (as with
a3a4a74e
UD
2078@code{aio_read} and @code{aio_write} and with @code{aio_listio} when the
2079mode is @code{LIO_NOWAIT}) one sometimes needs to know whether a
04b9968b
UD
2080specific request already terminated and if yes, what the result was.
2081The following two functions allow you to get this kind of information.
a3a4a74e
UD
2082
2083@comment aio.h
2084@comment POSIX.1b
2085@deftypefun int aio_error (const struct aiocb *@var{aiocbp})
2086This function determines the error state of the request described by the
fed8f7f7 2087@code{struct aiocb} variable pointed to by @var{aiocbp}. If the
a3a4a74e
UD
2088request has not yet terminated the value returned is always
2089@code{EINPROGRESS}. Once the request has terminated the value
2090@code{aio_error} returns is either @math{0} if the request completed
fed8f7f7 2091successfully or it returns the value which would be stored in the
a3a4a74e
UD
2092@code{errno} variable if the request would have been done using
2093@code{read}, @code{write}, or @code{fsync}.
2094
2095The function can return @code{ENOSYS} if it is not implemented. It
2096could also return @code{EINVAL} if the @var{aiocbp} parameter does not
2097refer to an asynchronous operation whose return status is not yet known.
2098
2099When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2100function is in fact @code{aio_error64} since the LFS interface
2101transparently replaces the normal implementation.
2102@end deftypefun
2103
2104@comment aio.h
2105@comment Unix98
2106@deftypefun int aio_error64 (const struct aiocb64 *@var{aiocbp})
2107This function is similar to @code{aio_error} with the only difference
2108that the argument is a reference to a variable of type @code{struct
2109aiocb64}.
2110
2111When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2112function is available under the name @code{aio_error} and so
04b9968b 2113transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2114machines.
2115@end deftypefun
2116
2117@comment aio.h
2118@comment POSIX.1b
2119@deftypefun ssize_t aio_return (const struct aiocb *@var{aiocbp})
2120This function can be used to retrieve the return status of the operation
2121carried out by the request described in the variable pointed to by
2122@var{aiocbp}. As long as the error status of this request as returned
2123by @code{aio_error} is @code{EINPROGRESS} the return of this function is
2124undefined.
2125
fed8f7f7
UD
2126Once the request is finished this function can be used exactly once to
2127retrieve the return value. Following calls might lead to undefined
a3a4a74e
UD
2128behaviour. The return value itself is the value which would have been
2129returned by the @code{read}, @code{write}, or @code{fsync} call.
2130
2131The function can return @code{ENOSYS} if it is not implemented. It
2132could also return @code{EINVAL} if the @var{aiocbp} parameter does not
2133refer to an asynchronous operation whose return status is not yet known.
2134
2135When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2136function is in fact @code{aio_return64} since the LFS interface
2137transparently replaces the normal implementation.
2138@end deftypefun
2139
2140@comment aio.h
2141@comment Unix98
2142@deftypefun int aio_return64 (const struct aiocb64 *@var{aiocbp})
2143This function is similar to @code{aio_return} with the only difference
2144that the argument is a reference to a variable of type @code{struct
2145aiocb64}.
2146
2147When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2148function is available under the name @code{aio_return} and so
04b9968b 2149transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2150machines.
2151@end deftypefun
2152
2153@node Synchronizing AIO Operations
2154@subsection Getting into a Consistent State
2155
2156When dealing with asynchronous operations it is sometimes necessary to
fed8f7f7 2157get into a consistent state. This would mean for AIO that one wants to
a3a4a74e
UD
2158know whether a certain request or a group of request were processed.
2159This could be done by waiting for the notification sent by the system
04b9968b 2160after the operation terminated, but this sometimes would mean wasting
a3a4a74e
UD
2161resources (mainly computation time). Instead POSIX.1b defines two
2162functions which will help with most kinds of consistency.
2163
2164The @code{aio_fsync} and @code{aio_fsync64} functions are only available
2165if in @file{unistd.h} the symbol @code{_POSIX_SYNCHRONIZED_IO} is
2166defined.
2167
2168@cindex synchronizing
2169@comment aio.h
2170@comment POSIX.1b
2171@deftypefun int aio_fsync (int @var{op}, struct aiocb *@var{aiocbp})
2172Calling this function forces all I/O operations operating queued at the
fed8f7f7 2173time of the function call operating on the file descriptor
a3a4a74e 2174@code{aiocbp->aio_fildes} into the synchronized I/O completion state
04b9968b 2175(@pxref{Synchronizing I/O}). The @code{aio_fsync} function returns
a3a4a74e
UD
2176immediately but the notification through the method described in
2177@code{aiocbp->aio_sigevent} will happen only after all requests for this
04b9968b 2178file descriptor have terminated and the file is synchronized. This also
a3a4a74e 2179means that requests for this very same file descriptor which are queued
04b9968b 2180after the synchronization request are not affected.
a3a4a74e
UD
2181
2182If @var{op} is @code{O_DSYNC} the synchronization happens as with a call
2183to @code{fdatasync}. Otherwise @var{op} should be @code{O_SYNC} and
fed8f7f7 2184the synchronization happens as with @code{fsync}.
a3a4a74e 2185
fed8f7f7 2186As long as the synchronization has not happened a call to
a3a4a74e 2187@code{aio_error} with the reference to the object pointed to by
fed8f7f7
UD
2188@var{aiocbp} returns @code{EINPROGRESS}. Once the synchronization is
2189done @code{aio_error} return @math{0} if the synchronization was not
a3a4a74e
UD
2190successful. Otherwise the value returned is the value to which the
2191@code{fsync} or @code{fdatasync} function would have set the
2192@code{errno} variable. In this case nothing can be assumed about the
2193consistency for the data written to this file descriptor.
2194
2195The return value of this function is @math{0} if the request was
2196successfully filed. Otherwise the return value is @math{-1} and
2197@code{errno} is set to one of the following values:
2198
2199@table @code
2200@item EAGAIN
fed8f7f7 2201The request could not be enqueued due to temporary lack of resources.
a3a4a74e
UD
2202@item EBADF
2203The file descriptor @code{aiocbp->aio_fildes} is not valid or not open
2204for writing.
2205@item EINVAL
2206The implementation does not support I/O synchronization or the @var{op}
2207parameter is other than @code{O_DSYNC} and @code{O_SYNC}.
2208@item ENOSYS
2209This function is not implemented.
2210@end table
2211
2212When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2213function is in fact @code{aio_return64} since the LFS interface
2214transparently replaces the normal implementation.
2215@end deftypefun
2216
2217@comment aio.h
2218@comment Unix98
2219@deftypefun int aio_fsync64 (int @var{op}, struct aiocb64 *@var{aiocbp})
2220This function is similar to @code{aio_fsync} with the only difference
2221that the argument is a reference to a variable of type @code{struct
2222aiocb64}.
2223
2224When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2225function is available under the name @code{aio_fsync} and so
04b9968b 2226transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2227machines.
2228@end deftypefun
2229
fed8f7f7 2230Another method of synchronization is to wait until one or more requests of a
a3a4a74e
UD
2231specific set terminated. This could be achieved by the @code{aio_*}
2232functions to notify the initiating process about the termination but in
2233some situations this is not the ideal solution. In a program which
2234constantly updates clients somehow connected to the server it is not
2235always the best solution to go round robin since some connections might
2236be slow. On the other hand letting the @code{aio_*} function notify the
2237caller might also be not the best solution since whenever the process
2238works on preparing data for on client it makes no sense to be
2239interrupted by a notification since the new client will not be handled
2240before the current client is served. For situations like this
2241@code{aio_suspend} should be used.
2242
2243@comment aio.h
2244@comment POSIX.1b
2245@deftypefun int aio_suspend (const struct aiocb *const @var{list}[], int @var{nent}, const struct timespec *@var{timeout})
2246When calling this function the calling thread is suspended until at
2247least one of the requests pointed to by the @var{nent} elements of the
2248array @var{list} has completed. If any of the requests already has
2249completed at the time @code{aio_suspend} is called the function returns
2250immediately. Whether a request has terminated or not is done by
2251comparing the error status of the request with @code{EINPROGRESS}. If
2252an element of @var{list} is @code{NULL} the entry is simply ignored.
2253
2254If no request has finished the calling process is suspended. If
2255@var{timeout} is @code{NULL} the process is not waked until a request
2256finished. If @var{timeout} is not @code{NULL} the process remains
2257suspended at as long as specified in @var{timeout}. In this case
2258@code{aio_suspend} returns with an error.
2259
fed8f7f7 2260The return value of the function is @math{0} if one or more requests
a3a4a74e
UD
2261from the @var{list} have terminated. Otherwise the function returns
2262@math{-1} and @code{errno} is set to one of the following values:
2263
2264@table @code
2265@item EAGAIN
2266None of the requests from the @var{list} completed in the time specified
2267by @var{timeout}.
2268@item EINTR
2269A signal interrupted the @code{aio_suspend} function. This signal might
2270also be sent by the AIO implementation while signalling the termination
2271of one of the requests.
2272@item ENOSYS
2273The @code{aio_suspend} function is not implemented.
2274@end table
2275
2276When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2277function is in fact @code{aio_suspend64} since the LFS interface
2278transparently replaces the normal implementation.
2279@end deftypefun
2280
2281@comment aio.h
2282@comment Unix98
2283@deftypefun int aio_suspend64 (const struct aiocb64 *const @var{list}[], int @var{nent}, const struct timespec *@var{timeout})
2284This function is similar to @code{aio_suspend} with the only difference
2285that the argument is a reference to a variable of type @code{struct
2286aiocb64}.
2287
2288When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2289function is available under the name @code{aio_suspend} and so
04b9968b 2290transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2291machines.
2292@end deftypefun
b07d03e0
UD
2293
2294@node Cancel AIO Operations
04b9968b 2295@subsection Cancellation of AIO Operations
b07d03e0 2296
a3a4a74e
UD
2297When one or more requests are asynchronously processed it might be
2298useful in some situations to cancel a selected operation, e.g., if it
2299becomes obvious that the written data is not anymore accurate and would
2300have to be overwritten soon. As an example assume an application, which
2301writes data in files in a situation where new incoming data would have
2302to be written in a file which will be updated by an enqueued request.
2303The POSIX AIO implementation provides such a function but this function
04b9968b 2304is not capable to force the cancellation of the request. It is up to the
a3a4a74e
UD
2305implementation to decide whether it is possible to cancel the operation
2306or not. Therefore using this function is merely a hint.
2307
2308@comment aio.h
2309@comment POSIX.1b
2310@deftypefun int aio_cancel (int @var{fildes}, struct aiocb *@var{aiocbp})
2311The @code{aio_cancel} function can be used to cancel one or more
2312outstanding requests. If the @var{aiocbp} parameter is @code{NULL} the
2313function tries to cancel all outstanding requests which would process
2314the file descriptor @var{fildes} (i.e.,, whose @code{aio_fildes} member
2315is @var{fildes}). If @var{aiocbp} is not @code{NULL} the very specific
04b9968b 2316request pointed to by @var{aiocbp} is tried to be cancelled.
a3a4a74e 2317
04b9968b 2318For requests which were successfully cancelled the normal notification
a3a4a74e
UD
2319about the termination of the request should take place. I.e., depending
2320on the @code{struct sigevent} object which controls this, nothing
2321happens, a signal is sent or a thread is started. If the request cannot
04b9968b 2322be cancelled it terminates the usual way after performing te operation.
a3a4a74e 2323
04b9968b 2324After a request is successfully cancelled a call to @code{aio_error} with
a3a4a74e
UD
2325a reference to this request as the parameter will return
2326@code{ECANCELED} and a call to @code{aio_return} will return @math{-1}.
04b9968b 2327If the request wasn't cancelled and is still running the error status is
a3a4a74e
UD
2328still @code{EINPROGRESS}.
2329
2330The return value of the function is @code{AIO_CANCELED} if there were
04b9968b
UD
2331requests which haven't terminated and which successfully were cancelled.
2332If there is one or more request left which couldn't be cancelled the
a3a4a74e
UD
2333return value is @code{AIO_NOTCANCELED}. In this case @code{aio_error}
2334must be used to find out which of the perhaps multiple requests (in
04b9968b 2335@var{aiocbp} is @code{NULL}) wasn't successfully cancelled. If all
a3a4a74e
UD
2336requests already terminated at the time @code{aio_cancel} is called the
2337return value is @code{AIO_ALLDONE}.
2338
2339If an error occurred during the execution of @code{aio_cancel} the
2340function returns @math{-1} and sets @code{errno} to one of the following
2341values.
2342
2343@table @code
2344@item EBADF
2345The file descriptor @var{fildes} is not valid.
2346@item ENOSYS
2347@code{aio_cancel} is not implemented.
2348@end table
2349
2350When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2351function is in fact @code{aio_cancel64} since the LFS interface
2352transparently replaces the normal implementation.
2353@end deftypefun
2354
2355@comment aio.h
2356@comment Unix98
2357@deftypefun int aio_cancel64 (int @var{fildes}, struct aiocb *@var{aiocbp})
2358This function is similar to @code{aio_cancel} with the only difference
2359that the argument is a reference to a variable of type @code{struct
2360aiocb64}.
2361
2362When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
2363function is available under the name @code{aio_cancel} and so
04b9968b 2364transparently replaces the interface for small files on 32 bit
a3a4a74e
UD
2365machines.
2366@end deftypefun
2367
2368@node Configuration of AIO
2369@subsection How to optimize the AIO implementation
2370
2371The POSIX standard does not specify how the AIO functions are
2372implemented. They could be system calls but it is also possible to
2373emulate them at userlevel.
2374
fed8f7f7 2375At least the available implementation at the point of this writing is a
a3a4a74e
UD
2376userlevel implementation which uses threads for handling the enqueued
2377requests. This implementation requires to make some decisions about
2378limitations but hard limitations are something which better should be
2379avoided the GNU C library implementation provides a mean to tune the AIO
2380implementation individually for each use.
2381
2382@comment aio.h
2383@comment GNU
2384@deftp {Data Type} {struct aioinit}
2385This data type is used to pass the configuration or tunable parameters
2386to the implementation. The program has to initialize the members of
2387this struct and pass it to the implementation using the @code{aio_init}
2388function.
2389
2390@table @code
2391@item int aio_threads
2392This member specifies the maximal number of threads which must be used
2393at any one time.
2394@item int aio_num
c756c71c 2395This number provides an estimate on the maximal number of simultaneously
a3a4a74e
UD
2396enqueued requests.
2397@item int aio_locks
2398@c What?
2399@item int aio_usedba
2400@c What?
2401@item int aio_debug
2402@c What?
2403@item int aio_numusers
2404@c What?
2405@item int aio_reserved[2]
2406@c What?
2407@end table
2408@end deftp
2409
2410@comment aio.h
2411@comment GNU
2412@deftypefun void aio_init (const struct aioinit *@var{init})
2413This function must be called before any other AIO function. Calling it
2414is completely voluntarily since it only is meant to help the AIO
2415implementation to perform better.
2416
2417Before calling the @code{aio_init} function the members of a variable of
2418type @code{struct aioinit} must be initialized. Then a reference to
2419this variable is passed as the parameter to @code{aio_init} which itself
2420may or may not pay attention to the hints.
2421
c756c71c
UD
2422The function has no return value and no error cases are defined. It is
2423a extension which follows a proposal from the SGI implementation in
2424@w{Irix 6}. It is not covered by POSIX.1b or Unix98.
a3a4a74e 2425@end deftypefun
b07d03e0 2426
28f540f4
RM
2427@node Control Operations
2428@section Control Operations on Files
2429
2430@cindex control operations on files
2431@cindex @code{fcntl} function
2432This section describes how you can perform various other operations on
2433file descriptors, such as inquiring about or setting flags describing
2434the status of the file descriptor, manipulating record locks, and the
2435like. All of these operations are performed by the function @code{fcntl}.
2436
2437The second argument to the @code{fcntl} function is a command that
2438specifies which operation to perform. The function and macros that name
2439various flags that are used with it are declared in the header file
2440@file{fcntl.h}. Many of these flags are also used by the @code{open}
2441function; see @ref{Opening and Closing Files}.
2442@pindex fcntl.h
2443
2444@comment fcntl.h
2445@comment POSIX.1
2446@deftypefun int fcntl (int @var{filedes}, int @var{command}, @dots{})
2447The @code{fcntl} function performs the operation specified by
2448@var{command} on the file descriptor @var{filedes}. Some commands
2449require additional arguments to be supplied. These additional arguments
2450and the return value and error conditions are given in the detailed
2451descriptions of the individual commands.
2452
2453Briefly, here is a list of what the various commands are.
2454
2455@table @code
2456@item F_DUPFD
2457Duplicate the file descriptor (return another file descriptor pointing
2458to the same open file). @xref{Duplicating Descriptors}.
2459
2460@item F_GETFD
2461Get flags associated with the file descriptor. @xref{Descriptor Flags}.
2462
2463@item F_SETFD
2464Set flags associated with the file descriptor. @xref{Descriptor Flags}.
2465
2466@item F_GETFL
2467Get flags associated with the open file. @xref{File Status Flags}.
2468
2469@item F_SETFL
2470Set flags associated with the open file. @xref{File Status Flags}.
2471
2472@item F_GETLK
2473Get a file lock. @xref{File Locks}.
2474
2475@item F_SETLK
2476Set or clear a file lock. @xref{File Locks}.
2477
2478@item F_SETLKW
2479Like @code{F_SETLK}, but wait for completion. @xref{File Locks}.
2480
2481@item F_GETOWN
2482Get process or process group ID to receive @code{SIGIO} signals.
2483@xref{Interrupt Input}.
2484
2485@item F_SETOWN
2486Set process or process group ID to receive @code{SIGIO} signals.
2487@xref{Interrupt Input}.
2488@end table
dfd2257a 2489
04b9968b 2490This function is a cancellation point in multi-threaded programs. This
dfd2257a
UD
2491is a problem if the thread allocates some resources (like memory, file
2492descriptors, semaphores or whatever) at the time @code{fcntl} is
04b9968b 2493called. If the thread gets cancelled these resources stay allocated
dfd2257a 2494until the program ends. To avoid this calls to @code{fcntl} should be
04b9968b 2495protected using cancellation handlers.
dfd2257a 2496@c ref pthread_cleanup_push / pthread_cleanup_pop
28f540f4
RM
2497@end deftypefun
2498
2499
2500@node Duplicating Descriptors
2501@section Duplicating Descriptors
2502
2503@cindex duplicating file descriptors
2504@cindex redirecting input and output
2505
2506You can @dfn{duplicate} a file descriptor, or allocate another file
2507descriptor that refers to the same open file as the original. Duplicate
2508descriptors share one file position and one set of file status flags
2509(@pxref{File Status Flags}), but each has its own set of file descriptor
2510flags (@pxref{Descriptor Flags}).
2511
2512The major use of duplicating a file descriptor is to implement
2513@dfn{redirection} of input or output: that is, to change the
2514file or pipe that a particular file descriptor corresponds to.
2515
2516You can perform this operation using the @code{fcntl} function with the
2517@code{F_DUPFD} command, but there are also convenient functions
2518@code{dup} and @code{dup2} for duplicating descriptors.
2519
2520@pindex unistd.h
2521@pindex fcntl.h
2522The @code{fcntl} function and flags are declared in @file{fcntl.h},
2523while prototypes for @code{dup} and @code{dup2} are in the header file
2524@file{unistd.h}.
2525
2526@comment unistd.h
2527@comment POSIX.1
2528@deftypefun int dup (int @var{old})
2529This function copies descriptor @var{old} to the first available
2530descriptor number (the first number not currently open). It is
2531equivalent to @code{fcntl (@var{old}, F_DUPFD, 0)}.
2532@end deftypefun
2533
2534@comment unistd.h
2535@comment POSIX.1
2536@deftypefun int dup2 (int @var{old}, int @var{new})
2537This function copies the descriptor @var{old} to descriptor number
2538@var{new}.
2539
2540If @var{old} is an invalid descriptor, then @code{dup2} does nothing; it
2541does not close @var{new}. Otherwise, the new duplicate of @var{old}
2542replaces any previous meaning of descriptor @var{new}, as if @var{new}
2543were closed first.
2544
2545If @var{old} and @var{new} are different numbers, and @var{old} is a
2546valid descriptor number, then @code{dup2} is equivalent to:
2547
2548@smallexample
2549close (@var{new});
2550fcntl (@var{old}, F_DUPFD, @var{new})
2551@end smallexample
2552
2553However, @code{dup2} does this atomically; there is no instant in the
2554middle of calling @code{dup2} at which @var{new} is closed and not yet a
2555duplicate of @var{old}.
2556@end deftypefun
2557
2558@comment fcntl.h
2559@comment POSIX.1
2560@deftypevr Macro int F_DUPFD
2561This macro is used as the @var{command} argument to @code{fcntl}, to
2562copy the file descriptor given as the first argument.
2563
2564The form of the call in this case is:
2565
2566@smallexample
2567fcntl (@var{old}, F_DUPFD, @var{next-filedes})
2568@end smallexample
2569
2570The @var{next-filedes} argument is of type @code{int} and specifies that
2571the file descriptor returned should be the next available one greater
2572than or equal to this value.
2573
2574The return value from @code{fcntl} with this command is normally the value
07435eb4 2575of the new file descriptor. A return value of @math{-1} indicates an
28f540f4
RM
2576error. The following @code{errno} error conditions are defined for
2577this command:
2578
2579@table @code
2580@item EBADF
2581The @var{old} argument is invalid.
2582
2583@item EINVAL
2584The @var{next-filedes} argument is invalid.
2585
2586@item EMFILE
2587There are no more file descriptors available---your program is already
2588using the maximum. In BSD and GNU, the maximum is controlled by a
2589resource limit that can be changed; @pxref{Limits on Resources}, for
2590more information about the @code{RLIMIT_NOFILE} limit.
2591@end table
2592
2593@code{ENFILE} is not a possible error code for @code{dup2} because
2594@code{dup2} does not create a new opening of a file; duplicate
2595descriptors do not count toward the limit which @code{ENFILE}
2596indicates. @code{EMFILE} is possible because it refers to the limit on
2597distinct descriptor numbers in use in one process.
2598@end deftypevr
2599
2600Here is an example showing how to use @code{dup2} to do redirection.
2601Typically, redirection of the standard streams (like @code{stdin}) is
2602done by a shell or shell-like program before calling one of the
2603@code{exec} functions (@pxref{Executing a File}) to execute a new
2604program in a child process. When the new program is executed, it
2605creates and initializes the standard streams to point to the
2606corresponding file descriptors, before its @code{main} function is
2607invoked.
2608
2609So, to redirect standard input to a file, the shell could do something
2610like:
2611
2612@smallexample
2613pid = fork ();
2614if (pid == 0)
2615 @{
2616 char *filename;
2617 char *program;
2618 int file;
2619 @dots{}
2620 file = TEMP_FAILURE_RETRY (open (filename, O_RDONLY));
2621 dup2 (file, STDIN_FILENO);
2622 TEMP_FAILURE_RETRY (close (file));
2623 execv (program, NULL);
2624 @}
2625@end smallexample
2626
2627There is also a more detailed example showing how to implement redirection
2628in the context of a pipeline of processes in @ref{Launching Jobs}.
2629
2630
2631@node Descriptor Flags
2632@section File Descriptor Flags
2633@cindex file descriptor flags
2634
2635@dfn{File descriptor flags} are miscellaneous attributes of a file
2636descriptor. These flags are associated with particular file
2637descriptors, so that if you have created duplicate file descriptors
2638from a single opening of a file, each descriptor has its own set of flags.
2639
2640Currently there is just one file descriptor flag: @code{FD_CLOEXEC},
2641which causes the descriptor to be closed if you use any of the
2642@code{exec@dots{}} functions (@pxref{Executing a File}).
2643
2644The symbols in this section are defined in the header file
2645@file{fcntl.h}.
2646@pindex fcntl.h
2647
2648@comment fcntl.h
2649@comment POSIX.1
2650@deftypevr Macro int F_GETFD
2651This macro is used as the @var{command} argument to @code{fcntl}, to
2652specify that it should return the file descriptor flags associated
2c6fe0bd 2653with the @var{filedes} argument.
28f540f4
RM
2654
2655The normal return value from @code{fcntl} with this command is a
2656nonnegative number which can be interpreted as the bitwise OR of the
2657individual flags (except that currently there is only one flag to use).
2658
07435eb4 2659In case of an error, @code{fcntl} returns @math{-1}. The following
28f540f4
RM
2660@code{errno} error conditions are defined for this command:
2661
2662@table @code
2663@item EBADF
2664The @var{filedes} argument is invalid.
2665@end table
2666@end deftypevr
2667
2668
2669@comment fcntl.h
2670@comment POSIX.1
2671@deftypevr Macro int F_SETFD
2672This macro is used as the @var{command} argument to @code{fcntl}, to
2673specify that it should set the file descriptor flags associated with the
2674@var{filedes} argument. This requires a third @code{int} argument to
2675specify the new flags, so the form of the call is:
2676
2677@smallexample
2678fcntl (@var{filedes}, F_SETFD, @var{new-flags})
2679@end smallexample
2680
2681The normal return value from @code{fcntl} with this command is an
07435eb4 2682unspecified value other than @math{-1}, which indicates an error.
28f540f4
RM
2683The flags and error conditions are the same as for the @code{F_GETFD}
2684command.
2685@end deftypevr
2686
2687The following macro is defined for use as a file descriptor flag with
2688the @code{fcntl} function. The value is an integer constant usable
2689as a bit mask value.
2690
2691@comment fcntl.h
2692@comment POSIX.1
2693@deftypevr Macro int FD_CLOEXEC
2694@cindex close-on-exec (file descriptor flag)
2695This flag specifies that the file descriptor should be closed when
2696an @code{exec} function is invoked; see @ref{Executing a File}. When
2697a file descriptor is allocated (as with @code{open} or @code{dup}),
2698this bit is initially cleared on the new file descriptor, meaning that
2699descriptor will survive into the new program after @code{exec}.
2700@end deftypevr
2701
2702If you want to modify the file descriptor flags, you should get the
2703current flags with @code{F_GETFD} and modify the value. Don't assume
2704that the flags listed here are the only ones that are implemented; your
2705program may be run years from now and more flags may exist then. For
2706example, here is a function to set or clear the flag @code{FD_CLOEXEC}
2707without altering any other flags:
2708
2709@smallexample
2710/* @r{Set the @code{FD_CLOEXEC} flag of @var{desc} if @var{value} is nonzero,}
2711 @r{or clear the flag if @var{value} is 0.}
2c6fe0bd 2712 @r{Return 0 on success, or -1 on error with @code{errno} set.} */
28f540f4
RM
2713
2714int
2715set_cloexec_flag (int desc, int value)
2716@{
2717 int oldflags = fcntl (desc, F_GETFD, 0);
2718 /* @r{If reading the flags failed, return error indication now.}
2719 if (oldflags < 0)
2720 return oldflags;
2721 /* @r{Set just the flag we want to set.} */
2722 if (value != 0)
2723 oldflags |= FD_CLOEXEC;
2724 else
2725 oldflags &= ~FD_CLOEXEC;
2726 /* @r{Store modified flag word in the descriptor.} */
2727 return fcntl (desc, F_SETFD, oldflags);
2728@}
2729@end smallexample
2730
2731@node File Status Flags
2732@section File Status Flags
2733@cindex file status flags
2734
2735@dfn{File status flags} are used to specify attributes of the opening of a
2736file. Unlike the file descriptor flags discussed in @ref{Descriptor
2737Flags}, the file status flags are shared by duplicated file descriptors
2738resulting from a single opening of the file. The file status flags are
2739specified with the @var{flags} argument to @code{open};
2740@pxref{Opening and Closing Files}.
2741
2742File status flags fall into three categories, which are described in the
2743following sections.
2744
2745@itemize @bullet
2746@item
2747@ref{Access Modes}, specify what type of access is allowed to the
2748file: reading, writing, or both. They are set by @code{open} and are
2749returned by @code{fcntl}, but cannot be changed.
2750
2751@item
2752@ref{Open-time Flags}, control details of what @code{open} will do.
2753These flags are not preserved after the @code{open} call.
2754
2755@item
2756@ref{Operating Modes}, affect how operations such as @code{read} and
2757@code{write} are done. They are set by @code{open}, and can be fetched or
2758changed with @code{fcntl}.
2759@end itemize
2760
2761The symbols in this section are defined in the header file
2762@file{fcntl.h}.
2763@pindex fcntl.h
2764
2765@menu
2766* Access Modes:: Whether the descriptor can read or write.
2767* Open-time Flags:: Details of @code{open}.
2768* Operating Modes:: Special modes to control I/O operations.
2769* Getting File Status Flags:: Fetching and changing these flags.
2770@end menu
2771
2772@node Access Modes
2773@subsection File Access Modes
2774
2775The file access modes allow a file descriptor to be used for reading,
2776writing, or both. (In the GNU system, they can also allow none of these,
2777and allow execution of the file as a program.) The access modes are chosen
2778when the file is opened, and never change.
2779
2780@comment fcntl.h
2781@comment POSIX.1
2782@deftypevr Macro int O_RDONLY
2783Open the file for read access.
2784@end deftypevr
2785
2786@comment fcntl.h
2787@comment POSIX.1
2788@deftypevr Macro int O_WRONLY
2789Open the file for write access.
2790@end deftypevr
2791
2792@comment fcntl.h
2793@comment POSIX.1
2794@deftypevr Macro int O_RDWR
2795Open the file for both reading and writing.
2796@end deftypevr
2797
2798In the GNU system (and not in other systems), @code{O_RDONLY} and
2799@code{O_WRONLY} are independent bits that can be bitwise-ORed together,
2800and it is valid for either bit to be set or clear. This means that
2801@code{O_RDWR} is the same as @code{O_RDONLY|O_WRONLY}. A file access
2802mode of zero is permissible; it allows no operations that do input or
2803output to the file, but does allow other operations such as
2804@code{fchmod}. On the GNU system, since ``read-only'' or ``write-only''
2805is a misnomer, @file{fcntl.h} defines additional names for the file
2806access modes. These names are preferred when writing GNU-specific code.
2807But most programs will want to be portable to other POSIX.1 systems and
2808should use the POSIX.1 names above instead.
2809
2810@comment fcntl.h
2811@comment GNU
2812@deftypevr Macro int O_READ
2813Open the file for reading. Same as @code{O_RDWR}; only defined on GNU.
2814@end deftypevr
2815
2816@comment fcntl.h
2817@comment GNU
2818@deftypevr Macro int O_WRITE
2819Open the file for reading. Same as @code{O_WRONLY}; only defined on GNU.
2820@end deftypevr
2821
2822@comment fcntl.h
2823@comment GNU
2824@deftypevr Macro int O_EXEC
2825Open the file for executing. Only defined on GNU.
2826@end deftypevr
2827
2828To determine the file access mode with @code{fcntl}, you must extract
2829the access mode bits from the retrieved file status flags. In the GNU
2830system, you can just test the @code{O_READ} and @code{O_WRITE} bits in
2831the flags word. But in other POSIX.1 systems, reading and writing
2832access modes are not stored as distinct bit flags. The portable way to
2833extract the file access mode bits is with @code{O_ACCMODE}.
2834
2835@comment fcntl.h
2836@comment POSIX.1
2837@deftypevr Macro int O_ACCMODE
2838This macro stands for a mask that can be bitwise-ANDed with the file
2839status flag value to produce a value representing the file access mode.
2840The mode will be @code{O_RDONLY}, @code{O_WRONLY}, or @code{O_RDWR}.
2841(In the GNU system it could also be zero, and it never includes the
2842@code{O_EXEC} bit.)
2843@end deftypevr
2844
2845@node Open-time Flags
2846@subsection Open-time Flags
2847
2848The open-time flags specify options affecting how @code{open} will behave.
2849These options are not preserved once the file is open. The exception to
2850this is @code{O_NONBLOCK}, which is also an I/O operating mode and so it
2851@emph{is} saved. @xref{Opening and Closing Files}, for how to call
2852@code{open}.
2853
2854There are two sorts of options specified by open-time flags.
2855
2856@itemize @bullet
2857@item
2858@dfn{File name translation flags} affect how @code{open} looks up the
2859file name to locate the file, and whether the file can be created.
2860@cindex file name translation flags
2861@cindex flags, file name translation
2862
2863@item
2864@dfn{Open-time action flags} specify extra operations that @code{open} will
2865perform on the file once it is open.
2866@cindex open-time action flags
2867@cindex flags, open-time action
2868@end itemize
2869
2870Here are the file name translation flags.
2871
2872@comment fcntl.h
2873@comment POSIX.1
2874@deftypevr Macro int O_CREAT
2875If set, the file will be created if it doesn't already exist.
2876@c !!! mode arg, umask
2877@cindex create on open (file status flag)
2878@end deftypevr
2879
2880@comment fcntl.h
2881@comment POSIX.1
2882@deftypevr Macro int O_EXCL
2883If both @code{O_CREAT} and @code{O_EXCL} are set, then @code{open} fails
2884if the specified file already exists. This is guaranteed to never
2885clobber an existing file.
2886@end deftypevr
2887
2888@comment fcntl.h
2889@comment POSIX.1
2890@deftypevr Macro int O_NONBLOCK
2891@cindex non-blocking open
2892This prevents @code{open} from blocking for a ``long time'' to open the
2893file. This is only meaningful for some kinds of files, usually devices
2894such as serial ports; when it is not meaningful, it is harmless and
2895ignored. Often opening a port to a modem blocks until the modem reports
2896carrier detection; if @code{O_NONBLOCK} is specified, @code{open} will
2897return immediately without a carrier.
2898
2899Note that the @code{O_NONBLOCK} flag is overloaded as both an I/O operating
2900mode and a file name translation flag. This means that specifying
2901@code{O_NONBLOCK} in @code{open} also sets nonblocking I/O mode;
2902@pxref{Operating Modes}. To open the file without blocking but do normal
2903I/O that blocks, you must call @code{open} with @code{O_NONBLOCK} set and
2904then call @code{fcntl} to turn the bit off.
2905@end deftypevr
2906
2907@comment fcntl.h
2908@comment POSIX.1
2909@deftypevr Macro int O_NOCTTY
2910If the named file is a terminal device, don't make it the controlling
2911terminal for the process. @xref{Job Control}, for information about
2912what it means to be the controlling terminal.
2913
2914In the GNU system and 4.4 BSD, opening a file never makes it the
2915controlling terminal and @code{O_NOCTTY} is zero. However, other
2916systems may use a nonzero value for @code{O_NOCTTY} and set the
2917controlling terminal when you open a file that is a terminal device; so
2918to be portable, use @code{O_NOCTTY} when it is important to avoid this.
2919@cindex controlling terminal, setting
2920@end deftypevr
2921
2922The following three file name translation flags exist only in the GNU system.
2923
2924@comment fcntl.h
2925@comment GNU
2926@deftypevr Macro int O_IGNORE_CTTY
2927Do not recognize the named file as the controlling terminal, even if it
2928refers to the process's existing controlling terminal device. Operations
2929on the new file descriptor will never induce job control signals.
2930@xref{Job Control}.
2931@end deftypevr
2932
2933@comment fcntl.h
2934@comment GNU
2935@deftypevr Macro int O_NOLINK
2936If the named file is a symbolic link, open the link itself instead of
2937the file it refers to. (@code{fstat} on the new file descriptor will
2938return the information returned by @code{lstat} on the link's name.)
2939@cindex symbolic link, opening
2940@end deftypevr
2941
2942@comment fcntl.h
2943@comment GNU
2944@deftypevr Macro int O_NOTRANS
2945If the named file is specially translated, do not invoke the translator.
2946Open the bare file the translator itself sees.
2947@end deftypevr
2948
2949
2950The open-time action flags tell @code{open} to do additional operations
2951which are not really related to opening the file. The reason to do them
2952as part of @code{open} instead of in separate calls is that @code{open}
2953can do them @i{atomically}.
2954
2955@comment fcntl.h
2956@comment POSIX.1
2957@deftypevr Macro int O_TRUNC
2958Truncate the file to zero length. This option is only useful for
2959regular files, not special files such as directories or FIFOs. POSIX.1
2960requires that you open the file for writing to use @code{O_TRUNC}. In
2961BSD and GNU you must have permission to write the file to truncate it,
2962but you need not open for write access.
2963
2964This is the only open-time action flag specified by POSIX.1. There is
2965no good reason for truncation to be done by @code{open}, instead of by
2966calling @code{ftruncate} afterwards. The @code{O_TRUNC} flag existed in
2967Unix before @code{ftruncate} was invented, and is retained for backward
2968compatibility.
2969@end deftypevr
2970
27e309c1
UD
2971The remaining operating modes are BSD extensions. They exist only
2972on some systems. On other systems, these macros are not defined.
2973
28f540f4
RM
2974@comment fcntl.h
2975@comment BSD
2976@deftypevr Macro int O_SHLOCK
2977Acquire a shared lock on the file, as with @code{flock}.
2978@xref{File Locks}.
2979
2980If @code{O_CREAT} is specified, the locking is done atomically when
2981creating the file. You are guaranteed that no other process will get
2982the lock on the new file first.
2983@end deftypevr
2984
2985@comment fcntl.h
2986@comment BSD
2987@deftypevr Macro int O_EXLOCK
2988Acquire an exclusive lock on the file, as with @code{flock}.
2989@xref{File Locks}. This is atomic like @code{O_SHLOCK}.
2990@end deftypevr
2991
2992@node Operating Modes
2993@subsection I/O Operating Modes
2994
2995The operating modes affect how input and output operations using a file
2996descriptor work. These flags are set by @code{open} and can be fetched
2997and changed with @code{fcntl}.
2998
2999@comment fcntl.h
3000@comment POSIX.1
3001@deftypevr Macro int O_APPEND
3002The bit that enables append mode for the file. If set, then all
3003@code{write} operations write the data at the end of the file, extending
3004it, regardless of the current file position. This is the only reliable
3005way to append to a file. In append mode, you are guaranteed that the
3006data you write will always go to the current end of the file, regardless
3007of other processes writing to the file. Conversely, if you simply set
3008the file position to the end of file and write, then another process can
3009extend the file after you set the file position but before you write,
3010resulting in your data appearing someplace before the real end of file.
3011@end deftypevr
3012
3013@comment fcntl.h
3014@comment POSIX.1
2c6fe0bd 3015@deftypevr Macro int O_NONBLOCK
28f540f4
RM
3016The bit that enables nonblocking mode for the file. If this bit is set,
3017@code{read} requests on the file can return immediately with a failure
3018status if there is no input immediately available, instead of blocking.
3019Likewise, @code{write} requests can also return immediately with a
3020failure status if the output can't be written immediately.
3021
3022Note that the @code{O_NONBLOCK} flag is overloaded as both an I/O
3023operating mode and a file name translation flag; @pxref{Open-time Flags}.
3024@end deftypevr
3025
3026@comment fcntl.h
3027@comment BSD
3028@deftypevr Macro int O_NDELAY
3029This is an obsolete name for @code{O_NONBLOCK}, provided for
3030compatibility with BSD. It is not defined by the POSIX.1 standard.
3031@end deftypevr
3032
3033The remaining operating modes are BSD and GNU extensions. They exist only
3034on some systems. On other systems, these macros are not defined.
3035
3036@comment fcntl.h
3037@comment BSD
3038@deftypevr Macro int O_ASYNC
3039The bit that enables asynchronous input mode. If set, then @code{SIGIO}
3040signals will be generated when input is available. @xref{Interrupt Input}.
3041
3042Asynchronous input mode is a BSD feature.
3043@end deftypevr
3044
3045@comment fcntl.h
3046@comment BSD
3047@deftypevr Macro int O_FSYNC
3048The bit that enables synchronous writing for the file. If set, each
3049@code{write} call will make sure the data is reliably stored on disk before
3050returning. @c !!! xref fsync
3051
3052Synchronous writing is a BSD feature.
3053@end deftypevr
3054
3055@comment fcntl.h
3056@comment BSD
3057@deftypevr Macro int O_SYNC
3058This is another name for @code{O_FSYNC}. They have the same value.
3059@end deftypevr
3060
3061@comment fcntl.h
3062@comment GNU
3063@deftypevr Macro int O_NOATIME
3064If this bit is set, @code{read} will not update the access time of the
3065file. @xref{File Times}. This is used by programs that do backups, so
3066that backing a file up does not count as reading it.
3067Only the owner of the file or the superuser may use this bit.
3068
3069This is a GNU extension.
3070@end deftypevr
3071
3072@node Getting File Status Flags
3073@subsection Getting and Setting File Status Flags
3074
3075The @code{fcntl} function can fetch or change file status flags.
3076
3077@comment fcntl.h
3078@comment POSIX.1
3079@deftypevr Macro int F_GETFL
3080This macro is used as the @var{command} argument to @code{fcntl}, to
3081read the file status flags for the open file with descriptor
3082@var{filedes}.
3083
3084The normal return value from @code{fcntl} with this command is a
3085nonnegative number which can be interpreted as the bitwise OR of the
3086individual flags. Since the file access modes are not single-bit values,
3087you can mask off other bits in the returned flags with @code{O_ACCMODE}
3088to compare them.
3089
07435eb4 3090In case of an error, @code{fcntl} returns @math{-1}. The following
28f540f4
RM
3091@code{errno} error conditions are defined for this command:
3092
3093@table @code
3094@item EBADF
3095The @var{filedes} argument is invalid.
3096@end table
3097@end deftypevr
3098
3099@comment fcntl.h
3100@comment POSIX.1
3101@deftypevr Macro int F_SETFL
3102This macro is used as the @var{command} argument to @code{fcntl}, to set
3103the file status flags for the open file corresponding to the
3104@var{filedes} argument. This command requires a third @code{int}
3105argument to specify the new flags, so the call looks like this:
3106
3107@smallexample
3108fcntl (@var{filedes}, F_SETFL, @var{new-flags})
3109@end smallexample
3110
3111You can't change the access mode for the file in this way; that is,
3112whether the file descriptor was opened for reading or writing.
3113
3114The normal return value from @code{fcntl} with this command is an
07435eb4 3115unspecified value other than @math{-1}, which indicates an error. The
28f540f4
RM
3116error conditions are the same as for the @code{F_GETFL} command.
3117@end deftypevr
3118
3119If you want to modify the file status flags, you should get the current
3120flags with @code{F_GETFL} and modify the value. Don't assume that the
3121flags listed here are the only ones that are implemented; your program
3122may be run years from now and more flags may exist then. For example,
3123here is a function to set or clear the flag @code{O_NONBLOCK} without
3124altering any other flags:
3125
3126@smallexample
3127@group
3128/* @r{Set the @code{O_NONBLOCK} flag of @var{desc} if @var{value} is nonzero,}
3129 @r{or clear the flag if @var{value} is 0.}
2c6fe0bd 3130 @r{Return 0 on success, or -1 on error with @code{errno} set.} */
28f540f4
RM
3131
3132int
3133set_nonblock_flag (int desc, int value)
3134@{
3135 int oldflags = fcntl (desc, F_GETFL, 0);
3136 /* @r{If reading the flags failed, return error indication now.} */
3137 if (oldflags == -1)
3138 return -1;
3139 /* @r{Set just the flag we want to set.} */
3140 if (value != 0)
3141 oldflags |= O_NONBLOCK;
3142 else
3143 oldflags &= ~O_NONBLOCK;
3144 /* @r{Store modified flag word in the descriptor.} */
3145 return fcntl (desc, F_SETFL, oldflags);
3146@}
3147@end group
3148@end smallexample
3149
3150@node File Locks
3151@section File Locks
3152
3153@cindex file locks
3154@cindex record locking
3155The remaining @code{fcntl} commands are used to support @dfn{record
3156locking}, which permits multiple cooperating programs to prevent each
3157other from simultaneously accessing parts of a file in error-prone
3158ways.
3159
3160@cindex exclusive lock
3161@cindex write lock
3162An @dfn{exclusive} or @dfn{write} lock gives a process exclusive access
3163for writing to the specified part of the file. While a write lock is in
3164place, no other process can lock that part of the file.
3165
3166@cindex shared lock
3167@cindex read lock
3168A @dfn{shared} or @dfn{read} lock prohibits any other process from
3169requesting a write lock on the specified part of the file. However,
3170other processes can request read locks.
3171
3172The @code{read} and @code{write} functions do not actually check to see
3173whether there are any locks in place. If you want to implement a
3174locking protocol for a file shared by multiple processes, your application
3175must do explicit @code{fcntl} calls to request and clear locks at the
3176appropriate points.
3177
3178Locks are associated with processes. A process can only have one kind
3179of lock set for each byte of a given file. When any file descriptor for
3180that file is closed by the process, all of the locks that process holds
3181on that file are released, even if the locks were made using other
3182descriptors that remain open. Likewise, locks are released when a
3183process exits, and are not inherited by child processes created using
3184@code{fork} (@pxref{Creating a Process}).
3185
3186When making a lock, use a @code{struct flock} to specify what kind of
3187lock and where. This data type and the associated macros for the
3188@code{fcntl} function are declared in the header file @file{fcntl.h}.
3189@pindex fcntl.h
3190
3191@comment fcntl.h
3192@comment POSIX.1
3193@deftp {Data Type} {struct flock}
3194This structure is used with the @code{fcntl} function to describe a file
3195lock. It has these members:
3196
3197@table @code
3198@item short int l_type
3199Specifies the type of the lock; one of @code{F_RDLCK}, @code{F_WRLCK}, or
3200@code{F_UNLCK}.
3201
3202@item short int l_whence
3203This corresponds to the @var{whence} argument to @code{fseek} or
3204@code{lseek}, and specifies what the offset is relative to. Its value
3205can be one of @code{SEEK_SET}, @code{SEEK_CUR}, or @code{SEEK_END}.
3206
3207@item off_t l_start
3208This specifies the offset of the start of the region to which the lock
3209applies, and is given in bytes relative to the point specified by
3210@code{l_whence} member.
3211
3212@item off_t l_len
3213This specifies the length of the region to be locked. A value of
3214@code{0} is treated specially; it means the region extends to the end of
3215the file.
3216
3217@item pid_t l_pid
3218This field is the process ID (@pxref{Process Creation Concepts}) of the
3219process holding the lock. It is filled in by calling @code{fcntl} with
3220the @code{F_GETLK} command, but is ignored when making a lock.
3221@end table
3222@end deftp
3223
3224@comment fcntl.h
3225@comment POSIX.1
3226@deftypevr Macro int F_GETLK
3227This macro is used as the @var{command} argument to @code{fcntl}, to
3228specify that it should get information about a lock. This command
3229requires a third argument of type @w{@code{struct flock *}} to be passed
3230to @code{fcntl}, so that the form of the call is:
3231
3232@smallexample
3233fcntl (@var{filedes}, F_GETLK, @var{lockp})
3234@end smallexample
3235
3236If there is a lock already in place that would block the lock described
3237by the @var{lockp} argument, information about that lock overwrites
3238@code{*@var{lockp}}. Existing locks are not reported if they are
3239compatible with making a new lock as specified. Thus, you should
3240specify a lock type of @code{F_WRLCK} if you want to find out about both
3241read and write locks, or @code{F_RDLCK} if you want to find out about
3242write locks only.
3243
3244There might be more than one lock affecting the region specified by the
3245@var{lockp} argument, but @code{fcntl} only returns information about
3246one of them. The @code{l_whence} member of the @var{lockp} structure is
3247set to @code{SEEK_SET} and the @code{l_start} and @code{l_len} fields
3248set to identify the locked region.
3249
3250If no lock applies, the only change to the @var{lockp} structure is to
3251update the @code{l_type} to a value of @code{F_UNLCK}.
3252
3253The normal return value from @code{fcntl} with this command is an
07435eb4 3254unspecified value other than @math{-1}, which is reserved to indicate an
28f540f4
RM
3255error. The following @code{errno} error conditions are defined for
3256this command:
3257
3258@table @code
3259@item EBADF
3260The @var{filedes} argument is invalid.
3261
3262@item EINVAL
3263Either the @var{lockp} argument doesn't specify valid lock information,
3264or the file associated with @var{filedes} doesn't support locks.
3265@end table
3266@end deftypevr
3267
3268@comment fcntl.h
3269@comment POSIX.1
3270@deftypevr Macro int F_SETLK
3271This macro is used as the @var{command} argument to @code{fcntl}, to
3272specify that it should set or clear a lock. This command requires a
3273third argument of type @w{@code{struct flock *}} to be passed to
3274@code{fcntl}, so that the form of the call is:
3275
3276@smallexample
3277fcntl (@var{filedes}, F_SETLK, @var{lockp})
3278@end smallexample
3279
3280If the process already has a lock on any part of the region, the old lock
3281on that part is replaced with the new lock. You can remove a lock
3282by specifying a lock type of @code{F_UNLCK}.
3283
3284If the lock cannot be set, @code{fcntl} returns immediately with a value
07435eb4 3285of @math{-1}. This function does not block waiting for other processes
28f540f4 3286to release locks. If @code{fcntl} succeeds, it return a value other
07435eb4 3287than @math{-1}.
28f540f4
RM
3288
3289The following @code{errno} error conditions are defined for this
3290function:
3291
3292@table @code
3293@item EAGAIN
3294@itemx EACCES
3295The lock cannot be set because it is blocked by an existing lock on the
3296file. Some systems use @code{EAGAIN} in this case, and other systems
3297use @code{EACCES}; your program should treat them alike, after
3298@code{F_SETLK}. (The GNU system always uses @code{EAGAIN}.)
3299
3300@item EBADF
3301Either: the @var{filedes} argument is invalid; you requested a read lock
3302but the @var{filedes} is not open for read access; or, you requested a
3303write lock but the @var{filedes} is not open for write access.
3304
3305@item EINVAL
3306Either the @var{lockp} argument doesn't specify valid lock information,
3307or the file associated with @var{filedes} doesn't support locks.
3308
3309@item ENOLCK
3310The system has run out of file lock resources; there are already too
3311many file locks in place.
3312
3313Well-designed file systems never report this error, because they have no
3314limitation on the number of locks. However, you must still take account
3315of the possibility of this error, as it could result from network access
3316to a file system on another machine.
3317@end table
3318@end deftypevr
3319
3320@comment fcntl.h
3321@comment POSIX.1
3322@deftypevr Macro int F_SETLKW
3323This macro is used as the @var{command} argument to @code{fcntl}, to
3324specify that it should set or clear a lock. It is just like the
3325@code{F_SETLK} command, but causes the process to block (or wait)
3326until the request can be specified.
3327
3328This command requires a third argument of type @code{struct flock *}, as
3329for the @code{F_SETLK} command.
3330
3331The @code{fcntl} return values and errors are the same as for the
3332@code{F_SETLK} command, but these additional @code{errno} error conditions
3333are defined for this command:
3334
3335@table @code
3336@item EINTR
3337The function was interrupted by a signal while it was waiting.
3338@xref{Interrupted Primitives}.
3339
3340@item EDEADLK
3341The specified region is being locked by another process. But that
3342process is waiting to lock a region which the current process has
3343locked, so waiting for the lock would result in deadlock. The system
3344does not guarantee that it will detect all such conditions, but it lets
3345you know if it notices one.
3346@end table
3347@end deftypevr
3348
3349
3350The following macros are defined for use as values for the @code{l_type}
3351member of the @code{flock} structure. The values are integer constants.
3352
3353@table @code
3354@comment fcntl.h
3355@comment POSIX.1
3356@vindex F_RDLCK
3357@item F_RDLCK
3358This macro is used to specify a read (or shared) lock.
3359
3360@comment fcntl.h
3361@comment POSIX.1
3362@vindex F_WRLCK
3363@item F_WRLCK
3364This macro is used to specify a write (or exclusive) lock.
3365
3366@comment fcntl.h
3367@comment POSIX.1
3368@vindex F_UNLCK
3369@item F_UNLCK
3370This macro is used to specify that the region is unlocked.
3371@end table
3372
3373As an example of a situation where file locking is useful, consider a
3374program that can be run simultaneously by several different users, that
3375logs status information to a common file. One example of such a program
3376might be a game that uses a file to keep track of high scores. Another
3377example might be a program that records usage or accounting information
3378for billing purposes.
3379
3380Having multiple copies of the program simultaneously writing to the
3381file could cause the contents of the file to become mixed up. But
3382you can prevent this kind of problem by setting a write lock on the
2c6fe0bd 3383file before actually writing to the file.
28f540f4
RM
3384
3385If the program also needs to read the file and wants to make sure that
3386the contents of the file are in a consistent state, then it can also use
3387a read lock. While the read lock is set, no other process can lock
3388that part of the file for writing.
3389
3390@c ??? This section could use an example program.
3391
3392Remember that file locks are only a @emph{voluntary} protocol for
3393controlling access to a file. There is still potential for access to
3394the file by programs that don't use the lock protocol.
3395
3396@node Interrupt Input
3397@section Interrupt-Driven Input
3398
3399@cindex interrupt-driven input
3400If you set the @code{O_ASYNC} status flag on a file descriptor
3401(@pxref{File Status Flags}), a @code{SIGIO} signal is sent whenever
3402input or output becomes possible on that file descriptor. The process
3403or process group to receive the signal can be selected by using the
3404@code{F_SETOWN} command to the @code{fcntl} function. If the file
3405descriptor is a socket, this also selects the recipient of @code{SIGURG}
3406signals that are delivered when out-of-band data arrives on that socket;
3407see @ref{Out-of-Band Data}. (@code{SIGURG} is sent in any situation
3408where @code{select} would report the socket as having an ``exceptional
3409condition''. @xref{Waiting for I/O}.)
3410
3411If the file descriptor corresponds to a terminal device, then @code{SIGIO}
2c6fe0bd 3412signals are sent to the foreground process group of the terminal.
28f540f4
RM
3413@xref{Job Control}.
3414
3415@pindex fcntl.h
3416The symbols in this section are defined in the header file
3417@file{fcntl.h}.
3418
3419@comment fcntl.h
3420@comment BSD
3421@deftypevr Macro int F_GETOWN
3422This macro is used as the @var{command} argument to @code{fcntl}, to
3423specify that it should get information about the process or process
3424group to which @code{SIGIO} signals are sent. (For a terminal, this is
3425actually the foreground process group ID, which you can get using
3426@code{tcgetpgrp}; see @ref{Terminal Access Functions}.)
3427
3428The return value is interpreted as a process ID; if negative, its
3429absolute value is the process group ID.
3430
3431The following @code{errno} error condition is defined for this command:
3432
3433@table @code
3434@item EBADF
3435The @var{filedes} argument is invalid.
3436@end table
3437@end deftypevr
3438
3439@comment fcntl.h
3440@comment BSD
3441@deftypevr Macro int F_SETOWN
3442This macro is used as the @var{command} argument to @code{fcntl}, to
3443specify that it should set the process or process group to which
3444@code{SIGIO} signals are sent. This command requires a third argument
3445of type @code{pid_t} to be passed to @code{fcntl}, so that the form of
3446the call is:
3447
3448@smallexample
3449fcntl (@var{filedes}, F_SETOWN, @var{pid})
3450@end smallexample
3451
3452The @var{pid} argument should be a process ID. You can also pass a
3453negative number whose absolute value is a process group ID.
3454
07435eb4 3455The return value from @code{fcntl} with this command is @math{-1}
28f540f4
RM
3456in case of error and some other value if successful. The following
3457@code{errno} error conditions are defined for this command:
3458
3459@table @code
3460@item EBADF
3461The @var{filedes} argument is invalid.
3462
3463@item ESRCH
3464There is no process or process group corresponding to @var{pid}.
3465@end table
3466@end deftypevr
3467
3468@c ??? This section could use an example program.
07435eb4
UD
3469
3470@node IOCTLs
3471@section Generic I/O Control operations
3472@cindex generic i/o control operations
3473@cindex IOCTLs
3474
3475The GNU system can handle most input/output operations on many different
3476devices and objects in terms of a few file primitives - @code{read},
3477@code{write} and @code{lseek}. However, most devices also have a few
3478peculiar operations which do not fit into this model. Such as:
3479
3480@itemize @bullet
3481
3482@item
3483Changing the character font used on a terminal.
3484
3485@item
3486Telling a magnetic tape system to rewind or fast forward. (Since they
3487cannot move in byte increments, @code{lseek} is inapplicable).
3488
3489@item
3490Ejecting a disk from a drive.
3491
3492@item
3493Playing an audio track from a CD-ROM drive.
3494
3495@item
3496Maintaining routing tables for a network.
3497
3498@end itemize
3499
3500Although some such objects such as sockets and terminals
3501@footnote{Actually, the terminal-specific functions are implemented with
3502IOCTLs on many platforms.} have special functions of their own, it would
3503not be practical to create functions for all these cases.
3504
3505Instead these minor operations, known as @dfn{IOCTL}s, are assigned code
3506numbers and multiplexed through the @code{ioctl} function, defined in
3507@code{sys/ioctl.h}. The code numbers themselves are defined in many
3508different headers.
3509
3510@deftypefun int ioctl (int @var{filedes}, int @var{command}, @dots{})
3511
3512The @code{ioctl} function performs the generic I/O operation
3513@var{command} on @var{filedes}.
3514
3515A third argument is usually present, either a single number or a pointer
3516to a structure. The meaning of this argument, the returned value, and
3517any error codes depends upon the command used. Often @math{-1} is
3518returned for a failure.
3519
3520@end deftypefun
3521
3522On some systems, IOCTLs used by different devices share the same numbers.
3523Thus, although use of an inappropriate IOCTL @emph{usually} only produces
3524an error, you should not attempt to use device-specific IOCTLs on an
3525unknown device.
3526
3527Most IOCTLs are OS-specific and/or only used in special system utilities,
3528and are thus beyond the scope of this document. For an example of the use
8b7fb588 3529of an IOCTL, see @ref{Out-of-Band Data}.
This page took 0.47798 seconds and 5 git commands to generate.