]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/open.2
Changes: Expanded tabs
[thirdparty/man-pages.git] / man2 / open.2
CommitLineData
fea681da 1.\" This manpage is Copyright (C) 1992 Drew Eckhardt;
fd185f58
MK
2.\" and Copyright (C) 1993 Michael Haardt, Ian Jackson.
3.\" and Copyright (C) 2008 Greg Banks
7b8ba76c 4.\" and Copyright (C) 2006, 2008, 2013, 2014 Michael Kerrisk <mtk.manpages@gmail.com>
fea681da 5.\"
93015253 6.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
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.
c13182ef 15.\"
fea681da
MK
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.
c13182ef 23.\"
fea681da
MK
24.\" Formatted or processed versions of this manual, if unaccompanied by
25.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 26.\" %%%LICENSE_END
fea681da
MK
27.\"
28.\" Modified 1993-07-21 by Rik Faith <faith@cs.unc.edu>
29.\" Modified 1994-08-21 by Michael Haardt
30.\" Modified 1996-04-13 by Andries Brouwer <aeb@cwi.nl>
31.\" Modified 1996-05-13 by Thomas Koenig
32.\" Modified 1996-12-20 by Michael Haardt
33.\" Modified 1999-02-19 by Andries Brouwer <aeb@cwi.nl>
34.\" Modified 1998-11-28 by Joseph S. Myers <jsm28@hermes.cam.ac.uk>
35.\" Modified 1999-06-03 by Michael Haardt
c11b1abf
MK
36.\" Modified 2002-05-07 by Michael Kerrisk <mtk.manpages@gmail.com>
37.\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
1c1e15ed
MK
38.\" 2004-12-08, mtk, reordered flags list alphabetically
39.\" 2004-12-08, Martin Pool <mbp@sourcefrog.net> (& mtk), added O_NOATIME
fe75ec04 40.\" 2007-09-18, mtk, Added description of O_CLOEXEC + other minor edits
447bb15e 41.\" 2008-01-03, mtk, with input from Trond Myklebust
f4b9d6a5
MK
42.\" <trond.myklebust@fys.uio.no> and Timo Sirainen <tss@iki.fi>
43.\" Rewrite description of O_EXCL.
ddc4d339
MK
44.\" 2008-01-11, Greg Banks <gnb@melbourne.sgi.com>: add more detail
45.\" on O_DIRECT.
d77eb764 46.\" 2008-02-26, Michael Haardt: Reorganized text for O_CREAT and mode
fea681da 47.\"
61b7c1e1 48.\" FIXME . Apr 08: The next POSIX revision has O_EXEC, O_SEARCH, and
9f91e36c
MK
49.\" O_TTYINIT. Eventually these may need to be documented. --mtk
50.\"
726663fd 51.TH OPEN 2 2014-05-10 "Linux" "Linux Programmer's Manual"
fea681da 52.SH NAME
7b8ba76c 53open, openat, creat \- open and possibly create a file
fea681da
MK
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 );
5895e7eb 62
fea681da 63.BI "int creat(const char *" pathname ", mode_t " mode );
7b8ba76c
MK
64.sp
65.BI "int openat(int " dirfd ", const char *" pathname ", int " flags );
66.BI "int openat(int " dirfd ", const char *" pathname ", int " flags \
67", mode_t " mode );
fea681da 68.fi
7b8ba76c
MK
69.sp
70.in -4n
71Feature Test Macro Requirements for glibc (see
72.BR feature_test_macros (7)):
73.in
74.sp
75.BR openat ():
76.PD 0
77.ad l
78.RS 4
79.TP 4
80Since glibc 2.10:
81_XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
82.TP
83Before glibc 2.10:
84_ATFILE_SOURCE
85.RE
86.ad
87.PD
fea681da 88.SH DESCRIPTION
e366dbc4 89Given a
0daa9e92 90.I pathname
e366dbc4 91for a file,
1f6ceb40 92.BR open ()
2fda57bd 93returns a file descriptor, a small, nonnegative integer
e366dbc4
MK
94for use in subsequent system calls
95.RB ( read "(2), " write "(2), " lseek "(2), " fcntl "(2), etc.)."
96The file descriptor returned by a successful call will be
2c4bff36 97the lowest-numbered file descriptor not currently open for the process.
e366dbc4 98.PP
fe75ec04 99By default, the new file descriptor is set to remain open across an
e366dbc4 100.BR execve (2)
1f6ceb40
MK
101(i.e., the
102.B FD_CLOEXEC
103file descriptor flag described in
d6a74b95 104.BR fcntl (2))
fd3ac440 105is initially disabled; the
fe75ec04 106.B O_CLOEXEC
d6a74b95 107flag, described below, can be used to change this default.
1f6ceb40 108The file offset is set to the beginning of the file (see
c13182ef 109.BR lseek (2)).
e366dbc4
MK
110.PP
111A call to
112.BR open ()
113creates a new
114.IR "open file description" ,
115an entry in the system-wide table of open files.
61b12e2b
MK
116(This object is variously also called an "open file object",
117a "file handle", an "open file table entry",
118or\(emin kernel-developer parlance\(ema
119.IR "struct file" .
120The term "open file description" is used by POSIX.)
121The open file description records the file offset and the file status flags
20ee63c1 122(see below).
61b12e2b 123A file descriptor is a reference to an open file description;
2c4bff36
MK
124this reference is unaffected if
125.I pathname
126is subsequently removed or modified to refer to a different file.
e366dbc4 127The new open file description is initially not shared
2c4bff36
MK
128with any other process,
129but sharing may arise via
130.BR fork (2).
e366dbc4 131.PP
c4bb193f 132The argument
fea681da 133.I flags
e366dbc4
MK
134must include one of the following
135.IR "access modes" :
c7992edc 136.BR O_RDONLY ", " O_WRONLY ", or " O_RDWR .
e366dbc4
MK
137These request opening the file read-only, write-only, or read/write,
138respectively.
bfe9ba67
MK
139
140In addition, zero or more file creation flags and file status flags
c13182ef 141can be
fea681da 142.RI bitwise- or 'd
e366dbc4 143in
bfe9ba67 144.IR flags .
c13182ef
MK
145The
146.I file creation flags
147are
0e40804c 148.BR O_CLOEXEC ,
b072a788 149.BR O_CREAT ,
0e40804c
MK
150.BR O_DIRECTORY ,
151.BR O_EXCL ,
152.BR O_NOCTTY ,
153.BR O_NOFOLLOW ,
f2698a42 154.BR O_TMPFILE ,
0e40804c
MK
155.BR O_TRUNC ,
156and
157.BR O_TTY_INIT .
c13182ef
MK
158The
159.I file status flags
bfe9ba67 160are all of the remaining flags listed below.
0e40804c 161.\" SUSv4 divides the flags into:
93ee8f96
MK
162.\" * Access mode
163.\" * File creation
164.\" * File status
165.\" * Other (O_CLOEXEC, O_DIRECTORY, O_NOFOLLOW)
166.\" though it's not clear what the difference between "other" and
0e40804c
MK
167.\" "File creation" flags is. I raised an Aardvark to see if this
168.\" can be clarified in SUSv4; 10 Oct 2008.
169.\" http://thread.gmane.org/gmane.comp.standards.posix.austin.general/64/focus=67
170.\" TC1 (balloted in 2013), resolved this, so that those three constants
171.\" are also categorized" as file status flags.
172.\"
bfe9ba67
MK
173The distinction between these two groups of flags is that
174the file status flags can be retrieved and (in some cases)
566b427d
MK
175modified; see
176.BR fcntl (2)
177for details.
178
bfe9ba67 179The full list of file creation flags and file status flags is as follows:
fea681da 180.TP
1c1e15ed 181.B O_APPEND
c13182ef
MK
182The file is opened in append mode.
183Before each
0bfa087b 184.BR write (2),
1e568304 185the file offset is positioned at the end of the file,
1c1e15ed 186as if with
0bfa087b 187.BR lseek (2).
1c1e15ed 188.B O_APPEND
9ee4a2b6 189may lead to corrupted files on NFS filesystems if more than one process
c13182ef 190appends data to a file at once.
a4391429
MK
191.\" For more background, see
192.\" http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=453946
193.\" http://nfs.sourceforge.net/
c13182ef 194This is because NFS does not support
1c1e15ed
MK
195appending to a file, so the client kernel has to simulate it, which
196can't be done without a race condition.
197.TP
198.B O_ASYNC
b50582eb 199Enable signal-driven I/O:
8bd58774
MK
200generate a signal
201.RB ( SIGIO
202by default, but this can be changed via
1c1e15ed
MK
203.BR fcntl (2))
204when input or output becomes possible on this file descriptor.
33a0ccb2 205This feature is available only for terminals, pseudoterminals,
1f6ceb40
MK
206sockets, and (since Linux 2.6) pipes and FIFOs.
207See
1c1e15ed
MK
208.BR fcntl (2)
209for further details.
9bde4908 210See also BUGS, below.
fe75ec04 211.TP
31c1f2b0 212.BR O_CLOEXEC " (since Linux 2.6.23)"
7fdec065 213.\" NOTE! several other man pages refer to this text
fe75ec04 214Enable the close-on-exec flag for the new file descriptor.
24ec631f 215Specifying this flag permits a program to avoid additional
fe75ec04
MK
216.BR fcntl (2)
217.B F_SETFD
24ec631f 218operations to set the
0daa9e92 219.B FD_CLOEXEC
fe75ec04 220flag.
7756d157
MK
221
222Note that the use of this flag is essential in some multithreaded programs,
223because using a separate
fe75ec04
MK
224.BR fcntl (2)
225.B F_SETFD
226operation to set the
0daa9e92 227.B FD_CLOEXEC
fe75ec04 228flag does not suffice to avoid race conditions
7756d157
MK
229where one thread opens a file descriptor and
230attempts to set its close-on-exec flag using
231.BR fcntl (2)
232at the same time as another thread does a
fe75ec04
MK
233.BR fork (2)
234plus
235.BR execve (2).
7756d157 236Depending on the order of execution,
30821db8 237the race may lead to the file descriptor returned by
7756d157
MK
238.BR open ()
239being unintentionally leaked to the program executed by the child process
240created by
241.BR fork (2).
242(This kind of race is in principle possible for any system call
243that creates a file descriptor whose close-on-exec flag should be set,
244and various other Linux system calls provide an equivalent of the
245.BR O_CLOEXEC
246flag to deal with this problem.)
fe75ec04
MK
247.\" This flag fixes only one form of the race condition;
248.\" The race can also occur with, for example, descriptors
249.\" returned by accept(), pipe(), etc.
1c1e15ed 250.TP
fea681da 251.B O_CREAT
f1ad56a6 252If the file does not exist, it will be created.
fea681da 253The owner (user ID) of the file is set to the effective user ID
c13182ef
MK
254of the process.
255The group ownership (group ID) is set either to
fea681da 256the effective group ID of the process or to the group ID of the
9ee4a2b6 257parent directory (depending on filesystem type and mount options,
0fb83d00 258and the mode of the parent directory; see the mount options
fea681da
MK
259.I bsdgroups
260and
261.I sysvgroups
8b39ad66 262described in
fea681da 263.BR mount (8)).
8b39ad66
MK
264.\" As at 2.6.25, bsdgroups is supported by ext2, ext3, ext4, and
265.\" XFS (since 2.6.14).
4e698277
MK
266.RS
267.PP
268.I mode
269specifies the permissions to use in case a new file is created.
270This argument must be supplied when
271.B O_CREAT
f2698a42
AL
272or
273.B O_TMPFILE
4e698277
MK
274is specified in
275.IR flags ;
f2698a42 276if neither
4e698277 277.B O_CREAT
f2698a42
AL
278nor
279.B O_TMPFILE
280is specified, then
4e698277
MK
281.I mode
282is ignored.
283The effective permissions are modified by
284the process's
285.I umask
286in the usual way: The permissions of the created file are
84a275c4 287.IR "(mode\ &\ ~umask)" .
33a0ccb2 288Note that this mode applies only to future accesses of the
4e698277
MK
289newly created file; the
290.BR open ()
291call that creates a read-only file may well return a read/write
292file descriptor.
293.PP
294The following symbolic constants are provided for
295.IR mode :
296.TP 9
297.B S_IRWXU
29800700 user (file owner) has read, write and execute permission
299.TP
300.B S_IRUSR
30100400 user has read permission
302.TP
303.B S_IWUSR
30400200 user has write permission
305.TP
306.B S_IXUSR
30700100 user has execute permission
308.TP
309.B S_IRWXG
31000070 group has read, write and execute permission
311.TP
312.B S_IRGRP
31300040 group has read permission
314.TP
315.B S_IWGRP
31600020 group has write permission
317.TP
318.B S_IXGRP
31900010 group has execute permission
320.TP
321.B S_IRWXO
32200007 others have read, write and execute permission
323.TP
324.B S_IROTH
32500004 others have read permission
326.TP
327.B S_IWOTH
32800002 others have write permission
329.TP
330.B S_IXOTH
33100001 others have execute permission
332.RE
fea681da 333.TP
31c1f2b0 334.BR O_DIRECT " (since Linux 2.4.10)"
1c1e15ed
MK
335Try to minimize cache effects of the I/O to and from this file.
336In general this will degrade performance, but it is useful in
337special situations, such as when applications do their own caching.
bce0482f 338File I/O is done directly to/from user-space buffers.
015221ef
CH
339The
340.B O_DIRECT
0deb3ce9 341flag on its own makes an effort to transfer data synchronously,
015221ef
CH
342but does not give the guarantees of the
343.B O_SYNC
0deb3ce9
JM
344flag that data and necessary metadata are transferred.
345To guarantee synchronous I/O,
015221ef
CH
346.B O_SYNC
347must be used in addition to
348.BR O_DIRECT .
be02e49f 349See NOTES below for further discussion.
9b54d4fa 350.sp
c13182ef 351A semantically similar (but deprecated) interface for block devices
9b54d4fa 352is described in
1c1e15ed
MK
353.BR raw (8).
354.TP
355.B O_DIRECTORY
a8d55537 356If \fIpathname\fP is not a directory, cause the open to fail.
9f8d688a
MK
357.\" But see the following and its replies:
358.\" http://marc.theaimsgroup.com/?t=112748702800001&r=1&w=2
359.\" [PATCH] open: O_DIRECTORY and O_CREAT together should fail
360.\" O_DIRECTORY | O_CREAT causes O_DIRECTORY to be ignored.
65496644 361This flag was added in kernel version 2.1.126, to
60a90ecd
MK
362avoid denial-of-service problems if
363.BR opendir (3)
364is called on a
a3041a58 365FIFO or tape device.
1c1e15ed 366.TP
6cf19e62
MK
367.B O_DSYNC
368Write operations on the file will complete according to the requirements of
369synchronized I/O
370.I data
371integrity completion.
372
373By the time
374.BR write (2)
375(and similar)
376return, the output data
377has been transferred to the underlying hardware,
378along with any file metadata that would be required to retrieve that data
379(i.e., as though each
380.BR write (2)
381was followed by a call to
382.BR fdatasync (2)).
383.IR "See NOTES below" .
384.TP
fea681da 385.B O_EXCL
f4b9d6a5
MK
386Ensure that this call creates the file:
387if this flag is specified in conjunction with
fea681da 388.BR O_CREAT ,
f4b9d6a5
MK
389and
390.I pathname
391already exists, then
1c1e15ed 392.BR open ()
c13182ef 393will fail.
f4b9d6a5
MK
394
395When these two flags are specified, symbolic links are not followed:
396.\" POSIX.1-2001 explicitly requires this behavior.
397if
398.I pathname
399is a symbolic link, then
400.BR open ()
401fails regardless of where the symbolic link points to.
402
10b7a945
IHV
403In general, the behavior of
404.B O_EXCL
405is undefined if it is used without
406.BR O_CREAT .
407There is one exception: on Linux 2.6 and later,
408.B O_EXCL
409can be used without
410.B O_CREAT
411if
412.I pathname
413refers to a block device.
6303d401
DB
414If the block device is in use by the system (e.g., mounted),
415.BR open ()
10b7a945
IHV
416fails with the error
417.BR EBUSY .
418
efe08656 419On NFS,
f4b9d6a5 420.B O_EXCL
33a0ccb2 421is supported only when using NFSv3 or later on kernel 2.6 or later.
efe08656 422In NFS environments where
fea681da 423.B O_EXCL
f4b9d6a5
MK
424support is not provided, programs that rely on it
425for performing locking tasks will contain a race condition.
426Portable programs that want to perform atomic file locking using a lockfile,
427and need to avoid reliance on NFS support for
428.BR O_EXCL ,
429can create a unique file on
9ee4a2b6 430the same filesystem (e.g., incorporating hostname and PID), and use
fea681da 431.BR link (2)
c13182ef 432to make a link to the lockfile.
60a90ecd
MK
433If
434.BR link (2)
f4b9d6a5 435returns 0, the lock is successful.
c13182ef 436Otherwise, use
fea681da
MK
437.BR stat (2)
438on the unique file to check if its link count has increased to 2,
439in which case the lock is also successful.
440.TP
1c1e15ed
MK
441.B O_LARGEFILE
442(LFS)
443Allow files whose sizes cannot be represented in an
8478ee02 444.I off_t
1c1e15ed 445(but can be represented in an
8478ee02 446.IR off64_t )
1c1e15ed 447to be opened.
c13182ef 448The
bcdd964e 449.B _LARGEFILE64_SOURCE
e417acb0
MK
450macro must be defined
451(before including
452.I any
453header files)
454in order to obtain this definition.
c13182ef 455Setting the
bcdd964e 456.B _FILE_OFFSET_BITS
9f3d8b28
MK
457feature test macro to 64 (rather than using
458.BR O_LARGEFILE )
12e263f1 459is the preferred
9f3d8b28 460method of accessing large files on 32-bit systems (see
2dcbf4f7 461.BR feature_test_macros (7)).
1c1e15ed 462.TP
31c1f2b0 463.BR O_NOATIME " (since Linux 2.6.8)"
1bb72c96
MK
464Do not update the file last access time
465.RI ( st_atime
466in the inode)
310b7919 467when the file is
1c1e15ed
MK
468.BR read (2).
469This flag is intended for use by indexing or backup programs,
470where its use can significantly reduce the amount of disk activity.
9ee4a2b6 471This flag may not be effective on all filesystems.
1c1e15ed 472One example is NFS, where the server maintains the access time.
0e1ad98c 473.\" The O_NOATIME flag also affects the treatment of st_atime
92057f4d 474.\" by mmap() and readdir(2), MTK, Dec 04.
1c1e15ed 475.TP
fea681da
MK
476.B O_NOCTTY
477If
478.I pathname
5503c85e 479refers to a terminal device\(emsee
1bb72c96
MK
480.BR tty (4)\(emit
481will not become the process's controlling terminal even if the
fea681da
MK
482process does not have one.
483.TP
1c1e15ed 484.B O_NOFOLLOW
a8d55537 485If \fIpathname\fP is a symbolic link, then the open fails.
c13182ef 486This is a FreeBSD extension, which was added to Linux in version 2.1.126.
1c1e15ed 487Symbolic links in earlier components of the pathname will still be
e366dbc4 488followed.
1135dbe1 489See also
843068bd 490.BR O_PATH
1135dbe1 491below.
e366dbc4
MK
492.\" The headers from glibc 2.0.100 and later include a
493.\" definition of this flag; \fIkernels before 2.1.126 will ignore it if
a8d55537 494.\" used\fP.
fea681da
MK
495.TP
496.BR O_NONBLOCK " or " O_NDELAY
ff40dbb3 497When possible, the file is opened in nonblocking mode.
c13182ef 498Neither the
1c1e15ed 499.BR open ()
fea681da
MK
500nor any subsequent operations on the file descriptor which is
501returned will cause the calling process to wait.
502For the handling of FIFOs (named pipes), see also
af5b2ef2 503.BR fifo (7).
db28bfac 504For a discussion of the effect of
0daa9e92 505.B O_NONBLOCK
db28bfac
MK
506in conjunction with mandatory file locks and with file leases, see
507.BR fcntl (2).
fea681da 508.TP
1135dbe1
MK
509.BR O_PATH " (since Linux 2.6.39)"
510.\" commit 1abf0c718f15a56a0a435588d1b104c7a37dc9bd
511.\" commit 326be7b484843988afe57566b627fb7a70beac56
512.\" commit 65cfc6722361570bfe255698d9cd4dccaf47570d
513.\"
514.\" http://thread.gmane.org/gmane.linux.man/2790/focus=3496
515.\" Subject: Re: [PATCH] open(2): document O_PATH
516.\" Newsgroups: gmane.linux.man, gmane.linux.kernel
517.\"
1135dbe1 518Obtain a file descriptor that can be used for two purposes:
9ee4a2b6 519to indicate a location in the filesystem tree and
1135dbe1
MK
520to perform operations that act purely at the file descriptor level.
521The file itself is not opened, and other file operations (e.g.,
522.BR read (2),
523.BR write (2),
524.BR fchmod (2),
525.BR fchown (2),
2510e4e5
RH
526.BR fgetxattr (2),
527.BR mmap (2))
1135dbe1
MK
528fail with the error
529.BR EBADF .
530
531The following operations
532.I can
533be performed on the resulting file descriptor:
534.RS
535.IP * 3
536.BR close (2);
537.BR fchdir (2)
538(since Linux 3.5);
539.\" commit 332a2e1244bd08b9e3ecd378028513396a004a24
540.BR fstat (2)
541(since Linux 3.6).
542.\" fstat(): commit 55815f70147dcfa3ead5738fd56d3574e2e3c1c2
543.IP *
544Duplicating the file descriptor
545.RB ( dup (2),
546.BR fcntl (2)
547.BR F_DUPFD ,
548etc.).
549.IP *
550Getting and setting file descriptor flags
551.RB ( fcntl (2)
552.BR F_GETFD
553and
554.BR F_SETFD ).
09f677a3
MK
555.IP *
556Retrieving open file status flags using the
557.BR fcntl (2)
13a082cb 558.BR F_GETFL
09f677a3
MK
559operation: the returned flags will include the bit
560.BR O_PATH .
1135dbe1
MK
561.IP *
562Passing the file descriptor as the
563.IR dirfd
564argument of
565.BR openat (2)
566and the other "*at()" system calls.
7dee406b
AL
567This includes
568.BR linkat (2)
569with
570.BR AT_EMPTY_PATH
571(or via procfs using
572.BR AT_SYMLINK_FOLLOW )
573even if the file is not a directory.
1135dbe1
MK
574.IP *
575Passing the file descriptor to another process via a UNIX domain socket
576(see
577.BR SCM_RIGHTS
578in
579.BR unix (7)).
580.RE
581.IP
582When
583.B O_PATH
584is specified in
585.IR flags ,
586flag bits other than
587.BR O_DIRECTORY
588and
589.BR O_NOFOLLOW
590are ignored.
591
d30344ab
MK
592If
593.I pathname
594is a symbolic link and the
1135dbe1
MK
595.BR O_NOFOLLOW
596flag is also specified,
597then the call returns a file descriptor referring to the symbolic link.
598This file descriptor can be used as the
599.I dirfd
600argument in calls to
601.BR fchownat (2),
602.BR fstatat (2),
603.BR linkat (2),
604and
605.BR readlinkat (2)
606with an empty pathname to have the calls operate on the symbolic link.
607.TP
fea681da 608.B O_SYNC
6cf19e62
MK
609Write operations on the file will complete according to the requirements of
610synchronized I/O
611.I file
612integrity completion
613(by contrast with contrast with the
614synchronized I/O
615.I data
616integrity completion
617provided by
618.BR O_DSYNC .)
619
620By the time
621.BR write (2)
622(and similar)
623return, the output data and associated file metadata
624have been transferred to the underlying hardware
625(i.e., as though each
626.BR write (2)
627was followed by a call to
628.BR fsync (2)).
629.IR "See NOTES below" .
fea681da 630.TP
40398c1a
MK
631.BR O_TMPFILE " (since Linux 3.11)"
632.\" commit 60545d0d4610b02e55f65d141c95b18ccf855b6e
633.\" commit f4e0c30c191f87851c4a53454abb55ee276f4a7e
634.\" commit bb458c644a59dbba3a1fe59b27106c5e68e1c4bd
635Create an unnamed temporary file.
636The
637.I pathname
638argument specifies a directory;
639an unnamed inode will be created in that directory's filesystem.
640Anything written to the resulting file will be lost when
641the last file descriptor is closed, unless the file is given a name.
642
643.B O_TMPFILE
644must be specified with one of
645.B O_RDWR
646or
647.B O_WRONLY
648and, optionally,
649.BR O_EXCL .
650If
651.B O_EXCL
652is not specified, then
653.BR linkat (2)
654can be used to link the temporary file into the filesystem, making it
655permanent, using code like the following:
656
657.in +4n
658.nf
659char path[PATH_MAX];
660fd = open("/path/to/dir", O_TMPFILE | O_RDWR,
0fb83d00
MK
661 S_IRUSR | S_IWUSR);
662
40398c1a 663/* File I/O on 'fd'... */
0fb83d00 664
40398c1a 665snprintf(path, PATH_MAX, "/proc/self/fd/%d", fd);
e1252130 666linkat(AT_FDCWD, path, AT_FDCWD, "/path/for/file",
0fb83d00 667 AT_SYMLINK_FOLLOW);
40398c1a
MK
668.fi
669.in
670
671In this case,
672the
673.BR open ()
674.I mode
675argument determines the file permission mode, as with
676.BR O_CREAT .
677
0115aaed
MK
678Specifying
679.B O_EXCL
680in conjunction with
681.B O_TMPFILE
682prevents a temporary file from being linked into the filesystem
683in the above manner.
684(Note that the meaning of
685.B O_EXCL
686in this case is different from the meaning of
687.B O_EXCL
688otherwise.)
689
690
40398c1a
MK
691There are two main use cases for
692.\" Inspired by http://lwn.net/Articles/559147/
693.BR O_TMPFILE :
694.RS
695.IP * 3
696Improved
697.BR tmpfile (3)
698functionality: race-free creation of temporary files that
699(1) are automatically deleted when closed;
700(2) can never be reached via any pathname;
701(3) are not subject to symlink attacks; and
702(4) do not require the caller to devise unique names.
703.IP *
704Creating a file that is initially invisible, which is then populated
8b04592d 705with data and adjusted to have appropriate filesystem attributes
40398c1a
MK
706.RB ( chown (2),
707.BR chmod (2),
708.BR fsetxattr (2),
709etc.)
710before being atomically linked into the filesystem
711in a fully formed state (using
712.BR linkat (2)
713as described above).
714.RE
715.IP
716.B O_TMPFILE
717requires support by the underlying filesystem;
40398c1a 718only a subset of Linux filesystems provide that support.
cde2074a 719In the initial implementation, support was provided in
9af6b115 720the ext2, ext3, ext4, UDF, Minix, and shmem filesystems.
cde2074a
MK
721XFS support was added
722.\" commit 99b6436bc29e4f10e4388c27a3e4810191cc4788
723.\" commit ab29743117f9f4c22ac44c13c1647fb24fb2bafe
724in Linux 3.15.
40398c1a 725.TP
1c1e15ed 726.B O_TRUNC
4d61d36a 727If the file already exists and is a regular file and the access mode allows
682edefb
MK
728writing (i.e., is
729.B O_RDWR
730or
731.BR O_WRONLY )
732it will be truncated to length 0.
733If the file is a FIFO or terminal device file, the
734.B O_TRUNC
c13182ef 735flag is ignored.
2b9b829d 736Otherwise, the effect of
682edefb
MK
737.B O_TRUNC
738is unspecified.
7b8ba76c 739.SS creat()
1c1e15ed 740.BR creat ()
fea681da 741is equivalent to
1c1e15ed 742.BR open ()
fea681da
MK
743with
744.I flags
745equal to
746.BR O_CREAT|O_WRONLY|O_TRUNC .
7b8ba76c
MK
747.SS openat()
748The
749.BR openat ()
750system call operates in exactly the same way as
cadd38ba 751.BR open (),
7b8ba76c
MK
752except for the differences described here.
753
754If the pathname given in
755.I pathname
756is relative, then it is interpreted relative to the directory
3ad65ff0 757referred to by the file descriptor
7b8ba76c
MK
758.I dirfd
759(rather than relative to the current working directory of
760the calling process, as is done by
cadd38ba 761.BR open ()
7b8ba76c
MK
762for a relative pathname).
763
764If
765.I pathname
766is relative and
767.I dirfd
768is the special value
769.BR AT_FDCWD ,
770then
771.I pathname
772is interpreted relative to the current working
773directory of the calling process (like
cadd38ba 774.BR open ()).
7b8ba76c
MK
775
776If
777.I pathname
778is absolute, then
779.I dirfd
780is ignored.
47297adb 781.SH RETURN VALUE
7b8ba76c
MK
782.BR open (),
783.BR openat (),
c13182ef 784and
e1d6264d 785.BR creat ()
1c1e15ed
MK
786return the new file descriptor, or \-1 if an error occurred
787(in which case,
fea681da
MK
788.I errno
789is set appropriately).
fea681da 790.SH ERRORS
7b8ba76c
MK
791.BR open (),
792.BR openat (),
793and
794.BR creat ()
795can fail with the following errors:
fea681da
MK
796.TP
797.B EACCES
798The requested access to the file is not allowed, or search permission
799is denied for one of the directories in the path prefix of
800.IR pathname ,
801or the file did not exist yet and write access to the parent directory
802is not allowed.
803(See also
ad7cc990 804.BR path_resolution (7).)
fea681da 805.TP
a1f01685
MH
806.B EDQUOT
807Where
808.B O_CREAT
809is specified, the file does not exist, and the user's quota of disk
9ee4a2b6 810blocks or inodes on the filesystem has been exhausted.
a1f01685 811.TP
fea681da
MK
812.B EEXIST
813.I pathname
814already exists and
815.BR O_CREAT " and " O_EXCL
816were used.
817.TP
818.B EFAULT
0daa9e92 819.I pathname
e1d6264d 820points outside your accessible address space.
fea681da 821.TP
9f5773f7 822.B EFBIG
7c7fb552
MK
823See
824.BR EOVERFLOW .
9f5773f7 825.TP
e51412ea
MK
826.B EINTR
827While blocked waiting to complete an open of a slow device
828(e.g., a FIFO; see
829.BR fifo (7)),
830the call was interrupted by a signal handler; see
831.BR signal (7).
832.TP
ef490193
DG
833.B EINVAL
834The filesystem does not support the
835.BR O_DIRECT
e6f89ed2
MK
836flag.
837See
ef490193
DG
838.BR NOTES
839for more information.
840.TP
8e335391
MK
841.B EINVAL
842Invalid value in
843.\" In particular, __O_TMPFILE instead of O_TMPFILE
844.IR flags .
845.TP
846.B EINVAL
847.B O_TMPFILE
848was specified in
849.IR flags ,
850but neither
851.B O_WRONLY
852nor
853.B O_RDWR
854was specified.
855.TP
fea681da
MK
856.B EISDIR
857.I pathname
858refers to a directory and the access requested involved writing
859(that is,
860.B O_WRONLY
861or
862.B O_RDWR
863is set).
864.TP
8e335391 865.B EISDIR
843068bd
MK
866.I pathname
867refers to an existing directory,
8e335391
MK
868.B O_TMPFILE
869and one of
870.B O_WRONLY
871or
872.B O_RDWR
873were specified in
874.IR flags ,
875but this kernel version does not provide the
876.B O_TMPFILE
877functionality.
878.TP
fea681da
MK
879.B ELOOP
880Too many symbolic links were encountered in resolving
289f7907
MK
881.IR pathname .
882.TP
883.B ELOOP
fea681da 884.I pathname
289f7907
MK
885was a symbolic link, and
886.I flags
887specified
888.BR O_NOFOLLOW
889but not
890.BR O_PATH .
fea681da
MK
891.TP
892.B EMFILE
893The process already has the maximum number of files open.
894.TP
895.B ENAMETOOLONG
0daa9e92 896.I pathname
e1d6264d 897was too long.
fea681da
MK
898.TP
899.B ENFILE
900The system limit on the total number of open files has been reached.
901.TP
902.B ENODEV
903.I pathname
904refers to a device special file and no corresponding device exists.
682edefb
MK
905(This is a Linux kernel bug; in this situation
906.B ENXIO
907must be returned.)
fea681da
MK
908.TP
909.B ENOENT
682edefb
MK
910.B O_CREAT
911is not set and the named file does not exist.
fea681da
MK
912Or, a directory component in
913.I pathname
914does not exist or is a dangling symbolic link.
915.TP
ba03011f
MK
916.B ENOENT
917.I pathname
918refers to a nonexistent directory,
919.B O_TMPFILE
920and one of
921.B O_WRONLY
922or
923.B O_RDWR
924were specified in
925.IR flags ,
926but this kernel version does not provide the
927.B O_TMPFILE
928functionality.
929.TP
fea681da
MK
930.B ENOMEM
931Insufficient kernel memory was available.
932.TP
933.B ENOSPC
934.I pathname
935was to be created but the device containing
936.I pathname
937has no room for the new file.
938.TP
939.B ENOTDIR
940A component used as a directory in
941.I pathname
a8d55537 942is not, in fact, a directory, or \fBO_DIRECTORY\fP was specified and
fea681da
MK
943.I pathname
944was not a directory.
945.TP
946.B ENXIO
682edefb 947.BR O_NONBLOCK " | " O_WRONLY
103ea4f6
MK
948is set, the named file is a FIFO, and
949no process has the FIFO open for reading.
fea681da
MK
950Or, the file is a device special file and no corresponding device exists.
951.TP
bbe02b45
MK
952.BR EOPNOTSUPP
953The filesystem containing
954.I pathname
955does not support
956.BR O_TMPFILE .
957.TP
7c7fb552
MK
958.B EOVERFLOW
959.I pathname
960refers to a regular file that is too large to be opened.
961The usual scenario here is that an application compiled
962on a 32-bit platform without
5e4dc269 963.I -D_FILE_OFFSET_BITS=64
7c7fb552
MK
964tried to open a file whose size exceeds
965.I (2<<31)-1
966bits;
967see also
968.B O_LARGEFILE
969above.
970This is the error specified by POSIX.1-2001;
971in kernels before 2.6.24, Linux gave the error
972.B EFBIG
973for this case.
974.\" See http://bugzilla.kernel.org/show_bug.cgi?id=7253
975.\" "Open of a large file on 32-bit fails with EFBIG, should be EOVERFLOW"
976.\" Reported 2006-10-03
977.TP
1c1e15ed
MK
978.B EPERM
979The
980.B O_NOATIME
981flag was specified, but the effective user ID of the caller
9ee4a2b6 982.\" Strictly speaking, it's the filesystem UID... (MTK)
1c1e15ed
MK
983did not match the owner of the file and the caller was not privileged
984.RB ( CAP_FOWNER ).
985.TP
fea681da
MK
986.B EROFS
987.I pathname
9ee4a2b6 988refers to a file on a read-only filesystem and write access was
fea681da
MK
989requested.
990.TP
991.B ETXTBSY
992.I pathname
993refers to an executable image which is currently being executed and
994write access was requested.
d3952311
MK
995.TP
996.B EWOULDBLOCK
997The
998.B O_NONBLOCK
999flag was specified, and an incompatible lease was held on the file
1000(see
1001.BR fcntl (2)).
7b8ba76c
MK
1002.PP
1003The following additional errors can occur for
1004.BR openat ():
1005.TP
1006.B EBADF
1007.I dirfd
1008is not a valid file descriptor.
1009.TP
1010.B ENOTDIR
1011.I pathname
2feae602 1012is a relative pathname and
7b8ba76c
MK
1013.I dirfd
1014is a file descriptor referring to a file other than a directory.
1015.SH VERSIONS
1016.BR openat ()
1017was added to Linux in kernel 2.6.16;
1018library support was added to glibc in version 2.4.
47297adb 1019.SH CONFORMING TO
7b8ba76c
MK
1020.BR open (),
1021.BR creat ()
72ac7268
MK
1022SVr4, 4.3BSD, POSIX.1-2001, POSIX.1-2008.
1023
7b8ba76c
MK
1024.BR openat ():
1025POSIX.1-2008.
7b8ba76c 1026
fea681da 1027The
72ac7268 1028.BR O_DIRECT ,
1c1e15ed 1029.BR O_NOATIME ,
72ac7268 1030.BR O_PATH ,
fea681da 1031and
72ac7268
MK
1032.BR O_TMPFILE
1033flags are Linux-specific.
1034One must define
61b7c1e1
MK
1035.B _GNU_SOURCE
1036to obtain their definitions.
9f91e36c
MK
1037
1038The
72ac7268
MK
1039.BR O_CLOEXEC ,
1040.BR O_DIRECTORY ,
1041and
1042.BR O_NOFOLLOW
1043flags are not specified in POSIX.1-2001,
1044but are specified in POSIX.1-2008.
1045Since glibc 2.12, one can obtain their definitions by defining either
1046.B _POSIX_C_SOURCE
1047with a value greater than or equal to 200809L or
1048.BR _XOPEN_SOURCE
1049with a value greater than or equal to 700.
1050In glibc 2.11 and earlier, one obtains the definitions by defining
1051.BR _GNU_SOURCE .
9f91e36c 1052
72ac7268
MK
1053As noted in
1054.BR feature_test_macros (7),
84fc2a6e 1055feature test macros such as
72ac7268
MK
1056.BR _POSIX_C_SOURCE ,
1057.BR _XOPEN_SOURCE ,
1058and
fe75ec04 1059.B _GNU_SOURCE
72ac7268 1060must be defined before including
e417acb0 1061.I any
72ac7268 1062header files.
a1d5f77c 1063.SH NOTES
988db661 1064Under Linux, the
a1d5f77c
MK
1065.B O_NONBLOCK
1066flag indicates that one wants to open
1067but does not necessarily have the intention to read or write.
1068This is typically used to open devices in order to get a file descriptor
1069for use with
1070.BR ioctl (2).
c734b9f2 1071
fea681da
MK
1072.LP
1073The (undefined) effect of
1074.B O_RDONLY | O_TRUNC
c13182ef 1075varies among implementations.
bcdd964e 1076On many systems the file is actually truncated.
fea681da
MK
1077.\" Linux 2.0, 2.5: truncate
1078.\" Solaris 5.7, 5.8: truncate
1079.\" Irix 6.5: truncate
1080.\" Tru64 5.1B: truncate
1081.\" HP-UX 11.22: truncate
1082.\" FreeBSD 4.7: truncate
a1d5f77c 1083
5dc8986d
MK
1084Note that
1085.BR open ()
1086can open device special files, but
1087.BR creat ()
1088cannot create them; use
1089.BR mknod (2)
1090instead.
1091
1092If the file is newly created, its
1093.IR st_atime ,
1094.IR st_ctime ,
1095.I st_mtime
1096fields
1097(respectively, time of last access, time of last status change, and
1098time of last modification; see
1099.BR stat (2))
1100are set
1101to the current time, and so are the
1102.I st_ctime
1103and
1104.I st_mtime
1105fields of the
1106parent directory.
1107Otherwise, if the file is modified because of the
1108.B O_TRUNC
1109flag, its st_ctime and st_mtime fields are set to the current time.
1110.\"
1111.\"
1112.SS Synchronized I/O
6cf19e62
MK
1113The POSIX.1-2008 "synchronized I/O" option
1114specifies different variants of synchronized I/O,
1115and specifies the
1116.BR open ()
1117flags
015221ef
CH
1118.BR O_SYNC ,
1119.BR O_DSYNC ,
1120and
6cf19e62
MK
1121.BR O_RSYNC
1122for controlling the behavior.
1123Regardless of whether an implementation supports this option,
1124it must at least support the use of
1125.BR O_SYNC
1126for regular files.
1127
89851a00 1128Linux implements
6cf19e62
MK
1129.BR O_SYNC
1130and
1131.BR O_DSYNC ,
1132but not
015221ef 1133.BR O_RSYNC .
6cf19e62
MK
1134(Somewhat incorrectly, glibc defines
1135.BR O_RSYNC
1136to have the same value as
1137.BR O_SYNC .)
1138
1139.BR O_SYNC
1140provides synchronized I/O
1141.I file
1142integrity completion,
1143meaning write operations will flush data and all associated metadata
1144to the underlying hardware.
1145.BR O_DSYNC
1146provides synchronized I/O
1147.I data
1148integrity completion,
1149meaning write operations will flush data
1150to the underlying hardware,
1151but will only flush metadata updates that are required
1152to allow a subsequent read operation to complete successfully.
1153Data integrity completion can reduce the number of disk operations
1154that are required for applications that don't need the guarantees
1155of file integrity completion.
1156
1157To understand the difference between the the two types of completion,
1158consider two pieces of file metadata:
1159the file last modification timestamp
1160.RI ( st_mtime )
1161and the file length.
1162All write operations will update the last file modification timestamp,
1163but only writes that add data to the end of the
1164file will change the file length.
1165The last modification timestamp is not needed to ensure that
1166a read completes successfully, but the file length is.
1167Thus,
1168.BR O_DSYNC
1169would only guarantee to flush updates to the file length metadata
1170(whereas
1171.BR O_SYNC
1172would also always flush the last modification timestamp metadata).
1173
1174Before Linux 2.6.33, Linux implemented only the
1175.BR O_SYNC
89851a00 1176flag for
6cf19e62
MK
1177.BR open ().
1178However, when that flag was specified,
1179most filesystems actually provided the equivalent of synchronized I/O
1180.I data
1181integrity completion (i.e.,
1182.BR O_SYNC
1183was actually implemented as the equivalent of
1184.BR O_DSYNC ).
1185
1186Since Linux 2.6.33, proper
1187.BR O_SYNC
1188support is provided.
1189However, to ensure backward binary compatibility,
1190.BR O_DSYNC
1191was defined with the same value as the historical
015221ef 1192.BR O_SYNC ,
015221ef 1193and
6cf19e62 1194.BR O_SYNC
89851a00 1195was defined as a new (two-bit) flag value that includes the
6cf19e62
MK
1196.BR O_DSYNC
1197flag value.
1198This ensures that applications compiled against
1199new headers get at least
1200.BR O_DSYNC
1201semantics on pre-2.6.33 kernels.
5dc8986d
MK
1202.\"
1203.\"
1204.SS NFS
1205There are many infelicities in the protocol underlying NFS, affecting
1206amongst others
1207.BR O_SYNC " and " O_NDELAY .
a1d5f77c 1208
9ee4a2b6 1209On NFS filesystems with UID mapping enabled,
a1d5f77c
MK
1210.BR open ()
1211may
75b94dc3 1212return a file descriptor but, for example,
a1d5f77c
MK
1213.BR read (2)
1214requests are denied
1215with \fBEACCES\fP.
1216This is because the client performs
1217.BR open ()
1218by checking the
1219permissions, but UID mapping is performed by the server upon
1220read and write requests.
5dc8986d
MK
1221.\"
1222.\"
1223.SS File access mode
1224Unlike the other values that can be specified in
1225.IR flags ,
1226the
1227.I "access mode"
1228values
1229.BR O_RDONLY ", " O_WRONLY ", and " O_RDWR
1230do not specify individual bits.
1231Rather, they define the low order two bits of
1232.IR flags ,
1233and are defined respectively as 0, 1, and 2.
1234In other words, the combination
1235.B "O_RDONLY | O_WRONLY"
1236is a logical error, and certainly does not have the same meaning as
1237.BR O_RDWR .
a1d5f77c 1238
5dc8986d
MK
1239Linux reserves the special, nonstandard access mode 3 (binary 11) in
1240.I flags
1241to mean:
1242check for read and write permission on the file and return a descriptor
1243that can't be used for reading or writing.
1244This nonstandard access mode is used by some Linux drivers to return a
1245descriptor that is to be used only for device-specific
1246.BR ioctl (2)
1247operations.
1248.\" See for example util-linux's disk-utils/setfdprm.c
1249.\" For some background on access mode 3, see
1250.\" http://thread.gmane.org/gmane.linux.kernel/653123
1251.\" "[RFC] correct flags to f_mode conversion in __dentry_open"
1252.\" LKML, 12 Mar 2008
7b8ba76c
MK
1253.\"
1254.\"
80d250b4 1255.SS Rationale for openat() and other "directory file descriptor" APIs
7b8ba76c 1256.BR openat ()
80d250b4
MK
1257and the other system calls and library functions that take
1258a directory file descriptor argument
7b8ba76c
MK
1259(i.e.,
1260.BR faccessat (2),
80d250b4 1261.BR fanotify_mark (2),
7b8ba76c
MK
1262.BR fchmodat (2),
1263.BR fchownat (2),
1264.BR fstatat (2),
1265.BR futimesat (2),
1266.BR linkat (2),
1267.BR mkdirat (2),
1268.BR mknodat (2),
80d250b4 1269.BR name_to_handle_at (2),
7b8ba76c
MK
1270.BR readlinkat (2),
1271.BR renameat (2),
1272.BR symlinkat (2),
1273.BR unlinkat (2),
1274.BR utimensat (2)
80d250b4 1275.BR mkfifoat (3),
7b8ba76c 1276and
80d250b4 1277.BR scandirat (3))
7b8ba76c
MK
1278are supported
1279for two reasons.
92692952 1280Here, the explanation is in terms of the
7b8ba76c 1281.BR openat ()
d26f8a31 1282call, but the rationale is analogous for the other interfaces.
7b8ba76c
MK
1283
1284First,
1285.BR openat ()
1286allows an application to avoid race conditions that could
1287occur when using
cadd38ba 1288.BR open ()
7b8ba76c
MK
1289to open files in directories other than the current working directory.
1290These race conditions result from the fact that some component
1291of the directory prefix given to
cadd38ba 1292.BR open ()
7b8ba76c 1293could be changed in parallel with the call to
cadd38ba 1294.BR open ().
7b8ba76c
MK
1295Such races can be avoided by
1296opening a file descriptor for the target directory,
1297and then specifying that file descriptor as the
1298.I dirfd
1299argument of
1300.BR openat ().
1301
1302Second,
1303.BR openat ()
1304allows the implementation of a per-thread "current working
1305directory", via file descriptor(s) maintained by the application.
1306(This functionality can also be obtained by tricks based
1307on the use of
1308.IR /proc/self/fd/ dirfd,
1309but less efficiently.)
1310.\"
1311.\"
ddc4d339
MK
1312.SS O_DIRECT
1313.LP
1314The
1315.B O_DIRECT
1316flag may impose alignment restrictions on the length and address
7fac88a9 1317of user-space buffers and the file offset of I/Os.
ddc4d339 1318In Linux alignment
9ee4a2b6 1319restrictions vary by filesystem and kernel version and might be
ddc4d339 1320absent entirely.
9ee4a2b6 1321However there is currently no filesystem\-independent
ddc4d339 1322interface for an application to discover these restrictions for a given
9ee4a2b6
MK
1323file or filesystem.
1324Some filesystems provide their own interfaces
ddc4d339
MK
1325for doing so, for example the
1326.B XFS_IOC_DIOINFO
1327operation in
1328.BR xfsctl (3).
1329.LP
85c2bdba
MK
1330Under Linux 2.4, transfer sizes, and the alignment of the user buffer
1331and the file offset must all be multiples of the logical block size
9ee4a2b6 1332of the filesystem.
21557928 1333Since Linux 2.6.0, alignment to the logical block size of the
e6042e4a 1334underlying storage (typically 512 bytes) suffices.
21557928 1335The logical block size can be determined using the
e6042e4a
PS
1336.BR ioctl (2)
1337.B BLKSSZGET
21557928
MK
1338operation or from the shell using the command:
1339
1340 blockdev \-\-getss
1847167b
NP
1341.LP
1342.B O_DIRECT
1343I/Os should never be run concurrently with the
04cd7f64 1344.BR fork (2)
1847167b
NP
1345system call,
1346if the memory buffer is a private mapping
1347(i.e., any mapping created with the
02ace852 1348.BR mmap (2)
1847167b 1349.BR MAP_PRIVATE
0ab8aeec 1350flag;
1847167b
NP
1351this includes memory allocated on the heap and statically allocated buffers).
1352Any such I/Os, whether submitted via an asynchronous I/O interface or from
1353another thread in the process,
1354should be completed before
1355.BR fork (2)
1356is called.
1357Failure to do so can result in data corruption and undefined behavior in
1358parent and child processes.
1359This restriction does not apply when the memory buffer for the
1360.B O_DIRECT
1361I/Os was created using
1362.BR shmat (2)
1363or
1364.BR mmap (2)
1365with the
1366.B MAP_SHARED
1367flag.
1368Nor does this restriction apply when the memory buffer has been advised as
1369.B MADV_DONTFORK
0ab8aeec 1370with
02ace852 1371.BR madvise (2),
1847167b
NP
1372ensuring that it will not be available
1373to the child after
1374.BR fork (2).
ddc4d339
MK
1375.LP
1376The
1377.B O_DIRECT
1378flag was introduced in SGI IRIX, where it has alignment
1379restrictions similar to those of Linux 2.4.
1380IRIX has also a
1381.BR fcntl (2)
1382call to query appropriate alignments, and sizes.
1383FreeBSD 4.x introduced
1384a flag of the same name, but without alignment restrictions.
1385.LP
1386.B O_DIRECT
1387support was added under Linux in kernel version 2.4.10.
1388Older Linux kernels simply ignore this flag.
9ee4a2b6 1389Some filesystems may not implement the flag and
ddc4d339
MK
1390.BR open ()
1391will fail with
1392.B EINVAL
1393if it is used.
1394.LP
1395Applications should avoid mixing
1396.B O_DIRECT
1397and normal I/O to the same file,
1398and especially to overlapping byte regions in the same file.
9ee4a2b6 1399Even when the filesystem correctly handles the coherency issues in
ddc4d339
MK
1400this situation, overall I/O throughput is likely to be slower than
1401using either mode alone.
1402Likewise, applications should avoid mixing
1403.BR mmap (2)
1404of files with direct I/O to the same files.
1405.LP
1406The behaviour of
1407.B O_DIRECT
9ee4a2b6 1408with NFS will differ from local filesystems.
ddc4d339
MK
1409Older kernels, or
1410kernels configured in certain ways, may not support this combination.
1411The NFS protocol does not support passing the flag to the server, so
1412.B O_DIRECT
33a0ccb2 1413I/O will bypass the page cache only on the client; the server may
ddc4d339
MK
1414still cache the I/O.
1415The client asks the server to make the I/O
1416synchronous to preserve the synchronous semantics of
1417.BR O_DIRECT .
1418Some servers will perform poorly under these circumstances, especially
1419if the I/O size is small.
1420Some servers may also be configured to
1421lie to clients about the I/O having reached stable storage; this
1422will avoid the performance penalty at some risk to data integrity
1423in the event of server power failure.
1424The Linux NFS client places no alignment restrictions on
1425.B O_DIRECT
1426I/O.
1427.PP
1428In summary,
1429.B O_DIRECT
1430is a potentially powerful tool that should be used with caution.
1431It is recommended that applications treat use of
1432.B O_DIRECT
1433as a performance option which is disabled by default.
1434.PP
1435.RS
fea681da
MK
1436"The thing that has always disturbed me about O_DIRECT is that the whole
1437interface is just stupid, and was probably designed by a deranged monkey
5503c85e 1438on some serious mind-controlling substances."\(emLinus
ddc4d339
MK
1439.RE
1440.SH BUGS
b50582eb
MK
1441Currently, it is not possible to enable signal-driven
1442I/O by specifying
1443.B O_ASYNC
c13182ef 1444when calling
b50582eb
MK
1445.BR open ();
1446use
1447.BR fcntl (2)
1448to enable this flag.
0e1ad98c 1449.\" FIXME . Check bugzilla report on open(O_ASYNC)
92057f4d 1450.\" See http://bugzilla.kernel.org/show_bug.cgi?id=5993
0d730fcc
MK
1451
1452One must check for two different error codes,
1453.B EISDIR
1454and
1455.BR ENOENT ,
1456when trying to determine whether the kernel supports
0d55b37f 1457.B O_TMPFILE
0d730fcc 1458functionality.
47297adb 1459.SH SEE ALSO
a3bf8022
MK
1460.BR chmod (2),
1461.BR chown (2),
fea681da 1462.BR close (2),
e366dbc4 1463.BR dup (2),
fea681da
MK
1464.BR fcntl (2),
1465.BR link (2),
1f6ceb40 1466.BR lseek (2),
fea681da 1467.BR mknod (2),
e366dbc4 1468.BR mmap (2),
f0c34053 1469.BR mount (2),
fa5d243f 1470.BR open_by_handle_at (2),
fea681da
MK
1471.BR read (2),
1472.BR socket (2),
1473.BR stat (2),
1474.BR umask (2),
1475.BR unlink (2),
1476.BR write (2),
1477.BR fopen (3),
f0c34053 1478.BR fifo (7),
a9cfde1d
MK
1479.BR path_resolution (7),
1480.BR symlink (7)