OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / original / man2 / open.2
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 1992 Drew Eckhardt;
4 .\"                               1993 Michael Haardt, Ian Jackson.
5 .\"                               2008 Greg Banks
6 .\"
7 .\" Permission is granted to make and distribute verbatim copies of this
8 .\" manual provided the copyright notice and this permission notice are
9 .\" preserved on all copies.
10 .\"
11 .\" Permission is granted to copy and distribute modified versions of this
12 .\" manual under the conditions for verbatim copying, provided that the
13 .\" entire resulting derived work is distributed under the terms of a
14 .\" permission notice identical to this one.
15 .\"
16 .\" Since the Linux kernel and libraries are constantly changing, this
17 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
18 .\" responsibility for errors or omissions, or for damages resulting from
19 .\" the use of the information contained herein.  The author(s) may not
20 .\" have taken the same level of care in the production of this manual,
21 .\" which is licensed free of charge, as they might when working
22 .\" professionally.
23 .\"
24 .\" Formatted or processed versions of this manual, if unaccompanied by
25 .\" the source, must acknowledge the copyright and authors of this work.
26 .\"
27 .\" Modified 1993-07-21 by Rik Faith <faith@cs.unc.edu>
28 .\" Modified 1994-08-21 by Michael Haardt
29 .\" Modified 1996-04-13 by Andries Brouwer <aeb@cwi.nl>
30 .\" Modified 1996-05-13 by Thomas Koenig
31 .\" Modified 1996-12-20 by Michael Haardt
32 .\" Modified 1999-02-19 by Andries Brouwer <aeb@cwi.nl>
33 .\" Modified 1998-11-28 by Joseph S. Myers <jsm28@hermes.cam.ac.uk>
34 .\" Modified 1999-06-03 by Michael Haardt
35 .\" Modified 2002-05-07 by Michael Kerrisk <mtk.manpages@gmail.com>
36 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
37 .\" 2004-12-08, mtk, reordered flags list alphabetically
38 .\" 2004-12-08, Martin Pool <mbp@sourcefrog.net> (& mtk), added O_NOATIME
39 .\" 2007-09-18, mtk, Added description of O_CLOEXEC + other minor edits
40 .\" 2008-01-03, mtk, with input from Trond Myklebust
41 .\"     <trond.myklebust@fys.uio.no> and Timo Sirainen <tss@iki.fi>
42 .\"     Rewrite description of O_EXCL.
43 .\" 2008-01-11, Greg Banks <gnb@melbourne.sgi.com>: add more detail
44 .\"     on O_DIRECT.
45 .\" 2008-02-26, Michael Haardt: Reorganized text for O_CREAT and mode
46 .\"
47 .\" FIXME . Apr 08: The next POSIX revision has O_EXEC, O_SEARCH, and
48 .\" O_TTYINIT.  Eventually these may need to be documented.  --mtk
49 .\" FIXME Linux 2.6.33 has O_DSYNC, and a hiddden __O_SYNC.
50 .\"
51 .TH OPEN 2 2009-09-20 "Linux" "Linux Programmer's Manual"
52 .SH NAME
53 open, creat \- open and possibly create a file or device
54 .SH SYNOPSIS
55 .nf
56 .B #include <sys/types.h>
57 .B #include <sys/stat.h>
58 .B #include <fcntl.h>
59 .sp
60 .BI "int open(const char *" pathname ", int " flags );
61 .BI "int open(const char *" pathname ", int " flags ", mode_t " mode );
62
63 .BI "int creat(const char *" pathname ", mode_t " mode );
64 .fi
65 .SH DESCRIPTION
66 Given a
67 .I pathname
68 for a file,
69 .BR open ()
70 returns a file descriptor, a small, nonnegative integer
71 for use in subsequent system calls
72 .RB ( read "(2), " write "(2), " lseek "(2), " fcntl "(2), etc.)."
73 The file descriptor returned by a successful call will be
74 the lowest-numbered file descriptor not currently open for the process.
75 .PP
76 By default, the new file descriptor is set to remain open across an
77 .BR execve (2)
78 (i.e., the
79 .B FD_CLOEXEC
80 file descriptor flag described in
81 .BR fcntl (2)
82 is initially disabled; the Linux-specific
83 .B O_CLOEXEC
84 flag, described below, can be used to change this default).
85 The file offset is set to the beginning of the file (see
86 .BR lseek (2)).
87 .PP
88 A call to
89 .BR open ()
90 creates a new
91 .IR "open file description" ,
92 an entry in the system-wide table of open files.
93 This entry records the file offset and the file status flags
94 (modifiable via the
95 .BR fcntl (2)
96 .B F_SETFL
97 operation).
98 A file descriptor is a reference to one of these entries;
99 this reference is unaffected if
100 .I pathname
101 is subsequently removed or modified to refer to a different file.
102 The new open file description is initially not shared
103 with any other process,
104 but sharing may arise via
105 .BR fork (2).
106 .PP
107 The argument
108 .I flags
109 must include one of the following
110 .IR "access modes" :
111 .BR O_RDONLY ", " O_WRONLY ", or " O_RDWR .
112 These request opening the file read-only, write-only, or read/write,
113 respectively.
114
115 In addition, zero or more file creation flags and file status flags
116 can be
117 .RI bitwise- or 'd
118 in
119 .IR flags .
120 The
121 .I file creation flags
122 are
123 .BR O_CREAT ", " O_EXCL ", " O_NOCTTY ", and " O_TRUNC .
124 The
125 .I file status flags
126 are all of the remaining flags listed below.
127 .\" FIXME . Actually is it true that the "file status flags" are all of the
128 .\" remaining flags listed below?  SUSv4 divides the flags into:
129 .\" * Access mode
130 .\" * File creation
131 .\" * File status
132 .\" * Other (O_CLOEXEC, O_DIRECTORY, O_NOFOLLOW)
133 .\" though it's not clear what the difference between "other" and
134 .\" "File creation" flags is.  (I've raised an Aardvark to see if this
135 .\" can be clarified in SUSv4; 10 Oct 2008.)
136 The distinction between these two groups of flags is that
137 the file status flags can be retrieved and (in some cases)
138 modified using
139 .BR fcntl (2).
140 The full list of file creation flags and file status flags is as follows:
141 .TP
142 .B O_APPEND
143 The file is opened in append mode.
144 Before each
145 .BR write (2),
146 the file offset is positioned at the end of the file,
147 as if with
148 .BR lseek (2).
149 .B O_APPEND
150 may lead to corrupted files on NFS file systems if more than one process
151 appends data to a file at once.
152 .\" For more background, see
153 .\" http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=453946
154 .\" http://nfs.sourceforge.net/
155 This is because NFS does not support
156 appending to a file, so the client kernel has to simulate it, which
157 can't be done without a race condition.
158 .TP
159 .B O_ASYNC
160 Enable signal-driven I/O:
161 generate a signal
162 .RB ( SIGIO
163 by default, but this can be changed via
164 .BR fcntl (2))
165 when input or output becomes possible on this file descriptor.
166 This feature is only available for terminals, pseudo-terminals,
167 sockets, and (since Linux 2.6) pipes and FIFOs.
168 See
169 .BR fcntl (2)
170 for further details.
171 .TP
172 .BR O_CLOEXEC " (Since Linux 2.6.23)"
173 Enable the close-on-exec flag for the new file descriptor.
174 Specifying this flag permits a program to avoid additional
175 .BR fcntl (2)
176 .B F_SETFD
177 operations to set the
178 .B FD_CLOEXEC
179 flag.
180 Additionally,
181 use of this flag is essential in some multithreaded programs
182 since using a separate
183 .BR fcntl (2)
184 .B F_SETFD
185 operation to set the
186 .B FD_CLOEXEC
187 flag does not suffice to avoid race conditions
188 where one thread opens a file descriptor at the same
189 time as another thread does a
190 .BR fork (2)
191 plus
192 .BR execve (2).
193 .\" This flag fixes only one form of the race condition;
194 .\" The race can also occur with, for example, descriptors
195 .\" returned by accept(), pipe(), etc.
196 .TP
197 .B O_CREAT
198 If the file does not exist it will be created.
199 The owner (user ID) of the file is set to the effective user ID
200 of the process.
201 The group ownership (group ID) is set either to
202 the effective group ID of the process or to the group ID of the
203 parent directory (depending on file system type and mount options,
204 and the mode of the parent directory, see the mount options
205 .I bsdgroups
206 and
207 .I sysvgroups
208 described in
209 .BR mount (8)).
210 .\" As at 2.6.25, bsdgroups is supported by ext2, ext3, ext4, and
211 .\" XFS (since 2.6.14).
212 .RS
213 .PP
214 .I mode
215 specifies the permissions to use in case a new file is created.
216 This argument must be supplied when
217 .B O_CREAT
218 is specified in
219 .IR flags ;
220 if
221 .B O_CREAT
222 is not specified, then
223 .I mode
224 is ignored.
225 The effective permissions are modified by
226 the process's
227 .I umask
228 in the usual way: The permissions of the created file are
229 .IR "(mode\ &\ ~umask)" .
230 Note that this mode only applies to future accesses of the
231 newly created file; the
232 .BR open ()
233 call that creates a read-only file may well return a read/write
234 file descriptor.
235 .PP
236 The following symbolic constants are provided for
237 .IR mode :
238 .TP 9
239 .B S_IRWXU
240 00700 user (file owner) has read, write and execute permission
241 .TP
242 .B S_IRUSR
243 00400 user has read permission
244 .TP
245 .B S_IWUSR
246 00200 user has write permission
247 .TP
248 .B S_IXUSR
249 00100 user has execute permission
250 .TP
251 .B S_IRWXG
252 00070 group has read, write and execute permission
253 .TP
254 .B S_IRGRP
255 00040 group has read permission
256 .TP
257 .B S_IWGRP
258 00020 group has write permission
259 .TP
260 .B S_IXGRP
261 00010 group has execute permission
262 .TP
263 .B S_IRWXO
264 00007 others have read, write and execute permission
265 .TP
266 .B S_IROTH
267 00004 others have read permission
268 .TP
269 .B S_IWOTH
270 00002 others have write permission
271 .TP
272 .B S_IXOTH
273 00001 others have execute permission
274 .RE
275 .TP
276 .BR O_DIRECT " (Since Linux 2.4.10)"
277 Try to minimize cache effects of the I/O to and from this file.
278 In general this will degrade performance, but it is useful in
279 special situations, such as when applications do their own caching.
280 File I/O is done directly to/from user space buffers.
281 The
282 .B O_DIRECT
283 flag on its own makes at an effort to transfer data synchronously,
284 but does not give the guarantees of the
285 .B O_SYNC
286 that data and necessary metadata are transferred.
287 To guarantee synchronous I/O the
288 .B O_SYNC
289 must be used in addition to
290 .BR O_DIRECT .
291 See
292 .B NOTES
293 below for further discussion.
294 .sp
295 A semantically similar (but deprecated) interface for block devices
296 is described in
297 .BR raw (8).
298 .TP
299 .B O_DIRECTORY
300 If \fIpathname\fP is not a directory, cause the open to fail.
301 .\" But see the following and its replies:
302 .\" http://marc.theaimsgroup.com/?t=112748702800001&r=1&w=2
303 .\" [PATCH] open: O_DIRECTORY and O_CREAT together should fail
304 .\" O_DIRECTORY | O_CREAT causes O_DIRECTORY to be ignored.
305 This flag is Linux-specific, and was added in kernel version 2.1.126, to
306 avoid denial-of-service problems if
307 .BR opendir (3)
308 is called on a
309 FIFO or tape device, but should not be used outside of the
310 implementation of
311 .BR opendir (3).
312 .TP
313 .B O_EXCL
314 Ensure that this call creates the file:
315 if this flag is specified in conjunction with
316 .BR O_CREAT ,
317 and
318 .I pathname
319 already exists, then
320 .BR open ()
321 will fail.
322 The behavior of
323 .B O_EXCL
324 is undefined if
325 .B O_CREAT
326 is not specified.
327
328 When these two flags are specified, symbolic links are not followed:
329 .\" POSIX.1-2001 explicitly requires this behavior.
330 if
331 .I pathname
332 is a symbolic link, then
333 .BR open ()
334 fails regardless of where the symbolic link points to.
335
336 .B O_EXCL
337 is only supported on NFS when using NFSv3 or later on kernel 2.6 or later.
338 In environments where NFS
339 .B O_EXCL
340 support is not provided, programs that rely on it
341 for performing locking tasks will contain a race condition.
342 Portable programs that want to perform atomic file locking using a lockfile,
343 and need to avoid reliance on NFS support for
344 .BR O_EXCL ,
345 can create a unique file on
346 the same file system (e.g., incorporating hostname and PID), and use
347 .BR link (2)
348 to make a link to the lockfile.
349 If
350 .BR link (2)
351 returns 0, the lock is successful.
352 Otherwise, use
353 .BR stat (2)
354 on the unique file to check if its link count has increased to 2,
355 in which case the lock is also successful.
356 .TP
357 .B O_LARGEFILE
358 (LFS)
359 Allow files whose sizes cannot be represented in an
360 .I off_t
361 (but can be represented in an
362 .IR off64_t )
363 to be opened.
364 The
365 .B _LARGEFILE64_SOURCE
366 macro must be defined in order to obtain this definition.
367 Setting the
368 .B _FILE_OFFSET_BITS
369 feature test macro to 64 (rather than using
370 .BR O_LARGEFILE )
371 is the preferred method of obtaining
372 method of accessing large files on 32-bit systems (see
373 .BR feature_test_macros (7)).
374 .TP
375 .BR O_NOATIME " (Since Linux 2.6.8)"
376 Do not update the file last access time (st_atime in the inode)
377 when the file is
378 .BR read (2).
379 This flag is intended for use by indexing or backup programs,
380 where its use can significantly reduce the amount of disk activity.
381 This flag may not be effective on all file systems.
382 One example is NFS, where the server maintains the access time.
383 .\" The O_NOATIME flag also affects the treatment of st_atime
384 .\" by mmap() and readdir(2), MTK, Dec 04.
385 .TP
386 .B O_NOCTTY
387 If
388 .I pathname
389 refers to a terminal device \(em see
390 .BR tty (4)
391 \(em it will not become the process's controlling terminal even if the
392 process does not have one.
393 .TP
394 .B O_NOFOLLOW
395 If \fIpathname\fP is a symbolic link, then the open fails.
396 This is a FreeBSD extension, which was added to Linux in version 2.1.126.
397 Symbolic links in earlier components of the pathname will still be
398 followed.
399 .\" The headers from glibc 2.0.100 and later include a
400 .\" definition of this flag; \fIkernels before 2.1.126 will ignore it if
401 .\" used\fP.
402 .TP
403 .BR O_NONBLOCK " or " O_NDELAY
404 When possible, the file is opened in nonblocking mode.
405 Neither the
406 .BR open ()
407 nor any subsequent operations on the file descriptor which is
408 returned will cause the calling process to wait.
409 For the handling of FIFOs (named pipes), see also
410 .BR fifo (7).
411 For a discussion of the effect of
412 .B O_NONBLOCK
413 in conjunction with mandatory file locks and with file leases, see
414 .BR fcntl (2).
415 .TP
416 .B O_SYNC
417 The file is opened for synchronous I/O.
418 Any
419 .BR write (2)s
420 on the resulting file descriptor will block the calling process until
421 the data has been physically written to the underlying hardware.
422 .IR "But see NOTES below" .
423 .TP
424 .B O_TRUNC
425 If the file already exists and is a regular file and the open mode allows
426 writing (i.e., is
427 .B O_RDWR
428 or
429 .BR O_WRONLY )
430 it will be truncated to length 0.
431 If the file is a FIFO or terminal device file, the
432 .B O_TRUNC
433 flag is ignored.
434 Otherwise the effect of
435 .B O_TRUNC
436 is unspecified.
437 .PP
438 Some of these optional flags can be altered using
439 .BR fcntl (2)
440 after the file has been opened.
441
442 .BR creat ()
443 is equivalent to
444 .BR open ()
445 with
446 .I flags
447 equal to
448 .BR O_CREAT|O_WRONLY|O_TRUNC .
449 .SH "RETURN VALUE"
450 .BR open ()
451 and
452 .BR creat ()
453 return the new file descriptor, or \-1 if an error occurred
454 (in which case,
455 .I errno
456 is set appropriately).
457 .SH ERRORS
458 .TP
459 .B EACCES
460 The requested access to the file is not allowed, or search permission
461 is denied for one of the directories in the path prefix of
462 .IR pathname ,
463 or the file did not exist yet and write access to the parent directory
464 is not allowed.
465 (See also
466 .BR path_resolution (7).)
467 .TP
468 .B EEXIST
469 .I pathname
470 already exists and
471 .BR O_CREAT " and " O_EXCL
472 were used.
473 .TP
474 .B EFAULT
475 .I pathname
476 points outside your accessible address space.
477 .TP
478 .B EFBIG
479 See
480 .BR EOVERFLOW .
481 .TP
482 .B EINTR
483 While blocked waiting to complete an open of a slow device
484 (e.g., a FIFO; see
485 .BR fifo (7)),
486 the call was interrupted by a signal handler; see
487 .BR signal (7).
488 .TP
489 .B EISDIR
490 .I pathname
491 refers to a directory and the access requested involved writing
492 (that is,
493 .B O_WRONLY
494 or
495 .B O_RDWR
496 is set).
497 .TP
498 .B ELOOP
499 Too many symbolic links were encountered in resolving
500 .IR pathname ,
501 or \fBO_NOFOLLOW\fP was specified but
502 .I pathname
503 was a symbolic link.
504 .TP
505 .B EMFILE
506 The process already has the maximum number of files open.
507 .TP
508 .B ENAMETOOLONG
509 .I pathname
510 was too long.
511 .TP
512 .B ENFILE
513 The system limit on the total number of open files has been reached.
514 .TP
515 .B ENODEV
516 .I pathname
517 refers to a device special file and no corresponding device exists.
518 (This is a Linux kernel bug; in this situation
519 .B ENXIO
520 must be returned.)
521 .TP
522 .B ENOENT
523 .B O_CREAT
524 is not set and the named file does not exist.
525 Or, a directory component in
526 .I pathname
527 does not exist or is a dangling symbolic link.
528 .TP
529 .B ENOMEM
530 Insufficient kernel memory was available.
531 .TP
532 .B ENOSPC
533 .I pathname
534 was to be created but the device containing
535 .I pathname
536 has no room for the new file.
537 .TP
538 .B ENOTDIR
539 A component used as a directory in
540 .I pathname
541 is not, in fact, a directory, or \fBO_DIRECTORY\fP was specified and
542 .I pathname
543 was not a directory.
544 .TP
545 .B ENXIO
546 .BR O_NONBLOCK " | " O_WRONLY
547 is set, the named file is a FIFO and
548 no process has the file open for reading.
549 Or, the file is a device special file and no corresponding device exists.
550 .TP
551 .B EOVERFLOW
552 .I pathname
553 refers to a regular file that is too large to be opened.
554 The usual scenario here is that an application compiled
555 on a 32-bit platform without
556 .I -D_FILE_OFFSET_BITS=64
557 tried to open a file whose size exceeds
558 .I (2<<31)-1
559 bits;
560 see also
561 .B O_LARGEFILE
562 above.
563 This is the error specified by POSIX.1-2001;
564 in kernels before 2.6.24, Linux gave the error
565 .B EFBIG
566 for this case.
567 .\" See http://bugzilla.kernel.org/show_bug.cgi?id=7253
568 .\" "Open of a large file on 32-bit fails with EFBIG, should be EOVERFLOW"
569 .\" Reported 2006-10-03
570 .TP
571 .B EPERM
572 The
573 .B O_NOATIME
574 flag was specified, but the effective user ID of the caller
575 .\" Strictly speaking, it's the file system UID... (MTK)
576 did not match the owner of the file and the caller was not privileged
577 .RB ( CAP_FOWNER ).
578 .TP
579 .B EROFS
580 .I pathname
581 refers to a file on a read-only file system and write access was
582 requested.
583 .TP
584 .B ETXTBSY
585 .I pathname
586 refers to an executable image which is currently being executed and
587 write access was requested.
588 .TP
589 .B EWOULDBLOCK
590 The
591 .B O_NONBLOCK
592 flag was specified, and an incompatible lease was held on the file
593 (see
594 .BR fcntl (2)).
595 .SH "CONFORMING TO"
596 SVr4, 4.3BSD, POSIX.1-2001.
597 The
598 .BR O_DIRECTORY ,
599 .BR O_NOATIME ,
600 and
601 .B O_NOFOLLOW
602 flags are Linux-specific, and one may need to define
603 .B _GNU_SOURCE
604 to obtain their definitions.
605
606 The
607 .BR O_CLOEXEC
608 flag is not specified in POSIX.1-2001,
609 but is specified in POSIX.1-2008.
610
611 .B O_DIRECT
612 is not specified in POSIX; one has to define
613 .B _GNU_SOURCE
614 to get its definition.
615 .SH NOTES
616 Under Linux, the
617 .B O_NONBLOCK
618 flag indicates that one wants to open
619 but does not necessarily have the intention to read or write.
620 This is typically used to open devices in order to get a file descriptor
621 for use with
622 .BR ioctl (2).
623
624 Unlike the other values that can be specified in
625 .IR flags ,
626 the
627 .I "access mode"
628 values
629 .BR O_RDONLY ", " O_WRONLY ", and " O_RDWR ,
630 do not specify individual bits.
631 Rather, they define the low order two bits of
632 .IR flags ,
633 and are defined respectively as 0, 1, and 2.
634 In other words, the combination
635 .B "O_RDONLY | O_WRONLY"
636 is a logical error, and certainly does not have the same meaning as
637 .BR O_RDWR .
638 Linux reserves the special, nonstandard access mode 3 (binary 11) in
639 .I flags
640 to mean:
641 check for read and write permission on the file and return a descriptor
642 that can't be used for reading or writing.
643 This nonstandard access mode is used by some Linux drivers to return a
644 descriptor that is only to be used for device-specific
645 .BR ioctl (2)
646 operations.
647 .\" See for example util-linux's disk-utils/setfdprm.c
648 .\" For some background on access mode 3, see
649 .\" http://thread.gmane.org/gmane.linux.kernel/653123
650 .\" "[RFC] correct flags to f_mode conversion in __dentry_open"
651 .\" LKML, 12 Mar 2008
652 .LP
653 The (undefined) effect of
654 .B O_RDONLY | O_TRUNC
655 varies among implementations.
656 On many systems the file is actually truncated.
657 .\" Linux 2.0, 2.5: truncate
658 .\" Solaris 5.7, 5.8: truncate
659 .\" Irix 6.5: truncate
660 .\" Tru64 5.1B: truncate
661 .\" HP-UX 11.22: truncate
662 .\" FreeBSD 4.7: truncate
663 .PP
664 There are many infelicities in the protocol underlying NFS, affecting
665 amongst others
666 .BR O_SYNC " and " O_NDELAY .
667
668 POSIX provides for three different variants of synchronized I/O,
669 corresponding to the flags
670 .BR O_SYNC ,
671 .BR O_DSYNC ,
672 and
673 .BR O_RSYNC .
674 Currently (2.6.31), Linux only implements
675 .BR O_SYNC ,
676 but glibc maps
677 .B O_DSYNC
678 and
679 .B O_RSYNC
680 to the same numerical value as
681 .BR O_SYNC
682 Most Linux filesystems don't actually implement the POSIX
683 .B O_SYNC
684 semantics, which require all metadata updates of a write
685 to be on disk on returning to userspace, but only the
686 .B O_DSYNC
687 semantics, which require only actual file data and metadata necessary
688 to retrieve it to be on disk by the time the system call returns.
689
690 Note that
691 .BR open ()
692 can open device special files, but
693 .BR creat ()
694 cannot create them; use
695 .BR mknod (2)
696 instead.
697 .LP
698 On NFS file systems with UID mapping enabled,
699 .BR open ()
700 may
701 return a file descriptor but, for example,
702 .BR read (2)
703 requests are denied
704 with \fBEACCES\fP.
705 This is because the client performs
706 .BR open ()
707 by checking the
708 permissions, but UID mapping is performed by the server upon
709 read and write requests.
710
711 If the file is newly created, its
712 .IR st_atime ,
713 .IR st_ctime ,
714 .I st_mtime
715 fields
716 (respectively, time of last access, time of last status change, and
717 time of last modification; see
718 .BR stat (2))
719 are set
720 to the current time, and so are the
721 .I st_ctime
722 and
723 .I st_mtime
724 fields of the
725 parent directory.
726 Otherwise, if the file is modified because of the
727 .B O_TRUNC
728 flag, its st_ctime and st_mtime fields are set to the current time.
729 .SS O_DIRECT
730 .LP
731 The
732 .B O_DIRECT
733 flag may impose alignment restrictions on the length and address
734 of userspace buffers and the file offset of I/Os.
735 In Linux alignment
736 restrictions vary by file system and kernel version and might be
737 absent entirely.
738 However there is currently no file system\-independent
739 interface for an application to discover these restrictions for a given
740 file or file system.
741 Some file systems provide their own interfaces
742 for doing so, for example the
743 .B XFS_IOC_DIOINFO
744 operation in
745 .BR xfsctl (3).
746 .LP
747 Under Linux 2.4, transfer sizes, and the alignment of the user buffer
748 and the file offset must all be multiples of the logical block size
749 of the file system.
750 Under Linux 2.6, alignment to 512-byte boundaries
751 suffices.
752 .LP
753 The
754 .B O_DIRECT
755 flag was introduced in SGI IRIX, where it has alignment
756 restrictions similar to those of Linux 2.4.
757 IRIX has also a
758 .BR fcntl (2)
759 call to query appropriate alignments, and sizes.
760 FreeBSD 4.x introduced
761 a flag of the same name, but without alignment restrictions.
762 .LP
763 .B O_DIRECT
764 support was added under Linux in kernel version 2.4.10.
765 Older Linux kernels simply ignore this flag.
766 Some file systems may not implement the flag and
767 .BR open ()
768 will fail with
769 .B EINVAL
770 if it is used.
771 .LP
772 Applications should avoid mixing
773 .B O_DIRECT
774 and normal I/O to the same file,
775 and especially to overlapping byte regions in the same file.
776 Even when the file system correctly handles the coherency issues in
777 this situation, overall I/O throughput is likely to be slower than
778 using either mode alone.
779 Likewise, applications should avoid mixing
780 .BR mmap (2)
781 of files with direct I/O to the same files.
782 .LP
783 The behaviour of
784 .B O_DIRECT
785 with NFS will differ from local file systems.
786 Older kernels, or
787 kernels configured in certain ways, may not support this combination.
788 The NFS protocol does not support passing the flag to the server, so
789 .B O_DIRECT
790 I/O will only bypass the page cache on the client; the server may
791 still cache the I/O.
792 The client asks the server to make the I/O
793 synchronous to preserve the synchronous semantics of
794 .BR O_DIRECT .
795 Some servers will perform poorly under these circumstances, especially
796 if the I/O size is small.
797 Some servers may also be configured to
798 lie to clients about the I/O having reached stable storage; this
799 will avoid the performance penalty at some risk to data integrity
800 in the event of server power failure.
801 The Linux NFS client places no alignment restrictions on
802 .B O_DIRECT
803 I/O.
804 .PP
805 In summary,
806 .B O_DIRECT
807 is a potentially powerful tool that should be used with caution.
808 It is recommended that applications treat use of
809 .B O_DIRECT
810 as a performance option which is disabled by default.
811 .PP
812 .RS
813 "The thing that has always disturbed me about O_DIRECT is that the whole
814 interface is just stupid, and was probably designed by a deranged monkey
815 on some serious mind-controlling substances." \(em Linus
816 .RE
817 .SH BUGS
818 Currently, it is not possible to enable signal-driven
819 I/O by specifying
820 .B O_ASYNC
821 when calling
822 .BR open ();
823 use
824 .BR fcntl (2)
825 to enable this flag.
826 .\" FIXME . Check bugzilla report on open(O_ASYNC)
827 .\" See http://bugzilla.kernel.org/show_bug.cgi?id=5993
828 .SH "SEE ALSO"
829 .BR chmod (2),
830 .BR chown (2),
831 .BR close (2),
832 .BR dup (2),
833 .BR fcntl (2),
834 .BR link (2),
835 .BR lseek (2),
836 .BR mknod (2),
837 .BR mmap (2),
838 .BR mount (2),
839 .BR openat (2),
840 .BR read (2),
841 .BR socket (2),
842 .BR stat (2),
843 .BR umask (2),
844 .BR unlink (2),
845 .BR write (2),
846 .BR fopen (3),
847 .BR feature_test_macros (7),
848 .BR fifo (7),
849 .BR path_resolution (7),
850 .BR symlink (7)