Fcntl linux что это

Fcntl linux что это

F_DUPFD Return a new descriptor as follows:

  • Lowest numbered available descriptor greater than or equal to Fa arg .
  • Same object references as the original descriptor.
  • New descriptor shares the same file offset if the object was a file.
  • Same access mode (read, write or read/write).
  • Same file status flags (i.e., both file descriptors share the same file status flags).
  • The close-on-exec flag associated with the new file descriptor is set to remain open across execve(2) system calls.
  • F_DUP2FD It is functionally equivalent to

    The F_DUP2FD constant is not portable, so it should not be used if portability is needed. Use dup2 ();
    instead. F_GETFD Get the close-on-exec flag associated with the file descriptor Fa fd as FD_CLOEXEC If the returned value ANDed with FD_CLOEXEC is 0, the file will remain open across exec (,);
    otherwise the file will be closed upon execution of exec ();
    Fa ( arg is ignored). F_SETFD Set the close-on-exec flag associated with Fa fd to Fa arg , where Fa arg is either 0 or FD_CLOEXEC as described above. F_GETFL Get descriptor status flags, as described below Fa ( arg is ignored). F_SETFL Set descriptor status flags to Fa arg . F_GETOWN Get the process ID or process group currently receiving SIGIO and SIGURG signals; process groups are returned as negative values Fa ( arg is ignored). F_SETOWN Set the process or process group to receive SIGIO and SIGURG signals; process groups are specified by supplying Fa arg as negative, otherwise Fa arg is interpreted as a process ID.

    The flags for the F_GETFL and F_SETFL flags are as follows:

    O_NONBLOCK Non-blocking I/O; if no data is available to a read(2) system call, or if a write(2) operation would block, the read or write call returns -1 with the error Er EAGAIN . O_APPEND Force each write to append at the end of file; corresponds to the O_APPEND flag of open(2). O_DIRECT Minimize or eliminate the cache effects of reading and writing. The system will attempt to avoid caching the data you read or write. If it cannot avoid caching the data, it will minimize the impact the data has on the cache. Use of this flag can drastically reduce performance if not used with care. O_ASYNC Enable the 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: The commands available for advisory record locking are as follows:

    F_GETLK Get the first lock that blocks the lock description pointed to by the third argument, Fa arg , taken as a pointer to a Fa struct flock (see above). The information retrieved overwrites the information passed to fcntl ();
    in the Fa flock structure. If no lock is found that would prevent this lock from being created, the structure is left unchanged by this system call except for the lock type which is set to F_UNLCK F_SETLK Set or clear a file segment lock according to the lock description pointed to by the third argument, Fa arg , taken as a pointer to a Fa struct flock (see above). 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 Er EAGAIN . F_SETLKW This command is the same as F_SETLK except that if a shared or exclusive lock is blocked by other locks, the process 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.

    Читайте также:  Как повысить windows 10 home до windows 10 pro

    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 Fa l_whence is SEEK_SET SEEK_CUR or SEEK_END to indicate that the relative offset, Fa l_start bytes, will be measured from the start of the file, current position, or end of the file, respectively. The value of Fa l_len is the number of consecutive bytes to be locked. If Fa l_len is negative, Fa l_start means end edge of the region. The Fa l_pid and Fa l_sysid fields are only used with F_GETLK to return the process ID of the process holding a blocking lock and the system ID of the system that owns that process. Locks created by the local system will have a system ID of zero. After a successful F_GETLK request, the value of Fa 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 Fa l_len is set to zero. If Fa l_whence and Fa l_start point to the beginning of the file, and Fa 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 much 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 St -p1003.1-88 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) system call. The flock(2) interface has much more rational last close semantics and allows locks to be inherited by child processes. The flock(2) system call 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.

    The fcntl (,);
    flock(2), and lockf(3) locks are compatible. Processes using different locking interfaces can cooperate over the same file safely. However, only one of such interfaces should be used within the same process. If a file is locked by a process through flock(2), any record within the file will be seen as locked from the viewpoint of another process using fcntl ();
    or lockf(3), and vice versa. Note that fcntl (F_GETLK);
    returns -1 in Fa l_pid if the process holding a blocking lock previously locked the file descriptor by flock(2).

    All locks associated with a file for a given process are removed when the process terminates.

    All locks obtained before a call to execve(2) remain in effect until the new program releases them. If the new program does not know about the locks, they will not be released until the program exits.

    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 Er EDEADLK error.

    Читайте также:  Стим для linux mint

    RETURN VALUES

    F_DUPFD A new file descriptor. F_DUP2FD A file descriptor equal to Fa arg . F_GETFD Value of flag (only the low-order bit is defined). F_GETFL Value of flags. F_GETOWN Value of file descriptor owner. other Value other than -1.

    Otherwise, a value of -1 is returned and errno is set to indicate the error.

    ERRORS

    Bq Er EAGAIN The argument Fa cmd is F_SETLK the type of lock (Fa 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. Bq Er EBADF The Fa fd argument is not a valid open file descriptor.

    The argument Fa cmd is F_DUP2FD and Fa arg is not a valid file descriptor.

    The argument Fa cmd is F_SETLK or F_SETLKW the type of lock (Fa l_type ) is a shared lock ( F_RDLCK ) and Fa fd is not a valid file descriptor open for reading.

    The argument Fa cmd is F_SETLK or F_SETLKW the type of lock (Fa l_type ) is an exclusive lock ( F_WRLCK ) and Fa fd is not a valid file descriptor open for writing. Bq Er EDEADLK The argument Fa cmd is F_SETLKW and a deadlock condition was detected. Bq Er EINTR The argument Fa cmd is F_SETLKW and the system call was interrupted by a signal. Bq Er EINVAL The Fa cmd argument is F_DUPFD and Fa arg is negative or greater than the maximum allowable number (see getdtablesize(2)).

    The argument Fa cmd is F_GETLK F_SETLK or F_SETLKW and the data to which Fa arg points is not valid. Bq Er EMFILE The argument Fa cmd is F_DUPFD or F_DUP2FD and the maximum number of file descriptors permitted for the process are already in use, or no file descriptors greater than or equal to Fa arg are available. Bq Er ENOLCK The argument Fa cmd is F_SETLK or F_SETLKW and satisfying the lock or unlock request would result in the number of locked regions in the system exceeding a system-imposed limit. Bq Er EOPNOTSUPP The argument Fa cmd is F_GETLK F_SETLK or F_SETLKW and Fa fd refers to a file for which locking is not supported. Bq Er EOVERFLOW The argument Fa cmd is F_GETLK F_SETLK or F_SETLKW and an Fa off_t calculation overflowed. Bq Er EPERM The Fa cmd argument is F_SETOWN and the process ID or process group given as an argument is in a different session than the caller. Bq Er ESRCH The Fa cmd argument is F_SETOWN and the process ID given as argument is not in use.

    In addition, if Fa fd refers to a descriptor open on a terminal device (as opposed to a descriptor open on a socket), a Fa cmd of F_SETOWN can fail for the same reasons as in tcsetpgrp(3), and a Fa cmd of F_GETOWN for the reasons as stated in tcgetpgrp(3).

    SEE ALSO


    STANDARDS


    HISTORY

    The F_DUP2FD constant first appeared in Fx 7.1 .

    Источник

    Fcntl linux что это

    НАЗВАНИЕ
    fcntl — управление файлами

    ОПИСАНИЕ
    Системный вызов fcntl выполняет управляющие операции над открытыми файлами. Аргумент fildes — это дескриптор открытого файла, полученный после выполнения системных вызовов creat, open, dup, fcntl и pipe.

    Аргумент cmd может принимать следующие значения, определяющие выполняемую операцию: F_DUPFD Создать новый дескриптор файла с такими свойствами:

    1. Его номер — есть минимальный из доступных номеров, не меньших arg.
    2. Он ассоциирован с тем же открытым файлом (или каналом), что и исходный дескриптор fildes.
    3. У него тот же указатель текущей позиции в файле, что и у исходного (то есть они разделяют общий указатель).
    4. Тот же режим доступа к файлу (чтение, запись или чтение/запись).
    5. Те же флаги статуса файла (то есть оба дескриптора разделяют общие флаги статуса).
    6. Ассоциированный с новым дескриптором флаг «закрыть при выполнении вызова exec» устанавливается в состояние «оставить открытым при выполнении вызова exec».

    F_GETFD Получить значение флага «закрыть при выполнении вызова exec» для дескриптора файла fildes. Если младший бит возвращаемого значения равен нулю, то файл останется открытым, в противном случае при выполнении вызова exec файл будет закрыт. F_SETFD Установить значение флага «закрыть при выполнении вызова exec» для дескриптора файла fildes равным значению младшего бита (0 или 1) аргумента arg. F_GETFL Получить флаги статуса файла, ассоциированного с дескриптором fildes. F_SETFL Установить флаги статуса файла, ассоциированного с дексриптором fildes, равными значению аргумента arg. Могут быть установлены только некоторые флаги [см. fcntl(5)]. F_GETLK Получить характеристики первой блокировки, мешающей установить новую блокировку, задаваемую структурой типа flock с адресом arg. Результирующая информация возвращается в той же структуре. Если нет помех для создания нужной блокировки, то структура flock не изменяется за исключением поля типа блокировки, которому присваивается значение F_UNLCK. F_SETLK Установить или снять блокировку сегмента файла в соответствии со значением структуры типа flock, на которую указывает аргумент arg. [см. fcntl(5)]. Операция F_SETLK используется для установки блокировки на чтение (F_RDLCK) или запись (F_WRLCK), а также для снятия блокировки обоих типов (F_UNLCK). Если блокировка на чтение или запись не может быть установлена, то системный вызов fcntl завершается немедленно и возвращает -1. F_SETLKW Эта операция отличается от операции F_SETLK только тем, что при неудачной попытке установить блокировку на чтение или запись процесс переходит в состояние ожидания до тех пор, пока нужный сегмент файла не будет разблокирован.

    Читайте также:  Microsoft windows lua settings

    Блокировка на чтение предотвращает блокировку защищаемой области каким-либо процессом на запись. Для данного сегмента файла могут одновременно существовать несколько блокировок на чтение. Дескриптор, используемый для установления блокировки на чтение, должен быть ассоциирован с файлом, открытым с правом чтения.

    Блокировка на запись предотвращает блокировку защищаемой области на чтение или запись. Одновременно может существовать не более одной блокировки на запись данного сегмента файла. Дескриптор, используемый для установления блокировки на запись, должен быть ассоциирован с файлом, открытым с правом записи.

    Структура типа flock содержит поля, определяющие для сегмента файла тип блокировки (l_type), начальное смещение (l_whence), относительное смещение (l_start), размер (l_len), идентификатор системы РУФ (l_sysid), идентификатор процесса (l_pid). Идентификаторы процесса и системы используются только в случае операции F_GETLK для возврата характеристик блокировки. Начало и конец блокируемой области могут выходить за конец файла, но не за начало. Можно определить блокировку, всегда действующую до конца файла, если значение поля l_len равно 0. Если значения полей l_whence и l_start равны 0, то блокировка будет распространяться на весь файл. Изменение или снятие блокировки сегмента из середины большого защищенного сегмента приводит к появлению с обоих концов двух меньших защищенных сегментов. Блокировка сегмента, который уже блокирован вызывающим процессом, приводит к удалению старого и установке нового типа блокировки. Все блокировки, ассоциированные с файлом для данного процесса, удаляются, когда файл закрывается этим процессом или когда процесс терминируется, не закрывая файл. Блокировки не наследуются порождаемым процессом при выполнении системного вызова fork(2).

    Если блокировка доступа к файлу разрешена [см. chmod(2)], то системные вызовы read и write для этого файла выполняются с учетом действующих блокировок.

    Системный вызов fcntl завершается неудачей, если выполнено хотя бы одно из следующих условий: [EBADF] Аргумент fildes не является корректным дескриптором открытого файла. [EINVAL] При операции cmd, равной F_DUPFD, значение аргумента arg либо отрицательно, либо больше или равно максимально допустимому для одного пользователя количеству дескрипторов открытых файлов. [EINVAL] При операции cmd, равной F_GETLK, F_SETLK или F_SETLKW, значение аргумента arg или информация, на которую указывает arg, некорректны. [EACCES] При операции cmd, равной F_SETLK, делается попытка блокировать на чтение (F_RDLCK) сегмент файла, заблокированный другим процессом на запись, либо попытка блокировать на запись (F_WRLCK) сегмент файла, заблокированный другим процессом на чтение или запись. [ENOLCK] При операции cmd, равной F_SETLK или F_SETLKW, превышается максимально допустимое системой количество блокировок. [EDEADLK] При операции cmd, равной F_SETLKW, ожидание возможности установить блокировку приводит к тупику. [EFAULT] При операции cmd, равной F_SETLK, аргумент arg указывает за пределы отведенного процессу адресного пространства. [EINTR] Во время выполнения системного вызова перехвачен сигнал. [ENOLINK] Дескриптор fildes ассоциирован с файлом на удаленном компьютере, связи с которым в данный момент нет.

    ДИАГНОСТИКА
    При успешном завершении системного вызова в зависимости от операции cmd возвращаются следующие значения:

    • F_DUPFD Новый дескриптор файла.
    • F_GETFD Значение флага (определен только младший бит).
    • F_SETFD Значение, отличное от -1.
    • F_GETFL Значение флагов статуса файла.
    • F_SETFL Значение, отличное от -1.
    • F_GETLK Значение, отличное от -1.
    • F_SETLK Значение, отличное от -1.
    • F_SETLKW Значение, отличное от -1.

    В случае ошибки возвращается -1, а переменной errno присваивается код ошибки.

    Источник

    Оцените статью