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