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