blob: 89d898bce16693beb880efef27bd2803e9cdb025 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/locks.c
3 *
4 * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
5 * Doug Evans (dje@spiff.uucp), August 07, 1992
6 *
7 * Deadlock detection added.
8 * FIXME: one thing isn't handled yet:
9 * - mandatory locks (requires lots of changes elsewhere)
10 * Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994.
11 *
12 * Miscellaneous edits, and a total rewrite of posix_lock_file() code.
13 * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
14 *
15 * Converted file_lock_table to a linked list from an array, which eliminates
16 * the limits on how many active file locks are open.
17 * Chad Page (pageone@netcom.com), November 27, 1994
18 *
19 * Removed dependency on file descriptors. dup()'ed file descriptors now
20 * get the same locks as the original file descriptors, and a close() on
21 * any file descriptor removes ALL the locks on the file for the current
22 * process. Since locks still depend on the process id, locks are inherited
23 * after an exec() but not after a fork(). This agrees with POSIX, and both
24 * BSD and SVR4 practice.
25 * Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995
26 *
27 * Scrapped free list which is redundant now that we allocate locks
28 * dynamically with kmalloc()/kfree().
29 * Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995
30 *
31 * Implemented two lock personalities - FL_FLOCK and FL_POSIX.
32 *
33 * FL_POSIX locks are created with calls to fcntl() and lockf() through the
34 * fcntl() system call. They have the semantics described above.
35 *
36 * FL_FLOCK locks are created with calls to flock(), through the flock()
37 * system call, which is new. Old C libraries implement flock() via fcntl()
38 * and will continue to use the old, broken implementation.
39 *
40 * FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated
41 * with a file pointer (filp). As a result they can be shared by a parent
42 * process and its children after a fork(). They are removed when the last
43 * file descriptor referring to the file pointer is closed (unless explicitly
44 * unlocked).
45 *
46 * FL_FLOCK locks never deadlock, an existing lock is always removed before
47 * upgrading from shared to exclusive (or vice versa). When this happens
48 * any processes blocked by the current lock are woken up and allowed to
49 * run before the new lock is applied.
50 * Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995
51 *
52 * Removed some race conditions in flock_lock_file(), marked other possible
53 * races. Just grep for FIXME to see them.
54 * Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996.
55 *
56 * Addressed Dmitry's concerns. Deadlock checking no longer recursive.
57 * Lock allocation changed to GFP_ATOMIC as we can't afford to sleep
58 * once we've checked for blocking and deadlocking.
59 * Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996.
60 *
61 * Initial implementation of mandatory locks. SunOS turned out to be
62 * a rotten model, so I implemented the "obvious" semantics.
Paul Bolle395cf962011-08-15 02:02:26 +020063 * See 'Documentation/filesystems/mandatory-locking.txt' for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
65 *
66 * Don't allow mandatory locks on mmap()'ed files. Added simple functions to
67 * check if a file has mandatory locks, used by mmap(), open() and creat() to
68 * see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference
69 * Manual, Section 2.
70 * Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996.
71 *
72 * Tidied up block list handling. Added '/proc/locks' interface.
73 * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
74 *
75 * Fixed deadlock condition for pathological code that mixes calls to
76 * flock() and fcntl().
77 * Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996.
78 *
79 * Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use
80 * for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to
81 * guarantee sensible behaviour in the case where file system modules might
82 * be compiled with different options than the kernel itself.
83 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
84 *
85 * Added a couple of missing wake_up() calls. Thanks to Thomas Meckel
86 * (Thomas.Meckel@mni.fh-giessen.de) for spotting this.
87 * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
88 *
89 * Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK
90 * locks. Changed process synchronisation to avoid dereferencing locks that
91 * have already been freed.
92 * Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996.
93 *
94 * Made the block list a circular list to minimise searching in the list.
95 * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
96 *
97 * Made mandatory locking a mount option. Default is not to allow mandatory
98 * locking.
99 * Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996.
100 *
101 * Some adaptations for NFS support.
102 * Olaf Kirch (okir@monad.swb.de), Dec 1996,
103 *
104 * Fixed /proc/locks interface so that we can't overrun the buffer we are handed.
105 * Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997.
106 *
107 * Use slab allocator instead of kmalloc/kfree.
108 * Use generic list implementation from <linux/list.h>.
109 * Sped up posix_locks_deadlock by only considering blocked locks.
110 * Matthew Wilcox <willy@debian.org>, March, 2000.
111 *
112 * Leases and LOCK_MAND
113 * Matthew Wilcox <willy@debian.org>, June, 2000.
114 * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
115 */
116
117#include <linux/capability.h>
118#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -0400119#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include <linux/fs.h>
121#include <linux/init.h>
122#include <linux/module.h>
123#include <linux/security.h>
124#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#include <linux/syscalls.h>
126#include <linux/time.h>
Dipankar Sarma4fb3a532005-09-16 19:28:13 -0700127#include <linux/rcupdate.h>
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000128#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include <asm/uaccess.h>
131
132#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
133#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
134#define IS_LEASE(fl) (fl->fl_flags & FL_LEASE)
135
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400136static bool lease_breaking(struct file_lock *fl)
137{
J. Bruce Fields778fc542011-07-26 18:25:49 -0400138 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
139}
140
141static int target_leasetype(struct file_lock *fl)
142{
143 if (fl->fl_flags & FL_UNLOCK_PENDING)
144 return F_UNLCK;
145 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
146 return F_RDLCK;
147 return fl->fl_type;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150int leases_enable = 1;
151int lease_break_time = 45;
152
153#define for_each_lock(inode, lockp) \
154 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
155
Jeff Layton88974692013-06-21 08:58:14 -0400156/* The global file_lock_list is only used for displaying /proc/locks. */
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500157static LIST_HEAD(file_lock_list);
Jeff Layton88974692013-06-21 08:58:14 -0400158
159/* The blocked_list is used to find POSIX lock loops for deadlock detection. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static LIST_HEAD(blocked_list);
Jeff Layton88974692013-06-21 08:58:14 -0400161
162/* Protects the two list heads above, plus the inode->i_flock list */
Arnd Bergmann72f98e72010-10-27 21:39:58 +0200163static DEFINE_SPINLOCK(file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200165void lock_flocks(void)
166{
Arnd Bergmann72f98e72010-10-27 21:39:58 +0200167 spin_lock(&file_lock_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200168}
169EXPORT_SYMBOL_GPL(lock_flocks);
170
171void unlock_flocks(void)
172{
Arnd Bergmann72f98e72010-10-27 21:39:58 +0200173 spin_unlock(&file_lock_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200174}
175EXPORT_SYMBOL_GPL(unlock_flocks);
176
Christoph Lametere18b8902006-12-06 20:33:20 -0800177static struct kmem_cache *filelock_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Miklos Szerediee19cc42011-07-07 13:06:09 +0200179static void locks_init_lock_heads(struct file_lock *fl)
Miklos Szeredia51cb912011-07-06 12:33:55 +0200180{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200181 INIT_LIST_HEAD(&fl->fl_link);
182 INIT_LIST_HEAD(&fl->fl_block);
183 init_waitqueue_head(&fl->fl_wait);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Allocate an empty lock structure. */
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200187struct file_lock *locks_alloc_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200189 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200190
191 if (fl)
Miklos Szerediee19cc42011-07-07 13:06:09 +0200192 locks_init_lock_heads(fl);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200193
194 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200196EXPORT_SYMBOL_GPL(locks_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500198void locks_release_private(struct file_lock *fl)
Trond Myklebust47831f32006-03-20 13:44:05 -0500199{
200 if (fl->fl_ops) {
201 if (fl->fl_ops->fl_release_private)
202 fl->fl_ops->fl_release_private(fl);
203 fl->fl_ops = NULL;
204 }
J. Bruce Fields068535f2012-08-01 07:56:16 -0400205 fl->fl_lmops = NULL;
Trond Myklebust47831f32006-03-20 13:44:05 -0500206
207}
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500208EXPORT_SYMBOL_GPL(locks_release_private);
Trond Myklebust47831f32006-03-20 13:44:05 -0500209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/* Free a lock which is not in use. */
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400211void locks_free_lock(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Miklos Szeredi5ce29642006-03-31 02:30:29 -0800213 BUG_ON(waitqueue_active(&fl->fl_wait));
214 BUG_ON(!list_empty(&fl->fl_block));
215 BUG_ON(!list_empty(&fl->fl_link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Trond Myklebust47831f32006-03-20 13:44:05 -0500217 locks_release_private(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 kmem_cache_free(filelock_cache, fl);
219}
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400220EXPORT_SYMBOL(locks_free_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222void locks_init_lock(struct file_lock *fl)
223{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200224 memset(fl, 0, sizeof(struct file_lock));
225 locks_init_lock_heads(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228EXPORT_SYMBOL(locks_init_lock);
229
Trond Myklebust47831f32006-03-20 13:44:05 -0500230static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
231{
232 if (fl->fl_ops) {
233 if (fl->fl_ops->fl_copy_lock)
234 fl->fl_ops->fl_copy_lock(new, fl);
235 new->fl_ops = fl->fl_ops;
236 }
Christoph Hellwigbb8430a2010-10-31 08:35:31 -0400237 if (fl->fl_lmops)
Trond Myklebust47831f32006-03-20 13:44:05 -0500238 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*
242 * Initialize a new lock from an existing file_lock structure.
243 */
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400244void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 new->fl_owner = fl->fl_owner;
247 new->fl_pid = fl->fl_pid;
Trond Myklebust09969052006-03-20 13:44:38 -0500248 new->fl_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 new->fl_flags = fl->fl_flags;
250 new->fl_type = fl->fl_type;
251 new->fl_start = fl->fl_start;
252 new->fl_end = fl->fl_end;
Trond Myklebust09969052006-03-20 13:44:38 -0500253 new->fl_ops = NULL;
254 new->fl_lmops = NULL;
255}
Roland Dreier3dd7b712008-04-25 15:32:51 -0700256EXPORT_SYMBOL(__locks_copy_lock);
Trond Myklebust09969052006-03-20 13:44:38 -0500257
258void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
259{
260 locks_release_private(new);
261
262 __locks_copy_lock(new, fl);
263 new->fl_file = fl->fl_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 new->fl_ops = fl->fl_ops;
265 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500266
267 locks_copy_private(new, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270EXPORT_SYMBOL(locks_copy_lock);
271
272static inline int flock_translate_cmd(int cmd) {
273 if (cmd & LOCK_MAND)
274 return cmd & (LOCK_MAND | LOCK_RW);
275 switch (cmd) {
276 case LOCK_SH:
277 return F_RDLCK;
278 case LOCK_EX:
279 return F_WRLCK;
280 case LOCK_UN:
281 return F_UNLCK;
282 }
283 return -EINVAL;
284}
285
286/* Fill in a file_lock structure with an appropriate FLOCK lock. */
287static int flock_make_lock(struct file *filp, struct file_lock **lock,
288 unsigned int cmd)
289{
290 struct file_lock *fl;
291 int type = flock_translate_cmd(cmd);
292 if (type < 0)
293 return type;
294
295 fl = locks_alloc_lock();
296 if (fl == NULL)
297 return -ENOMEM;
298
299 fl->fl_file = filp;
300 fl->fl_pid = current->tgid;
301 fl->fl_flags = FL_FLOCK;
302 fl->fl_type = type;
303 fl->fl_end = OFFSET_MAX;
304
305 *lock = fl;
306 return 0;
307}
308
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400309static int assign_type(struct file_lock *fl, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 switch (type) {
312 case F_RDLCK:
313 case F_WRLCK:
314 case F_UNLCK:
315 fl->fl_type = type;
316 break;
317 default:
318 return -EINVAL;
319 }
320 return 0;
321}
322
323/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
324 * style lock.
325 */
326static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
327 struct flock *l)
328{
329 off_t start, end;
330
331 switch (l->l_whence) {
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700332 case SEEK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 start = 0;
334 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700335 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 start = filp->f_pos;
337 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700338 case SEEK_END:
Al Viro496ad9a2013-01-23 17:07:38 -0500339 start = i_size_read(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
341 default:
342 return -EINVAL;
343 }
344
345 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
346 POSIX-2001 defines it. */
347 start += l->l_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (start < 0)
349 return -EINVAL;
Trond Myklebust4c780a42005-10-18 14:20:21 -0700350 fl->fl_end = OFFSET_MAX;
351 if (l->l_len > 0) {
352 end = start + l->l_len - 1;
353 fl->fl_end = end;
354 } else if (l->l_len < 0) {
355 end = start - 1;
356 fl->fl_end = end;
357 start += l->l_len;
358 if (start < 0)
359 return -EINVAL;
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 fl->fl_start = start; /* we record the absolute position */
Trond Myklebust4c780a42005-10-18 14:20:21 -0700362 if (fl->fl_end < fl->fl_start)
363 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 fl->fl_owner = current->files;
366 fl->fl_pid = current->tgid;
367 fl->fl_file = filp;
368 fl->fl_flags = FL_POSIX;
369 fl->fl_ops = NULL;
370 fl->fl_lmops = NULL;
371
372 return assign_type(fl, l->l_type);
373}
374
375#if BITS_PER_LONG == 32
376static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
377 struct flock64 *l)
378{
379 loff_t start;
380
381 switch (l->l_whence) {
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700382 case SEEK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 start = 0;
384 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700385 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 start = filp->f_pos;
387 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700388 case SEEK_END:
Al Viro496ad9a2013-01-23 17:07:38 -0500389 start = i_size_read(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 break;
391 default:
392 return -EINVAL;
393 }
394
Trond Myklebust4c780a42005-10-18 14:20:21 -0700395 start += l->l_start;
396 if (start < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return -EINVAL;
Trond Myklebust4c780a42005-10-18 14:20:21 -0700398 fl->fl_end = OFFSET_MAX;
399 if (l->l_len > 0) {
400 fl->fl_end = start + l->l_len - 1;
401 } else if (l->l_len < 0) {
402 fl->fl_end = start - 1;
403 start += l->l_len;
404 if (start < 0)
405 return -EINVAL;
406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 fl->fl_start = start; /* we record the absolute position */
Trond Myklebust4c780a42005-10-18 14:20:21 -0700408 if (fl->fl_end < fl->fl_start)
409 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 fl->fl_owner = current->files;
412 fl->fl_pid = current->tgid;
413 fl->fl_file = filp;
414 fl->fl_flags = FL_POSIX;
415 fl->fl_ops = NULL;
416 fl->fl_lmops = NULL;
417
Namhyung Kimf32cb532011-01-17 15:45:59 +0900418 return assign_type(fl, l->l_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420#endif
421
422/* default lease lock manager operations */
423static void lease_break_callback(struct file_lock *fl)
424{
425 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
426}
427
Alexey Dobriyan7b021962009-09-21 17:01:12 -0700428static const struct lock_manager_operations lease_manager_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400429 .lm_break = lease_break_callback,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400430 .lm_change = lease_modify,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431};
432
433/*
434 * Initialize a lease, use the default lock manager operations
435 */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400436static int lease_init(struct file *filp, long type, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 {
Trond Myklebust75dff552006-05-07 23:02:42 -0400438 if (assign_type(fl, type) != 0)
439 return -EINVAL;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 fl->fl_owner = current->files;
442 fl->fl_pid = current->tgid;
443
444 fl->fl_file = filp;
445 fl->fl_flags = FL_LEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 fl->fl_start = 0;
447 fl->fl_end = OFFSET_MAX;
448 fl->fl_ops = NULL;
449 fl->fl_lmops = &lease_manager_ops;
450 return 0;
451}
452
453/* Allocate a file_lock initialised to this type of lease */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400454static struct file_lock *lease_alloc(struct file *filp, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct file_lock *fl = locks_alloc_lock();
Trond Myklebust75dff552006-05-07 23:02:42 -0400457 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (fl == NULL)
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500460 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 error = lease_init(filp, type, fl);
Trond Myklebust75dff552006-05-07 23:02:42 -0400463 if (error) {
464 locks_free_lock(fl);
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500465 return ERR_PTR(error);
Trond Myklebust75dff552006-05-07 23:02:42 -0400466 }
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500467 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470/* Check if two locks overlap each other.
471 */
472static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
473{
474 return ((fl1->fl_end >= fl2->fl_start) &&
475 (fl2->fl_end >= fl1->fl_start));
476}
477
478/*
479 * Check whether two locks have the same owner.
480 */
Matt Mackall33443c42006-01-08 01:05:22 -0800481static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400483 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return fl2->fl_lmops == fl1->fl_lmops &&
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400485 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return fl1->fl_owner == fl2->fl_owner;
487}
488
Jeff Layton88974692013-06-21 08:58:14 -0400489static inline void
490locks_insert_global_locks(struct file_lock *fl)
491{
492 list_add_tail(&fl->fl_link, &file_lock_list);
493}
494
495static inline void
496locks_delete_global_locks(struct file_lock *fl)
497{
498 list_del_init(&fl->fl_link);
499}
500
501static inline void
502locks_insert_global_blocked(struct file_lock *waiter)
503{
504 list_add(&waiter->fl_link, &blocked_list);
505}
506
507static inline void
508locks_delete_global_blocked(struct file_lock *waiter)
509{
510 list_del_init(&waiter->fl_link);
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* Remove waiter from blocker's block list.
514 * When blocker ends up pointing to itself then the list is empty.
515 */
Matt Mackall33443c42006-01-08 01:05:22 -0800516static void __locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Jeff Layton88974692013-06-21 08:58:14 -0400518 locks_delete_global_blocked(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 list_del_init(&waiter->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 waiter->fl_next = NULL;
521}
522
523/*
524 */
Jeff Layton1a9e64a2013-06-21 08:58:10 -0400525static void locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200527 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 __locks_delete_block(waiter);
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200529 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532/* Insert waiter into blocker's block list.
533 * We use a circular list so that processes can be easily woken up in
534 * the order they blocked. The documentation doesn't require this but
535 * it seems like the reasonable thing to do.
536 */
537static void locks_insert_block(struct file_lock *blocker,
538 struct file_lock *waiter)
539{
J. Bruce Fields6dc0fe82006-03-26 01:37:24 -0800540 BUG_ON(!list_empty(&waiter->fl_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 waiter->fl_next = blocker;
Jeff Layton88974692013-06-21 08:58:14 -0400542 list_add_tail(&waiter->fl_block, &blocker->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (IS_POSIX(blocker))
Jeff Layton88974692013-06-21 08:58:14 -0400544 locks_insert_global_blocked(request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Jeff Layton1cb36012013-06-21 08:58:12 -0400547/*
548 * Wake up processes blocked waiting for blocker.
549 *
550 * Must be called with the file_lock_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
552static void locks_wake_up_blocks(struct file_lock *blocker)
553{
554 while (!list_empty(&blocker->fl_block)) {
Pavel Emelyanovf0c1cd02007-09-19 16:44:07 +0400555 struct file_lock *waiter;
556
557 waiter = list_first_entry(&blocker->fl_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct file_lock, fl_block);
559 __locks_delete_block(waiter);
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400560 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
561 waiter->fl_lmops->lm_notify(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 else
563 wake_up(&waiter->fl_wait);
564 }
565}
566
567/* Insert file lock fl into an inode's lock list at the position indicated
568 * by pos. At the same time add the lock to the global file lock list.
569 */
570static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
571{
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000572 fl->fl_nspid = get_pid(task_tgid(current));
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* insert into file's list */
575 fl->fl_next = *pos;
576 *pos = fl;
Jeff Layton88974692013-06-21 08:58:14 -0400577
578 locks_insert_global_locks(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581/*
582 * Delete a lock and then free it.
583 * Wake up processes that are blocked waiting for this lock,
584 * notify the FS that the lock has been cleared and
585 * finally free the lock.
586 */
587static void locks_delete_lock(struct file_lock **thisfl_p)
588{
589 struct file_lock *fl = *thisfl_p;
590
Jeff Layton88974692013-06-21 08:58:14 -0400591 locks_delete_global_locks(fl);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 *thisfl_p = fl->fl_next;
594 fl->fl_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000596 if (fl->fl_nspid) {
597 put_pid(fl->fl_nspid);
598 fl->fl_nspid = NULL;
599 }
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 locks_wake_up_blocks(fl);
602 locks_free_lock(fl);
603}
604
605/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
606 * checks for shared/exclusive status of overlapping locks.
607 */
608static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
609{
610 if (sys_fl->fl_type == F_WRLCK)
611 return 1;
612 if (caller_fl->fl_type == F_WRLCK)
613 return 1;
614 return 0;
615}
616
617/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
618 * checking before calling the locks_conflict().
619 */
620static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
621{
622 /* POSIX locks owned by the same process do not conflict with
623 * each other.
624 */
625 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
626 return (0);
627
628 /* Check whether they overlap */
629 if (!locks_overlap(caller_fl, sys_fl))
630 return 0;
631
632 return (locks_conflict(caller_fl, sys_fl));
633}
634
635/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
636 * checking before calling the locks_conflict().
637 */
638static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
639{
640 /* FLOCK locks referring to the same filp do not conflict with
641 * each other.
642 */
643 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
644 return (0);
645 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
646 return 0;
647
648 return (locks_conflict(caller_fl, sys_fl));
649}
650
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400651void
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500652posix_test_lock(struct file *filp, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 struct file_lock *cfl;
655
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200656 lock_flocks();
Al Viro496ad9a2013-01-23 17:07:38 -0500657 for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!IS_POSIX(cfl))
659 continue;
J. Bruce Fieldsb842e242007-05-10 19:02:07 -0400660 if (posix_locks_conflict(fl, cfl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 }
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000663 if (cfl) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500664 __locks_copy_lock(fl, cfl);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000665 if (cfl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800666 fl->fl_pid = pid_vnr(cfl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000667 } else
J. Bruce Fields129a84d2007-05-10 18:38:43 -0400668 fl->fl_type = F_UNLCK;
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200669 unlock_flocks();
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400670 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672EXPORT_SYMBOL(posix_test_lock);
673
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400674/*
675 * Deadlock detection:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400677 * We attempt to detect deadlocks that are due purely to posix file
678 * locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400680 * We assume that a task can be waiting for at most one lock at a time.
681 * So for any acquired lock, the process holding that lock may be
682 * waiting on at most one other lock. That lock in turns may be held by
683 * someone waiting for at most one other lock. Given a requested lock
684 * caller_fl which is about to wait for a conflicting lock block_fl, we
685 * follow this chain of waiters to ensure we are not about to create a
686 * cycle.
J. Bruce Fields97855b42007-10-30 11:20:02 -0400687 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400688 * Since we do this before we ever put a process to sleep on a lock, we
689 * are ensured that there is never a cycle; that is what guarantees that
690 * the while() loop in posix_locks_deadlock() eventually completes.
691 *
692 * Note: the above assumption may not be true when handling lock
693 * requests from a broken NFS client. It may also fail in the presence
694 * of tasks (such as posix threads) sharing the same open file table.
695 *
696 * To handle those cases, we just bail out after a few iterations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
J. Bruce Fields97855b42007-10-30 11:20:02 -0400698
699#define MAX_DEADLK_ITERATIONS 10
700
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400701/* Find a lock that the owner of the given block_fl is blocking on. */
702static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
703{
704 struct file_lock *fl;
705
706 list_for_each_entry(fl, &blocked_list, fl_link) {
707 if (posix_same_owner(fl, block_fl))
708 return fl->fl_next;
709 }
710 return NULL;
711}
712
Adrian Bunkb0904e12006-06-23 02:05:13 -0700713static int posix_locks_deadlock(struct file_lock *caller_fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct file_lock *block_fl)
715{
J. Bruce Fields97855b42007-10-30 11:20:02 -0400716 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400718 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
719 if (i++ > MAX_DEADLK_ITERATIONS)
720 return 0;
721 if (posix_same_owner(caller_fl, block_fl))
722 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724 return 0;
725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
J. Bruce Fields02888f42007-09-12 15:45:07 -0400728 * after any leases, but before any posix locks.
Trond Myklebustf475ae92006-06-29 16:38:32 -0400729 *
730 * Note that if called with an FL_EXISTS argument, the caller may determine
731 * whether or not a lock was successfully freed by testing the return
732 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Trond Myklebust993dfa82006-03-31 02:30:55 -0800734static int flock_lock_file(struct file *filp, struct file_lock *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Trond Myklebust993dfa82006-03-31 02:30:55 -0800736 struct file_lock *new_fl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct file_lock **before;
Al Viro496ad9a2013-01-23 17:07:38 -0500738 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int error = 0;
740 int found = 0;
741
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200742 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
743 new_fl = locks_alloc_lock();
744 if (!new_fl)
745 return -ENOMEM;
746 }
747
748 lock_flocks();
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400749 if (request->fl_flags & FL_ACCESS)
750 goto find_conflict;
Pavel Emelyanov84d535a2007-09-11 16:38:13 +0400751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 for_each_lock(inode, before) {
753 struct file_lock *fl = *before;
754 if (IS_POSIX(fl))
755 break;
756 if (IS_LEASE(fl))
757 continue;
758 if (filp != fl->fl_file)
759 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800760 if (request->fl_type == fl->fl_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 goto out;
762 found = 1;
763 locks_delete_lock(before);
764 break;
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Trond Myklebustf475ae92006-06-29 16:38:32 -0400767 if (request->fl_type == F_UNLCK) {
768 if ((request->fl_flags & FL_EXISTS) && !found)
769 error = -ENOENT;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800770 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -0400771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /*
774 * If a higher-priority process was blocked on the old file lock,
775 * give it the opportunity to lock the file.
776 */
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200777 if (found) {
778 unlock_flocks();
Frederic Weisbeckerdef01bc2009-07-16 15:44:29 +0200779 cond_resched();
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200780 lock_flocks();
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400783find_conflict:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 for_each_lock(inode, before) {
785 struct file_lock *fl = *before;
786 if (IS_POSIX(fl))
787 break;
788 if (IS_LEASE(fl))
789 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800790 if (!flock_locks_conflict(request, fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 continue;
792 error = -EAGAIN;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700793 if (!(request->fl_flags & FL_SLEEP))
794 goto out;
795 error = FILE_LOCK_DEFERRED;
796 locks_insert_block(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto out;
798 }
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400799 if (request->fl_flags & FL_ACCESS)
800 goto out;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800801 locks_copy_lock(new_fl, request);
Pavel Emelyanov0e2f6db2007-09-11 15:24:01 -0700802 locks_insert_lock(before, new_fl);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800803 new_fl = NULL;
Kirill Korotaev9cedc192006-06-14 17:59:35 +0400804 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200807 unlock_flocks();
Trond Myklebust993dfa82006-03-31 02:30:55 -0800808 if (new_fl)
809 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return error;
811}
812
Marc Eshel150b3932007-01-18 16:15:35 -0500813static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct file_lock *fl;
Miklos Szeredi39005d02006-06-23 02:05:10 -0700816 struct file_lock *new_fl = NULL;
817 struct file_lock *new_fl2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct file_lock *left = NULL;
819 struct file_lock *right = NULL;
820 struct file_lock **before;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400821 int error;
822 bool added = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /*
825 * We may need two file_lock structures for this operation,
826 * so we get them in advance to avoid races.
Miklos Szeredi39005d02006-06-23 02:05:10 -0700827 *
828 * In some cases we can be sure, that no new locks will be needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Miklos Szeredi39005d02006-06-23 02:05:10 -0700830 if (!(request->fl_flags & FL_ACCESS) &&
831 (request->fl_type != F_UNLCK ||
832 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
833 new_fl = locks_alloc_lock();
834 new_fl2 = locks_alloc_lock();
835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200837 lock_flocks();
Jeff Layton1cb36012013-06-21 08:58:12 -0400838 /*
839 * New lock request. Walk all POSIX locks and look for conflicts. If
840 * there are any, either return error or put the request on the
841 * blocker's list of waiters and the global blocked_list.
842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (request->fl_type != F_UNLCK) {
844 for_each_lock(inode, before) {
J. Bruce Fields526985b2006-11-14 16:54:36 -0500845 fl = *before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (!IS_POSIX(fl))
847 continue;
848 if (!posix_locks_conflict(request, fl))
849 continue;
Andy Adamson5842add2006-03-26 01:37:26 -0800850 if (conflock)
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400851 __locks_copy_lock(conflock, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 error = -EAGAIN;
853 if (!(request->fl_flags & FL_SLEEP))
854 goto out;
855 error = -EDEADLK;
856 if (posix_locks_deadlock(request, fl))
857 goto out;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700858 error = FILE_LOCK_DEFERRED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 locks_insert_block(fl, request);
860 goto out;
861 }
862 }
863
864 /* If we're just looking for a conflict, we're done. */
865 error = 0;
866 if (request->fl_flags & FL_ACCESS)
867 goto out;
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * Find the first old lock with the same owner as the new lock.
871 */
872
873 before = &inode->i_flock;
874
875 /* First skip locks owned by other processes. */
876 while ((fl = *before) && (!IS_POSIX(fl) ||
877 !posix_same_owner(request, fl))) {
878 before = &fl->fl_next;
879 }
880
Jeff Layton1cb36012013-06-21 08:58:12 -0400881 /* Process locks with this owner. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 while ((fl = *before) && posix_same_owner(request, fl)) {
883 /* Detect adjacent or overlapping regions (if same lock type)
884 */
885 if (request->fl_type == fl->fl_type) {
Olaf Kirch449231d2005-08-25 16:25:35 -0700886 /* In all comparisons of start vs end, use
887 * "start - 1" rather than "end + 1". If end
888 * is OFFSET_MAX, end + 1 will become negative.
889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (fl->fl_end < request->fl_start - 1)
891 goto next_lock;
892 /* If the next lock in the list has entirely bigger
893 * addresses than the new one, insert the lock here.
894 */
Olaf Kirch449231d2005-08-25 16:25:35 -0700895 if (fl->fl_start - 1 > request->fl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 break;
897
898 /* If we come here, the new and old lock are of the
899 * same type and adjacent or overlapping. Make one
900 * lock yielding from the lower start address of both
901 * locks to the higher end address.
902 */
903 if (fl->fl_start > request->fl_start)
904 fl->fl_start = request->fl_start;
905 else
906 request->fl_start = fl->fl_start;
907 if (fl->fl_end < request->fl_end)
908 fl->fl_end = request->fl_end;
909 else
910 request->fl_end = fl->fl_end;
911 if (added) {
912 locks_delete_lock(before);
913 continue;
914 }
915 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400916 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918 else {
919 /* Processing for different lock types is a bit
920 * more complex.
921 */
922 if (fl->fl_end < request->fl_start)
923 goto next_lock;
924 if (fl->fl_start > request->fl_end)
925 break;
926 if (request->fl_type == F_UNLCK)
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400927 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (fl->fl_start < request->fl_start)
929 left = fl;
930 /* If the next lock in the list has a higher end
931 * address than the new one, insert the new one here.
932 */
933 if (fl->fl_end > request->fl_end) {
934 right = fl;
935 break;
936 }
937 if (fl->fl_start >= request->fl_start) {
938 /* The new lock completely replaces an old
939 * one (This may happen several times).
940 */
941 if (added) {
942 locks_delete_lock(before);
943 continue;
944 }
945 /* Replace the old lock with the new one.
946 * Wake up anybody waiting for the old one,
947 * as the change in lock type might satisfy
948 * their needs.
949 */
950 locks_wake_up_blocks(fl);
951 fl->fl_start = request->fl_start;
952 fl->fl_end = request->fl_end;
953 fl->fl_type = request->fl_type;
Trond Myklebust47831f32006-03-20 13:44:05 -0500954 locks_release_private(fl);
955 locks_copy_private(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400957 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959 }
960 /* Go on to next lock.
961 */
962 next_lock:
963 before = &fl->fl_next;
964 }
965
Miklos Szeredi0d9a4902006-06-23 02:05:09 -0700966 /*
Jeff Layton1cb36012013-06-21 08:58:12 -0400967 * The above code only modifies existing locks in case of merging or
968 * replacing. If new lock(s) need to be inserted all modifications are
969 * done below this, so it's safe yet to bail out.
Miklos Szeredi0d9a4902006-06-23 02:05:09 -0700970 */
971 error = -ENOLCK; /* "no luck" */
972 if (right && left == right && !new_fl2)
973 goto out;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 error = 0;
976 if (!added) {
Trond Myklebustf475ae92006-06-29 16:38:32 -0400977 if (request->fl_type == F_UNLCK) {
978 if (request->fl_flags & FL_EXISTS)
979 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -0400981 }
Miklos Szeredi0d9a4902006-06-23 02:05:09 -0700982
983 if (!new_fl) {
984 error = -ENOLCK;
985 goto out;
986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 locks_copy_lock(new_fl, request);
988 locks_insert_lock(before, new_fl);
989 new_fl = NULL;
990 }
991 if (right) {
992 if (left == right) {
993 /* The new lock breaks the old one in two pieces,
994 * so we have to use the second new lock.
995 */
996 left = new_fl2;
997 new_fl2 = NULL;
998 locks_copy_lock(left, right);
999 locks_insert_lock(before, left);
1000 }
1001 right->fl_start = request->fl_end + 1;
1002 locks_wake_up_blocks(right);
1003 }
1004 if (left) {
1005 left->fl_end = request->fl_start - 1;
1006 locks_wake_up_blocks(left);
1007 }
1008 out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001009 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * Free any unused locks.
1012 */
1013 if (new_fl)
1014 locks_free_lock(new_fl);
1015 if (new_fl2)
1016 locks_free_lock(new_fl2);
1017 return error;
1018}
1019
1020/**
1021 * posix_lock_file - Apply a POSIX-style lock to a file
1022 * @filp: The file to apply the lock to
1023 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001024 * @conflock: Place to return a copy of the conflicting lock, if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 *
1026 * Add a POSIX style lock to a file.
1027 * We merge adjacent & overlapping locks whenever possible.
1028 * POSIX locks are sorted by owner task, then by starting address
Trond Myklebustf475ae92006-06-29 16:38:32 -04001029 *
1030 * Note that if called with an FL_EXISTS argument, the caller may determine
1031 * whether or not a lock was successfully freed by testing the return
1032 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
Marc Eshel150b3932007-01-18 16:15:35 -05001034int posix_lock_file(struct file *filp, struct file_lock *fl,
Andy Adamson5842add2006-03-26 01:37:26 -08001035 struct file_lock *conflock)
1036{
Al Viro496ad9a2013-01-23 17:07:38 -05001037 return __posix_lock_file(file_inode(filp), fl, conflock);
Andy Adamson5842add2006-03-26 01:37:26 -08001038}
Marc Eshel150b3932007-01-18 16:15:35 -05001039EXPORT_SYMBOL(posix_lock_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041/**
1042 * posix_lock_file_wait - Apply a POSIX-style lock to a file
1043 * @filp: The file to apply the lock to
1044 * @fl: The lock to be applied
1045 *
1046 * Add a POSIX style lock to a file.
1047 * We merge adjacent & overlapping locks whenever possible.
1048 * POSIX locks are sorted by owner task, then by starting address
1049 */
1050int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1051{
1052 int error;
1053 might_sleep ();
1054 for (;;) {
Marc Eshel150b3932007-01-18 16:15:35 -05001055 error = posix_lock_file(filp, fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001056 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
1058 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1059 if (!error)
1060 continue;
1061
1062 locks_delete_block(fl);
1063 break;
1064 }
1065 return error;
1066}
1067EXPORT_SYMBOL(posix_lock_file_wait);
1068
1069/**
1070 * locks_mandatory_locked - Check for an active lock
1071 * @inode: the file to check
1072 *
1073 * Searches the inode's list of locks to find any POSIX locks which conflict.
1074 * This function is called from locks_verify_locked() only.
1075 */
1076int locks_mandatory_locked(struct inode *inode)
1077{
1078 fl_owner_t owner = current->files;
1079 struct file_lock *fl;
1080
1081 /*
1082 * Search the lock list for this inode for any POSIX locks.
1083 */
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001084 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1086 if (!IS_POSIX(fl))
1087 continue;
1088 if (fl->fl_owner != owner)
1089 break;
1090 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001091 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return fl ? -EAGAIN : 0;
1093}
1094
1095/**
1096 * locks_mandatory_area - Check for a conflicting lock
1097 * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
1098 * for shared
1099 * @inode: the file to check
1100 * @filp: how the file was opened (if it was)
1101 * @offset: start of area to check
1102 * @count: length of area to check
1103 *
1104 * Searches the inode's list of locks to find any POSIX locks which conflict.
1105 * This function is called from rw_verify_area() and
1106 * locks_verify_truncate().
1107 */
1108int locks_mandatory_area(int read_write, struct inode *inode,
1109 struct file *filp, loff_t offset,
1110 size_t count)
1111{
1112 struct file_lock fl;
1113 int error;
1114
1115 locks_init_lock(&fl);
1116 fl.fl_owner = current->files;
1117 fl.fl_pid = current->tgid;
1118 fl.fl_file = filp;
1119 fl.fl_flags = FL_POSIX | FL_ACCESS;
1120 if (filp && !(filp->f_flags & O_NONBLOCK))
1121 fl.fl_flags |= FL_SLEEP;
1122 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
1123 fl.fl_start = offset;
1124 fl.fl_end = offset + count - 1;
1125
1126 for (;;) {
Marc Eshel150b3932007-01-18 16:15:35 -05001127 error = __posix_lock_file(inode, &fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001128 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 break;
1130 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1131 if (!error) {
1132 /*
1133 * If we've been sleeping someone might have
1134 * changed the permissions behind our back.
1135 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001136 if (__mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 continue;
1138 }
1139
1140 locks_delete_block(&fl);
1141 break;
1142 }
1143
1144 return error;
1145}
1146
1147EXPORT_SYMBOL(locks_mandatory_area);
1148
J. Bruce Fields778fc542011-07-26 18:25:49 -04001149static void lease_clear_pending(struct file_lock *fl, int arg)
1150{
1151 switch (arg) {
1152 case F_UNLCK:
1153 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1154 /* fall through: */
1155 case F_RDLCK:
1156 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1157 }
1158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/* We already had a lease on this file; just change its type */
1161int lease_modify(struct file_lock **before, int arg)
1162{
1163 struct file_lock *fl = *before;
1164 int error = assign_type(fl, arg);
1165
1166 if (error)
1167 return error;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001168 lease_clear_pending(fl, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 locks_wake_up_blocks(fl);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001170 if (arg == F_UNLCK) {
1171 struct file *filp = fl->fl_file;
1172
1173 f_delown(filp);
1174 filp->f_owner.signum = 0;
J. Bruce Fields96d6d592012-07-27 16:18:00 -04001175 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1176 if (fl->fl_fasync != NULL) {
1177 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1178 fl->fl_fasync = NULL;
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 locks_delete_lock(before);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return 0;
1183}
1184
1185EXPORT_SYMBOL(lease_modify);
1186
J. Bruce Fields778fc542011-07-26 18:25:49 -04001187static bool past_time(unsigned long then)
1188{
1189 if (!then)
1190 /* 0 is a special value meaning "this never expires": */
1191 return false;
1192 return time_after(jiffies, then);
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static void time_out_leases(struct inode *inode)
1196{
1197 struct file_lock **before;
1198 struct file_lock *fl;
1199
1200 before = &inode->i_flock;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04001201 while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001202 if (past_time(fl->fl_downgrade_time))
1203 lease_modify(before, F_RDLCK);
1204 if (past_time(fl->fl_break_time))
1205 lease_modify(before, F_UNLCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (fl == *before) /* lease_modify may have freed fl */
1207 before = &fl->fl_next;
1208 }
1209}
1210
1211/**
1212 * __break_lease - revoke all outstanding leases on file
1213 * @inode: the inode of the file to return
1214 * @mode: the open mode (read or write)
1215 *
david m. richter87250dd2007-05-09 16:10:27 -04001216 * break_lease (inlined for speed) has checked there already is at least
1217 * some kind of lock (maybe a lease) on this file. Leases are broken on
1218 * a call to open() or truncate(). This function can sleep unless you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 * specified %O_NONBLOCK to your open().
1220 */
1221int __break_lease(struct inode *inode, unsigned int mode)
1222{
J. Bruce Fields778fc542011-07-26 18:25:49 -04001223 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 struct file_lock *new_fl, *flock;
1225 struct file_lock *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 unsigned long break_time;
1227 int i_have_this_lease = 0;
Al Viro8737c932009-12-24 06:47:55 -05001228 int want_write = (mode & O_ACCMODE) != O_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Al Viro8737c932009-12-24 06:47:55 -05001230 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001231 if (IS_ERR(new_fl))
1232 return PTR_ERR(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001234 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 time_out_leases(inode);
1237
1238 flock = inode->i_flock;
1239 if ((flock == NULL) || !IS_LEASE(flock))
1240 goto out;
1241
J. Bruce Fields778fc542011-07-26 18:25:49 -04001242 if (!locks_conflict(flock, new_fl))
1243 goto out;
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
1246 if (fl->fl_owner == current->files)
1247 i_have_this_lease = 1;
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 break_time = 0;
1250 if (lease_break_time > 0) {
1251 break_time = jiffies + lease_break_time * HZ;
1252 if (break_time == 0)
1253 break_time++; /* so that 0 means no break time */
1254 }
1255
1256 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001257 if (want_write) {
1258 if (fl->fl_flags & FL_UNLOCK_PENDING)
1259 continue;
1260 fl->fl_flags |= FL_UNLOCK_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 fl->fl_break_time = break_time;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001262 } else {
1263 if (lease_breaking(flock))
1264 continue;
1265 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1266 fl->fl_downgrade_time = break_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
J. Bruce Fields778fc542011-07-26 18:25:49 -04001268 fl->fl_lmops->lm_break(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
1271 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1272 error = -EWOULDBLOCK;
1273 goto out;
1274 }
1275
1276restart:
1277 break_time = flock->fl_break_time;
1278 if (break_time != 0) {
1279 break_time -= jiffies;
1280 if (break_time == 0)
1281 break_time++;
1282 }
Matthew Wilcox4321e012008-01-14 21:28:30 -07001283 locks_insert_block(flock, new_fl);
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001284 unlock_flocks();
Matthew Wilcox4321e012008-01-14 21:28:30 -07001285 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1286 !new_fl->fl_next, break_time);
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001287 lock_flocks();
Matthew Wilcox4321e012008-01-14 21:28:30 -07001288 __locks_delete_block(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (error >= 0) {
1290 if (error == 0)
1291 time_out_leases(inode);
J. Bruce Fields778fc542011-07-26 18:25:49 -04001292 /*
1293 * Wait for the next conflicting lease that has not been
1294 * broken yet
1295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1297 flock = flock->fl_next) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001298 if (locks_conflict(new_fl, flock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 goto restart;
1300 }
1301 error = 0;
1302 }
1303
1304out:
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001305 unlock_flocks();
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001306 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return error;
1308}
1309
1310EXPORT_SYMBOL(__break_lease);
1311
1312/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001313 * lease_get_mtime - get the last modified time of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 * @inode: the inode
1315 * @time: pointer to a timespec which will contain the last modified time
1316 *
1317 * This is to force NFS clients to flush their caches for files with
1318 * exclusive leases. The justification is that if someone has an
Randy Dunlapa6b91912008-03-19 17:01:00 -07001319 * exclusive lease, then they could be modifying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 */
1321void lease_get_mtime(struct inode *inode, struct timespec *time)
1322{
1323 struct file_lock *flock = inode->i_flock;
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04001324 if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 *time = current_fs_time(inode->i_sb);
1326 else
1327 *time = inode->i_mtime;
1328}
1329
1330EXPORT_SYMBOL(lease_get_mtime);
1331
1332/**
1333 * fcntl_getlease - Enquire what lease is currently active
1334 * @filp: the file
1335 *
1336 * The value returned by this function will be one of
1337 * (if no lease break is pending):
1338 *
1339 * %F_RDLCK to indicate a shared lease is held.
1340 *
1341 * %F_WRLCK to indicate an exclusive lease is held.
1342 *
1343 * %F_UNLCK to indicate no lease is held.
1344 *
1345 * (if a lease break is pending):
1346 *
1347 * %F_RDLCK to indicate an exclusive lease needs to be
1348 * changed to a shared lease (or removed).
1349 *
1350 * %F_UNLCK to indicate the lease needs to be removed.
1351 *
1352 * XXX: sfr & willy disagree over whether F_INPROGRESS
1353 * should be returned to userspace.
1354 */
1355int fcntl_getlease(struct file *filp)
1356{
1357 struct file_lock *fl;
1358 int type = F_UNLCK;
1359
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001360 lock_flocks();
Al Viro496ad9a2013-01-23 17:07:38 -05001361 time_out_leases(file_inode(filp));
1362 for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 fl = fl->fl_next) {
1364 if (fl->fl_file == filp) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001365 type = target_leasetype(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
1367 }
1368 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001369 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return type;
1371}
1372
Jeff Laytond4f22d12013-06-21 08:58:11 -04001373static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
KAMBAROV, ZAUR7eaae282005-07-07 17:57:06 -07001375 struct file_lock *fl, **before, **my_before = NULL, *lease;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001376 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 struct inode *inode = dentry->d_inode;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001378 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
J. Bruce Fields096657b2010-10-30 17:31:14 -04001380 lease = *flp;
1381
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001382 error = -EAGAIN;
1383 if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
J. Bruce Fields096657b2010-10-30 17:31:14 -04001384 goto out;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001385 if ((arg == F_WRLCK)
1386 && ((dentry->d_count > 1)
1387 || (atomic_read(&inode->i_count) > 1)))
J. Bruce Fields096657b2010-10-30 17:31:14 -04001388 goto out;
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /*
1391 * At this point, we know that if there is an exclusive
1392 * lease on this file, then we hold it on this filp
1393 * (otherwise our open of this file would have blocked).
1394 * And if we are trying to acquire an exclusive lease,
1395 * then the file is not open by anyone (including us)
1396 * except for this filp.
1397 */
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001398 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 for (before = &inode->i_flock;
1400 ((fl = *before) != NULL) && IS_LEASE(fl);
1401 before = &fl->fl_next) {
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001402 if (fl->fl_file == filp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 my_before = before;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001404 continue;
1405 }
1406 /*
1407 * No exclusive leases if someone else has a lease on
1408 * this file:
1409 */
1410 if (arg == F_WRLCK)
1411 goto out;
1412 /*
1413 * Modifying our existing lease is OK, but no getting a
1414 * new lease if someone else is opening for write:
1415 */
1416 if (fl->fl_flags & FL_UNLOCK_PENDING)
1417 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (my_before != NULL) {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001421 error = lease->fl_lmops->lm_change(my_before, arg);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001422 if (!error)
1423 *flp = *my_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 goto out;
1425 }
1426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 error = -EINVAL;
1428 if (!leases_enable)
1429 goto out;
1430
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001431 locks_insert_lock(before, lease);
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434out:
1435 return error;
1436}
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001437
Jeff Laytond4f22d12013-06-21 08:58:11 -04001438static int generic_delete_lease(struct file *filp, struct file_lock **flp)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001439{
1440 struct file_lock *fl, **before;
1441 struct dentry *dentry = filp->f_path.dentry;
1442 struct inode *inode = dentry->d_inode;
1443
1444 for (before = &inode->i_flock;
1445 ((fl = *before) != NULL) && IS_LEASE(fl);
1446 before = &fl->fl_next) {
1447 if (fl->fl_file != filp)
1448 continue;
1449 return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
1450 }
1451 return -EAGAIN;
1452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454/**
1455 * generic_setlease - sets a lease on an open file
1456 * @filp: file pointer
1457 * @arg: type of lease to obtain
1458 * @flp: input - file_lock to use, output - file_lock inserted
1459 *
1460 * The (input) flp->fl_lmops->lm_break function is required
1461 * by break_lease().
1462 *
1463 * Called with file_lock_lock held.
1464 */
1465int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
1466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 struct dentry *dentry = filp->f_path.dentry;
1468 struct inode *inode = dentry->d_inode;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001469 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08001471 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001472 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (!S_ISREG(inode->i_mode))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001474 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 error = security_file_lock(filp, arg);
1476 if (error)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001477 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 time_out_leases(inode);
1480
1481 BUG_ON(!(*flp)->fl_lmops->lm_break);
1482
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001483 switch (arg) {
1484 case F_UNLCK:
1485 return generic_delete_lease(filp, flp);
1486 case F_RDLCK:
1487 case F_WRLCK:
1488 return generic_add_lease(filp, arg, flp);
1489 default:
Dave Jones8d657eb2012-07-13 13:35:36 -04001490 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
Christoph Hellwig0af1a452007-07-31 00:39:22 -07001493EXPORT_SYMBOL(generic_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001495static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1496{
1497 if (filp->f_op && filp->f_op->setlease)
1498 return filp->f_op->setlease(filp, arg, lease);
1499 else
1500 return generic_setlease(filp, arg, lease);
1501}
1502
1503/**
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001504 * vfs_setlease - sets a lease on an open file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * @filp: file pointer
1506 * @arg: type of lease to obtain
1507 * @lease: file_lock to use
1508 *
1509 * Call this to establish a lease on the file.
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001510 * The (*lease)->fl_lmops->lm_break operation must be set; if not,
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001511 * break_lease will oops!
1512 *
1513 * This will call the filesystem's setlease file method, if
1514 * defined. Note that there is no getlease method; instead, the
1515 * filesystem setlease method should call back to setlease() to
1516 * add a lease to the inode's lease list, where fcntl_getlease() can
1517 * find it. Since fcntl_getlease() only reports whether the current
1518 * task holds a lease, a cluster filesystem need only do this for
1519 * leases held by processes on this node.
1520 *
1521 * There is also no break_lease method; filesystems that
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001522 * handle their own leases should break leases themselves from the
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001523 * filesystem's open, create, and (on truncate) setattr methods.
1524 *
1525 * Warning: the only current setlease methods exist only to disable
1526 * leases in certain cases. More vfs changes may be required to
1527 * allow a full filesystem lease implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 */
1529
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001530int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 int error;
1533
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001534 lock_flocks();
1535 error = __vfs_setlease(filp, arg, lease);
1536 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 return error;
1539}
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001540EXPORT_SYMBOL_GPL(vfs_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001542static int do_fcntl_delete_lease(struct file *filp)
1543{
1544 struct file_lock fl, *flp = &fl;
1545
1546 lease_init(filp, F_UNLCK, flp);
1547
1548 return vfs_setlease(filp, F_UNLCK, &flp);
1549}
1550
1551static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001553 struct file_lock *fl, *ret;
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001554 struct fasync_struct *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 int error;
1556
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001557 fl = lease_alloc(filp, arg);
1558 if (IS_ERR(fl))
1559 return PTR_ERR(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001561 new = fasync_alloc();
1562 if (!new) {
1563 locks_free_lock(fl);
1564 return -ENOMEM;
1565 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001566 ret = fl;
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001567 lock_flocks();
J. Bruce Fields8896b932010-11-03 18:09:18 -04001568 error = __vfs_setlease(filp, arg, &ret);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001569 if (error) {
1570 unlock_flocks();
1571 locks_free_lock(fl);
1572 goto out_free_fasync;
1573 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001574 if (ret != fl)
1575 locks_free_lock(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001577 /*
1578 * fasync_insert_entry() returns the old entry if any.
1579 * If there was no old entry, then it used 'new' and
1580 * inserted it into the fasync list. Clear new so that
1581 * we don't release it here.
1582 */
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001583 if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001584 new = NULL;
1585
J. Bruce Fields8896b932010-11-03 18:09:18 -04001586 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001587 unlock_flocks();
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001588
1589out_free_fasync:
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001590 if (new)
1591 fasync_free(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return error;
1593}
1594
1595/**
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001596 * fcntl_setlease - sets a lease on an open file
1597 * @fd: open file descriptor
1598 * @filp: file pointer
1599 * @arg: type of lease to obtain
1600 *
1601 * Call this fcntl to establish a lease on the file.
1602 * Note that you also need to call %F_SETSIG to
1603 * receive a signal when the lease is broken.
1604 */
1605int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1606{
1607 if (arg == F_UNLCK)
1608 return do_fcntl_delete_lease(filp);
1609 return do_fcntl_add_lease(fd, filp, arg);
1610}
1611
1612/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 * flock_lock_file_wait - Apply a FLOCK-style lock to a file
1614 * @filp: The file to apply the lock to
1615 * @fl: The lock to be applied
1616 *
1617 * Add a FLOCK style lock to a file.
1618 */
1619int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
1620{
1621 int error;
1622 might_sleep();
1623 for (;;) {
1624 error = flock_lock_file(filp, fl);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001625 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 break;
1627 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1628 if (!error)
1629 continue;
1630
1631 locks_delete_block(fl);
1632 break;
1633 }
1634 return error;
1635}
1636
1637EXPORT_SYMBOL(flock_lock_file_wait);
1638
1639/**
1640 * sys_flock: - flock() system call.
1641 * @fd: the file descriptor to lock.
1642 * @cmd: the type of lock to apply.
1643 *
1644 * Apply a %FL_FLOCK style lock to an open file descriptor.
1645 * The @cmd can be one of
1646 *
1647 * %LOCK_SH -- a shared lock.
1648 *
1649 * %LOCK_EX -- an exclusive lock.
1650 *
1651 * %LOCK_UN -- remove an existing lock.
1652 *
1653 * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
1654 *
1655 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1656 * processes read and write access respectively.
1657 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001658SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Al Viro2903ff02012-08-28 12:52:22 -04001660 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 struct file_lock *lock;
1662 int can_sleep, unlock;
1663 int error;
1664
1665 error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001666 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto out;
1668
1669 can_sleep = !(cmd & LOCK_NB);
1670 cmd &= ~LOCK_NB;
1671 unlock = (cmd == LOCK_UN);
1672
Al Viroaeb5d722008-09-02 15:28:45 -04001673 if (!unlock && !(cmd & LOCK_MAND) &&
Al Viro2903ff02012-08-28 12:52:22 -04001674 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 goto out_putf;
1676
Al Viro2903ff02012-08-28 12:52:22 -04001677 error = flock_make_lock(f.file, &lock, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (error)
1679 goto out_putf;
1680 if (can_sleep)
1681 lock->fl_flags |= FL_SLEEP;
1682
Al Viro2903ff02012-08-28 12:52:22 -04001683 error = security_file_lock(f.file, lock->fl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (error)
1685 goto out_free;
1686
Al Viro2903ff02012-08-28 12:52:22 -04001687 if (f.file->f_op && f.file->f_op->flock)
1688 error = f.file->f_op->flock(f.file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 (can_sleep) ? F_SETLKW : F_SETLK,
1690 lock);
1691 else
Al Viro2903ff02012-08-28 12:52:22 -04001692 error = flock_lock_file_wait(f.file, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 out_free:
Trond Myklebust993dfa82006-03-31 02:30:55 -08001695 locks_free_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 out_putf:
Al Viro2903ff02012-08-28 12:52:22 -04001698 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 out:
1700 return error;
1701}
1702
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001703/**
1704 * vfs_test_lock - test file byte range lock
1705 * @filp: The file to test lock for
J. Bruce Fields6924c552007-05-11 16:22:50 -04001706 * @fl: The lock to test; also used to hold result
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001707 *
1708 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
1709 * setting conf->fl_type to something other than F_UNLCK.
1710 */
1711int vfs_test_lock(struct file *filp, struct file_lock *fl)
1712{
1713 if (filp->f_op && filp->f_op->lock)
1714 return filp->f_op->lock(filp, F_GETLK, fl);
1715 posix_test_lock(filp, fl);
1716 return 0;
1717}
1718EXPORT_SYMBOL_GPL(vfs_test_lock);
1719
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001720static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1721{
1722 flock->l_pid = fl->fl_pid;
1723#if BITS_PER_LONG == 32
1724 /*
1725 * Make sure we can represent the posix lock via
1726 * legacy 32bit flock.
1727 */
1728 if (fl->fl_start > OFFT_OFFSET_MAX)
1729 return -EOVERFLOW;
1730 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1731 return -EOVERFLOW;
1732#endif
1733 flock->l_start = fl->fl_start;
1734 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1735 fl->fl_end - fl->fl_start + 1;
1736 flock->l_whence = 0;
J. Bruce Fields129a84d2007-05-10 18:38:43 -04001737 flock->l_type = fl->fl_type;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001738 return 0;
1739}
1740
1741#if BITS_PER_LONG == 32
1742static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1743{
1744 flock->l_pid = fl->fl_pid;
1745 flock->l_start = fl->fl_start;
1746 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1747 fl->fl_end - fl->fl_start + 1;
1748 flock->l_whence = 0;
1749 flock->l_type = fl->fl_type;
1750}
1751#endif
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753/* Report the first existing lock that would conflict with l.
1754 * This implements the F_GETLK command of fcntl().
1755 */
1756int fcntl_getlk(struct file *filp, struct flock __user *l)
1757{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001758 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 struct flock flock;
1760 int error;
1761
1762 error = -EFAULT;
1763 if (copy_from_user(&flock, l, sizeof(flock)))
1764 goto out;
1765 error = -EINVAL;
1766 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1767 goto out;
1768
1769 error = flock_to_posix_lock(filp, &file_lock, &flock);
1770 if (error)
1771 goto out;
1772
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001773 error = vfs_test_lock(filp, &file_lock);
1774 if (error)
1775 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001777 flock.l_type = file_lock.fl_type;
1778 if (file_lock.fl_type != F_UNLCK) {
1779 error = posix_lock_to_flock(&flock, &file_lock);
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001780 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783 error = -EFAULT;
1784 if (!copy_to_user(l, &flock, sizeof(flock)))
1785 error = 0;
1786out:
1787 return error;
1788}
1789
Marc Eshel7723ec92007-01-18 15:08:55 -05001790/**
1791 * vfs_lock_file - file byte range lock
1792 * @filp: The file to apply the lock to
1793 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
1794 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001795 * @conf: Place to return a copy of the conflicting lock, if found.
1796 *
1797 * A caller that doesn't care about the conflicting lock may pass NULL
1798 * as the final argument.
1799 *
1800 * If the filesystem defines a private ->lock() method, then @conf will
1801 * be left unchanged; so a caller that cares should initialize it to
1802 * some acceptable default.
Marc Eshel2beb6612006-12-05 23:31:28 -05001803 *
1804 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
1805 * locks, the ->lock() interface may return asynchronously, before the lock has
1806 * been granted or denied by the underlying filesystem, if (and only if)
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001807 * lm_grant is set. Callers expecting ->lock() to return asynchronously
Marc Eshel2beb6612006-12-05 23:31:28 -05001808 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
1809 * the request is for a blocking lock. When ->lock() does return asynchronously,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001810 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
Marc Eshel2beb6612006-12-05 23:31:28 -05001811 * request completes.
1812 * If the request is for non-blocking lock the file system should return
Miklos Szeredibde74e42008-07-25 01:48:57 -07001813 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1814 * with the result. If the request timed out the callback routine will return a
Marc Eshel2beb6612006-12-05 23:31:28 -05001815 * nonzero return code and the file system should release the lock. The file
1816 * system is also responsible to keep a corresponding posix lock when it
1817 * grants a lock so the VFS can find out which locks are locally held and do
1818 * the correct lock cleanup when required.
1819 * The underlying filesystem must not drop the kernel lock or call
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001820 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
Marc Eshel2beb6612006-12-05 23:31:28 -05001821 * return code.
Marc Eshel7723ec92007-01-18 15:08:55 -05001822 */
Marc Eshel150b3932007-01-18 16:15:35 -05001823int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
Marc Eshel7723ec92007-01-18 15:08:55 -05001824{
1825 if (filp->f_op && filp->f_op->lock)
1826 return filp->f_op->lock(filp, cmd, fl);
1827 else
Marc Eshel150b3932007-01-18 16:15:35 -05001828 return posix_lock_file(filp, fl, conf);
Marc Eshel7723ec92007-01-18 15:08:55 -05001829}
1830EXPORT_SYMBOL_GPL(vfs_lock_file);
1831
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001832static int do_lock_file_wait(struct file *filp, unsigned int cmd,
1833 struct file_lock *fl)
1834{
1835 int error;
1836
1837 error = security_file_lock(filp, fl->fl_type);
1838 if (error)
1839 return error;
1840
Miklos Szeredi764c76b2008-07-25 01:48:58 -07001841 for (;;) {
1842 error = vfs_lock_file(filp, cmd, fl, NULL);
1843 if (error != FILE_LOCK_DEFERRED)
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001844 break;
Miklos Szeredi764c76b2008-07-25 01:48:58 -07001845 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1846 if (!error)
1847 continue;
1848
1849 locks_delete_block(fl);
1850 break;
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001851 }
1852
1853 return error;
1854}
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856/* Apply the lock described by l to an open file descriptor.
1857 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1858 */
Peter Staubachc2936212005-07-27 11:45:09 -07001859int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
1860 struct flock __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct file_lock *file_lock = locks_alloc_lock();
1863 struct flock flock;
1864 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04001865 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 int error;
1867
1868 if (file_lock == NULL)
1869 return -ENOLCK;
1870
1871 /*
1872 * This might block, so we do it before checking the inode.
1873 */
1874 error = -EFAULT;
1875 if (copy_from_user(&flock, l, sizeof(flock)))
1876 goto out;
1877
Al Viro496ad9a2013-01-23 17:07:38 -05001878 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 /* Don't allow mandatory locks on files that may be memory mapped
1881 * and shared.
1882 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001883 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 error = -EAGAIN;
1885 goto out;
1886 }
1887
Peter Staubachc2936212005-07-27 11:45:09 -07001888again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 error = flock_to_posix_lock(filp, file_lock, &flock);
1890 if (error)
1891 goto out;
1892 if (cmd == F_SETLKW) {
1893 file_lock->fl_flags |= FL_SLEEP;
1894 }
1895
1896 error = -EBADF;
1897 switch (flock.l_type) {
1898 case F_RDLCK:
1899 if (!(filp->f_mode & FMODE_READ))
1900 goto out;
1901 break;
1902 case F_WRLCK:
1903 if (!(filp->f_mode & FMODE_WRITE))
1904 goto out;
1905 break;
1906 case F_UNLCK:
1907 break;
1908 default:
1909 error = -EINVAL;
1910 goto out;
1911 }
1912
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001913 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Peter Staubachc2936212005-07-27 11:45:09 -07001915 /*
1916 * Attempt to detect a close/fcntl race and recover by
1917 * releasing the lock that was just acquired.
1918 */
Al Viro0b2bac22008-05-06 13:58:34 -04001919 /*
1920 * we need that spin_lock here - it prevents reordering between
1921 * update of inode->i_flock and check for it done in close().
1922 * rcu_read_lock() wouldn't do.
1923 */
1924 spin_lock(&current->files->file_lock);
1925 f = fcheck(fd);
1926 spin_unlock(&current->files->file_lock);
1927 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07001928 flock.l_type = F_UNLCK;
1929 goto again;
1930 }
1931
1932out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 locks_free_lock(file_lock);
1934 return error;
1935}
1936
1937#if BITS_PER_LONG == 32
1938/* Report the first existing lock that would conflict with l.
1939 * This implements the F_GETLK command of fcntl().
1940 */
1941int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
1942{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001943 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 struct flock64 flock;
1945 int error;
1946
1947 error = -EFAULT;
1948 if (copy_from_user(&flock, l, sizeof(flock)))
1949 goto out;
1950 error = -EINVAL;
1951 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1952 goto out;
1953
1954 error = flock64_to_posix_lock(filp, &file_lock, &flock);
1955 if (error)
1956 goto out;
1957
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001958 error = vfs_test_lock(filp, &file_lock);
1959 if (error)
1960 goto out;
1961
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001962 flock.l_type = file_lock.fl_type;
1963 if (file_lock.fl_type != F_UNLCK)
1964 posix_lock_to_flock64(&flock, &file_lock);
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 error = -EFAULT;
1967 if (!copy_to_user(l, &flock, sizeof(flock)))
1968 error = 0;
1969
1970out:
1971 return error;
1972}
1973
1974/* Apply the lock described by l to an open file descriptor.
1975 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1976 */
Peter Staubachc2936212005-07-27 11:45:09 -07001977int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
1978 struct flock64 __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 struct file_lock *file_lock = locks_alloc_lock();
1981 struct flock64 flock;
1982 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04001983 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 int error;
1985
1986 if (file_lock == NULL)
1987 return -ENOLCK;
1988
1989 /*
1990 * This might block, so we do it before checking the inode.
1991 */
1992 error = -EFAULT;
1993 if (copy_from_user(&flock, l, sizeof(flock)))
1994 goto out;
1995
Al Viro496ad9a2013-01-23 17:07:38 -05001996 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Don't allow mandatory locks on files that may be memory mapped
1999 * and shared.
2000 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002001 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 error = -EAGAIN;
2003 goto out;
2004 }
2005
Peter Staubachc2936212005-07-27 11:45:09 -07002006again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 error = flock64_to_posix_lock(filp, file_lock, &flock);
2008 if (error)
2009 goto out;
2010 if (cmd == F_SETLKW64) {
2011 file_lock->fl_flags |= FL_SLEEP;
2012 }
2013
2014 error = -EBADF;
2015 switch (flock.l_type) {
2016 case F_RDLCK:
2017 if (!(filp->f_mode & FMODE_READ))
2018 goto out;
2019 break;
2020 case F_WRLCK:
2021 if (!(filp->f_mode & FMODE_WRITE))
2022 goto out;
2023 break;
2024 case F_UNLCK:
2025 break;
2026 default:
2027 error = -EINVAL;
2028 goto out;
2029 }
2030
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002031 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Peter Staubachc2936212005-07-27 11:45:09 -07002033 /*
2034 * Attempt to detect a close/fcntl race and recover by
2035 * releasing the lock that was just acquired.
2036 */
Al Viro0b2bac22008-05-06 13:58:34 -04002037 spin_lock(&current->files->file_lock);
2038 f = fcheck(fd);
2039 spin_unlock(&current->files->file_lock);
2040 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07002041 flock.l_type = F_UNLCK;
2042 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044
2045out:
2046 locks_free_lock(file_lock);
2047 return error;
2048}
2049#endif /* BITS_PER_LONG == 32 */
2050
2051/*
2052 * This function is called when the file is being removed
2053 * from the task's fd array. POSIX locks belonging to this task
2054 * are deleted at this time.
2055 */
2056void locks_remove_posix(struct file *filp, fl_owner_t owner)
2057{
Miklos Szerediff7b86b2006-06-23 02:05:11 -07002058 struct file_lock lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 /*
2061 * If there are no locks held on this file, we don't need to call
2062 * posix_lock_file(). Another process could be setting a lock on this
2063 * file at the same time, but we wouldn't remove that lock anyway.
2064 */
Al Viro496ad9a2013-01-23 17:07:38 -05002065 if (!file_inode(filp)->i_flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return;
2067
2068 lock.fl_type = F_UNLCK;
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07002069 lock.fl_flags = FL_POSIX | FL_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 lock.fl_start = 0;
2071 lock.fl_end = OFFSET_MAX;
2072 lock.fl_owner = owner;
2073 lock.fl_pid = current->tgid;
2074 lock.fl_file = filp;
2075 lock.fl_ops = NULL;
2076 lock.fl_lmops = NULL;
2077
Marc Eshel150b3932007-01-18 16:15:35 -05002078 vfs_lock_file(filp, F_SETLK, &lock, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2081 lock.fl_ops->fl_release_private(&lock);
2082}
2083
2084EXPORT_SYMBOL(locks_remove_posix);
2085
2086/*
2087 * This function is called on the last close of an open file.
2088 */
2089void locks_remove_flock(struct file *filp)
2090{
Al Viro496ad9a2013-01-23 17:07:38 -05002091 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 struct file_lock *fl;
2093 struct file_lock **before;
2094
2095 if (!inode->i_flock)
2096 return;
2097
2098 if (filp->f_op && filp->f_op->flock) {
2099 struct file_lock fl = {
2100 .fl_pid = current->tgid,
2101 .fl_file = filp,
2102 .fl_flags = FL_FLOCK,
2103 .fl_type = F_UNLCK,
2104 .fl_end = OFFSET_MAX,
2105 };
2106 filp->f_op->flock(filp, F_SETLKW, &fl);
Trond Myklebust80fec4c2005-06-22 17:16:31 +00002107 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2108 fl.fl_ops->fl_release_private(&fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002111 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 before = &inode->i_flock;
2113
2114 while ((fl = *before) != NULL) {
2115 if (fl->fl_file == filp) {
Peter Staubachc2936212005-07-27 11:45:09 -07002116 if (IS_FLOCK(fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 locks_delete_lock(before);
2118 continue;
2119 }
2120 if (IS_LEASE(fl)) {
2121 lease_modify(before, F_UNLCK);
2122 continue;
2123 }
2124 /* What? */
2125 BUG();
2126 }
2127 before = &fl->fl_next;
2128 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002129 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
2132/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 * posix_unblock_lock - stop waiting for a file lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 * @waiter: the lock which was waiting
2135 *
2136 * lockd needs to block waiting for locks.
2137 */
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002138int
Jeff Laytonf891a292013-06-21 08:58:09 -04002139posix_unblock_lock(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002141 int status = 0;
2142
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002143 lock_flocks();
J. Bruce Fields5996a292006-01-03 09:55:44 +01002144 if (waiter->fl_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 __locks_delete_block(waiter);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002146 else
2147 status = -ENOENT;
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002148 unlock_flocks();
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002149 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151EXPORT_SYMBOL(posix_unblock_lock);
2152
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002153/**
2154 * vfs_cancel_lock - file byte range unblock lock
2155 * @filp: The file to apply the unblock to
2156 * @fl: The lock to be unblocked
2157 *
2158 * Used by lock managers to cancel blocked requests
2159 */
2160int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2161{
2162 if (filp->f_op && filp->f_op->lock)
2163 return filp->f_op->lock(filp, F_CANCELLK, fl);
2164 return 0;
2165}
2166
2167EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2168
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002169#ifdef CONFIG_PROC_FS
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002170#include <linux/proc_fs.h>
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002171#include <linux/seq_file.h>
2172
2173static void lock_get_status(struct seq_file *f, struct file_lock *fl,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002174 loff_t id, char *pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
2176 struct inode *inode = NULL;
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002177 unsigned int fl_pid;
2178
2179 if (fl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002180 fl_pid = pid_vnr(fl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002181 else
2182 fl_pid = fl->fl_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 if (fl->fl_file != NULL)
Al Viro496ad9a2013-01-23 17:07:38 -05002185 inode = file_inode(fl->fl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Jerome Marchand99dc8292010-10-26 14:22:33 -07002187 seq_printf(f, "%lld:%s ", id, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (IS_POSIX(fl)) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002189 seq_printf(f, "%6s %s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
2191 (inode == NULL) ? "*NOINODE*" :
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002192 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 } else if (IS_FLOCK(fl)) {
2194 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002195 seq_printf(f, "FLOCK MSNFS ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002197 seq_printf(f, "FLOCK ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199 } else if (IS_LEASE(fl)) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002200 seq_printf(f, "LEASE ");
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002201 if (lease_breaking(fl))
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002202 seq_printf(f, "BREAKING ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 else if (fl->fl_file)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002204 seq_printf(f, "ACTIVE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002206 seq_printf(f, "BREAKER ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002208 seq_printf(f, "UNKNOWN UNKNOWN ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002211 seq_printf(f, "%s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 (fl->fl_type & LOCK_READ)
2213 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2214 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2215 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002216 seq_printf(f, "%s ",
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002217 (lease_breaking(fl))
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04002218 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2219 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
2221 if (inode) {
2222#ifdef WE_CAN_BREAK_LSLK_NOW
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002223 seq_printf(f, "%d %s:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 inode->i_sb->s_id, inode->i_ino);
2225#else
2226 /* userspace relies on this representation of dev_t ;-( */
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002227 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 MAJOR(inode->i_sb->s_dev),
2229 MINOR(inode->i_sb->s_dev), inode->i_ino);
2230#endif
2231 } else {
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002232 seq_printf(f, "%d <none>:0 ", fl_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234 if (IS_POSIX(fl)) {
2235 if (fl->fl_end == OFFSET_MAX)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002236 seq_printf(f, "%Ld EOF\n", fl->fl_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002238 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002240 seq_printf(f, "0 EOF\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
2242}
2243
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002244static int locks_show(struct seq_file *f, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002246 struct file_lock *fl, *bfl;
2247
2248 fl = list_entry(v, struct file_lock, fl_link);
2249
Jerome Marchand99dc8292010-10-26 14:22:33 -07002250 lock_get_status(f, fl, *((loff_t *)f->private), "");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002251
2252 list_for_each_entry(bfl, &fl->fl_block, fl_block)
Jerome Marchand99dc8292010-10-26 14:22:33 -07002253 lock_get_status(f, bfl, *((loff_t *)f->private), " ->");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002254
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002258static void *locks_start(struct seq_file *f, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002260 loff_t *p = f->private;
2261
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002262 lock_flocks();
Jerome Marchand99dc8292010-10-26 14:22:33 -07002263 *p = (*pos + 1);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002264 return seq_list_start(&file_lock_list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002267static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2268{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002269 loff_t *p = f->private;
2270 ++*p;
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002271 return seq_list_next(v, &file_lock_list, pos);
2272}
2273
2274static void locks_stop(struct seq_file *f, void *v)
2275{
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002276 unlock_flocks();
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002277}
2278
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002279static const struct seq_operations locks_seq_operations = {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002280 .start = locks_start,
2281 .next = locks_next,
2282 .stop = locks_stop,
2283 .show = locks_show,
2284};
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002285
2286static int locks_open(struct inode *inode, struct file *filp)
2287{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002288 return seq_open_private(filp, &locks_seq_operations, sizeof(loff_t));
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002289}
2290
2291static const struct file_operations proc_locks_operations = {
2292 .open = locks_open,
2293 .read = seq_read,
2294 .llseek = seq_lseek,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002295 .release = seq_release_private,
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002296};
2297
2298static int __init proc_locks_init(void)
2299{
2300 proc_create("locks", 0, NULL, &proc_locks_operations);
2301 return 0;
2302}
2303module_init(proc_locks_init);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002304#endif
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306/**
2307 * lock_may_read - checks that the region is free of locks
2308 * @inode: the inode that is being read
2309 * @start: the first byte to read
2310 * @len: the number of bytes to read
2311 *
2312 * Emulates Windows locking requirements. Whole-file
2313 * mandatory locks (share modes) can prohibit a read and
2314 * byte-range POSIX locks can prohibit a read if they overlap.
2315 *
2316 * N.B. this function is only ever called
2317 * from knfsd and ownership of locks is never checked.
2318 */
2319int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2320{
2321 struct file_lock *fl;
2322 int result = 1;
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002323 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2325 if (IS_POSIX(fl)) {
2326 if (fl->fl_type == F_RDLCK)
2327 continue;
2328 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2329 continue;
2330 } else if (IS_FLOCK(fl)) {
2331 if (!(fl->fl_type & LOCK_MAND))
2332 continue;
2333 if (fl->fl_type & LOCK_READ)
2334 continue;
2335 } else
2336 continue;
2337 result = 0;
2338 break;
2339 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002340 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return result;
2342}
2343
2344EXPORT_SYMBOL(lock_may_read);
2345
2346/**
2347 * lock_may_write - checks that the region is free of locks
2348 * @inode: the inode that is being written
2349 * @start: the first byte to write
2350 * @len: the number of bytes to write
2351 *
2352 * Emulates Windows locking requirements. Whole-file
2353 * mandatory locks (share modes) can prohibit a write and
2354 * byte-range POSIX locks can prohibit a write if they overlap.
2355 *
2356 * N.B. this function is only ever called
2357 * from knfsd and ownership of locks is never checked.
2358 */
2359int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2360{
2361 struct file_lock *fl;
2362 int result = 1;
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002363 lock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2365 if (IS_POSIX(fl)) {
2366 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2367 continue;
2368 } else if (IS_FLOCK(fl)) {
2369 if (!(fl->fl_type & LOCK_MAND))
2370 continue;
2371 if (fl->fl_type & LOCK_WRITE)
2372 continue;
2373 } else
2374 continue;
2375 result = 0;
2376 break;
2377 }
Arnd Bergmannb89f4322010-09-18 15:09:31 +02002378 unlock_flocks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return result;
2380}
2381
2382EXPORT_SYMBOL(lock_may_write);
2383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384static int __init filelock_init(void)
2385{
2386 filelock_cache = kmem_cache_create("file_lock_cache",
Miklos Szerediee19cc42011-07-07 13:06:09 +02002387 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 return 0;
2390}
2391
2392core_initcall(filelock_init);