OSDN Git Service

bc7141c8b4004e06090886a24be1b9f5bbd7b20e
[linuxjm/LDP_man-pages.git] / original / man2 / flock.2
1 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu) and
2 .\" and Copyright 2002 Michael Kerrisk
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Modified Fri Jan 31 16:26:07 1997 by Eric S. Raymond <esr@thyrsus.com>
27 .\" Modified Fri Dec 11 17:57:27 1998 by Jamie Lokier <jamie@imbolc.ucc.ie>
28 .\" Modified 24 Apr 2002 by Michael Kerrisk <mtk.manpages@gmail.com>
29 .\"     Substantial rewrites and additions
30 .\" 2005-05-10 mtk, noted that lock conversions are not atomic.
31 .\"
32 .\" FIXME: Maybe document LOCK_MAND, LOCK_RW, LOCK_READ, LOCK_WRITE
33 .\"        which only have effect for SAMBA.
34 .\"
35 .TH FLOCK 2 2014-04-22 "Linux" "Linux Programmer's Manual"
36 .SH NAME
37 flock \- apply or remove an advisory lock on an open file
38 .SH SYNOPSIS
39 .B #include <sys/file.h>
40 .sp
41 .BI "int flock(int " fd ", int " operation );
42 .SH DESCRIPTION
43 Apply or remove an advisory lock on the open file specified by
44 .IR fd .
45 The argument
46 .I operation
47 is one of the following:
48 .RS 4
49 .TP 9
50 .B LOCK_SH
51 Place a shared lock.
52 More than one process may hold a shared lock for a given file
53 at a given time.
54 .TP
55 .B LOCK_EX
56 Place an exclusive lock.
57 Only one process may hold an exclusive lock for a given
58 file at a given time.
59 .TP
60 .B LOCK_UN
61 Remove an existing lock held by this process.
62 .RE
63 .PP
64 A call to
65 .BR flock ()
66 may block if an incompatible lock is held by another process.
67 To make a nonblocking request, include
68 .B LOCK_NB
69 (by ORing)
70 with any of the above operations.
71
72 A single file may not simultaneously have both shared and exclusive locks.
73
74 Locks created by
75 .BR flock ()
76 are associated with an open file description (see
77 .BR open (2)).
78 This means that duplicate file descriptors (created by, for example,
79 .BR fork (2)
80 or
81 .BR dup (2))
82 refer to the same lock, and this lock may be modified
83 or released using any of these descriptors.
84 Furthermore, the lock is released either by an explicit
85 .B LOCK_UN
86 operation on any of these duplicate descriptors, or when all
87 such descriptors have been closed.
88
89 If a process uses
90 .BR open (2)
91 (or similar) to obtain more than one descriptor for the same file,
92 these descriptors are treated independently by
93 .BR flock ().
94 An attempt to lock the file using one of these file descriptors
95 may be denied by a lock that the calling process has
96 already placed via another descriptor.
97
98 A process may hold only one type of lock (shared or exclusive)
99 on a file.
100 Subsequent
101 .BR flock ()
102 calls on an already locked file will convert an existing lock to the new
103 lock mode.
104
105 Locks created by
106 .BR flock ()
107 are preserved across an
108 .BR execve (2).
109
110 A shared or exclusive lock can be placed on a file regardless of the
111 mode in which the file was opened.
112 .SH RETURN VALUE
113 On success, zero is returned.
114 On error, \-1 is returned, and
115 .I errno
116 is set appropriately.
117 .SH ERRORS
118 .TP
119 .B EBADF
120 .I fd
121 is not an open file descriptor.
122 .TP
123 .B EINTR
124 While waiting to acquire a lock, the call was interrupted by
125 delivery of a signal caught by a handler; see
126 .BR signal (7).
127 .TP
128 .B EINVAL
129 .I operation
130 is invalid.
131 .TP
132 .B ENOLCK
133 The kernel ran out of memory for allocating lock records.
134 .TP
135 .B EWOULDBLOCK
136 The file is locked and the
137 .B LOCK_NB
138 flag was selected.
139 .SH CONFORMING TO
140 4.4BSD (the
141 .BR flock ()
142 call first appeared in 4.2BSD).
143 A version of
144 .BR flock (),
145 possibly implemented in terms of
146 .BR fcntl (2),
147 appears on most UNIX systems.
148 .SH NOTES
149 .BR flock ()
150 does not lock files over NFS.
151 Use
152 .BR fcntl (2)
153 instead: that does work over NFS, given a sufficiently recent version of
154 Linux and a server which supports locking.
155 .PP
156 Since kernel 2.0,
157 .BR flock ()
158 is implemented as a system call in its own right rather
159 than being emulated in the GNU C library as a call to
160 .BR fcntl (2).
161 This yields true BSD semantics:
162 there is no interaction between the types of lock
163 placed by
164 .BR flock ()
165 and
166 .BR fcntl (2),
167 and
168 .BR flock ()
169 does not detect deadlock.
170 .PP
171 .BR flock ()
172 places advisory locks only; given suitable permissions on a file,
173 a process is free to ignore the use of
174 .BR flock ()
175 and perform I/O on the file.
176 .PP
177 .BR flock ()
178 and
179 .BR fcntl (2)
180 locks have different semantics with respect to forked processes and
181 .BR dup (2).
182 On systems that implement
183 .BR flock ()
184 using
185 .BR fcntl (2),
186 the semantics of
187 .BR flock ()
188 will be different from those described in this manual page.
189 .PP
190 Converting a lock
191 (shared to exclusive, or vice versa) is not guaranteed to be atomic:
192 the existing lock is first removed, and then a new lock is established.
193 Between these two steps,
194 a pending lock request by another process may be granted,
195 with the result that the conversion either blocks, or fails if
196 .B LOCK_NB
197 was specified.
198 (This is the original BSD behavior,
199 and occurs on many other implementations.)
200 .\" Kernel 2.5.21 changed things a little: during lock conversion
201 .\" it is now the highest priority process that will get the lock -- mtk
202 .SH SEE ALSO
203 .BR flock (1),
204 .BR close (2),
205 .BR dup (2),
206 .BR execve (2),
207 .BR fcntl (2),
208 .BR fork (2),
209 .BR open (2),
210 .BR lockf (3)
211
212 .I Documentation/filesystems/locks.txt
213 in the Linux kernel source tree
214 .RI ( Documentation/locks.txt
215 in older kernels)
216 .SH COLOPHON
217 This page is part of release 3.67 of the Linux
218 .I man-pages
219 project.
220 A description of the project,
221 information about reporting bugs,
222 and the latest version of this page,
223 can be found at
224 \%http://www.kernel.org/doc/man\-pages/.