OPEN(2) — System Interface Manual — System Calls
NAME
open − open a file for reading or writing, or create a new file
SYNOPSIS
#include <sys/file.h>
open(path, flags, mode)
char ∗path;
int flags, mode;
DESCRIPTION
Open opens the file name for reading and/or writing, as specified by the flags argument and returns a descriptor for that file. The flags argument may indicate the file is to be created if it does not already exist (by specifying the FCREATE flag), in which case the file is created with mode mode as described in chmod(2) and modified by the process’ umask value (see umask(2)).
Name is the address of a string of ascii characters representing a path name, terminated by a null character. The flags specified are formed by or’ing the following values
FRDONLYopen for reading only
FWRONLYopen for writing only
FRDWRopen for reading and writing
FAPPENDappend on each write
FCREATEcreate file if it does not exist
FTRUNCATEtruncate size to 0
FEXLOCKapply advisory exclusive lock
FSHLOCKapply advisory shared lock
FNBLOCKdo not block on open
Opening a file with FAPPEND set means that each write on the file to be appended to the end. If FTRUNCATE is specified and the file exists, the file is truncated to zero length. The FEXLOCK and FSHLOCK flags allow an advisory lock to be applied, see flock(2). If the FNBLOCK flag is specified and the open call would result in the process being blocked for some reason (for example, on an advisory lock), the open returns immediately with the error EWOULDBLOCK.
Upon successful completion, a non-negative integer, the file descriptor, is returned. The file pointer which marks the current position within the file is set to the beginning of the file.
The new descriptor is set to remain open across execve system calls; see close(2).
The maximum number of file descriptors which a process may have open simultaneously may be obtained via a call upon getdtablesize(2).
ERRORS
The named file is opened unless on or more of the following are true:
[EPERM] The path argument contained a byte with the high-order bit set.
[ENOTDIR] A component of the path prefix is not a directory.
[EINVAL] The FTRUNCATE flag was specified, but FWRONLY or FRDWR was not specified.
[ENOENT] FCREATE is not set and the named file does not exist.
[EACCES] A component of the path prefix denies search permission.
[EACCES] The required permissions (for reading and/or writing) are denied for the named flag.
[EISDIR] The named file is a directory, and the arguments specify it is to be opened for writing.
[EROFS] The named file resides on a read-only file system, and the file is to be modified.
[EMFILE] The maximum number of alloable open file descriptors are currently open.
[ENXIO] The named file is a character special or block special file, and the device associated with this special file does not exist.
[ETXTBSY] The file is a pure procedure (shared text) file that is being executed and the open call requests write access.
[EFAULT] Path points outside the process’s allocated address space.
[ELOOP] Too many symbolic links were encountered in translating the pathname.
[EEXIST] The file is to be created for exclusive use and it already exists.
[ENXIO] The FNBLOCK flag is given, and the file is a communications device on which their is no carrier present.
SEE ALSO
chmod(2), close(2), dup(2), lseek(2), read(2), write(2), umask(2), getdtablesize(2)
BUGS
The implementation of this call needs to be carefully checked. The flag names and locking facilities are incompatible with the /usr/group standard.
Sun System Release 0.3 — 25 April 1983