blob: e390bd9ae068696d4a5425057559d3037e6f4518 [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>
Jeff Layton7012b022013-06-21 08:58:22 -0400130#include <linux/percpu.h>
131#include <linux/lglock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#include <asm/uaccess.h>
134
135#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
136#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
J. Bruce Fields617588d2011-07-01 15:18:34 -0400137#define IS_LEASE(fl) (fl->fl_flags & (FL_LEASE|FL_DELEG))
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400138#define IS_OFDLCK(fl) (fl->fl_flags & FL_OFDLCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400140static bool lease_breaking(struct file_lock *fl)
141{
J. Bruce Fields778fc542011-07-26 18:25:49 -0400142 return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
143}
144
145static int target_leasetype(struct file_lock *fl)
146{
147 if (fl->fl_flags & FL_UNLOCK_PENDING)
148 return F_UNLCK;
149 if (fl->fl_flags & FL_DOWNGRADE_PENDING)
150 return F_RDLCK;
151 return fl->fl_type;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -0400152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154int leases_enable = 1;
155int lease_break_time = 45;
156
157#define for_each_lock(inode, lockp) \
158 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
159
Jeff Layton1c8c6012013-06-21 08:58:15 -0400160/*
Jeff Layton7012b022013-06-21 08:58:22 -0400161 * The global file_lock_list is only used for displaying /proc/locks, so we
162 * keep a list on each CPU, with each list protected by its own spinlock via
163 * the file_lock_lglock. Note that alterations to the list also require that
164 * the relevant i_lock is held.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400165 */
Jeff Layton7012b022013-06-21 08:58:22 -0400166DEFINE_STATIC_LGLOCK(file_lock_lglock);
167static DEFINE_PER_CPU(struct hlist_head, file_lock_list);
Jeff Layton88974692013-06-21 08:58:14 -0400168
Jeff Layton1c8c6012013-06-21 08:58:15 -0400169/*
Jeff Layton48f74182013-06-21 08:58:18 -0400170 * The blocked_hash is used to find POSIX lock loops for deadlock detection.
Jeff Layton7b2296a2013-06-21 08:58:20 -0400171 * It is protected by blocked_lock_lock.
Jeff Layton48f74182013-06-21 08:58:18 -0400172 *
173 * We hash locks by lockowner in order to optimize searching for the lock a
174 * particular lockowner is waiting on.
175 *
176 * FIXME: make this value scale via some heuristic? We generally will want more
177 * buckets when we have more lockowners holding locks, but that's a little
178 * difficult to determine without knowing what the workload will look like.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400179 */
Jeff Layton48f74182013-06-21 08:58:18 -0400180#define BLOCKED_HASH_BITS 7
181static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
Jeff Layton88974692013-06-21 08:58:14 -0400182
Jeff Layton1c8c6012013-06-21 08:58:15 -0400183/*
Jeff Layton7b2296a2013-06-21 08:58:20 -0400184 * This lock protects the blocked_hash. Generally, if you're accessing it, you
185 * want to be holding this lock.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400186 *
187 * In addition, it also protects the fl->fl_block list, and the fl->fl_next
188 * pointer for file_lock structures that are acting as lock requests (in
189 * contrast to those that are acting as records of acquired locks).
190 *
191 * Note that when we acquire this lock in order to change the above fields,
192 * we often hold the i_lock as well. In certain cases, when reading the fields
193 * protected by this lock, we can skip acquiring it iff we already hold the
194 * i_lock.
195 *
196 * In particular, adding an entry to the fl_block list requires that you hold
197 * both the i_lock and the blocked_lock_lock (acquired in that order). Deleting
198 * an entry from the list however only requires the file_lock_lock.
199 */
Jeff Layton7b2296a2013-06-21 08:58:20 -0400200static DEFINE_SPINLOCK(blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Christoph Lametere18b8902006-12-06 20:33:20 -0800202static struct kmem_cache *filelock_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Miklos Szerediee19cc42011-07-07 13:06:09 +0200204static void locks_init_lock_heads(struct file_lock *fl)
Miklos Szeredia51cb912011-07-06 12:33:55 +0200205{
Jeff Layton139ca042013-06-21 08:58:17 -0400206 INIT_HLIST_NODE(&fl->fl_link);
Miklos Szerediee19cc42011-07-07 13:06:09 +0200207 INIT_LIST_HEAD(&fl->fl_block);
208 init_waitqueue_head(&fl->fl_wait);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* Allocate an empty lock structure. */
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200212struct file_lock *locks_alloc_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200214 struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200215
216 if (fl)
Miklos Szerediee19cc42011-07-07 13:06:09 +0200217 locks_init_lock_heads(fl);
Miklos Szeredia51cb912011-07-06 12:33:55 +0200218
219 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +0200221EXPORT_SYMBOL_GPL(locks_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500223void locks_release_private(struct file_lock *fl)
Trond Myklebust47831f32006-03-20 13:44:05 -0500224{
225 if (fl->fl_ops) {
226 if (fl->fl_ops->fl_release_private)
227 fl->fl_ops->fl_release_private(fl);
228 fl->fl_ops = NULL;
229 }
J. Bruce Fields068535f2012-08-01 07:56:16 -0400230 fl->fl_lmops = NULL;
Trond Myklebust47831f32006-03-20 13:44:05 -0500231
232}
Felix Blyakhera9e61e22009-03-31 15:12:56 -0500233EXPORT_SYMBOL_GPL(locks_release_private);
Trond Myklebust47831f32006-03-20 13:44:05 -0500234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/* Free a lock which is not in use. */
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400236void locks_free_lock(struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Miklos Szeredi5ce29642006-03-31 02:30:29 -0800238 BUG_ON(waitqueue_active(&fl->fl_wait));
239 BUG_ON(!list_empty(&fl->fl_block));
Jeff Layton139ca042013-06-21 08:58:17 -0400240 BUG_ON(!hlist_unhashed(&fl->fl_link));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Trond Myklebust47831f32006-03-20 13:44:05 -0500242 locks_release_private(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 kmem_cache_free(filelock_cache, fl);
244}
J. Bruce Fields05fa3132010-10-30 17:31:15 -0400245EXPORT_SYMBOL(locks_free_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247void locks_init_lock(struct file_lock *fl)
248{
Miklos Szerediee19cc42011-07-07 13:06:09 +0200249 memset(fl, 0, sizeof(struct file_lock));
250 locks_init_lock_heads(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253EXPORT_SYMBOL(locks_init_lock);
254
Trond Myklebust47831f32006-03-20 13:44:05 -0500255static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
256{
257 if (fl->fl_ops) {
258 if (fl->fl_ops->fl_copy_lock)
259 fl->fl_ops->fl_copy_lock(new, fl);
260 new->fl_ops = fl->fl_ops;
261 }
Christoph Hellwigbb8430a2010-10-31 08:35:31 -0400262 if (fl->fl_lmops)
Trond Myklebust47831f32006-03-20 13:44:05 -0500263 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/*
267 * Initialize a new lock from an existing file_lock structure.
268 */
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400269void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 new->fl_owner = fl->fl_owner;
272 new->fl_pid = fl->fl_pid;
Trond Myklebust09969052006-03-20 13:44:38 -0500273 new->fl_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 new->fl_flags = fl->fl_flags;
275 new->fl_type = fl->fl_type;
276 new->fl_start = fl->fl_start;
277 new->fl_end = fl->fl_end;
Trond Myklebust09969052006-03-20 13:44:38 -0500278 new->fl_ops = NULL;
279 new->fl_lmops = NULL;
280}
Roland Dreier3dd7b712008-04-25 15:32:51 -0700281EXPORT_SYMBOL(__locks_copy_lock);
Trond Myklebust09969052006-03-20 13:44:38 -0500282
283void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
284{
285 locks_release_private(new);
286
287 __locks_copy_lock(new, fl);
288 new->fl_file = fl->fl_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 new->fl_ops = fl->fl_ops;
290 new->fl_lmops = fl->fl_lmops;
Trond Myklebust47831f32006-03-20 13:44:05 -0500291
292 locks_copy_private(new, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295EXPORT_SYMBOL(locks_copy_lock);
296
297static inline int flock_translate_cmd(int cmd) {
298 if (cmd & LOCK_MAND)
299 return cmd & (LOCK_MAND | LOCK_RW);
300 switch (cmd) {
301 case LOCK_SH:
302 return F_RDLCK;
303 case LOCK_EX:
304 return F_WRLCK;
305 case LOCK_UN:
306 return F_UNLCK;
307 }
308 return -EINVAL;
309}
310
311/* Fill in a file_lock structure with an appropriate FLOCK lock. */
312static int flock_make_lock(struct file *filp, struct file_lock **lock,
313 unsigned int cmd)
314{
315 struct file_lock *fl;
316 int type = flock_translate_cmd(cmd);
317 if (type < 0)
318 return type;
319
320 fl = locks_alloc_lock();
321 if (fl == NULL)
322 return -ENOMEM;
323
324 fl->fl_file = filp;
325 fl->fl_pid = current->tgid;
326 fl->fl_flags = FL_FLOCK;
327 fl->fl_type = type;
328 fl->fl_end = OFFSET_MAX;
329
330 *lock = fl;
331 return 0;
332}
333
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400334static int assign_type(struct file_lock *fl, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 switch (type) {
337 case F_RDLCK:
338 case F_WRLCK:
339 case F_UNLCK:
340 fl->fl_type = type;
341 break;
342 default:
343 return -EINVAL;
344 }
345 return 0;
346}
347
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500348static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
349 struct flock64 *l)
350{
351 switch (l->l_whence) {
352 case SEEK_SET:
353 fl->fl_start = 0;
354 break;
355 case SEEK_CUR:
356 fl->fl_start = filp->f_pos;
357 break;
358 case SEEK_END:
359 fl->fl_start = i_size_read(file_inode(filp));
360 break;
361 default:
362 return -EINVAL;
363 }
364 if (l->l_start > OFFSET_MAX - fl->fl_start)
365 return -EOVERFLOW;
366 fl->fl_start += l->l_start;
367 if (fl->fl_start < 0)
368 return -EINVAL;
369
370 /* POSIX-1996 leaves the case l->l_len < 0 undefined;
371 POSIX-2001 defines it. */
372 if (l->l_len > 0) {
373 if (l->l_len - 1 > OFFSET_MAX - fl->fl_start)
374 return -EOVERFLOW;
375 fl->fl_end = fl->fl_start + l->l_len - 1;
376
377 } else if (l->l_len < 0) {
378 if (fl->fl_start + l->l_len < 0)
379 return -EINVAL;
380 fl->fl_end = fl->fl_start - 1;
381 fl->fl_start += l->l_len;
382 } else
383 fl->fl_end = OFFSET_MAX;
384
385 fl->fl_owner = current->files;
386 fl->fl_pid = current->tgid;
387 fl->fl_file = filp;
388 fl->fl_flags = FL_POSIX;
389 fl->fl_ops = NULL;
390 fl->fl_lmops = NULL;
391
392 return assign_type(fl, l->l_type);
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
396 * style lock.
397 */
398static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
399 struct flock *l)
400{
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500401 struct flock64 ll = {
402 .l_type = l->l_type,
403 .l_whence = l->l_whence,
404 .l_start = l->l_start,
405 .l_len = l->l_len,
406 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
J. Bruce Fieldsef12e722014-02-03 12:13:08 -0500408 return flock64_to_posix_lock(filp, fl, &ll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/* default lease lock manager operations */
412static void lease_break_callback(struct file_lock *fl)
413{
414 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
415}
416
Alexey Dobriyan7b021962009-09-21 17:01:12 -0700417static const struct lock_manager_operations lease_manager_ops = {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400418 .lm_break = lease_break_callback,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400419 .lm_change = lease_modify,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
422/*
423 * Initialize a lease, use the default lock manager operations
424 */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400425static int lease_init(struct file *filp, long type, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 {
Trond Myklebust75dff552006-05-07 23:02:42 -0400427 if (assign_type(fl, type) != 0)
428 return -EINVAL;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 fl->fl_owner = current->files;
431 fl->fl_pid = current->tgid;
432
433 fl->fl_file = filp;
434 fl->fl_flags = FL_LEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 fl->fl_start = 0;
436 fl->fl_end = OFFSET_MAX;
437 fl->fl_ops = NULL;
438 fl->fl_lmops = &lease_manager_ops;
439 return 0;
440}
441
442/* Allocate a file_lock initialised to this type of lease */
J. Bruce Fields0ec4f432012-07-23 15:17:17 -0400443static struct file_lock *lease_alloc(struct file *filp, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct file_lock *fl = locks_alloc_lock();
Trond Myklebust75dff552006-05-07 23:02:42 -0400446 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (fl == NULL)
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500449 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 error = lease_init(filp, type, fl);
Trond Myklebust75dff552006-05-07 23:02:42 -0400452 if (error) {
453 locks_free_lock(fl);
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500454 return ERR_PTR(error);
Trond Myklebust75dff552006-05-07 23:02:42 -0400455 }
J. Bruce Fieldse32b8ee2007-03-01 14:34:35 -0500456 return fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459/* Check if two locks overlap each other.
460 */
461static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
462{
463 return ((fl1->fl_end >= fl2->fl_start) &&
464 (fl2->fl_end >= fl1->fl_start));
465}
466
467/*
468 * Check whether two locks have the same owner.
469 */
Matt Mackall33443c42006-01-08 01:05:22 -0800470static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400472 if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return fl2->fl_lmops == fl1->fl_lmops &&
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400474 fl1->fl_lmops->lm_compare_owner(fl1, fl2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return fl1->fl_owner == fl2->fl_owner;
476}
477
Jeff Layton7012b022013-06-21 08:58:22 -0400478/* Must be called with the i_lock held! */
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500479static void locks_insert_global_locks(struct file_lock *fl)
Jeff Layton88974692013-06-21 08:58:14 -0400480{
Jeff Layton7012b022013-06-21 08:58:22 -0400481 lg_local_lock(&file_lock_lglock);
482 fl->fl_link_cpu = smp_processor_id();
483 hlist_add_head(&fl->fl_link, this_cpu_ptr(&file_lock_list));
484 lg_local_unlock(&file_lock_lglock);
Jeff Layton88974692013-06-21 08:58:14 -0400485}
486
Jeff Layton7012b022013-06-21 08:58:22 -0400487/* Must be called with the i_lock held! */
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500488static void locks_delete_global_locks(struct file_lock *fl)
Jeff Layton88974692013-06-21 08:58:14 -0400489{
Jeff Layton7012b022013-06-21 08:58:22 -0400490 /*
491 * Avoid taking lock if already unhashed. This is safe since this check
492 * is done while holding the i_lock, and new insertions into the list
493 * also require that it be held.
494 */
495 if (hlist_unhashed(&fl->fl_link))
496 return;
497 lg_local_lock_cpu(&file_lock_lglock, fl->fl_link_cpu);
Jeff Layton139ca042013-06-21 08:58:17 -0400498 hlist_del_init(&fl->fl_link);
Jeff Layton7012b022013-06-21 08:58:22 -0400499 lg_local_unlock_cpu(&file_lock_lglock, fl->fl_link_cpu);
Jeff Layton88974692013-06-21 08:58:14 -0400500}
501
Jeff Layton3999e492013-06-21 08:58:19 -0400502static unsigned long
503posix_owner_key(struct file_lock *fl)
504{
505 if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
506 return fl->fl_lmops->lm_owner_key(fl);
507 return (unsigned long)fl->fl_owner;
508}
509
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500510static void locks_insert_global_blocked(struct file_lock *waiter)
Jeff Layton88974692013-06-21 08:58:14 -0400511{
Jeff Layton3999e492013-06-21 08:58:19 -0400512 hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
Jeff Layton88974692013-06-21 08:58:14 -0400513}
514
Jeff Layton6ca10ed2014-02-03 12:13:07 -0500515static void locks_delete_global_blocked(struct file_lock *waiter)
Jeff Layton88974692013-06-21 08:58:14 -0400516{
Jeff Layton48f74182013-06-21 08:58:18 -0400517 hash_del(&waiter->fl_link);
Jeff Layton88974692013-06-21 08:58:14 -0400518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/* Remove waiter from blocker's block list.
521 * When blocker ends up pointing to itself then the list is empty.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400522 *
Jeff Layton7b2296a2013-06-21 08:58:20 -0400523 * Must be called with blocked_lock_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 */
Matt Mackall33443c42006-01-08 01:05:22 -0800525static void __locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Jeff Layton88974692013-06-21 08:58:14 -0400527 locks_delete_global_blocked(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 list_del_init(&waiter->fl_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 waiter->fl_next = NULL;
530}
531
Jeff Layton1a9e64a2013-06-21 08:58:10 -0400532static void locks_delete_block(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Jeff Layton7b2296a2013-06-21 08:58:20 -0400534 spin_lock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 __locks_delete_block(waiter);
Jeff Layton7b2296a2013-06-21 08:58:20 -0400536 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/* Insert waiter into blocker's block list.
540 * We use a circular list so that processes can be easily woken up in
541 * the order they blocked. The documentation doesn't require this but
542 * it seems like the reasonable thing to do.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400543 *
Jeff Layton7b2296a2013-06-21 08:58:20 -0400544 * Must be called with both the i_lock and blocked_lock_lock held. The fl_block
Jeff Layton46dad762014-02-03 12:13:06 -0500545 * list itself is protected by the blocked_lock_lock, but by ensuring that the
Jeff Layton7b2296a2013-06-21 08:58:20 -0400546 * i_lock is also held on insertions we can avoid taking the blocked_lock_lock
Jeff Layton4e8c7652013-06-21 08:58:16 -0400547 * in some cases when we see that the fl_block list is empty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
Jeff Layton1c8c6012013-06-21 08:58:15 -0400549static void __locks_insert_block(struct file_lock *blocker,
550 struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
J. Bruce Fields6dc0fe82006-03-26 01:37:24 -0800552 BUG_ON(!list_empty(&waiter->fl_block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 waiter->fl_next = blocker;
Jeff Layton88974692013-06-21 08:58:14 -0400554 list_add_tail(&waiter->fl_block, &blocker->fl_block);
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400555 if (IS_POSIX(blocker) && !IS_OFDLCK(blocker))
Jeff Layton1c8c6012013-06-21 08:58:15 -0400556 locks_insert_global_blocked(waiter);
557}
558
559/* Must be called with i_lock held. */
560static void locks_insert_block(struct file_lock *blocker,
561 struct file_lock *waiter)
562{
Jeff Layton7b2296a2013-06-21 08:58:20 -0400563 spin_lock(&blocked_lock_lock);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400564 __locks_insert_block(blocker, waiter);
Jeff Layton7b2296a2013-06-21 08:58:20 -0400565 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Jeff Layton1cb36012013-06-21 08:58:12 -0400568/*
569 * Wake up processes blocked waiting for blocker.
570 *
Jeff Layton1c8c6012013-06-21 08:58:15 -0400571 * Must be called with the inode->i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 */
573static void locks_wake_up_blocks(struct file_lock *blocker)
574{
Jeff Layton4e8c7652013-06-21 08:58:16 -0400575 /*
576 * Avoid taking global lock if list is empty. This is safe since new
577 * blocked requests are only added to the list under the i_lock, and
578 * the i_lock is always held here. Note that removal from the fl_block
579 * list does not require the i_lock, so we must recheck list_empty()
Jeff Layton7b2296a2013-06-21 08:58:20 -0400580 * after acquiring the blocked_lock_lock.
Jeff Layton4e8c7652013-06-21 08:58:16 -0400581 */
582 if (list_empty(&blocker->fl_block))
583 return;
584
Jeff Layton7b2296a2013-06-21 08:58:20 -0400585 spin_lock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 while (!list_empty(&blocker->fl_block)) {
Pavel Emelyanovf0c1cd02007-09-19 16:44:07 +0400587 struct file_lock *waiter;
588
589 waiter = list_first_entry(&blocker->fl_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct file_lock, fl_block);
591 __locks_delete_block(waiter);
J. Bruce Fields8fb47a42011-07-20 20:21:59 -0400592 if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
593 waiter->fl_lmops->lm_notify(waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 else
595 wake_up(&waiter->fl_wait);
596 }
Jeff Layton7b2296a2013-06-21 08:58:20 -0400597 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/* Insert file lock fl into an inode's lock list at the position indicated
601 * by pos. At the same time add the lock to the global file lock list.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400602 *
603 * Must be called with the i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
606{
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000607 fl->fl_nspid = get_pid(task_tgid(current));
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /* insert into file's list */
610 fl->fl_next = *pos;
611 *pos = fl;
Jeff Layton88974692013-06-21 08:58:14 -0400612
613 locks_insert_global_locks(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Jeff Layton24cbe782014-02-03 12:13:06 -0500616/**
617 * locks_delete_lock - Delete a lock and then free it.
618 * @thisfl_p: pointer that points to the fl_next field of the previous
619 * inode->i_flock list entry
620 *
621 * Unlink a lock from all lists and free the namespace reference, but don't
622 * free it yet. Wake up processes that are blocked waiting for this lock and
623 * notify the FS that the lock has been cleared.
Jeff Layton1c8c6012013-06-21 08:58:15 -0400624 *
625 * Must be called with the i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 */
Jeff Layton24cbe782014-02-03 12:13:06 -0500627static void locks_unlink_lock(struct file_lock **thisfl_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct file_lock *fl = *thisfl_p;
630
Jeff Layton88974692013-06-21 08:58:14 -0400631 locks_delete_global_locks(fl);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *thisfl_p = fl->fl_next;
634 fl->fl_next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000636 if (fl->fl_nspid) {
637 put_pid(fl->fl_nspid);
638 fl->fl_nspid = NULL;
639 }
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 locks_wake_up_blocks(fl);
Jeff Layton24cbe782014-02-03 12:13:06 -0500642}
643
644/*
645 * Unlink a lock from all lists and free it.
646 *
647 * Must be called with i_lock held!
648 */
649static void locks_delete_lock(struct file_lock **thisfl_p)
650{
651 struct file_lock *fl = *thisfl_p;
652
653 locks_unlink_lock(thisfl_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 locks_free_lock(fl);
655}
656
657/* Determine if lock sys_fl blocks lock caller_fl. Common functionality
658 * checks for shared/exclusive status of overlapping locks.
659 */
660static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
661{
662 if (sys_fl->fl_type == F_WRLCK)
663 return 1;
664 if (caller_fl->fl_type == F_WRLCK)
665 return 1;
666 return 0;
667}
668
669/* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
670 * checking before calling the locks_conflict().
671 */
672static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
673{
674 /* POSIX locks owned by the same process do not conflict with
675 * each other.
676 */
677 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
678 return (0);
679
680 /* Check whether they overlap */
681 if (!locks_overlap(caller_fl, sys_fl))
682 return 0;
683
684 return (locks_conflict(caller_fl, sys_fl));
685}
686
687/* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
688 * checking before calling the locks_conflict().
689 */
690static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
691{
692 /* FLOCK locks referring to the same filp do not conflict with
693 * each other.
694 */
695 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
696 return (0);
697 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
698 return 0;
699
700 return (locks_conflict(caller_fl, sys_fl));
701}
702
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400703void
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500704posix_test_lock(struct file *filp, struct file_lock *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct file_lock *cfl;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400707 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Jeff Layton1c8c6012013-06-21 08:58:15 -0400709 spin_lock(&inode->i_lock);
Al Viro496ad9a2013-01-23 17:07:38 -0500710 for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (!IS_POSIX(cfl))
712 continue;
J. Bruce Fieldsb842e242007-05-10 19:02:07 -0400713 if (posix_locks_conflict(fl, cfl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
715 }
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000716 if (cfl) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -0500717 __locks_copy_lock(fl, cfl);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000718 if (cfl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -0800719 fl->fl_pid = pid_vnr(cfl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +0000720 } else
J. Bruce Fields129a84d2007-05-10 18:38:43 -0400721 fl->fl_type = F_UNLCK;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400722 spin_unlock(&inode->i_lock);
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400723 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725EXPORT_SYMBOL(posix_test_lock);
726
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400727/*
728 * Deadlock detection:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400730 * We attempt to detect deadlocks that are due purely to posix file
731 * locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400733 * We assume that a task can be waiting for at most one lock at a time.
734 * So for any acquired lock, the process holding that lock may be
735 * waiting on at most one other lock. That lock in turns may be held by
736 * someone waiting for at most one other lock. Given a requested lock
737 * caller_fl which is about to wait for a conflicting lock block_fl, we
738 * follow this chain of waiters to ensure we are not about to create a
739 * cycle.
J. Bruce Fields97855b42007-10-30 11:20:02 -0400740 *
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400741 * Since we do this before we ever put a process to sleep on a lock, we
742 * are ensured that there is never a cycle; that is what guarantees that
743 * the while() loop in posix_locks_deadlock() eventually completes.
744 *
745 * Note: the above assumption may not be true when handling lock
746 * requests from a broken NFS client. It may also fail in the presence
747 * of tasks (such as posix threads) sharing the same open file table.
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400748 * To handle those cases, we just bail out after a few iterations.
Jeff Layton57b65322014-02-03 12:13:09 -0500749 *
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400750 * For FL_OFDLCK locks, the owner is the filp, not the files_struct.
Jeff Layton57b65322014-02-03 12:13:09 -0500751 * Because the owner is not even nominally tied to a thread of
752 * execution, the deadlock detection below can't reasonably work well. Just
753 * skip it for those.
754 *
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400755 * In principle, we could do a more limited deadlock detection on FL_OFDLCK
Jeff Layton57b65322014-02-03 12:13:09 -0500756 * locks that just checks for the case where two tasks are attempting to
757 * upgrade from read to write locks on the same inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 */
J. Bruce Fields97855b42007-10-30 11:20:02 -0400759
760#define MAX_DEADLK_ITERATIONS 10
761
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400762/* Find a lock that the owner of the given block_fl is blocking on. */
763static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
764{
765 struct file_lock *fl;
766
Jeff Layton3999e492013-06-21 08:58:19 -0400767 hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400768 if (posix_same_owner(fl, block_fl))
769 return fl->fl_next;
770 }
771 return NULL;
772}
773
Jeff Layton7b2296a2013-06-21 08:58:20 -0400774/* Must be called with the blocked_lock_lock held! */
Adrian Bunkb0904e12006-06-23 02:05:13 -0700775static int posix_locks_deadlock(struct file_lock *caller_fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct file_lock *block_fl)
777{
J. Bruce Fields97855b42007-10-30 11:20:02 -0400778 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Jeff Layton57b65322014-02-03 12:13:09 -0500780 /*
781 * This deadlock detector can't reasonably detect deadlocks with
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400782 * FL_OFDLCK locks, since they aren't owned by a process, per-se.
Jeff Layton57b65322014-02-03 12:13:09 -0500783 */
Jeff Laytoncff2fce2014-04-22 08:24:32 -0400784 if (IS_OFDLCK(caller_fl))
Jeff Layton57b65322014-02-03 12:13:09 -0500785 return 0;
786
J. Bruce Fieldsb5331842007-10-26 18:05:40 -0400787 while ((block_fl = what_owner_is_waiting_for(block_fl))) {
788 if (i++ > MAX_DEADLK_ITERATIONS)
789 return 0;
790 if (posix_same_owner(caller_fl, block_fl))
791 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793 return 0;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
J. Bruce Fields02888f42007-09-12 15:45:07 -0400797 * after any leases, but before any posix locks.
Trond Myklebustf475ae92006-06-29 16:38:32 -0400798 *
799 * Note that if called with an FL_EXISTS argument, the caller may determine
800 * whether or not a lock was successfully freed by testing the return
801 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 */
Trond Myklebust993dfa82006-03-31 02:30:55 -0800803static int flock_lock_file(struct file *filp, struct file_lock *request)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Trond Myklebust993dfa82006-03-31 02:30:55 -0800805 struct file_lock *new_fl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct file_lock **before;
Al Viro496ad9a2013-01-23 17:07:38 -0500807 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 int error = 0;
809 int found = 0;
810
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200811 if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
812 new_fl = locks_alloc_lock();
813 if (!new_fl)
814 return -ENOMEM;
815 }
816
Jeff Layton1c8c6012013-06-21 08:58:15 -0400817 spin_lock(&inode->i_lock);
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400818 if (request->fl_flags & FL_ACCESS)
819 goto find_conflict;
Pavel Emelyanov84d535a2007-09-11 16:38:13 +0400820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 for_each_lock(inode, before) {
822 struct file_lock *fl = *before;
823 if (IS_POSIX(fl))
824 break;
825 if (IS_LEASE(fl))
826 continue;
827 if (filp != fl->fl_file)
828 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800829 if (request->fl_type == fl->fl_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto out;
831 found = 1;
832 locks_delete_lock(before);
833 break;
834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Trond Myklebustf475ae92006-06-29 16:38:32 -0400836 if (request->fl_type == F_UNLCK) {
837 if ((request->fl_flags & FL_EXISTS) && !found)
838 error = -ENOENT;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800839 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -0400840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /*
843 * If a higher-priority process was blocked on the old file lock,
844 * give it the opportunity to lock the file.
845 */
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200846 if (found) {
Jeff Layton1c8c6012013-06-21 08:58:15 -0400847 spin_unlock(&inode->i_lock);
Frederic Weisbeckerdef01bc2009-07-16 15:44:29 +0200848 cond_resched();
Jeff Layton1c8c6012013-06-21 08:58:15 -0400849 spin_lock(&inode->i_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +0200850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400852find_conflict:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 for_each_lock(inode, before) {
854 struct file_lock *fl = *before;
855 if (IS_POSIX(fl))
856 break;
857 if (IS_LEASE(fl))
858 continue;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800859 if (!flock_locks_conflict(request, fl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 continue;
861 error = -EAGAIN;
Miklos Szeredibde74e42008-07-25 01:48:57 -0700862 if (!(request->fl_flags & FL_SLEEP))
863 goto out;
864 error = FILE_LOCK_DEFERRED;
865 locks_insert_block(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto out;
867 }
Trond Myklebustf07f18d2006-06-29 16:38:37 -0400868 if (request->fl_flags & FL_ACCESS)
869 goto out;
Trond Myklebust993dfa82006-03-31 02:30:55 -0800870 locks_copy_lock(new_fl, request);
Pavel Emelyanov0e2f6db2007-09-11 15:24:01 -0700871 locks_insert_lock(before, new_fl);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800872 new_fl = NULL;
Kirill Korotaev9cedc192006-06-14 17:59:35 +0400873 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875out:
Jeff Layton1c8c6012013-06-21 08:58:15 -0400876 spin_unlock(&inode->i_lock);
Trond Myklebust993dfa82006-03-31 02:30:55 -0800877 if (new_fl)
878 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return error;
880}
881
Marc Eshel150b3932007-01-18 16:15:35 -0500882static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 struct file_lock *fl;
Miklos Szeredi39005d02006-06-23 02:05:10 -0700885 struct file_lock *new_fl = NULL;
886 struct file_lock *new_fl2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct file_lock *left = NULL;
888 struct file_lock *right = NULL;
889 struct file_lock **before;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400890 int error;
891 bool added = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /*
894 * We may need two file_lock structures for this operation,
895 * so we get them in advance to avoid races.
Miklos Szeredi39005d02006-06-23 02:05:10 -0700896 *
897 * In some cases we can be sure, that no new locks will be needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 */
Miklos Szeredi39005d02006-06-23 02:05:10 -0700899 if (!(request->fl_flags & FL_ACCESS) &&
900 (request->fl_type != F_UNLCK ||
901 request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
902 new_fl = locks_alloc_lock();
903 new_fl2 = locks_alloc_lock();
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Jeff Layton1c8c6012013-06-21 08:58:15 -0400906 spin_lock(&inode->i_lock);
Jeff Layton1cb36012013-06-21 08:58:12 -0400907 /*
908 * New lock request. Walk all POSIX locks and look for conflicts. If
909 * there are any, either return error or put the request on the
Jeff Layton48f74182013-06-21 08:58:18 -0400910 * blocker's list of waiters and the global blocked_hash.
Jeff Layton1cb36012013-06-21 08:58:12 -0400911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (request->fl_type != F_UNLCK) {
913 for_each_lock(inode, before) {
J. Bruce Fields526985b2006-11-14 16:54:36 -0500914 fl = *before;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (!IS_POSIX(fl))
916 continue;
917 if (!posix_locks_conflict(request, fl))
918 continue;
Andy Adamson5842add2006-03-26 01:37:26 -0800919 if (conflock)
J. Bruce Fields1a747ee2008-04-24 10:08:22 -0400920 __locks_copy_lock(conflock, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 error = -EAGAIN;
922 if (!(request->fl_flags & FL_SLEEP))
923 goto out;
Jeff Layton1c8c6012013-06-21 08:58:15 -0400924 /*
925 * Deadlock detection and insertion into the blocked
926 * locks list must be done while holding the same lock!
927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 error = -EDEADLK;
Jeff Layton7b2296a2013-06-21 08:58:20 -0400929 spin_lock(&blocked_lock_lock);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400930 if (likely(!posix_locks_deadlock(request, fl))) {
931 error = FILE_LOCK_DEFERRED;
932 __locks_insert_block(fl, request);
933 }
Jeff Layton7b2296a2013-06-21 08:58:20 -0400934 spin_unlock(&blocked_lock_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto out;
936 }
937 }
938
939 /* If we're just looking for a conflict, we're done. */
940 error = 0;
941 if (request->fl_flags & FL_ACCESS)
942 goto out;
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 * Find the first old lock with the same owner as the new lock.
946 */
947
948 before = &inode->i_flock;
949
950 /* First skip locks owned by other processes. */
951 while ((fl = *before) && (!IS_POSIX(fl) ||
952 !posix_same_owner(request, fl))) {
953 before = &fl->fl_next;
954 }
955
Jeff Layton1cb36012013-06-21 08:58:12 -0400956 /* Process locks with this owner. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 while ((fl = *before) && posix_same_owner(request, fl)) {
958 /* Detect adjacent or overlapping regions (if same lock type)
959 */
960 if (request->fl_type == fl->fl_type) {
Olaf Kirch449231d2005-08-25 16:25:35 -0700961 /* In all comparisons of start vs end, use
962 * "start - 1" rather than "end + 1". If end
963 * is OFFSET_MAX, end + 1 will become negative.
964 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (fl->fl_end < request->fl_start - 1)
966 goto next_lock;
967 /* If the next lock in the list has entirely bigger
968 * addresses than the new one, insert the lock here.
969 */
Olaf Kirch449231d2005-08-25 16:25:35 -0700970 if (fl->fl_start - 1 > request->fl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 break;
972
973 /* If we come here, the new and old lock are of the
974 * same type and adjacent or overlapping. Make one
975 * lock yielding from the lower start address of both
976 * locks to the higher end address.
977 */
978 if (fl->fl_start > request->fl_start)
979 fl->fl_start = request->fl_start;
980 else
981 request->fl_start = fl->fl_start;
982 if (fl->fl_end < request->fl_end)
983 fl->fl_end = request->fl_end;
984 else
985 request->fl_end = fl->fl_end;
986 if (added) {
987 locks_delete_lock(before);
988 continue;
989 }
990 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -0400991 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 else {
994 /* Processing for different lock types is a bit
995 * more complex.
996 */
997 if (fl->fl_end < request->fl_start)
998 goto next_lock;
999 if (fl->fl_start > request->fl_end)
1000 break;
1001 if (request->fl_type == F_UNLCK)
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001002 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (fl->fl_start < request->fl_start)
1004 left = fl;
1005 /* If the next lock in the list has a higher end
1006 * address than the new one, insert the new one here.
1007 */
1008 if (fl->fl_end > request->fl_end) {
1009 right = fl;
1010 break;
1011 }
1012 if (fl->fl_start >= request->fl_start) {
1013 /* The new lock completely replaces an old
1014 * one (This may happen several times).
1015 */
1016 if (added) {
1017 locks_delete_lock(before);
1018 continue;
1019 }
1020 /* Replace the old lock with the new one.
1021 * Wake up anybody waiting for the old one,
1022 * as the change in lock type might satisfy
1023 * their needs.
1024 */
1025 locks_wake_up_blocks(fl);
1026 fl->fl_start = request->fl_start;
1027 fl->fl_end = request->fl_end;
1028 fl->fl_type = request->fl_type;
Trond Myklebust47831f32006-03-20 13:44:05 -05001029 locks_release_private(fl);
1030 locks_copy_private(fl, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 request = fl;
Jeff Laytonb9746ef2013-06-21 08:58:13 -04001032 added = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 }
1035 /* Go on to next lock.
1036 */
1037 next_lock:
1038 before = &fl->fl_next;
1039 }
1040
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001041 /*
Jeff Layton1cb36012013-06-21 08:58:12 -04001042 * The above code only modifies existing locks in case of merging or
1043 * replacing. If new lock(s) need to be inserted all modifications are
1044 * done below this, so it's safe yet to bail out.
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001045 */
1046 error = -ENOLCK; /* "no luck" */
1047 if (right && left == right && !new_fl2)
1048 goto out;
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 error = 0;
1051 if (!added) {
Trond Myklebustf475ae92006-06-29 16:38:32 -04001052 if (request->fl_type == F_UNLCK) {
1053 if (request->fl_flags & FL_EXISTS)
1054 error = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 goto out;
Trond Myklebustf475ae92006-06-29 16:38:32 -04001056 }
Miklos Szeredi0d9a4902006-06-23 02:05:09 -07001057
1058 if (!new_fl) {
1059 error = -ENOLCK;
1060 goto out;
1061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 locks_copy_lock(new_fl, request);
1063 locks_insert_lock(before, new_fl);
1064 new_fl = NULL;
1065 }
1066 if (right) {
1067 if (left == right) {
1068 /* The new lock breaks the old one in two pieces,
1069 * so we have to use the second new lock.
1070 */
1071 left = new_fl2;
1072 new_fl2 = NULL;
1073 locks_copy_lock(left, right);
1074 locks_insert_lock(before, left);
1075 }
1076 right->fl_start = request->fl_end + 1;
1077 locks_wake_up_blocks(right);
1078 }
1079 if (left) {
1080 left->fl_end = request->fl_start - 1;
1081 locks_wake_up_blocks(left);
1082 }
1083 out:
Jeff Layton1c8c6012013-06-21 08:58:15 -04001084 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
1086 * Free any unused locks.
1087 */
1088 if (new_fl)
1089 locks_free_lock(new_fl);
1090 if (new_fl2)
1091 locks_free_lock(new_fl2);
1092 return error;
1093}
1094
1095/**
1096 * posix_lock_file - Apply a POSIX-style lock to a file
1097 * @filp: The file to apply the lock to
1098 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001099 * @conflock: Place to return a copy of the conflicting lock, if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 *
1101 * Add a POSIX style lock to a file.
1102 * We merge adjacent & overlapping locks whenever possible.
1103 * POSIX locks are sorted by owner task, then by starting address
Trond Myklebustf475ae92006-06-29 16:38:32 -04001104 *
1105 * Note that if called with an FL_EXISTS argument, the caller may determine
1106 * whether or not a lock was successfully freed by testing the return
1107 * value for -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 */
Marc Eshel150b3932007-01-18 16:15:35 -05001109int posix_lock_file(struct file *filp, struct file_lock *fl,
Andy Adamson5842add2006-03-26 01:37:26 -08001110 struct file_lock *conflock)
1111{
Al Viro496ad9a2013-01-23 17:07:38 -05001112 return __posix_lock_file(file_inode(filp), fl, conflock);
Andy Adamson5842add2006-03-26 01:37:26 -08001113}
Marc Eshel150b3932007-01-18 16:15:35 -05001114EXPORT_SYMBOL(posix_lock_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116/**
1117 * posix_lock_file_wait - Apply a POSIX-style lock to a file
1118 * @filp: The file to apply the lock to
1119 * @fl: The lock to be applied
1120 *
1121 * Add a POSIX style lock to a file.
1122 * We merge adjacent & overlapping locks whenever possible.
1123 * POSIX locks are sorted by owner task, then by starting address
1124 */
1125int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
1126{
1127 int error;
1128 might_sleep ();
1129 for (;;) {
Marc Eshel150b3932007-01-18 16:15:35 -05001130 error = posix_lock_file(filp, fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001131 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 break;
1133 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1134 if (!error)
1135 continue;
1136
1137 locks_delete_block(fl);
1138 break;
1139 }
1140 return error;
1141}
1142EXPORT_SYMBOL(posix_lock_file_wait);
1143
1144/**
1145 * locks_mandatory_locked - Check for an active lock
Jeff Laytond7a06982014-03-10 09:54:15 -04001146 * @file: the file to check
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 *
1148 * Searches the inode's list of locks to find any POSIX locks which conflict.
1149 * This function is called from locks_verify_locked() only.
1150 */
Jeff Laytond7a06982014-03-10 09:54:15 -04001151int locks_mandatory_locked(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Jeff Laytond7a06982014-03-10 09:54:15 -04001153 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 fl_owner_t owner = current->files;
1155 struct file_lock *fl;
1156
1157 /*
1158 * Search the lock list for this inode for any POSIX locks.
1159 */
Jeff Layton1c8c6012013-06-21 08:58:15 -04001160 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1162 if (!IS_POSIX(fl))
1163 continue;
Jeff Laytond7a06982014-03-10 09:54:15 -04001164 if (fl->fl_owner != owner && fl->fl_owner != (fl_owner_t)file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 break;
1166 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04001167 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return fl ? -EAGAIN : 0;
1169}
1170
1171/**
1172 * locks_mandatory_area - Check for a conflicting lock
1173 * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
1174 * for shared
1175 * @inode: the file to check
1176 * @filp: how the file was opened (if it was)
1177 * @offset: start of area to check
1178 * @count: length of area to check
1179 *
1180 * Searches the inode's list of locks to find any POSIX locks which conflict.
1181 * This function is called from rw_verify_area() and
1182 * locks_verify_truncate().
1183 */
1184int locks_mandatory_area(int read_write, struct inode *inode,
1185 struct file *filp, loff_t offset,
1186 size_t count)
1187{
1188 struct file_lock fl;
1189 int error;
Jeff Layton29723ad2014-03-10 09:54:19 -04001190 bool sleep = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 locks_init_lock(&fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 fl.fl_pid = current->tgid;
1194 fl.fl_file = filp;
1195 fl.fl_flags = FL_POSIX | FL_ACCESS;
1196 if (filp && !(filp->f_flags & O_NONBLOCK))
Jeff Layton29723ad2014-03-10 09:54:19 -04001197 sleep = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
1199 fl.fl_start = offset;
1200 fl.fl_end = offset + count - 1;
1201
1202 for (;;) {
Jeff Layton29723ad2014-03-10 09:54:19 -04001203 if (filp) {
1204 fl.fl_owner = (fl_owner_t)filp;
1205 fl.fl_flags &= ~FL_SLEEP;
1206 error = __posix_lock_file(inode, &fl, NULL);
1207 if (!error)
1208 break;
1209 }
1210
1211 if (sleep)
1212 fl.fl_flags |= FL_SLEEP;
1213 fl.fl_owner = current->files;
Marc Eshel150b3932007-01-18 16:15:35 -05001214 error = __posix_lock_file(inode, &fl, NULL);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001215 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 break;
1217 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
1218 if (!error) {
1219 /*
1220 * If we've been sleeping someone might have
1221 * changed the permissions behind our back.
1222 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07001223 if (__mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 continue;
1225 }
1226
1227 locks_delete_block(&fl);
1228 break;
1229 }
1230
1231 return error;
1232}
1233
1234EXPORT_SYMBOL(locks_mandatory_area);
1235
J. Bruce Fields778fc542011-07-26 18:25:49 -04001236static void lease_clear_pending(struct file_lock *fl, int arg)
1237{
1238 switch (arg) {
1239 case F_UNLCK:
1240 fl->fl_flags &= ~FL_UNLOCK_PENDING;
1241 /* fall through: */
1242 case F_RDLCK:
1243 fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1244 }
1245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247/* We already had a lease on this file; just change its type */
1248int lease_modify(struct file_lock **before, int arg)
1249{
1250 struct file_lock *fl = *before;
1251 int error = assign_type(fl, arg);
1252
1253 if (error)
1254 return error;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001255 lease_clear_pending(fl, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 locks_wake_up_blocks(fl);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001257 if (arg == F_UNLCK) {
1258 struct file *filp = fl->fl_file;
1259
1260 f_delown(filp);
1261 filp->f_owner.signum = 0;
J. Bruce Fields96d6d592012-07-27 16:18:00 -04001262 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
1263 if (fl->fl_fasync != NULL) {
1264 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
1265 fl->fl_fasync = NULL;
1266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 locks_delete_lock(before);
Filipe Brandenburger3b6e2722012-07-27 00:42:52 -04001268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
1270}
1271
1272EXPORT_SYMBOL(lease_modify);
1273
J. Bruce Fields778fc542011-07-26 18:25:49 -04001274static bool past_time(unsigned long then)
1275{
1276 if (!then)
1277 /* 0 is a special value meaning "this never expires": */
1278 return false;
1279 return time_after(jiffies, then);
1280}
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282static void time_out_leases(struct inode *inode)
1283{
1284 struct file_lock **before;
1285 struct file_lock *fl;
1286
1287 before = &inode->i_flock;
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04001288 while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001289 if (past_time(fl->fl_downgrade_time))
1290 lease_modify(before, F_RDLCK);
1291 if (past_time(fl->fl_break_time))
1292 lease_modify(before, F_UNLCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (fl == *before) /* lease_modify may have freed fl */
1294 before = &fl->fl_next;
1295 }
1296}
1297
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001298static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1299{
1300 if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1301 return false;
1302 return locks_conflict(breaker, lease);
1303}
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305/**
1306 * __break_lease - revoke all outstanding leases on file
1307 * @inode: the inode of the file to return
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001308 * @mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1309 * break all leases
1310 * @type: FL_LEASE: break leases and delegations; FL_DELEG: break
1311 * only delegations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 *
david m. richter87250dd2007-05-09 16:10:27 -04001313 * break_lease (inlined for speed) has checked there already is at least
1314 * some kind of lock (maybe a lease) on this file. Leases are broken on
1315 * a call to open() or truncate(). This function can sleep unless you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 * specified %O_NONBLOCK to your open().
1317 */
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001318int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
J. Bruce Fields778fc542011-07-26 18:25:49 -04001320 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct file_lock *new_fl, *flock;
1322 struct file_lock *fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 unsigned long break_time;
1324 int i_have_this_lease = 0;
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001325 bool lease_conflict = false;
Al Viro8737c932009-12-24 06:47:55 -05001326 int want_write = (mode & O_ACCMODE) != O_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Al Viro8737c932009-12-24 06:47:55 -05001328 new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001329 if (IS_ERR(new_fl))
1330 return PTR_ERR(new_fl);
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001331 new_fl->fl_flags = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Jeff Layton1c8c6012013-06-21 08:58:15 -04001333 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 time_out_leases(inode);
1336
1337 flock = inode->i_flock;
1338 if ((flock == NULL) || !IS_LEASE(flock))
1339 goto out;
1340
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001341 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1342 if (leases_conflict(fl, new_fl)) {
1343 lease_conflict = true;
1344 if (fl->fl_owner == current->files)
1345 i_have_this_lease = 1;
1346 }
1347 }
1348 if (!lease_conflict)
J. Bruce Fields778fc542011-07-26 18:25:49 -04001349 goto out;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break_time = 0;
1352 if (lease_break_time > 0) {
1353 break_time = jiffies + lease_break_time * HZ;
1354 if (break_time == 0)
1355 break_time++; /* so that 0 means no break time */
1356 }
1357
1358 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001359 if (!leases_conflict(fl, new_fl))
1360 continue;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001361 if (want_write) {
1362 if (fl->fl_flags & FL_UNLOCK_PENDING)
1363 continue;
1364 fl->fl_flags |= FL_UNLOCK_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 fl->fl_break_time = break_time;
J. Bruce Fields778fc542011-07-26 18:25:49 -04001366 } else {
1367 if (lease_breaking(flock))
1368 continue;
1369 fl->fl_flags |= FL_DOWNGRADE_PENDING;
1370 fl->fl_downgrade_time = break_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
J. Bruce Fields778fc542011-07-26 18:25:49 -04001372 fl->fl_lmops->lm_break(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374
1375 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1376 error = -EWOULDBLOCK;
1377 goto out;
1378 }
1379
1380restart:
1381 break_time = flock->fl_break_time;
Jeff Laytonf1c6bb22014-04-15 06:17:49 -04001382 if (break_time != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 break_time -= jiffies;
Jeff Laytonf1c6bb22014-04-15 06:17:49 -04001384 if (break_time == 0)
1385 break_time++;
Matthew Wilcox4321e012008-01-14 21:28:30 -07001386 locks_insert_block(flock, new_fl);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001387 spin_unlock(&inode->i_lock);
Matthew Wilcox4321e012008-01-14 21:28:30 -07001388 error = wait_event_interruptible_timeout(new_fl->fl_wait,
1389 !new_fl->fl_next, break_time);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001390 spin_lock(&inode->i_lock);
1391 locks_delete_block(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (error >= 0) {
1393 if (error == 0)
1394 time_out_leases(inode);
J. Bruce Fields778fc542011-07-26 18:25:49 -04001395 /*
1396 * Wait for the next conflicting lease that has not been
1397 * broken yet
1398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1400 flock = flock->fl_next) {
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001401 if (leases_conflict(new_fl, flock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 goto restart;
1403 }
1404 error = 0;
1405 }
1406
1407out:
Jeff Layton1c8c6012013-06-21 08:58:15 -04001408 spin_unlock(&inode->i_lock);
Linus Torvalds6d4b9e32011-12-26 10:25:26 -08001409 locks_free_lock(new_fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return error;
1411}
1412
1413EXPORT_SYMBOL(__break_lease);
1414
1415/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001416 * lease_get_mtime - get the last modified time of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 * @inode: the inode
1418 * @time: pointer to a timespec which will contain the last modified time
1419 *
1420 * This is to force NFS clients to flush their caches for files with
1421 * exclusive leases. The justification is that if someone has an
Randy Dunlapa6b91912008-03-19 17:01:00 -07001422 * exclusive lease, then they could be modifying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 */
1424void lease_get_mtime(struct inode *inode, struct timespec *time)
1425{
1426 struct file_lock *flock = inode->i_flock;
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04001427 if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 *time = current_fs_time(inode->i_sb);
1429 else
1430 *time = inode->i_mtime;
1431}
1432
1433EXPORT_SYMBOL(lease_get_mtime);
1434
1435/**
1436 * fcntl_getlease - Enquire what lease is currently active
1437 * @filp: the file
1438 *
1439 * The value returned by this function will be one of
1440 * (if no lease break is pending):
1441 *
1442 * %F_RDLCK to indicate a shared lease is held.
1443 *
1444 * %F_WRLCK to indicate an exclusive lease is held.
1445 *
1446 * %F_UNLCK to indicate no lease is held.
1447 *
1448 * (if a lease break is pending):
1449 *
1450 * %F_RDLCK to indicate an exclusive lease needs to be
1451 * changed to a shared lease (or removed).
1452 *
1453 * %F_UNLCK to indicate the lease needs to be removed.
1454 *
1455 * XXX: sfr & willy disagree over whether F_INPROGRESS
1456 * should be returned to userspace.
1457 */
1458int fcntl_getlease(struct file *filp)
1459{
1460 struct file_lock *fl;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001461 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 int type = F_UNLCK;
1463
Jeff Layton1c8c6012013-06-21 08:58:15 -04001464 spin_lock(&inode->i_lock);
Al Viro496ad9a2013-01-23 17:07:38 -05001465 time_out_leases(file_inode(filp));
1466 for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 fl = fl->fl_next) {
1468 if (fl->fl_file == filp) {
J. Bruce Fields778fc542011-07-26 18:25:49 -04001469 type = target_leasetype(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 break;
1471 }
1472 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04001473 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return type;
1475}
1476
Jeff Layton24cbe782014-02-03 12:13:06 -05001477/**
1478 * check_conflicting_open - see if the given dentry points to a file that has
1479 * an existing open that would conflict with the
1480 * desired lease.
1481 * @dentry: dentry to check
1482 * @arg: type of lease that we're trying to acquire
1483 *
1484 * Check to see if there's an existing open fd on this file that would
1485 * conflict with the lease we're trying to set.
1486 */
1487static int
1488check_conflicting_open(const struct dentry *dentry, const long arg)
1489{
1490 int ret = 0;
1491 struct inode *inode = dentry->d_inode;
1492
1493 if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
1494 return -EAGAIN;
1495
1496 if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
1497 (atomic_read(&inode->i_count) > 1)))
1498 ret = -EAGAIN;
1499
1500 return ret;
1501}
1502
Jeff Laytond4f22d12013-06-21 08:58:11 -04001503static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
KAMBAROV, ZAUR7eaae282005-07-07 17:57:06 -07001505 struct file_lock *fl, **before, **my_before = NULL, *lease;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001506 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 struct inode *inode = dentry->d_inode;
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001508 bool is_deleg = (*flp)->fl_flags & FL_DELEG;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001509 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
J. Bruce Fields096657b2010-10-30 17:31:14 -04001511 lease = *flp;
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001512 /*
1513 * In the delegation case we need mutual exclusion with
1514 * a number of operations that take the i_mutex. We trylock
1515 * because delegations are an optional optimization, and if
1516 * there's some chance of a conflict--we'd rather not
1517 * bother, maybe that's a sign this just isn't a good file to
1518 * hand out a delegation on.
1519 */
1520 if (is_deleg && !mutex_trylock(&inode->i_mutex))
1521 return -EAGAIN;
1522
1523 if (is_deleg && arg == F_WRLCK) {
1524 /* Write delegations are not currently supported: */
Dan Carpenter4fdb7932013-11-13 10:56:27 +03001525 mutex_unlock(&inode->i_mutex);
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001526 WARN_ON_ONCE(1);
1527 return -EINVAL;
1528 }
J. Bruce Fields096657b2010-10-30 17:31:14 -04001529
Jeff Layton24cbe782014-02-03 12:13:06 -05001530 error = check_conflicting_open(dentry, arg);
1531 if (error)
J. Bruce Fields096657b2010-10-30 17:31:14 -04001532 goto out;
Pavel Emelyanov85c59582007-09-20 12:45:02 +04001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /*
1535 * At this point, we know that if there is an exclusive
1536 * lease on this file, then we hold it on this filp
1537 * (otherwise our open of this file would have blocked).
1538 * And if we are trying to acquire an exclusive lease,
1539 * then the file is not open by anyone (including us)
1540 * except for this filp.
1541 */
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001542 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 for (before = &inode->i_flock;
1544 ((fl = *before) != NULL) && IS_LEASE(fl);
1545 before = &fl->fl_next) {
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001546 if (fl->fl_file == filp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 my_before = before;
J. Bruce Fieldsc1f24ef2011-08-19 10:59:49 -04001548 continue;
1549 }
1550 /*
1551 * No exclusive leases if someone else has a lease on
1552 * this file:
1553 */
1554 if (arg == F_WRLCK)
1555 goto out;
1556 /*
1557 * Modifying our existing lease is OK, but no getting a
1558 * new lease if someone else is opening for write:
1559 */
1560 if (fl->fl_flags & FL_UNLOCK_PENDING)
1561 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (my_before != NULL) {
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001565 error = lease->fl_lmops->lm_change(my_before, arg);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001566 if (!error)
1567 *flp = *my_before;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 goto out;
1569 }
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 error = -EINVAL;
1572 if (!leases_enable)
1573 goto out;
1574
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001575 locks_insert_lock(before, lease);
Jeff Layton24cbe782014-02-03 12:13:06 -05001576 /*
1577 * The check in break_lease() is lockless. It's possible for another
1578 * open to race in after we did the earlier check for a conflicting
1579 * open but before the lease was inserted. Check again for a
1580 * conflicting open and cancel the lease if there is one.
1581 *
1582 * We also add a barrier here to ensure that the insertion of the lock
1583 * precedes these checks.
1584 */
1585 smp_mb();
1586 error = check_conflicting_open(dentry, arg);
1587 if (error)
1588 locks_unlink_lock(flp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589out:
J. Bruce Fieldsdf4e8d22012-03-05 13:18:59 -05001590 if (is_deleg)
1591 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return error;
1593}
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001594
Jeff Laytond4f22d12013-06-21 08:58:11 -04001595static int generic_delete_lease(struct file *filp, struct file_lock **flp)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001596{
1597 struct file_lock *fl, **before;
1598 struct dentry *dentry = filp->f_path.dentry;
1599 struct inode *inode = dentry->d_inode;
1600
1601 for (before = &inode->i_flock;
1602 ((fl = *before) != NULL) && IS_LEASE(fl);
1603 before = &fl->fl_next) {
1604 if (fl->fl_file != filp)
1605 continue;
1606 return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
1607 }
1608 return -EAGAIN;
1609}
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611/**
1612 * generic_setlease - sets a lease on an open file
1613 * @filp: file pointer
1614 * @arg: type of lease to obtain
1615 * @flp: input - file_lock to use, output - file_lock inserted
1616 *
1617 * The (input) flp->fl_lmops->lm_break function is required
1618 * by break_lease().
1619 *
Jeff Layton1c8c6012013-06-21 08:58:15 -04001620 * Called with inode->i_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
1622int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
1623{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 struct dentry *dentry = filp->f_path.dentry;
1625 struct inode *inode = dentry->d_inode;
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001626 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08001628 if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001629 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (!S_ISREG(inode->i_mode))
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001631 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 error = security_file_lock(filp, arg);
1633 if (error)
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001634 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 time_out_leases(inode);
1637
1638 BUG_ON(!(*flp)->fl_lmops->lm_break);
1639
J. Bruce Fields8335ebd2011-09-21 08:34:32 -04001640 switch (arg) {
1641 case F_UNLCK:
1642 return generic_delete_lease(filp, flp);
1643 case F_RDLCK:
1644 case F_WRLCK:
1645 return generic_add_lease(filp, arg, flp);
1646 default:
Dave Jones8d657eb2012-07-13 13:35:36 -04001647 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
Christoph Hellwig0af1a452007-07-31 00:39:22 -07001650EXPORT_SYMBOL(generic_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001652static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1653{
Al Viro72c2d532013-09-22 16:27:52 -04001654 if (filp->f_op->setlease)
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001655 return filp->f_op->setlease(filp, arg, lease);
1656 else
1657 return generic_setlease(filp, arg, lease);
1658}
1659
1660/**
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001661 * vfs_setlease - sets a lease on an open file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 * @filp: file pointer
1663 * @arg: type of lease to obtain
1664 * @lease: file_lock to use
1665 *
1666 * Call this to establish a lease on the file.
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001667 * The (*lease)->fl_lmops->lm_break operation must be set; if not,
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001668 * break_lease will oops!
1669 *
1670 * This will call the filesystem's setlease file method, if
1671 * defined. Note that there is no getlease method; instead, the
1672 * filesystem setlease method should call back to setlease() to
1673 * add a lease to the inode's lease list, where fcntl_getlease() can
1674 * find it. Since fcntl_getlease() only reports whether the current
1675 * task holds a lease, a cluster filesystem need only do this for
1676 * leases held by processes on this node.
1677 *
1678 * There is also no break_lease method; filesystems that
Adam Buchbinderc9404c92009-12-18 15:40:42 -05001679 * handle their own leases should break leases themselves from the
J. Bruce Fieldsf9ffed22006-11-14 15:51:40 -05001680 * filesystem's open, create, and (on truncate) setattr methods.
1681 *
1682 * Warning: the only current setlease methods exist only to disable
1683 * leases in certain cases. More vfs changes may be required to
1684 * allow a full filesystem lease implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
1686
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001687int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Jeff Layton1c8c6012013-06-21 08:58:15 -04001689 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 int error;
1691
Jeff Layton1c8c6012013-06-21 08:58:15 -04001692 spin_lock(&inode->i_lock);
Arnd Bergmannb89f4322010-09-18 15:09:31 +02001693 error = __vfs_setlease(filp, arg, lease);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001694 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 return error;
1697}
J. Bruce Fieldsa9933ce2007-06-07 17:09:49 -04001698EXPORT_SYMBOL_GPL(vfs_setlease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001700static int do_fcntl_delete_lease(struct file *filp)
1701{
1702 struct file_lock fl, *flp = &fl;
1703
1704 lease_init(filp, F_UNLCK, flp);
1705
1706 return vfs_setlease(filp, F_UNLCK, &flp);
1707}
1708
1709static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001711 struct file_lock *fl, *ret;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001712 struct inode *inode = file_inode(filp);
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001713 struct fasync_struct *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 int error;
1715
Arnd Bergmannc5b1f0d2010-10-27 15:46:08 +02001716 fl = lease_alloc(filp, arg);
1717 if (IS_ERR(fl))
1718 return PTR_ERR(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001720 new = fasync_alloc();
1721 if (!new) {
1722 locks_free_lock(fl);
1723 return -ENOMEM;
1724 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001725 ret = fl;
Jeff Layton1c8c6012013-06-21 08:58:15 -04001726 spin_lock(&inode->i_lock);
J. Bruce Fields8896b932010-11-03 18:09:18 -04001727 error = __vfs_setlease(filp, arg, &ret);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001728 if (error) {
Jeff Layton1c8c6012013-06-21 08:58:15 -04001729 spin_unlock(&inode->i_lock);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001730 locks_free_lock(fl);
1731 goto out_free_fasync;
1732 }
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001733 if (ret != fl)
1734 locks_free_lock(fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001736 /*
1737 * fasync_insert_entry() returns the old entry if any.
1738 * If there was no old entry, then it used 'new' and
1739 * inserted it into the fasync list. Clear new so that
1740 * we don't release it here.
1741 */
J. Bruce Fields3df057a2010-11-03 16:49:44 -04001742 if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001743 new = NULL;
1744
J. Bruce Fields8896b932010-11-03 18:09:18 -04001745 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
Jeff Layton1c8c6012013-06-21 08:58:15 -04001746 spin_unlock(&inode->i_lock);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001747
1748out_free_fasync:
Linus Torvaldsf7347ce2010-10-27 12:38:12 -04001749 if (new)
1750 fasync_free(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return error;
1752}
1753
1754/**
J. Bruce Fields0ceaf6c2010-10-30 17:31:13 -04001755 * fcntl_setlease - sets a lease on an open file
1756 * @fd: open file descriptor
1757 * @filp: file pointer
1758 * @arg: type of lease to obtain
1759 *
1760 * Call this fcntl to establish a lease on the file.
1761 * Note that you also need to call %F_SETSIG to
1762 * receive a signal when the lease is broken.
1763 */
1764int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1765{
1766 if (arg == F_UNLCK)
1767 return do_fcntl_delete_lease(filp);
1768 return do_fcntl_add_lease(fd, filp, arg);
1769}
1770
1771/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 * flock_lock_file_wait - Apply a FLOCK-style lock to a file
1773 * @filp: The file to apply the lock to
1774 * @fl: The lock to be applied
1775 *
1776 * Add a FLOCK style lock to a file.
1777 */
1778int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
1779{
1780 int error;
1781 might_sleep();
1782 for (;;) {
1783 error = flock_lock_file(filp, fl);
Miklos Szeredibde74e42008-07-25 01:48:57 -07001784 if (error != FILE_LOCK_DEFERRED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 break;
1786 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
1787 if (!error)
1788 continue;
1789
1790 locks_delete_block(fl);
1791 break;
1792 }
1793 return error;
1794}
1795
1796EXPORT_SYMBOL(flock_lock_file_wait);
1797
1798/**
1799 * sys_flock: - flock() system call.
1800 * @fd: the file descriptor to lock.
1801 * @cmd: the type of lock to apply.
1802 *
1803 * Apply a %FL_FLOCK style lock to an open file descriptor.
1804 * The @cmd can be one of
1805 *
1806 * %LOCK_SH -- a shared lock.
1807 *
1808 * %LOCK_EX -- an exclusive lock.
1809 *
1810 * %LOCK_UN -- remove an existing lock.
1811 *
1812 * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
1813 *
1814 * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
1815 * processes read and write access respectively.
1816 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001817SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
Al Viro2903ff02012-08-28 12:52:22 -04001819 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 struct file_lock *lock;
1821 int can_sleep, unlock;
1822 int error;
1823
1824 error = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001825 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto out;
1827
1828 can_sleep = !(cmd & LOCK_NB);
1829 cmd &= ~LOCK_NB;
1830 unlock = (cmd == LOCK_UN);
1831
Al Viroaeb5d722008-09-02 15:28:45 -04001832 if (!unlock && !(cmd & LOCK_MAND) &&
Al Viro2903ff02012-08-28 12:52:22 -04001833 !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 goto out_putf;
1835
Al Viro2903ff02012-08-28 12:52:22 -04001836 error = flock_make_lock(f.file, &lock, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (error)
1838 goto out_putf;
1839 if (can_sleep)
1840 lock->fl_flags |= FL_SLEEP;
1841
Al Viro2903ff02012-08-28 12:52:22 -04001842 error = security_file_lock(f.file, lock->fl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (error)
1844 goto out_free;
1845
Al Viro72c2d532013-09-22 16:27:52 -04001846 if (f.file->f_op->flock)
Al Viro2903ff02012-08-28 12:52:22 -04001847 error = f.file->f_op->flock(f.file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 (can_sleep) ? F_SETLKW : F_SETLK,
1849 lock);
1850 else
Al Viro2903ff02012-08-28 12:52:22 -04001851 error = flock_lock_file_wait(f.file, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 out_free:
Trond Myklebust993dfa82006-03-31 02:30:55 -08001854 locks_free_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 out_putf:
Al Viro2903ff02012-08-28 12:52:22 -04001857 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 out:
1859 return error;
1860}
1861
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001862/**
1863 * vfs_test_lock - test file byte range lock
1864 * @filp: The file to test lock for
J. Bruce Fields6924c552007-05-11 16:22:50 -04001865 * @fl: The lock to test; also used to hold result
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001866 *
1867 * Returns -ERRNO on failure. Indicates presence of conflicting lock by
1868 * setting conf->fl_type to something other than F_UNLCK.
1869 */
1870int vfs_test_lock(struct file *filp, struct file_lock *fl)
1871{
Al Viro72c2d532013-09-22 16:27:52 -04001872 if (filp->f_op->lock)
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001873 return filp->f_op->lock(filp, F_GETLK, fl);
1874 posix_test_lock(filp, fl);
1875 return 0;
1876}
1877EXPORT_SYMBOL_GPL(vfs_test_lock);
1878
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001879static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1880{
Jeff Laytoncff2fce2014-04-22 08:24:32 -04001881 flock->l_pid = IS_OFDLCK(fl) ? -1 : fl->fl_pid;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001882#if BITS_PER_LONG == 32
1883 /*
1884 * Make sure we can represent the posix lock via
1885 * legacy 32bit flock.
1886 */
1887 if (fl->fl_start > OFFT_OFFSET_MAX)
1888 return -EOVERFLOW;
1889 if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1890 return -EOVERFLOW;
1891#endif
1892 flock->l_start = fl->fl_start;
1893 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1894 fl->fl_end - fl->fl_start + 1;
1895 flock->l_whence = 0;
J. Bruce Fields129a84d2007-05-10 18:38:43 -04001896 flock->l_type = fl->fl_type;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001897 return 0;
1898}
1899
1900#if BITS_PER_LONG == 32
1901static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1902{
Jeff Laytoncff2fce2014-04-22 08:24:32 -04001903 flock->l_pid = IS_OFDLCK(fl) ? -1 : fl->fl_pid;
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001904 flock->l_start = fl->fl_start;
1905 flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1906 fl->fl_end - fl->fl_start + 1;
1907 flock->l_whence = 0;
1908 flock->l_type = fl->fl_type;
1909}
1910#endif
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912/* Report the first existing lock that would conflict with l.
1913 * This implements the F_GETLK command of fcntl().
1914 */
Jeff Laytonc1e62b82014-02-03 12:13:09 -05001915int fcntl_getlk(struct file *filp, unsigned int cmd, struct flock __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001917 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 struct flock flock;
1919 int error;
1920
1921 error = -EFAULT;
1922 if (copy_from_user(&flock, l, sizeof(flock)))
1923 goto out;
1924 error = -EINVAL;
1925 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1926 goto out;
1927
1928 error = flock_to_posix_lock(filp, &file_lock, &flock);
1929 if (error)
1930 goto out;
1931
Jeff Layton0d3f7a22014-04-22 08:23:58 -04001932 if (cmd == F_OFD_GETLK) {
Jeff Layton90478932014-03-04 10:30:23 -05001933 error = -EINVAL;
1934 if (flock.l_pid != 0)
1935 goto out;
1936
Jeff Layton5d50ffd2014-02-03 12:13:10 -05001937 cmd = F_GETLK;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04001938 file_lock.fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05001939 file_lock.fl_owner = (fl_owner_t)filp;
1940 }
1941
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05001942 error = vfs_test_lock(filp, &file_lock);
1943 if (error)
1944 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001946 flock.l_type = file_lock.fl_type;
1947 if (file_lock.fl_type != F_UNLCK) {
1948 error = posix_lock_to_flock(&flock, &file_lock);
J. Bruce Fieldsc2fa1b82007-02-20 16:10:11 -05001949 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952 error = -EFAULT;
1953 if (!copy_to_user(l, &flock, sizeof(flock)))
1954 error = 0;
1955out:
1956 return error;
1957}
1958
Marc Eshel7723ec92007-01-18 15:08:55 -05001959/**
1960 * vfs_lock_file - file byte range lock
1961 * @filp: The file to apply the lock to
1962 * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
1963 * @fl: The lock to be applied
Marc Eshel150b3932007-01-18 16:15:35 -05001964 * @conf: Place to return a copy of the conflicting lock, if found.
1965 *
1966 * A caller that doesn't care about the conflicting lock may pass NULL
1967 * as the final argument.
1968 *
1969 * If the filesystem defines a private ->lock() method, then @conf will
1970 * be left unchanged; so a caller that cares should initialize it to
1971 * some acceptable default.
Marc Eshel2beb6612006-12-05 23:31:28 -05001972 *
1973 * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
1974 * locks, the ->lock() interface may return asynchronously, before the lock has
1975 * been granted or denied by the underlying filesystem, if (and only if)
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001976 * lm_grant is set. Callers expecting ->lock() to return asynchronously
Marc Eshel2beb6612006-12-05 23:31:28 -05001977 * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
1978 * the request is for a blocking lock. When ->lock() does return asynchronously,
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001979 * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
Marc Eshel2beb6612006-12-05 23:31:28 -05001980 * request completes.
1981 * If the request is for non-blocking lock the file system should return
Miklos Szeredibde74e42008-07-25 01:48:57 -07001982 * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1983 * with the result. If the request timed out the callback routine will return a
Marc Eshel2beb6612006-12-05 23:31:28 -05001984 * nonzero return code and the file system should release the lock. The file
1985 * system is also responsible to keep a corresponding posix lock when it
1986 * grants a lock so the VFS can find out which locks are locally held and do
1987 * the correct lock cleanup when required.
1988 * The underlying filesystem must not drop the kernel lock or call
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001989 * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
Marc Eshel2beb6612006-12-05 23:31:28 -05001990 * return code.
Marc Eshel7723ec92007-01-18 15:08:55 -05001991 */
Marc Eshel150b3932007-01-18 16:15:35 -05001992int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
Marc Eshel7723ec92007-01-18 15:08:55 -05001993{
Al Viro72c2d532013-09-22 16:27:52 -04001994 if (filp->f_op->lock)
Marc Eshel7723ec92007-01-18 15:08:55 -05001995 return filp->f_op->lock(filp, cmd, fl);
1996 else
Marc Eshel150b3932007-01-18 16:15:35 -05001997 return posix_lock_file(filp, fl, conf);
Marc Eshel7723ec92007-01-18 15:08:55 -05001998}
1999EXPORT_SYMBOL_GPL(vfs_lock_file);
2000
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002001static int do_lock_file_wait(struct file *filp, unsigned int cmd,
2002 struct file_lock *fl)
2003{
2004 int error;
2005
2006 error = security_file_lock(filp, fl->fl_type);
2007 if (error)
2008 return error;
2009
Miklos Szeredi764c76b2008-07-25 01:48:58 -07002010 for (;;) {
2011 error = vfs_lock_file(filp, cmd, fl, NULL);
2012 if (error != FILE_LOCK_DEFERRED)
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002013 break;
Miklos Szeredi764c76b2008-07-25 01:48:58 -07002014 error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
2015 if (!error)
2016 continue;
2017
2018 locks_delete_block(fl);
2019 break;
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002020 }
2021
2022 return error;
2023}
2024
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002025/* Ensure that fl->fl_filp has compatible f_mode for F_SETLK calls */
2026static int
2027check_fmode_for_setlk(struct file_lock *fl)
2028{
2029 switch (fl->fl_type) {
2030 case F_RDLCK:
2031 if (!(fl->fl_file->f_mode & FMODE_READ))
2032 return -EBADF;
2033 break;
2034 case F_WRLCK:
2035 if (!(fl->fl_file->f_mode & FMODE_WRITE))
2036 return -EBADF;
2037 }
2038 return 0;
2039}
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041/* Apply the lock described by l to an open file descriptor.
2042 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2043 */
Peter Staubachc2936212005-07-27 11:45:09 -07002044int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
2045 struct flock __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
2047 struct file_lock *file_lock = locks_alloc_lock();
2048 struct flock flock;
2049 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04002050 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 int error;
2052
2053 if (file_lock == NULL)
2054 return -ENOLCK;
2055
2056 /*
2057 * This might block, so we do it before checking the inode.
2058 */
2059 error = -EFAULT;
2060 if (copy_from_user(&flock, l, sizeof(flock)))
2061 goto out;
2062
Al Viro496ad9a2013-01-23 17:07:38 -05002063 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 /* Don't allow mandatory locks on files that may be memory mapped
2066 * and shared.
2067 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002068 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 error = -EAGAIN;
2070 goto out;
2071 }
2072
Peter Staubachc2936212005-07-27 11:45:09 -07002073again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 error = flock_to_posix_lock(filp, file_lock, &flock);
2075 if (error)
2076 goto out;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002077
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002078 error = check_fmode_for_setlk(file_lock);
2079 if (error)
2080 goto out;
2081
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002082 /*
2083 * If the cmd is requesting file-private locks, then set the
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002084 * FL_OFDLCK flag and override the owner.
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002085 */
2086 switch (cmd) {
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002087 case F_OFD_SETLK:
Jeff Layton90478932014-03-04 10:30:23 -05002088 error = -EINVAL;
2089 if (flock.l_pid != 0)
2090 goto out;
2091
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002092 cmd = F_SETLK;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002093 file_lock->fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002094 file_lock->fl_owner = (fl_owner_t)filp;
2095 break;
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002096 case F_OFD_SETLKW:
Jeff Layton90478932014-03-04 10:30:23 -05002097 error = -EINVAL;
2098 if (flock.l_pid != 0)
2099 goto out;
2100
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002101 cmd = F_SETLKW;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002102 file_lock->fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002103 file_lock->fl_owner = (fl_owner_t)filp;
2104 /* Fallthrough */
2105 case F_SETLKW:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 file_lock->fl_flags |= FL_SLEEP;
2107 }
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002108
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002109 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Peter Staubachc2936212005-07-27 11:45:09 -07002111 /*
2112 * Attempt to detect a close/fcntl race and recover by
2113 * releasing the lock that was just acquired.
2114 */
Al Viro0b2bac22008-05-06 13:58:34 -04002115 /*
2116 * we need that spin_lock here - it prevents reordering between
2117 * update of inode->i_flock and check for it done in close().
2118 * rcu_read_lock() wouldn't do.
2119 */
2120 spin_lock(&current->files->file_lock);
2121 f = fcheck(fd);
2122 spin_unlock(&current->files->file_lock);
2123 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07002124 flock.l_type = F_UNLCK;
2125 goto again;
2126 }
2127
2128out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 locks_free_lock(file_lock);
2130 return error;
2131}
2132
2133#if BITS_PER_LONG == 32
2134/* Report the first existing lock that would conflict with l.
2135 * This implements the F_GETLK command of fcntl().
2136 */
Jeff Laytonc1e62b82014-02-03 12:13:09 -05002137int fcntl_getlk64(struct file *filp, unsigned int cmd, struct flock64 __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002139 struct file_lock file_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 struct flock64 flock;
2141 int error;
2142
2143 error = -EFAULT;
2144 if (copy_from_user(&flock, l, sizeof(flock)))
2145 goto out;
2146 error = -EINVAL;
2147 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
2148 goto out;
2149
2150 error = flock64_to_posix_lock(filp, &file_lock, &flock);
2151 if (error)
2152 goto out;
2153
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002154 if (cmd == F_OFD_GETLK) {
Jeff Layton90478932014-03-04 10:30:23 -05002155 error = -EINVAL;
2156 if (flock.l_pid != 0)
2157 goto out;
2158
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002159 cmd = F_GETLK64;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002160 file_lock.fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002161 file_lock.fl_owner = (fl_owner_t)filp;
2162 }
2163
J. Bruce Fields3ee17ab2007-02-21 00:58:50 -05002164 error = vfs_test_lock(filp, &file_lock);
2165 if (error)
2166 goto out;
2167
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002168 flock.l_type = file_lock.fl_type;
2169 if (file_lock.fl_type != F_UNLCK)
2170 posix_lock_to_flock64(&flock, &file_lock);
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 error = -EFAULT;
2173 if (!copy_to_user(l, &flock, sizeof(flock)))
2174 error = 0;
2175
2176out:
2177 return error;
2178}
2179
2180/* Apply the lock described by l to an open file descriptor.
2181 * This implements both the F_SETLK and F_SETLKW commands of fcntl().
2182 */
Peter Staubachc2936212005-07-27 11:45:09 -07002183int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
2184 struct flock64 __user *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 struct file_lock *file_lock = locks_alloc_lock();
2187 struct flock64 flock;
2188 struct inode *inode;
Al Viro0b2bac22008-05-06 13:58:34 -04002189 struct file *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 int error;
2191
2192 if (file_lock == NULL)
2193 return -ENOLCK;
2194
2195 /*
2196 * This might block, so we do it before checking the inode.
2197 */
2198 error = -EFAULT;
2199 if (copy_from_user(&flock, l, sizeof(flock)))
2200 goto out;
2201
Al Viro496ad9a2013-01-23 17:07:38 -05002202 inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 /* Don't allow mandatory locks on files that may be memory mapped
2205 * and shared.
2206 */
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002207 if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 error = -EAGAIN;
2209 goto out;
2210 }
2211
Peter Staubachc2936212005-07-27 11:45:09 -07002212again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 error = flock64_to_posix_lock(filp, file_lock, &flock);
2214 if (error)
2215 goto out;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002216
Jeff Laytoncf01f4e2014-05-09 11:41:54 -04002217 error = check_fmode_for_setlk(file_lock);
2218 if (error)
2219 goto out;
2220
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002221 /*
2222 * If the cmd is requesting file-private locks, then set the
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002223 * FL_OFDLCK flag and override the owner.
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002224 */
2225 switch (cmd) {
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002226 case F_OFD_SETLK:
Jeff Layton90478932014-03-04 10:30:23 -05002227 error = -EINVAL;
2228 if (flock.l_pid != 0)
2229 goto out;
2230
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002231 cmd = F_SETLK64;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002232 file_lock->fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002233 file_lock->fl_owner = (fl_owner_t)filp;
2234 break;
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002235 case F_OFD_SETLKW:
Jeff Layton90478932014-03-04 10:30:23 -05002236 error = -EINVAL;
2237 if (flock.l_pid != 0)
2238 goto out;
2239
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002240 cmd = F_SETLKW64;
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002241 file_lock->fl_flags |= FL_OFDLCK;
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002242 file_lock->fl_owner = (fl_owner_t)filp;
2243 /* Fallthrough */
2244 case F_SETLKW64:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 file_lock->fl_flags |= FL_SLEEP;
2246 }
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002247
Miklos Szeredib648a6d2008-07-25 01:48:57 -07002248 error = do_lock_file_wait(filp, cmd, file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Peter Staubachc2936212005-07-27 11:45:09 -07002250 /*
2251 * Attempt to detect a close/fcntl race and recover by
2252 * releasing the lock that was just acquired.
2253 */
Al Viro0b2bac22008-05-06 13:58:34 -04002254 spin_lock(&current->files->file_lock);
2255 f = fcheck(fd);
2256 spin_unlock(&current->files->file_lock);
2257 if (!error && f != filp && flock.l_type != F_UNLCK) {
Peter Staubachc2936212005-07-27 11:45:09 -07002258 flock.l_type = F_UNLCK;
2259 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261
2262out:
2263 locks_free_lock(file_lock);
2264 return error;
2265}
2266#endif /* BITS_PER_LONG == 32 */
2267
2268/*
2269 * This function is called when the file is being removed
2270 * from the task's fd array. POSIX locks belonging to this task
2271 * are deleted at this time.
2272 */
2273void locks_remove_posix(struct file *filp, fl_owner_t owner)
2274{
Miklos Szerediff7b86b2006-06-23 02:05:11 -07002275 struct file_lock lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 /*
2278 * If there are no locks held on this file, we don't need to call
2279 * posix_lock_file(). Another process could be setting a lock on this
2280 * file at the same time, but we wouldn't remove that lock anyway.
2281 */
Al Viro496ad9a2013-01-23 17:07:38 -05002282 if (!file_inode(filp)->i_flock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return;
2284
2285 lock.fl_type = F_UNLCK;
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -07002286 lock.fl_flags = FL_POSIX | FL_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 lock.fl_start = 0;
2288 lock.fl_end = OFFSET_MAX;
2289 lock.fl_owner = owner;
2290 lock.fl_pid = current->tgid;
2291 lock.fl_file = filp;
2292 lock.fl_ops = NULL;
2293 lock.fl_lmops = NULL;
2294
Marc Eshel150b3932007-01-18 16:15:35 -05002295 vfs_lock_file(filp, F_SETLK, &lock, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (lock.fl_ops && lock.fl_ops->fl_release_private)
2298 lock.fl_ops->fl_release_private(&lock);
2299}
2300
2301EXPORT_SYMBOL(locks_remove_posix);
2302
2303/*
2304 * This function is called on the last close of an open file.
2305 */
Jeff Layton78ed8a12014-02-03 12:13:08 -05002306void locks_remove_file(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Al Viro496ad9a2013-01-23 17:07:38 -05002308 struct inode * inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct file_lock *fl;
2310 struct file_lock **before;
2311
2312 if (!inode->i_flock)
2313 return;
2314
Jeff Layton5d50ffd2014-02-03 12:13:10 -05002315 locks_remove_posix(filp, (fl_owner_t)filp);
2316
Al Viro72c2d532013-09-22 16:27:52 -04002317 if (filp->f_op->flock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 struct file_lock fl = {
2319 .fl_pid = current->tgid,
2320 .fl_file = filp,
2321 .fl_flags = FL_FLOCK,
2322 .fl_type = F_UNLCK,
2323 .fl_end = OFFSET_MAX,
2324 };
2325 filp->f_op->flock(filp, F_SETLKW, &fl);
Trond Myklebust80fec4c2005-06-22 17:16:31 +00002326 if (fl.fl_ops && fl.fl_ops->fl_release_private)
2327 fl.fl_ops->fl_release_private(&fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329
Jeff Layton1c8c6012013-06-21 08:58:15 -04002330 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 before = &inode->i_flock;
2332
2333 while ((fl = *before) != NULL) {
2334 if (fl->fl_file == filp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (IS_LEASE(fl)) {
2336 lease_modify(before, F_UNLCK);
2337 continue;
2338 }
Jeff Layton8c3cac52014-02-03 12:13:07 -05002339
2340 /*
2341 * There's a leftover lock on the list of a type that
2342 * we didn't expect to see. Most likely a classic
2343 * POSIX lock that ended up not getting released
2344 * properly, or that raced onto the list somehow. Log
2345 * some info about it and then just remove it from
2346 * the list.
2347 */
2348 WARN(!IS_FLOCK(fl),
2349 "leftover lock: dev=%u:%u ino=%lu type=%hhd flags=0x%x start=%lld end=%lld\n",
2350 MAJOR(inode->i_sb->s_dev),
2351 MINOR(inode->i_sb->s_dev), inode->i_ino,
2352 fl->fl_type, fl->fl_flags,
2353 fl->fl_start, fl->fl_end);
2354
2355 locks_delete_lock(before);
2356 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358 before = &fl->fl_next;
2359 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002360 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
2363/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 * posix_unblock_lock - stop waiting for a file lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 * @waiter: the lock which was waiting
2366 *
2367 * lockd needs to block waiting for locks.
2368 */
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002369int
Jeff Laytonf891a292013-06-21 08:58:09 -04002370posix_unblock_lock(struct file_lock *waiter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002372 int status = 0;
2373
Jeff Layton7b2296a2013-06-21 08:58:20 -04002374 spin_lock(&blocked_lock_lock);
J. Bruce Fields5996a292006-01-03 09:55:44 +01002375 if (waiter->fl_next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 __locks_delete_block(waiter);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002377 else
2378 status = -ENOENT;
Jeff Layton7b2296a2013-06-21 08:58:20 -04002379 spin_unlock(&blocked_lock_lock);
J. Bruce Fields64a318e2006-01-03 09:55:46 +01002380 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382EXPORT_SYMBOL(posix_unblock_lock);
2383
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002384/**
2385 * vfs_cancel_lock - file byte range unblock lock
2386 * @filp: The file to apply the unblock to
2387 * @fl: The lock to be unblocked
2388 *
2389 * Used by lock managers to cancel blocked requests
2390 */
2391int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
2392{
Al Viro72c2d532013-09-22 16:27:52 -04002393 if (filp->f_op->lock)
Marc Eshel9b9d2ab2007-01-18 17:52:58 -05002394 return filp->f_op->lock(filp, F_CANCELLK, fl);
2395 return 0;
2396}
2397
2398EXPORT_SYMBOL_GPL(vfs_cancel_lock);
2399
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002400#ifdef CONFIG_PROC_FS
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002401#include <linux/proc_fs.h>
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002402#include <linux/seq_file.h>
2403
Jeff Layton7012b022013-06-21 08:58:22 -04002404struct locks_iterator {
2405 int li_cpu;
2406 loff_t li_pos;
2407};
2408
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002409static void lock_get_status(struct seq_file *f, struct file_lock *fl,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002410 loff_t id, char *pfx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
2412 struct inode *inode = NULL;
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002413 unsigned int fl_pid;
2414
2415 if (fl->fl_nspid)
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002416 fl_pid = pid_vnr(fl->fl_nspid);
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002417 else
2418 fl_pid = fl->fl_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 if (fl->fl_file != NULL)
Al Viro496ad9a2013-01-23 17:07:38 -05002421 inode = file_inode(fl->fl_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Jerome Marchand99dc8292010-10-26 14:22:33 -07002423 seq_printf(f, "%lld:%s ", id, pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (IS_POSIX(fl)) {
Jeff Laytonc918d422014-02-03 12:13:09 -05002425 if (fl->fl_flags & FL_ACCESS)
2426 seq_printf(f, "ACCESS");
Jeff Laytoncff2fce2014-04-22 08:24:32 -04002427 else if (IS_OFDLCK(fl))
Jeff Layton0d3f7a22014-04-22 08:23:58 -04002428 seq_printf(f, "OFDLCK");
Jeff Laytonc918d422014-02-03 12:13:09 -05002429 else
2430 seq_printf(f, "POSIX ");
2431
2432 seq_printf(f, " %s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 (inode == NULL) ? "*NOINODE*" :
Pavel Emelyanova16877c2007-10-01 14:41:11 -07002434 mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 } else if (IS_FLOCK(fl)) {
2436 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002437 seq_printf(f, "FLOCK MSNFS ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002439 seq_printf(f, "FLOCK ADVISORY ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
2441 } else if (IS_LEASE(fl)) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002442 seq_printf(f, "LEASE ");
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002443 if (lease_breaking(fl))
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002444 seq_printf(f, "BREAKING ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 else if (fl->fl_file)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002446 seq_printf(f, "ACTIVE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002448 seq_printf(f, "BREAKER ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002450 seq_printf(f, "UNKNOWN UNKNOWN ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452 if (fl->fl_type & LOCK_MAND) {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002453 seq_printf(f, "%s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 (fl->fl_type & LOCK_READ)
2455 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
2456 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
2457 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002458 seq_printf(f, "%s ",
J. Bruce Fieldsab83fa42011-07-26 20:10:51 -04002459 (lease_breaking(fl))
Jeff Layton0ee5c6d2012-08-02 15:46:30 -04002460 ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
2461 : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463 if (inode) {
2464#ifdef WE_CAN_BREAK_LSLK_NOW
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002465 seq_printf(f, "%d %s:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 inode->i_sb->s_id, inode->i_ino);
2467#else
2468 /* userspace relies on this representation of dev_t ;-( */
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002469 seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 MAJOR(inode->i_sb->s_dev),
2471 MINOR(inode->i_sb->s_dev), inode->i_ino);
2472#endif
2473 } else {
Vitaliy Gusevab1f1612008-01-17 00:07:08 +00002474 seq_printf(f, "%d <none>:0 ", fl_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476 if (IS_POSIX(fl)) {
2477 if (fl->fl_end == OFFSET_MAX)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002478 seq_printf(f, "%Ld EOF\n", fl->fl_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 else
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002480 seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 } else {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002482 seq_printf(f, "0 EOF\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 }
2484}
2485
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002486static int locks_show(struct seq_file *f, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Jeff Layton7012b022013-06-21 08:58:22 -04002488 struct locks_iterator *iter = f->private;
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002489 struct file_lock *fl, *bfl;
2490
Jeff Layton139ca042013-06-21 08:58:17 -04002491 fl = hlist_entry(v, struct file_lock, fl_link);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002492
Jeff Layton7012b022013-06-21 08:58:22 -04002493 lock_get_status(f, fl, iter->li_pos, "");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002494
2495 list_for_each_entry(bfl, &fl->fl_block, fl_block)
Jeff Layton7012b022013-06-21 08:58:22 -04002496 lock_get_status(f, bfl, iter->li_pos, " ->");
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002497
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
2500
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002501static void *locks_start(struct seq_file *f, loff_t *pos)
Jeff Laytonb03dfdec2014-02-03 12:13:07 -05002502 __acquires(&blocked_lock_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Jeff Layton7012b022013-06-21 08:58:22 -04002504 struct locks_iterator *iter = f->private;
Jerome Marchand99dc8292010-10-26 14:22:33 -07002505
Jeff Layton7012b022013-06-21 08:58:22 -04002506 iter->li_pos = *pos + 1;
2507 lg_global_lock(&file_lock_lglock);
Jeff Layton7b2296a2013-06-21 08:58:20 -04002508 spin_lock(&blocked_lock_lock);
Jeff Layton7012b022013-06-21 08:58:22 -04002509 return seq_hlist_start_percpu(&file_lock_list, &iter->li_cpu, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
2511
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002512static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
2513{
Jeff Layton7012b022013-06-21 08:58:22 -04002514 struct locks_iterator *iter = f->private;
2515
2516 ++iter->li_pos;
2517 return seq_hlist_next_percpu(v, &file_lock_list, &iter->li_cpu, pos);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002518}
2519
2520static void locks_stop(struct seq_file *f, void *v)
Jeff Laytonb03dfdec2014-02-03 12:13:07 -05002521 __releases(&blocked_lock_lock)
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002522{
Jeff Layton7b2296a2013-06-21 08:58:20 -04002523 spin_unlock(&blocked_lock_lock);
Jeff Layton7012b022013-06-21 08:58:22 -04002524 lg_global_unlock(&file_lock_lglock);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002525}
2526
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002527static const struct seq_operations locks_seq_operations = {
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002528 .start = locks_start,
2529 .next = locks_next,
2530 .stop = locks_stop,
2531 .show = locks_show,
2532};
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002533
2534static int locks_open(struct inode *inode, struct file *filp)
2535{
Jeff Layton7012b022013-06-21 08:58:22 -04002536 return seq_open_private(filp, &locks_seq_operations,
2537 sizeof(struct locks_iterator));
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002538}
2539
2540static const struct file_operations proc_locks_operations = {
2541 .open = locks_open,
2542 .read = seq_read,
2543 .llseek = seq_lseek,
Jerome Marchand99dc8292010-10-26 14:22:33 -07002544 .release = seq_release_private,
Alexey Dobriyand8ba7a32008-10-04 22:34:18 +04002545};
2546
2547static int __init proc_locks_init(void)
2548{
2549 proc_create("locks", 0, NULL, &proc_locks_operations);
2550 return 0;
2551}
2552module_init(proc_locks_init);
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -07002553#endif
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555/**
2556 * lock_may_read - checks that the region is free of locks
2557 * @inode: the inode that is being read
2558 * @start: the first byte to read
2559 * @len: the number of bytes to read
2560 *
2561 * Emulates Windows locking requirements. Whole-file
2562 * mandatory locks (share modes) can prohibit a read and
2563 * byte-range POSIX locks can prohibit a read if they overlap.
2564 *
2565 * N.B. this function is only ever called
2566 * from knfsd and ownership of locks is never checked.
2567 */
2568int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
2569{
2570 struct file_lock *fl;
2571 int result = 1;
Jeff Layton1c8c6012013-06-21 08:58:15 -04002572
2573 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2575 if (IS_POSIX(fl)) {
2576 if (fl->fl_type == F_RDLCK)
2577 continue;
2578 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2579 continue;
2580 } else if (IS_FLOCK(fl)) {
2581 if (!(fl->fl_type & LOCK_MAND))
2582 continue;
2583 if (fl->fl_type & LOCK_READ)
2584 continue;
2585 } else
2586 continue;
2587 result = 0;
2588 break;
2589 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002590 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 return result;
2592}
2593
2594EXPORT_SYMBOL(lock_may_read);
2595
2596/**
2597 * lock_may_write - checks that the region is free of locks
2598 * @inode: the inode that is being written
2599 * @start: the first byte to write
2600 * @len: the number of bytes to write
2601 *
2602 * Emulates Windows locking requirements. Whole-file
2603 * mandatory locks (share modes) can prohibit a write and
2604 * byte-range POSIX locks can prohibit a write if they overlap.
2605 *
2606 * N.B. this function is only ever called
2607 * from knfsd and ownership of locks is never checked.
2608 */
2609int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
2610{
2611 struct file_lock *fl;
2612 int result = 1;
Jeff Layton1c8c6012013-06-21 08:58:15 -04002613
2614 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
2616 if (IS_POSIX(fl)) {
2617 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
2618 continue;
2619 } else if (IS_FLOCK(fl)) {
2620 if (!(fl->fl_type & LOCK_MAND))
2621 continue;
2622 if (fl->fl_type & LOCK_WRITE)
2623 continue;
2624 } else
2625 continue;
2626 result = 0;
2627 break;
2628 }
Jeff Layton1c8c6012013-06-21 08:58:15 -04002629 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 return result;
2631}
2632
2633EXPORT_SYMBOL(lock_may_write);
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635static int __init filelock_init(void)
2636{
Jeff Layton7012b022013-06-21 08:58:22 -04002637 int i;
2638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 filelock_cache = kmem_cache_create("file_lock_cache",
Miklos Szerediee19cc42011-07-07 13:06:09 +02002640 sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2641
Jeff Layton7012b022013-06-21 08:58:22 -04002642 lg_lock_init(&file_lock_lglock, "file_lock_lglock");
2643
2644 for_each_possible_cpu(i)
2645 INIT_HLIST_HEAD(per_cpu_ptr(&file_lock_list, i));
2646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 return 0;
2648}
2649
2650core_initcall(filelock_init);