xref: /linux/fs/locks.c (revision b03dfdec0381857db2c01c877b7064f3f5d97d7e)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/fs/locks.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
51da177e4SLinus Torvalds  *  Doug Evans (dje@spiff.uucp), August 07, 1992
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  *  Deadlock detection added.
81da177e4SLinus Torvalds  *  FIXME: one thing isn't handled yet:
91da177e4SLinus Torvalds  *	- mandatory locks (requires lots of changes elsewhere)
101da177e4SLinus Torvalds  *  Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994.
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  *  Miscellaneous edits, and a total rewrite of posix_lock_file() code.
131da177e4SLinus Torvalds  *  Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *  Converted file_lock_table to a linked list from an array, which eliminates
161da177e4SLinus Torvalds  *  the limits on how many active file locks are open.
171da177e4SLinus Torvalds  *  Chad Page (pageone@netcom.com), November 27, 1994
181da177e4SLinus Torvalds  *
191da177e4SLinus Torvalds  *  Removed dependency on file descriptors. dup()'ed file descriptors now
201da177e4SLinus Torvalds  *  get the same locks as the original file descriptors, and a close() on
211da177e4SLinus Torvalds  *  any file descriptor removes ALL the locks on the file for the current
221da177e4SLinus Torvalds  *  process. Since locks still depend on the process id, locks are inherited
231da177e4SLinus Torvalds  *  after an exec() but not after a fork(). This agrees with POSIX, and both
241da177e4SLinus Torvalds  *  BSD and SVR4 practice.
251da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995
261da177e4SLinus Torvalds  *
271da177e4SLinus Torvalds  *  Scrapped free list which is redundant now that we allocate locks
281da177e4SLinus Torvalds  *  dynamically with kmalloc()/kfree().
291da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995
301da177e4SLinus Torvalds  *
311da177e4SLinus Torvalds  *  Implemented two lock personalities - FL_FLOCK and FL_POSIX.
321da177e4SLinus Torvalds  *
331da177e4SLinus Torvalds  *  FL_POSIX locks are created with calls to fcntl() and lockf() through the
341da177e4SLinus Torvalds  *  fcntl() system call. They have the semantics described above.
351da177e4SLinus Torvalds  *
361da177e4SLinus Torvalds  *  FL_FLOCK locks are created with calls to flock(), through the flock()
371da177e4SLinus Torvalds  *  system call, which is new. Old C libraries implement flock() via fcntl()
381da177e4SLinus Torvalds  *  and will continue to use the old, broken implementation.
391da177e4SLinus Torvalds  *
401da177e4SLinus Torvalds  *  FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated
411da177e4SLinus Torvalds  *  with a file pointer (filp). As a result they can be shared by a parent
421da177e4SLinus Torvalds  *  process and its children after a fork(). They are removed when the last
431da177e4SLinus Torvalds  *  file descriptor referring to the file pointer is closed (unless explicitly
441da177e4SLinus Torvalds  *  unlocked).
451da177e4SLinus Torvalds  *
461da177e4SLinus Torvalds  *  FL_FLOCK locks never deadlock, an existing lock is always removed before
471da177e4SLinus Torvalds  *  upgrading from shared to exclusive (or vice versa). When this happens
481da177e4SLinus Torvalds  *  any processes blocked by the current lock are woken up and allowed to
491da177e4SLinus Torvalds  *  run before the new lock is applied.
501da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995
511da177e4SLinus Torvalds  *
521da177e4SLinus Torvalds  *  Removed some race conditions in flock_lock_file(), marked other possible
531da177e4SLinus Torvalds  *  races. Just grep for FIXME to see them.
541da177e4SLinus Torvalds  *  Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996.
551da177e4SLinus Torvalds  *
561da177e4SLinus Torvalds  *  Addressed Dmitry's concerns. Deadlock checking no longer recursive.
571da177e4SLinus Torvalds  *  Lock allocation changed to GFP_ATOMIC as we can't afford to sleep
581da177e4SLinus Torvalds  *  once we've checked for blocking and deadlocking.
591da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996.
601da177e4SLinus Torvalds  *
611da177e4SLinus Torvalds  *  Initial implementation of mandatory locks. SunOS turned out to be
621da177e4SLinus Torvalds  *  a rotten model, so I implemented the "obvious" semantics.
63395cf969SPaul Bolle  *  See 'Documentation/filesystems/mandatory-locking.txt' for details.
641da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
651da177e4SLinus Torvalds  *
661da177e4SLinus Torvalds  *  Don't allow mandatory locks on mmap()'ed files. Added simple functions to
671da177e4SLinus Torvalds  *  check if a file has mandatory locks, used by mmap(), open() and creat() to
681da177e4SLinus Torvalds  *  see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference
691da177e4SLinus Torvalds  *  Manual, Section 2.
701da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996.
711da177e4SLinus Torvalds  *
721da177e4SLinus Torvalds  *  Tidied up block list handling. Added '/proc/locks' interface.
731da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
741da177e4SLinus Torvalds  *
751da177e4SLinus Torvalds  *  Fixed deadlock condition for pathological code that mixes calls to
761da177e4SLinus Torvalds  *  flock() and fcntl().
771da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996.
781da177e4SLinus Torvalds  *
791da177e4SLinus Torvalds  *  Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use
801da177e4SLinus Torvalds  *  for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to
811da177e4SLinus Torvalds  *  guarantee sensible behaviour in the case where file system modules might
821da177e4SLinus Torvalds  *  be compiled with different options than the kernel itself.
831da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
841da177e4SLinus Torvalds  *
851da177e4SLinus Torvalds  *  Added a couple of missing wake_up() calls. Thanks to Thomas Meckel
861da177e4SLinus Torvalds  *  (Thomas.Meckel@mni.fh-giessen.de) for spotting this.
871da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
881da177e4SLinus Torvalds  *
891da177e4SLinus Torvalds  *  Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK
901da177e4SLinus Torvalds  *  locks. Changed process synchronisation to avoid dereferencing locks that
911da177e4SLinus Torvalds  *  have already been freed.
921da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996.
931da177e4SLinus Torvalds  *
941da177e4SLinus Torvalds  *  Made the block list a circular list to minimise searching in the list.
951da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
961da177e4SLinus Torvalds  *
971da177e4SLinus Torvalds  *  Made mandatory locking a mount option. Default is not to allow mandatory
981da177e4SLinus Torvalds  *  locking.
991da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996.
1001da177e4SLinus Torvalds  *
1011da177e4SLinus Torvalds  *  Some adaptations for NFS support.
1021da177e4SLinus Torvalds  *  Olaf Kirch (okir@monad.swb.de), Dec 1996,
1031da177e4SLinus Torvalds  *
1041da177e4SLinus Torvalds  *  Fixed /proc/locks interface so that we can't overrun the buffer we are handed.
1051da177e4SLinus Torvalds  *  Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997.
1061da177e4SLinus Torvalds  *
1071da177e4SLinus Torvalds  *  Use slab allocator instead of kmalloc/kfree.
1081da177e4SLinus Torvalds  *  Use generic list implementation from <linux/list.h>.
1091da177e4SLinus Torvalds  *  Sped up posix_locks_deadlock by only considering blocked locks.
1101da177e4SLinus Torvalds  *  Matthew Wilcox <willy@debian.org>, March, 2000.
1111da177e4SLinus Torvalds  *
1121da177e4SLinus Torvalds  *  Leases and LOCK_MAND
1131da177e4SLinus Torvalds  *  Matthew Wilcox <willy@debian.org>, June, 2000.
1141da177e4SLinus Torvalds  *  Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
1151da177e4SLinus Torvalds  */
1161da177e4SLinus Torvalds 
1171da177e4SLinus Torvalds #include <linux/capability.h>
1181da177e4SLinus Torvalds #include <linux/file.h>
1199f3acc31SAl Viro #include <linux/fdtable.h>
1201da177e4SLinus Torvalds #include <linux/fs.h>
1211da177e4SLinus Torvalds #include <linux/init.h>
1221da177e4SLinus Torvalds #include <linux/module.h>
1231da177e4SLinus Torvalds #include <linux/security.h>
1241da177e4SLinus Torvalds #include <linux/slab.h>
1251da177e4SLinus Torvalds #include <linux/syscalls.h>
1261da177e4SLinus Torvalds #include <linux/time.h>
1274fb3a538SDipankar Sarma #include <linux/rcupdate.h>
128ab1f1611SVitaliy Gusev #include <linux/pid_namespace.h>
12948f74186SJeff Layton #include <linux/hashtable.h>
1307012b02aSJeff Layton #include <linux/percpu.h>
1317012b02aSJeff Layton #include <linux/lglock.h>
1321da177e4SLinus Torvalds 
1331da177e4SLinus Torvalds #include <asm/uaccess.h>
1341da177e4SLinus Torvalds 
1351da177e4SLinus Torvalds #define IS_POSIX(fl)	(fl->fl_flags & FL_POSIX)
1361da177e4SLinus Torvalds #define IS_FLOCK(fl)	(fl->fl_flags & FL_FLOCK)
137617588d5SJ. Bruce Fields #define IS_LEASE(fl)	(fl->fl_flags & (FL_LEASE|FL_DELEG))
1381da177e4SLinus Torvalds 
139ab83fa4bSJ. Bruce Fields static bool lease_breaking(struct file_lock *fl)
140ab83fa4bSJ. Bruce Fields {
141778fc546SJ. Bruce Fields 	return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING);
142778fc546SJ. Bruce Fields }
143778fc546SJ. Bruce Fields 
144778fc546SJ. Bruce Fields static int target_leasetype(struct file_lock *fl)
145778fc546SJ. Bruce Fields {
146778fc546SJ. Bruce Fields 	if (fl->fl_flags & FL_UNLOCK_PENDING)
147778fc546SJ. Bruce Fields 		return F_UNLCK;
148778fc546SJ. Bruce Fields 	if (fl->fl_flags & FL_DOWNGRADE_PENDING)
149778fc546SJ. Bruce Fields 		return F_RDLCK;
150778fc546SJ. Bruce Fields 	return fl->fl_type;
151ab83fa4bSJ. Bruce Fields }
152ab83fa4bSJ. Bruce Fields 
1531da177e4SLinus Torvalds int leases_enable = 1;
1541da177e4SLinus Torvalds int lease_break_time = 45;
1551da177e4SLinus Torvalds 
1561da177e4SLinus Torvalds #define for_each_lock(inode, lockp) \
1571da177e4SLinus Torvalds 	for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
1581da177e4SLinus Torvalds 
1591c8c601aSJeff Layton /*
1607012b02aSJeff Layton  * The global file_lock_list is only used for displaying /proc/locks, so we
1617012b02aSJeff Layton  * keep a list on each CPU, with each list protected by its own spinlock via
1627012b02aSJeff Layton  * the file_lock_lglock. Note that alterations to the list also require that
1637012b02aSJeff Layton  * the relevant i_lock is held.
1641c8c601aSJeff Layton  */
1657012b02aSJeff Layton DEFINE_STATIC_LGLOCK(file_lock_lglock);
1667012b02aSJeff Layton static DEFINE_PER_CPU(struct hlist_head, file_lock_list);
16788974691SJeff Layton 
1681c8c601aSJeff Layton /*
16948f74186SJeff Layton  * The blocked_hash is used to find POSIX lock loops for deadlock detection.
1707b2296afSJeff Layton  * It is protected by blocked_lock_lock.
17148f74186SJeff Layton  *
17248f74186SJeff Layton  * We hash locks by lockowner in order to optimize searching for the lock a
17348f74186SJeff Layton  * particular lockowner is waiting on.
17448f74186SJeff Layton  *
17548f74186SJeff Layton  * FIXME: make this value scale via some heuristic? We generally will want more
17648f74186SJeff Layton  * buckets when we have more lockowners holding locks, but that's a little
17748f74186SJeff Layton  * difficult to determine without knowing what the workload will look like.
1781c8c601aSJeff Layton  */
17948f74186SJeff Layton #define BLOCKED_HASH_BITS	7
18048f74186SJeff Layton static DEFINE_HASHTABLE(blocked_hash, BLOCKED_HASH_BITS);
18188974691SJeff Layton 
1821c8c601aSJeff Layton /*
1837b2296afSJeff Layton  * This lock protects the blocked_hash. Generally, if you're accessing it, you
1847b2296afSJeff Layton  * want to be holding this lock.
1851c8c601aSJeff Layton  *
1861c8c601aSJeff Layton  * In addition, it also protects the fl->fl_block list, and the fl->fl_next
1871c8c601aSJeff Layton  * pointer for file_lock structures that are acting as lock requests (in
1881c8c601aSJeff Layton  * contrast to those that are acting as records of acquired locks).
1891c8c601aSJeff Layton  *
1901c8c601aSJeff Layton  * Note that when we acquire this lock in order to change the above fields,
1911c8c601aSJeff Layton  * we often hold the i_lock as well. In certain cases, when reading the fields
1921c8c601aSJeff Layton  * protected by this lock, we can skip acquiring it iff we already hold the
1931c8c601aSJeff Layton  * i_lock.
1941c8c601aSJeff Layton  *
1951c8c601aSJeff Layton  * In particular, adding an entry to the fl_block list requires that you hold
1961c8c601aSJeff Layton  * both the i_lock and the blocked_lock_lock (acquired in that order). Deleting
1971c8c601aSJeff Layton  * an entry from the list however only requires the file_lock_lock.
1981c8c601aSJeff Layton  */
1997b2296afSJeff Layton static DEFINE_SPINLOCK(blocked_lock_lock);
2001da177e4SLinus Torvalds 
201e18b890bSChristoph Lameter static struct kmem_cache *filelock_cache __read_mostly;
2021da177e4SLinus Torvalds 
203ee19cc40SMiklos Szeredi static void locks_init_lock_heads(struct file_lock *fl)
204a51cb91dSMiklos Szeredi {
205139ca04eSJeff Layton 	INIT_HLIST_NODE(&fl->fl_link);
206ee19cc40SMiklos Szeredi 	INIT_LIST_HEAD(&fl->fl_block);
207ee19cc40SMiklos Szeredi 	init_waitqueue_head(&fl->fl_wait);
208a51cb91dSMiklos Szeredi }
209a51cb91dSMiklos Szeredi 
2101da177e4SLinus Torvalds /* Allocate an empty lock structure. */
211c5b1f0d9SArnd Bergmann struct file_lock *locks_alloc_lock(void)
2121da177e4SLinus Torvalds {
213ee19cc40SMiklos Szeredi 	struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL);
214a51cb91dSMiklos Szeredi 
215a51cb91dSMiklos Szeredi 	if (fl)
216ee19cc40SMiklos Szeredi 		locks_init_lock_heads(fl);
217a51cb91dSMiklos Szeredi 
218a51cb91dSMiklos Szeredi 	return fl;
2191da177e4SLinus Torvalds }
220c5b1f0d9SArnd Bergmann EXPORT_SYMBOL_GPL(locks_alloc_lock);
2211da177e4SLinus Torvalds 
222a9e61e25SFelix Blyakher void locks_release_private(struct file_lock *fl)
22347831f35STrond Myklebust {
22447831f35STrond Myklebust 	if (fl->fl_ops) {
22547831f35STrond Myklebust 		if (fl->fl_ops->fl_release_private)
22647831f35STrond Myklebust 			fl->fl_ops->fl_release_private(fl);
22747831f35STrond Myklebust 		fl->fl_ops = NULL;
22847831f35STrond Myklebust 	}
22947831f35STrond Myklebust 	fl->fl_lmops = NULL;
23047831f35STrond Myklebust 
23147831f35STrond Myklebust }
232a9e61e25SFelix Blyakher EXPORT_SYMBOL_GPL(locks_release_private);
23347831f35STrond Myklebust 
2341da177e4SLinus Torvalds /* Free a lock which is not in use. */
23505fa3135SJ. Bruce Fields void locks_free_lock(struct file_lock *fl)
2361da177e4SLinus Torvalds {
2375ce29646SMiklos Szeredi 	BUG_ON(waitqueue_active(&fl->fl_wait));
2385ce29646SMiklos Szeredi 	BUG_ON(!list_empty(&fl->fl_block));
239139ca04eSJeff Layton 	BUG_ON(!hlist_unhashed(&fl->fl_link));
2401da177e4SLinus Torvalds 
24147831f35STrond Myklebust 	locks_release_private(fl);
2421da177e4SLinus Torvalds 	kmem_cache_free(filelock_cache, fl);
2431da177e4SLinus Torvalds }
24405fa3135SJ. Bruce Fields EXPORT_SYMBOL(locks_free_lock);
2451da177e4SLinus Torvalds 
2461da177e4SLinus Torvalds void locks_init_lock(struct file_lock *fl)
2471da177e4SLinus Torvalds {
248ee19cc40SMiklos Szeredi 	memset(fl, 0, sizeof(struct file_lock));
249ee19cc40SMiklos Szeredi 	locks_init_lock_heads(fl);
2501da177e4SLinus Torvalds }
2511da177e4SLinus Torvalds 
2521da177e4SLinus Torvalds EXPORT_SYMBOL(locks_init_lock);
2531da177e4SLinus Torvalds 
25447831f35STrond Myklebust static void locks_copy_private(struct file_lock *new, struct file_lock *fl)
25547831f35STrond Myklebust {
25647831f35STrond Myklebust 	if (fl->fl_ops) {
25747831f35STrond Myklebust 		if (fl->fl_ops->fl_copy_lock)
25847831f35STrond Myklebust 			fl->fl_ops->fl_copy_lock(new, fl);
25947831f35STrond Myklebust 		new->fl_ops = fl->fl_ops;
26047831f35STrond Myklebust 	}
261bb8430a2SChristoph Hellwig 	if (fl->fl_lmops)
26247831f35STrond Myklebust 		new->fl_lmops = fl->fl_lmops;
26347831f35STrond Myklebust }
26447831f35STrond Myklebust 
2651da177e4SLinus Torvalds /*
2661da177e4SLinus Torvalds  * Initialize a new lock from an existing file_lock structure.
2671da177e4SLinus Torvalds  */
2681a747ee0SJ. Bruce Fields void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl)
2691da177e4SLinus Torvalds {
2701da177e4SLinus Torvalds 	new->fl_owner = fl->fl_owner;
2711da177e4SLinus Torvalds 	new->fl_pid = fl->fl_pid;
2720996905fSTrond Myklebust 	new->fl_file = NULL;
2731da177e4SLinus Torvalds 	new->fl_flags = fl->fl_flags;
2741da177e4SLinus Torvalds 	new->fl_type = fl->fl_type;
2751da177e4SLinus Torvalds 	new->fl_start = fl->fl_start;
2761da177e4SLinus Torvalds 	new->fl_end = fl->fl_end;
2770996905fSTrond Myklebust 	new->fl_ops = NULL;
2780996905fSTrond Myklebust 	new->fl_lmops = NULL;
2790996905fSTrond Myklebust }
2803dd7b71cSRoland Dreier EXPORT_SYMBOL(__locks_copy_lock);
2810996905fSTrond Myklebust 
2820996905fSTrond Myklebust void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
2830996905fSTrond Myklebust {
2840996905fSTrond Myklebust 	locks_release_private(new);
2850996905fSTrond Myklebust 
2860996905fSTrond Myklebust 	__locks_copy_lock(new, fl);
2870996905fSTrond Myklebust 	new->fl_file = fl->fl_file;
2881da177e4SLinus Torvalds 	new->fl_ops = fl->fl_ops;
2891da177e4SLinus Torvalds 	new->fl_lmops = fl->fl_lmops;
29047831f35STrond Myklebust 
29147831f35STrond Myklebust 	locks_copy_private(new, fl);
2921da177e4SLinus Torvalds }
2931da177e4SLinus Torvalds 
2941da177e4SLinus Torvalds EXPORT_SYMBOL(locks_copy_lock);
2951da177e4SLinus Torvalds 
2961da177e4SLinus Torvalds static inline int flock_translate_cmd(int cmd) {
2971da177e4SLinus Torvalds 	if (cmd & LOCK_MAND)
2981da177e4SLinus Torvalds 		return cmd & (LOCK_MAND | LOCK_RW);
2991da177e4SLinus Torvalds 	switch (cmd) {
3001da177e4SLinus Torvalds 	case LOCK_SH:
3011da177e4SLinus Torvalds 		return F_RDLCK;
3021da177e4SLinus Torvalds 	case LOCK_EX:
3031da177e4SLinus Torvalds 		return F_WRLCK;
3041da177e4SLinus Torvalds 	case LOCK_UN:
3051da177e4SLinus Torvalds 		return F_UNLCK;
3061da177e4SLinus Torvalds 	}
3071da177e4SLinus Torvalds 	return -EINVAL;
3081da177e4SLinus Torvalds }
3091da177e4SLinus Torvalds 
3101da177e4SLinus Torvalds /* Fill in a file_lock structure with an appropriate FLOCK lock. */
3111da177e4SLinus Torvalds static int flock_make_lock(struct file *filp, struct file_lock **lock,
3121da177e4SLinus Torvalds 		unsigned int cmd)
3131da177e4SLinus Torvalds {
3141da177e4SLinus Torvalds 	struct file_lock *fl;
3151da177e4SLinus Torvalds 	int type = flock_translate_cmd(cmd);
3161da177e4SLinus Torvalds 	if (type < 0)
3171da177e4SLinus Torvalds 		return type;
3181da177e4SLinus Torvalds 
3191da177e4SLinus Torvalds 	fl = locks_alloc_lock();
3201da177e4SLinus Torvalds 	if (fl == NULL)
3211da177e4SLinus Torvalds 		return -ENOMEM;
3221da177e4SLinus Torvalds 
3231da177e4SLinus Torvalds 	fl->fl_file = filp;
3241da177e4SLinus Torvalds 	fl->fl_pid = current->tgid;
3251da177e4SLinus Torvalds 	fl->fl_flags = FL_FLOCK;
3261da177e4SLinus Torvalds 	fl->fl_type = type;
3271da177e4SLinus Torvalds 	fl->fl_end = OFFSET_MAX;
3281da177e4SLinus Torvalds 
3291da177e4SLinus Torvalds 	*lock = fl;
3301da177e4SLinus Torvalds 	return 0;
3311da177e4SLinus Torvalds }
3321da177e4SLinus Torvalds 
3330ec4f431SJ. Bruce Fields static int assign_type(struct file_lock *fl, long type)
3341da177e4SLinus Torvalds {
3351da177e4SLinus Torvalds 	switch (type) {
3361da177e4SLinus Torvalds 	case F_RDLCK:
3371da177e4SLinus Torvalds 	case F_WRLCK:
3381da177e4SLinus Torvalds 	case F_UNLCK:
3391da177e4SLinus Torvalds 		fl->fl_type = type;
3401da177e4SLinus Torvalds 		break;
3411da177e4SLinus Torvalds 	default:
3421da177e4SLinus Torvalds 		return -EINVAL;
3431da177e4SLinus Torvalds 	}
3441da177e4SLinus Torvalds 	return 0;
3451da177e4SLinus Torvalds }
3461da177e4SLinus Torvalds 
3471da177e4SLinus Torvalds /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
3481da177e4SLinus Torvalds  * style lock.
3491da177e4SLinus Torvalds  */
3501da177e4SLinus Torvalds static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
3511da177e4SLinus Torvalds 			       struct flock *l)
3521da177e4SLinus Torvalds {
3531da177e4SLinus Torvalds 	off_t start, end;
3541da177e4SLinus Torvalds 
3551da177e4SLinus Torvalds 	switch (l->l_whence) {
356f5579f8cSJosef 'Jeff' Sipek 	case SEEK_SET:
3571da177e4SLinus Torvalds 		start = 0;
3581da177e4SLinus Torvalds 		break;
359f5579f8cSJosef 'Jeff' Sipek 	case SEEK_CUR:
3601da177e4SLinus Torvalds 		start = filp->f_pos;
3611da177e4SLinus Torvalds 		break;
362f5579f8cSJosef 'Jeff' Sipek 	case SEEK_END:
363496ad9aaSAl Viro 		start = i_size_read(file_inode(filp));
3641da177e4SLinus Torvalds 		break;
3651da177e4SLinus Torvalds 	default:
3661da177e4SLinus Torvalds 		return -EINVAL;
3671da177e4SLinus Torvalds 	}
3681da177e4SLinus Torvalds 
3691da177e4SLinus Torvalds 	/* POSIX-1996 leaves the case l->l_len < 0 undefined;
3701da177e4SLinus Torvalds 	   POSIX-2001 defines it. */
3711da177e4SLinus Torvalds 	start += l->l_start;
3721da177e4SLinus Torvalds 	if (start < 0)
3731da177e4SLinus Torvalds 		return -EINVAL;
3741da177e4SLinus Torvalds 	fl->fl_end = OFFSET_MAX;
3754c780a46STrond Myklebust 	if (l->l_len > 0) {
3764c780a46STrond Myklebust 		end = start + l->l_len - 1;
3774c780a46STrond Myklebust 		fl->fl_end = end;
3784c780a46STrond Myklebust 	} else if (l->l_len < 0) {
3794c780a46STrond Myklebust 		end = start - 1;
3804c780a46STrond Myklebust 		fl->fl_end = end;
3814c780a46STrond Myklebust 		start += l->l_len;
3824c780a46STrond Myklebust 		if (start < 0)
3834c780a46STrond Myklebust 			return -EINVAL;
3844c780a46STrond Myklebust 	}
3854c780a46STrond Myklebust 	fl->fl_start = start;	/* we record the absolute position */
3864c780a46STrond Myklebust 	if (fl->fl_end < fl->fl_start)
3874c780a46STrond Myklebust 		return -EOVERFLOW;
3881da177e4SLinus Torvalds 
3891da177e4SLinus Torvalds 	fl->fl_owner = current->files;
3901da177e4SLinus Torvalds 	fl->fl_pid = current->tgid;
3911da177e4SLinus Torvalds 	fl->fl_file = filp;
3921da177e4SLinus Torvalds 	fl->fl_flags = FL_POSIX;
3931da177e4SLinus Torvalds 	fl->fl_ops = NULL;
3941da177e4SLinus Torvalds 	fl->fl_lmops = NULL;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 	return assign_type(fl, l->l_type);
3971da177e4SLinus Torvalds }
3981da177e4SLinus Torvalds 
3991da177e4SLinus Torvalds #if BITS_PER_LONG == 32
4001da177e4SLinus Torvalds static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
4011da177e4SLinus Torvalds 				 struct flock64 *l)
4021da177e4SLinus Torvalds {
4031da177e4SLinus Torvalds 	loff_t start;
4041da177e4SLinus Torvalds 
4051da177e4SLinus Torvalds 	switch (l->l_whence) {
406f5579f8cSJosef 'Jeff' Sipek 	case SEEK_SET:
4071da177e4SLinus Torvalds 		start = 0;
4081da177e4SLinus Torvalds 		break;
409f5579f8cSJosef 'Jeff' Sipek 	case SEEK_CUR:
4101da177e4SLinus Torvalds 		start = filp->f_pos;
4111da177e4SLinus Torvalds 		break;
412f5579f8cSJosef 'Jeff' Sipek 	case SEEK_END:
413496ad9aaSAl Viro 		start = i_size_read(file_inode(filp));
4141da177e4SLinus Torvalds 		break;
4151da177e4SLinus Torvalds 	default:
4161da177e4SLinus Torvalds 		return -EINVAL;
4171da177e4SLinus Torvalds 	}
4181da177e4SLinus Torvalds 
4194c780a46STrond Myklebust 	start += l->l_start;
4204c780a46STrond Myklebust 	if (start < 0)
4211da177e4SLinus Torvalds 		return -EINVAL;
4221da177e4SLinus Torvalds 	fl->fl_end = OFFSET_MAX;
4234c780a46STrond Myklebust 	if (l->l_len > 0) {
4244c780a46STrond Myklebust 		fl->fl_end = start + l->l_len - 1;
4254c780a46STrond Myklebust 	} else if (l->l_len < 0) {
4264c780a46STrond Myklebust 		fl->fl_end = start - 1;
4274c780a46STrond Myklebust 		start += l->l_len;
4284c780a46STrond Myklebust 		if (start < 0)
4294c780a46STrond Myklebust 			return -EINVAL;
4304c780a46STrond Myklebust 	}
4314c780a46STrond Myklebust 	fl->fl_start = start;	/* we record the absolute position */
4324c780a46STrond Myklebust 	if (fl->fl_end < fl->fl_start)
4334c780a46STrond Myklebust 		return -EOVERFLOW;
4341da177e4SLinus Torvalds 
4351da177e4SLinus Torvalds 	fl->fl_owner = current->files;
4361da177e4SLinus Torvalds 	fl->fl_pid = current->tgid;
4371da177e4SLinus Torvalds 	fl->fl_file = filp;
4381da177e4SLinus Torvalds 	fl->fl_flags = FL_POSIX;
4391da177e4SLinus Torvalds 	fl->fl_ops = NULL;
4401da177e4SLinus Torvalds 	fl->fl_lmops = NULL;
4411da177e4SLinus Torvalds 
442f32cb532SNamhyung Kim 	return assign_type(fl, l->l_type);
4431da177e4SLinus Torvalds }
4441da177e4SLinus Torvalds #endif
4451da177e4SLinus Torvalds 
4461da177e4SLinus Torvalds /* default lease lock manager operations */
4471da177e4SLinus Torvalds static void lease_break_callback(struct file_lock *fl)
4481da177e4SLinus Torvalds {
4491da177e4SLinus Torvalds 	kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
4501da177e4SLinus Torvalds }
4511da177e4SLinus Torvalds 
4527b021967SAlexey Dobriyan static const struct lock_manager_operations lease_manager_ops = {
4538fb47a4fSJ. Bruce Fields 	.lm_break = lease_break_callback,
4548fb47a4fSJ. Bruce Fields 	.lm_change = lease_modify,
4551da177e4SLinus Torvalds };
4561da177e4SLinus Torvalds 
4571da177e4SLinus Torvalds /*
4581da177e4SLinus Torvalds  * Initialize a lease, use the default lock manager operations
4591da177e4SLinus Torvalds  */
4600ec4f431SJ. Bruce Fields static int lease_init(struct file *filp, long type, struct file_lock *fl)
4611da177e4SLinus Torvalds  {
46275dff55aSTrond Myklebust 	if (assign_type(fl, type) != 0)
46375dff55aSTrond Myklebust 		return -EINVAL;
46475dff55aSTrond Myklebust 
4651da177e4SLinus Torvalds 	fl->fl_owner = current->files;
4661da177e4SLinus Torvalds 	fl->fl_pid = current->tgid;
4671da177e4SLinus Torvalds 
4681da177e4SLinus Torvalds 	fl->fl_file = filp;
4691da177e4SLinus Torvalds 	fl->fl_flags = FL_LEASE;
4701da177e4SLinus Torvalds 	fl->fl_start = 0;
4711da177e4SLinus Torvalds 	fl->fl_end = OFFSET_MAX;
4721da177e4SLinus Torvalds 	fl->fl_ops = NULL;
4731da177e4SLinus Torvalds 	fl->fl_lmops = &lease_manager_ops;
4741da177e4SLinus Torvalds 	return 0;
4751da177e4SLinus Torvalds }
4761da177e4SLinus Torvalds 
4771da177e4SLinus Torvalds /* Allocate a file_lock initialised to this type of lease */
4780ec4f431SJ. Bruce Fields static struct file_lock *lease_alloc(struct file *filp, long type)
4791da177e4SLinus Torvalds {
4801da177e4SLinus Torvalds 	struct file_lock *fl = locks_alloc_lock();
48175dff55aSTrond Myklebust 	int error = -ENOMEM;
4821da177e4SLinus Torvalds 
4831da177e4SLinus Torvalds 	if (fl == NULL)
484e32b8ee2SJ. Bruce Fields 		return ERR_PTR(error);
4851da177e4SLinus Torvalds 
4861da177e4SLinus Torvalds 	error = lease_init(filp, type, fl);
48775dff55aSTrond Myklebust 	if (error) {
48875dff55aSTrond Myklebust 		locks_free_lock(fl);
489e32b8ee2SJ. Bruce Fields 		return ERR_PTR(error);
49075dff55aSTrond Myklebust 	}
491e32b8ee2SJ. Bruce Fields 	return fl;
4921da177e4SLinus Torvalds }
4931da177e4SLinus Torvalds 
4941da177e4SLinus Torvalds /* Check if two locks overlap each other.
4951da177e4SLinus Torvalds  */
4961da177e4SLinus Torvalds static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
4971da177e4SLinus Torvalds {
4981da177e4SLinus Torvalds 	return ((fl1->fl_end >= fl2->fl_start) &&
4991da177e4SLinus Torvalds 		(fl2->fl_end >= fl1->fl_start));
5001da177e4SLinus Torvalds }
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds /*
5031da177e4SLinus Torvalds  * Check whether two locks have the same owner.
5041da177e4SLinus Torvalds  */
50533443c42SMatt Mackall static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
5061da177e4SLinus Torvalds {
5078fb47a4fSJ. Bruce Fields 	if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner)
5081da177e4SLinus Torvalds 		return fl2->fl_lmops == fl1->fl_lmops &&
5098fb47a4fSJ. Bruce Fields 			fl1->fl_lmops->lm_compare_owner(fl1, fl2);
5101da177e4SLinus Torvalds 	return fl1->fl_owner == fl2->fl_owner;
5111da177e4SLinus Torvalds }
5121da177e4SLinus Torvalds 
5137012b02aSJeff Layton /* Must be called with the i_lock held! */
5146ca10ed8SJeff Layton static void locks_insert_global_locks(struct file_lock *fl)
51588974691SJeff Layton {
5167012b02aSJeff Layton 	lg_local_lock(&file_lock_lglock);
5177012b02aSJeff Layton 	fl->fl_link_cpu = smp_processor_id();
5187012b02aSJeff Layton 	hlist_add_head(&fl->fl_link, this_cpu_ptr(&file_lock_list));
5197012b02aSJeff Layton 	lg_local_unlock(&file_lock_lglock);
52088974691SJeff Layton }
52188974691SJeff Layton 
5227012b02aSJeff Layton /* Must be called with the i_lock held! */
5236ca10ed8SJeff Layton static void locks_delete_global_locks(struct file_lock *fl)
52488974691SJeff Layton {
5257012b02aSJeff Layton 	/*
5267012b02aSJeff Layton 	 * Avoid taking lock if already unhashed. This is safe since this check
5277012b02aSJeff Layton 	 * is done while holding the i_lock, and new insertions into the list
5287012b02aSJeff Layton 	 * also require that it be held.
5297012b02aSJeff Layton 	 */
5307012b02aSJeff Layton 	if (hlist_unhashed(&fl->fl_link))
5317012b02aSJeff Layton 		return;
5327012b02aSJeff Layton 	lg_local_lock_cpu(&file_lock_lglock, fl->fl_link_cpu);
533139ca04eSJeff Layton 	hlist_del_init(&fl->fl_link);
5347012b02aSJeff Layton 	lg_local_unlock_cpu(&file_lock_lglock, fl->fl_link_cpu);
53588974691SJeff Layton }
53688974691SJeff Layton 
5373999e493SJeff Layton static unsigned long
5383999e493SJeff Layton posix_owner_key(struct file_lock *fl)
5393999e493SJeff Layton {
5403999e493SJeff Layton 	if (fl->fl_lmops && fl->fl_lmops->lm_owner_key)
5413999e493SJeff Layton 		return fl->fl_lmops->lm_owner_key(fl);
5423999e493SJeff Layton 	return (unsigned long)fl->fl_owner;
5433999e493SJeff Layton }
5443999e493SJeff Layton 
5456ca10ed8SJeff Layton static void locks_insert_global_blocked(struct file_lock *waiter)
54688974691SJeff Layton {
5473999e493SJeff Layton 	hash_add(blocked_hash, &waiter->fl_link, posix_owner_key(waiter));
54888974691SJeff Layton }
54988974691SJeff Layton 
5506ca10ed8SJeff Layton static void locks_delete_global_blocked(struct file_lock *waiter)
55188974691SJeff Layton {
55248f74186SJeff Layton 	hash_del(&waiter->fl_link);
55388974691SJeff Layton }
55488974691SJeff Layton 
5551da177e4SLinus Torvalds /* Remove waiter from blocker's block list.
5561da177e4SLinus Torvalds  * When blocker ends up pointing to itself then the list is empty.
5571c8c601aSJeff Layton  *
5587b2296afSJeff Layton  * Must be called with blocked_lock_lock held.
5591da177e4SLinus Torvalds  */
56033443c42SMatt Mackall static void __locks_delete_block(struct file_lock *waiter)
5611da177e4SLinus Torvalds {
56288974691SJeff Layton 	locks_delete_global_blocked(waiter);
5631da177e4SLinus Torvalds 	list_del_init(&waiter->fl_block);
5641da177e4SLinus Torvalds 	waiter->fl_next = NULL;
5651da177e4SLinus Torvalds }
5661da177e4SLinus Torvalds 
5671a9e64a7SJeff Layton static void locks_delete_block(struct file_lock *waiter)
5681da177e4SLinus Torvalds {
5697b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
5701da177e4SLinus Torvalds 	__locks_delete_block(waiter);
5717b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
5721da177e4SLinus Torvalds }
5731da177e4SLinus Torvalds 
5741da177e4SLinus Torvalds /* Insert waiter into blocker's block list.
5751da177e4SLinus Torvalds  * We use a circular list so that processes can be easily woken up in
5761da177e4SLinus Torvalds  * the order they blocked. The documentation doesn't require this but
5771da177e4SLinus Torvalds  * it seems like the reasonable thing to do.
5781c8c601aSJeff Layton  *
5797b2296afSJeff Layton  * Must be called with both the i_lock and blocked_lock_lock held. The fl_block
58046dad760SJeff Layton  * list itself is protected by the blocked_lock_lock, but by ensuring that the
5817b2296afSJeff Layton  * i_lock is also held on insertions we can avoid taking the blocked_lock_lock
5824e8c765dSJeff Layton  * in some cases when we see that the fl_block list is empty.
5831da177e4SLinus Torvalds  */
5841c8c601aSJeff Layton static void __locks_insert_block(struct file_lock *blocker,
5851da177e4SLinus Torvalds 					struct file_lock *waiter)
5861da177e4SLinus Torvalds {
5876dc0fe8fSJ. Bruce Fields 	BUG_ON(!list_empty(&waiter->fl_block));
5881da177e4SLinus Torvalds 	waiter->fl_next = blocker;
58988974691SJeff Layton 	list_add_tail(&waiter->fl_block, &blocker->fl_block);
5901da177e4SLinus Torvalds 	if (IS_POSIX(blocker))
5911c8c601aSJeff Layton 		locks_insert_global_blocked(waiter);
5921c8c601aSJeff Layton }
5931c8c601aSJeff Layton 
5941c8c601aSJeff Layton /* Must be called with i_lock held. */
5951c8c601aSJeff Layton static void locks_insert_block(struct file_lock *blocker,
5961c8c601aSJeff Layton 					struct file_lock *waiter)
5971c8c601aSJeff Layton {
5987b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
5991c8c601aSJeff Layton 	__locks_insert_block(blocker, waiter);
6007b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
6011da177e4SLinus Torvalds }
6021da177e4SLinus Torvalds 
6031cb36012SJeff Layton /*
6041cb36012SJeff Layton  * Wake up processes blocked waiting for blocker.
6051cb36012SJeff Layton  *
6061c8c601aSJeff Layton  * Must be called with the inode->i_lock held!
6071da177e4SLinus Torvalds  */
6081da177e4SLinus Torvalds static void locks_wake_up_blocks(struct file_lock *blocker)
6091da177e4SLinus Torvalds {
6104e8c765dSJeff Layton 	/*
6114e8c765dSJeff Layton 	 * Avoid taking global lock if list is empty. This is safe since new
6124e8c765dSJeff Layton 	 * blocked requests are only added to the list under the i_lock, and
6134e8c765dSJeff Layton 	 * the i_lock is always held here. Note that removal from the fl_block
6144e8c765dSJeff Layton 	 * list does not require the i_lock, so we must recheck list_empty()
6157b2296afSJeff Layton 	 * after acquiring the blocked_lock_lock.
6164e8c765dSJeff Layton 	 */
6174e8c765dSJeff Layton 	if (list_empty(&blocker->fl_block))
6184e8c765dSJeff Layton 		return;
6194e8c765dSJeff Layton 
6207b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
6211da177e4SLinus Torvalds 	while (!list_empty(&blocker->fl_block)) {
622f0c1cd0eSPavel Emelyanov 		struct file_lock *waiter;
623f0c1cd0eSPavel Emelyanov 
624f0c1cd0eSPavel Emelyanov 		waiter = list_first_entry(&blocker->fl_block,
6251da177e4SLinus Torvalds 				struct file_lock, fl_block);
6261da177e4SLinus Torvalds 		__locks_delete_block(waiter);
6278fb47a4fSJ. Bruce Fields 		if (waiter->fl_lmops && waiter->fl_lmops->lm_notify)
6288fb47a4fSJ. Bruce Fields 			waiter->fl_lmops->lm_notify(waiter);
6291da177e4SLinus Torvalds 		else
6301da177e4SLinus Torvalds 			wake_up(&waiter->fl_wait);
6311da177e4SLinus Torvalds 	}
6327b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
6331da177e4SLinus Torvalds }
6341da177e4SLinus Torvalds 
6351da177e4SLinus Torvalds /* Insert file lock fl into an inode's lock list at the position indicated
6361da177e4SLinus Torvalds  * by pos. At the same time add the lock to the global file lock list.
6371c8c601aSJeff Layton  *
6381c8c601aSJeff Layton  * Must be called with the i_lock held!
6391da177e4SLinus Torvalds  */
6401da177e4SLinus Torvalds static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
6411da177e4SLinus Torvalds {
642ab1f1611SVitaliy Gusev 	fl->fl_nspid = get_pid(task_tgid(current));
643ab1f1611SVitaliy Gusev 
6441da177e4SLinus Torvalds 	/* insert into file's list */
6451da177e4SLinus Torvalds 	fl->fl_next = *pos;
6461da177e4SLinus Torvalds 	*pos = fl;
64788974691SJeff Layton 
64888974691SJeff Layton 	locks_insert_global_locks(fl);
6491da177e4SLinus Torvalds }
6501da177e4SLinus Torvalds 
65124cbe784SJeff Layton /**
65224cbe784SJeff Layton  * locks_delete_lock - Delete a lock and then free it.
65324cbe784SJeff Layton  * @thisfl_p: pointer that points to the fl_next field of the previous
65424cbe784SJeff Layton  * 	      inode->i_flock list entry
65524cbe784SJeff Layton  *
65624cbe784SJeff Layton  * Unlink a lock from all lists and free the namespace reference, but don't
65724cbe784SJeff Layton  * free it yet. Wake up processes that are blocked waiting for this lock and
65824cbe784SJeff Layton  * notify the FS that the lock has been cleared.
6591c8c601aSJeff Layton  *
6601c8c601aSJeff Layton  * Must be called with the i_lock held!
6611da177e4SLinus Torvalds  */
66224cbe784SJeff Layton static void locks_unlink_lock(struct file_lock **thisfl_p)
6631da177e4SLinus Torvalds {
6641da177e4SLinus Torvalds 	struct file_lock *fl = *thisfl_p;
6651da177e4SLinus Torvalds 
66688974691SJeff Layton 	locks_delete_global_locks(fl);
66788974691SJeff Layton 
6681da177e4SLinus Torvalds 	*thisfl_p = fl->fl_next;
6691da177e4SLinus Torvalds 	fl->fl_next = NULL;
6701da177e4SLinus Torvalds 
671ab1f1611SVitaliy Gusev 	if (fl->fl_nspid) {
672ab1f1611SVitaliy Gusev 		put_pid(fl->fl_nspid);
673ab1f1611SVitaliy Gusev 		fl->fl_nspid = NULL;
674ab1f1611SVitaliy Gusev 	}
675ab1f1611SVitaliy Gusev 
6761da177e4SLinus Torvalds 	locks_wake_up_blocks(fl);
67724cbe784SJeff Layton }
67824cbe784SJeff Layton 
67924cbe784SJeff Layton /*
68024cbe784SJeff Layton  * Unlink a lock from all lists and free it.
68124cbe784SJeff Layton  *
68224cbe784SJeff Layton  * Must be called with i_lock held!
68324cbe784SJeff Layton  */
68424cbe784SJeff Layton static void locks_delete_lock(struct file_lock **thisfl_p)
68524cbe784SJeff Layton {
68624cbe784SJeff Layton 	struct file_lock *fl = *thisfl_p;
68724cbe784SJeff Layton 
68824cbe784SJeff Layton 	locks_unlink_lock(thisfl_p);
6891da177e4SLinus Torvalds 	locks_free_lock(fl);
6901da177e4SLinus Torvalds }
6911da177e4SLinus Torvalds 
6921da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
6931da177e4SLinus Torvalds  * checks for shared/exclusive status of overlapping locks.
6941da177e4SLinus Torvalds  */
6951da177e4SLinus Torvalds static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
6961da177e4SLinus Torvalds {
6971da177e4SLinus Torvalds 	if (sys_fl->fl_type == F_WRLCK)
6981da177e4SLinus Torvalds 		return 1;
6991da177e4SLinus Torvalds 	if (caller_fl->fl_type == F_WRLCK)
7001da177e4SLinus Torvalds 		return 1;
7011da177e4SLinus Torvalds 	return 0;
7021da177e4SLinus Torvalds }
7031da177e4SLinus Torvalds 
7041da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
7051da177e4SLinus Torvalds  * checking before calling the locks_conflict().
7061da177e4SLinus Torvalds  */
7071da177e4SLinus Torvalds static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
7081da177e4SLinus Torvalds {
7091da177e4SLinus Torvalds 	/* POSIX locks owned by the same process do not conflict with
7101da177e4SLinus Torvalds 	 * each other.
7111da177e4SLinus Torvalds 	 */
7121da177e4SLinus Torvalds 	if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
7131da177e4SLinus Torvalds 		return (0);
7141da177e4SLinus Torvalds 
7151da177e4SLinus Torvalds 	/* Check whether they overlap */
7161da177e4SLinus Torvalds 	if (!locks_overlap(caller_fl, sys_fl))
7171da177e4SLinus Torvalds 		return 0;
7181da177e4SLinus Torvalds 
7191da177e4SLinus Torvalds 	return (locks_conflict(caller_fl, sys_fl));
7201da177e4SLinus Torvalds }
7211da177e4SLinus Torvalds 
7221da177e4SLinus Torvalds /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
7231da177e4SLinus Torvalds  * checking before calling the locks_conflict().
7241da177e4SLinus Torvalds  */
7251da177e4SLinus Torvalds static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
7261da177e4SLinus Torvalds {
7271da177e4SLinus Torvalds 	/* FLOCK locks referring to the same filp do not conflict with
7281da177e4SLinus Torvalds 	 * each other.
7291da177e4SLinus Torvalds 	 */
7301da177e4SLinus Torvalds 	if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
7311da177e4SLinus Torvalds 		return (0);
7321da177e4SLinus Torvalds 	if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
7331da177e4SLinus Torvalds 		return 0;
7341da177e4SLinus Torvalds 
7351da177e4SLinus Torvalds 	return (locks_conflict(caller_fl, sys_fl));
7361da177e4SLinus Torvalds }
7371da177e4SLinus Torvalds 
7386d34ac19SJ. Bruce Fields void
7399d6a8c5cSMarc Eshel posix_test_lock(struct file *filp, struct file_lock *fl)
7401da177e4SLinus Torvalds {
7411da177e4SLinus Torvalds 	struct file_lock *cfl;
7421c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
7431da177e4SLinus Torvalds 
7441c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
745496ad9aaSAl Viro 	for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) {
7461da177e4SLinus Torvalds 		if (!IS_POSIX(cfl))
7471da177e4SLinus Torvalds 			continue;
748b842e240SJ. Bruce Fields 		if (posix_locks_conflict(fl, cfl))
7491da177e4SLinus Torvalds 			break;
7501da177e4SLinus Torvalds 	}
751ab1f1611SVitaliy Gusev 	if (cfl) {
7529d6a8c5cSMarc Eshel 		__locks_copy_lock(fl, cfl);
753ab1f1611SVitaliy Gusev 		if (cfl->fl_nspid)
7546c5f3e7bSPavel Emelyanov 			fl->fl_pid = pid_vnr(cfl->fl_nspid);
755ab1f1611SVitaliy Gusev 	} else
756129a84deSJ. Bruce Fields 		fl->fl_type = F_UNLCK;
7571c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
7586d34ac19SJ. Bruce Fields 	return;
7591da177e4SLinus Torvalds }
7601da177e4SLinus Torvalds EXPORT_SYMBOL(posix_test_lock);
7611da177e4SLinus Torvalds 
762b533184fSJ. Bruce Fields /*
763b533184fSJ. Bruce Fields  * Deadlock detection:
7641da177e4SLinus Torvalds  *
765b533184fSJ. Bruce Fields  * We attempt to detect deadlocks that are due purely to posix file
766b533184fSJ. Bruce Fields  * locks.
7671da177e4SLinus Torvalds  *
768b533184fSJ. Bruce Fields  * We assume that a task can be waiting for at most one lock at a time.
769b533184fSJ. Bruce Fields  * So for any acquired lock, the process holding that lock may be
770b533184fSJ. Bruce Fields  * waiting on at most one other lock.  That lock in turns may be held by
771b533184fSJ. Bruce Fields  * someone waiting for at most one other lock.  Given a requested lock
772b533184fSJ. Bruce Fields  * caller_fl which is about to wait for a conflicting lock block_fl, we
773b533184fSJ. Bruce Fields  * follow this chain of waiters to ensure we are not about to create a
774b533184fSJ. Bruce Fields  * cycle.
77597855b49SJ. Bruce Fields  *
776b533184fSJ. Bruce Fields  * Since we do this before we ever put a process to sleep on a lock, we
777b533184fSJ. Bruce Fields  * are ensured that there is never a cycle; that is what guarantees that
778b533184fSJ. Bruce Fields  * the while() loop in posix_locks_deadlock() eventually completes.
779b533184fSJ. Bruce Fields  *
780b533184fSJ. Bruce Fields  * Note: the above assumption may not be true when handling lock
781b533184fSJ. Bruce Fields  * requests from a broken NFS client. It may also fail in the presence
782b533184fSJ. Bruce Fields  * of tasks (such as posix threads) sharing the same open file table.
783b533184fSJ. Bruce Fields  *
784b533184fSJ. Bruce Fields  * To handle those cases, we just bail out after a few iterations.
7851da177e4SLinus Torvalds  */
78697855b49SJ. Bruce Fields 
78797855b49SJ. Bruce Fields #define MAX_DEADLK_ITERATIONS 10
78897855b49SJ. Bruce Fields 
789b533184fSJ. Bruce Fields /* Find a lock that the owner of the given block_fl is blocking on. */
790b533184fSJ. Bruce Fields static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
791b533184fSJ. Bruce Fields {
792b533184fSJ. Bruce Fields 	struct file_lock *fl;
793b533184fSJ. Bruce Fields 
7943999e493SJeff Layton 	hash_for_each_possible(blocked_hash, fl, fl_link, posix_owner_key(block_fl)) {
795b533184fSJ. Bruce Fields 		if (posix_same_owner(fl, block_fl))
796b533184fSJ. Bruce Fields 			return fl->fl_next;
797b533184fSJ. Bruce Fields 	}
798b533184fSJ. Bruce Fields 	return NULL;
799b533184fSJ. Bruce Fields }
800b533184fSJ. Bruce Fields 
8017b2296afSJeff Layton /* Must be called with the blocked_lock_lock held! */
802b0904e14SAdrian Bunk static int posix_locks_deadlock(struct file_lock *caller_fl,
8031da177e4SLinus Torvalds 				struct file_lock *block_fl)
8041da177e4SLinus Torvalds {
80597855b49SJ. Bruce Fields 	int i = 0;
8061da177e4SLinus Torvalds 
807b533184fSJ. Bruce Fields 	while ((block_fl = what_owner_is_waiting_for(block_fl))) {
80897855b49SJ. Bruce Fields 		if (i++ > MAX_DEADLK_ITERATIONS)
80997855b49SJ. Bruce Fields 			return 0;
810b533184fSJ. Bruce Fields 		if (posix_same_owner(caller_fl, block_fl))
811b533184fSJ. Bruce Fields 			return 1;
8121da177e4SLinus Torvalds 	}
8131da177e4SLinus Torvalds 	return 0;
8141da177e4SLinus Torvalds }
8151da177e4SLinus Torvalds 
8161da177e4SLinus Torvalds /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
81702888f41SJ. Bruce Fields  * after any leases, but before any posix locks.
818f475ae95STrond Myklebust  *
819f475ae95STrond Myklebust  * Note that if called with an FL_EXISTS argument, the caller may determine
820f475ae95STrond Myklebust  * whether or not a lock was successfully freed by testing the return
821f475ae95STrond Myklebust  * value for -ENOENT.
8221da177e4SLinus Torvalds  */
823993dfa87STrond Myklebust static int flock_lock_file(struct file *filp, struct file_lock *request)
8241da177e4SLinus Torvalds {
825993dfa87STrond Myklebust 	struct file_lock *new_fl = NULL;
8261da177e4SLinus Torvalds 	struct file_lock **before;
827496ad9aaSAl Viro 	struct inode * inode = file_inode(filp);
8281da177e4SLinus Torvalds 	int error = 0;
8291da177e4SLinus Torvalds 	int found = 0;
8301da177e4SLinus Torvalds 
831b89f4321SArnd Bergmann 	if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) {
832b89f4321SArnd Bergmann 		new_fl = locks_alloc_lock();
833b89f4321SArnd Bergmann 		if (!new_fl)
834b89f4321SArnd Bergmann 			return -ENOMEM;
835b89f4321SArnd Bergmann 	}
836b89f4321SArnd Bergmann 
8371c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
838f07f18ddSTrond Myklebust 	if (request->fl_flags & FL_ACCESS)
839f07f18ddSTrond Myklebust 		goto find_conflict;
84084d535adSPavel Emelyanov 
8411da177e4SLinus Torvalds 	for_each_lock(inode, before) {
8421da177e4SLinus Torvalds 		struct file_lock *fl = *before;
8431da177e4SLinus Torvalds 		if (IS_POSIX(fl))
8441da177e4SLinus Torvalds 			break;
8451da177e4SLinus Torvalds 		if (IS_LEASE(fl))
8461da177e4SLinus Torvalds 			continue;
8471da177e4SLinus Torvalds 		if (filp != fl->fl_file)
8481da177e4SLinus Torvalds 			continue;
849993dfa87STrond Myklebust 		if (request->fl_type == fl->fl_type)
8501da177e4SLinus Torvalds 			goto out;
8511da177e4SLinus Torvalds 		found = 1;
8521da177e4SLinus Torvalds 		locks_delete_lock(before);
8531da177e4SLinus Torvalds 		break;
8541da177e4SLinus Torvalds 	}
8551da177e4SLinus Torvalds 
856f475ae95STrond Myklebust 	if (request->fl_type == F_UNLCK) {
857f475ae95STrond Myklebust 		if ((request->fl_flags & FL_EXISTS) && !found)
858f475ae95STrond Myklebust 			error = -ENOENT;
859993dfa87STrond Myklebust 		goto out;
860f475ae95STrond Myklebust 	}
8611da177e4SLinus Torvalds 
8621da177e4SLinus Torvalds 	/*
8631da177e4SLinus Torvalds 	 * If a higher-priority process was blocked on the old file lock,
8641da177e4SLinus Torvalds 	 * give it the opportunity to lock the file.
8651da177e4SLinus Torvalds 	 */
866b89f4321SArnd Bergmann 	if (found) {
8671c8c601aSJeff Layton 		spin_unlock(&inode->i_lock);
868def01bc5SFrederic Weisbecker 		cond_resched();
8691c8c601aSJeff Layton 		spin_lock(&inode->i_lock);
870b89f4321SArnd Bergmann 	}
8711da177e4SLinus Torvalds 
872f07f18ddSTrond Myklebust find_conflict:
8731da177e4SLinus Torvalds 	for_each_lock(inode, before) {
8741da177e4SLinus Torvalds 		struct file_lock *fl = *before;
8751da177e4SLinus Torvalds 		if (IS_POSIX(fl))
8761da177e4SLinus Torvalds 			break;
8771da177e4SLinus Torvalds 		if (IS_LEASE(fl))
8781da177e4SLinus Torvalds 			continue;
879993dfa87STrond Myklebust 		if (!flock_locks_conflict(request, fl))
8801da177e4SLinus Torvalds 			continue;
8811da177e4SLinus Torvalds 		error = -EAGAIN;
882bde74e4bSMiklos Szeredi 		if (!(request->fl_flags & FL_SLEEP))
883bde74e4bSMiklos Szeredi 			goto out;
884bde74e4bSMiklos Szeredi 		error = FILE_LOCK_DEFERRED;
885993dfa87STrond Myklebust 		locks_insert_block(fl, request);
8861da177e4SLinus Torvalds 		goto out;
8871da177e4SLinus Torvalds 	}
888f07f18ddSTrond Myklebust 	if (request->fl_flags & FL_ACCESS)
889f07f18ddSTrond Myklebust 		goto out;
890993dfa87STrond Myklebust 	locks_copy_lock(new_fl, request);
8910e2f6db8SPavel Emelyanov 	locks_insert_lock(before, new_fl);
892993dfa87STrond Myklebust 	new_fl = NULL;
8939cedc194SKirill Korotaev 	error = 0;
8941da177e4SLinus Torvalds 
8951da177e4SLinus Torvalds out:
8961c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
897993dfa87STrond Myklebust 	if (new_fl)
898993dfa87STrond Myklebust 		locks_free_lock(new_fl);
8991da177e4SLinus Torvalds 	return error;
9001da177e4SLinus Torvalds }
9011da177e4SLinus Torvalds 
902150b3934SMarc Eshel static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock)
9031da177e4SLinus Torvalds {
9041da177e4SLinus Torvalds 	struct file_lock *fl;
90539005d02SMiklos Szeredi 	struct file_lock *new_fl = NULL;
90639005d02SMiklos Szeredi 	struct file_lock *new_fl2 = NULL;
9071da177e4SLinus Torvalds 	struct file_lock *left = NULL;
9081da177e4SLinus Torvalds 	struct file_lock *right = NULL;
9091da177e4SLinus Torvalds 	struct file_lock **before;
910b9746ef8SJeff Layton 	int error;
911b9746ef8SJeff Layton 	bool added = false;
9121da177e4SLinus Torvalds 
9131da177e4SLinus Torvalds 	/*
9141da177e4SLinus Torvalds 	 * We may need two file_lock structures for this operation,
9151da177e4SLinus Torvalds 	 * so we get them in advance to avoid races.
91639005d02SMiklos Szeredi 	 *
91739005d02SMiklos Szeredi 	 * In some cases we can be sure, that no new locks will be needed
9181da177e4SLinus Torvalds 	 */
91939005d02SMiklos Szeredi 	if (!(request->fl_flags & FL_ACCESS) &&
92039005d02SMiklos Szeredi 	    (request->fl_type != F_UNLCK ||
92139005d02SMiklos Szeredi 	     request->fl_start != 0 || request->fl_end != OFFSET_MAX)) {
9221da177e4SLinus Torvalds 		new_fl = locks_alloc_lock();
9231da177e4SLinus Torvalds 		new_fl2 = locks_alloc_lock();
92439005d02SMiklos Szeredi 	}
9251da177e4SLinus Torvalds 
9261c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
9271cb36012SJeff Layton 	/*
9281cb36012SJeff Layton 	 * New lock request. Walk all POSIX locks and look for conflicts. If
9291cb36012SJeff Layton 	 * there are any, either return error or put the request on the
93048f74186SJeff Layton 	 * blocker's list of waiters and the global blocked_hash.
9311cb36012SJeff Layton 	 */
9321da177e4SLinus Torvalds 	if (request->fl_type != F_UNLCK) {
9331da177e4SLinus Torvalds 		for_each_lock(inode, before) {
934526985b9SJ. Bruce Fields 			fl = *before;
9351da177e4SLinus Torvalds 			if (!IS_POSIX(fl))
9361da177e4SLinus Torvalds 				continue;
9371da177e4SLinus Torvalds 			if (!posix_locks_conflict(request, fl))
9381da177e4SLinus Torvalds 				continue;
9395842add2SAndy Adamson 			if (conflock)
9401a747ee0SJ. Bruce Fields 				__locks_copy_lock(conflock, fl);
9411da177e4SLinus Torvalds 			error = -EAGAIN;
9421da177e4SLinus Torvalds 			if (!(request->fl_flags & FL_SLEEP))
9431da177e4SLinus Torvalds 				goto out;
9441c8c601aSJeff Layton 			/*
9451c8c601aSJeff Layton 			 * Deadlock detection and insertion into the blocked
9461c8c601aSJeff Layton 			 * locks list must be done while holding the same lock!
9471c8c601aSJeff Layton 			 */
9481da177e4SLinus Torvalds 			error = -EDEADLK;
9497b2296afSJeff Layton 			spin_lock(&blocked_lock_lock);
9501c8c601aSJeff Layton 			if (likely(!posix_locks_deadlock(request, fl))) {
951bde74e4bSMiklos Szeredi 				error = FILE_LOCK_DEFERRED;
9521c8c601aSJeff Layton 				__locks_insert_block(fl, request);
9531c8c601aSJeff Layton 			}
9547b2296afSJeff Layton 			spin_unlock(&blocked_lock_lock);
9551da177e4SLinus Torvalds 			goto out;
9561da177e4SLinus Torvalds   		}
9571da177e4SLinus Torvalds   	}
9581da177e4SLinus Torvalds 
9591da177e4SLinus Torvalds 	/* If we're just looking for a conflict, we're done. */
9601da177e4SLinus Torvalds 	error = 0;
9611da177e4SLinus Torvalds 	if (request->fl_flags & FL_ACCESS)
9621da177e4SLinus Torvalds 		goto out;
9631da177e4SLinus Torvalds 
9641da177e4SLinus Torvalds 	/*
9651da177e4SLinus Torvalds 	 * Find the first old lock with the same owner as the new lock.
9661da177e4SLinus Torvalds 	 */
9671da177e4SLinus Torvalds 
9681da177e4SLinus Torvalds 	before = &inode->i_flock;
9691da177e4SLinus Torvalds 
9701da177e4SLinus Torvalds 	/* First skip locks owned by other processes.  */
9711da177e4SLinus Torvalds 	while ((fl = *before) && (!IS_POSIX(fl) ||
9721da177e4SLinus Torvalds 				  !posix_same_owner(request, fl))) {
9731da177e4SLinus Torvalds 		before = &fl->fl_next;
9741da177e4SLinus Torvalds 	}
9751da177e4SLinus Torvalds 
9761da177e4SLinus Torvalds 	/* Process locks with this owner. */
9771da177e4SLinus Torvalds 	while ((fl = *before) && posix_same_owner(request, fl)) {
9781da177e4SLinus Torvalds 		/* Detect adjacent or overlapping regions (if same lock type)
9791da177e4SLinus Torvalds 		 */
9801da177e4SLinus Torvalds 		if (request->fl_type == fl->fl_type) {
981449231d6SOlaf Kirch 			/* In all comparisons of start vs end, use
982449231d6SOlaf Kirch 			 * "start - 1" rather than "end + 1". If end
983449231d6SOlaf Kirch 			 * is OFFSET_MAX, end + 1 will become negative.
984449231d6SOlaf Kirch 			 */
9851da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_start - 1)
9861da177e4SLinus Torvalds 				goto next_lock;
9871da177e4SLinus Torvalds 			/* If the next lock in the list has entirely bigger
9881da177e4SLinus Torvalds 			 * addresses than the new one, insert the lock here.
9891da177e4SLinus Torvalds 			 */
990449231d6SOlaf Kirch 			if (fl->fl_start - 1 > request->fl_end)
9911da177e4SLinus Torvalds 				break;
9921da177e4SLinus Torvalds 
9931da177e4SLinus Torvalds 			/* If we come here, the new and old lock are of the
9941da177e4SLinus Torvalds 			 * same type and adjacent or overlapping. Make one
9951da177e4SLinus Torvalds 			 * lock yielding from the lower start address of both
9961da177e4SLinus Torvalds 			 * locks to the higher end address.
9971da177e4SLinus Torvalds 			 */
9981da177e4SLinus Torvalds 			if (fl->fl_start > request->fl_start)
9991da177e4SLinus Torvalds 				fl->fl_start = request->fl_start;
10001da177e4SLinus Torvalds 			else
10011da177e4SLinus Torvalds 				request->fl_start = fl->fl_start;
10021da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_end)
10031da177e4SLinus Torvalds 				fl->fl_end = request->fl_end;
10041da177e4SLinus Torvalds 			else
10051da177e4SLinus Torvalds 				request->fl_end = fl->fl_end;
10061da177e4SLinus Torvalds 			if (added) {
10071da177e4SLinus Torvalds 				locks_delete_lock(before);
10081da177e4SLinus Torvalds 				continue;
10091da177e4SLinus Torvalds 			}
10101da177e4SLinus Torvalds 			request = fl;
1011b9746ef8SJeff Layton 			added = true;
10121da177e4SLinus Torvalds 		}
10131da177e4SLinus Torvalds 		else {
10141da177e4SLinus Torvalds 			/* Processing for different lock types is a bit
10151da177e4SLinus Torvalds 			 * more complex.
10161da177e4SLinus Torvalds 			 */
10171da177e4SLinus Torvalds 			if (fl->fl_end < request->fl_start)
10181da177e4SLinus Torvalds 				goto next_lock;
10191da177e4SLinus Torvalds 			if (fl->fl_start > request->fl_end)
10201da177e4SLinus Torvalds 				break;
10211da177e4SLinus Torvalds 			if (request->fl_type == F_UNLCK)
1022b9746ef8SJeff Layton 				added = true;
10231da177e4SLinus Torvalds 			if (fl->fl_start < request->fl_start)
10241da177e4SLinus Torvalds 				left = fl;
10251da177e4SLinus Torvalds 			/* If the next lock in the list has a higher end
10261da177e4SLinus Torvalds 			 * address than the new one, insert the new one here.
10271da177e4SLinus Torvalds 			 */
10281da177e4SLinus Torvalds 			if (fl->fl_end > request->fl_end) {
10291da177e4SLinus Torvalds 				right = fl;
10301da177e4SLinus Torvalds 				break;
10311da177e4SLinus Torvalds 			}
10321da177e4SLinus Torvalds 			if (fl->fl_start >= request->fl_start) {
10331da177e4SLinus Torvalds 				/* The new lock completely replaces an old
10341da177e4SLinus Torvalds 				 * one (This may happen several times).
10351da177e4SLinus Torvalds 				 */
10361da177e4SLinus Torvalds 				if (added) {
10371da177e4SLinus Torvalds 					locks_delete_lock(before);
10381da177e4SLinus Torvalds 					continue;
10391da177e4SLinus Torvalds 				}
10401da177e4SLinus Torvalds 				/* Replace the old lock with the new one.
10411da177e4SLinus Torvalds 				 * Wake up anybody waiting for the old one,
10421da177e4SLinus Torvalds 				 * as the change in lock type might satisfy
10431da177e4SLinus Torvalds 				 * their needs.
10441da177e4SLinus Torvalds 				 */
10451da177e4SLinus Torvalds 				locks_wake_up_blocks(fl);
10461da177e4SLinus Torvalds 				fl->fl_start = request->fl_start;
10471da177e4SLinus Torvalds 				fl->fl_end = request->fl_end;
10481da177e4SLinus Torvalds 				fl->fl_type = request->fl_type;
104947831f35STrond Myklebust 				locks_release_private(fl);
105047831f35STrond Myklebust 				locks_copy_private(fl, request);
10511da177e4SLinus Torvalds 				request = fl;
1052b9746ef8SJeff Layton 				added = true;
10531da177e4SLinus Torvalds 			}
10541da177e4SLinus Torvalds 		}
10551da177e4SLinus Torvalds 		/* Go on to next lock.
10561da177e4SLinus Torvalds 		 */
10571da177e4SLinus Torvalds 	next_lock:
10581da177e4SLinus Torvalds 		before = &fl->fl_next;
10591da177e4SLinus Torvalds 	}
10601da177e4SLinus Torvalds 
10610d9a490aSMiklos Szeredi 	/*
10621cb36012SJeff Layton 	 * The above code only modifies existing locks in case of merging or
10631cb36012SJeff Layton 	 * replacing. If new lock(s) need to be inserted all modifications are
10641cb36012SJeff Layton 	 * done below this, so it's safe yet to bail out.
10650d9a490aSMiklos Szeredi 	 */
10660d9a490aSMiklos Szeredi 	error = -ENOLCK; /* "no luck" */
10670d9a490aSMiklos Szeredi 	if (right && left == right && !new_fl2)
10680d9a490aSMiklos Szeredi 		goto out;
10690d9a490aSMiklos Szeredi 
10701da177e4SLinus Torvalds 	error = 0;
10711da177e4SLinus Torvalds 	if (!added) {
1072f475ae95STrond Myklebust 		if (request->fl_type == F_UNLCK) {
1073f475ae95STrond Myklebust 			if (request->fl_flags & FL_EXISTS)
1074f475ae95STrond Myklebust 				error = -ENOENT;
10751da177e4SLinus Torvalds 			goto out;
1076f475ae95STrond Myklebust 		}
10770d9a490aSMiklos Szeredi 
10780d9a490aSMiklos Szeredi 		if (!new_fl) {
10790d9a490aSMiklos Szeredi 			error = -ENOLCK;
10800d9a490aSMiklos Szeredi 			goto out;
10810d9a490aSMiklos Szeredi 		}
10821da177e4SLinus Torvalds 		locks_copy_lock(new_fl, request);
10831da177e4SLinus Torvalds 		locks_insert_lock(before, new_fl);
10841da177e4SLinus Torvalds 		new_fl = NULL;
10851da177e4SLinus Torvalds 	}
10861da177e4SLinus Torvalds 	if (right) {
10871da177e4SLinus Torvalds 		if (left == right) {
10881da177e4SLinus Torvalds 			/* The new lock breaks the old one in two pieces,
10891da177e4SLinus Torvalds 			 * so we have to use the second new lock.
10901da177e4SLinus Torvalds 			 */
10911da177e4SLinus Torvalds 			left = new_fl2;
10921da177e4SLinus Torvalds 			new_fl2 = NULL;
10931da177e4SLinus Torvalds 			locks_copy_lock(left, right);
10941da177e4SLinus Torvalds 			locks_insert_lock(before, left);
10951da177e4SLinus Torvalds 		}
10961da177e4SLinus Torvalds 		right->fl_start = request->fl_end + 1;
10971da177e4SLinus Torvalds 		locks_wake_up_blocks(right);
10981da177e4SLinus Torvalds 	}
10991da177e4SLinus Torvalds 	if (left) {
11001da177e4SLinus Torvalds 		left->fl_end = request->fl_start - 1;
11011da177e4SLinus Torvalds 		locks_wake_up_blocks(left);
11021da177e4SLinus Torvalds 	}
11031da177e4SLinus Torvalds  out:
11041c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
11051da177e4SLinus Torvalds 	/*
11061da177e4SLinus Torvalds 	 * Free any unused locks.
11071da177e4SLinus Torvalds 	 */
11081da177e4SLinus Torvalds 	if (new_fl)
11091da177e4SLinus Torvalds 		locks_free_lock(new_fl);
11101da177e4SLinus Torvalds 	if (new_fl2)
11111da177e4SLinus Torvalds 		locks_free_lock(new_fl2);
11121da177e4SLinus Torvalds 	return error;
11131da177e4SLinus Torvalds }
11141da177e4SLinus Torvalds 
11151da177e4SLinus Torvalds /**
11161da177e4SLinus Torvalds  * posix_lock_file - Apply a POSIX-style lock to a file
11171da177e4SLinus Torvalds  * @filp: The file to apply the lock to
11181da177e4SLinus Torvalds  * @fl: The lock to be applied
1119150b3934SMarc Eshel  * @conflock: Place to return a copy of the conflicting lock, if found.
11201da177e4SLinus Torvalds  *
11211da177e4SLinus Torvalds  * Add a POSIX style lock to a file.
11221da177e4SLinus Torvalds  * We merge adjacent & overlapping locks whenever possible.
11231da177e4SLinus Torvalds  * POSIX locks are sorted by owner task, then by starting address
1124f475ae95STrond Myklebust  *
1125f475ae95STrond Myklebust  * Note that if called with an FL_EXISTS argument, the caller may determine
1126f475ae95STrond Myklebust  * whether or not a lock was successfully freed by testing the return
1127f475ae95STrond Myklebust  * value for -ENOENT.
11281da177e4SLinus Torvalds  */
1129150b3934SMarc Eshel int posix_lock_file(struct file *filp, struct file_lock *fl,
11305842add2SAndy Adamson 			struct file_lock *conflock)
11315842add2SAndy Adamson {
1132496ad9aaSAl Viro 	return __posix_lock_file(file_inode(filp), fl, conflock);
11335842add2SAndy Adamson }
1134150b3934SMarc Eshel EXPORT_SYMBOL(posix_lock_file);
11351da177e4SLinus Torvalds 
11361da177e4SLinus Torvalds /**
11371da177e4SLinus Torvalds  * posix_lock_file_wait - Apply a POSIX-style lock to a file
11381da177e4SLinus Torvalds  * @filp: The file to apply the lock to
11391da177e4SLinus Torvalds  * @fl: The lock to be applied
11401da177e4SLinus Torvalds  *
11411da177e4SLinus Torvalds  * Add a POSIX style lock to a file.
11421da177e4SLinus Torvalds  * We merge adjacent & overlapping locks whenever possible.
11431da177e4SLinus Torvalds  * POSIX locks are sorted by owner task, then by starting address
11441da177e4SLinus Torvalds  */
11451da177e4SLinus Torvalds int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
11461da177e4SLinus Torvalds {
11471da177e4SLinus Torvalds 	int error;
11481da177e4SLinus Torvalds 	might_sleep ();
11491da177e4SLinus Torvalds 	for (;;) {
1150150b3934SMarc Eshel 		error = posix_lock_file(filp, fl, NULL);
1151bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
11521da177e4SLinus Torvalds 			break;
11531da177e4SLinus Torvalds 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
11541da177e4SLinus Torvalds 		if (!error)
11551da177e4SLinus Torvalds 			continue;
11561da177e4SLinus Torvalds 
11571da177e4SLinus Torvalds 		locks_delete_block(fl);
11581da177e4SLinus Torvalds 		break;
11591da177e4SLinus Torvalds 	}
11601da177e4SLinus Torvalds 	return error;
11611da177e4SLinus Torvalds }
11621da177e4SLinus Torvalds EXPORT_SYMBOL(posix_lock_file_wait);
11631da177e4SLinus Torvalds 
11641da177e4SLinus Torvalds /**
11651da177e4SLinus Torvalds  * locks_mandatory_locked - Check for an active lock
11661da177e4SLinus Torvalds  * @inode: the file to check
11671da177e4SLinus Torvalds  *
11681da177e4SLinus Torvalds  * Searches the inode's list of locks to find any POSIX locks which conflict.
11691da177e4SLinus Torvalds  * This function is called from locks_verify_locked() only.
11701da177e4SLinus Torvalds  */
11711da177e4SLinus Torvalds int locks_mandatory_locked(struct inode *inode)
11721da177e4SLinus Torvalds {
11731da177e4SLinus Torvalds 	fl_owner_t owner = current->files;
11741da177e4SLinus Torvalds 	struct file_lock *fl;
11751da177e4SLinus Torvalds 
11761da177e4SLinus Torvalds 	/*
11771da177e4SLinus Torvalds 	 * Search the lock list for this inode for any POSIX locks.
11781da177e4SLinus Torvalds 	 */
11791c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
11801da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
11811da177e4SLinus Torvalds 		if (!IS_POSIX(fl))
11821da177e4SLinus Torvalds 			continue;
11831da177e4SLinus Torvalds 		if (fl->fl_owner != owner)
11841da177e4SLinus Torvalds 			break;
11851da177e4SLinus Torvalds 	}
11861c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
11871da177e4SLinus Torvalds 	return fl ? -EAGAIN : 0;
11881da177e4SLinus Torvalds }
11891da177e4SLinus Torvalds 
11901da177e4SLinus Torvalds /**
11911da177e4SLinus Torvalds  * locks_mandatory_area - Check for a conflicting lock
11921da177e4SLinus Torvalds  * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
11931da177e4SLinus Torvalds  *		for shared
11941da177e4SLinus Torvalds  * @inode:      the file to check
11951da177e4SLinus Torvalds  * @filp:       how the file was opened (if it was)
11961da177e4SLinus Torvalds  * @offset:     start of area to check
11971da177e4SLinus Torvalds  * @count:      length of area to check
11981da177e4SLinus Torvalds  *
11991da177e4SLinus Torvalds  * Searches the inode's list of locks to find any POSIX locks which conflict.
12001da177e4SLinus Torvalds  * This function is called from rw_verify_area() and
12011da177e4SLinus Torvalds  * locks_verify_truncate().
12021da177e4SLinus Torvalds  */
12031da177e4SLinus Torvalds int locks_mandatory_area(int read_write, struct inode *inode,
12041da177e4SLinus Torvalds 			 struct file *filp, loff_t offset,
12051da177e4SLinus Torvalds 			 size_t count)
12061da177e4SLinus Torvalds {
12071da177e4SLinus Torvalds 	struct file_lock fl;
12081da177e4SLinus Torvalds 	int error;
12091da177e4SLinus Torvalds 
12101da177e4SLinus Torvalds 	locks_init_lock(&fl);
12111da177e4SLinus Torvalds 	fl.fl_owner = current->files;
12121da177e4SLinus Torvalds 	fl.fl_pid = current->tgid;
12131da177e4SLinus Torvalds 	fl.fl_file = filp;
12141da177e4SLinus Torvalds 	fl.fl_flags = FL_POSIX | FL_ACCESS;
12151da177e4SLinus Torvalds 	if (filp && !(filp->f_flags & O_NONBLOCK))
12161da177e4SLinus Torvalds 		fl.fl_flags |= FL_SLEEP;
12171da177e4SLinus Torvalds 	fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
12181da177e4SLinus Torvalds 	fl.fl_start = offset;
12191da177e4SLinus Torvalds 	fl.fl_end = offset + count - 1;
12201da177e4SLinus Torvalds 
12211da177e4SLinus Torvalds 	for (;;) {
1222150b3934SMarc Eshel 		error = __posix_lock_file(inode, &fl, NULL);
1223bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
12241da177e4SLinus Torvalds 			break;
12251da177e4SLinus Torvalds 		error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
12261da177e4SLinus Torvalds 		if (!error) {
12271da177e4SLinus Torvalds 			/*
12281da177e4SLinus Torvalds 			 * If we've been sleeping someone might have
12291da177e4SLinus Torvalds 			 * changed the permissions behind our back.
12301da177e4SLinus Torvalds 			 */
1231a16877caSPavel Emelyanov 			if (__mandatory_lock(inode))
12321da177e4SLinus Torvalds 				continue;
12331da177e4SLinus Torvalds 		}
12341da177e4SLinus Torvalds 
12351da177e4SLinus Torvalds 		locks_delete_block(&fl);
12361da177e4SLinus Torvalds 		break;
12371da177e4SLinus Torvalds 	}
12381da177e4SLinus Torvalds 
12391da177e4SLinus Torvalds 	return error;
12401da177e4SLinus Torvalds }
12411da177e4SLinus Torvalds 
12421da177e4SLinus Torvalds EXPORT_SYMBOL(locks_mandatory_area);
12431da177e4SLinus Torvalds 
1244778fc546SJ. Bruce Fields static void lease_clear_pending(struct file_lock *fl, int arg)
1245778fc546SJ. Bruce Fields {
1246778fc546SJ. Bruce Fields 	switch (arg) {
1247778fc546SJ. Bruce Fields 	case F_UNLCK:
1248778fc546SJ. Bruce Fields 		fl->fl_flags &= ~FL_UNLOCK_PENDING;
1249778fc546SJ. Bruce Fields 		/* fall through: */
1250778fc546SJ. Bruce Fields 	case F_RDLCK:
1251778fc546SJ. Bruce Fields 		fl->fl_flags &= ~FL_DOWNGRADE_PENDING;
1252778fc546SJ. Bruce Fields 	}
1253778fc546SJ. Bruce Fields }
1254778fc546SJ. Bruce Fields 
12551da177e4SLinus Torvalds /* We already had a lease on this file; just change its type */
12561da177e4SLinus Torvalds int lease_modify(struct file_lock **before, int arg)
12571da177e4SLinus Torvalds {
12581da177e4SLinus Torvalds 	struct file_lock *fl = *before;
12591da177e4SLinus Torvalds 	int error = assign_type(fl, arg);
12601da177e4SLinus Torvalds 
12611da177e4SLinus Torvalds 	if (error)
12621da177e4SLinus Torvalds 		return error;
1263778fc546SJ. Bruce Fields 	lease_clear_pending(fl, arg);
12641da177e4SLinus Torvalds 	locks_wake_up_blocks(fl);
12653b6e2723SFilipe Brandenburger 	if (arg == F_UNLCK) {
12663b6e2723SFilipe Brandenburger 		struct file *filp = fl->fl_file;
12673b6e2723SFilipe Brandenburger 
12683b6e2723SFilipe Brandenburger 		f_delown(filp);
12693b6e2723SFilipe Brandenburger 		filp->f_owner.signum = 0;
127096d6d59cSJ. Bruce Fields 		fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
127196d6d59cSJ. Bruce Fields 		if (fl->fl_fasync != NULL) {
127296d6d59cSJ. Bruce Fields 			printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
127396d6d59cSJ. Bruce Fields 			fl->fl_fasync = NULL;
127496d6d59cSJ. Bruce Fields 		}
12751da177e4SLinus Torvalds 		locks_delete_lock(before);
12763b6e2723SFilipe Brandenburger 	}
12771da177e4SLinus Torvalds 	return 0;
12781da177e4SLinus Torvalds }
12791da177e4SLinus Torvalds 
12801da177e4SLinus Torvalds EXPORT_SYMBOL(lease_modify);
12811da177e4SLinus Torvalds 
1282778fc546SJ. Bruce Fields static bool past_time(unsigned long then)
1283778fc546SJ. Bruce Fields {
1284778fc546SJ. Bruce Fields 	if (!then)
1285778fc546SJ. Bruce Fields 		/* 0 is a special value meaning "this never expires": */
1286778fc546SJ. Bruce Fields 		return false;
1287778fc546SJ. Bruce Fields 	return time_after(jiffies, then);
1288778fc546SJ. Bruce Fields }
1289778fc546SJ. Bruce Fields 
12901da177e4SLinus Torvalds static void time_out_leases(struct inode *inode)
12911da177e4SLinus Torvalds {
12921da177e4SLinus Torvalds 	struct file_lock **before;
12931da177e4SLinus Torvalds 	struct file_lock *fl;
12941da177e4SLinus Torvalds 
12951da177e4SLinus Torvalds 	before = &inode->i_flock;
1296ab83fa4bSJ. Bruce Fields 	while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) {
1297778fc546SJ. Bruce Fields 		if (past_time(fl->fl_downgrade_time))
1298778fc546SJ. Bruce Fields 			lease_modify(before, F_RDLCK);
1299778fc546SJ. Bruce Fields 		if (past_time(fl->fl_break_time))
1300778fc546SJ. Bruce Fields 			lease_modify(before, F_UNLCK);
13011da177e4SLinus Torvalds 		if (fl == *before)	/* lease_modify may have freed fl */
13021da177e4SLinus Torvalds 			before = &fl->fl_next;
13031da177e4SLinus Torvalds 	}
13041da177e4SLinus Torvalds }
13051da177e4SLinus Torvalds 
1306df4e8d2cSJ. Bruce Fields static bool leases_conflict(struct file_lock *lease, struct file_lock *breaker)
1307df4e8d2cSJ. Bruce Fields {
1308df4e8d2cSJ. Bruce Fields 	if ((breaker->fl_flags & FL_DELEG) && (lease->fl_flags & FL_LEASE))
1309df4e8d2cSJ. Bruce Fields 		return false;
1310df4e8d2cSJ. Bruce Fields 	return locks_conflict(breaker, lease);
1311df4e8d2cSJ. Bruce Fields }
1312df4e8d2cSJ. Bruce Fields 
13131da177e4SLinus Torvalds /**
13141da177e4SLinus Torvalds  *	__break_lease	-	revoke all outstanding leases on file
13151da177e4SLinus Torvalds  *	@inode: the inode of the file to return
1316df4e8d2cSJ. Bruce Fields  *	@mode: O_RDONLY: break only write leases; O_WRONLY or O_RDWR:
1317df4e8d2cSJ. Bruce Fields  *	    break all leases
1318df4e8d2cSJ. Bruce Fields  *	@type: FL_LEASE: break leases and delegations; FL_DELEG: break
1319df4e8d2cSJ. Bruce Fields  *	    only delegations
13201da177e4SLinus Torvalds  *
132187250dd2Sdavid m. richter  *	break_lease (inlined for speed) has checked there already is at least
132287250dd2Sdavid m. richter  *	some kind of lock (maybe a lease) on this file.  Leases are broken on
132387250dd2Sdavid m. richter  *	a call to open() or truncate().  This function can sleep unless you
13241da177e4SLinus Torvalds  *	specified %O_NONBLOCK to your open().
13251da177e4SLinus Torvalds  */
1326df4e8d2cSJ. Bruce Fields int __break_lease(struct inode *inode, unsigned int mode, unsigned int type)
13271da177e4SLinus Torvalds {
1328778fc546SJ. Bruce Fields 	int error = 0;
13291da177e4SLinus Torvalds 	struct file_lock *new_fl, *flock;
13301da177e4SLinus Torvalds 	struct file_lock *fl;
13311da177e4SLinus Torvalds 	unsigned long break_time;
13321da177e4SLinus Torvalds 	int i_have_this_lease = 0;
1333df4e8d2cSJ. Bruce Fields 	bool lease_conflict = false;
13348737c930SAl Viro 	int want_write = (mode & O_ACCMODE) != O_RDONLY;
13351da177e4SLinus Torvalds 
13368737c930SAl Viro 	new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK);
13376d4b9e38SLinus Torvalds 	if (IS_ERR(new_fl))
13386d4b9e38SLinus Torvalds 		return PTR_ERR(new_fl);
1339df4e8d2cSJ. Bruce Fields 	new_fl->fl_flags = type;
13401da177e4SLinus Torvalds 
13411c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
13421da177e4SLinus Torvalds 
13431da177e4SLinus Torvalds 	time_out_leases(inode);
13441da177e4SLinus Torvalds 
13451da177e4SLinus Torvalds 	flock = inode->i_flock;
13461da177e4SLinus Torvalds 	if ((flock == NULL) || !IS_LEASE(flock))
13471da177e4SLinus Torvalds 		goto out;
13481da177e4SLinus Torvalds 
1349df4e8d2cSJ. Bruce Fields 	for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1350df4e8d2cSJ. Bruce Fields 		if (leases_conflict(fl, new_fl)) {
1351df4e8d2cSJ. Bruce Fields 			lease_conflict = true;
13521da177e4SLinus Torvalds 			if (fl->fl_owner == current->files)
13531da177e4SLinus Torvalds 				i_have_this_lease = 1;
1354df4e8d2cSJ. Bruce Fields 		}
1355df4e8d2cSJ. Bruce Fields 	}
1356df4e8d2cSJ. Bruce Fields 	if (!lease_conflict)
1357df4e8d2cSJ. Bruce Fields 		goto out;
13581da177e4SLinus Torvalds 
13591da177e4SLinus Torvalds 	break_time = 0;
13601da177e4SLinus Torvalds 	if (lease_break_time > 0) {
13611da177e4SLinus Torvalds 		break_time = jiffies + lease_break_time * HZ;
13621da177e4SLinus Torvalds 		if (break_time == 0)
13631da177e4SLinus Torvalds 			break_time++;	/* so that 0 means no break time */
13641da177e4SLinus Torvalds 	}
13651da177e4SLinus Torvalds 
13661da177e4SLinus Torvalds 	for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1367df4e8d2cSJ. Bruce Fields 		if (!leases_conflict(fl, new_fl))
1368df4e8d2cSJ. Bruce Fields 			continue;
1369778fc546SJ. Bruce Fields 		if (want_write) {
1370778fc546SJ. Bruce Fields 			if (fl->fl_flags & FL_UNLOCK_PENDING)
1371778fc546SJ. Bruce Fields 				continue;
1372778fc546SJ. Bruce Fields 			fl->fl_flags |= FL_UNLOCK_PENDING;
13731da177e4SLinus Torvalds 			fl->fl_break_time = break_time;
1374778fc546SJ. Bruce Fields 		} else {
1375778fc546SJ. Bruce Fields 			if (lease_breaking(flock))
1376778fc546SJ. Bruce Fields 				continue;
1377778fc546SJ. Bruce Fields 			fl->fl_flags |= FL_DOWNGRADE_PENDING;
1378778fc546SJ. Bruce Fields 			fl->fl_downgrade_time = break_time;
13791da177e4SLinus Torvalds 		}
1380778fc546SJ. Bruce Fields 		fl->fl_lmops->lm_break(fl);
13811da177e4SLinus Torvalds 	}
13821da177e4SLinus Torvalds 
13831da177e4SLinus Torvalds 	if (i_have_this_lease || (mode & O_NONBLOCK)) {
13841da177e4SLinus Torvalds 		error = -EWOULDBLOCK;
13851da177e4SLinus Torvalds 		goto out;
13861da177e4SLinus Torvalds 	}
13871da177e4SLinus Torvalds 
13881da177e4SLinus Torvalds restart:
13891da177e4SLinus Torvalds 	break_time = flock->fl_break_time;
13901da177e4SLinus Torvalds 	if (break_time != 0) {
13911da177e4SLinus Torvalds 		break_time -= jiffies;
13921da177e4SLinus Torvalds 		if (break_time == 0)
13931da177e4SLinus Torvalds 			break_time++;
13941da177e4SLinus Torvalds 	}
13954321e01eSMatthew Wilcox 	locks_insert_block(flock, new_fl);
13961c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
13974321e01eSMatthew Wilcox 	error = wait_event_interruptible_timeout(new_fl->fl_wait,
13984321e01eSMatthew Wilcox 						!new_fl->fl_next, break_time);
13991c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
14001c8c601aSJeff Layton 	locks_delete_block(new_fl);
14011da177e4SLinus Torvalds 	if (error >= 0) {
14021da177e4SLinus Torvalds 		if (error == 0)
14031da177e4SLinus Torvalds 			time_out_leases(inode);
1404778fc546SJ. Bruce Fields 		/*
1405778fc546SJ. Bruce Fields 		 * Wait for the next conflicting lease that has not been
1406778fc546SJ. Bruce Fields 		 * broken yet
1407778fc546SJ. Bruce Fields 		 */
14081da177e4SLinus Torvalds 		for (flock = inode->i_flock; flock && IS_LEASE(flock);
14091da177e4SLinus Torvalds 				flock = flock->fl_next) {
1410df4e8d2cSJ. Bruce Fields 			if (leases_conflict(new_fl, flock))
14111da177e4SLinus Torvalds 				goto restart;
14121da177e4SLinus Torvalds 		}
14131da177e4SLinus Torvalds 		error = 0;
14141da177e4SLinus Torvalds 	}
14151da177e4SLinus Torvalds 
14161da177e4SLinus Torvalds out:
14171c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
14181da177e4SLinus Torvalds 	locks_free_lock(new_fl);
14191da177e4SLinus Torvalds 	return error;
14201da177e4SLinus Torvalds }
14211da177e4SLinus Torvalds 
14221da177e4SLinus Torvalds EXPORT_SYMBOL(__break_lease);
14231da177e4SLinus Torvalds 
14241da177e4SLinus Torvalds /**
1425a6b91919SRandy Dunlap  *	lease_get_mtime - get the last modified time of an inode
14261da177e4SLinus Torvalds  *	@inode: the inode
14271da177e4SLinus Torvalds  *      @time:  pointer to a timespec which will contain the last modified time
14281da177e4SLinus Torvalds  *
14291da177e4SLinus Torvalds  * This is to force NFS clients to flush their caches for files with
14301da177e4SLinus Torvalds  * exclusive leases.  The justification is that if someone has an
1431a6b91919SRandy Dunlap  * exclusive lease, then they could be modifying it.
14321da177e4SLinus Torvalds  */
14331da177e4SLinus Torvalds void lease_get_mtime(struct inode *inode, struct timespec *time)
14341da177e4SLinus Torvalds {
14351da177e4SLinus Torvalds 	struct file_lock *flock = inode->i_flock;
14360ee5c6d6SJeff Layton 	if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK))
14371da177e4SLinus Torvalds 		*time = current_fs_time(inode->i_sb);
14381da177e4SLinus Torvalds 	else
14391da177e4SLinus Torvalds 		*time = inode->i_mtime;
14401da177e4SLinus Torvalds }
14411da177e4SLinus Torvalds 
14421da177e4SLinus Torvalds EXPORT_SYMBOL(lease_get_mtime);
14431da177e4SLinus Torvalds 
14441da177e4SLinus Torvalds /**
14451da177e4SLinus Torvalds  *	fcntl_getlease - Enquire what lease is currently active
14461da177e4SLinus Torvalds  *	@filp: the file
14471da177e4SLinus Torvalds  *
14481da177e4SLinus Torvalds  *	The value returned by this function will be one of
14491da177e4SLinus Torvalds  *	(if no lease break is pending):
14501da177e4SLinus Torvalds  *
14511da177e4SLinus Torvalds  *	%F_RDLCK to indicate a shared lease is held.
14521da177e4SLinus Torvalds  *
14531da177e4SLinus Torvalds  *	%F_WRLCK to indicate an exclusive lease is held.
14541da177e4SLinus Torvalds  *
14551da177e4SLinus Torvalds  *	%F_UNLCK to indicate no lease is held.
14561da177e4SLinus Torvalds  *
14571da177e4SLinus Torvalds  *	(if a lease break is pending):
14581da177e4SLinus Torvalds  *
14591da177e4SLinus Torvalds  *	%F_RDLCK to indicate an exclusive lease needs to be
14601da177e4SLinus Torvalds  *		changed to a shared lease (or removed).
14611da177e4SLinus Torvalds  *
14621da177e4SLinus Torvalds  *	%F_UNLCK to indicate the lease needs to be removed.
14631da177e4SLinus Torvalds  *
14641da177e4SLinus Torvalds  *	XXX: sfr & willy disagree over whether F_INPROGRESS
14651da177e4SLinus Torvalds  *	should be returned to userspace.
14661da177e4SLinus Torvalds  */
14671da177e4SLinus Torvalds int fcntl_getlease(struct file *filp)
14681da177e4SLinus Torvalds {
14691da177e4SLinus Torvalds 	struct file_lock *fl;
14701c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
14711da177e4SLinus Torvalds 	int type = F_UNLCK;
14721da177e4SLinus Torvalds 
14731c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
1474496ad9aaSAl Viro 	time_out_leases(file_inode(filp));
1475496ad9aaSAl Viro 	for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl);
14761da177e4SLinus Torvalds 			fl = fl->fl_next) {
14771da177e4SLinus Torvalds 		if (fl->fl_file == filp) {
1478778fc546SJ. Bruce Fields 			type = target_leasetype(fl);
14791da177e4SLinus Torvalds 			break;
14801da177e4SLinus Torvalds 		}
14811da177e4SLinus Torvalds 	}
14821c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
14831da177e4SLinus Torvalds 	return type;
14841da177e4SLinus Torvalds }
14851da177e4SLinus Torvalds 
148624cbe784SJeff Layton /**
148724cbe784SJeff Layton  * check_conflicting_open - see if the given dentry points to a file that has
148824cbe784SJeff Layton  * 			    an existing open that would conflict with the
148924cbe784SJeff Layton  * 			    desired lease.
149024cbe784SJeff Layton  * @dentry:	dentry to check
149124cbe784SJeff Layton  * @arg:	type of lease that we're trying to acquire
149224cbe784SJeff Layton  *
149324cbe784SJeff Layton  * Check to see if there's an existing open fd on this file that would
149424cbe784SJeff Layton  * conflict with the lease we're trying to set.
149524cbe784SJeff Layton  */
149624cbe784SJeff Layton static int
149724cbe784SJeff Layton check_conflicting_open(const struct dentry *dentry, const long arg)
149824cbe784SJeff Layton {
149924cbe784SJeff Layton 	int ret = 0;
150024cbe784SJeff Layton 	struct inode *inode = dentry->d_inode;
150124cbe784SJeff Layton 
150224cbe784SJeff Layton 	if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
150324cbe784SJeff Layton 		return -EAGAIN;
150424cbe784SJeff Layton 
150524cbe784SJeff Layton 	if ((arg == F_WRLCK) && ((d_count(dentry) > 1) ||
150624cbe784SJeff Layton 	    (atomic_read(&inode->i_count) > 1)))
150724cbe784SJeff Layton 		ret = -EAGAIN;
150824cbe784SJeff Layton 
150924cbe784SJeff Layton 	return ret;
151024cbe784SJeff Layton }
151124cbe784SJeff Layton 
1512d4f22d19SJeff Layton static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp)
15131da177e4SLinus Torvalds {
15147eaae282SKAMBAROV, ZAUR 	struct file_lock *fl, **before, **my_before = NULL, *lease;
15150f7fc9e4SJosef "Jeff" Sipek 	struct dentry *dentry = filp->f_path.dentry;
15161da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
1517df4e8d2cSJ. Bruce Fields 	bool is_deleg = (*flp)->fl_flags & FL_DELEG;
1518c1f24ef4SJ. Bruce Fields 	int error;
15191da177e4SLinus Torvalds 
1520096657b6SJ. Bruce Fields 	lease = *flp;
1521df4e8d2cSJ. Bruce Fields 	/*
1522df4e8d2cSJ. Bruce Fields 	 * In the delegation case we need mutual exclusion with
1523df4e8d2cSJ. Bruce Fields 	 * a number of operations that take the i_mutex.  We trylock
1524df4e8d2cSJ. Bruce Fields 	 * because delegations are an optional optimization, and if
1525df4e8d2cSJ. Bruce Fields 	 * there's some chance of a conflict--we'd rather not
1526df4e8d2cSJ. Bruce Fields 	 * bother, maybe that's a sign this just isn't a good file to
1527df4e8d2cSJ. Bruce Fields 	 * hand out a delegation on.
1528df4e8d2cSJ. Bruce Fields 	 */
1529df4e8d2cSJ. Bruce Fields 	if (is_deleg && !mutex_trylock(&inode->i_mutex))
1530df4e8d2cSJ. Bruce Fields 		return -EAGAIN;
1531df4e8d2cSJ. Bruce Fields 
1532df4e8d2cSJ. Bruce Fields 	if (is_deleg && arg == F_WRLCK) {
1533df4e8d2cSJ. Bruce Fields 		/* Write delegations are not currently supported: */
15344fdb793fSDan Carpenter 		mutex_unlock(&inode->i_mutex);
1535df4e8d2cSJ. Bruce Fields 		WARN_ON_ONCE(1);
1536df4e8d2cSJ. Bruce Fields 		return -EINVAL;
1537df4e8d2cSJ. Bruce Fields 	}
1538096657b6SJ. Bruce Fields 
153924cbe784SJeff Layton 	error = check_conflicting_open(dentry, arg);
154024cbe784SJeff Layton 	if (error)
15411da177e4SLinus Torvalds 		goto out;
154285c59580SPavel Emelyanov 
15431da177e4SLinus Torvalds 	/*
15441da177e4SLinus Torvalds 	 * At this point, we know that if there is an exclusive
15451da177e4SLinus Torvalds 	 * lease on this file, then we hold it on this filp
15461da177e4SLinus Torvalds 	 * (otherwise our open of this file would have blocked).
15471da177e4SLinus Torvalds 	 * And if we are trying to acquire an exclusive lease,
15481da177e4SLinus Torvalds 	 * then the file is not open by anyone (including us)
15491da177e4SLinus Torvalds 	 * except for this filp.
15501da177e4SLinus Torvalds 	 */
1551c1f24ef4SJ. Bruce Fields 	error = -EAGAIN;
15521da177e4SLinus Torvalds 	for (before = &inode->i_flock;
15531da177e4SLinus Torvalds 			((fl = *before) != NULL) && IS_LEASE(fl);
15541da177e4SLinus Torvalds 			before = &fl->fl_next) {
1555c1f24ef4SJ. Bruce Fields 		if (fl->fl_file == filp) {
15561da177e4SLinus Torvalds 			my_before = before;
1557c1f24ef4SJ. Bruce Fields 			continue;
15581da177e4SLinus Torvalds 		}
1559c1f24ef4SJ. Bruce Fields 		/*
1560c1f24ef4SJ. Bruce Fields 		 * No exclusive leases if someone else has a lease on
1561c1f24ef4SJ. Bruce Fields 		 * this file:
1562c1f24ef4SJ. Bruce Fields 		 */
1563c1f24ef4SJ. Bruce Fields 		if (arg == F_WRLCK)
15641da177e4SLinus Torvalds 			goto out;
1565c1f24ef4SJ. Bruce Fields 		/*
1566c1f24ef4SJ. Bruce Fields 		 * Modifying our existing lease is OK, but no getting a
1567c1f24ef4SJ. Bruce Fields 		 * new lease if someone else is opening for write:
1568c1f24ef4SJ. Bruce Fields 		 */
1569c1f24ef4SJ. Bruce Fields 		if (fl->fl_flags & FL_UNLOCK_PENDING)
1570c1f24ef4SJ. Bruce Fields 			goto out;
1571c1f24ef4SJ. Bruce Fields 	}
15721da177e4SLinus Torvalds 
15731da177e4SLinus Torvalds 	if (my_before != NULL) {
15748fb47a4fSJ. Bruce Fields 		error = lease->fl_lmops->lm_change(my_before, arg);
157551ee4b84SChristoph Hellwig 		if (!error)
157651ee4b84SChristoph Hellwig 			*flp = *my_before;
15771da177e4SLinus Torvalds 		goto out;
15781da177e4SLinus Torvalds 	}
15791da177e4SLinus Torvalds 
15801da177e4SLinus Torvalds 	error = -EINVAL;
15811da177e4SLinus Torvalds 	if (!leases_enable)
15821da177e4SLinus Torvalds 		goto out;
15831da177e4SLinus Torvalds 
1584c5b1f0d9SArnd Bergmann 	locks_insert_lock(before, lease);
158524cbe784SJeff Layton 	/*
158624cbe784SJeff Layton 	 * The check in break_lease() is lockless. It's possible for another
158724cbe784SJeff Layton 	 * open to race in after we did the earlier check for a conflicting
158824cbe784SJeff Layton 	 * open but before the lease was inserted. Check again for a
158924cbe784SJeff Layton 	 * conflicting open and cancel the lease if there is one.
159024cbe784SJeff Layton 	 *
159124cbe784SJeff Layton 	 * We also add a barrier here to ensure that the insertion of the lock
159224cbe784SJeff Layton 	 * precedes these checks.
159324cbe784SJeff Layton 	 */
159424cbe784SJeff Layton 	smp_mb();
159524cbe784SJeff Layton 	error = check_conflicting_open(dentry, arg);
159624cbe784SJeff Layton 	if (error)
159724cbe784SJeff Layton 		locks_unlink_lock(flp);
15981da177e4SLinus Torvalds out:
1599df4e8d2cSJ. Bruce Fields 	if (is_deleg)
1600df4e8d2cSJ. Bruce Fields 		mutex_unlock(&inode->i_mutex);
16011da177e4SLinus Torvalds 	return error;
16021da177e4SLinus Torvalds }
16038335ebd9SJ. Bruce Fields 
1604d4f22d19SJeff Layton static int generic_delete_lease(struct file *filp, struct file_lock **flp)
16058335ebd9SJ. Bruce Fields {
16068335ebd9SJ. Bruce Fields 	struct file_lock *fl, **before;
16078335ebd9SJ. Bruce Fields 	struct dentry *dentry = filp->f_path.dentry;
16088335ebd9SJ. Bruce Fields 	struct inode *inode = dentry->d_inode;
16098335ebd9SJ. Bruce Fields 
16108335ebd9SJ. Bruce Fields 	for (before = &inode->i_flock;
16118335ebd9SJ. Bruce Fields 			((fl = *before) != NULL) && IS_LEASE(fl);
16128335ebd9SJ. Bruce Fields 			before = &fl->fl_next) {
16138335ebd9SJ. Bruce Fields 		if (fl->fl_file != filp)
16148335ebd9SJ. Bruce Fields 			continue;
16158335ebd9SJ. Bruce Fields 		return (*flp)->fl_lmops->lm_change(before, F_UNLCK);
16168335ebd9SJ. Bruce Fields 	}
16178335ebd9SJ. Bruce Fields 	return -EAGAIN;
16188335ebd9SJ. Bruce Fields }
16198335ebd9SJ. Bruce Fields 
16201da177e4SLinus Torvalds /**
16211da177e4SLinus Torvalds  *	generic_setlease	-	sets a lease on an open file
16221da177e4SLinus Torvalds  *	@filp: file pointer
16231da177e4SLinus Torvalds  *	@arg: type of lease to obtain
16241da177e4SLinus Torvalds  *	@flp: input - file_lock to use, output - file_lock inserted
16251da177e4SLinus Torvalds  *
16261da177e4SLinus Torvalds  *	The (input) flp->fl_lmops->lm_break function is required
16271da177e4SLinus Torvalds  *	by break_lease().
16281da177e4SLinus Torvalds  *
16291c8c601aSJeff Layton  *	Called with inode->i_lock held.
16301da177e4SLinus Torvalds  */
16311da177e4SLinus Torvalds int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
16321da177e4SLinus Torvalds {
16331da177e4SLinus Torvalds 	struct dentry *dentry = filp->f_path.dentry;
16341da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
16358335ebd9SJ. Bruce Fields 	int error;
16361da177e4SLinus Torvalds 
16378e96e3b7SEric W. Biederman 	if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE))
16388335ebd9SJ. Bruce Fields 		return -EACCES;
16391da177e4SLinus Torvalds 	if (!S_ISREG(inode->i_mode))
16408335ebd9SJ. Bruce Fields 		return -EINVAL;
16411da177e4SLinus Torvalds 	error = security_file_lock(filp, arg);
16421da177e4SLinus Torvalds 	if (error)
16438335ebd9SJ. Bruce Fields 		return error;
16441da177e4SLinus Torvalds 
16451da177e4SLinus Torvalds 	time_out_leases(inode);
16461da177e4SLinus Torvalds 
16471da177e4SLinus Torvalds 	BUG_ON(!(*flp)->fl_lmops->lm_break);
16481da177e4SLinus Torvalds 
16498335ebd9SJ. Bruce Fields 	switch (arg) {
16508335ebd9SJ. Bruce Fields 	case F_UNLCK:
16518335ebd9SJ. Bruce Fields 		return generic_delete_lease(filp, flp);
16528335ebd9SJ. Bruce Fields 	case F_RDLCK:
16538335ebd9SJ. Bruce Fields 	case F_WRLCK:
16548335ebd9SJ. Bruce Fields 		return generic_add_lease(filp, arg, flp);
16558335ebd9SJ. Bruce Fields 	default:
16568d657eb3SDave Jones 		return -EINVAL;
16571da177e4SLinus Torvalds 	}
16581da177e4SLinus Torvalds }
16590af1a450SChristoph Hellwig EXPORT_SYMBOL(generic_setlease);
16601da177e4SLinus Torvalds 
1661b89f4321SArnd Bergmann static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
1662b89f4321SArnd Bergmann {
166372c2d531SAl Viro 	if (filp->f_op->setlease)
1664b89f4321SArnd Bergmann 		return filp->f_op->setlease(filp, arg, lease);
1665b89f4321SArnd Bergmann 	else
1666b89f4321SArnd Bergmann 		return generic_setlease(filp, arg, lease);
1667b89f4321SArnd Bergmann }
1668b89f4321SArnd Bergmann 
16691da177e4SLinus Torvalds /**
1670a9933ceaSJ. Bruce Fields  *	vfs_setlease        -       sets a lease on an open file
16711da177e4SLinus Torvalds  *	@filp: file pointer
16721da177e4SLinus Torvalds  *	@arg: type of lease to obtain
16731da177e4SLinus Torvalds  *	@lease: file_lock to use
16741da177e4SLinus Torvalds  *
16751da177e4SLinus Torvalds  *	Call this to establish a lease on the file.
16768fb47a4fSJ. Bruce Fields  *	The (*lease)->fl_lmops->lm_break operation must be set; if not,
1677f9ffed26SJ. Bruce Fields  *	break_lease will oops!
1678f9ffed26SJ. Bruce Fields  *
1679f9ffed26SJ. Bruce Fields  *	This will call the filesystem's setlease file method, if
1680f9ffed26SJ. Bruce Fields  *	defined.  Note that there is no getlease method; instead, the
1681f9ffed26SJ. Bruce Fields  *	filesystem setlease method should call back to setlease() to
1682f9ffed26SJ. Bruce Fields  *	add a lease to the inode's lease list, where fcntl_getlease() can
1683f9ffed26SJ. Bruce Fields  *	find it.  Since fcntl_getlease() only reports whether the current
1684f9ffed26SJ. Bruce Fields  *	task holds a lease, a cluster filesystem need only do this for
1685f9ffed26SJ. Bruce Fields  *	leases held by processes on this node.
1686f9ffed26SJ. Bruce Fields  *
1687f9ffed26SJ. Bruce Fields  *	There is also no break_lease method; filesystems that
1688c9404c9cSAdam Buchbinder  *	handle their own leases should break leases themselves from the
1689f9ffed26SJ. Bruce Fields  *	filesystem's open, create, and (on truncate) setattr methods.
1690f9ffed26SJ. Bruce Fields  *
1691f9ffed26SJ. Bruce Fields  *	Warning: the only current setlease methods exist only to disable
1692f9ffed26SJ. Bruce Fields  *	leases in certain cases.  More vfs changes may be required to
1693f9ffed26SJ. Bruce Fields  *	allow a full filesystem lease implementation.
16941da177e4SLinus Torvalds  */
16951da177e4SLinus Torvalds 
1696a9933ceaSJ. Bruce Fields int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
16971da177e4SLinus Torvalds {
16981c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
16991da177e4SLinus Torvalds 	int error;
17001da177e4SLinus Torvalds 
17011c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
1702b89f4321SArnd Bergmann 	error = __vfs_setlease(filp, arg, lease);
17031c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
17041da177e4SLinus Torvalds 
17051da177e4SLinus Torvalds 	return error;
17061da177e4SLinus Torvalds }
1707a9933ceaSJ. Bruce Fields EXPORT_SYMBOL_GPL(vfs_setlease);
17081da177e4SLinus Torvalds 
17090ceaf6c7SJ. Bruce Fields static int do_fcntl_delete_lease(struct file *filp)
17100ceaf6c7SJ. Bruce Fields {
17110ceaf6c7SJ. Bruce Fields 	struct file_lock fl, *flp = &fl;
17120ceaf6c7SJ. Bruce Fields 
17130ceaf6c7SJ. Bruce Fields 	lease_init(filp, F_UNLCK, flp);
17140ceaf6c7SJ. Bruce Fields 
17150ceaf6c7SJ. Bruce Fields 	return vfs_setlease(filp, F_UNLCK, &flp);
17160ceaf6c7SJ. Bruce Fields }
17170ceaf6c7SJ. Bruce Fields 
17180ceaf6c7SJ. Bruce Fields static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg)
17191da177e4SLinus Torvalds {
17203df057acSJ. Bruce Fields 	struct file_lock *fl, *ret;
17211c8c601aSJeff Layton 	struct inode *inode = file_inode(filp);
1722f7347ce4SLinus Torvalds 	struct fasync_struct *new;
17231da177e4SLinus Torvalds 	int error;
17241da177e4SLinus Torvalds 
1725c5b1f0d9SArnd Bergmann 	fl = lease_alloc(filp, arg);
1726c5b1f0d9SArnd Bergmann 	if (IS_ERR(fl))
1727c5b1f0d9SArnd Bergmann 		return PTR_ERR(fl);
17281da177e4SLinus Torvalds 
1729f7347ce4SLinus Torvalds 	new = fasync_alloc();
1730f7347ce4SLinus Torvalds 	if (!new) {
1731f7347ce4SLinus Torvalds 		locks_free_lock(fl);
1732f7347ce4SLinus Torvalds 		return -ENOMEM;
1733f7347ce4SLinus Torvalds 	}
17343df057acSJ. Bruce Fields 	ret = fl;
17351c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
17368896b93fSJ. Bruce Fields 	error = __vfs_setlease(filp, arg, &ret);
173751ee4b84SChristoph Hellwig 	if (error) {
17381c8c601aSJeff Layton 		spin_unlock(&inode->i_lock);
173951ee4b84SChristoph Hellwig 		locks_free_lock(fl);
174051ee4b84SChristoph Hellwig 		goto out_free_fasync;
174151ee4b84SChristoph Hellwig 	}
17423df057acSJ. Bruce Fields 	if (ret != fl)
17433df057acSJ. Bruce Fields 		locks_free_lock(fl);
17441da177e4SLinus Torvalds 
1745f7347ce4SLinus Torvalds 	/*
1746f7347ce4SLinus Torvalds 	 * fasync_insert_entry() returns the old entry if any.
1747f7347ce4SLinus Torvalds 	 * If there was no old entry, then it used 'new' and
1748f7347ce4SLinus Torvalds 	 * inserted it into the fasync list. Clear new so that
1749f7347ce4SLinus Torvalds 	 * we don't release it here.
1750f7347ce4SLinus Torvalds 	 */
17513df057acSJ. Bruce Fields 	if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new))
1752f7347ce4SLinus Torvalds 		new = NULL;
1753f7347ce4SLinus Torvalds 
1754609d7fa9SEric W. Biederman 	error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
17551c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
175651ee4b84SChristoph Hellwig 
175751ee4b84SChristoph Hellwig out_free_fasync:
1758f7347ce4SLinus Torvalds 	if (new)
1759f7347ce4SLinus Torvalds 		fasync_free(new);
17601da177e4SLinus Torvalds 	return error;
17611da177e4SLinus Torvalds }
17621da177e4SLinus Torvalds 
17631da177e4SLinus Torvalds /**
17640ceaf6c7SJ. Bruce Fields  *	fcntl_setlease	-	sets a lease on an open file
17650ceaf6c7SJ. Bruce Fields  *	@fd: open file descriptor
17660ceaf6c7SJ. Bruce Fields  *	@filp: file pointer
17670ceaf6c7SJ. Bruce Fields  *	@arg: type of lease to obtain
17680ceaf6c7SJ. Bruce Fields  *
17690ceaf6c7SJ. Bruce Fields  *	Call this fcntl to establish a lease on the file.
17700ceaf6c7SJ. Bruce Fields  *	Note that you also need to call %F_SETSIG to
17710ceaf6c7SJ. Bruce Fields  *	receive a signal when the lease is broken.
17720ceaf6c7SJ. Bruce Fields  */
17730ceaf6c7SJ. Bruce Fields int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
17740ceaf6c7SJ. Bruce Fields {
17750ceaf6c7SJ. Bruce Fields 	if (arg == F_UNLCK)
17760ceaf6c7SJ. Bruce Fields 		return do_fcntl_delete_lease(filp);
17770ceaf6c7SJ. Bruce Fields 	return do_fcntl_add_lease(fd, filp, arg);
17780ceaf6c7SJ. Bruce Fields }
17790ceaf6c7SJ. Bruce Fields 
17800ceaf6c7SJ. Bruce Fields /**
17811da177e4SLinus Torvalds  * flock_lock_file_wait - Apply a FLOCK-style lock to a file
17821da177e4SLinus Torvalds  * @filp: The file to apply the lock to
17831da177e4SLinus Torvalds  * @fl: The lock to be applied
17841da177e4SLinus Torvalds  *
17851da177e4SLinus Torvalds  * Add a FLOCK style lock to a file.
17861da177e4SLinus Torvalds  */
17871da177e4SLinus Torvalds int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
17881da177e4SLinus Torvalds {
17891da177e4SLinus Torvalds 	int error;
17901da177e4SLinus Torvalds 	might_sleep();
17911da177e4SLinus Torvalds 	for (;;) {
17921da177e4SLinus Torvalds 		error = flock_lock_file(filp, fl);
1793bde74e4bSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
17941da177e4SLinus Torvalds 			break;
17951da177e4SLinus Torvalds 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
17961da177e4SLinus Torvalds 		if (!error)
17971da177e4SLinus Torvalds 			continue;
17981da177e4SLinus Torvalds 
17991da177e4SLinus Torvalds 		locks_delete_block(fl);
18001da177e4SLinus Torvalds 		break;
18011da177e4SLinus Torvalds 	}
18021da177e4SLinus Torvalds 	return error;
18031da177e4SLinus Torvalds }
18041da177e4SLinus Torvalds 
18051da177e4SLinus Torvalds EXPORT_SYMBOL(flock_lock_file_wait);
18061da177e4SLinus Torvalds 
18071da177e4SLinus Torvalds /**
18081da177e4SLinus Torvalds  *	sys_flock: - flock() system call.
18091da177e4SLinus Torvalds  *	@fd: the file descriptor to lock.
18101da177e4SLinus Torvalds  *	@cmd: the type of lock to apply.
18111da177e4SLinus Torvalds  *
18121da177e4SLinus Torvalds  *	Apply a %FL_FLOCK style lock to an open file descriptor.
18131da177e4SLinus Torvalds  *	The @cmd can be one of
18141da177e4SLinus Torvalds  *
18151da177e4SLinus Torvalds  *	%LOCK_SH -- a shared lock.
18161da177e4SLinus Torvalds  *
18171da177e4SLinus Torvalds  *	%LOCK_EX -- an exclusive lock.
18181da177e4SLinus Torvalds  *
18191da177e4SLinus Torvalds  *	%LOCK_UN -- remove an existing lock.
18201da177e4SLinus Torvalds  *
18211da177e4SLinus Torvalds  *	%LOCK_MAND -- a `mandatory' flock.  This exists to emulate Windows Share Modes.
18221da177e4SLinus Torvalds  *
18231da177e4SLinus Torvalds  *	%LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
18241da177e4SLinus Torvalds  *	processes read and write access respectively.
18251da177e4SLinus Torvalds  */
1826002c8976SHeiko Carstens SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
18271da177e4SLinus Torvalds {
18282903ff01SAl Viro 	struct fd f = fdget(fd);
18291da177e4SLinus Torvalds 	struct file_lock *lock;
18301da177e4SLinus Torvalds 	int can_sleep, unlock;
18311da177e4SLinus Torvalds 	int error;
18321da177e4SLinus Torvalds 
18331da177e4SLinus Torvalds 	error = -EBADF;
18342903ff01SAl Viro 	if (!f.file)
18351da177e4SLinus Torvalds 		goto out;
18361da177e4SLinus Torvalds 
18371da177e4SLinus Torvalds 	can_sleep = !(cmd & LOCK_NB);
18381da177e4SLinus Torvalds 	cmd &= ~LOCK_NB;
18391da177e4SLinus Torvalds 	unlock = (cmd == LOCK_UN);
18401da177e4SLinus Torvalds 
1841aeb5d727SAl Viro 	if (!unlock && !(cmd & LOCK_MAND) &&
18422903ff01SAl Viro 	    !(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
18431da177e4SLinus Torvalds 		goto out_putf;
18441da177e4SLinus Torvalds 
18452903ff01SAl Viro 	error = flock_make_lock(f.file, &lock, cmd);
18461da177e4SLinus Torvalds 	if (error)
18471da177e4SLinus Torvalds 		goto out_putf;
18481da177e4SLinus Torvalds 	if (can_sleep)
18491da177e4SLinus Torvalds 		lock->fl_flags |= FL_SLEEP;
18501da177e4SLinus Torvalds 
18512903ff01SAl Viro 	error = security_file_lock(f.file, lock->fl_type);
18521da177e4SLinus Torvalds 	if (error)
18531da177e4SLinus Torvalds 		goto out_free;
18541da177e4SLinus Torvalds 
185572c2d531SAl Viro 	if (f.file->f_op->flock)
18562903ff01SAl Viro 		error = f.file->f_op->flock(f.file,
18571da177e4SLinus Torvalds 					  (can_sleep) ? F_SETLKW : F_SETLK,
18581da177e4SLinus Torvalds 					  lock);
18591da177e4SLinus Torvalds 	else
18602903ff01SAl Viro 		error = flock_lock_file_wait(f.file, lock);
18611da177e4SLinus Torvalds 
18621da177e4SLinus Torvalds  out_free:
18631da177e4SLinus Torvalds 	locks_free_lock(lock);
18641da177e4SLinus Torvalds 
18651da177e4SLinus Torvalds  out_putf:
18662903ff01SAl Viro 	fdput(f);
18671da177e4SLinus Torvalds  out:
18681da177e4SLinus Torvalds 	return error;
18691da177e4SLinus Torvalds }
18701da177e4SLinus Torvalds 
18713ee17abdSJ. Bruce Fields /**
18723ee17abdSJ. Bruce Fields  * vfs_test_lock - test file byte range lock
18733ee17abdSJ. Bruce Fields  * @filp: The file to test lock for
18746924c554SJ. Bruce Fields  * @fl: The lock to test; also used to hold result
18753ee17abdSJ. Bruce Fields  *
18763ee17abdSJ. Bruce Fields  * Returns -ERRNO on failure.  Indicates presence of conflicting lock by
18773ee17abdSJ. Bruce Fields  * setting conf->fl_type to something other than F_UNLCK.
18783ee17abdSJ. Bruce Fields  */
18793ee17abdSJ. Bruce Fields int vfs_test_lock(struct file *filp, struct file_lock *fl)
18803ee17abdSJ. Bruce Fields {
188172c2d531SAl Viro 	if (filp->f_op->lock)
18823ee17abdSJ. Bruce Fields 		return filp->f_op->lock(filp, F_GETLK, fl);
18833ee17abdSJ. Bruce Fields 	posix_test_lock(filp, fl);
18843ee17abdSJ. Bruce Fields 	return 0;
18853ee17abdSJ. Bruce Fields }
18863ee17abdSJ. Bruce Fields EXPORT_SYMBOL_GPL(vfs_test_lock);
18873ee17abdSJ. Bruce Fields 
1888c2fa1b8aSJ. Bruce Fields static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
1889c2fa1b8aSJ. Bruce Fields {
1890c2fa1b8aSJ. Bruce Fields 	flock->l_pid = fl->fl_pid;
1891c2fa1b8aSJ. Bruce Fields #if BITS_PER_LONG == 32
1892c2fa1b8aSJ. Bruce Fields 	/*
1893c2fa1b8aSJ. Bruce Fields 	 * Make sure we can represent the posix lock via
1894c2fa1b8aSJ. Bruce Fields 	 * legacy 32bit flock.
1895c2fa1b8aSJ. Bruce Fields 	 */
1896c2fa1b8aSJ. Bruce Fields 	if (fl->fl_start > OFFT_OFFSET_MAX)
1897c2fa1b8aSJ. Bruce Fields 		return -EOVERFLOW;
1898c2fa1b8aSJ. Bruce Fields 	if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
1899c2fa1b8aSJ. Bruce Fields 		return -EOVERFLOW;
1900c2fa1b8aSJ. Bruce Fields #endif
1901c2fa1b8aSJ. Bruce Fields 	flock->l_start = fl->fl_start;
1902c2fa1b8aSJ. Bruce Fields 	flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1903c2fa1b8aSJ. Bruce Fields 		fl->fl_end - fl->fl_start + 1;
1904c2fa1b8aSJ. Bruce Fields 	flock->l_whence = 0;
1905129a84deSJ. Bruce Fields 	flock->l_type = fl->fl_type;
1906c2fa1b8aSJ. Bruce Fields 	return 0;
1907c2fa1b8aSJ. Bruce Fields }
1908c2fa1b8aSJ. Bruce Fields 
1909c2fa1b8aSJ. Bruce Fields #if BITS_PER_LONG == 32
1910c2fa1b8aSJ. Bruce Fields static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
1911c2fa1b8aSJ. Bruce Fields {
1912c2fa1b8aSJ. Bruce Fields 	flock->l_pid = fl->fl_pid;
1913c2fa1b8aSJ. Bruce Fields 	flock->l_start = fl->fl_start;
1914c2fa1b8aSJ. Bruce Fields 	flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
1915c2fa1b8aSJ. Bruce Fields 		fl->fl_end - fl->fl_start + 1;
1916c2fa1b8aSJ. Bruce Fields 	flock->l_whence = 0;
1917c2fa1b8aSJ. Bruce Fields 	flock->l_type = fl->fl_type;
1918c2fa1b8aSJ. Bruce Fields }
1919c2fa1b8aSJ. Bruce Fields #endif
1920c2fa1b8aSJ. Bruce Fields 
19211da177e4SLinus Torvalds /* Report the first existing lock that would conflict with l.
19221da177e4SLinus Torvalds  * This implements the F_GETLK command of fcntl().
19231da177e4SLinus Torvalds  */
19241da177e4SLinus Torvalds int fcntl_getlk(struct file *filp, struct flock __user *l)
19251da177e4SLinus Torvalds {
19269d6a8c5cSMarc Eshel 	struct file_lock file_lock;
19271da177e4SLinus Torvalds 	struct flock flock;
19281da177e4SLinus Torvalds 	int error;
19291da177e4SLinus Torvalds 
19301da177e4SLinus Torvalds 	error = -EFAULT;
19311da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
19321da177e4SLinus Torvalds 		goto out;
19331da177e4SLinus Torvalds 	error = -EINVAL;
19341da177e4SLinus Torvalds 	if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
19351da177e4SLinus Torvalds 		goto out;
19361da177e4SLinus Torvalds 
19371da177e4SLinus Torvalds 	error = flock_to_posix_lock(filp, &file_lock, &flock);
19381da177e4SLinus Torvalds 	if (error)
19391da177e4SLinus Torvalds 		goto out;
19401da177e4SLinus Torvalds 
19413ee17abdSJ. Bruce Fields 	error = vfs_test_lock(filp, &file_lock);
19423ee17abdSJ. Bruce Fields 	if (error)
19431da177e4SLinus Torvalds 		goto out;
19441da177e4SLinus Torvalds 
19459d6a8c5cSMarc Eshel 	flock.l_type = file_lock.fl_type;
19469d6a8c5cSMarc Eshel 	if (file_lock.fl_type != F_UNLCK) {
19479d6a8c5cSMarc Eshel 		error = posix_lock_to_flock(&flock, &file_lock);
1948c2fa1b8aSJ. Bruce Fields 		if (error)
19491da177e4SLinus Torvalds 			goto out;
19501da177e4SLinus Torvalds 	}
19511da177e4SLinus Torvalds 	error = -EFAULT;
19521da177e4SLinus Torvalds 	if (!copy_to_user(l, &flock, sizeof(flock)))
19531da177e4SLinus Torvalds 		error = 0;
19541da177e4SLinus Torvalds out:
19551da177e4SLinus Torvalds 	return error;
19561da177e4SLinus Torvalds }
19571da177e4SLinus Torvalds 
19587723ec97SMarc Eshel /**
19597723ec97SMarc Eshel  * vfs_lock_file - file byte range lock
19607723ec97SMarc Eshel  * @filp: The file to apply the lock to
19617723ec97SMarc Eshel  * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
19627723ec97SMarc Eshel  * @fl: The lock to be applied
1963150b3934SMarc Eshel  * @conf: Place to return a copy of the conflicting lock, if found.
1964150b3934SMarc Eshel  *
1965150b3934SMarc Eshel  * A caller that doesn't care about the conflicting lock may pass NULL
1966150b3934SMarc Eshel  * as the final argument.
1967150b3934SMarc Eshel  *
1968150b3934SMarc Eshel  * If the filesystem defines a private ->lock() method, then @conf will
1969150b3934SMarc Eshel  * be left unchanged; so a caller that cares should initialize it to
1970150b3934SMarc Eshel  * some acceptable default.
19712beb6614SMarc Eshel  *
19722beb6614SMarc Eshel  * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
19732beb6614SMarc Eshel  * locks, the ->lock() interface may return asynchronously, before the lock has
19742beb6614SMarc Eshel  * been granted or denied by the underlying filesystem, if (and only if)
19758fb47a4fSJ. Bruce Fields  * lm_grant is set. Callers expecting ->lock() to return asynchronously
19762beb6614SMarc Eshel  * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
19772beb6614SMarc Eshel  * the request is for a blocking lock. When ->lock() does return asynchronously,
19788fb47a4fSJ. Bruce Fields  * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock
19792beb6614SMarc Eshel  * request completes.
19802beb6614SMarc Eshel  * If the request is for non-blocking lock the file system should return
1981bde74e4bSMiklos Szeredi  * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
1982bde74e4bSMiklos Szeredi  * with the result. If the request timed out the callback routine will return a
19832beb6614SMarc Eshel  * nonzero return code and the file system should release the lock. The file
19842beb6614SMarc Eshel  * system is also responsible to keep a corresponding posix lock when it
19852beb6614SMarc Eshel  * grants a lock so the VFS can find out which locks are locally held and do
19862beb6614SMarc Eshel  * the correct lock cleanup when required.
19872beb6614SMarc Eshel  * The underlying filesystem must not drop the kernel lock or call
19888fb47a4fSJ. Bruce Fields  * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED
19892beb6614SMarc Eshel  * return code.
19907723ec97SMarc Eshel  */
1991150b3934SMarc Eshel int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
19927723ec97SMarc Eshel {
199372c2d531SAl Viro 	if (filp->f_op->lock)
19947723ec97SMarc Eshel 		return filp->f_op->lock(filp, cmd, fl);
19957723ec97SMarc Eshel 	else
1996150b3934SMarc Eshel 		return posix_lock_file(filp, fl, conf);
19977723ec97SMarc Eshel }
19987723ec97SMarc Eshel EXPORT_SYMBOL_GPL(vfs_lock_file);
19997723ec97SMarc Eshel 
2000b648a6deSMiklos Szeredi static int do_lock_file_wait(struct file *filp, unsigned int cmd,
2001b648a6deSMiklos Szeredi 			     struct file_lock *fl)
2002b648a6deSMiklos Szeredi {
2003b648a6deSMiklos Szeredi 	int error;
2004b648a6deSMiklos Szeredi 
2005b648a6deSMiklos Szeredi 	error = security_file_lock(filp, fl->fl_type);
2006b648a6deSMiklos Szeredi 	if (error)
2007b648a6deSMiklos Szeredi 		return error;
2008b648a6deSMiklos Szeredi 
2009b648a6deSMiklos Szeredi 	for (;;) {
2010764c76b3SMiklos Szeredi 		error = vfs_lock_file(filp, cmd, fl, NULL);
2011b648a6deSMiklos Szeredi 		if (error != FILE_LOCK_DEFERRED)
2012b648a6deSMiklos Szeredi 			break;
2013764c76b3SMiklos Szeredi 		error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
2014b648a6deSMiklos Szeredi 		if (!error)
2015b648a6deSMiklos Szeredi 			continue;
2016b648a6deSMiklos Szeredi 
2017b648a6deSMiklos Szeredi 		locks_delete_block(fl);
2018b648a6deSMiklos Szeredi 		break;
2019b648a6deSMiklos Szeredi 	}
2020b648a6deSMiklos Szeredi 
2021b648a6deSMiklos Szeredi 	return error;
2022b648a6deSMiklos Szeredi }
2023b648a6deSMiklos Szeredi 
20241da177e4SLinus Torvalds /* Apply the lock described by l to an open file descriptor.
20251da177e4SLinus Torvalds  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
20261da177e4SLinus Torvalds  */
2027c293621bSPeter Staubach int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
2028c293621bSPeter Staubach 		struct flock __user *l)
20291da177e4SLinus Torvalds {
20301da177e4SLinus Torvalds 	struct file_lock *file_lock = locks_alloc_lock();
20311da177e4SLinus Torvalds 	struct flock flock;
20321da177e4SLinus Torvalds 	struct inode *inode;
20330b2bac2fSAl Viro 	struct file *f;
20341da177e4SLinus Torvalds 	int error;
20351da177e4SLinus Torvalds 
20361da177e4SLinus Torvalds 	if (file_lock == NULL)
20371da177e4SLinus Torvalds 		return -ENOLCK;
20381da177e4SLinus Torvalds 
20391da177e4SLinus Torvalds 	/*
20401da177e4SLinus Torvalds 	 * This might block, so we do it before checking the inode.
20411da177e4SLinus Torvalds 	 */
20421da177e4SLinus Torvalds 	error = -EFAULT;
20431da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
20441da177e4SLinus Torvalds 		goto out;
20451da177e4SLinus Torvalds 
2046496ad9aaSAl Viro 	inode = file_inode(filp);
20471da177e4SLinus Torvalds 
20481da177e4SLinus Torvalds 	/* Don't allow mandatory locks on files that may be memory mapped
20491da177e4SLinus Torvalds 	 * and shared.
20501da177e4SLinus Torvalds 	 */
2051a16877caSPavel Emelyanov 	if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
20521da177e4SLinus Torvalds 		error = -EAGAIN;
20531da177e4SLinus Torvalds 		goto out;
20541da177e4SLinus Torvalds 	}
20551da177e4SLinus Torvalds 
2056c293621bSPeter Staubach again:
20571da177e4SLinus Torvalds 	error = flock_to_posix_lock(filp, file_lock, &flock);
20581da177e4SLinus Torvalds 	if (error)
20591da177e4SLinus Torvalds 		goto out;
20601da177e4SLinus Torvalds 	if (cmd == F_SETLKW) {
20611da177e4SLinus Torvalds 		file_lock->fl_flags |= FL_SLEEP;
20621da177e4SLinus Torvalds 	}
20631da177e4SLinus Torvalds 
20641da177e4SLinus Torvalds 	error = -EBADF;
20651da177e4SLinus Torvalds 	switch (flock.l_type) {
20661da177e4SLinus Torvalds 	case F_RDLCK:
20671da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_READ))
20681da177e4SLinus Torvalds 			goto out;
20691da177e4SLinus Torvalds 		break;
20701da177e4SLinus Torvalds 	case F_WRLCK:
20711da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_WRITE))
20721da177e4SLinus Torvalds 			goto out;
20731da177e4SLinus Torvalds 		break;
20741da177e4SLinus Torvalds 	case F_UNLCK:
20751da177e4SLinus Torvalds 		break;
20761da177e4SLinus Torvalds 	default:
20771da177e4SLinus Torvalds 		error = -EINVAL;
20781da177e4SLinus Torvalds 		goto out;
20791da177e4SLinus Torvalds 	}
20801da177e4SLinus Torvalds 
2081b648a6deSMiklos Szeredi 	error = do_lock_file_wait(filp, cmd, file_lock);
2082c293621bSPeter Staubach 
2083c293621bSPeter Staubach 	/*
2084c293621bSPeter Staubach 	 * Attempt to detect a close/fcntl race and recover by
2085c293621bSPeter Staubach 	 * releasing the lock that was just acquired.
2086c293621bSPeter Staubach 	 */
20870b2bac2fSAl Viro 	/*
20880b2bac2fSAl Viro 	 * we need that spin_lock here - it prevents reordering between
20890b2bac2fSAl Viro 	 * update of inode->i_flock and check for it done in close().
20900b2bac2fSAl Viro 	 * rcu_read_lock() wouldn't do.
20910b2bac2fSAl Viro 	 */
20920b2bac2fSAl Viro 	spin_lock(&current->files->file_lock);
20930b2bac2fSAl Viro 	f = fcheck(fd);
20940b2bac2fSAl Viro 	spin_unlock(&current->files->file_lock);
20950b2bac2fSAl Viro 	if (!error && f != filp && flock.l_type != F_UNLCK) {
2096c293621bSPeter Staubach 		flock.l_type = F_UNLCK;
2097c293621bSPeter Staubach 		goto again;
2098c293621bSPeter Staubach 	}
20991da177e4SLinus Torvalds 
21001da177e4SLinus Torvalds out:
21011da177e4SLinus Torvalds 	locks_free_lock(file_lock);
21021da177e4SLinus Torvalds 	return error;
21031da177e4SLinus Torvalds }
21041da177e4SLinus Torvalds 
21051da177e4SLinus Torvalds #if BITS_PER_LONG == 32
21061da177e4SLinus Torvalds /* Report the first existing lock that would conflict with l.
21071da177e4SLinus Torvalds  * This implements the F_GETLK command of fcntl().
21081da177e4SLinus Torvalds  */
21091da177e4SLinus Torvalds int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
21101da177e4SLinus Torvalds {
21119d6a8c5cSMarc Eshel 	struct file_lock file_lock;
21121da177e4SLinus Torvalds 	struct flock64 flock;
21131da177e4SLinus Torvalds 	int error;
21141da177e4SLinus Torvalds 
21151da177e4SLinus Torvalds 	error = -EFAULT;
21161da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
21171da177e4SLinus Torvalds 		goto out;
21181da177e4SLinus Torvalds 	error = -EINVAL;
21191da177e4SLinus Torvalds 	if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
21201da177e4SLinus Torvalds 		goto out;
21211da177e4SLinus Torvalds 
21221da177e4SLinus Torvalds 	error = flock64_to_posix_lock(filp, &file_lock, &flock);
21231da177e4SLinus Torvalds 	if (error)
21241da177e4SLinus Torvalds 		goto out;
21251da177e4SLinus Torvalds 
21263ee17abdSJ. Bruce Fields 	error = vfs_test_lock(filp, &file_lock);
21273ee17abdSJ. Bruce Fields 	if (error)
21281da177e4SLinus Torvalds 		goto out;
21291da177e4SLinus Torvalds 
21309d6a8c5cSMarc Eshel 	flock.l_type = file_lock.fl_type;
21319d6a8c5cSMarc Eshel 	if (file_lock.fl_type != F_UNLCK)
21329d6a8c5cSMarc Eshel 		posix_lock_to_flock64(&flock, &file_lock);
21339d6a8c5cSMarc Eshel 
21341da177e4SLinus Torvalds 	error = -EFAULT;
21351da177e4SLinus Torvalds 	if (!copy_to_user(l, &flock, sizeof(flock)))
21361da177e4SLinus Torvalds 		error = 0;
21371da177e4SLinus Torvalds 
21381da177e4SLinus Torvalds out:
21391da177e4SLinus Torvalds 	return error;
21401da177e4SLinus Torvalds }
21411da177e4SLinus Torvalds 
21421da177e4SLinus Torvalds /* Apply the lock described by l to an open file descriptor.
21431da177e4SLinus Torvalds  * This implements both the F_SETLK and F_SETLKW commands of fcntl().
21441da177e4SLinus Torvalds  */
2145c293621bSPeter Staubach int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
2146c293621bSPeter Staubach 		struct flock64 __user *l)
21471da177e4SLinus Torvalds {
21481da177e4SLinus Torvalds 	struct file_lock *file_lock = locks_alloc_lock();
21491da177e4SLinus Torvalds 	struct flock64 flock;
21501da177e4SLinus Torvalds 	struct inode *inode;
21510b2bac2fSAl Viro 	struct file *f;
21521da177e4SLinus Torvalds 	int error;
21531da177e4SLinus Torvalds 
21541da177e4SLinus Torvalds 	if (file_lock == NULL)
21551da177e4SLinus Torvalds 		return -ENOLCK;
21561da177e4SLinus Torvalds 
21571da177e4SLinus Torvalds 	/*
21581da177e4SLinus Torvalds 	 * This might block, so we do it before checking the inode.
21591da177e4SLinus Torvalds 	 */
21601da177e4SLinus Torvalds 	error = -EFAULT;
21611da177e4SLinus Torvalds 	if (copy_from_user(&flock, l, sizeof(flock)))
21621da177e4SLinus Torvalds 		goto out;
21631da177e4SLinus Torvalds 
2164496ad9aaSAl Viro 	inode = file_inode(filp);
21651da177e4SLinus Torvalds 
21661da177e4SLinus Torvalds 	/* Don't allow mandatory locks on files that may be memory mapped
21671da177e4SLinus Torvalds 	 * and shared.
21681da177e4SLinus Torvalds 	 */
2169a16877caSPavel Emelyanov 	if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
21701da177e4SLinus Torvalds 		error = -EAGAIN;
21711da177e4SLinus Torvalds 		goto out;
21721da177e4SLinus Torvalds 	}
21731da177e4SLinus Torvalds 
2174c293621bSPeter Staubach again:
21751da177e4SLinus Torvalds 	error = flock64_to_posix_lock(filp, file_lock, &flock);
21761da177e4SLinus Torvalds 	if (error)
21771da177e4SLinus Torvalds 		goto out;
21781da177e4SLinus Torvalds 	if (cmd == F_SETLKW64) {
21791da177e4SLinus Torvalds 		file_lock->fl_flags |= FL_SLEEP;
21801da177e4SLinus Torvalds 	}
21811da177e4SLinus Torvalds 
21821da177e4SLinus Torvalds 	error = -EBADF;
21831da177e4SLinus Torvalds 	switch (flock.l_type) {
21841da177e4SLinus Torvalds 	case F_RDLCK:
21851da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_READ))
21861da177e4SLinus Torvalds 			goto out;
21871da177e4SLinus Torvalds 		break;
21881da177e4SLinus Torvalds 	case F_WRLCK:
21891da177e4SLinus Torvalds 		if (!(filp->f_mode & FMODE_WRITE))
21901da177e4SLinus Torvalds 			goto out;
21911da177e4SLinus Torvalds 		break;
21921da177e4SLinus Torvalds 	case F_UNLCK:
21931da177e4SLinus Torvalds 		break;
21941da177e4SLinus Torvalds 	default:
21951da177e4SLinus Torvalds 		error = -EINVAL;
21961da177e4SLinus Torvalds 		goto out;
21971da177e4SLinus Torvalds 	}
21981da177e4SLinus Torvalds 
2199b648a6deSMiklos Szeredi 	error = do_lock_file_wait(filp, cmd, file_lock);
2200c293621bSPeter Staubach 
2201c293621bSPeter Staubach 	/*
2202c293621bSPeter Staubach 	 * Attempt to detect a close/fcntl race and recover by
2203c293621bSPeter Staubach 	 * releasing the lock that was just acquired.
2204c293621bSPeter Staubach 	 */
22050b2bac2fSAl Viro 	spin_lock(&current->files->file_lock);
22060b2bac2fSAl Viro 	f = fcheck(fd);
22070b2bac2fSAl Viro 	spin_unlock(&current->files->file_lock);
22080b2bac2fSAl Viro 	if (!error && f != filp && flock.l_type != F_UNLCK) {
2209c293621bSPeter Staubach 		flock.l_type = F_UNLCK;
2210c293621bSPeter Staubach 		goto again;
2211c293621bSPeter Staubach 	}
22121da177e4SLinus Torvalds 
22131da177e4SLinus Torvalds out:
22141da177e4SLinus Torvalds 	locks_free_lock(file_lock);
22151da177e4SLinus Torvalds 	return error;
22161da177e4SLinus Torvalds }
22171da177e4SLinus Torvalds #endif /* BITS_PER_LONG == 32 */
22181da177e4SLinus Torvalds 
22191da177e4SLinus Torvalds /*
22201da177e4SLinus Torvalds  * This function is called when the file is being removed
22211da177e4SLinus Torvalds  * from the task's fd array.  POSIX locks belonging to this task
22221da177e4SLinus Torvalds  * are deleted at this time.
22231da177e4SLinus Torvalds  */
22241da177e4SLinus Torvalds void locks_remove_posix(struct file *filp, fl_owner_t owner)
22251da177e4SLinus Torvalds {
2226ff7b86b8SMiklos Szeredi 	struct file_lock lock;
22271da177e4SLinus Torvalds 
22281da177e4SLinus Torvalds 	/*
22291da177e4SLinus Torvalds 	 * If there are no locks held on this file, we don't need to call
22301da177e4SLinus Torvalds 	 * posix_lock_file().  Another process could be setting a lock on this
22311da177e4SLinus Torvalds 	 * file at the same time, but we wouldn't remove that lock anyway.
22321da177e4SLinus Torvalds 	 */
2233496ad9aaSAl Viro 	if (!file_inode(filp)->i_flock)
22341da177e4SLinus Torvalds 		return;
22351da177e4SLinus Torvalds 
22361da177e4SLinus Torvalds 	lock.fl_type = F_UNLCK;
223775e1fcc0SMiklos Szeredi 	lock.fl_flags = FL_POSIX | FL_CLOSE;
22381da177e4SLinus Torvalds 	lock.fl_start = 0;
22391da177e4SLinus Torvalds 	lock.fl_end = OFFSET_MAX;
22401da177e4SLinus Torvalds 	lock.fl_owner = owner;
22411da177e4SLinus Torvalds 	lock.fl_pid = current->tgid;
22421da177e4SLinus Torvalds 	lock.fl_file = filp;
22431da177e4SLinus Torvalds 	lock.fl_ops = NULL;
22441da177e4SLinus Torvalds 	lock.fl_lmops = NULL;
22451da177e4SLinus Torvalds 
2246150b3934SMarc Eshel 	vfs_lock_file(filp, F_SETLK, &lock, NULL);
22471da177e4SLinus Torvalds 
22481da177e4SLinus Torvalds 	if (lock.fl_ops && lock.fl_ops->fl_release_private)
22491da177e4SLinus Torvalds 		lock.fl_ops->fl_release_private(&lock);
22501da177e4SLinus Torvalds }
22511da177e4SLinus Torvalds 
22521da177e4SLinus Torvalds EXPORT_SYMBOL(locks_remove_posix);
22531da177e4SLinus Torvalds 
22541da177e4SLinus Torvalds /*
22551da177e4SLinus Torvalds  * This function is called on the last close of an open file.
22561da177e4SLinus Torvalds  */
22571da177e4SLinus Torvalds void locks_remove_flock(struct file *filp)
22581da177e4SLinus Torvalds {
2259496ad9aaSAl Viro 	struct inode * inode = file_inode(filp);
22601da177e4SLinus Torvalds 	struct file_lock *fl;
22611da177e4SLinus Torvalds 	struct file_lock **before;
22621da177e4SLinus Torvalds 
22631da177e4SLinus Torvalds 	if (!inode->i_flock)
22641da177e4SLinus Torvalds 		return;
22651da177e4SLinus Torvalds 
226672c2d531SAl Viro 	if (filp->f_op->flock) {
22671da177e4SLinus Torvalds 		struct file_lock fl = {
22681da177e4SLinus Torvalds 			.fl_pid = current->tgid,
22691da177e4SLinus Torvalds 			.fl_file = filp,
22701da177e4SLinus Torvalds 			.fl_flags = FL_FLOCK,
22711da177e4SLinus Torvalds 			.fl_type = F_UNLCK,
22721da177e4SLinus Torvalds 			.fl_end = OFFSET_MAX,
22731da177e4SLinus Torvalds 		};
22741da177e4SLinus Torvalds 		filp->f_op->flock(filp, F_SETLKW, &fl);
227580fec4c6STrond Myklebust 		if (fl.fl_ops && fl.fl_ops->fl_release_private)
227680fec4c6STrond Myklebust 			fl.fl_ops->fl_release_private(&fl);
22771da177e4SLinus Torvalds 	}
22781da177e4SLinus Torvalds 
22791c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
22801da177e4SLinus Torvalds 	before = &inode->i_flock;
22811da177e4SLinus Torvalds 
22821da177e4SLinus Torvalds 	while ((fl = *before) != NULL) {
22831da177e4SLinus Torvalds 		if (fl->fl_file == filp) {
2284c293621bSPeter Staubach 			if (IS_FLOCK(fl)) {
22851da177e4SLinus Torvalds 				locks_delete_lock(before);
22861da177e4SLinus Torvalds 				continue;
22871da177e4SLinus Torvalds 			}
22881da177e4SLinus Torvalds 			if (IS_LEASE(fl)) {
22891da177e4SLinus Torvalds 				lease_modify(before, F_UNLCK);
22901da177e4SLinus Torvalds 				continue;
22911da177e4SLinus Torvalds 			}
22921da177e4SLinus Torvalds 			/* What? */
22931da177e4SLinus Torvalds 			BUG();
22941da177e4SLinus Torvalds  		}
22951da177e4SLinus Torvalds 		before = &fl->fl_next;
22961da177e4SLinus Torvalds 	}
22971c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
22981da177e4SLinus Torvalds }
22991da177e4SLinus Torvalds 
23001da177e4SLinus Torvalds /**
23011da177e4SLinus Torvalds  *	posix_unblock_lock - stop waiting for a file lock
23021da177e4SLinus Torvalds  *	@waiter: the lock which was waiting
23031da177e4SLinus Torvalds  *
23041da177e4SLinus Torvalds  *	lockd needs to block waiting for locks.
23051da177e4SLinus Torvalds  */
230664a318eeSJ. Bruce Fields int
2307f891a29fSJeff Layton posix_unblock_lock(struct file_lock *waiter)
23081da177e4SLinus Torvalds {
230964a318eeSJ. Bruce Fields 	int status = 0;
231064a318eeSJ. Bruce Fields 
23117b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
23125996a298SJ. Bruce Fields 	if (waiter->fl_next)
23131da177e4SLinus Torvalds 		__locks_delete_block(waiter);
231464a318eeSJ. Bruce Fields 	else
231564a318eeSJ. Bruce Fields 		status = -ENOENT;
23167b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
231764a318eeSJ. Bruce Fields 	return status;
23181da177e4SLinus Torvalds }
23191da177e4SLinus Torvalds EXPORT_SYMBOL(posix_unblock_lock);
23201da177e4SLinus Torvalds 
23219b9d2ab4SMarc Eshel /**
23229b9d2ab4SMarc Eshel  * vfs_cancel_lock - file byte range unblock lock
23239b9d2ab4SMarc Eshel  * @filp: The file to apply the unblock to
23249b9d2ab4SMarc Eshel  * @fl: The lock to be unblocked
23259b9d2ab4SMarc Eshel  *
23269b9d2ab4SMarc Eshel  * Used by lock managers to cancel blocked requests
23279b9d2ab4SMarc Eshel  */
23289b9d2ab4SMarc Eshel int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
23299b9d2ab4SMarc Eshel {
233072c2d531SAl Viro 	if (filp->f_op->lock)
23319b9d2ab4SMarc Eshel 		return filp->f_op->lock(filp, F_CANCELLK, fl);
23329b9d2ab4SMarc Eshel 	return 0;
23339b9d2ab4SMarc Eshel }
23349b9d2ab4SMarc Eshel 
23359b9d2ab4SMarc Eshel EXPORT_SYMBOL_GPL(vfs_cancel_lock);
23369b9d2ab4SMarc Eshel 
23377f8ada98SPavel Emelyanov #ifdef CONFIG_PROC_FS
2338d8ba7a36SAlexey Dobriyan #include <linux/proc_fs.h>
23397f8ada98SPavel Emelyanov #include <linux/seq_file.h>
23407f8ada98SPavel Emelyanov 
23417012b02aSJeff Layton struct locks_iterator {
23427012b02aSJeff Layton 	int	li_cpu;
23437012b02aSJeff Layton 	loff_t	li_pos;
23447012b02aSJeff Layton };
23457012b02aSJeff Layton 
23467f8ada98SPavel Emelyanov static void lock_get_status(struct seq_file *f, struct file_lock *fl,
234799dc8292SJerome Marchand 			    loff_t id, char *pfx)
23481da177e4SLinus Torvalds {
23491da177e4SLinus Torvalds 	struct inode *inode = NULL;
2350ab1f1611SVitaliy Gusev 	unsigned int fl_pid;
2351ab1f1611SVitaliy Gusev 
2352ab1f1611SVitaliy Gusev 	if (fl->fl_nspid)
23536c5f3e7bSPavel Emelyanov 		fl_pid = pid_vnr(fl->fl_nspid);
2354ab1f1611SVitaliy Gusev 	else
2355ab1f1611SVitaliy Gusev 		fl_pid = fl->fl_pid;
23561da177e4SLinus Torvalds 
23571da177e4SLinus Torvalds 	if (fl->fl_file != NULL)
2358496ad9aaSAl Viro 		inode = file_inode(fl->fl_file);
23591da177e4SLinus Torvalds 
236099dc8292SJerome Marchand 	seq_printf(f, "%lld:%s ", id, pfx);
23611da177e4SLinus Torvalds 	if (IS_POSIX(fl)) {
23627f8ada98SPavel Emelyanov 		seq_printf(f, "%6s %s ",
23631da177e4SLinus Torvalds 			     (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
23641da177e4SLinus Torvalds 			     (inode == NULL) ? "*NOINODE*" :
2365a16877caSPavel Emelyanov 			     mandatory_lock(inode) ? "MANDATORY" : "ADVISORY ");
23661da177e4SLinus Torvalds 	} else if (IS_FLOCK(fl)) {
23671da177e4SLinus Torvalds 		if (fl->fl_type & LOCK_MAND) {
23687f8ada98SPavel Emelyanov 			seq_printf(f, "FLOCK  MSNFS     ");
23691da177e4SLinus Torvalds 		} else {
23707f8ada98SPavel Emelyanov 			seq_printf(f, "FLOCK  ADVISORY  ");
23711da177e4SLinus Torvalds 		}
23721da177e4SLinus Torvalds 	} else if (IS_LEASE(fl)) {
23737f8ada98SPavel Emelyanov 		seq_printf(f, "LEASE  ");
2374ab83fa4bSJ. Bruce Fields 		if (lease_breaking(fl))
23757f8ada98SPavel Emelyanov 			seq_printf(f, "BREAKING  ");
23761da177e4SLinus Torvalds 		else if (fl->fl_file)
23777f8ada98SPavel Emelyanov 			seq_printf(f, "ACTIVE    ");
23781da177e4SLinus Torvalds 		else
23797f8ada98SPavel Emelyanov 			seq_printf(f, "BREAKER   ");
23801da177e4SLinus Torvalds 	} else {
23817f8ada98SPavel Emelyanov 		seq_printf(f, "UNKNOWN UNKNOWN  ");
23821da177e4SLinus Torvalds 	}
23831da177e4SLinus Torvalds 	if (fl->fl_type & LOCK_MAND) {
23847f8ada98SPavel Emelyanov 		seq_printf(f, "%s ",
23851da177e4SLinus Torvalds 			       (fl->fl_type & LOCK_READ)
23861da177e4SLinus Torvalds 			       ? (fl->fl_type & LOCK_WRITE) ? "RW   " : "READ "
23871da177e4SLinus Torvalds 			       : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
23881da177e4SLinus Torvalds 	} else {
23897f8ada98SPavel Emelyanov 		seq_printf(f, "%s ",
2390ab83fa4bSJ. Bruce Fields 			       (lease_breaking(fl))
23910ee5c6d6SJeff Layton 			       ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ "
23920ee5c6d6SJeff Layton 			       : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ ");
23931da177e4SLinus Torvalds 	}
23941da177e4SLinus Torvalds 	if (inode) {
23951da177e4SLinus Torvalds #ifdef WE_CAN_BREAK_LSLK_NOW
2396ab1f1611SVitaliy Gusev 		seq_printf(f, "%d %s:%ld ", fl_pid,
23971da177e4SLinus Torvalds 				inode->i_sb->s_id, inode->i_ino);
23981da177e4SLinus Torvalds #else
23991da177e4SLinus Torvalds 		/* userspace relies on this representation of dev_t ;-( */
2400ab1f1611SVitaliy Gusev 		seq_printf(f, "%d %02x:%02x:%ld ", fl_pid,
24011da177e4SLinus Torvalds 				MAJOR(inode->i_sb->s_dev),
24021da177e4SLinus Torvalds 				MINOR(inode->i_sb->s_dev), inode->i_ino);
24031da177e4SLinus Torvalds #endif
24041da177e4SLinus Torvalds 	} else {
2405ab1f1611SVitaliy Gusev 		seq_printf(f, "%d <none>:0 ", fl_pid);
24061da177e4SLinus Torvalds 	}
24071da177e4SLinus Torvalds 	if (IS_POSIX(fl)) {
24081da177e4SLinus Torvalds 		if (fl->fl_end == OFFSET_MAX)
24097f8ada98SPavel Emelyanov 			seq_printf(f, "%Ld EOF\n", fl->fl_start);
24101da177e4SLinus Torvalds 		else
24117f8ada98SPavel Emelyanov 			seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end);
24121da177e4SLinus Torvalds 	} else {
24137f8ada98SPavel Emelyanov 		seq_printf(f, "0 EOF\n");
24141da177e4SLinus Torvalds 	}
24151da177e4SLinus Torvalds }
24161da177e4SLinus Torvalds 
24177f8ada98SPavel Emelyanov static int locks_show(struct seq_file *f, void *v)
24181da177e4SLinus Torvalds {
24197012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
24207f8ada98SPavel Emelyanov 	struct file_lock *fl, *bfl;
24217f8ada98SPavel Emelyanov 
2422139ca04eSJeff Layton 	fl = hlist_entry(v, struct file_lock, fl_link);
24237f8ada98SPavel Emelyanov 
24247012b02aSJeff Layton 	lock_get_status(f, fl, iter->li_pos, "");
24257f8ada98SPavel Emelyanov 
24267f8ada98SPavel Emelyanov 	list_for_each_entry(bfl, &fl->fl_block, fl_block)
24277012b02aSJeff Layton 		lock_get_status(f, bfl, iter->li_pos, " ->");
24287f8ada98SPavel Emelyanov 
24297f8ada98SPavel Emelyanov 	return 0;
24301da177e4SLinus Torvalds }
24311da177e4SLinus Torvalds 
24327f8ada98SPavel Emelyanov static void *locks_start(struct seq_file *f, loff_t *pos)
2433*b03dfdecSJeff Layton 	__acquires(&blocked_lock_lock)
24341da177e4SLinus Torvalds {
24357012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
243699dc8292SJerome Marchand 
24377012b02aSJeff Layton 	iter->li_pos = *pos + 1;
24387012b02aSJeff Layton 	lg_global_lock(&file_lock_lglock);
24397b2296afSJeff Layton 	spin_lock(&blocked_lock_lock);
24407012b02aSJeff Layton 	return seq_hlist_start_percpu(&file_lock_list, &iter->li_cpu, *pos);
24411da177e4SLinus Torvalds }
24427f8ada98SPavel Emelyanov 
24437f8ada98SPavel Emelyanov static void *locks_next(struct seq_file *f, void *v, loff_t *pos)
24447f8ada98SPavel Emelyanov {
24457012b02aSJeff Layton 	struct locks_iterator *iter = f->private;
24467012b02aSJeff Layton 
24477012b02aSJeff Layton 	++iter->li_pos;
24487012b02aSJeff Layton 	return seq_hlist_next_percpu(v, &file_lock_list, &iter->li_cpu, pos);
24491da177e4SLinus Torvalds }
24507f8ada98SPavel Emelyanov 
24517f8ada98SPavel Emelyanov static void locks_stop(struct seq_file *f, void *v)
2452*b03dfdecSJeff Layton 	__releases(&blocked_lock_lock)
24537f8ada98SPavel Emelyanov {
24547b2296afSJeff Layton 	spin_unlock(&blocked_lock_lock);
24557012b02aSJeff Layton 	lg_global_unlock(&file_lock_lglock);
24561da177e4SLinus Torvalds }
24571da177e4SLinus Torvalds 
2458d8ba7a36SAlexey Dobriyan static const struct seq_operations locks_seq_operations = {
24597f8ada98SPavel Emelyanov 	.start	= locks_start,
24607f8ada98SPavel Emelyanov 	.next	= locks_next,
24617f8ada98SPavel Emelyanov 	.stop	= locks_stop,
24627f8ada98SPavel Emelyanov 	.show	= locks_show,
24637f8ada98SPavel Emelyanov };
2464d8ba7a36SAlexey Dobriyan 
2465d8ba7a36SAlexey Dobriyan static int locks_open(struct inode *inode, struct file *filp)
2466d8ba7a36SAlexey Dobriyan {
24677012b02aSJeff Layton 	return seq_open_private(filp, &locks_seq_operations,
24687012b02aSJeff Layton 					sizeof(struct locks_iterator));
2469d8ba7a36SAlexey Dobriyan }
2470d8ba7a36SAlexey Dobriyan 
2471d8ba7a36SAlexey Dobriyan static const struct file_operations proc_locks_operations = {
2472d8ba7a36SAlexey Dobriyan 	.open		= locks_open,
2473d8ba7a36SAlexey Dobriyan 	.read		= seq_read,
2474d8ba7a36SAlexey Dobriyan 	.llseek		= seq_lseek,
247599dc8292SJerome Marchand 	.release	= seq_release_private,
2476d8ba7a36SAlexey Dobriyan };
2477d8ba7a36SAlexey Dobriyan 
2478d8ba7a36SAlexey Dobriyan static int __init proc_locks_init(void)
2479d8ba7a36SAlexey Dobriyan {
2480d8ba7a36SAlexey Dobriyan 	proc_create("locks", 0, NULL, &proc_locks_operations);
2481d8ba7a36SAlexey Dobriyan 	return 0;
2482d8ba7a36SAlexey Dobriyan }
2483d8ba7a36SAlexey Dobriyan module_init(proc_locks_init);
24847f8ada98SPavel Emelyanov #endif
24857f8ada98SPavel Emelyanov 
24861da177e4SLinus Torvalds /**
24871da177e4SLinus Torvalds  *	lock_may_read - checks that the region is free of locks
24881da177e4SLinus Torvalds  *	@inode: the inode that is being read
24891da177e4SLinus Torvalds  *	@start: the first byte to read
24901da177e4SLinus Torvalds  *	@len: the number of bytes to read
24911da177e4SLinus Torvalds  *
24921da177e4SLinus Torvalds  *	Emulates Windows locking requirements.  Whole-file
24931da177e4SLinus Torvalds  *	mandatory locks (share modes) can prohibit a read and
24941da177e4SLinus Torvalds  *	byte-range POSIX locks can prohibit a read if they overlap.
24951da177e4SLinus Torvalds  *
24961da177e4SLinus Torvalds  *	N.B. this function is only ever called
24971da177e4SLinus Torvalds  *	from knfsd and ownership of locks is never checked.
24981da177e4SLinus Torvalds  */
24991da177e4SLinus Torvalds int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
25001da177e4SLinus Torvalds {
25011da177e4SLinus Torvalds 	struct file_lock *fl;
25021da177e4SLinus Torvalds 	int result = 1;
25031c8c601aSJeff Layton 
25041c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
25051da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
25061da177e4SLinus Torvalds 		if (IS_POSIX(fl)) {
25071da177e4SLinus Torvalds 			if (fl->fl_type == F_RDLCK)
25081da177e4SLinus Torvalds 				continue;
25091da177e4SLinus Torvalds 			if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
25101da177e4SLinus Torvalds 				continue;
25111da177e4SLinus Torvalds 		} else if (IS_FLOCK(fl)) {
25121da177e4SLinus Torvalds 			if (!(fl->fl_type & LOCK_MAND))
25131da177e4SLinus Torvalds 				continue;
25141da177e4SLinus Torvalds 			if (fl->fl_type & LOCK_READ)
25151da177e4SLinus Torvalds 				continue;
25161da177e4SLinus Torvalds 		} else
25171da177e4SLinus Torvalds 			continue;
25181da177e4SLinus Torvalds 		result = 0;
25191da177e4SLinus Torvalds 		break;
25201da177e4SLinus Torvalds 	}
25211c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
25221da177e4SLinus Torvalds 	return result;
25231da177e4SLinus Torvalds }
25241da177e4SLinus Torvalds 
25251da177e4SLinus Torvalds EXPORT_SYMBOL(lock_may_read);
25261da177e4SLinus Torvalds 
25271da177e4SLinus Torvalds /**
25281da177e4SLinus Torvalds  *	lock_may_write - checks that the region is free of locks
25291da177e4SLinus Torvalds  *	@inode: the inode that is being written
25301da177e4SLinus Torvalds  *	@start: the first byte to write
25311da177e4SLinus Torvalds  *	@len: the number of bytes to write
25321da177e4SLinus Torvalds  *
25331da177e4SLinus Torvalds  *	Emulates Windows locking requirements.  Whole-file
25341da177e4SLinus Torvalds  *	mandatory locks (share modes) can prohibit a write and
25351da177e4SLinus Torvalds  *	byte-range POSIX locks can prohibit a write if they overlap.
25361da177e4SLinus Torvalds  *
25371da177e4SLinus Torvalds  *	N.B. this function is only ever called
25381da177e4SLinus Torvalds  *	from knfsd and ownership of locks is never checked.
25391da177e4SLinus Torvalds  */
25401da177e4SLinus Torvalds int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
25411da177e4SLinus Torvalds {
25421da177e4SLinus Torvalds 	struct file_lock *fl;
25431da177e4SLinus Torvalds 	int result = 1;
25441c8c601aSJeff Layton 
25451c8c601aSJeff Layton 	spin_lock(&inode->i_lock);
25461da177e4SLinus Torvalds 	for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
25471da177e4SLinus Torvalds 		if (IS_POSIX(fl)) {
25481da177e4SLinus Torvalds 			if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
25491da177e4SLinus Torvalds 				continue;
25501da177e4SLinus Torvalds 		} else if (IS_FLOCK(fl)) {
25511da177e4SLinus Torvalds 			if (!(fl->fl_type & LOCK_MAND))
25521da177e4SLinus Torvalds 				continue;
25531da177e4SLinus Torvalds 			if (fl->fl_type & LOCK_WRITE)
25541da177e4SLinus Torvalds 				continue;
25551da177e4SLinus Torvalds 		} else
25561da177e4SLinus Torvalds 			continue;
25571da177e4SLinus Torvalds 		result = 0;
25581da177e4SLinus Torvalds 		break;
25591da177e4SLinus Torvalds 	}
25601c8c601aSJeff Layton 	spin_unlock(&inode->i_lock);
25611da177e4SLinus Torvalds 	return result;
25621da177e4SLinus Torvalds }
25631da177e4SLinus Torvalds 
25641da177e4SLinus Torvalds EXPORT_SYMBOL(lock_may_write);
25651da177e4SLinus Torvalds 
25661da177e4SLinus Torvalds static int __init filelock_init(void)
25671da177e4SLinus Torvalds {
25687012b02aSJeff Layton 	int i;
25697012b02aSJeff Layton 
25701da177e4SLinus Torvalds 	filelock_cache = kmem_cache_create("file_lock_cache",
2571ee19cc40SMiklos Szeredi 			sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
2572ee19cc40SMiklos Szeredi 
25737012b02aSJeff Layton 	lg_lock_init(&file_lock_lglock, "file_lock_lglock");
25747012b02aSJeff Layton 
25757012b02aSJeff Layton 	for_each_possible_cpu(i)
25767012b02aSJeff Layton 		INIT_HLIST_HEAD(per_cpu_ptr(&file_lock_list, i));
25777012b02aSJeff Layton 
25781da177e4SLinus Torvalds 	return 0;
25791da177e4SLinus Torvalds }
25801da177e4SLinus Torvalds 
25811da177e4SLinus Torvalds core_initcall(filelock_init);
2582