]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/open.2
pseudotteudo-tty" terminology clean-up
[thirdparty/man-pages.git] / man2 / open.2
CommitLineData
fea681da
MK
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.\"
6.\" Permission is granted to make and distribute verbatim copies of this
7.\" manual provided the copyright notice and this permission notice are
8.\" preserved on all copies.
9.\"
10.\" Permission is granted to copy and distribute modified versions of this
11.\" manual under the conditions for verbatim copying, provided that the
12.\" entire resulting derived work is distributed under the terms of a
13.\" permission notice identical to this one.
14.\"
15.\" Since the Linux kernel and libraries are constantly changing, this
16.\" manual page may be incorrect or out-of-date. The author(s) assume no
17.\" responsibility for errors or omissions, or for damages resulting from
18.\" the use of the information contained herein. The author(s) may not
19.\" have taken the same level of care in the production of this manual,
20.\" which is licensed free of charge, as they might when working
21.\" professionally.
22.\"
23.\" Formatted or processed versions of this manual, if unaccompanied by
24.\" the source, must acknowledge the copyright and authors of this work.
25.\"
26.\" Modified 1993-07-21 by Rik Faith <faith@cs.unc.edu>
27.\" Modified 1994-08-21 by Michael Haardt
28.\" Modified 1996-04-13 by Andries Brouwer <aeb@cwi.nl>
29.\" Modified 1996-05-13 by Thomas Koenig
30.\" Modified 1996-12-20 by Michael Haardt
31.\" Modified 1999-02-19 by Andries Brouwer <aeb@cwi.nl>
32.\" Modified 1998-11-28 by Joseph S. Myers <jsm28@hermes.cam.ac.uk>
33.\" Modified 1999-06-03 by Michael Haardt
305a0578
MK
34.\" Modified 2002-05-07 by Michael Kerrisk <mtk-manpages@gmx.net>
35.\" Modified 2004-06-23 by Michael Kerrisk <mtk-manpages@gmx.net>
1c1e15ed
MK
36.\" 2004-12-08, mtk, reordered flags list alphabetically
37.\" 2004-12-08, Martin Pool <mbp@sourcefrog.net> (& mtk), added O_NOATIME
fea681da 38.\"
e366dbc4 39.TH OPEN 2 2005-06-22 "Linux 2.6.12" "Linux Programmer's Manual"
fea681da
MK
40.SH NAME
41open, creat \- open and possibly create a file or device
42.SH SYNOPSIS
43.nf
44.B #include <sys/types.h>
45.B #include <sys/stat.h>
46.B #include <fcntl.h>
47.sp
48.BI "int open(const char *" pathname ", int " flags );
49.BI "int open(const char *" pathname ", int " flags ", mode_t " mode );
50.BI "int creat(const char *" pathname ", mode_t " mode );
51.fi
52.SH DESCRIPTION
e366dbc4
MK
53Given a
54.IR pathname
55for a file,
1f6ceb40 56.BR open ()
e366dbc4
MK
57returns a file descriptor, a small, non-negative integer
58for use in subsequent system calls
59.RB ( read "(2), " write "(2), " lseek "(2), " fcntl "(2), etc.)."
60The file descriptor returned by a successful call will be
2c4bff36 61the lowest-numbered file descriptor not currently open for the process.
e366dbc4
MK
62.PP
63The new file descriptor is set to remain open across an
64.BR execve (2)
1f6ceb40
MK
65(i.e., the
66.B FD_CLOEXEC
67file descriptor flag described in
68.BR fcntl (2)
69is initially disabled).
70The file offset is set to the beginning of the file (see
71.BR lseek (2)).
e366dbc4
MK
72.PP
73A call to
74.BR open ()
75creates a new
76.IR "open file description" ,
77an entry in the system-wide table of open files.
e366dbc4
MK
78This entry records the file offset and the file status flags
79(modifiable via the
80.BR fcntl ()
81.B F_SETFL
82operation).
2c4bff36
MK
83A file descriptor is a reference to one of these entries;
84this reference is unaffected if
85.I pathname
86is subsequently removed or modified to refer to a different file.
e366dbc4 87The new open file description is initially not shared
2c4bff36
MK
88with any other process,
89but sharing may arise via
90.BR fork (2).
e366dbc4 91.PP
fea681da
MK
92The parameter
93.I flags
e366dbc4
MK
94must include one of the following
95.IR "access modes" :
96.BR O_RDONLY ", " O_WRONLY ", or " O_RDWR.
97These request opening the file read-only, write-only, or read/write,
98respectively.
99In addition, zero or more of the following may be
fea681da 100.RI bitwise- or 'd
e366dbc4
MK
101in
102.IR flags :
fea681da 103.TP
1c1e15ed
MK
104.B O_APPEND
105The file is opened in append mode. Before each
106.BR write (),
107the file pointer is positioned at the end of the file,
108as if with
109.BR lseek ().
110.B O_APPEND
111may lead to corrupted files on NFS file systems if more than one process
112appends data to a file at once. This is because NFS does not support
113appending to a file, so the client kernel has to simulate it, which
114can't be done without a race condition.
115.TP
116.B O_ASYNC
117.\" FIXME -- as far as I can tell O_ASYNC doesn't work for open(2),
118.\" only when set via fcntl(2) -- MTK, Dec 04
119Generate a signal (SIGIO by default, but this can be changed via
120.BR fcntl (2))
121when input or output becomes possible on this file descriptor.
1f6ceb40
MK
122This feature is only available for terminals, pseudo-terminals,
123sockets, and (since Linux 2.6) pipes and FIFOs.
124See
1c1e15ed
MK
125.BR fcntl (2)
126for further details.
127.TP
fea681da
MK
128.B O_CREAT
129If the file does not exist it will be created.
130The owner (user ID) of the file is set to the effective user ID
131of the process. The group ownership (group ID) is set either to
132the effective group ID of the process or to the group ID of the
133parent directory (depending on filesystem type and mount options,
134and the mode of the parent directory, see, e.g., the mount options
135.I bsdgroups
136and
137.I sysvgroups
138of the ext2 filesystem, as described in
139.BR mount (8)).
140.TP
1c1e15ed
MK
141.B O_DIRECT
142Try to minimize cache effects of the I/O to and from this file.
143In general this will degrade performance, but it is useful in
144special situations, such as when applications do their own caching.
145File I/O is done directly to/from user space buffers.
e366dbc4 146The I/O is synchronous, i.e., at the completion of a
1c1e15ed
MK
147.BR read (2)
148or
e366dbc4
MK
149.BR write (2),
150data is guaranteed to have been transferred.
1c1e15ed
MK
151Under Linux 2.4 transfer sizes, and the alignment of user buffer
152and file offset must all be multiples of the logical block size
153of the file system. Under Linux 2.6 alignment to 512-byte boundaries
154suffices.
155.\" Alignment should satisfy requirements for the underlying device
156.\" There may be coherency problems.
157.br
158A semantically similar interface for block devices is described in
159.BR raw (8).
160.TP
161.B O_DIRECTORY
162If \fIpathname\fR is not a directory, cause the open to fail. This
163flag is Linux-specific, and was added in kernel version 2.1.126, to
164avoid denial-of-service problems if \fBopendir\fR(3) is called on a
165FIFO or tape device, but should not be used outside of the
166implementation of \fBopendir\fR.
167.TP
fea681da
MK
168.B O_EXCL
169When used with
170.BR O_CREAT ,
171if the file already exists it is an error and the
1c1e15ed 172.BR open ()
fea681da 173will fail. In this context, a symbolic link exists, regardless
1f6ceb40 174of where it points to.
fea681da 175.B O_EXCL
1f6ceb40 176is broken on NFS file systems; programs which rely on it for performing
fea681da 177locking tasks will contain a race condition. The solution for performing
1c1e15ed
MK
178atomic file locking using a lockfile is to create a unique file on
179the same file system (e.g., incorporating hostname and pid), use
fea681da
MK
180.BR link (2)
181to make a link to the lockfile. If \fBlink()\fP returns 0, the lock is
182successful. Otherwise, use
183.BR stat (2)
184on the unique file to check if its link count has increased to 2,
185in which case the lock is also successful.
186.TP
1c1e15ed
MK
187.B O_LARGEFILE
188(LFS)
189Allow files whose sizes cannot be represented in an
190.B off_t
191(but can be represented in an
192.BR off64_t )
193to be opened.
194.TP
195.B O_NOATIME
196(Since Linux 2.6.8)
197Do not update the file last access time when the file is
198.BR read (2).
199This flag is intended for use by indexing or backup programs,
200where its use can significantly reduce the amount of disk activity.
201This flag may not be effective on all filesystems.
202One example is NFS, where the server maintains the access time.
203.\" FIXME? This flag also affects the treatment of st_atime by mmap()
204.\" and readdir(2), MTK, Dec 04.
205.TP
fea681da
MK
206.B O_NOCTTY
207If
208.I pathname
209refers to a terminal device \(em see
210.BR tty (4)
211\(em it will not become the process's controlling terminal even if the
212process does not have one.
213.TP
1c1e15ed
MK
214.B O_NOFOLLOW
215If \fIpathname\fR is a symbolic link, then the open fails. This is a
216FreeBSD extension, which was added to Linux in version 2.1.126.
217Symbolic links in earlier components of the pathname will still be
e366dbc4
MK
218followed.
219.\" The headers from glibc 2.0.100 and later include a
220.\" definition of this flag; \fIkernels before 2.1.126 will ignore it if
221.\" used\fR.
fea681da
MK
222.TP
223.BR O_NONBLOCK " or " O_NDELAY
224When possible, the file is opened in non-blocking mode. Neither the
1c1e15ed 225.BR open ()
fea681da
MK
226nor any subsequent operations on the file descriptor which is
227returned will cause the calling process to wait.
228For the handling of FIFOs (named pipes), see also
229.BR fifo (4).
230This mode need not have any effect on files other than FIFOs.
231.TP
232.B O_SYNC
233The file is opened for synchronous I/O. Any
1c1e15ed 234.BR write ()s
fea681da
MK
235on the resulting file descriptor will block the calling process until
236the data has been physically written to the underlying hardware.
237.I See RESTRICTIONS below, though.
238.TP
1c1e15ed
MK
239.B O_TRUNC
240If the file already exists and is a regular file and the open mode allows
241writing (i.e., is O_RDWR or O_WRONLY) it will be truncated to length 0.
242If the file is a FIFO or terminal device file, the O_TRUNC
243flag is ignored. Otherwise the effect of O_TRUNC is unspecified.
fea681da
MK
244.PP
245Some of these optional flags can be altered using
1c1e15ed 246.BR fcntl ()
fea681da
MK
247after the file has been opened.
248
249The argument
250.I mode
251specifies the permissions to use in case a new file is created. It is
252modified by the process's
253.BR umask
254in the usual way: the permissions of the created file are
255.BR "(mode & ~umask)" .
256Note that this mode only applies to future accesses of the
257newly created file; the
1c1e15ed 258.BR open ()
fea681da
MK
259call that creates a read-only file may well return a read/write
260file descriptor.
261.PP
262The following symbolic constants are provided for
263.IR mode :
264.TP
265.B S_IRWXU
26600700 user (file owner) has read, write and execute permission
267.TP
268.B S_IRUSR (S_IREAD)
26900400 user has read permission
270.TP
271.B S_IWUSR (S_IWRITE)
27200200 user has write permission
273.TP
274.B S_IXUSR (S_IEXEC)
27500100 user has execute permission
276.TP
277.B S_IRWXG
27800070 group has read, write and execute permission
279.TP
280.B S_IRGRP
28100040 group has read permission
282.TP
283.B S_IWGRP
28400020 group has write permission
285.TP
286.B S_IXGRP
28700010 group has execute permission
288.TP
289.B S_IRWXO
29000007 others have read, write and execute permission
291.TP
292.B S_IROTH
29300004 others have read permission
294.TP
295.B S_IWOTH
d301ee6c 29600002 others have write permission
fea681da
MK
297.TP
298.B S_IXOTH
29900001 others have execute permission
300.PP
301.I mode
302must be specified when
303.B O_CREAT
304is in the
305.IR flags ,
306and is ignored otherwise.
307
1c1e15ed 308.BR creat ()
fea681da 309is equivalent to
1c1e15ed 310.BR open ()
fea681da
MK
311with
312.I flags
313equal to
314.BR O_CREAT|O_WRONLY|O_TRUNC .
315.SH "RETURN VALUE"
1c1e15ed
MK
316.BR open "() and " creat ()
317return the new file descriptor, or \-1 if an error occurred
318(in which case,
fea681da
MK
319.I errno
320is set appropriately).
321Note that
1c1e15ed 322.BR open ()
fea681da 323can open device special files, but
1c1e15ed 324.BR creat ()
e9496f74 325cannot create them; use
fea681da
MK
326.BR mknod (2)
327instead.
328.LP
e366dbc4 329On NFS file systems with UID mapping enabled, \fBopen\fP() may
1c1e15ed
MK
330return a file descriptor but e.g. \fBread\fP(2) requests are denied
331with \fBEACCES\fP.
e366dbc4 332This is because the client performs \fBopen\fP() by checking the
1c1e15ed
MK
333permissions, but UID mapping is performed by the server upon
334read and write requests.
fea681da
MK
335
336If the file is newly created, its atime, ctime, mtime fields are set
337to the current time, and so are the ctime and mtime fields of the
338parent directory.
339Otherwise, if the file is modified because of the O_TRUNC flag,
340its ctime and mtime fields are set to the current time.
341
342.SH ERRORS
343.TP
344.B EACCES
345The requested access to the file is not allowed, or search permission
346is denied for one of the directories in the path prefix of
347.IR pathname ,
348or the file did not exist yet and write access to the parent directory
349is not allowed.
350(See also
351.BR path_resolution (2).)
352.TP
353.B EEXIST
354.I pathname
355already exists and
356.BR O_CREAT " and " O_EXCL
357were used.
358.TP
359.B EFAULT
360.IR pathname " points outside your accessible address space."
361.TP
362.B EISDIR
363.I pathname
364refers to a directory and the access requested involved writing
365(that is,
366.B O_WRONLY
367or
368.B O_RDWR
369is set).
370.TP
371.B ELOOP
372Too many symbolic links were encountered in resolving
373.IR pathname ,
374or \fBO_NOFOLLOW\fR was specified but
375.I pathname
376was a symbolic link.
377.TP
378.B EMFILE
379The process already has the maximum number of files open.
380.TP
381.B ENAMETOOLONG
382.IR pathname " was too long."
383.TP
384.B ENFILE
385The system limit on the total number of open files has been reached.
386.TP
387.B ENODEV
388.I pathname
389refers to a device special file and no corresponding device exists.
e9496f74 390(This is a Linux kernel bug; in this situation ENXIO must be returned.)
fea681da
MK
391.TP
392.B ENOENT
393O_CREAT is not set and the named file does not exist.
394Or, a directory component in
395.I pathname
396does not exist or is a dangling symbolic link.
397.TP
398.B ENOMEM
399Insufficient kernel memory was available.
400.TP
401.B ENOSPC
402.I pathname
403was to be created but the device containing
404.I pathname
405has no room for the new file.
406.TP
407.B ENOTDIR
408A component used as a directory in
409.I pathname
410is not, in fact, a directory, or \fBO_DIRECTORY\fR was specified and
411.I pathname
412was not a directory.
413.TP
414.B ENXIO
415O_NONBLOCK | O_WRONLY is set, the named file is a FIFO and
416no process has the file open for reading.
417Or, the file is a device special file and no corresponding device exists.
418.TP
419.B EOVERFLOW
420.I pathname
e9496f74 421refers to a regular file, too large to be opened; see O_LARGEFILE above.
fea681da 422.TP
1c1e15ed
MK
423.B EPERM
424The
425.B O_NOATIME
426flag was specified, but the effective user ID of the caller
427.\" Strictly speaking, it's the file system UID... (MTK)
428did not match the owner of the file and the caller was not privileged
429.RB ( CAP_FOWNER ).
430.TP
fea681da
MK
431.B EROFS
432.I pathname
433refers to a file on a read-only filesystem and write access was
434requested.
435.TP
436.B ETXTBSY
437.I pathname
438refers to an executable image which is currently being executed and
439write access was requested.
440.SH NOTE
441Under Linux, the O_NONBLOCK flag indicates that one wants to open
442but does not necessarily have the intention to read or write.
443This is typically used to open devices in order to get a file descriptor
444for use with
445.BR ioctl (2).
446.SH "CONFORMING TO"
b14d4aa5 447SVr4, SVID, POSIX, X/OPEN, 4.3BSD.
fea681da 448The
1c1e15ed
MK
449.BR O_NOATIME ,
450.BR O_NOFOLLOW ,
fea681da
MK
451and
452.B O_DIRECTORY
453flags are Linux-specific.
454One may have to define the
455.B _GNU_SOURCE
456macro to get their definitions.
457.LP
458The (undefined) effect of
459.B O_RDONLY | O_TRUNC
1f6ceb40 460varies among implementations. On many systems the file is actually
fea681da
MK
461truncated.
462.\" Linux 2.0, 2.5: truncate
463.\" Solaris 5.7, 5.8: truncate
464.\" Irix 6.5: truncate
465.\" Tru64 5.1B: truncate
466.\" HP-UX 11.22: truncate
467.\" FreeBSD 4.7: truncate
468.LP
469The
470.B O_DIRECT
471flag was introduced in SGI IRIX, where it has alignment restrictions
472similar to those of Linux 2.4. IRIX has also a fcntl(2) call to
473query appropriate alignments, and sizes. FreeBSD 4.x introduced
474a flag of same name, but without alignment restrictions.
475Support was added under Linux in kernel version 2.4.10.
476Older Linux kernels simply ignore this flag.
1f6ceb40
MK
477One may have to define the
478.B _GNU_SOURCE
479macro to get its definition.
fea681da
MK
480.SH BUGS
481"The thing that has always disturbed me about O_DIRECT is that the whole
482interface is just stupid, and was probably designed by a deranged monkey
e9496f74 483on some serious mind-controlling substances." \(em Linus
fea681da
MK
484.SH RESTRICTIONS
485There are many infelicities in the protocol underlying NFS, affecting
486amongst others
487.BR O_SYNC " and " O_NDELAY .
488
489POSIX provides for three different variants of synchronised I/O,
490corresponding to the flags \fBO_SYNC\fR, \fBO_DSYNC\fR and
491\fBO_RSYNC\fR. Currently (2.1.130) these are all synonymous under Linux.
492.SH "SEE ALSO"
493.BR close (2),
e366dbc4 494.BR dup (2),
fea681da
MK
495.BR fcntl (2),
496.BR link (2),
1f6ceb40 497.BR lseek (2),
fea681da
MK
498.BR mknod (2),
499.BR mount (2),
e366dbc4 500.BR mmap (2),
fea681da
MK
501.BR path_resolution (2),
502.BR read (2),
503.BR socket (2),
504.BR stat (2),
505.BR umask (2),
506.BR unlink (2),
507.BR write (2),
508.BR fopen (3),
509.BR fifo (4)