Changes.old: tfix
[man-pages.git] / man2 / flock.2
blob279c983ad9a292dab4b6a3de5b676c01ed636bf6
1 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu) and
2 .\" and Copyright 2002 Michael Kerrisk
3 .\"
4 .\" SPDX-License-Identifier: Linux-man-pages-copyleft
5 .\"
6 .\" Modified Fri Jan 31 16:26:07 1997 by Eric S. Raymond <esr@thyrsus.com>
7 .\" Modified Fri Dec 11 17:57:27 1998 by Jamie Lokier <jamie@imbolc.ucc.ie>
8 .\" Modified 24 Apr 2002 by Michael Kerrisk <mtk.manpages@gmail.com>
9 .\"     Substantial rewrites and additions
10 .\" 2005-05-10 mtk, noted that lock conversions are not atomic.
11 .\"
12 .\" FIXME Maybe document LOCK_MAND, LOCK_RW, LOCK_READ, LOCK_WRITE
13 .\" which only have effect for SAMBA.
14 .\"
15 .TH flock 2 (date) "Linux man-pages (unreleased)"
16 .SH NAME
17 flock \- apply or remove an advisory lock on an open file
18 .SH LIBRARY
19 Standard C library
20 .RI ( libc ", " \-lc )
21 .SH SYNOPSIS
22 .nf
23 .B #include <sys/file.h>
25 .BI "int flock(int " fd ", int " operation );
26 .fi
27 .SH DESCRIPTION
28 Apply or remove an advisory lock on the open file specified by
29 .IR fd .
30 The argument
31 .I operation
32 is one of the following:
33 .RS 4
34 .TP 9
35 .B LOCK_SH
36 Place a shared lock.
37 More than one process may hold a shared lock for a given file
38 at a given time.
39 .TP
40 .B LOCK_EX
41 Place an exclusive lock.
42 Only one process may hold an exclusive lock for a given
43 file at a given time.
44 .TP
45 .B LOCK_UN
46 Remove an existing lock held by this process.
47 .RE
49 A call to
50 .BR flock ()
51 may block if an incompatible lock is held by another process.
52 To make a nonblocking request, include
53 .B LOCK_NB
54 (by ORing)
55 with any of the above operations.
57 A single file may not simultaneously have both shared and exclusive locks.
59 Locks created by
60 .BR flock ()
61 are associated with an open file description (see
62 .BR open (2)).
63 This means that duplicate file descriptors (created by, for example,
64 .BR fork (2)
66 .BR dup (2))
67 refer to the same lock, and this lock may be modified
68 or released using any of these file descriptors.
69 Furthermore, the lock is released either by an explicit
70 .B LOCK_UN
71 operation on any of these duplicate file descriptors, or when all
72 such file descriptors have been closed.
74 If a process uses
75 .BR open (2)
76 (or similar) to obtain more than one file descriptor for the same file,
77 these file descriptors are treated independently by
78 .BR flock ().
79 An attempt to lock the file using one of these file descriptors
80 may be denied by a lock that the calling process has
81 already placed via another file descriptor.
83 A process may hold only one type of lock (shared or exclusive)
84 on a file.
85 Subsequent
86 .BR flock ()
87 calls on an already locked file will convert an existing lock to the new
88 lock mode.
90 Locks created by
91 .BR flock ()
92 are preserved across an
93 .BR execve (2).
95 A shared or exclusive lock can be placed on a file regardless of the
96 mode in which the file was opened.
97 .SH RETURN VALUE
98 On success, zero is returned.
99 On error, \-1 is returned, and
100 .I errno
101 is set to indicate the error.
102 .SH ERRORS
104 .B EBADF
105 .I fd
106 is not an open file descriptor.
108 .B EINTR
109 While waiting to acquire a lock, the call was interrupted by
110 delivery of a signal caught by a handler; see
111 .BR signal (7).
113 .B EINVAL
114 .I operation
115 is invalid.
117 .B ENOLCK
118 The kernel ran out of memory for allocating lock records.
120 .B EWOULDBLOCK
121 The file is locked and the
122 .B LOCK_NB
123 flag was selected.
124 .SH VERSIONS
125 Since Linux 2.0,
126 .BR flock ()
127 is implemented as a system call in its own right rather
128 than being emulated in the GNU C library as a call to
129 .BR fcntl (2).
130 With this implementation,
131 there is no interaction between the types of lock
132 placed by
133 .BR flock ()
135 .BR fcntl (2),
137 .BR flock ()
138 does not detect deadlock.
139 (Note, however, that on some systems, such as the modern BSDs,
140 .\" E.g., according to the flock(2) man page, FreeBSD since at least 5.3
141 .BR flock ()
143 .BR fcntl (2)
144 locks
145 .I do
146 interact with one another.)
147 .SS CIFS details
148 Up to Linux 5.4,
149 .BR flock ()
150 is not propagated over SMB.
151 A file with such locks will not appear locked for remote clients.
153 Since Linux 5.5,
154 .BR flock ()
155 locks are emulated with SMB byte-range locks on the entire file.
156 Similarly to NFS, this means that
157 .BR fcntl (2)
159 .BR flock ()
160 locks interact with one another.
161 Another important side-effect is that the locks are not advisory anymore:
162 any IO on a locked file will always fail with
163 .B EACCES
164 when done from a separate file descriptor.
165 This difference originates from the design of locks in the SMB protocol,
166 which provides mandatory locking semantics.
168 Remote and mandatory locking semantics may vary with
169 SMB protocol, mount options and server type.
171 .BR mount.cifs (8)
172 for additional information.
173 .SH STANDARDS
174 BSD.
175 .SH HISTORY
176 4.4BSD (the
177 .BR flock ()
178 call first appeared in 4.2BSD).
179 A version of
180 .BR flock (),
181 possibly implemented in terms of
182 .BR fcntl (2),
183 appears on most UNIX systems.
184 .SS NFS details
185 Up to Linux 2.6.11,
186 .BR flock ()
187 does not lock files over NFS
188 (i.e., the scope of locks was limited to the local system).
189 Instead, one could use
190 .BR fcntl (2)
191 byte-range locking, which does work over NFS,
192 given a sufficiently recent version of
193 Linux and a server which supports locking.
195 Since Linux 2.6.12, NFS clients support
196 .BR flock ()
197 locks by emulating them as
198 .BR fcntl (2)
199 byte-range locks on the entire file.
200 This means that
201 .BR fcntl (2)
203 .BR flock ()
204 locks
205 .I do
206 interact with one another over NFS.
207 It also means that in order to place an exclusive lock,
208 the file must be opened for writing.
210 Since Linux 2.6.37,
211 .\" commit 5eebde23223aeb0ad2d9e3be6590ff8bbfab0fc2
212 the kernel supports a compatibility mode that allows
213 .BR flock ()
214 locks (and also
215 .BR fcntl (2)
216 byte region locks) to be treated as local;
217 see the discussion of the
218 .I "local_lock"
219 option in
220 .BR nfs (5).
221 .SH NOTES
222 .BR flock ()
223 places advisory locks only; given suitable permissions on a file,
224 a process is free to ignore the use of
225 .BR flock ()
226 and perform I/O on the file.
228 .BR flock ()
230 .BR fcntl (2)
231 locks have different semantics with respect to forked processes and
232 .BR dup (2).
233 On systems that implement
234 .BR flock ()
235 using
236 .BR fcntl (2),
237 the semantics of
238 .BR flock ()
239 will be different from those described in this manual page.
241 Converting a lock
242 (shared to exclusive, or vice versa) is not guaranteed to be atomic:
243 the existing lock is first removed, and then a new lock is established.
244 Between these two steps,
245 a pending lock request by another process may be granted,
246 with the result that the conversion either blocks, or fails if
247 .B LOCK_NB
248 was specified.
249 (This is the original BSD behavior,
250 and occurs on many other implementations.)
251 .\" Kernel 2.5.21 changed things a little: during lock conversion
252 .\" it is now the highest priority process that will get the lock -- mtk
253 .SH SEE ALSO
254 .BR flock (1),
255 .BR close (2),
256 .BR dup (2),
257 .BR execve (2),
258 .BR fcntl (2),
259 .BR fork (2),
260 .BR open (2),
261 .BR lockf (3),
262 .BR lslocks (8)
264 .I Documentation/filesystems/locks.txt
265 in the Linux kernel source tree
266 .RI ( Documentation/locks.txt
267 in older kernels)