Wrapper around struct flock
used for advisory file locking in FileDescriptor.
This type is used together with FileDescriptor::setLock(), FileDescriptor::setOFDLock() and related functions. The flock data structure describes a byte region of a file to be locked. A combination of SeekDir::SET with a length of zero will lock the complete file.
Advisory file locking requires the cooperation of all processes accessing a file, to work. There exist two types of advisory file locking: traditional POSIX compatible locks and Linux specific open file description (OFD) locks. The traditional locks have unfortunate semantics that tie a lock to a single process, not to an open file description. The Linux specific open file description (OFD) locks have better semantics, where a lock is placed on the open file description and multiple file descriptors can refer to it. OFD locks are also planned to be part of future POSIX specifications.
For new programs the OFD style locks should always be used in preference over the traditional locks, except if compatibility with existing software is a requirement. This structure is used for both, traditional and OFD locks. For OFD locks the pid()
value must be zero, which is achieved by calling the constructor, clear()
or clearPID()
.
Things to consider:
- for placing a
READ_LOCK
the file must be open for reading, for placing a WRITE_LOCK
it must be open for writing and for placing both types of locks it needs to be open for read-write.
- traditional locks have basic deadlock detection support in the kernel, but there are some limitations to this. OFD locks currently don't have deadlock detection.
- traditional locks are not inherited via
fork()
, but are preserved across execve()
. A close on any file descriptor referring to the lock, will be remove the lock, even if other file descriptors for the open file description exist.
- traditional locks always conflict with OFD locks, even if the same process acquires them on the same file descriptor.
- OFD locks placed on the same open file description are always compatible with each other and can be used for converting existing locks.
- Both traditional and OFD locks allow to convert existing locks already owned by the caller, which may result in splitting or merging of lock regions.
- OFD locks can be used to synchronize between threads of the same process if each thread performs an independent
open()
on the file to lock.
Definition at line 59 of file FileLock.hxx.