FCNTL(2) | System Calls Manual | FCNTL(2) |
fcntl
— file
control
#include
<fcntl.h>
int
fcntl
(int fildes,
int cmd, ...);
fcntl
()
provides for control over descriptors. The argument
fildes is a descriptor to be operated on by
cmd as follows:
F_DUPFD
F_DUPFD_CLOEXEC
F_DUPFD
, except that the close-on-exec flag
associated with the new file descriptor is set.F_GETFD
F_SETFD
F_GETFL
F_SETFL
F_GETOWN
SIGIO
and SIGURG
signals;
process groups are returned as negative values (arg
is ignored).F_SETOWN
SIGIO
and SIGURG
signals; process groups are specified
by supplying arg as negative, otherwise
arg is interpreted as a process ID.F_GETPATH
F_GETPATH_NOFIRMLINK
F_PREALLOCATE
F_ALLOCATEALL
flag is not provided)
smaller than the space requested.F_PUNCHHOLE
F_SETSIZE
F_RDADVISE
F_RDAHEAD
F_NOCACHE
F_LOG2PHYS
F_LOG2PHYS_EXT
F_BARRIERFSYNC
F_FULLFSYNC
F_SETNOSIGPIPE
SIGPIPE
signal will be
generated when a write fails on a pipe or socket for which there is no
reader. If arg is non-zero,
SIGPIPE
generation is disabled for descriptor
fildes, while an arg of zero
enables it (the default).F_GETNOSIGPIPE
SIGPIPE
signal will be generated
when a write fails on a pipe or socket for which there is no reader. The
semantics of the return value match those of the arg
of F_SETNOSIGPIPE
.F_TRANSFEREXTENTS
F_PREALLOCATE
) to another file. The
other file is specified via a file descriptor as the lone extra argument.
Both descriptors must reference regular files in the same volume.The flags for the F_GETFD
and
F_SETFD
commands are as follows:
FD_CLOEXEC
The flags for the F_GETFL
and
F_SETFL
commands are as follows:
O_NONBLOCK
EAGAIN
.O_APPEND
O_APPEND
flag of
open(2).O_ASYNC
SIGIO
signal to be sent to the process
group when I/O is possible, e.g., upon availability of data to be
read.Several commands are available for doing advisory file locking; they all operate on the following structure:
struct flock { off_t l_start; /* starting offset */ off_t l_len; /* len = 0 means until end of file */ pid_t l_pid; /* lock owner */ short l_type; /* lock type: read/write, etc. */ short l_whence; /* type of l_start */ };
The commands available for advisory record locking are as follows:
F_GETLK
fcntl
in the
flock structure. If no lock is found that would
prevent this lock from being created, the structure is left unchanged by
this function call except for the lock type which is set to
F_UNLCK
. If a lock that does not support the
discovery of lock ownership by process (such as an OFD lock (see below),
one created by the flock(2) system
call or the open(2) system call with
the O_SHLOCK
or O_EXLOCK
flag) is found, l_pid is set to -1.F_SETLK
F_SETLK
is used to establish shared (or read)
locks (F_RDLCK)
or exclusive (or write) locks,
(F_WRLCK)
, as well as remove either type of lock
(F_UNLCK)
. If a shared or exclusive lock cannot be
set, fcntl
returns immediately with
EAGAIN
.F_SETLKW
F_SETLK
except that if
a shared or exclusive lock is blocked by other locks, the thread waits
until the request can be satisfied. If a signal that is to be caught is
received while fcntl
is waiting for a region, the
fcntl
will be interrupted if the signal handler
has not specified the SA_RESTART
(see
sigaction(2)).When a shared lock has been set on a segment of a file, other processes can set shared locks on that segment or a portion of it. A shared lock prevents any other process from setting an exclusive lock on any portion of the protected area. A request for a shared lock fails if the file descriptor was not opened with read access.
An exclusive lock prevents any other process from setting a shared lock or an exclusive lock on any portion of the protected area. A request for an exclusive lock fails if the file was not opened with write access.
The value of l_whence is
SEEK_SET
, SEEK_CUR
, or
SEEK_END
to indicate that the relative offset,
l_start bytes, will be measured from the start of the
file, current position, or end of the file, respectively. The value of
l_len is the number of consecutive bytes to be locked.
If l_len is negative, the result is undefined. The
l_pid field is only used with
F_GETLK
to return the process ID of the process
holding a blocking lock. After a successful F_GETLK
request, the value of l_whence is
SEEK_SET
.
Locks may start and extend beyond the current end of a file, but may not start or extend before the beginning of the file. A lock is set to extend to the largest possible value of the file offset for that file if l_len is set to zero. If l_whence and l_start point to the beginning of the file, and l_len is zero, the entire file is locked. If an application wishes only to do entire file locking, the flock(2) system call is more efficient.
There is at most one type of lock set for each byte in the file.
Before a successful return from an F_SETLK
or an
F_SETLKW
request when the calling process has
previously existing locks on bytes in the region specified by the request,
the previous lock type for each byte in the specified region is replaced by
the new lock type. As specified above under the descriptions of shared locks
and exclusive locks, an F_SETLK
or an
F_SETLKW
request fails or blocks respectively when
another process has existing locks on bytes in the specified region and the
type of any of those locks conflicts with the type specified in the
request.
This interface follows the completely stupid semantics of System V
and IEEE Std 1003.1-1988 (“POSIX.1”)
that require that all locks associated with a file for a given process are
removed when any file descriptor for that file is closed by that
process. This semantic means that applications must be aware of any files
that a subroutine library may access. For example if an application for
updating the password file locks the password file database while making the
update, and then calls getpwnam(3) to
retrieve a record, the lock will be lost because
getpwnam(3) opens, reads, and closes
the password database. The database close will release all locks that the
process has associated with the database, even if the library routine never
requested a lock on the database. Another minor semantic problem with this
interface is that locks are not inherited by a child process created using
the fork(2) function. The
flock(2) interface has much more
rational last close semantics and allows locks to be inherited by child
processes. Flock(2) is recommended for
applications that want to ensure the integrity of their locks when using
library routines or wish to pass locks to their children. Note that
flock(2) and
fcntl
locks may be safely used concurrently.
All locks associated with a file for a given process are removed when the process terminates.
A potential for deadlock occurs if a process controlling a locked
region is put to sleep by attempting to lock the locked region of another
process. This implementation detects that sleeping until a locked region is
unlocked would cause a deadlock and fails with an
EDEADLK
error.
An alternative set of commands is available for advisory record locking; they operate on the same flock structure described above, the fields of the structure have the same semantics, and the commands behave similarly to the traditional record locks described above. The primary difference is that open file description (OFD) locks are locks on the file associated with the open file description used to acquire them, and not with the process that created them. OFD locks are conceptually similar to locks managed by flock(2), with the addition of record locking capabilities.
A new open file description can be obtained from e.g., open(2). However, file descriptors that have been duplicated using e.g., dup(2) or fork(2) do not result in multiple instances of a lock, but create additional references to the same open file description, and thus reference the same lock. For example, if a process holding an OFD lock on a file forks, and the child explicitly unlocks a record, the parent will also lose that lock on the same record.
Only the last close of the last file descriptor in any process still referencing the open file description causes an automatic unlock to occur, so this type of record lock avoids the more unfortunate close(2) semantics of traditional advisory record locks.
The commands used for OFD locks are direct analogs of traditional record locking commands:
F_OFD_GETLK
fcntl
in the
flock structure. If no lock is found that would
prevent this lock from being created, the structure is left unchanged by
this function call except for the lock type which is set to
F_UNLCK
. If a lock that does not support the
discovery of lock ownership by process (such as an OFD lock, one created
by the flock(2) system call or the
open(2) system call with the
O_SHLOCK
or O_EXLOCK
flag)
is found, l_pid is set to -1.F_OFD_SETLK
F_SETLK
is used to establish shared (or read)
locks (F_RDLCK)
or exclusive (or write) locks,
(F_WRLCK)
, as well as remove either type of lock
(F_UNLCK)
. If a shared or exclusive lock cannot be
set, fcntl
returns immediately with a return value
of -1.F_OFD_SETLKW
F_OFD_SETLK
except
that if a shared or exclusive lock is blocked by other locks, the thread
waits until the request can be satisfied. If a signal that is to be caught
is received while fcntl
is waiting for a region,
the fcntl
will be interrupted if the signal
handler has not specified the SA_RESTART
(see
sigaction(2)).No deadlock detection is performed for OFD file locks.
The F_PREALLOCATE
command operates on the
following structure:
typedef struct fstore { u_int32_t fst_flags; /* IN: flags word */ int fst_posmode; /* IN: indicates offset field */ off_t fst_offset; /* IN: start of the region */ off_t fst_length; /* IN: size of the region */ off_t fst_bytesalloc; /* OUT: number of bytes allocated */ } fstore_t;
The flags (fst_flags) for the
F_PREALLOCATE
command are as follows:
F_ALLOCATECONTIG
F_ALLOCATEALL
F_ALLOCATEPERSIST
The position modes (fst_posmode) for the
F_PREALLOCATE
command indicate how to use the offset
field. The modes are as follows:
F_PEOFPOSMODE
F_VOLPOSMODE
The F_PUNCHHOLE
command operates on the
following structure:
typedef struct fpunchhole { u_int32_t fp_flags; /* unused */ u_int32_t reserved; /* (to maintain 8-byte alignment) */ off_t fp_offset; /* IN: start of the region */ off_t fp_length; /* IN: size of the region */ } fpunchhole_t;
The F_RDADVISE
command operates on the
following structure which holds information passed from the user to the
system:
struct radvisory { off_t ra_offset; /* offset into the file */ int ra_count; /* size of the read */ };
The F_LOG2PHYS
command operates on the
following structure:
struct log2phys { u_int32_t l2p_flags; /* unused so far */ off_t l2p_contigbytes; /* unused so far */ off_t l2p_devoffset; /* bytes into device */ };
The F_LOG2PHYS_EXT
command operates on the
same structure as F_LOG2PHYS but treats it as an in/out:
struct log2phys { u_int32_t l2p_flags; /* unused so far */ off_t l2p_contigbytes; /* IN: number of bytes to be queried; OUT: number of contiguous bytes allocated at this position */ off_t l2p_devoffset; /* IN: bytes into file; OUT: bytes into device */ };
If fildes is a socket, then the
F_SETNOSIGPIPE
and
F_GETNOSIGPIPE
commands are directly analogous, and
fully interoperate with the SO_NOSIGPIPE
option of
setsockopt(2) and
getsockopt(2) respectively.
Upon successful completion, the value returned depends on cmd as follows:
Otherwise, a value of -1 is returned and errno is set to indicate the error.
The fcntl
() system call will fail if:
EAGAIN
]F_SETLK
or F_OFD_SETLK
, the type of lock
(l_type) is a shared lock
(F_RDLCK)
or exclusive lock
(F_WRLCK)
, and the segment of a file to be locked
is already exclusive-locked by another process; or the type is an
exclusive lock and some portion of the segment of a file to be locked is
already shared-locked or exclusive-locked by another process.EACCES
]F_SETSIZE
and the calling process does not have
root privileges.EBADF
]The argument cmd is
F_SETLK
, F_SETLKW
,
F_OFD_SETLK
or
F_OFD_SETLKW
, the type of lock
(l_type) is a shared lock
(F_RDLCK)
, and fildes is
not a valid file descriptor open for reading.
The argument cmd is
F_SETLK
, F_SETLKW
,
F_OFD_SETLK
or
F_OFD_SETLKW
, the type of lock
(l_type) is an exclusive lock
(F_WRLCK)
, and fildes is
not a valid file descriptor open for writing.
The argument cmd is
F_PREALLOCATE
and the calling process does not
have file write permission.
The argument cmd is
F_LOG2PHYS
or
F_LOG2PHYS_EXT
and fildes
is not a valid file descriptor open for reading.
The argument cmd is
F_TRANSFEREXTENTS
and either file descriptor
does not correspond to a valid regular file, or either file is not open
for writing.
EDEADLK
]F_SETLKW
, and a deadlock condition was
detected.EFBIG
]F_PREALLOCATE
,
F_PEOFPOSMODE
is set and preallocating
fst_length bytes on fildes
would exceed the maximum file size.EINTR
]F_SETLKW
or F_OFD_SETLKW
, and the function was interrupted
by a signal.EINVAL
]F_DUPFD
and
arg is negative or greater than the maximum
allowable number (see
getdtablesize(2)).
The argument cmd is
F_GETLK
, F_SETLK
,
F_SETLKW
, F_OFD_GETLK
,
F_OFD_SETLK
or
F_OFD_SETLKW
, and the data to which
arg points is not valid, or
fildes refers to a file that does not support
locking.
The argument cmd is
F_PREALLOCATE
and the
fst_posmode is not a valid mode, or when
F_PEOFPOSMODE
is set and
fst_offset is a non-zero value, or when
F_VOLPOSMODE
is set and
fst_offset is a negative or zero value.
The argument cmd is
F_PUNCHHOLE
and either
fp_offset or fp_length are
negative, or when both fp_offset and
fp_length are not multiples of the file system
block size, or when either fp_flags or
reserved is non-zero value.
The argument cmd is
F_TRANSFEREXTENTS
and the additional file
descriptor is negative or both file descriptors reference the same
file.
EMFILE
]F_DUPFD
and the
maximum allowed number of file descriptors are currently open.EMFILE
]F_DUPFD
and the maximum number of file descriptors permitted for the process are
already in use, or no file descriptors greater than or equal to
arg are available.ENOLCK
]F_SETLK
,
F_SETLKW
, F_OFD_SETLK
or
F_OFD_SETLKW
, and satisfying the lock or unlock
request would result in the number of locked regions in the system
exceeding a system-imposed limit.ENOSPC
]F_PREALLOCATE
and either there is no space
available on the volume containing fildes or
fst_flags contains
F_ALLOCATEALL
and there is not enough space
available on the volume containing fildes to satisfy
the entire request.
The argument cmd is
F_PUNCHHOLE
and there is not enough space
available on the volume containing fildes to
satisfy the request. As an example, a filesystem that supports cloned
files may return this error if punching a hole requires the creation of
a clone and there is not enough space available to do so.
EOVERFLOW
]EPERM
]F_PUNCHHOLE
and the calling
process does not have file write permission.ESRCH
]F_SETOWN
and the
process ID given as argument is not in use.ENOTSUP
]F_TRANSFEREXTENTS
and
the given files aren't on an APFS volume.EXDEV
]F_TRANSFEREXTENTS
and
the referenced files are not in the same volume.close(2), execve(2), flock(2), fork(2), getdtablesize(2), open(2), pipe(2), setsockopt(2), socket(2), sigaction(3)
The fcntl
() function call appeared in
4.2BSD.
Open file description locks first appeared in Linux 3.15
August 12, 2021 | BSD 4.2 |