blob: 6242e0b1c69cc5c5fd1f1483d8015896ead78724 [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>
Jeff Layton48f74182013-06-21 08:58:18 -0400129#include <linux/hashtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <asm/uaccess.h>
132
133#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
134#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
135#define IS_LEASE(fl) (fl->fl_flags & FL_LEASE)
136
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400137static bool lease_breaking(struct file_lock *fl)
138{
J. Bruce Fields778fc542011-07-26 18:25:49 -0400139 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
140}
141
142static int target_leasetype(struct file_lock *fl)
143{
144 if (fl->fl_flags & FL_UNLOCK_PENDING)
145 return F_UNLCK;
146 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
147 return F_RDLCK;
148 return fl->fl_type;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151int leases_enable = 1;
152int lease_break_time = 45;
153
154#define for_each_lock(inode, lockp) \
155 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
156
Jeff Layton1c8c6012013-06-21 08:58:15 -0400157/*
158 * The global file_lock_list is only used for displaying /proc/locks. Protected
159 * by the file_lock_lock.
160 */
Jeff Layton139ca042013-06-21 08:58:17 -0400161static HLIST_HEAD(file_lock_list);
Jeff Layton88974692013-06-21 08:58:14 -0400162
Jeff Layton1c8c6012013-06-21 08:58:15 -0400163/*
Jeff Layton48f74182013-06-21 08:58:18 -0400164 * The blocked_hash is used to find POSIX lock loops for deadlock detection.
165 * It is protected by file_lock_lock.
166 *
167 * We hash locks by lockowner in order to optimize searching for the lock a
168 * particular lockowner is waiting on.
169 *
170 * FIXME: make this value scale via some heuristic? We generally will want more
171 * buckets when we have more lockowners holding locks, but that's a little
172 * difficult to determine without knowing what the workload will look like.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400173 */
Jeff Layton48f74182013-06-21 08:58:18 -0400174#define BLOCKED_HASH_BITS 7
175static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
Jeff Layton88974692013-06-21 08:58:14 -0400176
Jeff Layton1c8c6012013-06-21 08:58:15 -0400177/*
Jeff Layton48f74182013-06-21 08:58:18 -0400178 * This lock protects the blocked_hash and the file_lock_list. Generally, if
Jeff Layton1c8c6012013-06-21 08:58:15 -0400179 * you're accessing one of those lists, you want to be holding this lock.
180 *
181 * In addition, it also protects the fl->fl_block list, and the fl->fl_next
182 * pointer for file_lock structures that are acting as lock requests (in
183 * contrast to those that are acting as records of acquired locks).
184 *
185 * Note that when we acquire this lock in order to change the above fields,
186 * we often hold the i_lock as well. In certain cases, when reading the fields
187 * protected by this lock, we can skip acquiring it iff we already hold the
188 * i_lock.
189 *
190 * In particular, adding an entry to the fl_block list requires that you hold
191 * both the i_lock and the blocked_lock_lock (acquired in that order). Deleting
192 * an entry from the list however only requires the file_lock_lock.
193 */
Arnd Bergmann72f98e72010-10-27 21:39:58 +0200194static DEFINE_SPINLOCK(file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Christoph Lametere18b8902006-12-06 20:33:20 -0800196static struct kmem_cache *filelock_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Miklos Szerediee19cc42011-07-07 13:06:09 +0200198static void locks_init_lock_heads(struct file_lock *fl)
Miklos Szeredia51cb912011-07-06 12:33:55 +0200199{
Jeff Layton139ca042013-06-21 08:58:17 -0400200 INIT_HLIST_NODE(&fl->fl_link);
Miklos Szerediee19cc42011-07-07 13:06:09 +0200201 INIT_LIST_HEAD(&fl->fl_block);
202 init_waitqueue_head(&fl->fl_wait);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/* Allocate an empty lock structure. */
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200206struct file_lock *locks_alloc_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200208 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200209
210 if (fl)
Miklos Szerediee19cc42011-07-07 13:06:09 +0200211 locks_init_lock_heads(fl);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200212
213 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200215EXPORT_SYMBOL_GPL(locks_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500217void locks_release_private(struct file_lock *fl)
Trond Myklebust47831f32006-03-20 13:44:05 -0500218{
219 if (fl->fl_ops) {
220 if (fl->fl_ops->fl_release_private)
221 fl->fl_ops->fl_release_private(fl);
222 fl->fl_ops = NULL;
223 }
J. Bruce Fields068535f2012-08-01 07:56:16 -0400224 fl->fl_lmops = NULL;
Trond Myklebust47831f32006-03-20 13:44:05 -0500225
226}
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500227EXPORT_SYMBOL_GPL(locks_release_private);
Trond Myklebust47831f32006-03-20 13:44:05 -0500228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/* Free a lock which is not in use. */
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400230void locks_free_lock(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Miklos Szeredi5ce29642006-03-31 02:30:29 -0800232 BUG_ON(waitqueue_active(&fl->fl_wait));
233 BUG_ON(!list_empty(&fl->fl_block));
Jeff Layton139ca042013-06-21 08:58:17 -0400234 BUG_ON(!hlist_unhashed(&fl->fl_link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Trond Myklebust47831f32006-03-20 13:44:05 -0500236 locks_release_private(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 kmem_cache_free(filelock_cache, fl);
238}
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400239EXPORT_SYMBOL(locks_free_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241void locks_init_lock(struct file_lock *fl)
242{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200243 memset(fl, 0, sizeof(struct file_lock));
244 locks_init_lock_heads(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247EXPORT_SYMBOL(locks_init_lock);
248
Trond Myklebust47831f32006-03-20 13:44:05 -0500249static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
250{
251 if (fl->fl_ops) {
252 if (fl->fl_ops->fl_copy_lock)
253 fl->fl_ops->fl_copy_lock(new, fl);
254 new->fl_ops = fl->fl_ops;
255 }
Christoph Hellwigbb8430a2010-10-31 08:35:31 -0400256 if (fl->fl_lmops)
Trond Myklebust47831f32006-03-20 13:44:05 -0500257 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/*
261 * Initialize a new lock from an existing file_lock structure.
262 */
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400263void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 new->fl_owner = fl->fl_owner;
266 new->fl_pid = fl->fl_pid;
Trond Myklebust09969052006-03-20 13:44:38 -0500267 new->fl_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 new->fl_flags = fl->fl_flags;
269 new->fl_type = fl->fl_type;
270 new->fl_start = fl->fl_start;
271 new->fl_end = fl->fl_end;
Trond Myklebust09969052006-03-20 13:44:38 -0500272 new->fl_ops = NULL;
273 new->fl_lmops = NULL;
274}
Roland Dreier3dd7b712008-04-25 15:32:51 -0700275EXPORT_SYMBOL(__locks_copy_lock);
Trond Myklebust09969052006-03-20 13:44:38 -0500276
277void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
278{
279 locks_release_private(new);
280
281 __locks_copy_lock(new, fl);
282 new->fl_file = fl->fl_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 new->fl_ops = fl->fl_ops;
284 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500285
286 locks_copy_private(new, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289EXPORT_SYMBOL(locks_copy_lock);
290
291static inline int flock_translate_cmd(int cmd) {
292 if (cmd & LOCK_MAND)
293 return cmd & (LOCK_MAND | LOCK_RW);
294 switch (cmd) {
295 case LOCK_SH:
296 return F_RDLCK;
297 case LOCK_EX:
298 return F_WRLCK;
299 case LOCK_UN:
300 return F_UNLCK;
301 }
302 return -EINVAL;
303}
304
305/* Fill in a file_lock structure with an appropriate FLOCK lock. */
306static int flock_make_lock(struct file *filp, struct file_lock **lock,
307 unsigned int cmd)
308{
309 struct file_lock *fl;
310 int type = flock_translate_cmd(cmd);
311 if (type < 0)
312 return type;
313
314 fl = locks_alloc_lock();
315 if (fl == NULL)
316 return -ENOMEM;
317
318 fl->fl_file = filp;
319 fl->fl_pid = current->tgid;
320 fl->fl_flags = FL_FLOCK;
321 fl->fl_type = type;
322 fl->fl_end = OFFSET_MAX;
323
324 *lock = fl;
325 return 0;
326}
327
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400328static int assign_type(struct file_lock *fl, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 switch (type) {
331 case F_RDLCK:
332 case F_WRLCK:
333 case F_UNLCK:
334 fl->fl_type = type;
335 break;
336 default:
337 return -EINVAL;
338 }
339 return 0;
340}
341
342/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
343 * style lock.
344 */
345static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
346 struct flock *l)
347{
348 off_t start, end;
349
350 switch (l->l_whence) {
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700351 case SEEK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 start = 0;
353 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700354 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 start = filp->f_pos;
356 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700357 case SEEK_END:
Al Viro496ad9a2013-01-23 17:07:38 -0500358 start = i_size_read(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 default:
361 return -EINVAL;
362 }
363
364 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
365 POSIX-2001 defines it. */
366 start += l->l_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (start < 0)
368 return -EINVAL;
Trond Myklebust4c780a42005-10-18 14:20:21 -0700369 fl->fl_end = OFFSET_MAX;
370 if (l->l_len > 0) {
371 end = start + l->l_len - 1;
372 fl->fl_end = end;
373 } else if (l->l_len < 0) {
374 end = start - 1;
375 fl->fl_end = end;
376 start += l->l_len;
377 if (start < 0)
378 return -EINVAL;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 fl->fl_start = start; /* we record the absolute position */
Trond Myklebust4c780a42005-10-18 14:20:21 -0700381 if (fl->fl_end < fl->fl_start)
382 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 fl->fl_owner = current->files;
385 fl->fl_pid = current->tgid;
386 fl->fl_file = filp;
387 fl->fl_flags = FL_POSIX;
388 fl->fl_ops = NULL;
389 fl->fl_lmops = NULL;
390
391 return assign_type(fl, l->l_type);
392}
393
394#if BITS_PER_LONG == 32
395static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
396 struct flock64 *l)
397{
398 loff_t start;
399
400 switch (l->l_whence) {
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700401 case SEEK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 start = 0;
403 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700404 case SEEK_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 start = filp->f_pos;
406 break;
Josef 'Jeff' Sipekf5579f82006-09-30 23:27:35 -0700407 case SEEK_END:
Al Viro496ad9a2013-01-23 17:07:38 -0500408 start = i_size_read(file_inode(filp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 break;
410 default:
411 return -EINVAL;
412 }
413
Trond Myklebust4c780a42005-10-18 14:20:21 -0700414 start += l->l_start;
415 if (start < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -EINVAL;
Trond Myklebust4c780a42005-10-18 14:20:21 -0700417 fl->fl_end = OFFSET_MAX;
418 if (l->l_len > 0) {
419 fl->fl_end = start + l->l_len - 1;
420 } else if (l->l_len < 0) {
421 fl->fl_end = start - 1;
422 start += l->l_len;
423 if (start < 0)
424 return -EINVAL;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 fl->fl_start = start; /* we record the absolute position */
Trond Myklebust4c780a42005-10-18 14:20:21 -0700427 if (fl->fl_end < fl->fl_start)
428 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 fl->fl_owner = current->files;
431 fl->fl_pid = current->tgid;
432 fl->fl_file = filp;
433 fl->fl_flags = FL_POSIX;
434 fl->fl_ops = NULL;
435 fl->fl_lmops = NULL;
436
Namhyung Kimf32cb532011-01-17 15:45:59 +0900437 return assign_type(fl, l->l_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439#endif
440
441/* default lease lock manager operations */
442static void lease_break_callback(struct file_lock *fl)
443{
444 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
445}
446
Alexey Dobriyan7b021962009-09-21 17:01:12 -0700447static const struct lock_manager_operations lease_manager_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400448 .lm_break = lease_break_callback,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400449 .lm_change = lease_modify,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450};
451
452/*
453 * Initialize a lease, use the default lock manager operations
454 */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400455static int lease_init(struct file *filp, long type, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 {
Trond Myklebust75dff552006-05-07 23:02:42 -0400457 if (assign_type(fl, type) != 0)
458 return -EINVAL;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 fl->fl_owner = current->files;
461 fl->fl_pid = current->tgid;
462
463 fl->fl_file = filp;
464 fl->fl_flags = FL_LEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 fl->fl_start = 0;
466 fl->fl_end = OFFSET_MAX;
467 fl->fl_ops = NULL;
468 fl->fl_lmops = &lease_manager_ops;
469 return 0;
470}
471
472/* Allocate a file_lock initialised to this type of lease */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400473static struct file_lock *lease_alloc(struct file *filp, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct file_lock *fl = locks_alloc_lock();
Trond Myklebust75dff552006-05-07 23:02:42 -0400476 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (fl == NULL)
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500479 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 error = lease_init(filp, type, fl);
Trond Myklebust75dff552006-05-07 23:02:42 -0400482 if (error) {
483 locks_free_lock(fl);
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500484 return ERR_PTR(error);
Trond Myklebust75dff552006-05-07 23:02:42 -0400485 }
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500486 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489/* Check if two locks overlap each other.
490 */
491static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
492{
493 return ((fl1->fl_end >= fl2->fl_start) &&
494 (fl2->fl_end >= fl1->fl_start));
495}
496
497/*
498 * Check whether two locks have the same owner.
499 */
Matt Mackall33443c42006-01-08 01:05:22 -0800500static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400502 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return fl2->fl_lmops == fl1->fl_lmops &&
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400504 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return fl1->fl_owner == fl2->fl_owner;
506}
507
Jeff Layton88974692013-06-21 08:58:14 -0400508static inline void
509locks_insert_global_locks(struct file_lock *fl)
510{
Jeff Layton1c8c6012013-06-21 08:58:15 -0400511 spin_lock(&file_lock_lock);
Jeff Layton139ca042013-06-21 08:58:17 -0400512 hlist_add_head(&fl->fl_link, &file_lock_list);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400513 spin_unlock(&file_lock_lock);
Jeff Layton88974692013-06-21 08:58:14 -0400514}
515
516static inline void
517locks_delete_global_locks(struct file_lock *fl)
518{
Jeff Layton1c8c6012013-06-21 08:58:15 -0400519 spin_lock(&file_lock_lock);
Jeff Layton139ca042013-06-21 08:58:17 -0400520 hlist_del_init(&fl->fl_link);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400521 spin_unlock(&file_lock_lock);
Jeff Layton88974692013-06-21 08:58:14 -0400522}
523
Jeff Layton3999e492013-06-21 08:58:19 -0400524static unsigned long
525posix_owner_key(struct file_lock *fl)
526{
527 if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
528 return fl->fl_lmops->lm_owner_key(fl);
529 return (unsigned long)fl->fl_owner;
530}
531
Jeff Layton88974692013-06-21 08:58:14 -0400532static inline void
533locks_insert_global_blocked(struct file_lock *waiter)
534{
Jeff Layton3999e492013-06-21 08:58:19 -0400535 hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
Jeff Layton88974692013-06-21 08:58:14 -0400536}
537
538static inline void
539locks_delete_global_blocked(struct file_lock *waiter)
540{
Jeff Layton48f74182013-06-21 08:58:18 -0400541 hash_del(&waiter->fl_link);
Jeff Layton88974692013-06-21 08:58:14 -0400542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/* Remove waiter from blocker's block list.
545 * When blocker ends up pointing to itself then the list is empty.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400546 *
547 * Must be called with file_lock_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
Matt Mackall33443c42006-01-08 01:05:22 -0800549static void __locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Jeff Layton88974692013-06-21 08:58:14 -0400551 locks_delete_global_blocked(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 list_del_init(&waiter->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 waiter->fl_next = NULL;
554}
555
Jeff Layton1a9e64a2013-06-21 08:58:10 -0400556static void locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Jeff Layton1c8c6012013-06-21 08:58:15 -0400558 spin_lock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 __locks_delete_block(waiter);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400560 spin_unlock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563/* Insert waiter into blocker's block list.
564 * We use a circular list so that processes can be easily woken up in
565 * the order they blocked. The documentation doesn't require this but
566 * it seems like the reasonable thing to do.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400567 *
Jeff Layton4e8c7652013-06-21 08:58:16 -0400568 * Must be called with both the i_lock and file_lock_lock held. The fl_block
569 * list itself is protected by the file_lock_list, but by ensuring that the
570 * i_lock is also held on insertions we can avoid taking the file_lock_lock
571 * in some cases when we see that the fl_block list is empty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 */
Jeff Layton1c8c6012013-06-21 08:58:15 -0400573static void __locks_insert_block(struct file_lock *blocker,
574 struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
J. Bruce Fields6dc0fe82006-03-26 01:37:24 -0800576 BUG_ON(!list_empty(&waiter->fl_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 waiter->fl_next = blocker;
Jeff Layton88974692013-06-21 08:58:14 -0400578 list_add_tail(&waiter->fl_block, &blocker->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (IS_POSIX(blocker))
Jeff Layton1c8c6012013-06-21 08:58:15 -0400580 locks_insert_global_blocked(waiter);
581}
582
583/* Must be called with i_lock held. */
584static void locks_insert_block(struct file_lock *blocker,
585 struct file_lock *waiter)
586{
587 spin_lock(&file_lock_lock);
588 __locks_insert_block(blocker, waiter);
589 spin_unlock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Jeff Layton1cb36012013-06-21 08:58:12 -0400592/*
593 * Wake up processes blocked waiting for blocker.
594 *
Jeff Layton1c8c6012013-06-21 08:58:15 -0400595 * Must be called with the inode->i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 */
597static void locks_wake_up_blocks(struct file_lock *blocker)
598{
Jeff Layton4e8c7652013-06-21 08:58:16 -0400599 /*
600 * Avoid taking global lock if list is empty. This is safe since new
601 * blocked requests are only added to the list under the i_lock, and
602 * the i_lock is always held here. Note that removal from the fl_block
603 * list does not require the i_lock, so we must recheck list_empty()
604 * after acquiring the file_lock_lock.
605 */
606 if (list_empty(&blocker->fl_block))
607 return;
608
Jeff Layton1c8c6012013-06-21 08:58:15 -0400609 spin_lock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 while (!list_empty(&blocker->fl_block)) {
Pavel Emelyanovf0c1cd02007-09-19 16:44:07 +0400611 struct file_lock *waiter;
612
613 waiter = list_first_entry(&blocker->fl_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct file_lock, fl_block);
615 __locks_delete_block(waiter);
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400616 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
617 waiter->fl_lmops->lm_notify(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 else
619 wake_up(&waiter->fl_wait);
620 }
Jeff Layton1c8c6012013-06-21 08:58:15 -0400621 spin_unlock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/* Insert file lock fl into an inode's lock list at the position indicated
625 * by pos. At the same time add the lock to the global file lock list.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400626 *
627 * Must be called with the i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 */
629static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
630{
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000631 fl->fl_nspid = get_pid(task_tgid(current));
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* insert into file's list */
634 fl->fl_next = *pos;
635 *pos = fl;
Jeff Layton88974692013-06-21 08:58:14 -0400636
637 locks_insert_global_locks(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*
641 * Delete a lock and then free it.
642 * Wake up processes that are blocked waiting for this lock,
643 * notify the FS that the lock has been cleared and
644 * finally free the lock.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400645 *
646 * Must be called with the i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
648static void locks_delete_lock(struct file_lock **thisfl_p)
649{
650 struct file_lock *fl = *thisfl_p;
651
Jeff Layton88974692013-06-21 08:58:14 -0400652 locks_delete_global_locks(fl);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *thisfl_p = fl->fl_next;
655 fl->fl_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000657 if (fl->fl_nspid) {
658 put_pid(fl->fl_nspid);
659 fl->fl_nspid = NULL;
660 }
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 locks_wake_up_blocks(fl);
663 locks_free_lock(fl);
664}
665
666/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
667 * checks for shared/exclusive status of overlapping locks.
668 */
669static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
670{
671 if (sys_fl->fl_type == F_WRLCK)
672 return 1;
673 if (caller_fl->fl_type == F_WRLCK)
674 return 1;
675 return 0;
676}
677
678/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
679 * checking before calling the locks_conflict().
680 */
681static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
682{
683 /* POSIX locks owned by the same process do not conflict with
684 * each other.
685 */
686 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
687 return (0);
688
689 /* Check whether they overlap */
690 if (!locks_overlap(caller_fl, sys_fl))
691 return 0;
692
693 return (locks_conflict(caller_fl, sys_fl));
694}
695
696/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
697 * checking before calling the locks_conflict().
698 */
699static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
700{
701 /* FLOCK locks referring to the same filp do not conflict with
702 * each other.
703 */
704 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
705 return (0);
706 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
707 return 0;
708
709 return (locks_conflict(caller_fl, sys_fl));
710}
711
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400712void
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500713posix_test_lock(struct file *filp, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct file_lock *cfl;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400716 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jeff Layton1c8c6012013-06-21 08:58:15 -0400718 spin_lock(&inode->i_lock);
Al Viro496ad9a2013-01-23 17:07:38 -0500719 for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (!IS_POSIX(cfl))
721 continue;
J. Bruce Fieldsb842e242007-05-10 19:02:07 -0400722 if (posix_locks_conflict(fl, cfl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 break;
724 }
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000725 if (cfl) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500726 __locks_copy_lock(fl, cfl);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000727 if (cfl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800728 fl->fl_pid = pid_vnr(cfl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000729 } else
J. Bruce Fields129a84d2007-05-10 18:38:43 -0400730 fl->fl_type = F_UNLCK;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400731 spin_unlock(&inode->i_lock);
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400732 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734EXPORT_SYMBOL(posix_test_lock);
735
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400736/*
737 * Deadlock detection:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400739 * We attempt to detect deadlocks that are due purely to posix file
740 * locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400742 * We assume that a task can be waiting for at most one lock at a time.
743 * So for any acquired lock, the process holding that lock may be
744 * waiting on at most one other lock. That lock in turns may be held by
745 * someone waiting for at most one other lock. Given a requested lock
746 * caller_fl which is about to wait for a conflicting lock block_fl, we
747 * follow this chain of waiters to ensure we are not about to create a
748 * cycle.
J. Bruce Fields97855b42007-10-30 11:20:02 -0400749 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400750 * Since we do this before we ever put a process to sleep on a lock, we
751 * are ensured that there is never a cycle; that is what guarantees that
752 * the while() loop in posix_locks_deadlock() eventually completes.
753 *
754 * Note: the above assumption may not be true when handling lock
755 * requests from a broken NFS client. It may also fail in the presence
756 * of tasks (such as posix threads) sharing the same open file table.
757 *
758 * To handle those cases, we just bail out after a few iterations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
J. Bruce Fields97855b42007-10-30 11:20:02 -0400760
761#define MAX_DEADLK_ITERATIONS 10
762
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400763/* Find a lock that the owner of the given block_fl is blocking on. */
764static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
765{
766 struct file_lock *fl;
767
Jeff Layton3999e492013-06-21 08:58:19 -0400768 hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400769 if (posix_same_owner(fl, block_fl))
770 return fl->fl_next;
771 }
772 return NULL;
773}
774
Jeff Layton1c8c6012013-06-21 08:58:15 -0400775/* Must be called with the file_lock_lock held! */
Adrian Bunkb0904e12006-06-23 02:05:13 -0700776static int posix_locks_deadlock(struct file_lock *caller_fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct file_lock *block_fl)
778{
J. Bruce Fields97855b42007-10-30 11:20:02 -0400779 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400781 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
782 if (i++ > MAX_DEADLK_ITERATIONS)
783 return 0;
784 if (posix_same_owner(caller_fl, block_fl))
785 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 return 0;
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
J. Bruce Fields02888f42007-09-12 15:45:07 -0400791 * after any leases, but before any posix locks.
Trond Myklebustf475ae92006-06-29 16:38:32 -0400792 *
793 * Note that if called with an FL_EXISTS argument, the caller may determine
794 * whether or not a lock was successfully freed by testing the return
795 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 */
Trond Myklebust993dfa82006-03-31 02:30:55 -0800797static int flock_lock_file(struct file *filp, struct file_lock *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Trond Myklebust993dfa82006-03-31 02:30:55 -0800799 struct file_lock *new_fl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct file_lock **before;
Al Viro496ad9a2013-01-23 17:07:38 -0500801 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int error = 0;
803 int found = 0;
804
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200805 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
806 new_fl = locks_alloc_lock();
807 if (!new_fl)
808 return -ENOMEM;
809 }
810
Jeff Layton1c8c6012013-06-21 08:58:15 -0400811 spin_lock(&inode->i_lock);
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400812 if (request->fl_flags & FL_ACCESS)
813 goto find_conflict;
Pavel Emelyanov84d535a2007-09-11 16:38:13 +0400814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 for_each_lock(inode, before) {
816 struct file_lock *fl = *before;
817 if (IS_POSIX(fl))
818 break;
819 if (IS_LEASE(fl))
820 continue;
821 if (filp != fl->fl_file)
822 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800823 if (request->fl_type == fl->fl_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto out;
825 found = 1;
826 locks_delete_lock(before);
827 break;
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Trond Myklebustf475ae92006-06-29 16:38:32 -0400830 if (request->fl_type == F_UNLCK) {
831 if ((request->fl_flags & FL_EXISTS) && !found)
832 error = -ENOENT;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800833 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -0400834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 /*
837 * If a higher-priority process was blocked on the old file lock,
838 * give it the opportunity to lock the file.
839 */
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200840 if (found) {
Jeff Layton1c8c6012013-06-21 08:58:15 -0400841 spin_unlock(&inode->i_lock);
Frederic Weisbeckerdef01bc2009-07-16 15:44:29 +0200842 cond_resched();
Jeff Layton1c8c6012013-06-21 08:58:15 -0400843 spin_lock(&inode->i_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400846find_conflict:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 for_each_lock(inode, before) {
848 struct file_lock *fl = *before;
849 if (IS_POSIX(fl))
850 break;
851 if (IS_LEASE(fl))
852 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800853 if (!flock_locks_conflict(request, fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 continue;
855 error = -EAGAIN;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700856 if (!(request->fl_flags & FL_SLEEP))
857 goto out;
858 error = FILE_LOCK_DEFERRED;
859 locks_insert_block(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto out;
861 }
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400862 if (request->fl_flags & FL_ACCESS)
863 goto out;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800864 locks_copy_lock(new_fl, request);
Pavel Emelyanov0e2f6db2007-09-11 15:24:01 -0700865 locks_insert_lock(before, new_fl);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800866 new_fl = NULL;
Kirill Korotaev9cedc192006-06-14 17:59:35 +0400867 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869out:
Jeff Layton1c8c6012013-06-21 08:58:15 -0400870 spin_unlock(&inode->i_lock);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800871 if (new_fl)
872 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return error;
874}
875
Marc Eshel150b3932007-01-18 16:15:35 -0500876static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 struct file_lock *fl;
Miklos Szeredi39005d02006-06-23 02:05:10 -0700879 struct file_lock *new_fl = NULL;
880 struct file_lock *new_fl2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct file_lock *left = NULL;
882 struct file_lock *right = NULL;
883 struct file_lock **before;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400884 int error;
885 bool added = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 /*
888 * We may need two file_lock structures for this operation,
889 * so we get them in advance to avoid races.
Miklos Szeredi39005d02006-06-23 02:05:10 -0700890 *
891 * In some cases we can be sure, that no new locks will be needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
Miklos Szeredi39005d02006-06-23 02:05:10 -0700893 if (!(request->fl_flags & FL_ACCESS) &&
894 (request->fl_type != F_UNLCK ||
895 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
896 new_fl = locks_alloc_lock();
897 new_fl2 = locks_alloc_lock();
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Jeff Layton1c8c6012013-06-21 08:58:15 -0400900 spin_lock(&inode->i_lock);
Jeff Layton1cb36012013-06-21 08:58:12 -0400901 /*
902 * New lock request. Walk all POSIX locks and look for conflicts. If
903 * there are any, either return error or put the request on the
Jeff Layton48f74182013-06-21 08:58:18 -0400904 * blocker's list of waiters and the global blocked_hash.
Jeff Layton1cb36012013-06-21 08:58:12 -0400905 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (request->fl_type != F_UNLCK) {
907 for_each_lock(inode, before) {
J. Bruce Fields526985b2006-11-14 16:54:36 -0500908 fl = *before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (!IS_POSIX(fl))
910 continue;
911 if (!posix_locks_conflict(request, fl))
912 continue;
Andy Adamson5842add2006-03-26 01:37:26 -0800913 if (conflock)
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400914 __locks_copy_lock(conflock, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 error = -EAGAIN;
916 if (!(request->fl_flags & FL_SLEEP))
917 goto out;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400918 /*
919 * Deadlock detection and insertion into the blocked
920 * locks list must be done while holding the same lock!
921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 error = -EDEADLK;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400923 spin_lock(&file_lock_lock);
924 if (likely(!posix_locks_deadlock(request, fl))) {
925 error = FILE_LOCK_DEFERRED;
926 __locks_insert_block(fl, request);
927 }
928 spin_unlock(&file_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto out;
930 }
931 }
932
933 /* If we're just looking for a conflict, we're done. */
934 error = 0;
935 if (request->fl_flags & FL_ACCESS)
936 goto out;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * Find the first old lock with the same owner as the new lock.
940 */
941
942 before = &inode->i_flock;
943
944 /* First skip locks owned by other processes. */
945 while ((fl = *before) && (!IS_POSIX(fl) ||
946 !posix_same_owner(request, fl))) {
947 before = &fl->fl_next;
948 }
949
Jeff Layton1cb36012013-06-21 08:58:12 -0400950 /* Process locks with this owner. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 while ((fl = *before) && posix_same_owner(request, fl)) {
952 /* Detect adjacent or overlapping regions (if same lock type)
953 */
954 if (request->fl_type == fl->fl_type) {
Olaf Kirch449231d2005-08-25 16:25:35 -0700955 /* In all comparisons of start vs end, use
956 * "start - 1" rather than "end + 1". If end
957 * is OFFSET_MAX, end + 1 will become negative.
958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (fl->fl_end < request->fl_start - 1)
960 goto next_lock;
961 /* If the next lock in the list has entirely bigger
962 * addresses than the new one, insert the lock here.
963 */
Olaf Kirch449231d2005-08-25 16:25:35 -0700964 if (fl->fl_start - 1 > request->fl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966
967 /* If we come here, the new and old lock are of the
968 * same type and adjacent or overlapping. Make one
969 * lock yielding from the lower start address of both
970 * locks to the higher end address.
971 */
972 if (fl->fl_start > request->fl_start)
973 fl->fl_start = request->fl_start;
974 else
975 request->fl_start = fl->fl_start;
976 if (fl->fl_end < request->fl_end)
977 fl->fl_end = request->fl_end;
978 else
979 request->fl_end = fl->fl_end;
980 if (added) {
981 locks_delete_lock(before);
982 continue;
983 }
984 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400985 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 else {
988 /* Processing for different lock types is a bit
989 * more complex.
990 */
991 if (fl->fl_end < request->fl_start)
992 goto next_lock;
993 if (fl->fl_start > request->fl_end)
994 break;
995 if (request->fl_type == F_UNLCK)
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400996 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (fl->fl_start < request->fl_start)
998 left = fl;
999 /* If the next lock in the list has a higher end
1000 * address than the new one, insert the new one here.
1001 */
1002 if (fl->fl_end > request->fl_end) {
1003 right = fl;
1004 break;
1005 }
1006 if (fl->fl_start >= request->fl_start) {
1007 /* The new lock completely replaces an old
1008 * one (This may happen several times).
1009 */
1010 if (added) {
1011 locks_delete_lock(before);
1012 continue;
1013 }
1014 /* Replace the old lock with the new one.
1015 * Wake up anybody waiting for the old one,
1016 * as the change in lock type might satisfy
1017 * their needs.
1018 */
1019 locks_wake_up_blocks(fl);
1020 fl->fl_start = request->fl_start;
1021 fl->fl_end = request->fl_end;
1022 fl->fl_type = request->fl_type;
Trond Myklebust47831f32006-03-20 13:44:05 -05001023 locks_release_private(fl);
1024 locks_copy_private(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001026 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028 }
1029 /* Go on to next lock.
1030 */
1031 next_lock:
1032 before = &fl->fl_next;
1033 }
1034
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001035 /*
Jeff Layton1cb36012013-06-21 08:58:12 -04001036 * The above code only modifies existing locks in case of merging or
1037 * replacing. If new lock(s) need to be inserted all modifications are
1038 * done below this, so it's safe yet to bail out.
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001039 */
1040 error = -ENOLCK; /* "no luck" */
1041 if (right && left == right && !new_fl2)
1042 goto out;
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 error = 0;
1045 if (!added) {
Trond Myklebustf475ae92006-06-29 16:38:32 -04001046 if (request->fl_type == F_UNLCK) {
1047 if (request->fl_flags & FL_EXISTS)
1048 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -04001050 }
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001051
1052 if (!new_fl) {
1053 error = -ENOLCK;
1054 goto out;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 locks_copy_lock(new_fl, request);
1057 locks_insert_lock(before, new_fl);
1058 new_fl = NULL;
1059 }
1060 if (right) {
1061 if (left == right) {
1062 /* The new lock breaks the old one in two pieces,
1063 * so we have to use the second new lock.
1064 */
1065 left = new_fl2;
1066 new_fl2 = NULL;
1067 locks_copy_lock(left, right);
1068 locks_insert_lock(before, left);
1069 }
1070 right->fl_start = request->fl_end + 1;
1071 locks_wake_up_blocks(right);
1072 }
1073 if (left) {
1074 left->fl_end = request->fl_start - 1;
1075 locks_wake_up_blocks(left);
1076 }
1077 out:
Jeff Layton1c8c6012013-06-21 08:58:15 -04001078 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /*
1080 * Free any unused locks.
1081 */
1082 if (new_fl)
1083 locks_free_lock(new_fl);
1084 if (new_fl2)
1085 locks_free_lock(new_fl2);
1086 return error;
1087}
1088
1089/**
1090 * posix_lock_file - Apply a POSIX-style lock to a file
1091 * @filp: The file to apply the lock to
1092 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001093 * @conflock: Place to return a copy of the conflicting lock, if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 *
1095 * Add a POSIX style lock to a file.
1096 * We merge adjacent & overlapping locks whenever possible.
1097 * POSIX locks are sorted by owner task, then by starting address
Trond Myklebustf475ae92006-06-29 16:38:32 -04001098 *
1099 * Note that if called with an FL_EXISTS argument, the caller may determine
1100 * whether or not a lock was successfully freed by testing the return
1101 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 */
Marc Eshel150b3932007-01-18 16:15:35 -05001103int posix_lock_file(struct file *filp, struct file_lock *fl,
Andy Adamson5842add2006-03-26 01:37:26 -08001104 struct file_lock *conflock)
1105{
Al Viro496ad9a2013-01-23 17:07:38 -05001106 return __posix_lock_file(file_inode(filp), fl, conflock);
Andy Adamson5842add2006-03-26 01:37:26 -08001107}
Marc Eshel150b3932007-01-18 16:15:35 -05001108EXPORT_SYMBOL(posix_lock_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110/**
1111 * posix_lock_file_wait - Apply a POSIX-style lock to a file
1112 * @filp: The file to apply the lock to
1113 * @fl: The lock to be applied
1114 *
1115 * Add a POSIX style lock to a file.
1116 * We merge adjacent & overlapping locks whenever possible.
1117 * POSIX locks are sorted by owner task, then by starting address
1118 */
1119int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1120{
1121 int error;
1122 might_sleep ();
1123 for (;;) {
Marc Eshel150b3932007-01-18 16:15:35 -05001124 error = posix_lock_file(filp, fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001125 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 break;
1127 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1128 if (!error)
1129 continue;
1130
1131 locks_delete_block(fl);
1132 break;
1133 }
1134 return error;
1135}
1136EXPORT_SYMBOL(posix_lock_file_wait);
1137
1138/**
1139 * locks_mandatory_locked - Check for an active lock
1140 * @inode: the file to check
1141 *
1142 * Searches the inode's list of locks to find any POSIX locks which conflict.
1143 * This function is called from locks_verify_locked() only.
1144 */
1145int locks_mandatory_locked(struct inode *inode)
1146{
1147 fl_owner_t owner = current->files;
1148 struct file_lock *fl;
1149
1150 /*
1151 * Search the lock list for this inode for any POSIX locks.
1152 */
Jeff Layton1c8c6012013-06-21 08:58:15 -04001153 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1155 if (!IS_POSIX(fl))
1156 continue;
1157 if (fl->fl_owner != owner)
1158 break;
1159 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04001160 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return fl ? -EAGAIN : 0;
1162}
1163
1164/**
1165 * locks_mandatory_area - Check for a conflicting lock
1166 * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
1167 * for shared
1168 * @inode: the file to check
1169 * @filp: how the file was opened (if it was)
1170 * @offset: start of area to check
1171 * @count: length of area to check
1172 *
1173 * Searches the inode's list of locks to find any POSIX locks which conflict.
1174 * This function is called from rw_verify_area() and
1175 * locks_verify_truncate().
1176 */
1177int locks_mandatory_area(int read_write, struct inode *inode,
1178 struct file *filp, loff_t offset,
1179 size_t count)
1180{
1181 struct file_lock fl;
1182 int error;
1183
1184 locks_init_lock(&fl);
1185 fl.fl_owner = current->files;
1186 fl.fl_pid = current->tgid;
1187 fl.fl_file = filp;
1188 fl.fl_flags = FL_POSIX | FL_ACCESS;
1189 if (filp && !(filp->f_flags & O_NONBLOCK))
1190 fl.fl_flags |= FL_SLEEP;
1191 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
1192 fl.fl_start = offset;
1193 fl.fl_end = offset + count - 1;
1194
1195 for (;;) {
Marc Eshel150b3932007-01-18 16:15:35 -05001196 error = __posix_lock_file(inode, &fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001197 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 break;
1199 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1200 if (!error) {
1201 /*
1202 * If we've been sleeping someone might have
1203 * changed the permissions behind our back.
1204 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001205 if (__mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 continue;
1207 }
1208
1209 locks_delete_block(&fl);
1210 break;
1211 }
1212
1213 return error;
1214}
1215
1216EXPORT_SYMBOL(locks_mandatory_area);
1217
J. Bruce Fields778fc542011-07-26 18:25:49 -04001218static void lease_clear_pending(struct file_lock *fl, int arg)
1219{
1220 switch (arg) {
1221 case F_UNLCK:
1222 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1223 /* fall through: */
1224 case F_RDLCK:
1225 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1226 }
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/* We already had a lease on this file; just change its type */
1230int lease_modify(struct file_lock **before, int arg)
1231{
1232 struct file_lock *fl = *before;
1233 int error = assign_type(fl, arg);
1234
1235 if (error)
1236 return error;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001237 lease_clear_pending(fl, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 locks_wake_up_blocks(fl);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001239 if (arg == F_UNLCK) {
1240 struct file *filp = fl->fl_file;
1241
1242 f_delown(filp);
1243 filp->f_owner.signum = 0;
J. Bruce Fields96d6d592012-07-27 16:18:00 -04001244 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1245 if (fl->fl_fasync != NULL) {
1246 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1247 fl->fl_fasync = NULL;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 locks_delete_lock(before);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252}
1253
1254EXPORT_SYMBOL(lease_modify);
1255
J. Bruce Fields778fc542011-07-26 18:25:49 -04001256static bool past_time(unsigned long then)
1257{
1258 if (!then)
1259 /* 0 is a special value meaning "this never expires": */
1260 return false;
1261 return time_after(jiffies, then);
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264static void time_out_leases(struct inode *inode)
1265{
1266 struct file_lock **before;
1267 struct file_lock *fl;
1268
1269 before = &inode->i_flock;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04001270 while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001271 if (past_time(fl->fl_downgrade_time))
1272 lease_modify(before, F_RDLCK);
1273 if (past_time(fl->fl_break_time))
1274 lease_modify(before, F_UNLCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (fl == *before) /* lease_modify may have freed fl */
1276 before = &fl->fl_next;
1277 }
1278}
1279
1280/**
1281 * __break_lease - revoke all outstanding leases on file
1282 * @inode: the inode of the file to return
1283 * @mode: the open mode (read or write)
1284 *
david m. richter87250dd2007-05-09 16:10:27 -04001285 * break_lease (inlined for speed) has checked there already is at least
1286 * some kind of lock (maybe a lease) on this file. Leases are broken on
1287 * a call to open() or truncate(). This function can sleep unless you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 * specified %O_NONBLOCK to your open().
1289 */
1290int __break_lease(struct inode *inode, unsigned int mode)
1291{
J. Bruce Fields778fc542011-07-26 18:25:49 -04001292 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 struct file_lock *new_fl, *flock;
1294 struct file_lock *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 unsigned long break_time;
1296 int i_have_this_lease = 0;
Al Viro8737c932009-12-24 06:47:55 -05001297 int want_write = (mode & O_ACCMODE) != O_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Al Viro8737c932009-12-24 06:47:55 -05001299 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001300 if (IS_ERR(new_fl))
1301 return PTR_ERR(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Jeff Layton1c8c6012013-06-21 08:58:15 -04001303 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 time_out_leases(inode);
1306
1307 flock = inode->i_flock;
1308 if ((flock == NULL) || !IS_LEASE(flock))
1309 goto out;
1310
J. Bruce Fields778fc542011-07-26 18:25:49 -04001311 if (!locks_conflict(flock, new_fl))
1312 goto out;
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
1315 if (fl->fl_owner == current->files)
1316 i_have_this_lease = 1;
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 break_time = 0;
1319 if (lease_break_time > 0) {
1320 break_time = jiffies + lease_break_time * HZ;
1321 if (break_time == 0)
1322 break_time++; /* so that 0 means no break time */
1323 }
1324
1325 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001326 if (want_write) {
1327 if (fl->fl_flags & FL_UNLOCK_PENDING)
1328 continue;
1329 fl->fl_flags |= FL_UNLOCK_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 fl->fl_break_time = break_time;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001331 } else {
1332 if (lease_breaking(flock))
1333 continue;
1334 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1335 fl->fl_downgrade_time = break_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
J. Bruce Fields778fc542011-07-26 18:25:49 -04001337 fl->fl_lmops->lm_break(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
1340 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1341 error = -EWOULDBLOCK;
1342 goto out;
1343 }
1344
1345restart:
1346 break_time = flock->fl_break_time;
1347 if (break_time != 0) {
1348 break_time -= jiffies;
1349 if (break_time == 0)
1350 break_time++;
1351 }
Matthew Wilcox4321e012008-01-14 21:28:30 -07001352 locks_insert_block(flock, new_fl);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001353 spin_unlock(&inode->i_lock);
Matthew Wilcox4321e012008-01-14 21:28:30 -07001354 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1355 !new_fl->fl_next, break_time);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001356 spin_lock(&inode->i_lock);
1357 locks_delete_block(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (error >= 0) {
1359 if (error == 0)
1360 time_out_leases(inode);
J. Bruce Fields778fc542011-07-26 18:25:49 -04001361 /*
1362 * Wait for the next conflicting lease that has not been
1363 * broken yet
1364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1366 flock = flock->fl_next) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001367 if (locks_conflict(new_fl, flock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 goto restart;
1369 }
1370 error = 0;
1371 }
1372
1373out:
Jeff Layton1c8c6012013-06-21 08:58:15 -04001374 spin_unlock(&inode->i_lock);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001375 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return error;
1377}
1378
1379EXPORT_SYMBOL(__break_lease);
1380
1381/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001382 * lease_get_mtime - get the last modified time of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 * @inode: the inode
1384 * @time: pointer to a timespec which will contain the last modified time
1385 *
1386 * This is to force NFS clients to flush their caches for files with
1387 * exclusive leases. The justification is that if someone has an
Randy Dunlapa6b91912008-03-19 17:01:00 -07001388 * exclusive lease, then they could be modifying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 */
1390void lease_get_mtime(struct inode *inode, struct timespec *time)
1391{
1392 struct file_lock *flock = inode->i_flock;
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04001393 if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 *time = current_fs_time(inode->i_sb);
1395 else
1396 *time = inode->i_mtime;
1397}
1398
1399EXPORT_SYMBOL(lease_get_mtime);
1400
1401/**
1402 * fcntl_getlease - Enquire what lease is currently active
1403 * @filp: the file
1404 *
1405 * The value returned by this function will be one of
1406 * (if no lease break is pending):
1407 *
1408 * %F_RDLCK to indicate a shared lease is held.
1409 *
1410 * %F_WRLCK to indicate an exclusive lease is held.
1411 *
1412 * %F_UNLCK to indicate no lease is held.
1413 *
1414 * (if a lease break is pending):
1415 *
1416 * %F_RDLCK to indicate an exclusive lease needs to be
1417 * changed to a shared lease (or removed).
1418 *
1419 * %F_UNLCK to indicate the lease needs to be removed.
1420 *
1421 * XXX: sfr & willy disagree over whether F_INPROGRESS
1422 * should be returned to userspace.
1423 */
1424int fcntl_getlease(struct file *filp)
1425{
1426 struct file_lock *fl;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001427 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 int type = F_UNLCK;
1429
Jeff Layton1c8c6012013-06-21 08:58:15 -04001430 spin_lock(&inode->i_lock);
Al Viro496ad9a2013-01-23 17:07:38 -05001431 time_out_leases(file_inode(filp));
1432 for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 fl = fl->fl_next) {
1434 if (fl->fl_file == filp) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001435 type = target_leasetype(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 break;
1437 }
1438 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04001439 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return type;
1441}
1442
Jeff Laytond4f22d12013-06-21 08:58:11 -04001443static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
KAMBAROV, ZAUR7eaae282005-07-07 17:57:06 -07001445 struct file_lock *fl, **before, **my_before = NULL, *lease;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001446 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct inode *inode = dentry->d_inode;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001448 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
J. Bruce Fields096657b2010-10-30 17:31:14 -04001450 lease = *flp;
1451
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001452 error = -EAGAIN;
1453 if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
J. Bruce Fields096657b2010-10-30 17:31:14 -04001454 goto out;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001455 if ((arg == F_WRLCK)
1456 && ((dentry->d_count > 1)
1457 || (atomic_read(&inode->i_count) > 1)))
J. Bruce Fields096657b2010-10-30 17:31:14 -04001458 goto out;
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 /*
1461 * At this point, we know that if there is an exclusive
1462 * lease on this file, then we hold it on this filp
1463 * (otherwise our open of this file would have blocked).
1464 * And if we are trying to acquire an exclusive lease,
1465 * then the file is not open by anyone (including us)
1466 * except for this filp.
1467 */
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001468 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 for (before = &inode->i_flock;
1470 ((fl = *before) != NULL) && IS_LEASE(fl);
1471 before = &fl->fl_next) {
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001472 if (fl->fl_file == filp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 my_before = before;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001474 continue;
1475 }
1476 /*
1477 * No exclusive leases if someone else has a lease on
1478 * this file:
1479 */
1480 if (arg == F_WRLCK)
1481 goto out;
1482 /*
1483 * Modifying our existing lease is OK, but no getting a
1484 * new lease if someone else is opening for write:
1485 */
1486 if (fl->fl_flags & FL_UNLOCK_PENDING)
1487 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (my_before != NULL) {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001491 error = lease->fl_lmops->lm_change(my_before, arg);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001492 if (!error)
1493 *flp = *my_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 goto out;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 error = -EINVAL;
1498 if (!leases_enable)
1499 goto out;
1500
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001501 locks_insert_lock(before, lease);
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001502 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504out:
1505 return error;
1506}
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001507
Jeff Laytond4f22d12013-06-21 08:58:11 -04001508static int generic_delete_lease(struct file *filp, struct file_lock **flp)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001509{
1510 struct file_lock *fl, **before;
1511 struct dentry *dentry = filp->f_path.dentry;
1512 struct inode *inode = dentry->d_inode;
1513
1514 for (before = &inode->i_flock;
1515 ((fl = *before) != NULL) && IS_LEASE(fl);
1516 before = &fl->fl_next) {
1517 if (fl->fl_file != filp)
1518 continue;
1519 return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
1520 }
1521 return -EAGAIN;
1522}
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524/**
1525 * generic_setlease - sets a lease on an open file
1526 * @filp: file pointer
1527 * @arg: type of lease to obtain
1528 * @flp: input - file_lock to use, output - file_lock inserted
1529 *
1530 * The (input) flp->fl_lmops->lm_break function is required
1531 * by break_lease().
1532 *
Jeff Layton1c8c6012013-06-21 08:58:15 -04001533 * Called with inode->i_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
1536{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct dentry *dentry = filp->f_path.dentry;
1538 struct inode *inode = dentry->d_inode;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001539 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08001541 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001542 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (!S_ISREG(inode->i_mode))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001544 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 error = security_file_lock(filp, arg);
1546 if (error)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001547 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 time_out_leases(inode);
1550
1551 BUG_ON(!(*flp)->fl_lmops->lm_break);
1552
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001553 switch (arg) {
1554 case F_UNLCK:
1555 return generic_delete_lease(filp, flp);
1556 case F_RDLCK:
1557 case F_WRLCK:
1558 return generic_add_lease(filp, arg, flp);
1559 default:
Dave Jones8d657eb2012-07-13 13:35:36 -04001560 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
Christoph Hellwig0af1a452007-07-31 00:39:22 -07001563EXPORT_SYMBOL(generic_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001565static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1566{
1567 if (filp->f_op && filp->f_op->setlease)
1568 return filp->f_op->setlease(filp, arg, lease);
1569 else
1570 return generic_setlease(filp, arg, lease);
1571}
1572
1573/**
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001574 * vfs_setlease - sets a lease on an open file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * @filp: file pointer
1576 * @arg: type of lease to obtain
1577 * @lease: file_lock to use
1578 *
1579 * Call this to establish a lease on the file.
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001580 * The (*lease)->fl_lmops->lm_break operation must be set; if not,
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001581 * break_lease will oops!
1582 *
1583 * This will call the filesystem's setlease file method, if
1584 * defined. Note that there is no getlease method; instead, the
1585 * filesystem setlease method should call back to setlease() to
1586 * add a lease to the inode's lease list, where fcntl_getlease() can
1587 * find it. Since fcntl_getlease() only reports whether the current
1588 * task holds a lease, a cluster filesystem need only do this for
1589 * leases held by processes on this node.
1590 *
1591 * There is also no break_lease method; filesystems that
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001592 * handle their own leases should break leases themselves from the
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001593 * filesystem's open, create, and (on truncate) setattr methods.
1594 *
1595 * Warning: the only current setlease methods exist only to disable
1596 * leases in certain cases. More vfs changes may be required to
1597 * allow a full filesystem lease implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 */
1599
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001600int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Jeff Layton1c8c6012013-06-21 08:58:15 -04001602 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 int error;
1604
Jeff Layton1c8c6012013-06-21 08:58:15 -04001605 spin_lock(&inode->i_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001606 error = __vfs_setlease(filp, arg, lease);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001607 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 return error;
1610}
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001611EXPORT_SYMBOL_GPL(vfs_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001613static int do_fcntl_delete_lease(struct file *filp)
1614{
1615 struct file_lock fl, *flp = &fl;
1616
1617 lease_init(filp, F_UNLCK, flp);
1618
1619 return vfs_setlease(filp, F_UNLCK, &flp);
1620}
1621
1622static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001624 struct file_lock *fl, *ret;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001625 struct inode *inode = file_inode(filp);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001626 struct fasync_struct *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 int error;
1628
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001629 fl = lease_alloc(filp, arg);
1630 if (IS_ERR(fl))
1631 return PTR_ERR(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001633 new = fasync_alloc();
1634 if (!new) {
1635 locks_free_lock(fl);
1636 return -ENOMEM;
1637 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001638 ret = fl;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001639 spin_lock(&inode->i_lock);
J. Bruce Fields8896b932010-11-03 18:09:18 -04001640 error = __vfs_setlease(filp, arg, &ret);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001641 if (error) {
Jeff Layton1c8c6012013-06-21 08:58:15 -04001642 spin_unlock(&inode->i_lock);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001643 locks_free_lock(fl);
1644 goto out_free_fasync;
1645 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001646 if (ret != fl)
1647 locks_free_lock(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001649 /*
1650 * fasync_insert_entry() returns the old entry if any.
1651 * If there was no old entry, then it used 'new' and
1652 * inserted it into the fasync list. Clear new so that
1653 * we don't release it here.
1654 */
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001655 if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001656 new = NULL;
1657
J. Bruce Fields8896b932010-11-03 18:09:18 -04001658 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001659 spin_unlock(&inode->i_lock);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001660
1661out_free_fasync:
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001662 if (new)
1663 fasync_free(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return error;
1665}
1666
1667/**
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001668 * fcntl_setlease - sets a lease on an open file
1669 * @fd: open file descriptor
1670 * @filp: file pointer
1671 * @arg: type of lease to obtain
1672 *
1673 * Call this fcntl to establish a lease on the file.
1674 * Note that you also need to call %F_SETSIG to
1675 * receive a signal when the lease is broken.
1676 */
1677int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1678{
1679 if (arg == F_UNLCK)
1680 return do_fcntl_delete_lease(filp);
1681 return do_fcntl_add_lease(fd, filp, arg);
1682}
1683
1684/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 * flock_lock_file_wait - Apply a FLOCK-style lock to a file
1686 * @filp: The file to apply the lock to
1687 * @fl: The lock to be applied
1688 *
1689 * Add a FLOCK style lock to a file.
1690 */
1691int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
1692{
1693 int error;
1694 might_sleep();
1695 for (;;) {
1696 error = flock_lock_file(filp, fl);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001697 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 break;
1699 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1700 if (!error)
1701 continue;
1702
1703 locks_delete_block(fl);
1704 break;
1705 }
1706 return error;
1707}
1708
1709EXPORT_SYMBOL(flock_lock_file_wait);
1710
1711/**
1712 * sys_flock: - flock() system call.
1713 * @fd: the file descriptor to lock.
1714 * @cmd: the type of lock to apply.
1715 *
1716 * Apply a %FL_FLOCK style lock to an open file descriptor.
1717 * The @cmd can be one of
1718 *
1719 * %LOCK_SH -- a shared lock.
1720 *
1721 * %LOCK_EX -- an exclusive lock.
1722 *
1723 * %LOCK_UN -- remove an existing lock.
1724 *
1725 * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
1726 *
1727 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1728 * processes read and write access respectively.
1729 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001730SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
Al Viro2903ff02012-08-28 12:52:22 -04001732 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct file_lock *lock;
1734 int can_sleep, unlock;
1735 int error;
1736
1737 error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001738 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 goto out;
1740
1741 can_sleep = !(cmd & LOCK_NB);
1742 cmd &= ~LOCK_NB;
1743 unlock = (cmd == LOCK_UN);
1744
Al Viroaeb5d722008-09-02 15:28:45 -04001745 if (!unlock && !(cmd & LOCK_MAND) &&
Al Viro2903ff02012-08-28 12:52:22 -04001746 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 goto out_putf;
1748
Al Viro2903ff02012-08-28 12:52:22 -04001749 error = flock_make_lock(f.file, &lock, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (error)
1751 goto out_putf;
1752 if (can_sleep)
1753 lock->fl_flags |= FL_SLEEP;
1754
Al Viro2903ff02012-08-28 12:52:22 -04001755 error = security_file_lock(f.file, lock->fl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (error)
1757 goto out_free;
1758
Al Viro2903ff02012-08-28 12:52:22 -04001759 if (f.file->f_op && f.file->f_op->flock)
1760 error = f.file->f_op->flock(f.file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 (can_sleep) ? F_SETLKW : F_SETLK,
1762 lock);
1763 else
Al Viro2903ff02012-08-28 12:52:22 -04001764 error = flock_lock_file_wait(f.file, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 out_free:
Trond Myklebust993dfa82006-03-31 02:30:55 -08001767 locks_free_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 out_putf:
Al Viro2903ff02012-08-28 12:52:22 -04001770 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 out:
1772 return error;
1773}
1774
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001775/**
1776 * vfs_test_lock - test file byte range lock
1777 * @filp: The file to test lock for
J. Bruce Fields6924c552007-05-11 16:22:50 -04001778 * @fl: The lock to test; also used to hold result
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001779 *
1780 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
1781 * setting conf->fl_type to something other than F_UNLCK.
1782 */
1783int vfs_test_lock(struct file *filp, struct file_lock *fl)
1784{
1785 if (filp->f_op && filp->f_op->lock)
1786 return filp->f_op->lock(filp, F_GETLK, fl);
1787 posix_test_lock(filp, fl);
1788 return 0;
1789}
1790EXPORT_SYMBOL_GPL(vfs_test_lock);
1791
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001792static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1793{
1794 flock->l_pid = fl->fl_pid;
1795#if BITS_PER_LONG == 32
1796 /*
1797 * Make sure we can represent the posix lock via
1798 * legacy 32bit flock.
1799 */
1800 if (fl->fl_start > OFFT_OFFSET_MAX)
1801 return -EOVERFLOW;
1802 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1803 return -EOVERFLOW;
1804#endif
1805 flock->l_start = fl->fl_start;
1806 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1807 fl->fl_end - fl->fl_start + 1;
1808 flock->l_whence = 0;
J. Bruce Fields129a84d2007-05-10 18:38:43 -04001809 flock->l_type = fl->fl_type;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001810 return 0;
1811}
1812
1813#if BITS_PER_LONG == 32
1814static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1815{
1816 flock->l_pid = fl->fl_pid;
1817 flock->l_start = fl->fl_start;
1818 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1819 fl->fl_end - fl->fl_start + 1;
1820 flock->l_whence = 0;
1821 flock->l_type = fl->fl_type;
1822}
1823#endif
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825/* Report the first existing lock that would conflict with l.
1826 * This implements the F_GETLK command of fcntl().
1827 */
1828int fcntl_getlk(struct file *filp, struct flock __user *l)
1829{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001830 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 struct flock flock;
1832 int error;
1833
1834 error = -EFAULT;
1835 if (copy_from_user(&flock, l, sizeof(flock)))
1836 goto out;
1837 error = -EINVAL;
1838 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1839 goto out;
1840
1841 error = flock_to_posix_lock(filp, &file_lock, &flock);
1842 if (error)
1843 goto out;
1844
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001845 error = vfs_test_lock(filp, &file_lock);
1846 if (error)
1847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001849 flock.l_type = file_lock.fl_type;
1850 if (file_lock.fl_type != F_UNLCK) {
1851 error = posix_lock_to_flock(&flock, &file_lock);
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001852 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855 error = -EFAULT;
1856 if (!copy_to_user(l, &flock, sizeof(flock)))
1857 error = 0;
1858out:
1859 return error;
1860}
1861
Marc Eshel7723ec92007-01-18 15:08:55 -05001862/**
1863 * vfs_lock_file - file byte range lock
1864 * @filp: The file to apply the lock to
1865 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
1866 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001867 * @conf: Place to return a copy of the conflicting lock, if found.
1868 *
1869 * A caller that doesn't care about the conflicting lock may pass NULL
1870 * as the final argument.
1871 *
1872 * If the filesystem defines a private ->lock() method, then @conf will
1873 * be left unchanged; so a caller that cares should initialize it to
1874 * some acceptable default.
Marc Eshel2beb6612006-12-05 23:31:28 -05001875 *
1876 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
1877 * locks, the ->lock() interface may return asynchronously, before the lock has
1878 * been granted or denied by the underlying filesystem, if (and only if)
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001879 * lm_grant is set. Callers expecting ->lock() to return asynchronously
Marc Eshel2beb6612006-12-05 23:31:28 -05001880 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
1881 * the request is for a blocking lock. When ->lock() does return asynchronously,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001882 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
Marc Eshel2beb6612006-12-05 23:31:28 -05001883 * request completes.
1884 * If the request is for non-blocking lock the file system should return
Miklos Szeredibde74e42008-07-25 01:48:57 -07001885 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1886 * with the result. If the request timed out the callback routine will return a
Marc Eshel2beb6612006-12-05 23:31:28 -05001887 * nonzero return code and the file system should release the lock. The file
1888 * system is also responsible to keep a corresponding posix lock when it
1889 * grants a lock so the VFS can find out which locks are locally held and do
1890 * the correct lock cleanup when required.
1891 * The underlying filesystem must not drop the kernel lock or call
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001892 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
Marc Eshel2beb6612006-12-05 23:31:28 -05001893 * return code.
Marc Eshel7723ec92007-01-18 15:08:55 -05001894 */
Marc Eshel150b3932007-01-18 16:15:35 -05001895int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
Marc Eshel7723ec92007-01-18 15:08:55 -05001896{
1897 if (filp->f_op && filp->f_op->lock)
1898 return filp->f_op->lock(filp, cmd, fl);
1899 else
Marc Eshel150b3932007-01-18 16:15:35 -05001900 return posix_lock_file(filp, fl, conf);
Marc Eshel7723ec92007-01-18 15:08:55 -05001901}
1902EXPORT_SYMBOL_GPL(vfs_lock_file);
1903
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001904static int do_lock_file_wait(struct file *filp, unsigned int cmd,
1905 struct file_lock *fl)
1906{
1907 int error;
1908
1909 error = security_file_lock(filp, fl->fl_type);
1910 if (error)
1911 return error;
1912
Miklos Szeredi764c76b2008-07-25 01:48:58 -07001913 for (;;) {
1914 error = vfs_lock_file(filp, cmd, fl, NULL);
1915 if (error != FILE_LOCK_DEFERRED)
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001916 break;
Miklos Szeredi764c76b2008-07-25 01:48:58 -07001917 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1918 if (!error)
1919 continue;
1920
1921 locks_delete_block(fl);
1922 break;
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001923 }
1924
1925 return error;
1926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928/* Apply the lock described by l to an open file descriptor.
1929 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
1930 */
Peter Staubachc2936212005-07-27 11:45:09 -07001931int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
1932 struct flock __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 struct file_lock *file_lock = locks_alloc_lock();
1935 struct flock flock;
1936 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04001937 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 int error;
1939
1940 if (file_lock == NULL)
1941 return -ENOLCK;
1942
1943 /*
1944 * This might block, so we do it before checking the inode.
1945 */
1946 error = -EFAULT;
1947 if (copy_from_user(&flock, l, sizeof(flock)))
1948 goto out;
1949
Al Viro496ad9a2013-01-23 17:07:38 -05001950 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 /* Don't allow mandatory locks on files that may be memory mapped
1953 * and shared.
1954 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001955 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 error = -EAGAIN;
1957 goto out;
1958 }
1959
Peter Staubachc2936212005-07-27 11:45:09 -07001960again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 error = flock_to_posix_lock(filp, file_lock, &flock);
1962 if (error)
1963 goto out;
1964 if (cmd == F_SETLKW) {
1965 file_lock->fl_flags |= FL_SLEEP;
1966 }
1967
1968 error = -EBADF;
1969 switch (flock.l_type) {
1970 case F_RDLCK:
1971 if (!(filp->f_mode & FMODE_READ))
1972 goto out;
1973 break;
1974 case F_WRLCK:
1975 if (!(filp->f_mode & FMODE_WRITE))
1976 goto out;
1977 break;
1978 case F_UNLCK:
1979 break;
1980 default:
1981 error = -EINVAL;
1982 goto out;
1983 }
1984
Miklos Szeredib648a6d2008-07-25 01:48:57 -07001985 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Peter Staubachc2936212005-07-27 11:45:09 -07001987 /*
1988 * Attempt to detect a close/fcntl race and recover by
1989 * releasing the lock that was just acquired.
1990 */
Al Viro0b2bac22008-05-06 13:58:34 -04001991 /*
1992 * we need that spin_lock here - it prevents reordering between
1993 * update of inode->i_flock and check for it done in close().
1994 * rcu_read_lock() wouldn't do.
1995 */
1996 spin_lock(&current->files->file_lock);
1997 f = fcheck(fd);
1998 spin_unlock(&current->files->file_lock);
1999 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07002000 flock.l_type = F_UNLCK;
2001 goto again;
2002 }
2003
2004out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 locks_free_lock(file_lock);
2006 return error;
2007}
2008
2009#if BITS_PER_LONG == 32
2010/* Report the first existing lock that would conflict with l.
2011 * This implements the F_GETLK command of fcntl().
2012 */
2013int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
2014{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002015 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 struct flock64 flock;
2017 int error;
2018
2019 error = -EFAULT;
2020 if (copy_from_user(&flock, l, sizeof(flock)))
2021 goto out;
2022 error = -EINVAL;
2023 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
2024 goto out;
2025
2026 error = flock64_to_posix_lock(filp, &file_lock, &flock);
2027 if (error)
2028 goto out;
2029
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002030 error = vfs_test_lock(filp, &file_lock);
2031 if (error)
2032 goto out;
2033
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002034 flock.l_type = file_lock.fl_type;
2035 if (file_lock.fl_type != F_UNLCK)
2036 posix_lock_to_flock64(&flock, &file_lock);
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 error = -EFAULT;
2039 if (!copy_to_user(l, &flock, sizeof(flock)))
2040 error = 0;
2041
2042out:
2043 return error;
2044}
2045
2046/* Apply the lock described by l to an open file descriptor.
2047 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2048 */
Peter Staubachc2936212005-07-27 11:45:09 -07002049int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
2050 struct flock64 __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
2052 struct file_lock *file_lock = locks_alloc_lock();
2053 struct flock64 flock;
2054 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04002055 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 int error;
2057
2058 if (file_lock == NULL)
2059 return -ENOLCK;
2060
2061 /*
2062 * This might block, so we do it before checking the inode.
2063 */
2064 error = -EFAULT;
2065 if (copy_from_user(&flock, l, sizeof(flock)))
2066 goto out;
2067
Al Viro496ad9a2013-01-23 17:07:38 -05002068 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 /* Don't allow mandatory locks on files that may be memory mapped
2071 * and shared.
2072 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002073 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 error = -EAGAIN;
2075 goto out;
2076 }
2077
Peter Staubachc2936212005-07-27 11:45:09 -07002078again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 error = flock64_to_posix_lock(filp, file_lock, &flock);
2080 if (error)
2081 goto out;
2082 if (cmd == F_SETLKW64) {
2083 file_lock->fl_flags |= FL_SLEEP;
2084 }
2085
2086 error = -EBADF;
2087 switch (flock.l_type) {
2088 case F_RDLCK:
2089 if (!(filp->f_mode & FMODE_READ))
2090 goto out;
2091 break;
2092 case F_WRLCK:
2093 if (!(filp->f_mode & FMODE_WRITE))
2094 goto out;
2095 break;
2096 case F_UNLCK:
2097 break;
2098 default:
2099 error = -EINVAL;
2100 goto out;
2101 }
2102
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002103 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Peter Staubachc2936212005-07-27 11:45:09 -07002105 /*
2106 * Attempt to detect a close/fcntl race and recover by
2107 * releasing the lock that was just acquired.
2108 */
Al Viro0b2bac22008-05-06 13:58:34 -04002109 spin_lock(&current->files->file_lock);
2110 f = fcheck(fd);
2111 spin_unlock(&current->files->file_lock);
2112 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07002113 flock.l_type = F_UNLCK;
2114 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116
2117out:
2118 locks_free_lock(file_lock);
2119 return error;
2120}
2121#endif /* BITS_PER_LONG == 32 */
2122
2123/*
2124 * This function is called when the file is being removed
2125 * from the task's fd array. POSIX locks belonging to this task
2126 * are deleted at this time.
2127 */
2128void locks_remove_posix(struct file *filp, fl_owner_t owner)
2129{
Miklos Szerediff7b86b2006-06-23 02:05:11 -07002130 struct file_lock lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /*
2133 * If there are no locks held on this file, we don't need to call
2134 * posix_lock_file(). Another process could be setting a lock on this
2135 * file at the same time, but we wouldn't remove that lock anyway.
2136 */
Al Viro496ad9a2013-01-23 17:07:38 -05002137 if (!file_inode(filp)->i_flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return;
2139
2140 lock.fl_type = F_UNLCK;
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07002141 lock.fl_flags = FL_POSIX | FL_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 lock.fl_start = 0;
2143 lock.fl_end = OFFSET_MAX;
2144 lock.fl_owner = owner;
2145 lock.fl_pid = current->tgid;
2146 lock.fl_file = filp;
2147 lock.fl_ops = NULL;
2148 lock.fl_lmops = NULL;
2149
Marc Eshel150b3932007-01-18 16:15:35 -05002150 vfs_lock_file(filp, F_SETLK, &lock, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2153 lock.fl_ops->fl_release_private(&lock);
2154}
2155
2156EXPORT_SYMBOL(locks_remove_posix);
2157
2158/*
2159 * This function is called on the last close of an open file.
2160 */
2161void locks_remove_flock(struct file *filp)
2162{
Al Viro496ad9a2013-01-23 17:07:38 -05002163 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 struct file_lock *fl;
2165 struct file_lock **before;
2166
2167 if (!inode->i_flock)
2168 return;
2169
2170 if (filp->f_op && filp->f_op->flock) {
2171 struct file_lock fl = {
2172 .fl_pid = current->tgid,
2173 .fl_file = filp,
2174 .fl_flags = FL_FLOCK,
2175 .fl_type = F_UNLCK,
2176 .fl_end = OFFSET_MAX,
2177 };
2178 filp->f_op->flock(filp, F_SETLKW, &fl);
Trond Myklebust80fec4c2005-06-22 17:16:31 +00002179 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2180 fl.fl_ops->fl_release_private(&fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
2182
Jeff Layton1c8c6012013-06-21 08:58:15 -04002183 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 before = &inode->i_flock;
2185
2186 while ((fl = *before) != NULL) {
2187 if (fl->fl_file == filp) {
Peter Staubachc2936212005-07-27 11:45:09 -07002188 if (IS_FLOCK(fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 locks_delete_lock(before);
2190 continue;
2191 }
2192 if (IS_LEASE(fl)) {
2193 lease_modify(before, F_UNLCK);
2194 continue;
2195 }
2196 /* What? */
2197 BUG();
2198 }
2199 before = &fl->fl_next;
2200 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002201 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
2203
2204/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 * posix_unblock_lock - stop waiting for a file lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 * @waiter: the lock which was waiting
2207 *
2208 * lockd needs to block waiting for locks.
2209 */
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002210int
Jeff Laytonf891a292013-06-21 08:58:09 -04002211posix_unblock_lock(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002213 int status = 0;
2214
Jeff Layton1c8c6012013-06-21 08:58:15 -04002215 spin_lock(&file_lock_lock);
J. Bruce Fields5996a292006-01-03 09:55:44 +01002216 if (waiter->fl_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 __locks_delete_block(waiter);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002218 else
2219 status = -ENOENT;
Jeff Layton1c8c6012013-06-21 08:58:15 -04002220 spin_unlock(&file_lock_lock);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002221 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223EXPORT_SYMBOL(posix_unblock_lock);
2224
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002225/**
2226 * vfs_cancel_lock - file byte range unblock lock
2227 * @filp: The file to apply the unblock to
2228 * @fl: The lock to be unblocked
2229 *
2230 * Used by lock managers to cancel blocked requests
2231 */
2232int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2233{
2234 if (filp->f_op && filp->f_op->lock)
2235 return filp->f_op->lock(filp, F_CANCELLK, fl);
2236 return 0;
2237}
2238
2239EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2240
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002241#ifdef CONFIG_PROC_FS
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002242#include <linux/proc_fs.h>
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002243#include <linux/seq_file.h>
2244
2245static void lock_get_status(struct seq_file *f, struct file_lock *fl,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002246 loff_t id, char *pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 struct inode *inode = NULL;
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002249 unsigned int fl_pid;
2250
2251 if (fl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002252 fl_pid = pid_vnr(fl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002253 else
2254 fl_pid = fl->fl_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 if (fl->fl_file != NULL)
Al Viro496ad9a2013-01-23 17:07:38 -05002257 inode = file_inode(fl->fl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Jerome Marchand99dc8292010-10-26 14:22:33 -07002259 seq_printf(f, "%lld:%s ", id, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (IS_POSIX(fl)) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002261 seq_printf(f, "%6s %s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
2263 (inode == NULL) ? "*NOINODE*" :
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002264 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 } else if (IS_FLOCK(fl)) {
2266 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002267 seq_printf(f, "FLOCK MSNFS ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002269 seq_printf(f, "FLOCK ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271 } else if (IS_LEASE(fl)) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002272 seq_printf(f, "LEASE ");
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002273 if (lease_breaking(fl))
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002274 seq_printf(f, "BREAKING ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 else if (fl->fl_file)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002276 seq_printf(f, "ACTIVE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002278 seq_printf(f, "BREAKER ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002280 seq_printf(f, "UNKNOWN UNKNOWN ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 }
2282 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002283 seq_printf(f, "%s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 (fl->fl_type & LOCK_READ)
2285 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2286 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2287 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002288 seq_printf(f, "%s ",
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002289 (lease_breaking(fl))
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04002290 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2291 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293 if (inode) {
2294#ifdef WE_CAN_BREAK_LSLK_NOW
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002295 seq_printf(f, "%d %s:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 inode->i_sb->s_id, inode->i_ino);
2297#else
2298 /* userspace relies on this representation of dev_t ;-( */
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002299 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 MAJOR(inode->i_sb->s_dev),
2301 MINOR(inode->i_sb->s_dev), inode->i_ino);
2302#endif
2303 } else {
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002304 seq_printf(f, "%d <none>:0 ", fl_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
2306 if (IS_POSIX(fl)) {
2307 if (fl->fl_end == OFFSET_MAX)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002308 seq_printf(f, "%Ld EOF\n", fl->fl_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002310 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002312 seq_printf(f, "0 EOF\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314}
2315
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002316static int locks_show(struct seq_file *f, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002318 struct file_lock *fl, *bfl;
2319
Jeff Layton139ca042013-06-21 08:58:17 -04002320 fl = hlist_entry(v, struct file_lock, fl_link);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002321
Jerome Marchand99dc8292010-10-26 14:22:33 -07002322 lock_get_status(f, fl, *((loff_t *)f->private), "");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002323
2324 list_for_each_entry(bfl, &fl->fl_block, fl_block)
Jerome Marchand99dc8292010-10-26 14:22:33 -07002325 lock_get_status(f, bfl, *((loff_t *)f->private), " ->");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002326
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002330static void *locks_start(struct seq_file *f, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002332 loff_t *p = f->private;
2333
Jeff Layton1c8c6012013-06-21 08:58:15 -04002334 spin_lock(&file_lock_lock);
Jerome Marchand99dc8292010-10-26 14:22:33 -07002335 *p = (*pos + 1);
Jeff Layton139ca042013-06-21 08:58:17 -04002336 return seq_hlist_start(&file_lock_list, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002339static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2340{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002341 loff_t *p = f->private;
2342 ++*p;
Jeff Layton139ca042013-06-21 08:58:17 -04002343 return seq_hlist_next(v, &file_lock_list, pos);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002344}
2345
2346static void locks_stop(struct seq_file *f, void *v)
2347{
Jeff Layton1c8c6012013-06-21 08:58:15 -04002348 spin_unlock(&file_lock_lock);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002349}
2350
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002351static const struct seq_operations locks_seq_operations = {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002352 .start = locks_start,
2353 .next = locks_next,
2354 .stop = locks_stop,
2355 .show = locks_show,
2356};
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002357
2358static int locks_open(struct inode *inode, struct file *filp)
2359{
Jerome Marchand99dc8292010-10-26 14:22:33 -07002360 return seq_open_private(filp, &locks_seq_operations, sizeof(loff_t));
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002361}
2362
2363static const struct file_operations proc_locks_operations = {
2364 .open = locks_open,
2365 .read = seq_read,
2366 .llseek = seq_lseek,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002367 .release = seq_release_private,
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002368};
2369
2370static int __init proc_locks_init(void)
2371{
2372 proc_create("locks", 0, NULL, &proc_locks_operations);
2373 return 0;
2374}
2375module_init(proc_locks_init);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002376#endif
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378/**
2379 * lock_may_read - checks that the region is free of locks
2380 * @inode: the inode that is being read
2381 * @start: the first byte to read
2382 * @len: the number of bytes to read
2383 *
2384 * Emulates Windows locking requirements. Whole-file
2385 * mandatory locks (share modes) can prohibit a read and
2386 * byte-range POSIX locks can prohibit a read if they overlap.
2387 *
2388 * N.B. this function is only ever called
2389 * from knfsd and ownership of locks is never checked.
2390 */
2391int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2392{
2393 struct file_lock *fl;
2394 int result = 1;
Jeff Layton1c8c6012013-06-21 08:58:15 -04002395
2396 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2398 if (IS_POSIX(fl)) {
2399 if (fl->fl_type == F_RDLCK)
2400 continue;
2401 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2402 continue;
2403 } else if (IS_FLOCK(fl)) {
2404 if (!(fl->fl_type & LOCK_MAND))
2405 continue;
2406 if (fl->fl_type & LOCK_READ)
2407 continue;
2408 } else
2409 continue;
2410 result = 0;
2411 break;
2412 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002413 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return result;
2415}
2416
2417EXPORT_SYMBOL(lock_may_read);
2418
2419/**
2420 * lock_may_write - checks that the region is free of locks
2421 * @inode: the inode that is being written
2422 * @start: the first byte to write
2423 * @len: the number of bytes to write
2424 *
2425 * Emulates Windows locking requirements. Whole-file
2426 * mandatory locks (share modes) can prohibit a write and
2427 * byte-range POSIX locks can prohibit a write if they overlap.
2428 *
2429 * N.B. this function is only ever called
2430 * from knfsd and ownership of locks is never checked.
2431 */
2432int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2433{
2434 struct file_lock *fl;
2435 int result = 1;
Jeff Layton1c8c6012013-06-21 08:58:15 -04002436
2437 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2439 if (IS_POSIX(fl)) {
2440 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2441 continue;
2442 } else if (IS_FLOCK(fl)) {
2443 if (!(fl->fl_type & LOCK_MAND))
2444 continue;
2445 if (fl->fl_type & LOCK_WRITE)
2446 continue;
2447 } else
2448 continue;
2449 result = 0;
2450 break;
2451 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002452 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return result;
2454}
2455
2456EXPORT_SYMBOL(lock_may_write);
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458static int __init filelock_init(void)
2459{
2460 filelock_cache = kmem_cache_create("file_lock_cache",
Miklos Szerediee19cc42011-07-07 13:06:09 +02002461 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
2464}
2465
2466core_initcall(filelock_init);